query
stringlengths
7
5.25k
document
stringlengths
15
1.06M
metadata
dict
negatives
sequencelengths
3
101
negative_scores
sequencelengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Test case for getVendorComplianceSurveyTags Get the tags for a vendorComplianceSurvey..
public function testGetVendorComplianceSurveyTags() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function getVendorComplianceSurveyTagsRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling getVendorComplianceSurveyTags'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function testAddVendorComplianceSurveyTag()\n {\n }", "public function getTags() {}", "public function getTags();", "public function getTags();", "public function getTags();", "public function getTags();", "public function getTags();", "public function getTagList();", "public function generateTags() : array\n {\n return ['company'];\n }", "public function test_getLegacyLowstockContactTags() {\n\n }", "public function listTags() {\n\t\t$request = $this->send(\"GET\", \"contacts/\" . $this->contactId . '/tags', [\n\t\t\t'headers' => [\n\t\t\t\t'Accept' => 'application/json, */*',\n\t\t\t],\n\t\t]);\n\t\treturn $request;\n\t}", "protected function addVendorComplianceSurveyTagRequest($vendor_compliance_survey_id, $vendor_compliance_survey_tag)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling addVendorComplianceSurveyTag'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_tag' is set\n if ($vendor_compliance_survey_tag === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_tag when calling addVendorComplianceSurveyTag'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($vendor_compliance_survey_tag !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyTag' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_tag),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'PUT',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function getTags():array;", "public function getTags() {\n try {\n $getTagsOperation = new GetTags();\n\n $getTagsResponse = $this->apiCall($getTagsOperation);\n $tagsList = $getTagsResponse->getData();\n\n if ($getTagsResponse->isSuccess()) {\n\n $response = [];\n\n if(is_array($tagsList) && count($tagsList) > 0) {\n foreach ($tagsList as $item) {\n $response[] = [\n 'id' => $item['tagId'],\n 'name' => $item['name']\n ];\n }\n }\n return $response;\n }\n }catch (\\Exception $e){\n throw new \\Exception($e->getMessage());\n }\n }", "public function getTagsValues() {}", "public function getTagsValues() {}", "public function getTagsValues() {}", "public function getTagsValues() {}", "public function getTags() {\n\t\t$sql = \"SELECT tags FROM question\";\n\t\t$this->db->execute($sql);\n\t\treturn $this->db->fetchAll();\n\t}", "public function testDeleteVendorComplianceSurveyTag()\n {\n }", "function gettagdata()\n{\n\t$cf = new Fwcore();\n\t\n\t$data = array();\n\t$data['auth_token'] = $_POST['auth_token'];\n\t$data['tag_id'] = $_POST['category_id'];\n $data['api_version'] = $_POST['api_version'];\n\t$data['app_id'] = isset($_POST['app_id']) != '' ? $_POST['app_id'] : '';\n\t$cf->viewProductsTagList($data);\n}", "function getTagsToOmitt() {\n\t\t$tagArray = array();\n\n\t\t// if there are tags to exclude: add them to the list\n\t\tif ($this->conf['excludeTags']) {\n\t\t\t$tagArray = GeneralUtility::trimExplode(',', $this->conf['excludeTags'], 1);\n\t\t}\n\n\t\t// if configured: add tags used by the term definitions\n\t\tif ($this->conf['autoExcludeTags'] > 0) {\n\t\t\t;\n\t\t\tforeach ($this->conf['types.'] as $key => $type) {\n\t\t\t\tif (!empty($type['tag']) && !in_array($type['tag'], $tagArray)) {\n\t\t\t\t\t$tagArray[] = $type['tag'];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$tagList = implode(',', $tagArray);\n\n\t\treturn $tagList;\n\t}", "private function get_tags()\n\t{\n\t\t$this->n_tags = true;\n\t\treturn $this->m_tags;\n\t}", "private function get_tags()\n\t{\n\t\t$this->n_tags = true;\n\t\treturn $this->m_tags;\n\t}", "public function getTags()\n {\n $response = $this->client->post('tags', $this->config);\n\n $tags = new IntegrationTagsCollection;\n if ($response->getStatusCode() == 200 and $result = @json_decode($response->getBody())) {\n\n if (is_array($result) && count($result) > 0) {\n foreach ($result as $key => $tag) {\n $tags->push(new IntegrationTag([\n 'id' => $tag->tag_id,\n 'name' => $tag->tag_name,\n ]));\n }\n }\n }\n\n return $tags;\n }", "public function get_tags(){\n\t \n\t return $this->tags;\n\t}", "protected function deleteVendorComplianceSurveyTagRequest($vendor_compliance_survey_id, $vendor_compliance_survey_tag)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling deleteVendorComplianceSurveyTag'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_tag' is set\n if ($vendor_compliance_survey_tag === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_tag when calling deleteVendorComplianceSurveyTag'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($vendor_compliance_survey_tag !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyTag' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_tag),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function getTags()\n {\n return $this->data['fields']['tags'];\n }", "public function testTags()\n\t{\n\t\t$this->call('GET', '/api/tags');\n\t}", "public function getVendorList() {\n $vendors = $this->couponServices_model->fetchVendors();\n\n $vendor_options = array();\n $vendor_options[\"\"] = \"-- Select vendor --\";\n foreach ($vendors as $company) {\n $vendor_options[$company['vendorId']] = $company['vendorName'];\n }\n return $vendor_options;\n }", "function getTags($talentID)\r\n\t{\r\n\t\t$db = Database::getInstance ();\r\n\t\t$mysqli = $db->getConnection ();\r\n\t\t$tagArray = array();\r\n\t\t$sql_query = \"select * from talent_has_tag where talent_talentid = \".$talentID;\r\n\t\t$result = $mysqli->query ( $sql_query );\r\n\t\twhile ( $row = $result->fetch_object () ) {\r\n\t\t\t$sql_query2 = \"select * from tag where tagid = \" . $row->tag_tagid;\r\n\t\t\t$result2 = $mysqli->query ( $sql_query2 );\r\n\t\t\t\r\n\t\t\twhile ( $row2 = $result2->fetch_object () ) {\r\n\t\t\tarray_push ( $tagArray, $row2->tagnaam);\r\n\t\t\t}\t\t\t\r\n\t\t}\t\r\n\t\t\r\n\t\t// return an array with tags\r\n\t\treturn $tagArray;\r\n\t}", "function question_tag_get($data)\n\t {\n\t \t$tags_arr = $this->retrieve_tags($data);\n\t \t\n\t \tif($data['lang_code'] == 'zh')\n {\n \t $processed_tags = $this->re_generate_chinese_tags($tags_arr);\n \t $location_tag = $processed_tags['location'];\n \t $tags_arr = $processed_tags['tag'];\n \t\n \t $tags_arr = array_merge($location_tag, $tags_arr);\n }\n return $tags_arr;\n\t }", "public function testGetVendorComplianceSurveyByFilter()\n {\n }", "public function getTags(): Collection;", "public function getList()\r\n {\r\n\t\tif (defined(\"WITH_SPHINX_TAGS\") && WITH_SPHINX_TAGS)\r\n\t\t{\r\n\t\t\t$tags = parent::getList();\r\n\t\t} else {\r\n\t\t\t$tags = $this->getGroupTagsList() +\r\n\t\t\t\t$this->getMembersTagsList() +\r\n\t\t\t\t$this->getDocumentsTagsList() +\r\n\t\t\t\t$this->getEventsTagsList() +\r\n\t\t\t\t$this->getPhotosTagsList() +\r\n\t\t\t\t$this->getListsTagsList();\r\n\t\t}\r\n return $tags;\r\n }", "public function test_getReplenishmentProcessTags() {\n\n }", "public function getTags(){\n\t\tif (!is_array($this->_known_tags)){\n\t\t\t$desc = $this->getDescription();\n\t\t}\n\t\treturn $this->_known_tags;\n\t}", "function get_tags() {\n return $this->tags;\n }", "public function sendLeadTags() {\n\n /////////////////////////////////////////////////////////////////////\n // CHECK REQUIRED DATA //////////////////////////////////////////////\n /////////////////////////////////////////////////////////////////////\n\n if (is_null($this->__apiPrivateToken)) {\n throw new \\Exception(\"API Private Token must be setted!\");\n }\n\n if (is_null($this->__leadEmail)) {\n throw new \\Exception(\"Lead email must be setted!\");\n }\n\n if (!isset($this->__leadData['tags'])) {\n throw new \\Exception(\"Lead data 'tags' must be setted!\");\n }\n\n /////////////////////////////////////////////////////////////////////\n // PREPARE DATA COLLECTION //////////////////////////////////////////\n /////////////////////////////////////////////////////////////////////\n\n $this->__translateLeadData();\n\n $this->__leadData['auth_token'] = $this->__apiPrivateToken;\n\n /////////////////////////////////////////////////////////////////////\n // PERFORM REQUEST TO API ///////////////////////////////////////////\n /////////////////////////////////////////////////////////////////////\n\n return $this->__request('POST', 'tags');\n }", "function get_tags(){\n global $DB;\n\n $collection = $DB->get_record('tag_coll',['name' => PLUGINNAME]);\n if (!$collection->id) {\n throw new moodle_exception('pluginname', 'local_tematica');\n }\n $tags = $DB->get_records('tag', ['tagcollid' => $collection->id]);\n return $tags;\n}", "public function tags(){\n return $this->tags;\n }", "function getTags($tag) {\n \n \t$tags_request_url = sprintf($this->api_urls['tags'], $tag, $this->access_token);\n \t\n \treturn $this->__apiCall($tags_request_url);\n \n }", "protected function getTagsInfo() {\n $smapFilter = '';\n if(!empty($this->filterId)) {\n $smapFilter = ' AND ct.smap_id = ' . $this->filterId;\n }\n $result = $this->dbh->select('SELECT COUNT(ctl.' . $this->bindedBlock->getPK() . ') as frq,ctl.tag_id FROM '\n . $this->dbh->getTagsTablename($this->bindedBlock->getTableName())\n . ' ctl INNER JOIN ' . $this->bindedBlock->getTableName() . ' ct '\n . 'WHERE ctl.' . $this->bindedBlock->getPK() . ' = ct.' . $this->bindedBlock->getPK()\n . $smapFilter\n . ' GROUP BY tag_id');\n return $result;\n }", "public function testGetTags()\n {\n $helix = new Helix(self::$tokenProvider);\n $tagsApi = $helix->tags;\n $tags = $tagsApi->getTags();\n \n $this->assertNotNull($tags);\n $this->assertIsArray($tags);\n\n // Twitch should have more than 20 available tags, so we check that the cursor is available\n $hasMoreResults = $tagsApi->hasMoreTags();\n $this->assertTrue($hasMoreResults);\n\n // Try to get a specific tag by its ID, using the previous results to get the ID.\n $firstTag = reset($tags);\n $onlyTag = $tagsApi->getTags([$firstTag->tag_id]);\n\n $this->assertCount(1, $onlyTag);\n $this->assertEquals($firstTag, reset($onlyTag));\n\n return $firstTag->tag_id;\n }", "public function testGetTags()\n {\n $objects = $this->loadTestFixtures(['@AppBundle/DataFixtures/ORM/Test/Tag/CrudData.yml']);\n\n // Test scope\n $this->restScopeTestCase('/api/tags', [\n 'list' => $this->getScopeConfig('tag/list.yml')\n ], true);\n\n // Test filters\n $listFilterCaseHandler = new ListFilterCaseHandler([\n 'tag-1' => $objects['tag-1']\n ]);\n \n $listFilterCaseHandler->addCase('name', '=Some name', 'tag-1', true);\n\n $this->restListFilterTestCase('/api/tags', $listFilterCaseHandler->getCases());\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function getTags()\n {\n return $this->tags;\n }", "public function testGetVendorComplianceSurveyById()\n {\n }", "public function getTags()\n {\n if (array_key_exists(\"tags\", $this->_propDict)) {\n return $this->_propDict[\"tags\"];\n } else {\n return null;\n }\n }", "function TestCase_get_tags($case_id) {\n\t// Create call\n\t$call = new xmlrpcmsg('TestCase.get_tags', array(new xmlrpcval($case_id, \"int\")));\n\n\t// Do call and return value\n\treturn do_call($call);\n}", "function getTags() {\n\t\t$db = Database::getInstance();\n\t\t$mysqli = $db->getConnection();\n\t\t\n\t\t$tagsArray = array();\n\t\t\t$sql_query = \"select tagnaam,tagid from tag where status=6\";\n\t\t\t$result = $mysqli->query($sql_query);\n\t\t\t\n\t\t\twhile ( $row = $result->fetch_object () ) {\n\t\t\t\t$Tag = new Tag();\n\t\t\t\t$Tag->tagId = $row->tagid;\n\t\t\t\t$Tag->tagName = $row->tagnaam;\n\t\t\t\tarray_push($tagsArray, $Tag);\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t$result->close();\n\t\t\treturn $tagsArray;\n\t}", "public function getEmailTags() \n {\n return \n [\n 'module' => [],\n 'package' => ['type', 'package', 'acl'],\n 'service' => ['licensekey', 'cwatch_license_type', 'cwatch_license_term']\n ];\n }", "protected function _getVendorCollection()\n {\n if (is_null($this->_vendorCollection)) {\n $queryText = $this->getQueryText();\n $vendorShoptable = $this->_resourceConnection->getTableName('ced_csmarketplace_vendor_shop');\n $this->_vendorCollection = $this->_collectionFactory->create();\n $this->_vendorCollection->addAttributeToSelect('*');\n //$this->_vendorCollection->getSelect()->join(['vendor_shop' => $vendorShoptable], 'e.entity_id=vendor_shop.vendor_id AND vendor_shop.shop_disable=' . Vshop::ENABLED, ['shop_disable']);\n\n $this->_vendorCollection->addAttributeToFilter('meta_keywords', ['like' => '%' . $queryText . '%']);\n if ($this->_csmarketplaceHelper->isSharingEnabled()) {\n $this->_vendorCollection->addAttributeToFilter('website_id', $this->_storeManager->getStore()->getWebsiteId());\n }\n\n if ($this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::MODULE_ENABLE)) {\n //------------------- Custom Filter----------------[START]\n\n $savedLocationFromSession = $this->_hyperlocalHelper->getShippingLocationFromSession();\n $filterType = $this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::FILTER_TYPE);\n $radiusConfig = $this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::FILTER_RADIUS);\n $distanceType = $this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::DISTANCE_TYPE);\n $apiKey = $this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::API_KEY);\n $filterProductsBy = $this->_csmarketplaceHelper->getStoreConfig(HyperlocalHelper::FILTER_PRODUCTS_BY);\n\n if ($filterProductsBy == 'vendor_location' || $filterType == 'distance') {\n $vendorIds = [0];\n if ($savedLocationFromSession) {\n\n /** Filter Products By Vendor Location */\n if ($filterType == 'city_state_country') {\n\n //------------------- Filter By City,country & state----------------[START]\n $locationCollection = $this->_hyperlocalHelper->getFilteredlocationByCityStateCountry($savedLocationFromSession);\n if ($locationCollection) {\n $vendorIds = $locationCollection->getColumnValues('vendor_id');\n }\n\n //------------------- Filter By City,country & state----------------[END]\n } elseif ($filterType == 'zipcode' && isset($savedLocationFromSession['filterZipcode'])) {\n\n //------------------- Filter By Zipcode----------------[START]\n $resource = $this->_resourceConnection;\n $tableName = $resource->getTableName('ced_cshyperlocal_shipping_area');\n $this->zipcodeCollection->getSelect()->joinLeft($tableName, 'main_table.location_id = ' . $tableName . '.id', ['status', 'is_origin_address']);\n $this->zipcodeCollection->addFieldToFilter('main_table.zipcode', $savedLocationFromSession['filterZipcode'])\n ->addFieldToFilter('status', Shiparea::STATUS_ENABLED);\n $this->zipcodeCollection->getSelect()->where(\"`is_origin_address` IS NULL OR `is_origin_address` = '0'\");\n $vendorIds = $this->zipcodeCollection->getColumnValues('vendor_id');\n //------------------- Filter By Zipcode----------------[END]\n } elseif ($filterType == 'distance') {\n $tolat = $savedLocationFromSession['latitude'];\n $tolong = $savedLocationFromSession['longitude'];\n $vIds = [];\n if ($tolat != '' && $tolong != '') {\n $vendorCollection = $this->_collectionFactory->create();\n $vendorCollection->addAttributeToSelect('*');\n if ($vendorCollection->count()) {\n foreach ($vendorCollection as $vendor) {\n $distance = $this->_hyperlocalHelper->calculateDistancebyHaversine($vendor->getLatitude(), $vendor->getLongitude(), $tolat, $tolong);\n if ($distance <= $radiusConfig) {\n $vendorIds[] = $vendor->getId();\n }\n }\n }\n }\n }\n $this->_vendorCollection->addAttributeToFilter('entity_id', ['in' => $vendorIds]);\n }\n }\n //------------------- Custom Filter ----------------[END]\n }\n\n $this->prepareSortableFields();\n }\n return $this->_vendorCollection;\n }", "public function getEmailTags()\n {\n return ['service' => ['domain']];\n }", "function get_tag_names() \n\t{\t\n\t\tlog_message('debug', 'Support/get_tag_names');\n\t\techo get_option_list($this, 'tagNames', 'select', $_GET[\"copy_from_repo\"]);\n\t}", "public function getTags()\n\t{\n\t\treturn $this->tags;\n\t}", "public function getTags()\n {\n return $this->_tags;\n }", "public function test_getCustomerTags() {\n\n }", "public function tags();", "function getUserTags(){\n\n\t\t/* Fetch user info from Flickr */\n\t\t$tags = $this->askFlickr('tags.getListUserPopular','user_id='.$this->user);\n\n\t\t/* Return Tags */\n\t\treturn $tags;\n\t}", "public function getVendorComplianceSurveyTagsWithHttpInfo($vendor_compliance_survey_id)\n {\n $returnType = '';\n $request = $this->getVendorComplianceSurveyTagsRequest($vendor_compliance_survey_id);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n }\n throw $e;\n }\n }", "public function test_listTagsRequest() {\n\n }", "public function generateTags() : array\n {\n return ['purchase_order'];\n }", "public function getListTags()\n {\n return ArrayHelper::map(QuestionTag::find()->all(), 'id', 'name');\n }", "public function getTags() {\n return $this->tags;\n }", "public function getActivatedVendors();", "public function getTags() {\n\t\t$tags = array();\n\n\t\ttry {\n\t\t\t/** @var Thrive_Dash_Api_KlickTipp $api */\n\t\t\t$api = $this->get_api();\n\t\t\t$tags = $api->getTags();\n\t\t} catch ( Exception $e ) {\n\n\t\t}\n\n\t\treturn $tags;\n\t}", "public function getTags()\n {\n return $this->Tags;\n }", "public function getTagList() {\n\t\t##\n\t\t##\tRETURN\n\t\t##\t\tThe tags table as a multi-dimensional array\n\t\t$sql = <<<EOD\n\t\tSELECT\n\t\t\t{$this->wpdb->prefix}topspin_tags.name\n\t\tFROM {$this->wpdb->prefix}topspin_tags\n\t\tWHERE\n\t\t\t{$this->wpdb->prefix}topspin_tags.artist_id = %d\nEOD;\n\t\t$data = $this->wpdb->get_results($this->wpdb->prepare($sql,array($this->artist_id)),ARRAY_A);\n\t\t##\tSet Default Status\n\t\tforeach($data as $key=>$row) {\n\t\t\t$data[$key]['status'] = 0;\n\t\t}\n\t\treturn $data;\n\t}", "public function test_getLowStockTags() {\n\n }", "public function getVendorComplianceSurveyTagsAsync($vendor_compliance_survey_id)\n {\n return $this->getVendorComplianceSurveyTagsAsyncWithHttpInfo($vendor_compliance_survey_id)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }", "public function getTags()\n {\n return $this->_tags;\n }", "private function set_tags($v)\n\t{\n\t\tUtil::validateArgCount(func_num_args(), 1);\n\t\tUtil::validateType($v, \"\\\\ArrayObject\");\n\t\tif (is_array($v)) $v = Client::array2ArrayObject($v);\n\t\t$this->m_tags = $v;\n\t\t$this->n_tags = true;\n\t\treturn $this->m_tags;\n\t}", "private function set_tags($v)\n\t{\n\t\tUtil::validateArgCount(func_num_args(), 1);\n\t\tUtil::validateType($v, \"\\\\ArrayObject\");\n\t\tif (is_array($v)) $v = Client::array2ArrayObject($v);\n\t\t$this->m_tags = $v;\n\t\t$this->n_tags = true;\n\t\treturn $this->m_tags;\n\t}", "public function get_tags()\r\n\t{\r\n\t\t$xml = $this->call(PicasaAPI::$QUERY_URLS['picasa'] . \"?kind=tag\");\r\n\t\treturn $xml;\r\n\t}", "public function getTags()\n {\n return explode(' ', (string)Mage::getStoreConfig(self::CONFIG_TAGS));\n }", "public static function get_tags() {\n\t\treturn [\n\t\t\t'{pro}',\n\t\t\t'{contra}',\n\t\t\t'{total}',\n\t\t\t'{pro_percent}',\n\t\t\t'{contra_percent}',\n\t\t\t'{permalink}',\n\t\t\t'{author}',\n\t\t];\n\t}", "private function _getAllTags() {\n\n\t\t$param = [\n\t\t\t'table' => 'tags',\n\t\t\t'select' => '*'\n\t\t];\n\n\t\tif($this->CI->input->get()) {\n\t\t\tif(isset($this->CI->input->get['fields'])) { $param['select'] = $this->CI->input->get['fields']; }\n\t\t\tif(isset($this->CI->input->get['type'])) { $param['where'] = ['type' => $this->CI->input->get['type']]; }\n\t\t}\n\n\t\t$data = $this->CI->model->get($param);\n\t\tif(count($data)) { $this->CI->exitCode = 200; }\n\t\treturn ['data' => $data];\n\t}", "function getTags($customer_id) {\n\t\t$sql = \"SELECT tag FROM customer_tags WHERE customer_id=? \";\n\t\t\n\t\t$result = $this->db->queryAll($sql, array($customer_id), PDO::FETCH_COLUMN);\n\t\t\n\t\treturn $result;\n\t}", "public function test_getExternalShipmentTags() {\n\n }", "public function getTags(): array\n {\n return $this->tags;\n }", "public function getTags(): array\n {\n return $this->tags;\n }", "public function testFindPetsByTags()\n {\n // initialize the API client\n $config = (new Configuration())->setHost('http://petstore.swagger.io/v2');\n $api_client = new ApiClient($config);\n $pet_api = new Api\\PetApi($api_client);\n // return Pet (model)\n $response = $pet_api->findPetsByTags(\"test php tag\");\n $this->assertGreaterThan(0, count($response)); // at least one object returned\n $this->assertSame(get_class($response[0]), \"Swagger\\\\Client\\\\Model\\\\Pet\"); // verify the object is Pet\n // loop through result to ensure status is \"available\"\n foreach ($response as $_pet) {\n $this->assertSame($_pet['tags'][0]['name'], \"test php tag\");\n }\n // test invalid status\n $response = $pet_api->findPetsByTags(\"unknown_and_incorrect_tag\");\n $this->assertSame(count($response), 0); // confirm no object returned\n }", "function gtags_group_tags() {\n\techo gtags_get_group_tags();\n}", "public function tags() {\n\t\treturn $this->get_tags();\n\t}", "public function getTags(): ?array\n {\n return $this->getClaimSafe(SSODataClaimsInterface::CLAIM_USER_TAGS);\n }" ]
[ "0.6616804", "0.5905149", "0.5772295", "0.56880504", "0.56880504", "0.56880504", "0.56880504", "0.56880504", "0.5607604", "0.55937177", "0.5513079", "0.5506694", "0.55006987", "0.54496014", "0.5432742", "0.53936124", "0.53936124", "0.53936124", "0.53936124", "0.5388668", "0.5307429", "0.530137", "0.5270046", "0.5268478", "0.5268478", "0.52682704", "0.5268052", "0.52676255", "0.52658683", "0.5236465", "0.5221806", "0.5182572", "0.5152465", "0.5126445", "0.5125616", "0.51194865", "0.510312", "0.5101435", "0.5101224", "0.5100147", "0.50913304", "0.5085326", "0.50373966", "0.50241363", "0.5015968", "0.5014044", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.50138485", "0.4999713", "0.4999224", "0.49977762", "0.49955627", "0.49820215", "0.49805912", "0.49802035", "0.49799755", "0.49799192", "0.49760014", "0.49700716", "0.49562508", "0.49456164", "0.4945571", "0.49415463", "0.4938808", "0.4929309", "0.49270803", "0.49267772", "0.49263743", "0.492635", "0.4918749", "0.48972782", "0.48907506", "0.48852718", "0.48702312", "0.48702312", "0.48631412", "0.48626938", "0.48614576", "0.4859046", "0.48550886", "0.4848054", "0.48475385", "0.48475385", "0.4846108", "0.48386714", "0.48384196", "0.48382264" ]
0.6943422
0
Test case for updateVendorComplianceSurvey Update a vendorComplianceSurvey.
public function testUpdateVendorComplianceSurvey() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testUpdateVendorComplianceSurveyCustomFields()\n {\n }", "public function updateVendorComplianceSurvey($body)\n {\n $this->updateVendorComplianceSurveyWithHttpInfo($body);\n }", "public function testDeleteVendorComplianceSurvey()\n {\n }", "protected function deleteVendorComplianceSurveyRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling deleteVendorComplianceSurvey'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function testUpdateSurvey0()\n {\n }", "public function testUpdateSurvey0()\n {\n }", "public function testUpdateSurvey()\n {\n $survey = Survey::factory()->create();\n\n $response = $this->json('PATCH', \"survey/{$survey->id}\", [\n 'survey' => ['epilogue' => 'epilogue your behind']\n ]);\n\n $response->assertStatus(200);\n $this->assertDatabaseHas('survey', ['id' => $survey->id, 'epilogue' => 'epilogue your behind']);\n }", "public function testUpdateSurveyQuestion0()\n {\n }", "public function testUpdateSurveyQuestion0()\n {\n }", "public function testAddVendorComplianceSurvey()\n {\n }", "public function testGetVendorComplianceSurveyById()\n {\n }", "protected function addVendorComplianceSurveyAuditRequest($vendor_compliance_survey_id, $vendor_compliance_survey_audit)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling addVendorComplianceSurveyAudit'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_audit' is set\n if ($vendor_compliance_survey_audit === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_audit when calling addVendorComplianceSurveyAudit'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/audit/{vendorComplianceSurveyAudit}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($vendor_compliance_survey_audit !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyAudit' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_audit),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'PUT',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "protected function updateVendorComplianceSurveyRequest($body)\n {\n // verify the required parameter 'body' is set\n if ($body === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $body when calling updateVendorComplianceSurvey'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // body params\n $_tempBody = null;\n if (isset($body)) {\n $_tempBody = $body;\n }\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'PUT',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function updateVendorComplianceSurveyWithHttpInfo($body)\n {\n $returnType = '';\n $request = $this->updateVendorComplianceSurveyRequest($body);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n }\n throw $e;\n }\n }", "protected function getDuplicateVendorComplianceSurveyByIdRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling getDuplicateVendorComplianceSurveyById'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/duplicate/{vendorComplianceSurveyId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function updateVendorComplianceSurveyAsync($body)\n {\n return $this->updateVendorComplianceSurveyAsyncWithHttpInfo($body)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }", "public function update(Request $request, ClientSurvey $clientSurvey)\n {\n //\n }", "public function testUpdateSurveyQuestionChoice0()\n {\n }", "public function testUpdateSurveyQuestionChoice0()\n {\n }", "protected function getVendorComplianceSurveyByIdRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling getVendorComplianceSurveyById'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function updated(CustomerInquiry $customerInquiry)\n {\n\n }", "public function addVendorComplianceSurvey($body)\n {\n list($response) = $this->addVendorComplianceSurveyWithHttpInfo($body);\n return $response;\n }", "public function testGetDuplicateVendorComplianceSurveyById()\n {\n }", "public function update($vendor);", "public function testDeleteVendorComplianceSurveyTag()\n {\n }", "protected function deleteVendorComplianceSurveyTagRequest($vendor_compliance_survey_id, $vendor_compliance_survey_tag)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling deleteVendorComplianceSurveyTag'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_tag' is set\n if ($vendor_compliance_survey_tag === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_tag when calling deleteVendorComplianceSurveyTag'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($vendor_compliance_survey_tag !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyTag' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_tag),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function update(Request $request, Survey $survey)\n {\n //\n }", "public function update($vendorId, $vendorContactId)\n\t{\n\t\t$validator = Validator::make(\n array('intVendorId'=>$vendorId,'intVendorContactId' => $vendorContactId),\n array('intVendorId'=>'required|numeric','intVendorContactId' => 'required|numeric')\n );\n\n if($validator->fails())\n {\n return $this->respondBadRequest('Invalid Inputs.');\n }\n $vendorContact = VendorContact::find($vendorContactId);\n\n if (!$vendorContact) {\n return $this->respondNotFound('Vendor contact does not exist.');\n }\n if ($vendorContact->intVendorId != $vendorId) {\n return $this->respondBadRequest('Vendor and contact mismatch.');\n }\n $validator = Validator::make(\n Input::get(),\n array(\n 'contactName' => 'sometimes|alpha_spaces|max:200',\n 'contactDesignation' => 'sometimes|alpha_spaces|max:200',\n 'contactEmail' => 'sometimes|email|max:200',\n 'contactPhone1' => 'sometimes|alpha_spaces|max:20',\n 'contactPhone2' => 'sometimes|alpha_spaces|max:20'\n ));\n if ($validator->fails()) {\n return $this->respondBadRequest('Invalid input.', array('app_error' => $validator->messages()->toArray()));\n }\n\n $vendorContact->strContactFullName =Input::get('contactName')?Input::get('contactName'):$vendorContact->strContactFullName;\n $vendorContact->strContactDesgnation =Input::get('contactDesignation')?Input::get('contactDesignation'):$vendorContact->strContactDesgnation;\n $vendorContact->strContactEmail =Input::get('contactEmail')?Input::get('contactEmail'):$vendorContact->strContactEmail;\n $vendorContact->strContactPhone1 =Input::get('contactPhone1')?Input::get('contactPhone1'):$vendorContact->strContactPhone1;\n $vendorContact->strContactPhone2 =Input::get('contactPhone2')?Input::get('contactPhone2'):$vendorContact->strContactPhone2;\n\n try {\n $vendorContact->save();\n } catch (\\Exception $e) {\n return $this->respondInternalError('Unable to save Vendor contact.');\n }\n $insertedVendorContact = VendorContact::find($vendorContact->intVendorContactId);\n return $this->setStatusCode(ApiController::HTTP_CREATED)->respond($this->vendorContactTransformer->transform($insertedVendorContact));\n\n\n\t\t\n\t}", "public function testDeleteVendorComplianceSurveyFile()\n {\n }", "public function testWebinarRegistrantQuestionUpdate()\n {\n }", "public function update(Request $request, Pedim_consent_for_rapid_covid19_testings $consent_for_covid19)\n {\n\n $is_sign_responsible_party_updated = \"nullable\";\n\n if(request('sign_responsible_party_updated') == \"yes\")\n { \n $is_sign_responsible_party_updated = \"required\"; \n }\n\n //\n $valiedation_from_array = [ \n 'patient_name' => 'required', \n 'patient_email' => 'required',\n 'telephone' => 'required',\n 'sign_responsible_party' => $is_sign_responsible_party_updated, \n 'date' => 'required'\n\n ];\n\n \n $this->validate($request, $valiedation_from_array);\n\n //dd($is_witness_signature_update);\n $sign_responsible_party = $request->sign_responsible_party_src;\n if(request('sign_responsible_party_updated') == \"yes\")\n {\n \n $patient_signature = app('App\\Http\\Controllers\\SignaturePadController')->update_signature($request->sign_responsible_party,$sign_responsible_party);\n \n }\n \n //dd($sign_responsible_party);\n $consent_for_covid19->patient_name = request('patient_name');\n $consent_for_covid19->is_patient_minor = request('is_patient_minor');\n $consent_for_covid19->parent_guardian = request('parent_guardian');\n $consent_for_covid19->patient_email = request('patient_email');\n $consent_for_covid19->telephone = request('telephone');\n $consent_for_covid19->sign_responsible_party = $sign_responsible_party;\n $consent_for_covid19->date = request('date');\n $consent_for_covid19->client_forms_id = request('client_forms_id'); \n $consent_for_covid19->status = 'active'; \n $update_status = $consent_for_covid19->save();\n\n if($update_status)\n { \n if(Auth::guard('clients')->check())\n {\n session()->flash(\"success\",\"Successfully Updated\"); \n return redirect()->route('client.PedimConsentForRapidCovid19Testing.submissions',$consent_for_covid19->client_forms_id);\n }\n else\n {\n session()->flash(\"success\",\"Successfully Updated\"); \n return redirect()->route('PedimConsentForRapidCovid19Testing.submissions',$consent_for_covid19->client_forms_id);\n }\n\n }\n else\n {\n session()->flash(\"warning\",\"Some thing went wrong, please Update again\"); \n return redirect()->back();\n\n }\n }", "public function update(Request $request, VendorSubscriptionPlans $vendorSubscriptionPlan)\n {\n $request->validate(\n [\n 'title' => 'required|max:100',\n 'price' => 'numeric|nullable',\n 'duration' => 'required|numeric',\n 'product_limitation' => 'required|numeric',\n 'description' => 'max:200',\n 'status' => 'required',\n\n ],\n [\n 'product_limitation.required' => 'No. of Product is required',\n 'product_limitation.numeric' => 'No. of Product must be a numeric value',\n ]\n );\n\n $vendorSubscriptionPlan->title = $request->title;\n $vendorSubscriptionPlan->price = $request->price ?? 0;\n $vendorSubscriptionPlan->duration = $request->duration;\n $vendorSubscriptionPlan->product_limitation = $request->product_limitation;\n $vendorSubscriptionPlan->description = $request->description;\n $vendorSubscriptionPlan->status = $request->status;\n\n if ($vendorSubscriptionPlan->save()){\n Session::flash('success','Vendor Subscription Plan Added');\n return redirect()->route('vendor-subscription-plan.index');\n }else{\n Session::flash('error','Vendor Subscription Plan Not Added');\n return redirect()->back()->withInput();\n }\n }", "protected function addVendorComplianceSurveyTagRequest($vendor_compliance_survey_id, $vendor_compliance_survey_tag)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling addVendorComplianceSurveyTag'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_tag' is set\n if ($vendor_compliance_survey_tag === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_tag when calling addVendorComplianceSurveyTag'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($vendor_compliance_survey_tag !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyTag' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_tag),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'PUT',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function testAddVendorComplianceSurveyAudit()\n {\n }", "public function updateVendorComplianceSurveyCustomFields($body)\n {\n $this->updateVendorComplianceSurveyCustomFieldsWithHttpInfo($body);\n }", "public function testGetVendorComplianceSurveyByFilter()\n {\n }", "public function testUpdate()\n {\n\n // $payment = $this->payment\n // ->setEvent($this->eventId)\n // ->acceptCash()\n // ->acceptCheck()\n // ->acceptGoogle()\n // ->acceptInvoice()\n // ->acceptPaypal()\n // ->setCashInstructions($instructions)\n // ->setCheckInstructions($instructions)\n // ->setInvoiceInstructions($instructions)\n // ->setGoogleMerchantId($this->googleMerchantId)\n // ->setGoogleMerchantKey($this->googleMerchantKey)\n // ->setPaypalEmail($this->paypalEmail)\n // ->update();\n\n // $this->assertArrayHasKey('process', $payment);\n // $this->assertArrayHasKey('status', $payment['process']);\n // $this->assertTrue($payment['process']['status'] == 'OK');\n }", "protected function addVendorComplianceSurveyRequest($body)\n {\n // verify the required parameter 'body' is set\n if ($body === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $body when calling addVendorComplianceSurvey'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // body params\n $_tempBody = null;\n if (isset($body)) {\n $_tempBody = $body;\n }\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function addVendorComplianceSurveyWithHttpInfo($body)\n {\n $returnType = '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey';\n $request = $this->addVendorComplianceSurveyRequest($body);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n $responseBody = $response->getBody();\n if ($returnType === '\\SplFileObject') {\n $content = $responseBody; //stream goes to serializer\n } else {\n $content = $responseBody->getContents();\n if ($returnType !== 'string') {\n $content = json_decode($content);\n }\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n case 405:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\Infoplus\\Infoplus\\Model\\ApiResponse',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }", "protected function addVendorComplianceSurveyFileByURLRequest($body, $vendor_compliance_survey_id)\n {\n // verify the required parameter 'body' is set\n if ($body === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $body when calling addVendorComplianceSurveyFileByURL'\n );\n }\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling addVendorComplianceSurveyFileByURL'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n if (isset($body)) {\n $_tempBody = $body;\n }\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function addVendorComplianceSurveyAsync($body)\n {\n return $this->addVendorComplianceSurveyAsyncWithHttpInfo($body)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }", "public function testAddVendorComplianceSurveyFile()\n {\n }", "public function testAddVendorComplianceSurveyTag()\n {\n }", "public function testDeveloperUpdate()\n {\n $developer = factory(Developer::class)->create();\n $response = $this->get('/developer/update?id=' . $developer->id);\n $response->assertStatus(200);\n }", "public function update(UpdateVendorRequest $request, $id)\n {\n $this->authorize('update-contact');\n\n $vendor = \\App\\Contact::with('address_primary.state', 'address_primary.location', 'phone_primary.location', 'phone_main_fax', 'email_primary.location', 'website_main', 'notes')->findOrFail($request->input('id'));\n $vendor->organization_name = $request->input('organization_name');\n $vendor->display_name = $request->input('display_name');\n $vendor->sort_name = $request->input('sort_name');\n $vendor->save();\n\n if (empty($vendor->address_primary)) {\n $address_primary = new \\App\\Address;\n } else {\n $address_primary = \\App\\Address::findOrNew($vendor->address_primary->id);\n }\n\n $address_primary->contact_id = $vendor->id;\n $address_primary->location_type_id = config('polanco.location_type.main');\n $address_primary->is_primary = 1;\n $address_primary->street_address = $request->input('street_address');\n $address_primary->supplemental_address_1 = $request->input('supplemental_address_1');\n $address_primary->city = $request->input('city');\n $address_primary->state_province_id = $request->input('state_province_id');\n $address_primary->postal_code = $request->input('postal_code');\n $address_primary->country_id = $request->input('country_id');\n $address_primary->save();\n\n if (empty($vendor->phone_primary)) {\n $phone_primary = new \\App\\Phone;\n } else {\n $phone_primary = \\App\\Phone::findOrNew($vendor->phone_primary->id);\n }\n\n $phone_primary->contact_id = $vendor->id;\n $phone_primary->location_type_id = config('polanco.location_type.main');\n $phone_primary->is_primary = 1;\n $phone_primary->phone_type = 'Phone';\n $phone_primary->phone = $request->input('phone_main_phone');\n $phone_primary->save();\n\n if (empty($vendor->phone_main_fax)) {\n $phone_main_fax = new \\App\\Phone;\n } else {\n $phone_main_fax = \\App\\Phone::findOrNew($vendor->phone_main_fax->id);\n }\n $phone_main_fax->contact_id = $vendor->id;\n $phone_main_fax->location_type_id = config('polanco.location_type.main');\n $phone_main_fax->phone_type = 'Fax';\n $phone_main_fax->phone = $request->input('phone_main_fax');\n $phone_main_fax->save();\n\n if (empty($vendor->email_primary)) {\n $email_primary = new \\App\\Email;\n } else {\n $email_primary = \\App\\Email::findOrNew($vendor->email_primary->id);\n }\n\n $email_primary->contact_id = $vendor->id;\n $email_primary->is_primary = 1;\n $email_primary->location_type_id = config('polanco.location_type.main');\n $email_primary->email = $request->input('email_primary');\n $email_primary->save();\n\n if (null !== ($request->input('note_vendor'))) {\n $vendor_note = \\App\\Note::firstOrNew(['entity_table'=>'contact', 'entity_id'=>$vendor->id, 'subject'=>'Vendor note']);\n $vendor_note->entity_table = 'contact';\n $vendor_note->entity_id = $vendor->id;\n $vendor_note->note = $request->input('note_vendor');\n $vendor_note->subject = 'Vendor note';\n $vendor_note->save();\n }\n\n if (null !== $request->file('avatar')) {\n $description = 'Avatar for '.$vendor->organization_name;\n $attachment = new AttachmentController;\n $attachment->update_attachment($request->file('avatar'), 'contact', $vendor->id, 'avatar', $description);\n }\n\n if (null !== $request->file('attachment')) {\n $description = $request->input('attachment_description');\n $attachment = new AttachmentController;\n $attachment->update_attachment($request->file('attachment'), 'contact', $vendor->id, 'attachment', $description);\n }\n\n $url_main = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Main']);\n $url_main->contact_id = $vendor->id;\n $url_main->url = $request->input('url_main');\n $url_main->website_type = 'Main';\n $url_main->save();\n\n $url_work = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Work']);\n $url_work->contact_id = $vendor->id;\n $url_work->url = $request->input('url_work');\n $url_work->website_type = 'Work';\n $url_work->save();\n\n $url_facebook = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Facebook']);\n $url_facebook->contact_id = $vendor->id;\n $url_facebook->url = $request->input('url_facebook');\n $url_facebook->website_type = 'Facebook';\n $url_facebook->save();\n\n $url_google = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Google']);\n $url_google->contact_id = $vendor->id;\n $url_google->url = $request->input('url_google');\n $url_google->website_type = 'Google';\n $url_google->save();\n\n $url_instagram = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Instagram']);\n $url_instagram->contact_id = $vendor->id;\n $url_instagram->url = $request->input('url_instagram');\n $url_instagram->website_type = 'Instagram';\n $url_instagram->save();\n\n $url_linkedin = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'LinkedIn']);\n $url_linkedin->contact_id = $vendor->id;\n $url_linkedin->url = $request->input('url_linkedin');\n $url_linkedin->website_type = 'LinkedIn';\n $url_linkedin->save();\n\n $url_twitter = \\App\\Website::firstOrNew(['contact_id'=>$vendor->id, 'website_type'=>'Twitter']);\n $url_twitter->contact_id = $vendor->id;\n $url_twitter->url = $request->input('url_twitter');\n $url_twitter->website_type = 'Twitter';\n $url_twitter->save();\n\n return Redirect::action('VendorController@show', $vendor->id);\n }", "public function survey_update(Request $request )\n\t {\n\n\t \t\t// $ssdata =\tjson_decode($request->settings,true);\n\t \t\t// dump($ssdata);\n\t \t\t// die;\n\t try{\n\t \tDB::beginTransaction();\n\t Surrvey::findORfail($request->id);\n\t \t$status = \"0\";\n\t if($request->enableDisable==\"true\")\n\t {\n\t \t$status = \"1\";\n\t }\n\t $array = array(\n\t \t\t'name'\t\t\t=>\t$request->name,\n\t \t\t'description'\t=>\t$request->description,\n\t \t\t'status'\t\t=>\t$status\n\t \t);\n\t Surrvey::where('id',$request->id)->update(['name'=>$request->name, 'description'=>$request->description,'status'=>$status]);\n\t $ssetting = SSETTING::where('survey_id',$request->id);\n\t \tif($ssetting->count() > 0){\n\t \t\t$ssetting->forceDelete();\n\t \t}\n\t \t$sid = $request->id;\n\t\t \t$ssdata =\tjson_decode($request->settings,true);\n\t\t \t$this->setting_save($ssdata, $sid);\n\n\t\t DB::commit();\t\t\n \treturn ['status'=>'success', 'response'=>'successfully updated surrvey'];\n\t }catch(\\Exception $e)\n\t {\n\t \tDB::rollback();\n\t \tthrow $e;\n\t \treturn ['status'=>'success', 'response'=>'Something goes wrong Try Again'];\n\t }\n\t }", "public function updateVendorComplianceSurveyAsyncWithHttpInfo($body)\n {\n $returnType = '';\n $request = $this->updateVendorComplianceSurveyRequest($body);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n return [null, $response->getStatusCode(), $response->getHeaders()];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n );\n }", "public function updateVendor() {\n try {\n if (!($this->vendor instanceof Base_Model_ObtorLib_App_Core_Catalog_Entity_Vendor)) {\n throw new Base_Model_ObtorLib_App_Core_Catalog_Exception(\" Vendor Entity not initialized\");\n } else {\n $objVendor = new Base_Model_ObtorLib_App_Core_Catalog_Dao_Vendor();\n $objVendor->vendor = $this->vendor;\n return $objVendor->updateVendor();\n }\n } catch (Exception $ex) {\n throw new Base_Model_ObtorLib_App_Core_Catalog_Exception($ex);\n }\n }", "public function testUpdateSurveyGroup()\n {\n $surveyGroup = SurveyGroup::factory()->create();\n\n $response = $this->json('PATCH', \"survey-group/{$surveyGroup->id}\", [\n 'survey_group' => [ 'title' => 'Fork Your Survey' ]\n ]);\n\n $response->assertStatus(200);\n $this->assertDatabaseHas('survey_group', [ 'id' => $surveyGroup->id, 'title' => 'Fork Your Survey' ]);\n }", "public function testGetVendorComplianceSurveyFiles()\n {\n }", "protected function addVendorComplianceSurveyFileRequest($vendor_compliance_survey_id, $file_name)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling addVendorComplianceSurveyFile'\n );\n }\n // verify the required parameter 'file_name' is set\n if ($file_name === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $file_name when calling addVendorComplianceSurveyFile'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file/{fileName}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($file_name !== null) {\n $resourcePath = str_replace(\n '{' . 'fileName' . '}',\n ObjectSerializer::toPathValue($file_name),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'POST',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function update(Request $request, Vendor $vendor)\n {\n $vendor->update($request->validate([\n 'name' => 'required|max:60',\n 'notes' => 'nullable|max:255',\n 'website' => 'nullable|url|max:255',\n 'is_active' => 'required|boolean',\n ]));\n\n flash(__('vendor.updated'), 'success');\n\n return redirect()->route('vendors.index', request(['page', 'q']));\n }", "public function testVenueSubmitSurvey()\n {\n $this->buildVenueSurvey();\n\n $venueG = $this->venueGroup;\n $venueQ = $this->venueQuestion;\n\n $response = $this->json('POST', 'survey/submit', [\n 'slot_id' => $this->slot->id,\n 'type' => Survey::TRAINING,\n 'survey' => [\n [\n 'survey_group_id' => $venueG->id,\n 'answers' => [\n [\n 'survey_question_id' => $venueQ->id,\n 'response' => 'a response'\n ]\n ]\n ],\n ]\n ]);\n\n $response->assertStatus(200);\n\n $this->assertDatabaseHas('survey_answer', [\n 'person_id' => $this->user->id,\n 'slot_id' => $this->slot->id,\n 'survey_question_id' => $venueQ->id,\n 'response' => 'a response'\n ]);\n }", "protected function deleteVendorComplianceSurveyFileRequest($vendor_compliance_survey_id, $file_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling deleteVendorComplianceSurveyFile'\n );\n }\n // verify the required parameter 'file_id' is set\n if ($file_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $file_id when calling deleteVendorComplianceSurveyFile'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file/{fileId}';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n // path params\n if ($file_id !== null) {\n $resourcePath = str_replace(\n '{' . 'fileId' . '}',\n ObjectSerializer::toPathValue($file_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'DELETE',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function test_updateLegacyLowstockContact() {\n\n }", "public function updated(TechnicalVendorSchedule $technical_vendor_schedule)\n {\n //\n }", "public function actionUpdate($id)\n\t{\n\t //echo '<pre>';\n\t //var_dump($_POST);die;\n\t\t$w_id = '';\n\t\tif(isset(Yii::app()->session['w_id']) && !empty(Yii::app()->session['w_id'])){\n\t\t\t$w_id = Yii::app()->session['w_id'];\n\t\t}\n\t\tif(!$this->checkAccessByData('VendorCreditEditor', array('warehouse_id'=>$w_id))){\n\t\t\tYii::app()->user->setFlash('premission_info', 'You dont have permission.! Bitch');\n\t\t\tYii::app()->controller->redirect(\"index.php?r=vendor/admin&w_id=\".$w_id);\n\t\t}\n $initial_pending_date = VendorDao::getInitialPendingDate();\n\t\t$model=$this->loadModel($id);\n\t\t$vendor = Vendor::model()->findByPk($model->vendor_id);\n\t\t$initialPaid = $model->paid_amount;\n\t\t// Uncomment the following line if AJAX validation is needed\n\t\t// $this->performAjaxValidation($model);\n\n\t\tif(isset($_POST['VendorPayment']))\n\t\t{\n if(strtotime($_POST['VendorPayment']['date']) <= strtotime($initial_pending_date)){\n Yii::app()->user->setFlash('error', \"Can't update payment created before base_date. Please Ask Developer\" );\n Yii::app()->controller->redirect(\"index.php?r=vendorPayment/admin&w_id=\".$w_id);\n }\n\t\t\t$model->attributes=$_POST['VendorPayment'];\n\t\t\tif($model->save()){\n\t\t\t\t$vendor->total_pending_amount += $initialPaid;\n\t\t\t\t$vendor->total_pending_amount -= $model->paid_amount;\n\t\t\t\tif(!$vendor->save()){\n\t\t\t\t\tdie(print_r($vendor->getErrors()));\n\t\t\t\t}\n\t\t\t\t$this->redirect(array('vendor/admin'));\n\t\t\t}\n\t\t}\n\t\t$this->render('update',array(\n\t\t\t'model'=>$model,\n\t\t\t'vendor' => $vendor,\n\t\t\t));\n\t}", "public function updated(OnlineInquiry $onlineInquiry)\n {\n //\n }", "function _approveNewVendor(){\n \n $this->ci->load->library('form_validation');\n $person_id = $this->ci->session->userdata('user_id');\n \n $this->resetResponse();\n\n $this->ci->form_validation->set_rules('personId', 'Vendor Person Id', 'trim|required|xss_clean|encode_php_tags|integer', array('required' => 'You must provide a %s.'));\n\n if ($this->ci->form_validation->run() == FALSE) { \n $this->_status = false;\n $this->_message = $this->ci->lang->line('person_id_missing');\n return $this->getResponse();\n } else {\n\n $personId = $this->ci->input->post('personId', true);\n $result = $this->model->get_tb('mm_person', 'person_id', array('person_id' => $personId))->result();\n if (count($result) > 0) {\n $this->model->update_tb('mm_person', array('person_id' => $personId), array('person_status'=>1));\n \n if( $this->model->getAffectedRowCount() > 0 ) {\n $this->_status = true;\n $this->_message = $this->ci->lang->line('vendor_approved'); \n }\n } else {\n $this->_status = FALSE;\n $this->_message = $this->ci->lang->line('invalid_data'); \n \n }\n\n return $this->getResponse();\n }\n \n }", "public function updateVoucher($voucher_code, $updateVal, $tally_resp){\n\t\t$updateVouchers = DB::table('vouchers')\n\t\t \t->where('voucher_code', '=', $voucher_code)\n\t\t \t->update(['is_posted'=> $updateVal, 'tally_resp' => $tally_resp, 'sync_date' => date('Y-m-d H:i:s') ]);\n\n\t\treturn true;\n\t}", "public function test_an_admin_can_update_a_role_competency()\n {\n $this->actingAs($this->admin);\n\n $roleCompetency = factory('App\\RoleCompetency')->create();\n\n $roleCompetency->name = 'Updated Name';\n $roleCompetency->description = 'Updated Description';\n\n $response = $this->patch(route('role_competencies.update', $roleCompetency->id), $roleCompetency->toArray());\n $response->assertRedirect();\n $this->assertDatabaseHas('role_competencies', [\n 'id' => $roleCompetency->id,\n 'name' => $roleCompetency->name,\n 'description' => $roleCompetency->description,\n ]);\n }", "public function update(Request $request, CompanyUserVerification $companyUserVerification)\n {\n //\n }", "public function edit(ClientSurvey $clientSurvey)\n {\n //\n }", "public function execute()\n {\n\n $inline = $this->getRequest()->getParam('inline', 0);\n $vendorIds = $this->getRequest()->getParam('vendor_id');\n $status = $this->getRequest()->getParam('status', '');\n $reason = $this->getRequest()->getParam('reason', '');\n\n $shop_disable = 2;\n if ($status == \\Ced\\CsMarketplace\\Model\\Vendor::VENDOR_APPROVED_STATUS) {\n $shop_disable = 1;\n }\n if ($status == \\Ced\\CsMarketplace\\Model\\Vendor::VENDOR_DISAPPROVED_STATUS) {\n $shop_disable = 2;\n }\n\n if ($inline) {\n $vendorIds = [$vendorIds];\n } else {\n $vendorIds = explode(',', $vendorIds);\n }\n\n if (!is_array($vendorIds)) {\n $this->messageManager->addErrorMessage(__('Please select vendor(s)'));\n } else {\n try {\n $model = $this->_validateMassStatus($vendorIds, $status);\n if ($reason) {\n $model->saveMassAttribute($vendorIds, ['code' => 'reason', 'value' => $reason]);\n } else {\n $model->saveMassAttribute($vendorIds, ['code' => 'reason', 'value' => '']);\n }\n $model->saveMassAttribute($vendorIds, ['code' => 'status', 'value' => $status]);\n\n $shop_model = $this->vshopFactory->create();\n $shop_model->saveShopStatus($vendorIds, $shop_disable);\n $this->messageManager->addSuccessMessage(\n __('Total of %1 record(s) have been updated.', count($vendorIds))\n );\n } catch (\\Exception $e) {\n $this->messageManager->addErrorMessage(\n __(' %1 An error occurred while updating the vendor(s) status.', $e->getMessage())\n );\n }\n }\n $this->_redirect('*/*/index');\n }", "public function update(SaveVendorRequest $request, Vendor $vendor)\n {\n $vendor->vendor_id = $request->input('vendor_id');\n $vendor->vendor_code = $request->input('vendor_code');\n $vendor->supplier_name = $request->input('supplier_name');\n $vendor->contact_person = $request->input('contact_person');\n $vendor->address = $request->input('address');\n $vendor->city = $request->input('city');\n $vendor->state_or_province = $request->input('state_or_province');\n $vendor->country = $request->input('country');\n $vendor->postal_code = $request->input('postal_code');\n $vendor->phone_number = $request->input('phone_number');\n $vendor->fax_number = $request->input('fax_number');\n $vendor->email = $request->input('email');\n $vendor->save();\n\n return redirect()->route('vendors.index')->with('success', 'Vendor updated successfully.');\n }", "public function updateSurvey(){\n\t\t// echo $this->session->userdata('id_users');exit();\n\t\tdate_default_timezone_set('Asia/Jakarta');\n\t\t$action = $this->input->post('action');\n\t\t$where \t= array(\n\t\t\t'id'\t=> $this->input->post('id')\n\t\t);\n\t\t$data = array(\n\t\t\t'title'\t\t\t=> $this->input->post('title'),\n\t\t\t// 'date' \t\t\t=> $this->dmys2ymd(date(\"y/m/d\")),\n\t\t\t'date' \t\t\t=> date('Y-m-d'),\n\t\t\t'beginDate' => $this->checkDate($this->input->post('surveyBegin')),\n\t\t\t'endDate' \t=> $this->checkDate($this->input->post('surveyEnd')),\n\t\t\t'category'\t\t\t\t=> $this->input->post('category'),\n\t\t\t'url'\t\t\t\t=> $this->input->post('url'),\n\t\t\t'target'\t\t=> $this->input->post('target'),\n\t\t\t'id_user'\t=> $this->session->userdata('id_users')\n\t\t);\n\n\t\tif ($action == \"create\") {\n\t\t\t$checkSurvey = $this->MstSurveyModel->checkSurvey($this->input->post('title'));\n\t\t\tif($checkSurvey->title > 0) $response = \"duplicate\";\n\t\t\telse{\n\t\t\t\t#cek mak survey\n\t\t\t\t$usr_lvl = $this->MstSurveyModel->cek_level($this->session->userdata('id_user_level'));\n\t\t\t\tif($usr_lvl->max_survey > 0){\n\t\t\t\t\t#cek survey bulan ini\n\t\t\t\t\t$svy = $this->MstSurveyModel->cek_survey_bln($this->session->userdata('id_users'),date('Y-m'));\n\t\t\t\t\t#jika jumlah survey belum lewat batas maksimal\n\t\t\t\t\tif($svy->jml_d < $usr_lvl->max_survey){\n\t\t\t\t\t\tif ($this->MstSurveyModel->insert($this->tableSurveys, $data)) {\n\t\t\t\t\t\t\t$response = \"success\";\n\t\t\t\t\t\t}else $response = \"failed\";\n\t\t\t\t\t}else{\n\t\t\t\t\t\t$response = \"failed\";\n\t\t\t\t\t}\n\t\t\t\t}else{\n\t\t\t\t\tif ($this->MstSurveyModel->insert($this->tableSurveys, $data)) {\n\t\t\t\t\t\t$response = \"success\";\n\t\t\t\t\t}else $response = \"failed\";\n\t\t\t\t}\n\t\t\t}\n\t\t}else{\n\t\t\tif ($this->MstSurveyModel->update($this->tableSurveys, $data, $where)) {\n\t\t\t\t$response = \"success\";\n\t\t\t}else $response = \"failed\";\n\t\t}\n\n\t\techo json_encode($response);\n\t}", "public function update(Request $request)\n {\n if (!Vendor::where('customer_uid', $request->user()->uid)->first()) {\n return errorResponse(\"You don't have vendor yet.\", 404);\n }\n $vendor = Vendor::where('customer_uid', $request->user()->uid)->first();\n $validator = Validator::make($request->all(), [\n 'name' => 'required|max:250',\n 'description' => 'required|min:50',\n 'logo' => 'image',\n 'id_card' => 'image',\n 'national_identity_number' => 'required|unique:vendors,national_identity_number,' . $vendor->id . ',id,deleted_at,NULL',\n 'id_card_with_customer' => 'image',\n 'phone' => 'required|max:20|unique:vendors,phone,' . $vendor->id . ',id,deleted_at,NULL',\n 'village_id' => 'required|exists:villages,id',\n 'street' => 'required',\n 'latitude' => 'required|numeric',\n 'longitude' => 'required|numeric'\n ]);\n if ($validator->fails()) {\n return errorResponse($validator->errors(), 400);\n }\n $requestData = $request->all();\n $village = Village::findOrFail($requestData['village_id']);\n $requestData['district_id'] = $village->district->id;\n $requestData['city_id'] = $village->district->city->id;\n $requestData['province_id'] = $village->district->city->province->id;\n DB::beginTransaction();\n try {\n $requestData['customer_uid'] = $request->user()->uid;\n $requestData['phone'] = $this->phoneNumberUtil->parse($requestData['phone'], 'ID');\n if (!$this->phoneNumberUtil->isValidNumber($requestData['phone'])) {\n return errorResponse('No telepon tidak valid', 400);\n }\n $requestData['phone'] = '+' . $requestData['phone']->getCountryCode() .\n $requestData['phone']->getNationalNumber();\n Log::info('Before update : ' . $vendor);\n $vendor->update($requestData);\n $vendor->address()->delete();\n $address = new VendorAddress($requestData);\n $vendor->address()->save($address);\n Log::info('After update Vendor : ' . $vendor);\n DB::commit();\n return (new VendorResource($vendor));\n } catch (Exception $e) {\n DB::rollBack();\n return errorResponse($e->getMessage(), 500);\n }\n }", "protected function getVendorComplianceSurveyTagsRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling getVendorComplianceSurveyTags'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function update(Request $request, ContinuousAssessment $continuousAssessment)\n {\n //\n }", "public function testCustomerPaymentMethodUpdateCustomerPaymentMethodBycustomerIdcustomerPaymentMethodId()\n {\n }", "public function addVendorComplianceSurveyAsyncWithHttpInfo($body)\n {\n $returnType = '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey';\n $request = $this->addVendorComplianceSurveyRequest($body);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n $responseBody = $response->getBody();\n if ($returnType === '\\SplFileObject') {\n $content = $responseBody; //stream goes to serializer\n } else {\n $content = $responseBody->getContents();\n if ($returnType !== 'string') {\n $content = json_decode($content);\n }\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n );\n }", "public function getDuplicateVendorComplianceSurveyByIdWithHttpInfo($vendor_compliance_survey_id)\n {\n $returnType = '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey';\n $request = $this->getDuplicateVendorComplianceSurveyByIdRequest($vendor_compliance_survey_id);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n $responseBody = $response->getBody();\n if ($returnType === '\\SplFileObject') {\n $content = $responseBody; //stream goes to serializer\n } else {\n $content = $responseBody->getContents();\n if ($returnType !== 'string') {\n $content = json_decode($content);\n }\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }", "public function updateVendor(Request $request, MasterVendor $vendor)\n {\n\n $validator = Validator::make(\n $request->all(),\n [\n 'nama' => 'required|max:255',\n 'kode' => 'required|size:5',\n 'harga_katering_dasar' => 'required',\n 'add_on' => 'required',\n 'harga_add_on' => 'required',\n ],\n [\n 'nama.required' => 'Harap Masukan Nama Vendor (Maks 255)',\n 'kode.size' => 'Kode Vendor Harus 5 Buah',\n 'harga_katering_dasar.required' => 'Harap Masukan Harga Dasar Katering',\n 'add_on.required' => 'Harap Masukan Menu Tambahan',\n 'harga_add_on.required' => 'Harap Masukan Harga Menu Tambahan',\n ]\n );\n\n if ($validator->fails()) {\n return response()->json([\n 'success' => false,\n 'message' => $validator->errors()\n ], 401);\n } else {\n\n $vendor = MasterVendor::whereId($request->input('id'))->update([\n 'nama' => $request->input('nama'),\n 'kode' => $request->input('kode'),\n 'harga_katering_dasar' => $request->input('harga_katering_dasar'),\n 'add_on' => $request->input('add_on'),\n 'harga_add_on' => $request->input('harga_add_on'),\n ]);\n\n if ($vendor) {\n return response()->json([\n 'success' => true,\n 'message' => 'Menu Berhasil Diupdate!',\n ], 200);\n } else {\n return response()->json([\n 'success' => false,\n 'message' => 'Menu Gagal Diupdate!',\n ], 401);\n }\n }\n\n }", "protected function getVendorComplianceSurveyFilesRequest($vendor_compliance_survey_id)\n {\n // verify the required parameter 'vendor_compliance_survey_id' is set\n if ($vendor_compliance_survey_id === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $vendor_compliance_survey_id when calling getVendorComplianceSurveyFiles'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n // path params\n if ($vendor_compliance_survey_id !== null) {\n $resourcePath = str_replace(\n '{' . 'vendorComplianceSurveyId' . '}',\n ObjectSerializer::toPathValue($vendor_compliance_survey_id),\n $resourcePath\n );\n }\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function update($consultationVp){\n\t\t$sql = 'UPDATE consultation_vp SET reason_consultation_id = ?, visual_problem_id = ? WHERE consultation_vp_id = ?';\n\t\t$sqlQuery = new SqlQuery($sql);\n\t\t\n\t\t$sqlQuery->setNumber($consultationVp->reasonConsultationId);\n\t\t$sqlQuery->setNumber($consultationVp->visualProblemId);\n\n\t\t$sqlQuery->setNumber($consultationVp->consultationVpId);\n\t\treturn $this->executeUpdate($sqlQuery);\n\t}", "public function update() {\n\t\tif (!$this->isActive()) {\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t$log_file = 'spectrum.update';\n\t\t$log_key = strtoupper(Utils::rand('4'));\n\t\t$time_start = microtime(true);\n\t\t$this->lecho('Starting update', $log_file, $log_key); \n\t\tif (!isset($this->params['spectrum_survey_id']) && !isset($this->params['project_id'])) {\n\t\t\t$this->lecho('FAILED: You need at least spectrum_survey_id or project_id set to update', $log_file, $log_key);\n\t\t\treturn false;\n\t\t}\n\t\tif (!$this->loadSettings($log_file, $log_key, $time_start)) {\n\t\t\t$this->lecho('Completed update (Execution time: '.(microtime(true) - $time_start).')', $log_file, $log_key);\n\t\t\t// this method logs the errors already\n\t\t\treturn false;\n\t\t}\n\t\tif (isset($this->params['spectrum_survey_id'])) {\n\t\t\t$spectrum_project = $this->SpectrumProject->find('first', array(\n\t\t\t\t'conditions' => array(\n\t\t\t\t\t'SpectrumProject.spectrum_survey_id' => $this->params['spectrum_survey_id']\n\t\t\t\t),\n\t\t\t\t'order' => 'SpectrumProject.id DESC'\n\t\t\t));\n\t\t\t\n\t\t\tif (empty($spectrum_project['SpectrumProject']['project_id'])) {\n\t\t\t\t$this->lecho('Spectrum project #S'. $this->params['spectrum_survey_id'] .' has not been imported.', $log_file, $log_key);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t$project_id = $spectrum_project['SpectrumProject']['project_id'];\n\t\t}\n\t\telse {\n\t\t\t$project_id = $this->params['project_id']; \n\t\t}\n\t\t\n\t\t$this->Project->bindModel(array(\n\t\t\t'hasOne' => array(\n\t\t\t\t'SpectrumProject'\n\t\t\t)\n\t\t));\n\t\t$project = $this->Project->find('first', array(\n\t\t\t'conditions' => array(\n\t\t\t\t'Project.id' => $project_id\n\t\t\t)\n\t\t));\n\t\t\n\t\t$mintvine_group = $this->Group->find('first', array(\n\t\t\t'fields' => array('Group.id'),\n\t\t\t'conditions' => array(\n\t\t\t\t'Group.key' => 'mintvine'\n\t\t\t)\n\t\t));\n\t\t// block ad-hoc updates; this is a sanity check to prevent items added into queue from updating if a PM has switched to ad-hoc\n\t\tif ($project['SpectrumProject']['status'] == 'skipped.adhoc' || empty($project['Project']['group_id']) || $project['Project']['group_id'] == $mintvine_group['Group']['id']) {\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t$this->lecho('Updating Spectrum project Project.id#'. $project_id, $log_file, $log_key);\n\t\t$spectrum_survey_api = $this->getSpectrumSurvey(array('Survey', 'SurveyQuotasAndQualifications'));\n\t\tif (!$spectrum_survey_api) {\n\t\t\t$this->Project->create();\n\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t'status' => PROJECT_STATUS_CLOSED,\n\t\t\t\t'active' => false,\n\t\t\t\t// update ended if it's blank - otherwise leave the old value\n\t\t\t\t'ended' => empty($project['Project']['ended']) ? date(DB_DATETIME) : $project['Project']['ended']\n\t\t\t)), true, array('status', 'active', 'ended'));\n\t\t\t\n\t\t\t$this->ProjectLog->create();\n\t\t\t$this->ProjectLog->save(array('ProjectLog' => array(\n\t\t\t\t'project_id' => $project['Project']['id'],\n\t\t\t\t'type' => 'status.closed.spectrum',\n\t\t\t\t'description' => 'Not found in allocation'\n\t\t\t)));\n\t\t\tUtils::save_margin($project['Project']['id']);\n\t\t\t$this->lecho('FAILED: #S'.$this->params['spectrum_survey_id'].' not found in allocations.', $log_file, $log_key);\n\t\t\t$this->lecho('Completed create (Execution time: '.(microtime(true) - $time_start).')', $log_file, $log_key);\n\t\t\treturn false;\n\t\t}\n\t\t$spectrum_survey = $spectrum_survey_api['Survey'];\n\t\t$survey_quotas = $spectrum_survey_api['SurveyQuotas'];\n\t\t\n\t\t// extract partner rate, client, rate and award amounts\n\t\t$payouts = $this->Spectrum->payout($spectrum_survey);\n\t\t$overall_quota = $this->Spectrum->quota($spectrum_survey);\n\t\t$direct_allocation = false; // TODO: Need to confirm with api\n\t\t$client_link = $this->client_link($spectrum_survey, $log_file, $log_key);\n\t\t$bid_ir = $this->Spectrum->ir($spectrum_survey);\n\t\t$loi = $this->Spectrum->loi($spectrum_survey);\n\t\t$min_time = round($loi / 4);\n\t\tif ($min_time < 1) {\n\t\t\t$min_time = 1;\n\t\t}\n\t\t\n\t\tMintVine::project_quota_statistics('spectrum', $overall_quota, $project['Project']['id']);\n\t\t\n\t\t// for existing projects, update overall_quota with the # of completes\n\t\t// note: this is used below for checking closed status\n\t\t$survey_visit_cache = $this->SurveyVisitCache->find('first', array(\n\t\t\t'fields' => array('complete', 'click', 'nq', 'overquota'),\n\t\t\t'conditions' => array(\n\t\t\t\t'SurveyVisitCache.survey_id' => $project['Project']['id']\n\t\t\t),\n\t\t\t'recursive' => -1\n\t\t));\n\t\tif ($overall_quota && $overall_quota > 0 && $survey_visit_cache) {\n\t\t\t$overall_quota = $overall_quota + $survey_visit_cache['SurveyVisitCache']['complete'];\n\t\t}\n\t\t\n\t\t$this->set_security_group($project, $spectrum_survey);\n\t\t\n\t\t$project_data = array('Project' => array(\n\t\t\t'id' => $project['Project']['id'],\n\t\t\t'client_rate' => $payouts['client_rate'],\n\t\t\t'award' => $payouts['award'],\n\t\t\t'client_id' => $this->spectrum_client['Client']['id'],\n\t\t\t'prj_name' => $spectrum_survey['survey_name'],\n\t\t\t'bid_ir' => $bid_ir,\n\t\t\t'partner_rate' => $payouts['partner_rate'],\n\t\t\t'user_payout' => $payouts['partner_rate'],\n\t\t\t'quota' => $overall_quota,\n\t\t\t'est_length' => $loi,\n\t\t\t'minimum_time' => $min_time,\n\t\t\t'language' => $this->Spectrum->language($spectrum_survey),\n\t\t\t'client_survey_link' => $client_link,\n\t\t));\n\t\t\n\t\t$project_changed = Utils::array_values_changed($project_data['Project'], $project['Project']);\n\t\tif ($project_changed) {\n\t\t\t// if rate changes we update partners\n\t\t\tif ($project['Project']['client_rate'] != $payouts['client_rate']) {\n\t\t\t\t$survey_partners = $this->Project->SurveyPartner->find('all', array(\n\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t'SurveyPartner.survey_id' => $project['Project']['id'],\n\t\t\t\t\t\t'partner_id' => $this->mv_partner['Partner']['id'],\n\t\t\t\t\t))\n\t\t\t\t);\n\t\t\t\tforeach ($survey_partners as $survey_partner) {\n\t\t\t\t\t$this->Project->SurveyPartner->create();\n\t\t\t\t\t$this->Project->SurveyPartner->save(array('SurveyPartner' => array(\n\t\t\t\t\t\t'id' => $survey_partner['SurveyPartner']['id'],\n\t\t\t\t\t\t'rate' => $payouts['partner_rate'],\n\t\t\t\t\t)), true, array('rate'));\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t// update the project touch date\n\t\t\t$project_data['Project']['touched'] = date(DB_DATETIME); \n\t\t\t$project_changed[] = 'touched';\n\t\t\t$this->Project->create();\n\t\t\t$this->Project->save($project_data, true, $project_changed);\n\t\t\t$this->lecho('[SUCCESS] Project Project.id#'.$project['Project']['id'].' updated with new fields', $log_file, $log_key); \n\t\t\t$this->ProjectLog->create();\n\t\t\t$this->ProjectLog->save(array('ProjectLog' => array(\n\t\t\t\t'project_id' => $project['Project']['id'],\n\t\t\t\t'type' => 'updated',\n\t\t\t\t'description' => json_encode($project_changed)\n\t\t\t)));\n\t\t}\n\t\telse {\n\t\t\t// update the last touched timestamp\n\t\t\t$this->Project->create();\n\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t'touched' => date(DB_DATETIME)\n\t\t\t)), true, array('touched'));\n\t\t\t\n\t\t\t$this->lecho('[SKIPPED] Project Project.id#'.$project['Project']['id'].' does not need to be updated', $log_file, $log_key); \n\t\t}\n\t\t\n\t\t$project_status = $project['Project']['status'];\n\t\t\n\t\t// if this project is open, and Spectrum is reporting a closed project, then close it\n\t\t// no need to check project.active\n\t\tif (!$project['Project']['ignore_autoclose'] && $project['Project']['status'] == PROJECT_STATUS_OPEN) {\n\t\t\t$still_open = true;\n\t\t\tif ($this->Spectrum->is_closed($spectrum_survey)) {\n\t\t\t\t$this->Project->create();\n\t\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t\t'status' => PROJECT_STATUS_CLOSED,\n\t\t\t\t\t'active' => false,\n\t\t\t\t\t// update ended if it's blank - otherwise leave the old value\n\t\t\t\t\t'ended' => empty($project['Project']['ended']) ? date(DB_DATETIME) : $project['Project']['ended']\n\t\t\t\t)), true, array('status', 'active', 'ended'));\n\t\t\t\t\n\t\t\t\t$this->ProjectLog->create();\n\t\t\t\t$this->ProjectLog->save(array('ProjectLog' => array(\n\t\t\t\t\t'project_id' => $project['Project']['id'],\n\t\t\t\t\t'type' => 'status.closed.spectrum',\n\t\t\t\t\t'description' => 'Closed by Spectrum'\n\t\t\t\t)));\n\t\t\t\tUtils::save_margin($project['Project']['id']);\n\t\t\t\t$still_open = false;\n\t\t\t\t$this->lecho('[SUCCESS] Project Project.id#'.$project['Project']['id'].' closed by Spectrum', $log_file, $log_key); \n\t\t\t}\n\t\t\t// after update, the new rules fail some internal mechanisms\n\t\t\telseif (!$this->checkInternalSpectrumRules($spectrum_survey_api, $log_file, $log_key)) {\n\t\t\t\t$this->Project->create();\n\t\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t\t'status' => PROJECT_STATUS_CLOSED,\n\t\t\t\t\t'active' => false,\n\t\t\t\t\t// update ended if it's blank - otherwise leave the old value\n\t\t\t\t\t'ended' => empty($project['Project']['ended']) ? date(DB_DATETIME) : $project['Project']['ended']\n\t\t\t\t)), true, array('status', 'active', 'ended'));\n\t\t\t\t\n\t\t\t\t$this->ProjectLog->create();\n\t\t\t\t$this->ProjectLog->save(array('ProjectLog' => array(\n\t\t\t\t\t'project_id' => $project['Project']['id'],\n\t\t\t\t\t'type' => 'status.closed.rules',\n\t\t\t\t\t'failed_rule' => (isset($this->failed_rule)) ? $this->failed_rule : '',\n\t\t\t\t\t'failed_data' => json_encode($spectrum_survey),\n\t\t\t\t\t'description' => 'Closed because it failed our project filter rules'\n\t\t\t\t)));\n\t\t\t\tUtils::save_margin($project['Project']['id']);\n\t\t\t\t$still_open = false;\n\t\t\t\t$this->failed_rule = '';\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// run a performance-based check\n\t\t\t\t$mvapi = new HttpSocket(array(\n\t\t\t\t\t'timeout' => 15,\n\t\t\t\t\t'ssl_verify_host' => false // PHP does not seem to check SANs for CNs\n\t\t\t\t));\n\t\t\t\t$mvapi->configAuth('Basic', $this->settings['api.mintvine.username'], $this->settings['api.mintvine.password']);\n\t\t\t\t$results = $mvapi->post($this->settings['hostname.api'].'/surveys/test_survey_status/'.$project['Project']['id']);\n\t\t\t\t$response = json_decode($results['body'], true);\n\t\t\t\t\n\t\t\t\tif ($results['close_project']) {\n\t\t\t\t\t$still_open = false;\n\t\t\t\t\t$this->lecho('[CLOSED] #'.$project['Project']['id'].' Closed for performance reaasons', $log_file, $log_key); \n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t// figure out to send to more sample, or \"launch\" if sampling\n\t\t\tif ($still_open) {\n\t\t\t\t// projects that get taken out of our allocation are \"stopped\" - take them out of that state\n\t\t\t\tif (!$project['Project']['active']) {\n\t\t\t\t\t$this->Project->create();\n\t\t\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t\t\t'active' => true\n\t\t\t\t\t)), true, array('active')); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t// if this project is closed, then try to reopen it\n\t\telseif (!$project['Project']['ignore_autoclose'] && $project['Project']['status'] == PROJECT_STATUS_CLOSED) {\n\t\t\t// if this project is now available and open\n\t\t\tif (!$this->Spectrum->is_closed($spectrum_survey) && $this->checkInternalSpectrumRules($spectrum_survey_api, $log_file, $log_key)) {\n\t\t\t\t$last_close_status = $this->ProjectLog->find('first', array(\n\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t'ProjectLog.project_id' => $project['Project']['id'],\n\t\t\t\t\t\t'ProjectLog.type LIKE' => 'status.closed%'\n\t\t\t\t\t),\n\t\t\t\t\t'order' => 'ProjectLog.id DESC'\n\t\t\t\t));\n\t\t\t\t\n\t\t\t\t// status.closed.spectrum - If the project was explicitly closed by Spectrum, re-open if it's now open\n\t\t\t\t// status.closed.rules - If the project was close becoz of rules, re-open as they changed now like bid_ir, loi etc\n\t\t\t\tif (!$last_close_status || in_array($last_close_status['ProjectLog']['type'], array('status.closed.spectrum', 'status.closed.rules'))) {\n\t\t\t\t\t$need_to_reopen = false;\n\t\t\t\t\tif (empty($survey_visit_cache['SurveyVisitCache']['complete'])) {\n\t\t\t\t\t\t$need_to_reopen = true;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t$mvapi = new HttpSocket(array(\n\t\t\t\t\t\t\t'timeout' => 15,\n\t\t\t\t\t\t\t'ssl_verify_host' => false // PHP does not seem to check SANs for CNs\n\t\t\t\t\t\t));\n\t\t\t\t\t\t$mvapi->configAuth('Basic', $this->settings['api.mintvine.username'], $this->settings['api.mintvine.password']);\n\t\t\t\t\t\t$results = $mvapi->get($this->settings['hostname.api'].'/surveys/test_survey_status/'.$project['Project']['id']);\n\t\t\t\t\t\t$response = json_decode($results['body'], true);\n\t\t\t\t\t\t\n\t\t\t\t\t\tif ($response['open_project']) { \n\t\t\t\t\t\t\t$need_to_reopen = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tif ($need_to_reopen) {\n\t\t\t\t\t\t// reopen project\n\t\t\t\t\t\t$count = $this->SurveyUser->find('count', array(\n\t\t\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t\t\t'SurveyUser.survey_id' => $project['Project']['id']\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t'recursive' => -1\n\t\t\t\t\t\t));\n\t\t\t\t\t\t\n\t\t\t\t\t\t$this->Project->create();\n\t\t\t\t\t\t$this->Project->save(array('Project' => array(\n\t\t\t\t\t\t\t'id' => $project['Project']['id'],\n\t\t\t\t\t\t\t'status' => $count == 0 ? PROJECT_STATUS_STAGING : PROJECT_STATUS_OPEN,\n\t\t\t\t\t\t\t'ended' => null,\n\t\t\t\t\t\t\t'active' => true\n\t\t\t\t\t\t)), true, array('status', 'active', 'ended'));\n\t\t\t\t\t\t\n\t\t\t\t\t\t$this->ProjectLog->create();\n\t\t\t\t\t\t$this->ProjectLog->save(array('ProjectLog' => array(\n\t\t\t\t\t\t\t'project_id' => $project['Project']['id'],\n\t\t\t\t\t\t\t'type' => 'status.opened.spectrum',\n\t\t\t\t\t\t\t'description' => 'Reopened by Spectrum'\n\t\t\t\t\t\t)));\n\t\t\t\t\t\t$project_status = ($count == 0) ? PROJECT_STATUS_STAGING : PROJECT_STATUS_OPEN;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telseif (!$project['Project']['ignore_autoclose'] && $project['Project']['status'] == PROJECT_STATUS_STAGING) {\n\t\t\t$this->launchProject($project, $spectrum_survey_api, $log_file, $log_key);\n\t\t}\n\t\t\n\t\n\t\t// write a value that stores the last invite time\n\t\t$project_option = $this->ProjectOption->find('first', array(\n\t\t\t'conditions' => array(\n\t\t\t\t'ProjectOption.project_id' => $project['Project']['id'],\n\t\t\t\t'ProjectOption.name' => 'spectrum.lastrun.updated'\n\t\t\t)\n\t\t));\n\t\tif ($project_option) {\n\t\t\t$this->ProjectOption->create();\n\t\t\t$this->ProjectOption->save(array('ProjectOption' => array(\n\t\t\t\t'id' => $project_option['ProjectOption']['id'],\n\t\t\t\t'value' => date(DB_DATETIME),\n\t\t\t)), true, array('value'));\n\t\t}\n\t\telse {\n\t\t\t$this->ProjectOption->create();\n\t\t\t$this->ProjectOption->save(array('ProjectOption' => array(\n\t\t\t\t'name' => 'spectrum.lastrun.updated',\n\t\t\t\t'value' => date(DB_DATETIME),\n\t\t\t\t'project_id' => $project['Project']['id']\n\t\t\t)));\n\t\t}\n\t\t\n\t\t// update qualifications as last step\n\t\t$this->params['spectrum_survey_id'] = $project['SpectrumProject']['spectrum_survey_id'];\n\t\tif ($project_status == PROJECT_STATUS_OPEN) {\n\t\t\t$this->qqq();\n\t\t}\n\t\t$this->lecho('Completed update (Execution time: '.(microtime(true) - $time_start).')', $log_file, $log_key);\n\t}", "public function getVendorComplianceSurveyByIdWithHttpInfo($vendor_compliance_survey_id)\n {\n $returnType = '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey';\n $request = $this->getVendorComplianceSurveyByIdRequest($vendor_compliance_survey_id);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n $responseBody = $response->getBody();\n if ($returnType === '\\SplFileObject') {\n $content = $responseBody; //stream goes to serializer\n } else {\n $content = $responseBody->getContents();\n if ($returnType !== 'string') {\n $content = json_decode($content);\n }\n }\n\n return [\n ObjectSerializer::deserialize($content, $returnType, []),\n $response->getStatusCode(),\n $response->getHeaders()\n ];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n case 200:\n $data = ObjectSerializer::deserialize(\n $e->getResponseBody(),\n '\\Infoplus\\Infoplus\\Model\\VendorComplianceSurvey',\n $e->getResponseHeaders()\n );\n $e->setResponseObject($data);\n break;\n }\n throw $e;\n }\n }", "function update($p_merchant_name, $p_merchant_email, $p_tax_govt, $p_tax_service)\n {\n $result_update = false;\n \n // format\n $p_merchant_name = sanitizeNoTags($p_merchant_name);\n $p_merchant_email = sanitizeEmail(sanitizeNoTags($p_merchant_email));\n $p_tax_govt = sanitizeFloat($p_tax_govt);\n $p_tax_service = sanitizeFloat($p_tax_service);\n \n // set\n $p_tax_govt = number_format(($p_tax_govt/100), 2);\n $p_tax_service = number_format(($p_tax_service/100), 2);\n\n // set\n $arr_vars = array(\n 'MERCHANT_NAME' => $p_merchant_name,\n 'MERCHANT_EMAIL' => $p_merchant_email,\n 'TAX_GOVT' => $p_tax_govt,\n 'TAX_SERVICE' => $p_tax_service\n );\n \n // connect to database \n parent::connect();\n \n while(list($key,$value) = each($arr_vars))\n {\n if ($value != '')\n {\n // update\n $result = parent::dataUpdate($key, $value); \n }\n \n $key = '';\n $value = '';\n }\n \n // disconnect from database\n parent:: disconnect();\n \n $result_update = '1';\n \n return $result_update; \n }", "public function update(Request $request, enquiryForm $enquiryForm)\n {\n //\n }", "public function testAddVendorComplianceSurveyFileByURL()\n {\n }", "public function updateVendorComplianceSurveyCustomFieldsAsync($body)\n {\n return $this->updateVendorComplianceSurveyCustomFieldsAsyncWithHttpInfo($body)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }", "public function updateclaimquestion(){\n try{\n\t if(isset($this->getData['operators'])){\n\t $opertaors = commonfunction::implod_array($this->getData['operators']);\n\t $update = $this->UpdateInToTable(CLAIM_QUESTIONS, array(array('operators'=>$opertaors, 'question'=>$this->getData['claimquename'], 'status'=>$this->getData['claim_status'])), \"question_id='\".$this->getData['question_id'].\"'\");\n\t }\n\t else{\n\t $update = $this->UpdateInToTable(CLAIM_QUESTIONS, array(array('question'=>$this->getData['claimquename'], 'status'=>$this->getData['claim_status'])), \"question_id='\".$this->getData['question_id'].\"'\");\n\t }\n\t}\n\tcatch (Exception $e) {\n $this->_logger->info('Class-'.__CLASS__.',Function-'.__FUNCTION__.',Line-'.__LINE__.',Error-'.$e->getMessage());\n } \n\t return $update;\n }", "function releaseSurvey($id=null)\r\n {//deprecated, this function is not used\r\n $eventArray = array();\r\n\r\n $this->Survey->setId($id);\r\n $this->params['data'] = $this->Survey->read();\r\n $this->params['data']['Survey']['released'] = 1;\r\n\r\n //add survey to eventsx();\r\n //set up Event params\r\n $eventArray['Event']['title'] = $this->params['data']['Survey']['name'];\r\n $eventArray['Event']['course_id'] = $this->params['data']['Survey']['course_id'];\r\n $eventArray['Event']['event_template_type_id'] = 3;\r\n $eventArray['Event']['template_id'] = $this->params['data']['Survey']['id'];\r\n $eventArray['Event']['self_eval'] = 0;\r\n $eventArray['Event']['com_req'] = 0;\r\n $eventArray['Event']['due_date'] = $this->params['data']['Survey']['due_date'];\r\n $eventArray['Event']['release_date_begin'] = $this->params['data']['Survey']['release_date_begin'];\r\n $eventArray['Event']['release_date_end'] = $this->params['data']['Survey']['release_date_end'];\r\n $eventArray['Event']['creator_id'] = $this->params['data']['Survey']['creator_id'];\r\n $eventArray['Event']['created'] = $this->params['data']['Survey']['created'];\r\n\r\n //Save Data\r\n if ($this->Event->save($eventArray)) {\r\n //Save Groups for the Event\r\n //$this->GroupEvent->insertGroups($this->Event->id, $this->params['data']['Event']);\r\n\r\n //$this->redirect('/events/index/The event is added successfully.');\r\n }\r\n\r\n $this->Survey->save($this->params['data']);\r\n\r\n\r\n\t\t$this->set('data', $this->Survey->findAll(null, null, 'id'));\r\n\t\t$this->set('message', 'The survey was released.');\r\n\t\t$this->index();\r\n\t\t$this->render('index');\r\n\t}", "public function update(Request $request, VoucherUniqueCode $voucherUniqueCode)\n {\n //\n }", "public function update(Request $request, Vendor $Vendor) {\n $this->saveUpdateVendorDetails($request);\n return redirect()->route('vendors.index')->with('success', 'Vendor updated successfully');\n }", "public function update(UpdateDhaagaClothingVendor $request, $id)\n {\n $validatedData = $request->validated();\n\n $findData = DhaagaClothingVendor::find($id);\n\n $findData->dhaaga_clothing_vendor_id = IdGenerator::generate(['table' => 'dhaaga_clothing_vendors', 'length' => 13, 'field' => 'dhaaga_clothing_vendor_id', 'prefix' => 'VNDR-']);;\n $findData->vendor_type = $validatedData['vendor_type'];\n $findData->vendor_name = $validatedData['vendor_name'];\n $findData->purchased_products = $validatedData['product_purchased'];\n\n $findData->phoneNo = $validatedData['phoneNo'];\n $findData->address = $validatedData['address'];\n\n $findData->status = '1';\n $findData->created_by = Auth::id();\n\n\n if ($findData->save()) {\n return response()->json(['status'=>'true' , 'message' => 'vendor data updated successfully'] , 200);\n }else{\n return response()->json(['status'=>'errorr' , 'message' => 'error occured please try again'] , 200);\n }\n }", "public function updated(InterviewQuestion $interviewQuestion): void\n {\n //\n }", "public function set_security_group($spectrum_project, $spectrum_survey) {\n\t\t$survey_group_exists = false;\n\t\t$api_group_spectrum_survey_ids = array();\n\t\tif (!empty($spectrum_survey['survey_grouping']['survey_ids'])) {\n\t\t\t$api_group_spectrum_survey_ids = $spectrum_survey['survey_grouping']['survey_ids'];\n\t\t\t$survey_group_exists = true; \n\t\t}\n\t\t\n\t\tif ($survey_group_exists != $spectrum_project['SpectrumProject']['survey_group_exists']) {\n\t\t\t$this->SpectrumProject->create();\n\t\t\t$this->SpectrumProject->save(array('SpectrumProject' => array(\n\t\t\t\t'id' => $spectrum_project['SpectrumProject']['id'],\n\t\t\t\t'survey_group_exists' => $survey_group_exists\n\t\t\t)), true, array('survey_group_exists'));\n\t\t}\n\t\t\n\t\t$db_group_spectrum_survey_ids = $this->SpectrumSurveyGroup->find('list', array(\n\t\t\t'fields' => array('SpectrumSurveyGroup.id', 'SpectrumSurveyGroup.group_spectrum_survey_id'),\n\t\t\t'conditions' => array(\n\t\t\t\t'SpectrumSurveyGroup.project_id' => $spectrum_project['SpectrumProject']['project_id'],\n\t\t\t\t'SpectrumSurveyGroup.deleted is null'\n\t\t\t)\n\t\t));\n\t\t\n\t\tif ($survey_group_exists) {\n\t\t\t$missing_from_db = array_diff($api_group_spectrum_survey_ids, $db_group_spectrum_survey_ids); \n\t\t\t$missing_from_api = array_diff($db_group_spectrum_survey_ids, $api_group_spectrum_survey_ids); \n\t\t}\n\t\telse {\n\t\t\t$missing_from_db = array();\n\t\t\t$missing_from_api = $db_group_spectrum_survey_ids;\n\t\t}\n\t\t\n\t\tif (!empty($missing_from_db)) {\n\t\t\t$spectrum_projects = $this->SpectrumProject->find('list', array(\n\t\t\t\t'fields' => array('SpectrumProject.spectrum_survey_id', 'SpectrumProject.project_id'),\n\t\t\t\t'conditions' => array(\n\t\t\t\t\t'SpectrumProject.spectrum_survey_id' => $missing_from_db\n\t\t\t\t)\n\t\t\t));\n\t\t\tforeach ($missing_from_db as $group_spectrum_survey_id) {\n\t\t\t\t$this->SpectrumSurveyGroup->create();\n\t\t\t\t$this->SpectrumSurveyGroup->save(array('SpectrumSurveyGroup' => array(\n\t\t\t\t\t'project_id' => $spectrum_project['SpectrumProject']['project_id'],\n\t\t\t\t\t'spectrum_survey_id' => $spectrum_project['SpectrumProject']['spectrum_survey_id'],\n\t\t\t\t\t'group_spectrum_survey_id' => $group_spectrum_survey_id,\n\t\t\t\t\t'group_project_id' => isset($spectrum_projects[$group_spectrum_survey_id]) ? $spectrum_projects[$group_spectrum_survey_id] : ''\n\t\t\t\t)));\n\t\t\t}\n\t\t}\n\t\t\n\t\tif (!empty($missing_from_api)) {\n\t\t\tforeach ($missing_from_api as $group_spectrum_survey_id) {\n\t\t\t\t$key = array_search($group_spectrum_survey_id, $db_group_spectrum_survey_ids); \n\t\t\t\tif ($key !== false) {\n\t\t\t\t\t$this->SpectrumSurveyGroup->create();\n\t\t\t\t\t$this->SpectrumSurveyGroup->save(array('SpectrumSurveyGroup' => array(\n\t\t\t\t\t\t'id' => $key,\n\t\t\t\t\t\t'deleted' => date(DB_DATETIME),\n\t\t\t\t\t\t'modified' => false\n\t\t\t\t\t)), true, array('deleted')); \n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function updateTeamToCertification($team);", "public function update(Request $request, Vendor $vendor)\n {\n //Validate the form\n $this->validate(request(), [\n 'name' => 'required|string|max:255'\n ]);\n flash('Successfully updated vendor!')->success();\n $vendor->update(request()->all());\n return redirect()->route('vendors_index');\n }", "public function updateProductAdvance(Request $request){\n $productId = $request->productId;\n if (isset($productId)) {\n $product = Product::find($productId);\n $proSection = ProductSections::where('productId',$productId)->first();\n\n if ($request->section) {\n $section = implode(',', $request->section);\n $product->update( [\n 'productSection' => @$section,\n \n ]);\n }\n\n if (@$proSection->productId) {\n $productSection = ProductSections::find($proSection->id);\n\n if ($request->related_product) {\n $allproduct = implode(',', $request->related_product);\n $productSection->update( [\n 'related_product' => $allproduct,\n ]);\n }\n\n if ($request->customerGroupId != '') {\n $customerGroupId = implode(',', @$request->customerGroupId); \n }\n $productSection->update( [\n 'free_shipping' => $request->free_shipping,\n 'pre_order' => $request->pre_order,\n 'pre_orderDuration' => $request->pre_orderDuration, \n 'customerGroupId' => @$customerGroupId, \n 'customerGroupPrice' => @$request->customerGroupPrice, \n ]);\n \n if ($request->hotDeal && $request->hotDiscount && $request->hotDate) {\n $productSection->update( [\n 'hotDiscount' => $request->hotDiscount,\n 'hotDate' => $request->hotDate,\n /* 'specialDiscount' => '',\n 'specialDate' => '',*/\n ]);\n }else{\n $productSection->update( [\n 'hotDiscount' => '',\n 'hotDate' => '',\n \n ]);\n }\n\n if ($request->specialDeal && $request->specialDiscount && $request->specialDate) {\n $productSection->update( [\n /* 'hotDiscount' => '',\n 'hotDate' => '',*/\n 'specialDiscount' => $request->specialDiscount,\n 'specialDate' => $request->specialDate,\n\n ]);\n\n }else{\n $productSection->update( [\n 'specialDiscount' => '',\n 'specialDate' => '',\n\n ]);\n }\n\n $countGroup = count($request->customerGroupPrice);\n DB::table('customer_group_sections')->where('productId', $productId)->delete();\n if($request->customerGroupPrice){\n $postData = [];\n for ($i=0; $i <$countGroup ; $i++) { \n $postData[] = [\n 'productId' => $productId,\n 'customerGroupId' => $request->customerGroupId[$i], \n 'customerGroupPrice' => $request->customerGroupPrice[$i]\n ];\n }\n \n CustomerGroupSections::insert($postData);\n }\n\n return redirect(route('product.edit',$productId))->with('msg','Advance Information Save Successfully')->withInput();\n }else{\n if ($request->related_product) {\n $allproduct = implode(',', $request->related_product);\n }\n $productSections = ProductSections::create( [\n 'productId' => $productId,\n 'hotDiscount' => $request->hotDiscount,\n 'hotDate' => $request->hotDate,\n 'specialDiscount' => $request->specialDiscount,\n 'specialDate' => $request->specialDate,\n 'related_product' => @$allproduct,\n ]);\n \n return redirect(route('product.edit',$productId))->with('msg','Advance Information Save Successfully')->withInput();\n }\n }else{\n return redirect(route('product.edit',$productId))->with('error_msg','Please Complete Basic Information ')->withInput(); \n } \n }", "public function testDeleteSurvey0()\n {\n }", "public function testDeleteSurvey0()\n {\n }", "public function testVolunteerHourProjectUpdateFailure_ContactManager()\n {\n // Set test user as current authenticated user\n $this->be($this->contactManager);\n \n $this->session([\n 'username' => $this->contactManager->username, \n 'access_level' => $this->contactManager->access_level\n ]);\n $testProjectID = 1; \n // Call route under test\n $this->call('POST', 'volunteerhours/edit/project/');\n \n // Assert redirected to access denied page\n $this->assertRedirectedToRoute('unauthorized');\n }", "public function update(Request $request, $Soa_OVLID)\n {\n /*$this->validate($request,[\n 'PlateNumber' => 'required|string|max:50',\n 'EngineNumber' => 'required|string|max:50',\n 'SerialNumber' => 'required|string|max:50',\n 'AssetNumber' => 'required|string|max:50',\n 'Type' => 'required|string|max:20',\n 'DriverName' => 'required|string|max:50',\n 'OperatorName' => 'required|string|max:50',\n 'GSCUnit' => 'required|string|max:1',\n ]);*/\n\n date_default_timezone_set('Asia/Manila');\n $jvl= SOA_OVL::findOrFail($Soa_OVLID);\n //$driver->update($request->all());\n $jvl->update([\n 'GSCSoaSeriesNo' => $request['GSCSoaSeriesNo'],\n 'BilledToIDLink' => $request['BilledToIDLink'],\n 'Status' => strtoupper($request['Status']),\n 'BilledName' => strtoupper($request['BilledName']),\n 'BilledAddress' => strtoupper($request['BilledAddress']),\n 'BilledTin' => strtoupper($request['BilledTin']),\n 'CDateFrom' => strtoupper($request['CDateFrom']),\n 'CDateTo' => strtoupper($request['CDateTo']),\n // 'THRUName' => strtoupper($request['THRUName']),\n // 'THRUPos' => strtoupper($request['THRUPos']),\n 'OVLSoaDate' => $request['OVLSoaDate'],\n 'PreparedBy' => strtoupper($request['PreparedBy']),\n 'PreparedByPos' => strtoupper($request['PreparedByPos']),\n 'ApprovedBy' => strtoupper($request['ApprovedBy']),\n 'ApprovedByPos' => strtoupper($request['ApprovedByPos']),\n // 'CheckedBy' => strtoupper($request['CheckedBy']),\n // 'CheckedByPos' => strtoupper($request['CheckedByPos']),\n // 'NotedBy' => strtoupper($request['NotedBy']),\n // 'NotedByPos' => strtoupper($request['NotedByPos']),\n // 'SOATotalAmount' => strtoupper($request['SOATotalAmount']),\n // 'Salutation' => $request['Salutation'],\n // 'BodyofLetter' => $request['BodyofLetter'],\n 'TotalAmount' => $request['TotalAmount']\n \n\n\n \n ]);\n }", "public function getVendorComplianceSurveyByFilter($filter = null, $page = null, $limit = null, $sort = null)\n {\n list($response) = $this->getVendorComplianceSurveyByFilterWithHttpInfo($filter, $page, $limit, $sort);\n return $response;\n }", "public function testSaveUpdate()\n {\n $user = User::findOne(1002);\n $version = Version::findOne(1001);\n\n $this->specify('Error update attempt', function () use ($user, $version) {\n $data = [\n 'scenario' => VersionForm::SCENARIO_UPDATE,\n 'title' => 'Some very long title...Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam dignissim, lorem in bibendum.',\n 'type' => Version::TYPE_TABLET,\n 'subtype' => 31,\n 'retinaScale' => false,\n 'autoScale' => 'invalid_value',\n ];\n $model = new VersionForm($user, $data);\n\n $result = $model->save($version);\n $version->refresh();\n\n verify('Model should not succeed', $result)->null();\n verify('Model should have errors', $model->errors)->notEmpty();\n verify('Title error message should be set', $model->errors)->hasKey('title');\n verify('ProjectId error message should not be set', $model->errors)->hasntKey('projectId');\n verify('Type error message should not be set', $model->errors)->hasntKey('type');\n verify('Subtype error message should be set', $model->errors)->hasKey('subtype');\n verify('AutoScale error message should be set', $model->errors)->hasKey('autoScale');\n verify('RetinaScale error message should not be set', $model->errors)->hasntKey('retinaScale');\n verify('Version title should not change', $version->title)->notEquals($data['title']);\n verify('Version type should not be changed', $version->type)->notEquals($data['type']);\n verify('Version subtype should not be changed', $version->subtype)->notEquals($data['subtype']);\n });\n\n $this->specify('Success update attempt', function () use ($user, $version) {\n $data = [\n 'scenario' => VersionForm::SCENARIO_UPDATE,\n 'projectId' => 1003, // should be ignored\n 'title' => 'My new test version title',\n 'type' => Version::TYPE_MOBILE,\n 'subtype' => 31,\n 'retinaScale' => true,\n 'autoScale' => true,\n ];\n $model = new VersionForm($user, $data);\n\n $result = $model->save($version);\n\n verify('Model should succeed and return an instance of Version', $result)->isInstanceOf(Version::className());\n verify('Model should not has any errors', $model->errors)->isEmpty();\n verify('The returned Version should be the same as the updated one', $result->id)->equals($version->id);\n verify('Version projectId should not change', $result->projectId)->notEquals($data['projectId']);\n verify('Version title should match', $result->title)->equals($data['title']);\n verify('Version type should match', $result->type)->equals($data['type']);\n verify('Version subtype should match', $result->subtype)->equals($data['subtype']);\n verify('Version scaleFactor should match', $result->scaleFactor)->equals(Version::AUTO_SCALE_FACTOR);\n });\n }", "public function testHandleUpdateValidationError()\n {\n // Populate data\n $this->_populate();\n \n // Request\n $response = $this->withSession($this->adminSession)\n ->call('POST', '/dealer-account/edit', $this->customDealerAccountData, [], [], ['HTTP_REFERER' => '/dealer-account/edit']);\n \n // Verify\n $this->assertRedirectedTo('/dealer-account/edit');\n $this->assertSessionHasErrors();\n }", "public function testWebinarUpdate()\n {\n }", "public function vendorChangeStatus(Request $request)\n {\n $validator=Validator::make($request->all(), [\n 'user_id' => 'required',\n 'vendor_id' => 'required',\n 'tag'=>'required',\n 'gig_id'=>'required',\n 'status'=>'required'\n ]);\n if ($validator->fails())\n {\n return response(array(\n 'success'=>0,\n 'data'=>$validator->errors()\n ));\n }\n else\n {\n $response=VendorServiceGig::where(['id'=>$request->gig_id,'vendor_id'=>$request->vendor_id])->update([\n 'status'=>$request->status\n ]);\n if($response)\n {\n return response(array(\n 'success'=>1,\n 'msg'=>'Successfully Updated'\n ));\n }\n else {\n return response(array(\n 'success'=>0,\n 'msg'=>'Something Went Wrong'\n ));\n }\n }\n }" ]
[ "0.75309944", "0.6505394", "0.64308417", "0.6350889", "0.6316221", "0.6316221", "0.6225809", "0.60116196", "0.60116196", "0.58700883", "0.5862898", "0.5855638", "0.58488756", "0.58447593", "0.5816928", "0.57988924", "0.5793409", "0.57602024", "0.57602024", "0.57500476", "0.566911", "0.5662243", "0.5645011", "0.56076694", "0.5607439", "0.5531243", "0.5459324", "0.5434977", "0.5345367", "0.53319", "0.5319652", "0.5312542", "0.529802", "0.5262519", "0.5255133", "0.5239991", "0.5237064", "0.52216554", "0.51782596", "0.5173295", "0.5142752", "0.5096038", "0.50750846", "0.50740016", "0.50651675", "0.5064505", "0.5057647", "0.5057204", "0.50512725", "0.5045982", "0.50459504", "0.5028558", "0.50246304", "0.50148034", "0.49751306", "0.49634698", "0.49610624", "0.49436846", "0.49373925", "0.4897433", "0.4879514", "0.48637637", "0.4859271", "0.48516625", "0.48481134", "0.48297682", "0.4822468", "0.48128852", "0.4805389", "0.48036185", "0.47991568", "0.4782458", "0.47712702", "0.4766189", "0.47576255", "0.4744842", "0.47390357", "0.47378302", "0.47366688", "0.47297308", "0.4729442", "0.47261584", "0.4724668", "0.47155637", "0.47127938", "0.46999764", "0.4698244", "0.46957797", "0.46943516", "0.4691497", "0.46836996", "0.46810144", "0.46810144", "0.46747077", "0.46664482", "0.46655032", "0.4649602", "0.4647819", "0.46390384", "0.46332142" ]
0.86415166
0
Test case for updateVendorComplianceSurveyCustomFields Update a vendorComplianceSurvey custom fields.
public function testUpdateVendorComplianceSurveyCustomFields() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function updateVendorComplianceSurveyCustomFields($body)\n {\n $this->updateVendorComplianceSurveyCustomFieldsWithHttpInfo($body);\n }", "public function testUpdateVendorComplianceSurvey()\n {\n }", "public function test_updateReplenishmentProcessCustomFields() {\n\n }", "public function testUpdateReplenishmentCustomFields()\n {\n }", "public function test_updateCustomerCustomFields() {\n\n }", "public function updateVendorComplianceSurveyCustomFieldsAsync($body)\n {\n return $this->updateVendorComplianceSurveyCustomFieldsAsyncWithHttpInfo($body)\n ->then(\n function ($response) {\n return $response[0];\n }\n );\n }", "public function updateVendorComplianceSurveyCustomFieldsWithHttpInfo($body)\n {\n $returnType = '';\n $request = $this->updateVendorComplianceSurveyCustomFieldsRequest($body);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n }\n throw $e;\n }\n }", "protected function updateVendorComplianceSurveyCustomFieldsRequest($body)\n {\n // verify the required parameter 'body' is set\n if ($body === null) {\n throw new \\InvalidArgumentException(\n 'Missing the required parameter $body when calling updateVendorComplianceSurveyCustomFields'\n );\n }\n\n $resourcePath = '/beta/vendorComplianceSurvey/customFields';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // body params\n $_tempBody = null;\n if (isset($body)) {\n $_tempBody = $body;\n }\n\n if ($multipart) {\n $headers = $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n ['application/json']\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n // $_tempBody is the method argument, if present\n $httpBody = $_tempBody;\n // \\stdClass has no __toString(), so we should encode it manually\n if ($httpBody instanceof \\stdClass && $headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($httpBody);\n }\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires API key authentication\n $apiKey = $this->config->getApiKeyWithPrefix('API-Key');\n if ($apiKey !== null) {\n $headers['API-Key'] = $apiKey;\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'PUT',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function updateVendorCustomFields($body)\n {\n list($response, $statusCode, $httpHeader) = $this->updateVendorCustomFieldsWithHttpInfo ($body);\n return $response; \n }", "public function testUpdateExternalShipmentCustomFields()\n {\n }", "public function testUpdatePackingPlanCustomFields()\n {\n }", "public function test_updateBillingCodeTypeCustomFields() {\n\n }", "public function testUpdateOrderCustomFields()\n {\n }", "public function test_updateExternalShipmentCustomFields() {\n\n }", "public function updateVendorComplianceSurveyCustomFieldsAsyncWithHttpInfo($body)\n {\n $returnType = '';\n $request = $this->updateVendorComplianceSurveyCustomFieldsRequest($body);\n\n return $this->client\n ->sendAsync($request, $this->createHttpClientOption())\n ->then(\n function ($response) use ($returnType) {\n return [null, $response->getStatusCode(), $response->getHeaders()];\n },\n function ($exception) {\n $response = $exception->getResponse();\n $statusCode = $response->getStatusCode();\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $exception->getRequest()->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n );\n }", "function update($spec, $fields, $custom_fields=array()) {\n\t\t$set = array();\n\t\tforeach($fields as $field) $set[] = \"{{$field}}=?\";\n\t\t$set = array_merge($set, $custom_fields);\n\t\t$set = implode(', ', $set);\n\t\t$base = \"UPDATE {$spec['from']} SET {$set} \";\n\t\tif(isset($spec['join'])) {\n\t\t\t$spec['where'] = array(\"{$spec['select'][0]} IN ({$this->select($spec)})\");\n\t\t\t$spec['join'] = null;\n\t\t}\n\t\t$spec['select'] = $spec['from'] = $spec['order_by'] = $spec['offset'] = null; // irrelevant fields\n\t\treturn $this->quoteIdentifiers($this->aliasFields($base . $this->compile($spec), false));\n\t}", "public function testUpdateExtraFields(): void { }", "public function updated(CustomerInquiry $customerInquiry)\n {\n\n }", "public function modifyCustomFields(array $documentFields = array())\n {\n # PUT /accounts/{accountId}/envelopes/{envelopeId}/documents/{documentId}/fields\n }", "public function saveCustom()\n {\n // Look through all of the updated fields to see if there are any Custom fields\n foreach ($this->updatedFields as $id => $updatedField) {\n\n // Translates WarrantyExpiration to \"Warranty Expiration\" for use with searching for the customID\n if (array_key_exists($updatedField, $this->customFieldMap)) {\n $realField = $this->customFieldMap[$updatedField];\n } else {\n $realField = $updatedField;\n }\n\n // Now see if Warranty Expiration is in the list of Custom fields\n if (array_key_exists($realField, $this->customFields)) {\n\n // If it is, get the ID needed for the API call\n $customID = $this->customFields[$realField];\n\n $args = [];\n $args['fieldId'] = $customID;\n // The value is stored in the main details array using WarrantyExpiration\n $args['value'] = $this->details->$updatedField;\n $args['id'] = $this->ID;\n $this->api->_request('POST', '/api/SetCustomFieldForAsset'.\"?\".http_build_query($args));\n // Remove it from the updatedFields list so the main save() doesn't try to update it\n unset($this->updatedFields[$id]);\n }\n }\n\n }", "protected function _updatefields() {}", "function add_vendor_custom_fields() {\n\n\twp_nonce_field( basename( __FILE__ ), 'vendor_custom_fields_nonce' );\n\t?>\n\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-firstname\"><?php esc_html_e( 'First Name', 'woocommerce-product-vendors' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" class=\"input-text\" name=\"firstname\" id=\"wcpv-firstname\" value=\"<?php if ( ! empty( $_POST['firstname'] ) ) echo esc_attr( trim( $_POST['firstname'] ) ); ?>\" tabindex=\"1\" />\n\t</div>\n\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-lastname\"><?php esc_html_e( 'Last Name', 'woocommerce-product-vendors' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" class=\"input-text\" name=\"lastname\" id=\"wcpv-lastname\" value=\"<?php if ( ! empty( $_POST['lastname'] ) ) echo esc_attr( trim( $_POST['lastname'] ) ); ?>\" tabindex=\"2\" />\n\t</div>\n\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-date_of_birth\"><?php esc_html_e( 'Date of birth', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"date\" name=\"date_of_birth\" id=\"wcpv-date_of_birth\" value=\"<?php if ( ! empty( $_POST['date_of_birth'] ) ) echo esc_attr( trim( $_POST['date_of_birth'] ) ); ?>\" placeholder=\"DD / MM / YY\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-address\"><?php esc_html_e( 'Personal Address', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"address\" id=\"wcpv-address\" value=\"<?php if ( ! empty( $_POST['address'] ) ) echo esc_attr( trim( $_POST['address'] ) ); ?>\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-city\"><?php esc_html_e( 'City', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"city\" id=\"wcpv-city\" value=\"<?php if ( ! empty( $_POST['city'] ) ) echo esc_attr( trim( $_POST['city'] ) ); ?>\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-zipcode\"><?php esc_html_e( 'Zip', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"zipcode\" id=\"wcpv-zipcode\" value=\"<?php if ( ! empty( $_POST['zipcode'] ) ) echo esc_attr( trim( $_POST['zipcode'] ) ); ?>\" />\n\t</div>\n\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-taxid\"><?php esc_html_e( 'Tax ID', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"taxid\" id=\"wcpv-taxid\" value=\"<?php if ( ! empty( $_POST['taxid'] ) ) echo esc_attr( trim( $_POST['taxid'] ) ); ?>\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-business_address\"><?php esc_html_e( 'Business Address', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"business_address\" id=\"wcpv-business_address\" value=\"<?php if ( ! empty( $_POST['business_address'] ) ) echo esc_attr( trim( $_POST['business_address'] ) ); ?>\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-bcity\"><?php esc_html_e( 'Business City', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"bcity\" id=\"wcpv-bcity\" value=\"<?php if ( ! empty( $_POST['bcity'] ) ) echo esc_attr( trim( $_POST['bcity'] ) ); ?>\" />\n\t</div>\n\t<div class=\"form-field\">\n\t\t<label for=\"wcpv-bzipcode\"><?php esc_html_e( 'Business Zip', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<input type=\"text\" name=\"bzipcode\" id=\"wcpv-bzipcode\" value=\"<?php if ( ! empty( $_POST['bzipcode'] ) ) echo esc_attr( trim( $_POST['bzipcode'] ) ); ?>\" />\n\t</div>\n\n\t<?php\n}", "function update( $update_fields ) {\n\n $query = \"UPDATE \" . $this->partner_code_table . \" \" .\n \"SET pc_name = '\" . $this->gCI->db->escape_string( $update_fields['pc_name'] ) . \"', \" .\n \"pc_code = '\" . $this->gCI->db->escape_string( $update_fields['pc_code'] ) . \"', \" .\n \"pc_location = '\" . $update_fields['pc_location'] . \"', \" .\n \"pc_order = '\" . $update_fields['pc_order'] . \"', \" .\n \"pc_exclusions = '\" . $update_fields['pc_exclusions'] . \"' \" .\n \"WHERE pc_id='\" . $update_fields['pc_id'] . \"'\";\n return ( $this->gCI->db->query( $query ) );\n }", "public function testCustomerCustomFieldsAreInvalid(): void\n {\n $customer = $this->createConfiguredMock(CustomerEntity::class, [\n 'getCustomFields' => ['mollie_payments' => 'foo']\n ]);\n\n $search = $this->createConfiguredMock(EntitySearchResult::class, [\n 'first' => $customer\n ]);\n\n $this->customerRepository->entitySearchResults = [$search];\n\n $customerStruct = $this->customerService->getCustomerStruct('fakeId', $this->createMock(Context::class));\n\n $actual = json_encode($customerStruct);\n $expected = '{\"extensions\":[]}';\n\n $this->assertEquals($actual, $expected);\n }", "public function testCustomFields()\n {\n // create\n $customField = $this->_getCustomField();\n $createdCustomField = $this->_instance->addCustomField($customField);\n $this->_objects[] = $createdCustomField;\n $this->assertEquals($customField->name, $createdCustomField->name);\n $this->assertNotNull($createdCustomField->getId());\n \n // fetch\n $application = Tinebase_Application::getInstance()->getApplicationByName('Tinebase');\n $appCustomFields = $this->_instance->getCustomFieldsForApplication(\n $application->getId()\n );\n $this->assertGreaterThan(0, count($appCustomFields));\n $this->assertEquals($application->getId(), $appCustomFields[0]->application_id);\n\n // check with model name\n $appCustomFieldsWithModelName = $this->_instance->getCustomFieldsForApplication(\n $application->getId(),\n $customField->model\n );\n $this->assertGreaterThan(0, count($appCustomFieldsWithModelName));\n $this->assertEquals($customField->model, $appCustomFieldsWithModelName[0]->model, 'didn\\'t get correct model name');\n \n // check if grants are returned\n $this->_instance->resolveConfigGrants($appCustomFields);\n $accountGrants = $appCustomFields->getFirstRecord()->account_grants;\n sort($accountGrants);\n $this->assertEquals(Tinebase_Model_CustomField_Grant::getAllGrants(), $accountGrants);\n \n // delete\n $this->_instance->deleteCustomField($createdCustomField);\n $this->setExpectedException('Tinebase_Exception_NotFound');\n $this->_instance->getCustomField($createdCustomField->getId());\n $this->_objects = array();\n }", "public function test_updateLegacyLowstockContact() {\n\n }", "public function testCustomerPaymentMethodUpdateCustomerPaymentMethodBycustomerIdcustomerPaymentMethodId()\n {\n }", "public function testDeleteVendorComplianceSurvey()\n {\n }", "protected function addOrderCustomFields(): void\n {\n $custom_field_set_id = md5('Viacash custom_field_set');\n\n $this->container->get('custom_field_set.repository')->upsert(\n [\n [\n 'id' => $custom_field_set_id,\n 'name' => 'custom_viacash',\n 'config' => [\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Viacash\", \"en-GB\" => \"Viacash\"]),\n \"translated\" => true\n ],\n 'active' => true,\n 'global' => false,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field_set_relation.repository')->upsert(\n [\n [\n 'id' => md5('Viacash custom_field_set_relation'),\n 'customFieldSetId' => $custom_field_set_id,\n 'entityName' => 'order',\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_checkout_token'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_checkout_token',\n 'type' => 'text',\n 'config' => [\n 'type' => 'text',\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Barzahlen Checkout-Token\", \"en-GB\" => \"Viacash Checkout-Token\"]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"text\",\n \"customFieldPosition\" => 1\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_slip_id'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_slip_id',\n 'type' => 'text',\n 'config' => [\n 'type' => 'text',\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Barzahlen Slip-ID\", \"en-GB\" => \"Viacash Slip-ID\"]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"text\",\n \"customFieldPosition\" => 2\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_division_id'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_division_id',\n 'type' => 'text',\n 'config' => [\n 'type' => 'text',\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Interne Barzahlen Divisions-Nummer\", \"en-GB\" => \"Internal Viacash division number\"]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"text\",\n \"customFieldPosition\" => 3\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_is_sandboxed'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_is_sandboxed',\n 'type' => 'switch',\n 'config' => [\n 'type' => 'switch',\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Barzahlen Sandbox-Transaktion\", \"en-GB\" => \"Viacash sandboxed transaction\"]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"switch\",\n \"customFieldPosition\" => 4\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_refundable_amount'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_refundable_amount',\n 'type' => 'number',\n 'config' => [\n 'type' => 'number',\n \"label\" => $this->injectFallbackLanguage([\n \"de-DE\" => \"Verbleibender per Barzahlen erstattbarer Betrag\",\n \"en-GB\" => \"Remaining amount that can be refunded with Viacash\",\n ]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"number\",\n \"customFieldPosition\" => 5\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n\n $this->container->get('custom_field.repository')->upsert(\n [\n [\n 'id' => md5('custom_viacash_validity_days'),\n 'customFieldSetId' => $custom_field_set_id,\n 'name' => 'custom_viacash_validity_days',\n 'type' => 'number',\n 'config' => [\n 'type' => 'number',\n \"label\" => $this->injectFallbackLanguage([\"de-DE\" => \"Gültigkeitsdauer des Zahlscheins in Tagen\", \"en-GB\" => \"Days of payslip validity.\"]),\n \"translated\" => true,\n \"componentName\" => \"sw-field\",\n \"customFieldType\" => \"number\",\n \"customFieldPosition\" => 5\n ],\n 'active' => true,\n ],\n ],\n Context::createDefaultContext()\n );\n }", "function updateCustomFields($dbData, $xmlSAMLAssertion, $settings)\n\t{\n\t\t$customFields = $this->getCustomFields($settings, 'update');\n\n\t\tif (count($customFields) == 0)\n\t\t{\n\t\t\t$GLOBALS['log']->debug(\"No custom fields! So returning 0.\"); // JMH\n\t\t\treturn 0;\n\t\t}\n\t\t\n\t\t$user = new User();\n\t\t$user->retrieve($dbData['id']);\n\t\t$GLOBALS['log']->debug(\"updateCF()... userid={$user->id}\"); // JMH\n\t\t\n\t\t$xmlDoc = new DOMDocument();\n\t\t$xmlDoc->loadXML(base64_decode($xmlSAMLAssertion));\n\t\t$xpath = new DOMXpath($xmlDoc);\n\t\t$GLOBALS['log']->debug(\"Created xpath object.\"); // JMH\n\t\t\n\t\t$customFieldUpdated = false;\n\t\t\n\t\tforeach ($customFields as $field)\n\t\t{\n\t\t\t$GLOBALS['log']->debug(\"Top of fields loop with $field.\"); // JMH\n\t\t\tif (!array_key_exists($field, $dbData))\n\t\t\t{\n\t\t\t\t$GLOBALS['log']->debug(\"$field is not in \\$dbData. \\n\\$dbData=\" . var_export($dbData, TRUE)); // JMH\n\t\t\t\t// custom field not listed in db query results!\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t$customFieldValue = $dbData[$field];\n\t\t\t\n\t\t\t$xmlNodes = $xpath->query($settings->saml_settings['update'][$field]);\n\t\t\tif ($xmlNodes === false)\n\t\t\t{\n\t\t\t\t// malformed xpath!\n\t\t\t\t$GLOBALS['log']->debug(\"$field contains bad xpath: \" . $settings->saml_settings['update'][$field]); // JMH\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t$GLOBALS['log']->debug(\"updateCF(): 3\"); // JMH\n\t\t\tif ($xmlNodes->length == 0)\n\t\t\t{\n\t\t\t\t// no nodes match xpath!\n\t\t\t\t$GLOBALS['log']->debug(\"$field no nodes match this xpath: \" . $settings->saml_settings['update'][$field]); // JMH\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t$xmlValue = $xmlNodes->item(0)->nodeValue;\n\t\t\t$GLOBALS['log']->debug(\"$field xpath returned $xmlValue\"); // JMH\n\t\t\t\n\t\t\tif ($customFieldValue != $xmlValue)\n\t\t\t{\n\t\t\t\t// need to update our user record.\n\t\t\t\t$customFieldUpdated = true;\n\t\t\t\t$user->$field = $xmlValue;\n\t\t\t\t$GLOBALS['log']->debug(\"db is out of date. setting {$field} to {$xmlValue}\"); // JMH\n\t\t\t}\n\t\t}\n\t\t\n\t\tif ($customFieldUpdated)\n\t\t{\n\t\t\t$GLOBALS['log']->debug(\"updateCustomFields calling user->save() and returning 0\"); // JMH\n\t\t\t$user->save();\n\t\t\treturn 1;\n\t\t}\n\t\t\n\t\t$GLOBALS['log']->debug(\"updateCustomFields found no fields to update. Returning -1\"); // JMH\n\t\treturn -1;\n\t}", "public function custom_edit(Request $request){\n $id=$request->id;\n $company_id = config('settings.company_id');\n\n $request->validate([\n 'title' => 'required|unique:custom_fields,title,' . $id,\n ]);\n // $validator=$request->validate([\n // 'title'=> 'required|title|unique:custom_fields,title,'. $id .'',\n // ]);\n // $validator = \\Validator::make($request->all(), [\n // 'title' => 'required|title|unique:custom_fields,title,'. $id .'',\n // ]);\n // if ($validator->fails())\n // {\n // return response()->json(['errors'=>$validator->errors()->all()]);\n // }\n \n $customFieldExists = CustomField::where('company_id',config('settings.company_id'))->where('title',$request->title)->where('id','!=',$id)->first();\n if($customFieldExists)\n return view('company.settings.ajaxCustomField')->with('custom_fields', CustomField::where('for', 'Party')->orderBy('id', 'DESC')->get());\n //return response(['status'=>false,'message'=>'This custom field already exists']);\n\n $customField = CustomField::where('company_id',$company_id)->where('id',$request->id)->first();\n if(!$customField)\n return response(['status'=>false,'message'=>'No Custom Field Found']);\n \n if ($customField->type == \"Single option\" || $customField->type == \"Multiple options\") {\n $request->validate([\n 'options' => 'required',\n ]);\n // $opt_json = array_filter(explode('%0A', str_replace('%2F','/',htmlspecialchars_decode($request->options))));\n // $customField->options = json_encode($opt_json);\n \n $customField->options = json_encode(array_filter($request->options,'strlen'));\n }\n\n $customField->title = $request->title;\n $customField->slug = Str::slug($request->title . '-' . $request->module);\n $customField->save();\n // $customField->slug = Str::slug($request->title . '-' . $request->module.'-'.$customField->id);\n // $customField->save();\n $dataPayload = array(\"data_type\" => \"custom_field\", \"custom_field\" => $customField, \"action\" => \"update\");\n $msgID = sendPushNotification_(getFBIDs($company_id), 34, null, $dataPayload);\n return view('company.settings.ajaxCustomField')->with('custom_fields', CustomField::where('company_id',$company_id)->where('for', 'Party')->orderBy('id', 'DESC')->get());\n }", "public function update($vendor);", "public function testFields()\r\n\t{\r\n\t\t$dbh = $this->dbh;\r\n\t\t\r\n\t\t$obj = new CAntObject($dbh, \"customer\", null, $this->user);\r\n\t\t$fdef = array(\r\n\t\t\t'title'=>'unittest_custom', \r\n\t\t\t'type'=>'text', \r\n\t\t\t'subtype'=>'32', \r\n\t\t\t'system'=>false, \r\n\t\t\t'use_when'=>\"owner_id:\".$this->user->id\r\n\t\t);\r\n\t\t$newName = $obj->addField(\"unittest_custom\", $fdef);\r\n\t\tunset($obj);\r\n\r\n\t\t$obj = new CAntObject($dbh, \"customer\", null, $this->user);\r\n\t\t$field = $obj->def->getField('unittest_custom_owner_id_minus1');\r\n\t\t$this->assertNotEquals($field, false);\r\n\t\t$this->assertEquals($field->getUseWhen(), \"owner_id:\".$this->user->id);\r\n\t\t$obj->removeField(\"unittest_custom_owner_id_minus1\");\r\n\t\t$field = $obj->def->getField('unittest_custom_owner_id_minus1');\r\n\t\t$this->assertTrue(empty($field));\r\n\t}", "public function saveCustomFields($fields, $category) {\n // usuwanie dotychczasowych powiazan\n if($this->getPrimaryKey()) {\n $q = Doctrine_Query::create()\n ->delete('ArticleCustomFieldValue acfv')\n ->where('acfv.article_id = ?', $this->getPrimaryKey());\n\n $q->execute();\n }\n\n // pobranie dozwolonych pol na podstawie kategorii\n $q = Doctrine::getTable('ArticleCustomFields2ArtCategories')\n ->createQuery('cf2ac')\n ->leftJoin('cf2ac.ArticleCustomField acf')\n// ->where('artcategory_id = ?', $category);\n ->andWhereIn('artcategory_id', array_keys(Doctrine::getTable('ArtCategories')->find($category)->getAncestorsArrayByIds(true)));\n\n $validFields = $q->execute();\n\n foreach($validFields as $validField) {\n\n foreach($fields as $field => $value) {\n\n if($field == $validField->ArticleCustomField->getName()) {\n $this->setCustomField($field, $value);\n }\n }\n }\n }", "public function testAddVendorComplianceSurvey()\n {\n }", "function update_v9_to_v10() {\n\n $sqlScriptFilename = '../install/codevtt_update_v9_v10.sql';\n if (!file_exists($sqlScriptFilename)) {\n echo \"ERROR: SQL script not found:$sqlScriptFilename<br>\";\n exit;\n }\n\n // the CodevTT_Type field must be created before the DB update\n echo \"- Create CodevTT_Type customField<br>\";\n $mType_list = 6;\n $access_viewer = 10;\n $access_reporter = 25;\n $attributes = array();\n $attributes[\"access_level_r\"] = $access_viewer;\n $attributes[\"access_level_rw\"] = $access_reporter;\n $attributes[\"require_report\"] = 1;\n $attributes[\"display_report\"] = 1;\n $attributes[\"require_update\"] = 0;\n $attributes[\"display_update\"] = 1;\n $attributes[\"require_resolved\"] = 0;\n $attributes[\"display_resolved\"] = 0;\n $attributes[\"require_closed\"] = 0;\n $attributes[\"display_closed\"] = 0;\n $defaultValue = NULL;\n $possible_values = 'Bug|Task';\n createCustomField(\"CodevTT_Type\", $mType_list, \"customField_type\", $attributes, $defaultValue, $possible_values);\n\n // execute the SQL script\n //\n echo \"- Execute SQL script:$sqlScriptFilename<br>\";\n $retCode = Tools::execSQLscript2($sqlScriptFilename);\n if (0 != $retCode) {\n echo \"<span class='error_font'>Could not execSQLscript: $sqlScriptFilename</span><br/>\";\n exit;\n }\n\n echo \"<br>SUCCESS: Update 0.99.18 to 0.99.19 (DB v9 to DB v10)<br>\";\n return TRUE;\n\n}", "function pnAddressBook_admin_updatecustomfields() {\r\n\r\n\t$output = new pnHTML();\r\n\r\n // Security check\r\n if (!pnSecAuthAction(0, 'pnAddressBook::', '::', ACCESS_ADMIN)) {\r\n $output->Text(pnVarPrepHTMLDisplay(_PNADDRESSBOOK_NOAUTH));\r\n $output->Text(pnAddressBook_themetable('end'));\r\n\t\treturn $output->GetOutput();\r\n }\r\n\r\n\tlist($id,$del,$name,$cus_type,$newname,$newtype) = pnVarCleanFromInput('id','del','name','cus_type','newname','newtype');\r\n\tif(is_array($del)) {\r\n $dels = implode(',',$del);\r\n }\r\n\t$modID = $modName = array();\r\n\t$modType = array();\r\n\t$modDel = array();\r\n\t$modDelType = array();\r\n\r\n\tif(isset($id)) {\r\n\t\tforeach($id as $k=>$i) {\r\n \t$found = false;\r\n \tif(count($del)) {\r\n \tforeach($del as $d) {\r\n \tif($i == $d) {\r\n \t$found = true;\r\n\t\t\t\t\t\tarray_push($modDel,$i);\r\n\t\t\t\t\t\tarray_push($modDelType,$cus_type[$k]);\r\n \tbreak;\r\n \t}\r\n \t}\r\n \t}\r\n \tif(!$found) {\r\n \tarray_push($modID,$i);\r\n \tarray_push($modName,$name[$k]);\r\n\t\t\t\tarray_push($modType,$cus_type[$k]);\r\n }\r\n \t}\r\n\t}\r\n\r\n\t$pntable = pnDBGetTables();\r\n\t$cus_table = $pntable['pnaddressbook_customfields'];\r\n\t$cus_column = $pntable['pnaddressbook_customfields_column'];\r\n\t$adr_table = $pntable['pnaddressbook_address'];\r\n\t$adr_column = $pntable['pnaddressbook_address_column'];\r\n\r\n\t$updates = array();\r\n\r\n\tforeach($modID as $k=>$id) {\r\n \tarray_push($updates,\"UPDATE $cus_table\r\n SET $cus_column[name]='\".pnVarPrepForStore($modName[$k]).\"',\r\n\t\t\t\t\t\t\t $cus_column[type]='\".pnVarPrepForStore($modType[$k]).\"'\r\n WHERE $cus_column[nr]=$id\");\r\n\t\tif (($modType[$k] != 'smallint default NULL') && ($modType[$k] != 'tinyint default NULL')) {\r\n\t\t\tarray_push($updates,\"ALTER TABLE $adr_table CHANGE adr_custom_\".$id.\" adr_custom_\".$id.\" \".pnVarPrepForStore($modType[$k]));\r\n\t\t}\r\n\t}\r\n\r\n\t$error = '';\r\n\r\n\tif(pnModAPIFunc(__PNADDRESSBOOK__,'admin','updateCustomfields',array('updates'=>$updates))) {\r\n \tif (empty($error)) { $error .= 'UPDATE '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n\t\telse { $error .= ' - UPDATE '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n\t}\r\n\r\n\tif (count($modDel)) {\r\n\t\t$deletes = array();\r\n\t\tforeach($modDel as $k=>$id) {\r\n\t\t\t\tarray_push($deletes,\"DELETE FROM $cus_table WHERE $cus_column[nr] = $id\");\r\n\t\t\t\tif (($modDelType[$k] != 'smallint default NULL') && ($modDelType[$k] != 'tinyint default NULL')) {\r\n\t\t\t\t\tarray_push($deletes,\"ALTER TABLE $adr_table DROP adr_custom_\".$id);\r\n\t\t\t\t}\r\n\t\t}\r\n \tif(pnModAPIFunc(__PNADDRESSBOOK__,'admin','deleteCustomfields',array('deletes'=>$deletes))) {\r\n \t\tif (empty($error)) { $error .= 'DELETE '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n\t\t\telse { $error .= ' - DELETE '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n \t}\r\n\t}\r\n\tif (isset($newtype) && ($newtype == 'tinyint default NULL')) {\r\n\t\t$newname = '[ ]';\r\n\t}\r\n\tif (isset($newtype) && ($newtype == 'smallint default NULL')) {\r\n\t\t$newname = '[------]';\r\n\t}\r\n\tif( (isset($newname)) && ($newname != '') ) {\r\n\t\tlist($dbconn) = pnDBGetConn();\r\n\t\t$result = $dbconn->Execute(\"SELECT MAX($cus_column[nr]) FROM $cus_table\");\r\n\t\tlist($nextID) = $result->fields;\r\n\t\t$nextID++;\r\n\t\t$result->close;\r\n\t\t$inserts = array();\r\n\t\tarray_push($inserts,\"INSERT INTO $cus_table ($cus_column[nr],$cus_column[name],$cus_column[type],$cus_column[position])\r\n VALUES ($nextID,'\".pnVarPrepForStore($newname).\"','\".pnVarPrepForStore($newtype).\"',9999999999)\");\r\n\t\tif (($newtype != 'smallint default NULL') && ($newtype != 'tinyint default NULL')) {\r\n\t\t\tarray_push($inserts,\"ALTER TABLE $adr_table ADD adr_custom_\".$nextID.\" \".pnVarPrepForStore($newtype));\r\n\t\t}\r\n\r\n if(pnModAPIFunc(__PNADDRESSBOOK__,'admin','addCustomfields',array('inserts'=>$inserts))) {\r\n if (empty($error)) { $error .= 'INSERT '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n\t\t\telse { $error .= ' - INSERT '.pnVarPrepHTMLDisplay(_pnAB_SUCCESS); }\r\n\t\t}\r\n }\r\n\r\n\t$args=array('msg'=>$error);\r\n\r\n\tpnRedirect(pnModURL(__PNADDRESSBOOK__, 'admin', 'customfields',$args));\r\n\treturn true;\r\n}", "function edit_vendor_custom_fields( $term ) {\n\n\t$term_meta \t= get_term_meta( $term->term_id, 'vendor_data', true );\n\twp_nonce_field( basename( __FILE__ ), 'vendor_custom_fields_nonce' );\n\t?>\n\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-firstname\"><?php esc_html_e( 'First Name', 'woocommerce-product-vendors' ); ?> <span class=\"required\">*</span></label>\n\t\t</th>\n\t\t<td>\n\t\t\t<input type=\"text\" class=\"input-text\" name=\"firstname\" id=\"wcpv-firstname\" value=\"<?php if ( isset( $term_meta['firstname'] ) ) echo esc_attr( trim( $term_meta['firstname'] ) ); ?>\" tabindex=\"1\" />\n\t\t</td>\n\t</tr>\n\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-lastname\"><?php esc_html_e( 'Last Name', 'woocommerce-product-vendors' ); ?> <span class=\"required\">*</span></label>\n\t\t</th>\n\t\t<td>\n\t\t\t<input type=\"text\" class=\"input-text\" name=\"lastname\" id=\"wcpv-lastname\" value=\"<?php if ( isset( $term_meta['lastname'] ) ) echo esc_attr( trim( $term_meta['lastname'] ) ); ?>\" tabindex=\"2\" />\n\t\t</td>\n\t</tr>\n\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-date_of_birth\"><?php esc_html_e( 'Date of birth', 'stillactive' ); ?> <span class=\"required\">*</span></label></th>\n\t\t<td>\n\t\t\t<input type=\"date\" name=\"date_of_birth\" id=\"wcpv-date_of_birth\" value=\"<?php if ( isset( $term_meta['date_of_birth'] ) ) echo esc_attr( trim( $term_meta['date_of_birth'] ) ); ?>\" placeholder=\"DD / MM / YY\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-address\"><?php esc_html_e( 'Personal Address', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"address\" id=\"wcpv-address\" value=\"<?php if ( isset( $term_meta['address'] ) ) echo esc_attr( trim( $term_meta['address'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-city\"><?php esc_html_e( 'City', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"city\" id=\"wcpv-city\" value=\"<?php if ( isset( $term_meta['city'] ) ) echo esc_attr( trim( $term_meta['city'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-zipcode\"><?php esc_html_e( 'Zip', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"zipcode\" id=\"wcpv-zipcode\" value=\"<?php if ( isset( $term_meta['zipcode'] ) ) echo esc_attr( trim( $term_meta['zipcode'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-taxid\"><?php esc_html_e( 'Tax ID', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"taxid\" id=\"wcpv-taxid\" value=\"<?php if ( isset( $term_meta['taxid'] ) ) echo esc_attr( trim( $term_meta['taxid'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-business_address\"><?php esc_html_e( 'Business Address', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"business_address\" id=\"wcpv-business_address\" value=\"<?php if ( isset( $term_meta['business_address'] ) ) echo esc_attr( trim( $term_meta['business_address'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-bcity\"><?php esc_html_e( 'Business City', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"bcity\" id=\"wcpv-bcity\" value=\"<?php if ( isset( $term_meta['bcity'] ) ) echo esc_attr( trim( $term_meta['bcity'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\t<tr class=\"form-field\">\n\t\t<th scope=\"row\" valign=\"top\">\n\t\t\t<label for=\"wcpv-bzipcode\"><?php esc_html_e( 'Business Zip', 'stillactive' ); ?> <span class=\"required\">*</span></label>\n\t\t<td>\n\t\t\t<input type=\"text\" name=\"bzipcode\" id=\"wcpv-bzipcode\" value=\"<?php if ( isset( $term_meta['bzipcode'] ) ) echo esc_attr( trim( $term_meta['bzipcode'] ) ); ?>\" />\n\t\t</td>\n\t</tr>\n\n\t<?php\n}", "function acf_update_field($field, $specific = array())\n{\n}", "private function _inputUpdateValidatedFields(WireInputData $values, Salesperson $code) {\n\t\t$invalidfields = [];\n\t\t$originals = ['groupid' => $code->groupid, 'userid' => $code->userid, 'vendorid' => $code->vendorid];\n\n\t\t$spgpm = Spgpm::instance();\n\t\t$code->setGroupid($values->string('groupid'));\n\n\t\tif ($spgpm->exists($values->string('groupid')) === false) {\n\t\t\t$code->setGroupid('');\n\t\t\t$invalidfields['groupid'] = 'Group ID';\n\t\t}\n\n\t\t$logm = \\Dplus\\Msa\\Logm::getInstance();\n\t\t$code->setUserid($values->text('userid'));\n\n\t\tif ($values->text('userid') != '' && $logm->exists($values->text('userid')) === false) {\n\t\t\t$code->setUserid('');\n\t\t\t$invalidfields['userid'] = 'Login ID';\n\t\t}\n\n\t\t$vendors = \\VendorQuery::create();\n\t\t$code->setVendorid($values->string('vendorid'));\n\n\t\tif (boolval($vendors->filterByVendorid($values->string('vendorid'))->count()) === false) {\n\t\t\t$code->setVendorid('');\n\t\t\t$invalidfields['vendorid'] = 'Vendor ID';\n\t\t}\n\t\treturn $invalidfields;\n\t}", "protected function handleCustomField()\n {\n // If this field is a custom field we'll assume it has it's child fields\n // under the `fields` key. Then we are gonna modify those child fields'\n // attribute `name`, `label` & `conditional_logics` properties using\n // the parent field. The current implementation will modify those\n // properties in a way so that we can use dot notation to access.\n $customFields = Arr::get($this->field, 'fields');\n\n if ($customFields) {\n $parentAttribute = Arr::get($this->field, 'attributes.name');\n\n $parentConditionalLogics = Arr::get($this->field, 'settings.conditional_logics', []);\n\n $isAddressOrNameField = in_array(Arr::get($this->field, 'element'), ['address', 'input_name']);\n\n $isRepeatField = Arr::get($this->field, 'element') === 'input_repeat' || Arr::get($this->field, 'element') == 'repeater_field';\n\n foreach ($customFields as $index => $customField) {\n // If the current field is in fact `address` || `name` field\n // then we have to only keep the enabled child fields\n // by the user from the form editor settings.\n if ($isAddressOrNameField) {\n if (!Arr::get($customField, 'settings.visible', false)) {\n unset($customFields[$index]);\n continue;\n }\n }\n\n // Depending on whether the parent field is a repeat field or not\n // the modified attribute name of the child field will vary.\n if ($isRepeatField) {\n $modifiedAttribute = $parentAttribute.'['.$index.'].*';\n } else {\n $modifiedAttribute = $parentAttribute.'['.Arr::get($customField, 'attributes.name').']';\n }\n\n $modifiedLabel = $parentAttribute.'['.Arr::get($customField, 'settings.label').']';\n\n $customField['attributes']['name'] = $modifiedAttribute;\n\n $customField['settings']['label'] = $modifiedLabel;\n\n // Now, we'll replace the `conditional_logics` property\n $customField['settings']['conditional_logics'] = $parentConditionalLogics;\n\n // Now that this field's properties are handled we can pass\n // it to the extract field method to extract it's data.\n $this->extractField($customField);\n }\n }\n\n return $this;\n }", "function pnAddressBook_admin_incCustomfields()\r\n{\r\n // Get parameters\r\n $id = pnVarCleanFromInput('id');\r\n\r\n // Confirm authorisation code\r\n if (!pnSecConfirmAuthKey()) {\r\n pnSessionSetVar('errormsg', _BADAUTHKEY);\r\n pnRedirect(pnModURL(__PNADDRESSBOOK__, 'admin', 'main'));\r\n return true;\r\n }\r\n\r\n // Pass to API\r\n if (pnModAPIFunc(__PNADDRESSBOOK__, 'admin', 'incCustomFields', array('id' => $id))) {\r\n // Success\r\n //pnSessionSetVar('statusmsg', _BLOCKLOWER);\r\n }\r\n\r\n // Redirect\r\n pnRedirect(pnModURL(__PNADDRESSBOOK__, 'admin', 'customfields'));\r\n return true;\r\n}", "public function updateVendorCustomFieldsWithHttpInfo($body)\n {\n \n // verify the required parameter 'body' is set\n if ($body === null) {\n throw new \\InvalidArgumentException('Missing the required parameter $body when calling updateVendorCustomFields');\n }\n \n // parse inputs\n $resourcePath = \"/beta/vendor/customFields\";\n $httpBody = '';\n $queryParams = array();\n $headerParams = array();\n $formParams = array();\n $_header_accept = ApiClient::selectHeaderAccept(array('application/json'));\n if (!is_null($_header_accept)) {\n $headerParams['Accept'] = $_header_accept;\n }\n $headerParams['Content-Type'] = ApiClient::selectHeaderContentType(array('application/json'));\n \n \n \n \n // default format to json\n $resourcePath = str_replace(\"{format}\", \"json\", $resourcePath);\n\n \n // body params\n $_tempBody = null;\n if (isset($body)) {\n $_tempBody = $body;\n }\n \n // for model (json/xml)\n if (isset($_tempBody)) {\n $httpBody = $_tempBody; // $_tempBody is the method argument, if present\n } elseif (count($formParams) > 0) {\n $httpBody = $formParams; // for HTTP post (form)\n }\n \n // this endpoint requires API key authentication\n $apiKey = $this->apiClient->getApiKeyWithPrefix('API-Key');\n if (strlen($apiKey) !== 0) {\n $headerParams['API-Key'] = $apiKey;\n }\n \n \n // make the API Call\n try {\n list($response, $statusCode, $httpHeader) = $this->apiClient->callApi(\n $resourcePath, 'PUT',\n $queryParams, $httpBody,\n $headerParams\n );\n \n return array(null, $statusCode, $httpHeader);\n \n } catch (ApiException $e) {\n switch ($e->getCode()) { \n }\n \n throw $e;\n }\n }", "public function updateVendorComplianceSurveyWithHttpInfo($body)\n {\n $returnType = '';\n $request = $this->updateVendorComplianceSurveyRequest($body);\n\n try {\n $options = $this->createHttpClientOption();\n try {\n $response = $this->client->send($request, $options);\n } catch (RequestException $e) {\n throw new ApiException(\n \"[{$e->getCode()}] {$e->getMessage()}\",\n $e->getCode(),\n $e->getResponse() ? $e->getResponse()->getHeaders() : null,\n $e->getResponse() ? $e->getResponse()->getBody()->getContents() : null\n );\n }\n\n $statusCode = $response->getStatusCode();\n\n if ($statusCode < 200 || $statusCode > 299) {\n throw new ApiException(\n sprintf(\n '[%d] Error connecting to the API (%s)',\n $statusCode,\n $request->getUri()\n ),\n $statusCode,\n $response->getHeaders(),\n $response->getBody()\n );\n }\n\n return [null, $statusCode, $response->getHeaders()];\n\n } catch (ApiException $e) {\n switch ($e->getCode()) {\n }\n throw $e;\n }\n }", "function save_customfields($data, array $extra_cols=array())\n\t{\n\t\tforeach (array_keys((array)$this->customfields) as $name)\n\t\t{\n\t\t\tif (!isset($data[$field = $this->get_cf_field($name)])) continue;\n\n\t\t\t$where = array(\n\t\t\t\t$this->extra_id => isset($data[$this->autoinc_id]) ? $data[$this->autoinc_id] : $data[$this->db_key_cols[$this->autoinc_id]],\n\t\t\t\t$this->extra_key => $name,\n\t\t\t);\n\t\t\t$is_multiple = $this->is_multiple($name);\n\n\t\t\t// we explicitly need to delete fields, if value is empty or field allows multiple values or we have no unique index\n\t\t\tif(empty($data[$field]) || $is_multiple || !$this->extra_has_unique_index)\n\t\t\t{\n\t\t\t\t$this->db->delete($this->extra_table,$where,__LINE__,__FILE__,$this->app);\n\t\t\t\tif (empty($data[$field])) continue;\t// nothing else to do for empty values\n\t\t\t}\n\t\t\tforeach($is_multiple && !is_array($data[$field]) ? explode(',',$data[$field]) :\n\t\t\t\t// regular custom fields (!$is_multiple) eg. addressbook store multiple values comma-separated\n\t\t\t\t(array)(!$is_multiple && is_array($data[$field]) ? implode(',', $data[$field]) : $data[$field]) as $value)\n\t\t\t{\n\t\t\t\tif (!$this->db->insert($this->extra_table,array($this->extra_value => $value)+$extra_cols,$where,__LINE__,__FILE__,$this->app))\n\t\t\t\t{\n\t\t\t\t\treturn $this->db->Errno;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false;\t// no error\n\t}", "public function testDeleteVendorComplianceSurveyTag()\n {\n }", "public function testGetVendorComplianceSurveyById()\n {\n }", "public function saveExtraRegistrationData($customerId)\n {\n if (isset($_POST['billing_first_name'])) {\n update_user_meta($customerId, 'billing_first_name', sanitize_text_field($_POST['billing_first_name']));\n }\n if (isset($_POST['billing_last_name'])) {\n update_user_meta($customerId, 'billing_last_name', sanitize_text_field($_POST['billing_last_name']));\n }\n if (isset($_POST['billing_address_1'])) {\n update_user_meta($customerId, 'billing_address_1', sanitize_text_field($_POST['billing_address_1']));\n }\n if (isset($_POST['billing_city'])) {\n update_user_meta($customerId, 'billing_city', sanitize_text_field($_POST['billing_city']));\n }\n if (isset($_POST['billing_postcode'])) {\n update_user_meta($customerId, 'billing_postcode', sanitize_text_field($_POST['billing_postcode']));\n }\n if (isset($_POST['billing_phone'])) {\n update_user_meta($customerId, 'billing_phone', sanitize_text_field($_POST['billing_phone']));\n }\n if (isset($_POST['billing_country'])) {\n update_user_meta($customerId, 'billing_country', sanitize_text_field($_POST['billing_country']));\n }\n }", "function editSettings($field_name = '')\n {\n\n //profiling::\n $this->debug_methods_trail[] = __function__;\n\n//declare\n$conditional_sql = '';\n\n //validate field name param\n if (!in_array($field_name, array(\n 'clients_optionalfield1',\n 'clients_optionalfield2',\n 'clients_optionalfield3'))) {\n return false;\n }\n\n /*\n *--------------------------------------------------------------\n * VALIDATION OF POST DATA\n *\n * check if the values set in post are valid\n * if not, fall back to defaults\n * its cheating a bit, but as we are looping the updates...\n * ...for now its the easy way out\n *--------------------------------------------------------------\n */\n\n foreach ($_POST as $key => $value) {\n\n if ($key == 'clients_optionalfield_status' && (!in_array($value, array('enabled', 'disabled')))) {\n $_POST[$key] = 'disabled'; //just set to disabled\n }\n if ($key == 'clients_optionalfield_require' && (!in_array($value, array('yes', 'no')))) {\n $_POST[$key] = 'no'; //just set to disabled\n }\n if ($key == 'clients_optionalfield_title' && ($value == '')) {\n $_POST[$key] = 'Field'; //some place holder text\n }\n $$key = $this->db->escape($this->input->post($key));\n }\n\n //conditional sql\n $conditional_sql = \" AND clients_optionalfield_name = '$field_name'\";\n\n //----------sql & benchmarking start----------\n $this->benchmark->mark('code_start'); //_____SQL QUERY_______\n $query = $this->db->query(\"UPDATE clients_optionalfields\n SET\n clients_optionalfield_title = $clients_optionalfield_title,\n clients_optionalfield_status = $clients_optionalfield_status,\n clients_optionalfield_require = $clients_optionalfield_require\n WHERE 1 = 1\n $conditional_sql\");\n\n $results = $this->db->affected_rows(); //affected rows\n\n //----------benchmarking end------------------\n $this->benchmark->mark('code_end');\n $execution_time = $this->benchmark->elapsed_time('code_start', 'code_end');\n\n //debugging data\n $this->__debugging(__line__, __function__, $execution_time, __class__, $results);\n\n //---return\n if (is_numeric($results)) {\n return true;\n } else {\n return false;\n }\n }", "function ciniki_customers_update(&$ciniki) {\n // \n // Find all the required and optional arguments\n // \n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'prepareArgs');\n $rc = ciniki_core_prepareArgs($ciniki, 'no', array(\n 'tnid'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Tenant'), \n 'customer_id'=>array('required'=>'yes', 'blank'=>'no', 'name'=>'Customer'), \n 'parent_id'=>array('required'=>'no', 'blank'=>'no', 'name'=>'Parent'), \n 'eid'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Customer ID'), \n 'status'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Status'),\n 'type'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Customer Type'), \n 'member_status'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Member Status'), \n 'member_lastpaid'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'datetimetoutc', 'name'=>'Member Last Paid'),\n 'member_expires'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'date', 'name'=>'Member Expires'),\n 'membership_length'=>array('required'=>'no', 'blank'=>'no', 'name'=>'Membership Length'),\n 'membership_type'=>array('required'=>'no', 'blank'=>'no', 'name'=>'Membership Type'),\n 'dealer_status'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Dealer Status'), \n 'distributor_status'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Distributor Status'), \n 'callsign'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Callsign'), \n 'prefix'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Name Prefix'), \n 'first'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'First Name'), \n 'middle'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Middle Name'), \n 'last'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Last Name'), \n 'suffix'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Name Suffix'), \n 'display_name_format'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Display Name Format'), \n 'company'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Company'), \n 'department'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Company Department'), \n 'title'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Company Title'), \n 'phone_home'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Home Phone'), \n 'phone_work'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Work Phone'), \n 'phone_cell'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Cell Phone'), \n 'phone_fax'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Fax Number'), \n 'primary_email'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Primary Email Address'), \n 'alternate_email'=>array('required'=>'no', 'trimblanks'=>'yes', 'blank'=>'yes', 'name'=>'Alternate Email Address'), \n 'notes'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Notes'), \n 'primary_image_id'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Image'), \n 'primary_image_caption'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Image Caption'), \n 'intro_image_id'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Intro Image'), \n 'intro_image_caption'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Intro Image Caption'), \n 'webflags'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Webflags'), \n 'short_bio'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Short Bio'), \n 'full_bio'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Full Bio'), \n 'birthdate'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'date', 'name'=>'Birthday'), \n 'connection'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Connection'), \n 'language'=>array('required'=>'no', 'default'=>'', 'blank'=>'yes', 'name'=>'Preferred Language'), \n 'tax_number'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Tax Number'), \n 'tax_location_id'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Tax Location'), \n 'discount_percent'=>array('required'=>'no', 'blank'=>'yes', 'name'=>'Discount Percent'), \n 'start_date'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'datetimetoutc', 'name'=>'Start Date'), \n 'subscriptions'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'idlist', 'name'=>'Subscriptions'),\n 'unsubscriptions'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'idlist', 'name'=>'Unsubscriptions'),\n 'customer_categories'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Customer Categories'),\n 'customer_tags'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Customer Tags'),\n 'member_categories'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Member Categories'),\n 'member_subcategories'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Member Subcategories'),\n 'dealer_categories'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Dealer Categories'),\n 'distributor_categories'=>array('required'=>'no', 'blank'=>'yes', 'type'=>'list', 'delimiter'=>'::', 'name'=>'Distributor Categories'),\n )); \n if( $rc['stat'] != 'ok' ) { \n return $rc;\n } \n $args = $rc['args'];\n \n // \n // Make sure this module is activated, and\n // check permission to run this function for this tenant\n // \n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'checkAccess');\n $rc = ciniki_customers_checkAccess($ciniki, $args['tnid'], 'ciniki.customers.update', $args['customer_id']); \n if( $rc['stat'] != 'ok' ) { \n return $rc;\n } \n $modules = $rc['modules'];\n $perms = $rc['perms'];\n\n //\n // Filter arguments\n //\n if( isset($args['callsign']) ) {\n $args['callsign'] = strtoupper($args['callsign']);\n }\n\n //\n // Get the current settings\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'getSettings');\n $rc = ciniki_customers_getSettings($ciniki, $args['tnid']);\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n $settings = $rc['settings'];\n\n //\n // Get the existing customer name\n //\n $strsql = \"SELECT status, type, callsign, prefix, first, middle, last, suffix, \"\n . \"display_name, display_name_format, sort_name, permalink, company, dealer_status, distributor_status, webflags \"\n . \"FROM ciniki_customers \"\n . \"WHERE id = '\" . ciniki_core_dbQuote($ciniki, $args['customer_id']) . \"' \"\n . \"AND tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \"\";\n $rc = ciniki_core_dbHashQuery($ciniki, $strsql, 'ciniki.customers', 'customer');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n if( !isset($rc['customer']) ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.143', 'msg'=>'Customer does not exist'));\n }\n $customer = $rc['customer'];\n\n //\n // Check if dealer status and distributor status should be changed\n //\n if( isset($args['status']) && $args['status'] == 60 ) {\n if( ($customer['webflags']&0x07) > 0 ) {\n $args['webflags'] = 0;\n }\n }\n\n if( isset($args['dealer_status']) && $args['dealer_status'] == 60 ) {\n if( ($customer['webflags']&0x02) > 0 ) {\n $args['webflags'] = ($customer['webflags'] & !0x02);\n }\n }\n if( isset($args['distributor_status']) && $args['distributor_status'] == 60 ) {\n if( ($customer['webflags']&0x04) > 0 ) {\n $args['webflags'] = ($customer['webflags'] & !0x04);\n }\n }\n\n //\n // Only allow owners to change status of customer to/from suspend/delete\n //\n if( isset($args['status']) \n && ($args['status'] >= 50 || $customer['status'] >= 50) ) {\n if( !isset($perms) || ($perms&0x01) != 1 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.144', 'msg'=>'You do not have permissions to change the customer status.'));\n }\n }\n\n //\n // Check to make sure eid is unique if specified\n //\n if( isset($args['eid']) && $args['eid'] != '' ) {\n $strsql = \"SELECT id \"\n . \"FROM ciniki_customers \"\n . \"WHERE eid = '\" . ciniki_core_dbQuote($ciniki, $args['eid']) . \"' \"\n . \"AND id <> '\" . ciniki_core_dbQuote($ciniki, $args['customer_id']) . \"' \"\n . \"AND tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \"\";\n $rc = ciniki_core_dbHashQuery($ciniki, $strsql, 'ciniki.customers', 'eid');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n if( $rc['num_rows'] > 0 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.145', 'msg'=>'The customer ID already exists.'));\n }\n }\n\n //\n // Check if trying to make a child customer\n //\n if( isset($args['parent_id']) && $args['parent_id'] > 0 ) {\n //\n // Make sure parent_id is not customer id\n //\n if( $args['parent_id'] == $args['customer_id'] ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.146', 'msg'=>'Parent cannot be the same as the child.'));\n }\n\n // \n // Check to make sure the parent is not a child\n //\n $strsql = \"SELECT id, parent_id \"\n . \"FROM ciniki_customers \"\n . \"WHERE id = '\" . ciniki_core_dbQuote($ciniki, $args['parent_id']) . \"' \"\n . \"AND tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \"\";\n $rc = ciniki_core_dbHashQuery($ciniki, $strsql, 'ciniki.customers', 'parent');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n if( !isset($rc['parent']) ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.147', 'msg'=>'The parent does not exist.'));\n }\n if( isset($rc['parent']) && $rc['parent']['parent_id'] > 0 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.148', 'msg'=>'The parent is already a child.'));\n }\n // \n // Check to make sure the customer does not have any children\n //\n $strsql = \"SELECT 'children', COUNT(*) AS num_children \"\n . \"FROM ciniki_customers \"\n . \"WHERE parent_id = '\" . ciniki_core_dbQuote($ciniki, $args['customer_id']) . \"' \"\n . \"AND tnid = '\" . ciniki_core_dbQuote($ciniki, $args['tnid']) . \"' \"\n . \"\";\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbCount');\n $rc = ciniki_core_dbCount($ciniki, $strsql, 'ciniki.customers', 'num');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n if( isset($rc['num']['children']) && $rc['num']['children'] > 0 ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.149', 'msg'=>'This customer already has children and cannot become a parent.'));\n }\n }\n\n // \n // Turn off autocommit\n // \n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionStart');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionRollback');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbTransactionCommit');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbQuote');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbInsert');\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'dbAddModuleHistory');\n $rc = ciniki_core_dbTransactionStart($ciniki, 'ciniki.customers');\n if( $rc['stat'] != 'ok' ) { \n return $rc;\n } \n\n //\n // Check for changes to display name, sort name or permalink\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'customerUpdateName');\n $rc = ciniki_customers_customerUpdateName($ciniki, $args['tnid'], $customer, $args['customer_id'], $args);\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.413', 'msg'=>'Unable to update name', 'err'=>$rc['err']));\n }\n if( isset($rc['display_name']) && $rc['display_name'] != $customer['display_name'] ) {\n $args['display_name'] = $rc['display_name'];\n }\n if( isset($rc['sort_name']) && $rc['sort_name'] != $customer['sort_name'] ) {\n $args['sort_name'] = $rc['sort_name'];\n }\n if( isset($rc['permalink']) && $rc['permalink'] != $customer['permalink'] ) {\n $args['permalink'] = $rc['permalink'];\n }\n\n //\n // Update the customer\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'objectUpdate');\n $rc = ciniki_core_objectUpdate($ciniki, $args['tnid'], 'ciniki.customers.customer', \n $args['customer_id'], $args, 0x06);\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.150', 'msg'=>'Unable to updated customer', 'err'=>$rc['err']));\n }\n\n //\n // Hook into other modules when updating status incase orders or other items should be changed\n //\n if( isset($args['status']) && $args['status'] != '' ) {\n foreach($modules as $module => $m) {\n list($pkg, $mod) = explode('.', $module);\n $rc = ciniki_core_loadMethod($ciniki, $pkg, $mod, 'hooks', 'customerStatusUpdate');\n if( $rc['stat'] == 'ok' ) {\n $fn = $rc['function_call'];\n $rc = $fn($ciniki, $args['tnid'], array(\n 'customer_id'=>$args['customer_id'], \n 'status'=>$args['status'],\n ));\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.151', 'msg'=>'Unable to update customer status.', 'err'=>$rc['err']));\n }\n }\n }\n }\n\n //\n // Hook into other modules when updating name incase orders or other items should be changed\n //\n if( isset($args['display_name']) && $args['display_name'] != '' ) {\n foreach($modules as $module => $m) {\n list($pkg, $mod) = explode('.', $module);\n $rc = ciniki_core_loadMethod($ciniki, $pkg, $mod, 'hooks', 'customerNameUpdate');\n if( $rc['stat'] == 'ok' ) {\n $fn = $rc['function_call'];\n $rc = $fn($ciniki, $args['tnid'], array(\n 'customer_id'=>$args['customer_id'], \n 'display_name'=>$args['display_name'],\n ));\n if( $rc['stat'] != 'ok' ) {\n return array('stat'=>'fail', 'err'=>array('code'=>'ciniki.customers.152', 'msg'=>'Unable to update customer name.', 'err'=>$rc['err']));\n }\n }\n }\n }\n\n //\n // Check for subscriptions\n //\n if( isset($args['subscriptions']) || isset($args['unsubscriptions']) ) {\n // incase one of the args isn't set, setup with blank arrays\n if( !isset($args['subscriptions']) ) { $args['subscriptions'] = array(); }\n if( !isset($args['unsubscriptions']) ) { $args['unsubscriptions'] = array(); }\n ciniki_core_loadMethod($ciniki, 'ciniki', 'subscriptions', 'private', 'updateCustomerSubscriptions');\n $rc = ciniki_subscriptions_updateCustomerSubscriptions($ciniki, $args['tnid'], \n $args['customer_id'], $args['subscriptions'], $args['unsubscriptions']);\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n }\n\n //\n // Update the customer categories\n //\n if( isset($args['customer_categories']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 10, $args['customer_categories']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the customer tags\n //\n if( isset($args['customer_tags']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 20, $args['customer_tags']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the member categories\n //\n if( isset($args['member_categories']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 40, $args['member_categories']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the member subcategories\n //\n if( isset($args['member_subcategories']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 45, $args['member_subcategories']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the dealer categories\n //\n if( isset($args['dealer_categories']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 60, $args['dealer_categories']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the distributor categories\n //\n if( isset($args['distributor_categories']) ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'tagsUpdate');\n $rc = ciniki_core_tagsUpdate($ciniki, 'ciniki.customers', 'tag', $args['tnid'],\n 'ciniki_customer_tags', 'ciniki_customer_history',\n 'customer_id', $args['customer_id'], 80, $args['distributor_categories']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Update the short_description\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'customerUpdateShortDescription');\n $rc = ciniki_customers_customerUpdateShortDescription($ciniki, $args['tnid'], $args['customer_id'], 0x04);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n\n //\n // Update the season membership\n //\n if( ($modules['ciniki.customers']['flags']&0x02000000) > 0 ) {\n ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'customerUpdateSeasons');\n $rc = ciniki_customers_customerUpdateSeasons($ciniki, $args['tnid'], $args['customer_id']);\n if( $rc['stat'] != 'ok' ) {\n ciniki_core_dbTransactionRollback($ciniki, 'ciniki.customers');\n return $rc;\n }\n }\n\n //\n // Commit the database changes\n //\n $rc = ciniki_core_dbTransactionCommit($ciniki, 'ciniki.customers');\n if( $rc['stat'] != 'ok' ) {\n return $rc;\n }\n\n $rsp = array('stat'=>'ok');\n\n//\n// FIXME: Switch UI to use response for add/update to fill out details\n//\n// ciniki_core_loadMethod($ciniki, 'ciniki', 'customers', 'private', 'customerDetails');\n// $rc = ciniki_customers__customerDetails($ciniki, $args['tnid'], $args['customer_id'], array('phones'=>'yes', 'emails'=>'yes', 'addresses'=>'yes', 'subscriptions'=>'no'));\n// if( $rc['stat'] == 'ok' && isset($rc['details']) ) {\n// $rsp['customer_details'] = $rc['details'];\n// }\n\n //\n // Update the web index if enabled\n //\n ciniki_core_loadMethod($ciniki, 'ciniki', 'core', 'private', 'hookExec');\n ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.customer', 'object_id'=>$args['customer_id']));\n ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.members', 'object_id'=>$args['customer_id']));\n ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.dealers', 'object_id'=>$args['customer_id']));\n ciniki_core_hookExec($ciniki, $args['tnid'], 'ciniki', 'web', 'indexObject', array('object'=>'ciniki.customers.distributors', 'object_id'=>$args['customer_id']));\n\n return $rsp;\n}", "public function updateCustom (\n\t)\t\t\t\t\t\t// RETURNS <bool> TRUE if the update is successful, FALSE if there is a failure.\n\t\n\t// $contentForm->updateCustom();\n\t{\n\t\treturn true;\n\t}", "function prepareFields() {\r\n\t\t$data = array_keys($this->modx->getFieldMeta('msProductData'));\r\n\t\tforeach ($this->resourceArray as $k => $v) {\r\n\t\t\tif (is_array($v) && in_array($k, $data)) {\r\n\t\t\t\t$tmp = $this->resourceArray[$k];\r\n\t\t\t\t$this->resourceArray[$k] = array();\r\n\t\t\t\tforeach ($tmp as $v2) {\r\n\t\t\t\t\tif (!empty($v2)) {\r\n\t\t\t\t\t\t$this->resourceArray[$k][] = array('value' => $v2);\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tif (empty($this->resourceArray['vendor'])) {\r\n\t\t\t$this->resourceArray['vendor'] = '';\r\n\t\t}\r\n\t}", "public function setCustomFields(array $fields)\n {\n $this->customFields = $fields;\n }", "public function update($vendorId, $vendorContactId)\n\t{\n\t\t$validator = Validator::make(\n array('intVendorId'=>$vendorId,'intVendorContactId' => $vendorContactId),\n array('intVendorId'=>'required|numeric','intVendorContactId' => 'required|numeric')\n );\n\n if($validator->fails())\n {\n return $this->respondBadRequest('Invalid Inputs.');\n }\n $vendorContact = VendorContact::find($vendorContactId);\n\n if (!$vendorContact) {\n return $this->respondNotFound('Vendor contact does not exist.');\n }\n if ($vendorContact->intVendorId != $vendorId) {\n return $this->respondBadRequest('Vendor and contact mismatch.');\n }\n $validator = Validator::make(\n Input::get(),\n array(\n 'contactName' => 'sometimes|alpha_spaces|max:200',\n 'contactDesignation' => 'sometimes|alpha_spaces|max:200',\n 'contactEmail' => 'sometimes|email|max:200',\n 'contactPhone1' => 'sometimes|alpha_spaces|max:20',\n 'contactPhone2' => 'sometimes|alpha_spaces|max:20'\n ));\n if ($validator->fails()) {\n return $this->respondBadRequest('Invalid input.', array('app_error' => $validator->messages()->toArray()));\n }\n\n $vendorContact->strContactFullName =Input::get('contactName')?Input::get('contactName'):$vendorContact->strContactFullName;\n $vendorContact->strContactDesgnation =Input::get('contactDesignation')?Input::get('contactDesignation'):$vendorContact->strContactDesgnation;\n $vendorContact->strContactEmail =Input::get('contactEmail')?Input::get('contactEmail'):$vendorContact->strContactEmail;\n $vendorContact->strContactPhone1 =Input::get('contactPhone1')?Input::get('contactPhone1'):$vendorContact->strContactPhone1;\n $vendorContact->strContactPhone2 =Input::get('contactPhone2')?Input::get('contactPhone2'):$vendorContact->strContactPhone2;\n\n try {\n $vendorContact->save();\n } catch (\\Exception $e) {\n return $this->respondInternalError('Unable to save Vendor contact.');\n }\n $insertedVendorContact = VendorContact::find($vendorContact->intVendorContactId);\n return $this->setStatusCode(ApiController::HTTP_CREATED)->respond($this->vendorContactTransformer->transform($insertedVendorContact));\n\n\n\t\t\n\t}", "public function testAddVendorComplianceSurveyFile()\n {\n }", "function company_settingsupdate() {\n $this->auth(COMP_ADM_LEVEL);\n $company_id = $this->uri->segment(3);\n foreach ($_POST as $key=>$value) {\n if($key != 'save'){\n $data[$key] = $this->input->post($key);\n }\n }\n if($this->m_company_settings->update($company_id, $data)){\n $this->companyadmin(7);\n }else{\n echo 'error';\n }\n }", "protected function _prepareForm()\n {\n $model = Mage::registry('navision_customermapping');\n\n $form = new Varien_Data_Form(array(\n 'id' => 'edit_form',\n 'action' => $this->getUrl('*/*/save', array('id' => $this->getRequest()->getParam('id'))),\n 'method' => 'post'\n ));\n\n $fieldset = $form->addFieldset('base_fieldset', array(\n 'legend' => Mage::helper('checkout')->__('Customer Information'),\n 'class' => 'fieldset-wide',\n ));\n\n if ($model->getId()) {\n $fieldset->addField('id', 'hidden', array(\n 'name' => 'id',\n ));\n }\n\n $fieldset->addField('customeremail', 'text', array(\n 'name' => 'customeremail',\n 'label' => Mage::helper('checkout')->__('Customer Email'),\n 'title' => Mage::helper('checkout')->__('Customer Email'),\n 'required' => true,\n ));\n\n $fieldset->addField('magentocustomerid', 'text', array(\n 'name' => 'magentocustomerid',\n 'label' => Mage::helper('checkout')->__('Magento Customer ID'),\n 'title' => Mage::helper('checkout')->__('Magento Customer ID'),\n 'required' => true,\n ));\n $fieldset->addField('navisioncustomerid', 'text', array(\n 'name' => 'navisioncustomerid',\n 'label' => Mage::helper('checkout')->__('Navision Customer ID'),\n 'title' => Mage::helper('checkout')->__('Navision Customer ID'),\n 'required' => true,\n ));\n\n$fieldset->addField('createdby', 'text', array(\n 'name' => 'createdby',\n 'label' => Mage::helper('checkout')->__('Created By'),\n 'title' => Mage::helper('checkout')->__('Created By'),\n 'required' => true,\n ));\n\n $fieldset->addField('needsync', 'checkbox', array(\n \n\n 'name' => 'needsync',\n 'label' => Mage::helper('checkout')->__('Need Sync'),\n\t\t'onclick' => 'this.value = this.checked ? 1 : 0;',\n 'title' => Mage::helper('checkout')->__('Need Sync'),\n 'required' => true,\n ));\n\n\n $form->setValues($model->getData());\n $form->setUseContainer(true);\n $this->setForm($form);\n\n return parent::_prepareForm();\n }", "function update($p_merchant_name, $p_merchant_email, $p_tax_govt, $p_tax_service)\n {\n $result_update = false;\n \n // format\n $p_merchant_name = sanitizeNoTags($p_merchant_name);\n $p_merchant_email = sanitizeEmail(sanitizeNoTags($p_merchant_email));\n $p_tax_govt = sanitizeFloat($p_tax_govt);\n $p_tax_service = sanitizeFloat($p_tax_service);\n \n // set\n $p_tax_govt = number_format(($p_tax_govt/100), 2);\n $p_tax_service = number_format(($p_tax_service/100), 2);\n\n // set\n $arr_vars = array(\n 'MERCHANT_NAME' => $p_merchant_name,\n 'MERCHANT_EMAIL' => $p_merchant_email,\n 'TAX_GOVT' => $p_tax_govt,\n 'TAX_SERVICE' => $p_tax_service\n );\n \n // connect to database \n parent::connect();\n \n while(list($key,$value) = each($arr_vars))\n {\n if ($value != '')\n {\n // update\n $result = parent::dataUpdate($key, $value); \n }\n \n $key = '';\n $value = '';\n }\n \n // disconnect from database\n parent:: disconnect();\n \n $result_update = '1';\n \n return $result_update; \n }", "public function afterUpdate()\n {\n //only clean and change custom fields if they have been set\n if (!empty($this->customFields)) {\n $this->deleteAllCustomFields();\n $this->saveCustomFields();\n }\n }", "public function testAddVendorComplianceSurveyTag()\n {\n }", "public function testUpdateSurvey0()\n {\n }", "public function testUpdateSurvey0()\n {\n }", "public function setValidatedFields($vfields)\n {\n foreach($vfields as $vfieldname => $vfieldval)\n {\n for ($x=0; $x < count($this->_fields); $x++)\n {\n if (!strcmp($this->_fields[$x]['id'], $vfieldname))\n {\n $this->_fields[$x]['validatedData'] = $vfieldval;\n }\n }\n }\n }", "public function setContactDataFields(ContactDataFieldArray $contactDataFields);", "public function testGetVendorComplianceSurveyByFilter()\n {\n }", "public function testD_update() {\n\n $fname = self::$generator->firstName();\n $lname = self::$generator->lastName;\n\n $resp = $this->wrapper->update( self::$randomEmail, [\n 'FNAME' => $fname,\n 'LNAME' => $lname\n ]);\n\n $this->assertObjectHasAttribute('id', $resp);\n $this->assertObjectHasAttribute('merge_fields', $resp);\n\n $updated = $resp->merge_fields;\n\n $this->assertEquals($lname, $updated->LNAME);\n\n }", "function createCustomField($fieldName, $fieldType, $configId, $attributes = NULL,\n $default_value = '', $possible_values = '') {\n global $fieldList;\n\n if (NULL == $attributes) {\n $attributes = array();\n\n $attributes[\"access_level_r\"] = 10;\n $attributes[\"access_level_rw\"] = 25;\n $attributes[\"require_report\"] = 1;\n $attributes[\"require_update\"] = 1;\n $attributes[\"require_resolved\"] = 0;\n $attributes[\"require_closed\"] = 0;\n $attributes[\"display_report\"] = 1;\n $attributes[\"display_update\"] = 1;\n $attributes[\"display_resolved\"] = 0;\n $attributes[\"display_closed\"] = 0;\n\n echo \"<span class='warn_font'>WARN: using default attributes for CustomField $fieldName</span><br/>\";\n }\n\n $query = \"SELECT id, name FROM `mantis_custom_field_table`\";\n $result = execQuery($query);\n while ($row = mysql_fetch_object($result)) {\n $fieldList[\"$row->name\"] = $row->id;\n }\n\n $fieldId = $fieldList[$fieldName];\n if (!$fieldId) {\n $query2 = \"INSERT INTO `mantis_custom_field_table` \" .\n \"(`name`, `type` ,`access_level_r`,\" .\n \" `access_level_rw` ,`require_report` ,`require_update` ,`display_report` ,`display_update` ,`require_resolved` ,`display_resolved` ,`display_closed` ,`require_closed` \";\n $query2 .= \", `possible_values`, `default_value`\";\n\n $query2 .= \") VALUES ('$fieldName', '$fieldType', '\" . $attributes[\"access_level_r\"] . \"', '\" .\n $attributes[\"access_level_rw\"] . \"', '\" .\n $attributes[\"require_report\"] . \"', '\" .\n $attributes[\"require_update\"] . \"', '\" .\n $attributes[\"display_report\"] . \"', '\" .\n $attributes[\"display_update\"] . \"', '\" .\n $attributes[\"require_resolved\"] . \"', '\" .\n $attributes[\"display_resolved\"] . \"', '\" .\n $attributes[\"display_closed\"] . \"', '\" .\n $attributes[\"require_closed\"] . \"'\";\n\n $query2 .= \", '$possible_values', '$default_value'\";\n $query2 .= \");\";\n\n #echo \"DEBUG INSERT $fieldName --- query $query2 <br/>\";\n\n $result2 = execQuery($query2);\n $fieldId = mysql_insert_id();\n\n #echo \"custom field '$configId' created.<br/>\";\n } else {\n echo \"<span class='success_font'>INFO: custom field '$configId' already exists.</span><br/>\";\n }\n\n // add to codev_config_table\n Config::getInstance()->setValue($configId, $fieldId, Config::configType_int);\n}", "public function testUpdateSurveyQuestion0()\n {\n }", "public function testUpdateSurveyQuestion0()\n {\n }", "public function updated(OnlineInquiry $onlineInquiry)\n {\n //\n }", "public function prepare_custom_fields_for_api( $custom_fields = array(), $list_identifier = null ) {\n\n\t\t$prepared_fields = array();\n\t\t$api_fields = $this->get_api_custom_fields( array( 'list_id' => $list_identifier ), true );\n\n\t\tif ( empty( $api_fields[ $list_identifier ] ) ) {\n\t\t\treturn $prepared_fields;\n\t\t}\n\n\t\tforeach ( $api_fields[ $list_identifier ] as $field ) {\n\t\t\tforeach ( $custom_fields as $key => $custom_field ) {\n\t\t\t\tif ( (int) $field['id'] === (int) $key ) {\n\t\t\t\t\t$prepared_fields[ $field['name'] ] = $custom_field;\n\n\t\t\t\t\tunset( $custom_fields[ $key ] ); // avoid unnecessary loops\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( empty( $custom_fields ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn $prepared_fields;\n\t}", "public function testGetVendorComplianceSurveyFiles()\n {\n }", "public function saveCustomFields()\n\t{\n\t\t$state = $this->getStateVariables();\n\t\t$validation = $this->getValidation();\n\n\t\t$user = JFactory::getUser();\n\t\t$user = $this->getState('user', $user);\n\n\t\t// Find an existing record\n\t\t$list = FOFModel::getTmpInstance('Users','AkeebasubsModel')\n\t\t\t->user_id($user->id)\n\t\t\t->getItemList();\n\n\t\tif(!count($list)) {\n\t\t\t$id = 0;\n\t\t} else {\n\t\t\t$thisUser = array_pop($list);\n\t\t\t$id = $thisUser->akeebasubs_user_id;\n\t\t}\n\n\t\t$data = array(\n\t\t\t'akeebasubs_user_id' => $id,\n\t\t\t'user_id'\t\t=> $user->id,\n\t\t\t'isbusiness'\t=> $state->isbusiness ? 1 : 0,\n\t\t\t'businessname'\t=> $state->businessname,\n\t\t\t'occupation'\t=> $state->occupation,\n\t\t\t'vatnumber'\t\t=> $state->vatnumber,\n\t\t\t'viesregistered' => $validation->validation->vatnumber,\n\t\t\t// @todo Ask for tax authority\n\t\t\t'taxauthority'\t=> '',\n\t\t\t'address1'\t\t=> $state->address1,\n\t\t\t'address2'\t\t=> $state->address2,\n\t\t\t'city'\t\t\t=> $state->city,\n\t\t\t'state'\t\t\t=> $state->state,\n\t\t\t'zip'\t\t\t=> $state->zip,\n\t\t\t'country'\t\t=> $state->country,\n\t\t\t'params'\t\t=> $state->custom\n\t\t);\n\n\t\t// Allow plugins to post-process the fields\n\t\tJLoader::import('joomla.plugin.helper');\n\t\tJPluginHelper::importPlugin('akeebasubs');\n\t\t$app = JFactory::getApplication();\n\t\t$jResponse = $app->triggerEvent('onAKSignupUserSave', array((object)$data));\n\t\tif(is_array($jResponse) && !empty($jResponse)) foreach($jResponse as $pResponse) {\n\t\t\tif(!is_array($pResponse)) continue;\n\t\t\tif(empty($pResponse)) continue;\n\t\t\tif(array_key_exists('params', $pResponse)) {\n\t\t\t\tif(!empty($pResponse['params'])) foreach($pResponse['params'] as $k => $v) {\n\t\t\t\t\t$data['params'][$k] = $v;\n\t\t\t\t}\n\t\t\t\tunset($pResponse['params']);\n\t\t\t}\n\t\t\t$data = array_merge($data, $pResponse);\n\t\t}\n\n\t\t// Serialize custom fields\n\t\t$data['params'] = json_encode($data['params']);\n\n\t\t$status = FOFModel::getTmpInstance('Users','AkeebasubsModel')\n\t\t\t->setId($id)\n\t\t\t->getItem()\n\t\t\t->save($data);\n\n\t\treturn $status;\n\t}", "public function testAddVendorComplianceSurveyAudit()\n {\n }", "public function testGetRowsFilterCustomData() {\n $this->enableAllComponents();\n $ids = $this->createCustomGroupWithField([]);\n $contacts = $this->createContacts(2);\n foreach ($contacts as $contact) {\n $contribution = $this->callAPISuccess('Contribution', 'create', [\n 'total_amount' => 4,\n 'financial_type_id' => 'Donation',\n 'contact_id' => $contact['id'],\n ]);\n $this->callAPISuccess('Contact', 'create', ['id' => $contact['id'], 'custom_' . $ids['custom_field_id'] => $contribution['id']]);\n }\n\n $params = [\n 'report_id' => 'contribution/contributions',\n 'fields' => ['contribution_id'],\n 'custom_' . $ids['custom_field_id'] . '_op' => 'eq',\n 'custom_' . $ids['custom_field_id'] . '_value' => $contribution['id'],\n ];\n $rows = $this->callAPISuccess('ReportTemplate', 'getrows', $params)['values'];\n $this->assertEquals(1, count($rows));\n }", "public function testWebinarRegistrantQuestionUpdate()\n {\n }", "function save_custom_field_brand( $post_id ) {\n $product = wc_get_product( $post_id );\n $details_brand = isset( $_POST['custom_field_brand'] ) ? $_POST['custom_field_brand'] : '';\n $product->update_meta_data( 'custom_field_brand', sanitize_textarea_field( $details_brand ) );\n $product->save();\n}", "public function testUpdateFieldsWrongType(): void { }", "function update_growsumo_customer($update_grsm_cust_arr){\n if(isset($update_grsm_cust_arr['sent_from']) && $update_grsm_cust_arr['sent_from'] == 'masterclass'){\n if(isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR'] != '') {\n $update_grsm_cust_arr['ip_address'] = trim(end(explode(',', $_SERVER['HTTP_X_FORWARDED_FOR'])));\n } else {\n $update_grsm_cust_arr['ip_address'] = $_SERVER['REMOTE_ADDR'];\n }\n }\n \n $ch = curl_init('https://api.growsumo.com/v1/customers/'.$update_grsm_cust_arr['old_customer_key']);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json'));\n $auth = GROWSUMO_PK.':'.GROWSUMO_SK;\n \n $data = json_encode(array('name' => $update_grsm_cust_arr['full_name'],'ip_address'=>$update_grsm_cust_arr['ip_address'],'key'=>$update_grsm_cust_arr['new_customer_key']));\n curl_setopt($ch, CURLOPT_USERPWD, $auth);\n curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');\n curl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n $response = curl_exec($ch);\n curl_close($ch);\n if($response === false || $response['http_code'] != 200) {\n if (curl_error($ch)) {\n $response .= \"\\n \". curl_error($ch);\n @mail('[email protected]','Failed creating growsumo customer',$response.\"<br> Data:\".print_r($grsm_cust_data));\n }\n }\n }", "function createCustomField($fieldName, $fieldType, $configId, $attributes = NULL,\n $default_value = '', $possible_values = '') {\n global $fieldList;\n\n if (NULL == $attributes) {\n $attributes = array();\n\n $attributes[\"access_level_r\"] = 10;\n $attributes[\"access_level_rw\"] = 25;\n $attributes[\"require_report\"] = 1;\n $attributes[\"require_update\"] = 1;\n $attributes[\"require_resolved\"] = 0;\n $attributes[\"require_closed\"] = 0;\n $attributes[\"display_report\"] = 1;\n $attributes[\"display_update\"] = 1;\n $attributes[\"display_resolved\"] = 0;\n $attributes[\"display_closed\"] = 0;\n\n echo \"<script type=\\\"text/javascript\\\">console.warn(\\\"WARN: using default attributes for CustomField $fieldName\\\");</script>\";\n }\n\n $query = \"SELECT id, name FROM `mantis_custom_field_table`\";\n $result = SqlWrapper::getInstance()->sql_query($query);\n if (!$result) {\n throw new Exception (\"create custom field FAILED\");\n }\n while ($row = mysql_fetch_object($result)) {\n $fieldList[\"$row->name\"] = $row->id;\n }\n\n $fieldId = $fieldList[$fieldName];\n if (!$fieldId) {\n $query2 = \"INSERT INTO `mantis_custom_field_table` \" .\n \"(`name`, `type` ,`access_level_r`,\" .\n \" `access_level_rw` ,`require_report` ,`require_update` ,`display_report` ,`display_update` ,`require_resolved` ,`display_resolved` ,`display_closed` ,`require_closed` \";\n $query2 .= \", `possible_values`, `default_value`\";\n\n $query2 .= \") VALUES ('$fieldName', '$fieldType', '\" . $attributes[\"access_level_r\"] . \"', '\" .\n $attributes[\"access_level_rw\"] . \"', '\" .\n $attributes[\"require_report\"] . \"', '\" .\n $attributes[\"require_update\"] . \"', '\" .\n $attributes[\"display_report\"] . \"', '\" .\n $attributes[\"display_update\"] . \"', '\" .\n $attributes[\"require_resolved\"] . \"', '\" .\n $attributes[\"display_resolved\"] . \"', '\" .\n $attributes[\"display_closed\"] . \"', '\" .\n $attributes[\"require_closed\"] . \"'\";\n\n $query2 .= \", '$possible_values', '$default_value'\";\n $query2 .= \");\";\n\n #echo \"DEBUG INSERT $fieldName --- query $query2 <br>\";\n\n $result2 = SqlWrapper::getInstance()->sql_query($query2);\n if (!$result2) {\n throw new Exception (\"create custom field failed: $configId\");\n }\n $fieldId = mysql_insert_id();\n\n #echo \"custom field '$configId' created.<br>\";\n } else {\n echo \"<script type=\\\"text/javascript\\\">console.info(\\\"INFO: custom field '$configId' already exists.\\\");</script>\";\n }\n\n // add to codev_config_table\n Config::getInstance()->setValue($configId, $fieldId, Config::configType_int);\n}", "public function testUpdateMyContact()\n {\n\n }", "public function testHandleUpdateValidationError()\n {\n // Populate data\n $this->_populate();\n \n // Request\n $response = $this->withSession($this->adminSession)\n ->call('POST', '/dealer-account/edit', $this->customDealerAccountData, [], [], ['HTTP_REFERER' => '/dealer-account/edit']);\n \n // Verify\n $this->assertRedirectedTo('/dealer-account/edit');\n $this->assertSessionHasErrors();\n }", "public function updateVendorComplianceSurvey($body)\n {\n $this->updateVendorComplianceSurveyWithHttpInfo($body);\n }", "function pnAddressBook_admin_decCustomfields()\r\n{\r\n // Get parameters\r\n $id = pnVarCleanFromInput('id');\r\n\r\n // Confirm authorisation code\r\n if (!pnSecConfirmAuthKey()) {\r\n pnSessionSetVar('errormsg', _BADAUTHKEY);\r\n pnRedirect(pnModURL(__PNADDRESSBOOK__, 'admin', 'main'));\r\n return true;\r\n }\r\n\r\n // Pass to API\r\n if (pnModAPIFunc(__PNADDRESSBOOK__, 'admin', 'decCustomFields', array('id' => $id))) {\r\n // Success\r\n //pnSessionSetVar('statusmsg', _BLOCKLOWER);\r\n }\r\n\r\n // Redirect\r\n pnRedirect(pnModURL(__PNADDRESSBOOK__, 'admin', 'customfields'));\r\n return true;\r\n}", "function custom_override_checkout_fields($fields) {\n $softsdev_wc_mc_setting = get_softsdev_wc_mc_setting();\n if (array_key_exists('double_opt_in', $softsdev_wc_mc_setting) && $softsdev_wc_mc_setting['double_opt_in'] == 1 && array_key_exists('opt_in_on_checkout', $softsdev_wc_mc_setting) && $softsdev_wc_mc_setting['opt_in_on_checkout'] == 1) {\n $fields['billing']['double_opt_in'] = array(\n 'label' => __(isset($softsdev_wc_mc_setting['opt_in_on_checkout_label']) && !empty($softsdev_wc_mc_setting['opt_in_on_checkout_label']) ? $softsdev_wc_mc_setting['opt_in_on_checkout_label'] : 'Enable Double Opt-In', 'woocommerce'),\n 'type' => 'checkbox',\n 'default' => isset($softsdev_wc_mc_setting['checked_opt_in_on_checkout']) ? $softsdev_wc_mc_setting['checked_opt_in_on_checkout'] : 0,\n 'value' => '1',\n 'class' => array('form-row-wide'),\n 'clear' => true\n );\n }\n return $fields;\n }", "public function testDeleteVendorComplianceSurveyFile()\n {\n }", "public function deleteCustomFields(array $documentFields = array())\n {\n # DELETE /accounts/{accountId}/envelopes/{envelopeId}/documents/{documentId}/fields\n }", "function UpdateContact($fields_array, $logged_in_user)\n\t{\n\t\t//var_dump($fields_array);\n\n\t\t$record = parent::UpdateRecord($logged_in_user, \"Contacts\", \"Contact_ID\", $fields_array);\n\t\t$data = parent::SplitToArray((string)$record->UpdateRecordResult);\n\n\t\t$status = $data[0];\n\t\tif( $status==0 ) {\n\t\t\t$result = array (\n\t\t\t\t\"status\"\t=> false,\n\t\t\t\t\"data\"\t\t=> $data,\n\t\t\t\t\"message\"\t=> \"Contact record update failed. Error: \" . $data[2]\n\t\t\t);\n\t\t}\n\t\telse {\n\t\t\t$result = array (\n\t\t\t\t\"status\"\t=> true,\n\t\t\t\t\"data\"\t\t=> $data,\n\t\t\t\t\"message\"\t=> \"Contact record updated successfully.\"\n\t\t\t);\n\t\t}\n\t\treturn $result;\n\t}", "public function updated(TechnicalVendorSchedule $technical_vendor_schedule)\n {\n //\n }", "public function testGetDuplicateVendorComplianceSurveyById()\n {\n }", "public function test_updateCustomer() {\n\n }", "public function updateCustomization(Request $request){\n //print_r($request->all()); die();\n $validator = $request->validate([\n 'row_id' => 'required',\n 'discrepancies' => 'array',\n 'raw_wr_weight' => 'required',\n 'raw_wr_weight_is_checked' => 'required',\n 'raw_wr_length' => 'required',\n 'raw_wr_length_is_checked' => 'required',\n 'raw_cut_fish_weight' => 'required',\n 'raw_cut_fish_weight_is_checked' => 'required',\n 'raw_cut_fish_length' => 'required',\n 'raw_cut_fish_length_is_checked' => 'required',\n 'finished_product_wr_weight' => 'required',\n 'finished_product_wr_weight_is_checked' => 'required',\n 'finished_product_wr_length' => 'required',\n 'finished_product_wr_length_is_checked' => 'required',\n 'finished_product_cut_fish_weight' => 'required',\n 'finished_product_cut_fish_weight_is_checked' => 'required',\n 'finished_product_cut_fish_length' => 'required',\n 'finished_product_cut_fish_length_is_checked' => 'required'\n ]);\n if(isset($request->wr_fish_online_qc)){\n if($request->wr_fish_online_qc == 'on'){\n $userSettings['wr_fish_online_qc'] = '1'; \n }\n } \n else{\n $userSettings['wr_fish_online_qc'] = '0'; \n }\n if(isset($request->cut_fish_online_qc)){\n if($request->cut_fish_online_qc == 'on'){\n $userSettings['cut_fish_online_qc'] = '1'; \n } \n } \n else{\n $userSettings['cut_fish_online_qc'] = '0'; \n }\n if($request->wr_fish_online_qc == 'on' || $request->cut_fish_online_qc == 'on'){\n $getUserSetting = UserSetting::where('producer_id',$request->row_id)->first();\n if(!empty($getUserSetting)){\n $getUserSetting = UserSetting::where('producer_id',$request->row_id)->update($userSettings);\n }\n else{\n $userSettings['producer_id'] = $request->row_id;\n $createUserSettings = UserSetting::create($userSettings);\n }\n } \n if(isset($request->discrepancies) && !empty($request->discrepancies)){\n if(isset($request->discrepancies['discrepancy_id']) && !empty($request->discrepancies['discrepancy_id'])){\n foreach($request->discrepancies['discrepancy_id'] as $key => $discrepancy_id ){\n if(isset($request->discrepancies['is_checked']) && !empty($request->discrepancies['is_checked'])){\n if(isset($request->discrepancies['is_checked'][$key])){\n $isChecked = '1';\n }\n else{\n $isChecked = '0';\n }\n }\n else{\n $isChecked = '0';\n } \n $createDiscrepancies = array(\n 'producer_id' => $request->row_id,\n 'discrepancy_id' => $request->discrepancies['discrepancy_id'][$key],\n 'rejection_offset_value'=> $request->discrepancies['rejection_offset_value'][$key],\n 'border_offset_value' => $request->discrepancies['border_offset_value'][$key],\n 'rejection_value' => $request->discrepancies['rejection_value'][$key],\n 'border_value' => $request->discrepancies['border_value'][$key],\n 'is_checked' => $isChecked\n );\n if(isset($request->discrepancies['id']) && !empty($request->discrepancies['id'])){\n if(isset($request->discrepancies['id'][$key])){\n $id = $request->discrepancies['id'][$key];\n }\n else{\n $id = NULL;\n }\n }\n else{ \n $id = NULL;\n } \n if($id != NULL){\n UserDiscrepancy::where('id', $id)->update($createDiscrepancies);\n }\n else{\n UserDiscrepancy::create($createDiscrepancies);\n } \n } \n }\n }\n if(isset($request->cold_chain_standard) && !empty($request->cold_chain_standard)){ \n if(isset($request->cold_chain_standard['title']) && !empty($request->cold_chain_standard['title'])){\n foreach($request->cold_chain_standard['title'] as $key=> $cold_chain_standard){\n $createColdChainStandard = array(\n 'producer_id' => $request->row_id,\n 'title' => $request->cold_chain_standard['title'][$key],\n 'target_value' => $request->cold_chain_standard['target_value'][$key],\n 'border_value' => $request->cold_chain_standard['border_value'][$key]\n ); \n if(isset($request->cold_chain_standard['id']) && !empty($request->cold_chain_standard['id'])){\n if(isset($request->cold_chain_standard['id'][$key])){\n $id = $request->cold_chain_standard['id'][$key];\n }\n else{\n $id = NULL;\n }\n }\n else{ \n $id = NULL;\n } \n if($id != NULL){\n ColdChainStandard::where('id', $id)->update($createColdChainStandard);\n }\n else{\n ColdChainStandard::create($createColdChainStandard);\n }\n }\n }\n }\n $getCustomizationSettings = CustomizationSetting::where('producer_id', $request->row_id)->first();\n if(!empty($getCustomizationSettings)){\n $updatecustomizationSettings = array(\n 'temperature_ckeck_reminder_timescale' => $request->temperature_ckeck_reminder_timescale,\n 'custom_reminder_timescale_day' => $request->custom_reminder_timescale_day,\n 'minimum_temperature' => $request->minimum_temperature,\n 'other_minimum_temperature' => $request->other_minimum_temperature,\n 'continuous_freezing' => $request->continuous_freezing,\n 'other_continuous_freezing' => $request->other_continuous_freezing,\n 'weight_calibration' => $request->weight_calibration,\n 'standard_drip_loss_value' => $request->standard_drip_loss_value,\n 'standard_guts_weight' => $request->standard_guts_weight\n );\n $updateCustomizationSettingsData = CustomizationSetting::where('producer_id', $request->row_id)->update($updatecustomizationSettings);\n }\n else{\n $getCustomizationSettings['producer_id'] = $request->row_id;\n $customizationSettings = array(\n 'producer_id' => $request->row_id,\n 'temperature_ckeck_reminder_timescale' => $request->temperature_ckeck_reminder_timescale,\n 'custom_reminder_timescale_day' => $request->custom_reminder_timescale_day,\n 'minimum_temperature' => $request->minimum_temperature,\n 'other_minimum_temperature' => $request->other_minimum_temperature,\n 'continuous_freezing' => $request->continuous_freezing,\n 'other_continuous_freezing' => $request->other_continuous_freezing,\n 'weight_calibration' => $request->weight_calibration,\n 'standard_drip_loss_value' => $request->standard_drip_loss_value,\n 'standard_guts_weight' => $request->standard_guts_weight\n );\n $createCustomizationSettings = CustomizationSetting::create($customizationSettings);\n }\n $updateData = [\n // 'producer_id' => $request->row_id,\n 'raw_wr_weight' => $request->raw_wr_weight,\n 'raw_wr_weight_is_checked' => isset($request->raw_wr_weight_is_checked)?'1':'0',\n 'raw_wr_length' => $request->raw_wr_length,\n 'raw_wr_length_is_checked' => isset($request->raw_wr_length_is_checked)?'1':'0',\n 'raw_cut_fish_weight' => $request->raw_cut_fish_weight,\n 'raw_cut_fish_weight_is_checked' => isset($request->raw_cut_fish_weight_is_checked)?'1':'0',\n 'raw_cut_fish_length' => $request->raw_cut_fish_length,\n 'raw_cut_fish_length_is_checked' => isset($request->raw_cut_fish_length_is_checked)?'1':'0',\n 'finished_product_wr_weight' => $request->finished_product_wr_weight,\n 'finished_product_wr_weight_is_checked' => isset($request->finished_product_wr_weight_is_checked)?'1':'0',\n 'finished_product_wr_length' => $request->finished_product_wr_length,\n 'finished_product_wr_length_is_checked' => isset($request->finished_product_wr_length_is_checked)?'1':'0',\n 'finished_product_cut_fish_weight' => $request->finished_product_cut_fish_weight,\n 'finished_product_cut_fish_weight_is_checked' => isset($request->finished_product_cut_fish_weight_is_checked)?'1':'0',\n 'finished_product_cut_fish_length' => $request->finished_product_cut_fish_length,\n 'finished_product_cut_fish_length_is_checked' => isset($request->finished_product_cut_fish_length_is_checked)?'1':'0'\n ];\n if(isset($request->row_id) && $request->row_id!=NULL){ \n $getitems = RequestedItem::where('producer_id', $request->row_id)->first();\n if(!empty($getitems)){\n $update_req_items = RequestedItem::where('producer_id',$request->row_id)->update($updateData);\n }\n }\n else{ \n $getitems = RequestedItem::where('producer_id',$request->row_id)->first();\n if(!empty($getitems)){ \n $update_req_items = RequestedItem::where('producer_id',$request->row_id)->update($requestedItems);\n }\n else{ \n $create_req_items = RequestedItem::Create($updateData);\n }\n }\n $getProducer = Producer::select('id','image','name')->with('profileImage')->find($request->row_id);\n $data=['success'=>'customizationSettingdata'.ucfirst($request->name).' Customization has been Created!.','tab'=>'tab_3','customizationSettingdata'=>$getProducer];\n return redirect('accountmanagement/addProducer')->with($data)->withInput();\n }", "public function update(Request $request, Pedim_consent_for_rapid_covid19_testings $consent_for_covid19)\n {\n\n $is_sign_responsible_party_updated = \"nullable\";\n\n if(request('sign_responsible_party_updated') == \"yes\")\n { \n $is_sign_responsible_party_updated = \"required\"; \n }\n\n //\n $valiedation_from_array = [ \n 'patient_name' => 'required', \n 'patient_email' => 'required',\n 'telephone' => 'required',\n 'sign_responsible_party' => $is_sign_responsible_party_updated, \n 'date' => 'required'\n\n ];\n\n \n $this->validate($request, $valiedation_from_array);\n\n //dd($is_witness_signature_update);\n $sign_responsible_party = $request->sign_responsible_party_src;\n if(request('sign_responsible_party_updated') == \"yes\")\n {\n \n $patient_signature = app('App\\Http\\Controllers\\SignaturePadController')->update_signature($request->sign_responsible_party,$sign_responsible_party);\n \n }\n \n //dd($sign_responsible_party);\n $consent_for_covid19->patient_name = request('patient_name');\n $consent_for_covid19->is_patient_minor = request('is_patient_minor');\n $consent_for_covid19->parent_guardian = request('parent_guardian');\n $consent_for_covid19->patient_email = request('patient_email');\n $consent_for_covid19->telephone = request('telephone');\n $consent_for_covid19->sign_responsible_party = $sign_responsible_party;\n $consent_for_covid19->date = request('date');\n $consent_for_covid19->client_forms_id = request('client_forms_id'); \n $consent_for_covid19->status = 'active'; \n $update_status = $consent_for_covid19->save();\n\n if($update_status)\n { \n if(Auth::guard('clients')->check())\n {\n session()->flash(\"success\",\"Successfully Updated\"); \n return redirect()->route('client.PedimConsentForRapidCovid19Testing.submissions',$consent_for_covid19->client_forms_id);\n }\n else\n {\n session()->flash(\"success\",\"Successfully Updated\"); \n return redirect()->route('PedimConsentForRapidCovid19Testing.submissions',$consent_for_covid19->client_forms_id);\n }\n\n }\n else\n {\n session()->flash(\"warning\",\"Some thing went wrong, please Update again\"); \n return redirect()->back();\n\n }\n }", "public function applyCustomFields($project) {\n\n //custom fields\n $fields = \\App\\Models\\CustomField::Where('customfields_type', 'projects')->get();\n foreach ($fields as $field) {\n if ($field->customfields_status == 'enabled') {\n switch ($field->customfields_name) {\n case 'project_custom_field_1':\n $project->project_custom_field_1 = request('project_custom_field_1');\n break;\n case 'project_custom_field_2':\n $project->project_custom_field_2 = request('project_custom_field_2');\n break;\n case 'project_custom_field_3':\n $project->project_custom_field_3 = request('project_custom_field_3');\n break;\n case 'project_custom_field_4':\n $project->project_custom_field_4 = request('project_custom_field_4');\n break;\n case 'project_custom_field_5':\n $project->project_custom_field_5 = request('project_custom_field_5');\n break;\n case 'project_custom_field_6':\n $project->project_custom_field_6 = request('project_custom_field_6');\n break;\n case 'project_custom_field_7':\n $project->project_custom_field_7 = request('project_custom_field_7');\n break;\n case 'project_custom_field_8':\n $project->project_custom_field_8 = request('project_custom_field_8');\n break;\n case 'project_custom_field_9':\n $project->project_custom_field_9 = request('project_custom_field_9');\n break;\n case 'project_custom_field_10':\n $project->project_custom_field_10 = request('project_custom_field_10');\n break;\n }\n }\n }\n }", "public function testUpdateSurveyQuestionChoice0()\n {\n }", "public function testUpdateSurveyQuestionChoice0()\n {\n }", "public function update(Request $request, CompanyUserVerification $companyUserVerification)\n {\n //\n }", "public function update(CustomUserFieldRequest $request, CustomUserField $customUserField)\n {\n $customUserField->name = str_slug($request->get('title'));\n $customUserField->update($request->all());\n return redirect('/custom_user_field');\n }", "public function setCustomField($name = '', $value = '') {\n $custom = array(\n $name=>(string)$value,\n );\n $this->NVP = array_merge($this->NVP, $custom); \n }", "public function update_by_mock_invoice_id() {\n\n if ( isset( $_POST[ 'mockInvoiceId' ] ) ) {\n $mockInvoiceId = $this->input->post( 'mockInvoiceId' );\n unset( $_POST['mockInvoiceId'] );\n\n // Set any empty values to null\n array_replace_empty_with_null( $_POST );\n\n $updatedId = $this->mockinvoice_model->save( $_POST, $mockInvoiceId );\n }\n // Error handling - return some JSON if update successful\n if ( $updatedId ) {\n // Send back the POST details as JSON\n $this->json_library->print_array_json_unless_empty( $_POST );\n }\n }" ]
[ "0.7293148", "0.70978254", "0.64022875", "0.63926035", "0.63646907", "0.6311234", "0.6274791", "0.6111963", "0.6109123", "0.6102106", "0.60357696", "0.5958321", "0.58887213", "0.58794284", "0.56927675", "0.5485317", "0.54340416", "0.541211", "0.54019564", "0.5349201", "0.5318303", "0.5302795", "0.5241631", "0.5202273", "0.5186028", "0.51796687", "0.51186717", "0.50695634", "0.50635284", "0.4999448", "0.4998921", "0.4994743", "0.49893534", "0.49651235", "0.496324", "0.49428937", "0.4928267", "0.49141607", "0.48894238", "0.48809022", "0.48641375", "0.4861992", "0.4858973", "0.4849925", "0.48060334", "0.47508964", "0.4739811", "0.4736321", "0.4734668", "0.4728166", "0.4724957", "0.47224146", "0.46951693", "0.46893314", "0.4685858", "0.4684718", "0.4683589", "0.46806195", "0.46770623", "0.46729568", "0.4663784", "0.4663784", "0.4654914", "0.46530247", "0.46380013", "0.4629575", "0.46274725", "0.46273935", "0.46273935", "0.46239161", "0.46226344", "0.46200928", "0.4619895", "0.46034634", "0.45925158", "0.4588618", "0.4583402", "0.45779392", "0.457489", "0.45675546", "0.45587906", "0.4550997", "0.45419973", "0.4540943", "0.45407015", "0.4536079", "0.45248574", "0.452319", "0.4523159", "0.4520562", "0.4517135", "0.45171148", "0.45152462", "0.4508146", "0.45070872", "0.45070872", "0.45034778", "0.45016235", "0.44995397", "0.44971916" ]
0.86562884
0
Adds an expectation to this stage.
public function expect(TestStageExpectationInterface $expectation): self { $this->composite->addExpectation($expectation); return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function expectAddEvent()\n {\n $this->eventPublisher->expects($this->once())\n ->method('addEvent')\n ->with(['uuid' => '123']);\n }", "public function addAssertions($assertions) {\n $total = $this->getAssertions() + $assertions;\n $this->setAssertions($total);\n }", "public function add_requirement( sn\\base\\requirement\\I_Requirement $requirement );", "public function addAssertion(Assertion\\AssertionInterface $assertion, $name = null)\n {\n if (null === $name) {\n $name = strtolower((new \\ReflectionClass($assertion))->getShortName());\n }\n\n $this->assertions[$name] = $assertion;\n }", "public function add(Actor $actor): self ;", "public function attachObserver(ISimulatorObserver $observer) {\r\n \t$this->_observers[] = $observer;\r\n }", "public function incAssertions()\n {\n $this->assertions += 1;\n }", "function testAdd() {\n $this->drupalGet(Url::fromRoute('linkit.matcher.add', [\n 'linkit_profile' => $this->linkitProfile->id(),\n ]));\n\n $edit = array();\n $edit['plugin'] = 'dummy_matcher';\n $this->drupalPostForm(NULL, $edit, t('Save and continue'));\n\n // Load the saved profile.\n $this->linkitProfile = Profile::load($this->linkitProfile->id());\n\n $matcher_ids = $this->linkitProfile->getMatchers()->getInstanceIds();\n /** @var \\Drupal\\linkit\\MatcherInterface $plugin */\n $plugin = $this->linkitProfile->getMatcher(current($matcher_ids));\n\n $this->assertRaw(t('Added %label matcher.', ['%label' => $plugin->getLabel()]));\n $this->assertNoText(t('No matchers added.'));\n }", "public function addAspect(IAspect $aspect);", "public function testAppendToItself()\n {\n $model1 = Animal::findOne(1);\n \n $this->expectExceptionMessage('You cannot move node relevant or under itself');\n \n $model1->appendTo($model1);\n }", "public function addAudit(Audit $audit);", "public function expectThat(string $expectation): TestGuy;", "public function add()\n {\n $calculator = new Calculator();\n $this->assertSame(4, $calculator->add(3, 1));\n }", "public function addAward(\\GT\\CriteriaAward $award){\n \n // If it already exists, don't append another one, update the existing object\n if ($award->isValid()){\n if ($this->awards){\n foreach($this->awards as $key => $awrd){\n if ($awrd->getID() == $award->getID()){\n $this->awards[$key] = $award;\n return;\n }\n }\n }\n }\n \n // Otherwise just append\n $this->awards[] = $award;\n }", "public function testAddRelated($screen_name, $expected_result, $message = '')\n {\n $this->intent->addRelated($screen_name);\n\n $related = self::getProperty($this->intent, 'related');\n $related = array_keys($related);\n $related = reset($related);\n $this->assertEquals(strtolower($expected_result), $related, $message);\n }", "public function addElement(TestInterface $element);", "private function setExpectations()\n {\n\n if ($this->status === $this->wish) {\n $this->bodyToClass();\n } else {\n $this->bodyToErrors();\n }\n }", "public function addFailures($failures) {\n $total = $this->getFailures()\n + $failures;\n $this->setFailures($total);\n }", "public function add_attachment(Attachment $attachment);", "public function testAdd()\n {\n $result = $this->calculator->add(1, 2);\n $this->assertEquals(3, $result);\n }", "public function addRequirements($team, array $requirements = []);", "public static function plus( Matcher $matcher ) {\n\t\treturn new static( $matcher, 1, INF, false );\n\t}", "public function add_test($test)\n {\n array_push($this->tests, $test);\n }", "public function expectsMethod($methodName) {\n\t\t\t$expectation = new InvocationExpectation($methodName);\n\t\t\tMockRegistry::addExpectation($this->className, $expectation);\n\t\t\treturn $expectation;\n\t\t}", "private function expect( $item, $type ) {\n\t\tif ( ! isset( $this->expected[ $type ] ) ) {\n\t\t\t$this->expected[ $type ] = array();\n\t\t}\n\t\t$this->expected[ $type ][] = $item;\n\t}", "public function addAnswer(AnswerInterface $answer);", "public function testAddReplenishmentAudit()\n {\n }", "public function addActor_addActorsToMovie() {\n // Arrange\n /** @var Movie */\n $movie = factory(Movie::class)->create();\n /** @var Actor */\n $actor = factory(Actor::class)->create();\n\n // Act\n $movie->addActor($actor);\n\n // Assert\n $returnedValue = $movie->hasActor($actor);\n assertTrue($returnedValue);\n }", "public function testAddOperation()\n\t{\n\t\t$this->adder->setA(42);\n\t\t$this->adder->add();\n\t\t$this->assertEquals(42, $this->adder->getSum(), 'dont added correctly');\n\t}", "public function addTestAssert($name, $arguments = null, $passed = true, $trace = null)\n\t{\n\t\t$this->testAsserts[] = [\n\t\t\t'name' => $name,\n\t\t\t'arguments' => (new Serializer)->normalize($arguments),\n\t\t\t'trace' => $trace,\n\t\t\t'passed' => $passed\n\t\t];\n\t}", "public function testWatchCanBeAdded()\n {\n $this->assertEquals(1, $this->stopWatch->getWatchCount(), \"Stopwatch doesn't initialized with default watch.\");\n\n $this->stopWatch->addWatch('testWatch');\n $this->assertEquals(2, $this->stopWatch->getWatchCount(), \"Stopwatch could not be added\");\n }", "public function awaitIssueAdded(ContextInterface $ctx): IssueAddedEvent;", "public function testTagAttach()\n {\n $workflow = factory(WorkflowEloquent::class)->create([\n 'user_id' => $this->user->getKey(),\n ]);\n $action1 = factory(ActionEloquent::class)->create([\n 'action_type' => ActionEloquent::ACTION_TYPE_EXECUTE,\n 'target_class' => 'tagger',\n 'target_field' => 'attach',\n 'value' => 'attach_tag',\n ]);\n $workflow->actions()->sync([$action1->getKey() ]); //, $action2->getKey()\n $object = factory(ObjectEloquent::class)->create([\n 'workflow_id' => $workflow->getKey(),\n 'object_class' => 'tags.id',\n 'object_type' => $this->tag->getKey(),\n ]);\n\n \n // rule\n $rule1 = factory(RuleEloquent::class)->create([\n 'name' => 'tag person',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_NUMBER,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'person_contexts.stage_id',\n 'value' => $this->stageId,\n 'runnable_once' => 1, // only once\n ]);\n\n $action1->rules()->sync([ $rule1->getKey()]);\n\n // run action runner\n $kernel = $this->app->make(Kernel::class);\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n //echo $output->fetch();\n $this->assertEquals($status, 0);\n\n // check status\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_SUCCESS,\n 'object_class' => $this->person->getLoggableType(), //$leadContext->getLoggableType(),\n 'object_id' => $this->person->getKey(), //$leadContext->getKey(),\n 'user_id' => $this->user->getKey(),\n ]);\n\n // check tag\n $this->seeInDatabase('taggables',[\n 'user_id' => $this->user->getKey(),\n 'tag_id' => $this->tag2->getKey(),\n 'taggable_id' => $this->person->getKey(),\n 'taggable_type' => 'persons',\n ]);\n \n $this->cleanUpRecords(new PersonObserver, $this->person);\n }", "function testSapAdd()\n {\n $user = User::whereId(1)->first();\n\n $this->actingAs($user)\n ->post('/saps/add', [\n '_token' => csrf_token(),\n 'notes' => 'lead booked',\n 'lead_id' => 1,\n 'appointment_at' => date('Y-m-d H:i:s')\n ])->assertJson(['data' => ['lead_id' => 1]]);\n\n }", "public function assert($val) {\n $this->assertions[] = $val;\n }", "public function attach($enumerator): void\n {\n $this->add($enumerator);\n }", "public function assetsManagerAddAsset(UnitTester $I)\n {\n $I->wantToTest('Assets\\Manager - addAsset()');\n\n $assets = new Manager();\n\n $assets->addAsset(\n new Css('/css/style1.css')\n );\n\n $I->assertCount(\n 1,\n $assets->get('css')\n );\n }", "public function addObserver(WorkflowObserverInterface $observer)\n {\n $this->observers[] = $observer;\n }", "public function addScore($amount, $reason = null)\n {\n\n $this->score()->create([\n 'user_id' => $this->id,\n 'score' => $amount,\n 'total' => $this->currentScore() + $amount,\n 'reason' => $reason\n ]);\n }", "public function addBehaviour(Datastore_RecordBehaviour_Base $oBehaviour)\n {\n $this->aoBehaviours[] = $oBehaviour;\n\n $oBehaviour->addFields($this);\n }", "public function add(ProcessDefinition $definition);", "public function addOrder(Order $order);", "public function add()\n {\n echo '客户需求添加一个新需求' . PHP_EOL;\n }", "protected function expect($item) {\n return new Expectation($item, $this);\n }", "public function addParticipant(ParticipantInterface $participant): self;", "public function addResult($file, Blerby_TestRunner_Result $result)\r\n {\r\n $this->aResults[$file][] = $result;\r\n }", "public function addAssertion($label, $status, $filename, $line)\r\n\t{\r\n\t\t$this->_assertions[] = new Assertion($label, $status, $filename, $line, xdebug_time_index());\r\n\t\t$this->_status &= $status;\r\n\t\treturn $this;\r\n\t}", "public function give_stage_matching_bonus($amount, $stage, $matching_type)\n {\n Log::channel('bonus')->info('Awarding Matching Bonus For User: ' . $this->id);\n $new_trx = new Transaction();\n $new_trx->amount = $amount;\n $new_trx->status = 'created';\n $new_trx->type = 'bonus';\n $new_trx->user_id = $this->id;\n\n $new_bonus_trx = new Bonus();\n $new_bonus_trx->user_id = $this->id;\n $new_bonus_trx->amount = $amount;\n $new_bonus_trx->status = 'created';\n $new_bonus_trx->type = \"{$matching_type}_{$stage}_matching\";\n $new_bonus_trx->save();\n $new_bonus_trx->transaction()->save($new_trx);\n $new_trx->status = 'completed';\n $new_trx->update();\n $this->bonus += $new_trx->amount;\n $this->update();\n Log::channel('bonus')->info('Awarding User: ' . $this->id . \" {$matching_type} {$stage} \" . \" Matching Bonus: \" . $amount . \" Completed\");\n }", "public function add(Timer $timer);", "public function add($element);", "public function add($element);", "public function add($element);", "public function testAddLineItem()\n {\n $this->addItem();\n $this->addItem();\n\n $this->laracart->addLine(\n 'itemID',\n 'Testing Item',\n 1,\n '1', [\n 'b_test' => 'option_1',\n 'a_test' => 'option_2',\n ]\n );\n\n $this->assertEquals(2, $this->laracart->count(false));\n $this->assertEquals(3, $this->laracart->count());\n }", "public function addArgument(Argument $argument): void\n {\n $this->arguments[] = $argument;\n }", "public function testAddGeneAnnotations() {\n\t\techo (\"\\n********************Test AddGeneAnnotations()***********************************************\\n\");\n\t\n\t\t$result = - 1;\n\t\n\t\t$this->gene->addGeneAnnotations( $this->annotation );\n\t\t$result = $this->gene->getGeneAnnotations()->count ();\n\t\n\t\t$this->assertEquals ( 1, $result );\n\t}", "public function add($team);", "public function addElement(FormItBuilder_baseElement $o_formElement){\n\t\t$this->_formElements[]=$o_formElement;\n\t}", "public function testAddPoneyFromField($add, $result){\n $this->poneys->addPoneysFromField($add);\n $this->assertEquals($result, $this->poneys->getCount());\n }", "function assert($expectation, $compare, $message = '%s') {\n $outputMessage = Text::stringContains($message, '%s')\n ? sprintf($message, $expectation->overlayMessage($compare, $this->reporter->getDumper()))\n : $message;\n\n if ($expectation->test($compare)) {\n return $this->pass($outputMessage);\n }\n else {\n return $this->fail($outputMessage);\n }\n }", "public function testAddActionAdds()\n {\n // another time perhaps\n }", "public function add($enumerator): void\n {\n $this->{$this->fnDoSetBit}(($this->enumeration)::get($enumerator)->getOrdinal());\n }", "public function testAddConsent(): void\n\t{\n\t\t$request = $this->httpClient->post('ApprovalsRegister/Record', \\App\\Utils::merge(['json' => [\n\t\t\t'subject' => 'Text',\n\t\t\t'approvalsid' => self::$approvalId,\n\t\t\t'contactid' => self::$recordId,\n\t\t\t'approvals_register_type' => 'PLL_ACCEPTANCE',\n\t\t\t'approvals_register_status' => 'PLL_ACCEPTED',\n\t\t\t'registration_date' => date('Y-m-d H:i:s'),\n\t\t]], self::$requestOptions));\n\t\t$this->logs = $body = $request->getBody()->getContents();\n\t\t$response = \\App\\Json::decode($body);\n\t\tstatic::assertSame(200, $request->getStatusCode(), 'ApprovalsRegister/RecordAPI error: ' . PHP_EOL . $request->getReasonPhrase() . '|' . $body);\n\t\tstatic::assertSame(1, $response['status'], 'ApprovalsRegister/Record API error: ' . PHP_EOL . $request->getReasonPhrase() . '|' . $body);\n\t\tstatic::assertNotEmpty($response['result'], 'ApprovalsRegister/Record result is empty and should have at least one entry.');\n\t\tstatic::assertNotEmpty($response['result']['id'], 'ApprovalsRegister/Record record should not be empty');\n\t\tself::assertResponseBodyMatch($response, self::$schemaManager, '/webservice/ManageConsents/ApprovalsRegister/Record', 'post', 200);\n\t\t\\ApprovalsRegister_Module_Model::reloadApprovals(self::$recordId);\n\t}", "public function testAdd()\n {\n $post = new Post();\n $user = new User();\n $this->entityManager->shouldReceive('persist')\n ->once()\n ->with(\\Mockery::on(function ($post) {\n $this->assertInstanceOf(Post::class, $post);\n \n return true;\n }));\n $this->entityManager->shouldReceive('flush')\n ->once()\n ->withNoArgs();\n $this->postCreator->add($post, $user);\n }", "public function setExpectReturn($expecting, Variable $expectingVariable = null)\n {\n $this->_expecting = $expecting;\n $this->_expectingVariable = $expectingVariable;\n }", "public function add($attribute, $validator);", "function addMethodArg($actMethod, $type, $name) {\n\t\tif ($type == \"void\" || (empty($type) && empty($name) ))\n\t\t\treturn;\n\t\t$methodIndex = $this->getLastMethodIndex();\n\n\t\t// Vytvoreni pole pokud jeste neexistuje\n\t\tif (!is_array(@$this->argsMethodArray[$methodIndex]))\n\t\t\t$this->argsMethodArray[$methodIndex] = array();\n\n\t\tarray_push($this->argsMethodArray[$methodIndex], array(\"name\" => $name, \"type\" => $type));\n\t}", "public function testAddServiceAcknowledgementWhichSucceed()\n {\n $this->entityValidator->expects($this->once())\n ->method('validate')\n ->willReturn(new ConstraintViolationList([]));\n $this->monitoringRepository->expects($this->once())\n ->method('findOneService')\n ->willReturn($this->service);\n $this->monitoringRepository->expects($this->once())\n ->method('findOneHost')\n ->willReturn($this->host);\n $this->engineService->expects($this->once())\n ->method('addServiceAcknowledgement')\n ->willReturn(null);\n\n $acknowledgementService = new AcknowledgementService(\n $this->acknowledgementRepository,\n $this->accessGroupRepository,\n $this->monitoringRepository,\n $this->engineService,\n $this->entityValidator\n );\n\n $this->assertNull($acknowledgementService->addServiceAcknowledgement($this->serviceAcknowledgement));\n }", "public function addMark(string $name, string $group='main', float $duration=0.0)\n {\n $this->storeMark(\n $name,\n $group,\n microtime(true),\n $this->trackMemory ? memory_get_usage(true) : 0,\n $duration\n );\n }", "public function testAddAndGet()\n {\n $decorator = new TraceableChainActivator();\n $decorator->add($fakeActivator1 = new ArrayActivator());\n $decorator->add($fakeActivator2 = new ArrayActivator([]));\n\n // Should be the same sorting\n static::assertSame($fakeActivator1, $decorator->getActivators()[0]);\n static::assertSame($fakeActivator2, $decorator->getActivators()[1]);\n }", "private function registerMock(): UnitMock\n {\n $this->currentMock = Mockery::mock(\"{$this->unit}[handle]\", $this->getCurrentConstructorArgs());\n $this->mocks[] = $this->currentMock;\n\n // $args will be what the developer passed to the unit in actual execution\n app()->bind($this->unit, function ($app, $args) {\n foreach ($this->constructorExpectations as $key => $expectations) {\n if ($args == $expectations) {\n return $this->mocks[$key];\n }\n }\n\n throw new Mockery\\Exception\\NoMatchingExpectationException(\n \"\\n\\nExpected one of the following arguments sets for {$this->unit}::__construct(): \" .\n print_r($this->constructorExpectations, true) . \"\\nGot: \" .\n print_r($args, true)\n );\n });\n\n return $this;\n }", "function expectAt($timing, $method, $args, $message = '%s') {\n $this->dieOnNoMethod($method, 'set expected arguments at time');\n $this->checkArgumentsIsArray($args, 'set expected arguments at time');\n $args = $this->replaceWildcards($args);\n if (! isset($this->expected_args_at[$timing])) {\n $this->expected_args_at[$timing] = array();\n }\n $method = strtolower($method);\n $message .= Mock::getExpectationLine();\n $this->expected_args_at[$timing][$method] =\n new ParametersExpectation($args, $message);\n }", "public function add(\\Searchperience\\Api\\Client\\Domain\\Enrichment\\Enrichment $enrichment) {\n\t\t$violations = $this->enrichmentValidator->validate($enrichment);\n\n\t\tif ($violations->count() > 0) {\n\t\t\tthrow new \\Searchperience\\Common\\Exception\\InvalidArgumentException('Given object of type \"' . get_class($enrichment) . '\" is not valid: ' . PHP_EOL . $violations);\n\t\t}\n\n\t\t$status = $this->storageBackend->post($enrichment);\n\t\treturn $status;\n\t}", "public function assert_action(Request $value, $expectation)\n\t{\n\t\tTests::$results['assertions']++;\n\t\tif ($value->action == $expectation)\n\t\t{\n\t\t\t$this->pass();\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->fail('assert_action - Given action \"'.$value.'\" does not match \"'.$expectation.'\"');\n\t\t}\n\t}", "public function add($observer){\n $this->observers[] = $observer;\n }", "public function addToTiming(\\DedexBundle\\Entity\\Ern411\\TimingType $timing)\n {\n $this->timing[] = $timing;\n return $this;\n }", "public function attachRoleToActor(Model $actor, Role $role)\n {\n WatchtowerActor::firstOrCreate( [\n 'role_id' => $role->getKey(),\n 'actor_id' => $actor->getKey(),\n 'actor_type' => $actor->getMorphClass(),\n ] );\n\n $this->events->fire( new RolesWereAttachedToActor( $actor, collect( [$role] ) ) );\n\n return true;\n }", "public function add(Article $article, $quantity);", "public function testAddElementToBag()\n {\n $this->populateBag();\n $this->assertEquals(3, $this->bag->count());\n\n }", "public function add_goal( $experiment_id, $goal_id ) {\n\t\t$goal = $this->get_goal( $goal_id );\n\n\t\tif ( ! isset( $goal->experiment_ids ) ) {\n\t\t\treturn FALSE;\n\t\t}//end if\n\n\t\t$goal->experiment_ids[] = $experiment_id;\n\t\t$goal->experiment_ids = array_unique( $goal->experiment_ids );\n\n\t\treturn $this->update_goal( $goal_id, array( 'experiment_ids' => $goal->experiment_ids ) );\n\t}", "function addVariation(string $name, string $rrule) : IEventModel;", "public function hire(Person $person)\r\n {\r\n $this->staff->add($person);\r\n\r\n }", "public function test_something()\n {\n $wp_roles = \\Mockery::mock('\\WP_Roles');\n $wp_roles->shouldReceive('add_cap')\n ->times(2);\n Functions\\expect('wp_roles')\n ->once()\n ->withNoArgs()\n ->andReturn($wp_roles);\n // Act\n // Assume `create_cap` calls `wp_roles` in some way.\n // Then it calls `add_cap` 5 times.\n $this->assertEmpty((new Some())->create_cap());\n }", "public function testAddHashtag($hashtag, $expected_result, $message = '')\n {\n $this->intent->addHashtag($hashtag);\n\n $hashtags = self::getProperty($this->intent, 'hashtags');\n $hashtags = array_values($hashtags);\n $hashtags = reset($hashtags);\n $this->assertEquals($expected_result, $hashtags, $message);\n }", "public function testAdd(){\n $adder = new Adder();\n $this->assertEquals(5, $adder->add(2, 3));\n }", "public function testAddEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"addEventEvent\";\n\t\t$stat_name_id = 100;\n\t\t$now = \"String for date\";\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->exactly(4))\n\t\t\t->method(\"__set\");\n\t\t$history_model\n\t\t\t->expects($this->never())\n\t\t\t->method(\"loadBy\");\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"save\");\n\t\t\t\t\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"stat_name_id\"))\n\t\t\t->will($this->returnValue($stat_name_id));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\t\t\n\t\t$event_history->addEvent($event_name, $application_id);\n\t}", "public function addEffect($Effect) {\n $Effect->call(\"attachToBattle\", $this);\n $this->battleeffects->add($Effect);\n }", "public function itAddsTheArtifactToTheTreeNode() {\n// $tracker_hierarchy = $this->GivenATrackerHierarchy();\n// $trackerIds = array(111, 112, 113, 666);\n// $artifact = stub('Tracker_Artifact')->getLastChangeSet()->returns(mock('Tracker_Artifact_Changeset'));\n// stub($artifact)->getHierarchyLinkedArtifacts()->returns($artifact);\n// $artifact_factory = stub('Tracker_ArtifactFactory')->getArtifactById()->returns($artifact);\n// $sorter = new Tracker_Hierarchy_Sorter($artifact_factory);\n// $artifacts_dar = $this->getResultsForTrackerOutsideHierarchy();\n//\n// $user = mock('User');\n// $artifacts = $sorter->buildTreeWithMissingChildren($user, $artifacts_dar);\n// $all_artifact_nodes = $artifacts->flattenChildren();\n//\n// $this->assertArrayNotEmpty($all_artifact_nodes);\n// foreach ($all_artifact_nodes as $artifact_node) {\n// $this->assertIsA($artifact_node->getObject(), 'Tracker_Artifact');\n// }\n }", "public function attach(Node $node): void\n {\n $type = $this->determineResponseType($node->source());\n $queueItem = new ResponseQueueItem($node->command(), $type, 0, $this->options);\n $this->responses->put($node->value(), $queueItem);\n }", "public function addTeamPlayed(&$team){\n array_push($this->teamsPlayed, $team);\n $this->numOfOpponents++;\n }", "function addContribution(Contribution $contribution) {\n array_push($this->contrib_stack, $contribution);\n // Order array\n usort($this->contrib_stack, function($a, $b) {\n if($a->getRate() == $b->getRate()){\n return ($a->getTimestamp() < $b->getTimestamp()) ? -1 : 1;\n }\n return ($a->getRate() < $b->getRate()) ? -1 : 1;\n });\n // Compute score and get stats\n $this->computeScoreAndStats();\n\n return $this->total_amount;\n }", "public function add(object $entity): void\n {\n }", "public function test_addReplenishmentProcessAudit() {\n\n }", "private function addQuestion() : void\n {\n $question = $this->console->ask(__('Type your question'));\n\n $this->console->info('Question successfully added ');\n\n $answer = $this->console->ask(__('Type your answer'));\n\n $this->console->info('Answer successfully added ');\n\n $this->questionRepository->create([\n 'question' => $question,\n 'valid_answer' => $answer,\n ]);\n }", "public function testAttributeElementWhenAddedToSchemaElement(): void\n {\n $parent = new SchemaElement();\n $parent->addAttributeElement($this->sut);\n self::assertTrue($this->sut->hasParent());\n self::assertSame($parent, $this->sut->getParent());\n }", "public function testAddOperation1()\n\t{\n\t\t$this->adder->setA(4);\n\t\t$this->adder->setB(5);\n\t\t$this->adder->add();\n\t\t$this->assertEquals(9, $this->adder->getSum(), 'dont added correctly');\n\t}", "public function test_user_add_other_details() {\n\n $data = [\n 'other_details' => str_repeat('Here will be added bill other details', rand(5,10))\n ];\n\n $this->actingAs($this->user)\n ->post('/bills/' . $this->simpleBill->id . '/edit-other-details', $data)\n ->seeJson([\n 'success' => true,\n 'message' => trans('bill.other_details_updated')\n ])\n ->seeInDatabase('bills', [\n 'id' => $this->simpleBill->id,\n 'user_id' => $this->user->id,\n 'other_details' => $data['other_details']\n ]);\n }", "public function addToInsight(\\Ews\\StructType\\EwsInsight $item)\n {\n // validation for constraint: itemType\n if (!$item instanceof \\Ews\\StructType\\EwsInsight) {\n throw new \\InvalidArgumentException(sprintf('The Insight property can only contain items of \\Ews\\StructType\\EwsInsight, \"%s\" given', is_object($item) ? get_class($item) : gettype($item)), __LINE__);\n }\n $this->Insight[] = $item;\n return $this;\n }", "function add ($other) {\n $this->getTool();\n return ($this->tool->add(&$this, $other));\n }", "public function testAddResult(): void\n {\n $this->collection->setResult($this->timeResult);\n $this->assertEquals(\n $this->timeResult,\n $this->collection->getResult(TimeResult::class)\n );\n }", "public function add($item)\n {\n $this->manuallyAddedData[] = $item;\n }" ]
[ "0.55663633", "0.53616834", "0.50647366", "0.48396227", "0.48369572", "0.48033783", "0.47368506", "0.4664504", "0.46631527", "0.46377322", "0.45926043", "0.4503272", "0.4486392", "0.43957382", "0.4380737", "0.43514243", "0.43463093", "0.4341807", "0.43369317", "0.43289477", "0.4325335", "0.43157068", "0.4309212", "0.43031293", "0.42934582", "0.42933792", "0.42933142", "0.42470068", "0.4246819", "0.42442334", "0.42383543", "0.42337513", "0.4224966", "0.4224489", "0.42206454", "0.42108098", "0.41999123", "0.41965634", "0.41849956", "0.41824067", "0.4168901", "0.41539165", "0.41259354", "0.41210622", "0.41193497", "0.4116713", "0.4109785", "0.41063672", "0.41008362", "0.409985", "0.409985", "0.409985", "0.40973926", "0.4095205", "0.40948433", "0.40862644", "0.40796116", "0.40792203", "0.4070636", "0.40660694", "0.40489927", "0.40456083", "0.40379858", "0.40357664", "0.40338477", "0.40317014", "0.40316364", "0.40311173", "0.4029318", "0.40267146", "0.40247992", "0.4022854", "0.40187317", "0.40173718", "0.40170568", "0.4016457", "0.40114367", "0.40106514", "0.40096697", "0.40065068", "0.40037778", "0.40008613", "0.39961484", "0.39924607", "0.39839223", "0.39782104", "0.3969941", "0.39677355", "0.39656493", "0.3965041", "0.39643905", "0.39604583", "0.39539024", "0.39468458", "0.39403337", "0.39362878", "0.39320675", "0.393131", "0.39295122", "0.39281255" ]
0.63520926
0
Adds an expectation that the event at the current index as a given type name.
public function hasTypeName(string $expectedTypeNameOrClassName): self { if (class_exists($expectedTypeNameOrClassName)) { $expectedTypeNameOrClassName = $expectedTypeNameOrClassName::getTypeName(); } return $this->expect(new EventAtIndexHasTypeNameExpectation($this->expectedIndex, $expectedTypeNameOrClassName)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function expect( $item, $type ) {\n\t\tif ( ! isset( $this->expected[ $type ] ) ) {\n\t\t\t$this->expected[ $type ] = array();\n\t\t}\n\t\t$this->expected[ $type ][] = $item;\n\t}", "protected function expectAddEvent()\n {\n $this->eventPublisher->expects($this->once())\n ->method('addEvent')\n ->with(['uuid' => '123']);\n }", "public static function add($type, $eventname, $callback){\n if(isset(self::$__events[$type])){\n if(!isset(self::$__events[$type][strtolower($eventname[0])][strtolower($eventname[1])])){\n $count = 0;\n }else{\n $count = count(self::$__events[$type][strtolower($eventname[0])][strtolower($eventname[1])]); \n }\n }else{\n $count = 0;\n }\n self::$__events[$type][strtolower($eventname[0])][strtolower($eventname[1])][$count] = $callback; \n }", "public function addType($type);", "public function add_event($type, $method_name)\n\t{\n\t\tif (!array_key_exists($type, $this->_events)) $this->_events[$type] = array();\n\t\t$this->_events[$type][] = $method_name;\n\t}", "function registerAudit($action, $type, $name) {\n $reference = $this->getReference(AUDIT . '/' . date(\"YmdHis\"));\n try {\n $reference->set([\n 'action' => $action,\n 'type' => $type,\n 'name' => $name,\n 'date' => date(\"d/m/Y\"),\n 'hour' => date(\"H:i:s\"),\n 'author' => $_SESSION[\"payload\"][\"email\"]\n ]);\n } catch (\\Kreait\\Firebase\\Exception\\DatabaseException $e) {\n }\n }", "public function testEventNameException()\n {\n $this->setExpectedException('Txiki\\Events\\EventException', 'Event name is necesary', 0);\n\n $this->event->on();\n }", "public function fnExpect($oType) \n {\n if (!$this->fnEat($oType)) \n $this->fnUnexpected();\n }", "function addMethodArg($actMethod, $type, $name) {\n\t\tif ($type == \"void\" || (empty($type) && empty($name) ))\n\t\t\treturn;\n\t\t$methodIndex = $this->getLastMethodIndex();\n\n\t\t// Vytvoreni pole pokud jeste neexistuje\n\t\tif (!is_array(@$this->argsMethodArray[$methodIndex]))\n\t\t\t$this->argsMethodArray[$methodIndex] = array();\n\n\t\tarray_push($this->argsMethodArray[$methodIndex], array(\"name\" => $name, \"type\" => $type));\n\t}", "public function testSetName() {\r\n $this->assertInstanceOf('PM\\Main\\Event\\Action\\Emit', $this->_action->setName('test'));\r\n $this->assertEquals('test', $this->_action->getName());\r\n }", "#[@test]\n public function correctTypeNameSet() {\n $this->assertEquals('string', \n $this->xpath->query('string(/document/table/attribute[3]/@typename)'));\n $this->assertEquals('int', \n $this->xpath->query('string(/document/table/attribute[2]/@typename)'));\n }", "public function testInsertARequestType()\r\n {\r\n $requestTypeController = new RequestTypeController();\r\n \r\n $beforeInsertingANewRequestType = $requestTypeController->GetRequestTypes();\r\n \r\n $requestTypeController->InsertARequestType(\"Test New Type\");\r\n \r\n $afterInsertingANewRequestType = $requestTypeController->GetRequestTypes();\r\n \r\n $this->assertEquals(count($beforeInsertingANewRequestType)+1,count($afterInsertingANewRequestType));\r\n }", "abstract protected function listensTo($typeName);", "public function testDuplicateEventNameException()\n {\n $this->setExpectedException('Txiki\\Events\\EventException', 'Duplicate event name', 0);\n\n $this->event->on('event-name', function () {return true;});\n $this->event->on('event-name', function () {return true;});\n }", "public function AddType($type) {\n $this->Types[] = $type;\n }", "public function addAssertion(Assertion\\AssertionInterface $assertion, $name = null)\n {\n if (null === $name) {\n $name = strtolower((new \\ReflectionClass($assertion))->getShortName());\n }\n\n $this->assertions[$name] = $assertion;\n }", "public function expectThat(string $expectation): TestGuy;", "function addVariation(string $name, string $rrule) : IEventModel;", "function expectAt($timing, $method, $args, $message = '%s') {\n $this->dieOnNoMethod($method, 'set expected arguments at time');\n $this->checkArgumentsIsArray($args, 'set expected arguments at time');\n $args = $this->replaceWildcards($args);\n if (! isset($this->expected_args_at[$timing])) {\n $this->expected_args_at[$timing] = array();\n }\n $method = strtolower($method);\n $message .= Mock::getExpectationLine();\n $this->expected_args_at[$timing][$method] =\n new ParametersExpectation($args, $message);\n }", "public function testAddEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"addEventEvent\";\n\t\t$stat_name_id = 100;\n\t\t$now = \"String for date\";\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->exactly(4))\n\t\t\t->method(\"__set\");\n\t\t$history_model\n\t\t\t->expects($this->never())\n\t\t\t->method(\"loadBy\");\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"save\");\n\t\t\t\t\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"stat_name_id\"))\n\t\t\t->will($this->returnValue($stat_name_id));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\t\t\n\t\t$event_history->addEvent($event_name, $application_id);\n\t}", "public function setEvent($type, $data) {\n // $type is a string, and $data is an associative array.\n //\n // Enhancement idea: names of args\n $method = '/*method*/';\n $data = array(\"method\" => $method, \"args\" => func_get_args());\n array_push($this->__history, array(\"call\" => $data));\n }", "function setEventType() // OK\n {\n }", "public function subscribeType($name, $spec)\n {\n $this->types[$name] = $spec;\n }", "public function addIndex($type, $name, $column) {\n\t\t$table = $type;\n\t\t$table = $this->safeTable($table);\n\t\t$name = preg_replace('/\\W/','',$name);\n\t\t$column = $this->safeColumn($column);\n\t\tforeach( $this->adapter->get(\"SHOW INDEX FROM $table \") as $ind) {\n\t\t\tif ($ind['Key_name']===$name) return;\n\t\t}\n\t\ttry{ $this->adapter->exec(\"CREATE INDEX $name ON $table ($column) \"); }catch(Exception $e){}\n\t}", "public function add_field($name, $type)\n {\n $this->fields[$name] = $type;\n }", "public function testContainsEventUsesCachedAddEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"containsEventEvent\";\n\t\t$new_event = \"NEW EVENT\";\n\t\t$stat_name_id = 1000;\n\t\t$new_stat_name_id = 1001;\n\t\t$now = \"String for date\";\n\t\t$data_rows = new ArrayIterator();\n\t\t$row = new stdClass();\n\t\t$row->stat_name_id = $stat_name_id;\n\t\t$data_rows->append($row);\n\t\t\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadAllBy\")\n\t\t\t->with($this->equalTo(array(\"application_id\" => $application_id)))\n\t\t\t->will($this->returnValue($data_rows));\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadByKey\")\n\t\t\t->with(array($stat_name_id))\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"__get\")\n\t\t\t->will(\n\t\t\t\t$this->returnValue(strtolower($event_name)),\n\t\t\t\t$this->returnValue($stat_name_id),\n\t\t\t\t$this->returnValue($new_stat_name_id));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, $application_id));\n\t\t$this->assertFalse(\n\t\t\t$event_history->containsEvent($new_event, $application_id));\n\t\t$event_history->addEvent($new_event, $application_id);\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($new_event, $application_id));\n\t}", "public function addType(Type $type, $name = '')\n {\n if (!$name) {\n $name = (string)$type;\n }\n\n $this->types[$name] = $type;\n }", "public function hasProperArgumentName(): void\n {\n $filter = new RestrictByTypeFilter(RestrictByTypeFilter::MUNICIPALITY_NAME);\n\n $this->assertEquals('type', $filter->name());\n }", "public function testCountersNamed()\n {\n $this->Test = $this->getMockForTrait(self::TRAIT_NAME, [], '', true, true, true, ['at']);\n $this->Test\n ->expects($this->any())\n ->method('at')\n ->will($this->returnCallback(function ($input) {\n return new InvokedAtIndex($input);\n }));\n\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter('Foo')->toString());\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter('Bar')->toString());\n $this->assertSame('invoked at sequence index 1', $this->Test->nextCounter('Foo')->toString());\n $this->assertSame('invoked at sequence index 1', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 2', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 3', $this->Test->nextCounter()->toString());\n }", "function add($name, $date, $type=0, $tags=false, $entity = false){\n\t\t$name = trim($name);\n\t\t// Invalid dates out:\n\t\tif(strlen($date)<1 || strlen($name) <1){\n\t\t\techo '<br /><span style=\"color:violet\">Invalid</span>';\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t$new = array(\n\t\t\t'name' => $name,\n\t\t\t'entity' => $entity,\n\t\t\t'date' => $date,\n\t\t\t'context' => '',\n\t\t\t'type' => $type,\n\t\t\t'tags' => $tags\n\t\t);\n\t\t\n\t\t$this->events[] = $new;\n\t}", "public function setByName($name, $value, $type = BasePeer::TYPE_PHPNAME)\n {\n $pos = EventPeer::translateFieldName($name, $type, BasePeer::TYPE_NUM);\n\n $this->setByPosition($pos, $value);\n }", "public function testWithEntity()\n {\n $event = ['1', '2', '3'];\n\n $this->mockCallback->expects($this->once())\n ->method('callback')\n ->with($event);\n\n\n $this->listener->withEntity($event);\n }", "public function testCountersObjectNamed()\n {\n $this->Test = $this->getMockForTrait(self::TRAIT_NAME, [], '', true, true, true, ['at']);\n $this->Test\n ->expects($this->any())\n ->method('at')\n ->will($this->returnCallback(function ($input) {\n return new InvokedAtIndex($input);\n }));\n\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter($this->Test)->toString());\n $this->assertSame('invoked at sequence index 0', $this->Test->nextCounter($this)->toString());\n $this->assertSame('invoked at sequence index 1', $this->Test->nextCounter($this->Test)->toString());\n $this->assertSame('invoked at sequence index 1', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 2', $this->Test->nextCounter()->toString());\n $this->assertSame('invoked at sequence index 3', $this->Test->nextCounter()->toString());\n }", "#[@test]\n public function typeForName() {\n $this->assertInstanceOf('lang.ArrayType', Type::forName('string[]'));\n }", "public function testGetName()\n {\n $this->assertEquals(\n 'float',\n $this->type->getName(),\n 'The name \"float\" should be returned.'\n );\n }", "public function testFireEventWithInternalFiredEvent()\n {\n $eventManager = new EventManager;\n $event = 'foor.bar';\n $eventManager->listen(EventManager::FIRED, function ($newEvent) use ($event) {\n $this->assertEquals($newEvent, $event);\n });\n $eventManager->fire($event);\n }", "private function increaseCounter($counterName){\n\t\t$className = $this->currentTest->getDeclaringClass()->getName();\n\t\t$methodName = $this->currentTest->getName();\n\t\t$this->assertions[$className][$methodName][$counterName] += 1;\n\t}", "public function expectNext($type)\n {\n\n $token = next($this->tokens);\n\n if (!$token || $type != $token[0]) {\n $this->unexpectedToken($token, $type);\n }\n\n return $token;\n\n }", "function addColumn($table, $name, $type);", "public function addAttribute($name, $type)\n {\n $this->attributeTypes[$name] = $type;\n $this->attributeValues[$name] = NULL; // Inicializacion de campo simple, garantiza que siempre hay un valor para la key $name\n }", "function testEditCalendarEventType()\n\t{\n\t\tedit_event_type($this->eventtype_id,\"test_event_type1\",'calendar/testtype1','');\n\t\t// Test the forum was actually created\n\t\t$this->assertTrue('test_event_type1'==get_translated_text($GLOBALS['SITE_DB']->query_value('calendar_types','t_title ',array('id'=>$this->eventtype_id))));\n\t}", "public function logAs($type, $target);", "public function testSetAttribute_Exception()\n {\n \t$this->setExpectedException('Exception', \"Unable to set attribute 'type'; Attribute is read-only.\");\n \t$this->Fs_Node['type'] = 'unknown';\n }", "public function testAddNoteType()\n {\n $this->_instance->addNoteType($this->_objects['noteType']);\n \n // find our note type\n $testNoteType = $this->_instance->getNoteTypeByName($this->_objects['noteType']->name);\n \n $this->assertEquals($this->_objects['noteType']->name, $testNoteType->name);\n $this->assertEquals(1, $testNoteType->is_user_type, 'user type not set');\n }", "public function trigger($type, $data){}", "public function add(string $type): void\n {\n /**\n * Don't add in case of an invalid type or in case the type has already\n * been added.\n */\n if (in_array($type, self::$allowedTypes, true)\n && !in_array($type, $this->types, true)\n ) {\n $this->types[] = $type;\n }\n }", "public function getAttributeName()\n {\n return 'EventType';\n }", "public function add(string $name, string $type = null, array $options = []);", "public function setCustomEventName(string $name): ParamsInterface;", "public function trigger($sender, $e) {\n if(is_null($this->start_time)) {\n $this->start_time = new \\DateTime;\n } else {\n $this->since_start = new \\DateTime;\n }\n $this->events[] = $e;\n $this->event_names[] = $e->name;\n if(!array_key_exists($e->name,$this->amounts)) {\n $this->amounts[$e->name] = 0;\n }\n \n $this->amounts[$e->name]++;\n $this->handle($e);\n }", "function setEventType()\n {\n $this->_eventType = 12;\n }", "public function validateEventType(string $type): void\n {\n if ($this->payload->object_kind !== $type) {\n throw new Exception(\n \"Invalid event type. Expected {$type} but found {$this->payload->object_kind}\",\n 200\n );\n }\n }", "public function addInlineType($type, $tag, $index = null)\n {\n if (!isset($index) || !isset($this->InlineTypes[$type])) {\n $this->InlineTypes[$type][] = $tag;\n } else {\n array_splice($this->InlineTypes[$type], $index, 0, [$tag]);\n }\n\n if (strpos($this->inlineMarkerList, $type) === false) {\n $this->inlineMarkerList .= $type;\n }\n }", "public function addTestAssert($name, $arguments = null, $passed = true, $trace = null)\n\t{\n\t\t$this->testAsserts[] = [\n\t\t\t'name' => $name,\n\t\t\t'arguments' => (new Serializer)->normalize($arguments),\n\t\t\t'trace' => $trace,\n\t\t\t'passed' => $passed\n\t\t];\n\t}", "public function addType($registry, $name, $className)\n {\n if (isset($this->mapping[$registry][$name])) {\n throw new \\LogicException(sprintf('%s type \"%s\" is already defined', $registry, $name));\n }\n\n // make sure it's fully qualified\n if (substr($className, 0, 1) !== '\\\\') {\n $className = '\\\\'.$className;\n }\n\n $this->mapping[$registry][$name] = $className;\n }", "public function add(string $key, mixed $value, mixed $type = null): void;", "public function testMimageShouldBeAdded()\n {\n $imageLabel = 4;\n $imageUrl = [];\n $this->expectException(TypeError::class);\n $actual = imageShouldBeAdded($imageLabel, $imageUrl);\n\n }", "public function Trigger($Name) {\n $this->mMarks[$Name] = microtime();\n }", "public function pushEvent($name)\n {\n $this->data['event'] = $name;\n }", "public static function addType($name)\n {\n if (is_null(self::$registry)) {\n self::registerType(new $name());\n return;\n }\n self::registerType(new $name(self::$registry));\n }", "function InsertANewReportType($name)\n {\n $reportTypeModel = new ReportTypeModel();\n $reportTypeModel->InsertANewReportType($name);\n }", "public function addToTiming(\\DedexBundle\\Entity\\Ern411\\TimingType $timing)\n {\n $this->timing[] = $timing;\n return $this;\n }", "public static function addAlias($alias, $xtype)\n {\n self::$alias[$alias] = $xtype;\n }", "public function add($name, EventInterface $event)\n {\n $eventClass = get_class($event);\n if (!isset($this->jobs[$eventClass])) {\n throw new InvalidArgumentException(\"Don't know what job to use for event {$eventClass}\");\n }\n $class = $this->jobs[$eventClass];\n $job = $class::getInstance($name, $event);\n $this->client->queue($this->queueName)->push($job);\n }", "public function test_mime_type( $file_name, $expect ) {\n\t\t$file_path = Path_Creator::create_file_path( $file_name );\n\t\t$result = $this->call_private_method( 'mime_type', array( $file_path ) );\n\t\t$this->assertEquals( $expect, $result );\n\t}", "public function POS_it_checks_create_audits_testing_checkIfTypeExists() {\n\n $type = 'Bob';\n\n $taskType = new TaskType();\n $taskType->setType($type);\n $taskType->setDescription('was here');\n $taskType->created_at = Carbon::now();\n $taskType->updated_at = Carbon::now();\n $taskType->client_id = 1;\n\n $taskType->save();\n\n $result = $taskType->checkTaskTypeCreateAudits($taskType);\n\n $this->assertEquals($result, appGlobals()::TBL_TASK_TYPE_TYPE_ALREADY_EXISTS);\n }", "public function add($name);", "public function testContainsEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"containsEventEvent\";\n\t\t$stat_name_id = 300;\n\t\t$now = \"String for date\";\n\t\t$data_rows = new ArrayIterator();\n\t\t$row = new stdClass();\n\t\t$row->stat_name_id = $stat_name_id;\n\t\t$data_rows->append($row);\n\t\t\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadAllBy\")\n\t\t\t->with($this->equalTo(array(\"application_id\" => $application_id)))\n\t\t\t->will($this->returnValue($data_rows));\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadByKey\")\n\t\t\t->with(array($stat_name_id))\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"name\"))\n\t\t\t->will($this->returnValue(strtolower($event_name)));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->never())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, $application_id));\n\t\t$this->assertFalse(\n\t\t\t$event_history->containsEvent(\"UNKNOWN_EVENT\", $application_id));\n\t}", "protected function addToken($index) {\n\t\tif ($index > 0) {\n\t\t\t$token = $this->oBeaut->getNextTokenConstant($index);\n\t\t} elseif ($index < 0) {\n\t\t\t$token = $this->oBeaut->getPreviousTokenConstant(- $index);\n\t\t} else {\n\t\t\t$token = $this->oBeaut->getToken($this->oBeaut->iCount);\n\t\t}\n\t\t\n\t\tif (is_array($token)) {\n\t\t\t$token = $token[0];\n\t\t}\n\t\t\n\t\t$out = '[' . $index . ':';\n\t\t$name = $this->oBeaut->getTokenName($token);\n\t\t\n\t\tif ($name) {\n\t\t\t$out .= $name;\n\t\t} else {\n\t\t\t$out .= $token;\n\t\t}\n\t\t\n\t\t$out .= ']';\n\t\t$this->oBeaut->add($out);\n\t}", "public function setEventType(?string $eventType): self\n {\n $this->initialized['eventType'] = true;\n $this->eventType = $eventType;\n\n return $this;\n }", "public function testAttributeElementWhenAddedToAttributeNamingElement(\n AttributeNamingElementInterface $parent\n ): void\n {\n $parent->addAttributeElement($this->sut);\n self::assertTrue($this->sut->hasParent());\n self::assertSame($parent, $this->sut->getParent());\n }", "public function addTestMessage($message, $data = null, $type = Output::MESSAGE)\n {\n if (!isset($this->_testMessages[$type])) {\n $this->_testMessages[$type] = array();\n }\n\n $this->_testMessages[$type][] = array(\n 'message' => $message,\n 'data' => $data\n );\n }", "public function getNamedTypeArgument($name);", "function recordCombatEvent($combat, $str, $actor, $target, $type) {\n\t\t$curTime = new Time($this->mysqli);\n\t\t$sql = \"INSERT INTO `combat_events` (`combatFK`, `actorFK`, `targetFK`, `dateTime`, `minute`, `type`, `contents`) VALUES ($combat, $actor, $target, \".$curTime->dateTime.\", \".$curTime->minute.\", $type, '$str')\";\n\t\t$this->mysqli->query($sql);\n\t\t$result = $this->mysqli->insert_id;\n\t\tif ($result) {\n\t\t\treturn $result;\n\t\t}\n\t\telse return array(\"attempt\" => $sql);\n\t}", "protected function assertMemberType($memberName, $type=null)\n {\n if (!is_null($type))\n {\n switch($type)\n {\n case 'array': case 'integer': case 'int': case 'string': case 'numeric':\n $function = 'is_'.$type;\n if (!$function($this->$memberName))\n {\n throw new InvalidArgumentException(sprintf('%s\\'s «%s» member must be of «%s» type', get_class($this), $memberName, $type));\n }\n break;\n\n default:\n if (!$this->$memberName instanceof $type)\n {\n throw new InvalidArgumentException(sprintf('%s\\'s «%s» member must be instance of «%s»', get_class($this), $memberName, $type));\n }\n }\n }\n }", "private function addMetric($type, $name, $value, array $opts = [])\n {\n $this->metrics[$type][] = \n array_merge(\n $this->opts,\n $opts,\n ['name' => $name, 'value' => $value]\n );\n }", "public function addFirst($e);", "public function add($item, int $index): void;", "public function offsetSet($index, $newval): void\n {\n if (!$newval instanceof WriterAbstract) {\n throw new InvalidArgumentException(\n 'The Writer Collection may only contain objects descending from WriterAbstract'\n );\n }\n\n if (!preg_match('/^[a-zA-Z0-9\\-\\_\\/]{3,}$/', $index)) {\n throw new InvalidArgumentException(\n 'The name of a Writer may only contain alphanumeric characters, one or more hyphens, underscores and '\n . 'forward slashes and must be at least three characters wide'\n );\n }\n\n parent::offsetSet($index, $newval);\n }", "public function add_event(array $event) {\n if (empty($event['type']) or\n empty($event['name']) or\n empty($event['data'])) {\n return (false);\n }\n $this->__results[] =\n array('type' => $event['type'],\n 'name' => $event['name'],\n 'data' => $event['data']);\n return (true);\n }", "public function after(TestEvent $e): void\n {\n $name = $this->getTestName($e);\n\n if (empty($this->timeList[$name])) {\n $this->timeList[$name] = 0;\n }\n $this->timeList[$name] += $e->getTime();\n }", "#[@test]\n public function correctTypeSet() {\n $this->assertEquals('DB_ATTRTYPE_TEXT', \n $this->xpath->query('string(/document/table/attribute[3]/@type)'));\n }", "public function testEventNameFromIdCaches()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"eventNameFromIdCache\";\n\t\t$stat_name_id = 500;\n\t\t$now = \"String for date\";\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->exactly(8))\n\t\t\t->method(\"__set\");\n\t\t$history_model\n\t\t\t->expects($this->never())\n\t\t\t->method(\"loadBy\");\n\t\t$history_model\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"save\");\n\t\t\t\t\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"stat_name_id\"))\n\t\t\t->will($this->returnValue($stat_name_id));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\t\t\n\t\t$event_history->addEvent($event_name, $application_id);\n\t\t$event_history->addEvent($event_name, $application_id);\n\t}", "public function addEventType($webhookEventType)\n {\n if (!$this->getEventTypes()) {\n return $this->setEventTypes([$webhookEventType]);\n } else {\n return $this->setEventTypes(\n array_merge($this->getEventTypes(), [$webhookEventType])\n );\n }\n }", "public function test_add_status_event()\n {\n $employer = Employer::factory()->create();\n $status = EmployerStatus::create([\n \"employer_id\" => $employer->id,\n \"online_at\" => $online_at = Carbon::now(),\n\n ]);\n $this->assertDatabaseHas(\"employer_statuses\", [\n \"employer_id\" => (string)$employer->id,\n \"online_at\" => $online_at,\n\n ]);\n }", "public function testSetGetName()\n {\n $name = 'Name';\n $event = (new Event())->setName($name);\n $this->assertEquals($name, $event->getName());\n }", "function add($name, $time);", "function registerFieldType($name, $type);", "public function register_enum_type(string $type_name, array $config)\n {\n }", "public function testGetName() {\r\n $action = $this->_action->setName('name');\r\n $this->assertEquals('name', $action->getName());\r\n }", "public function testEventIdFromNameCaches()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"eventIdFromNameCache\";\n\t\t$stat_name_id = 600;\n\t\t$now = \"String for date\";\n\t\t$data_rows = new ArrayIterator();\n\t\t$row = new stdClass();\n\t\t$row->stat_name_id = $stat_name_id;\n\t\t$data_rows->append($row);\n\t\t\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"loadAllBy\")\n\t\t\t->will($this->returnValue($data_rows));\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadByKey\")\n\t\t\t->with(array($stat_name_id))\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"name\"))\n\t\t\t->will($this->returnValue(strtolower($event_name)));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->never())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, $application_id));\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, 0));\n\t}", "public function testAppendToItself()\n {\n $model1 = Animal::findOne(1);\n \n $this->expectExceptionMessage('You cannot move node relevant or under itself');\n \n $model1->appendTo($model1);\n }", "public function add_event_attendee($eid, $name, $email, $status = 0, $role = 'opt', $type = 'person', $ref = 'evt')\n {\n if (!$eid) {\n return false; // We NEED the event's ID\n }\n $hash = basics::uuid();\n $query = 'INSERT INTO '.$this->Tbl['cal_attendee'].' SET '\n .'`eid`='.doubleval($eid).',`name`=\"'.$this->esc($name).'\",`ref`=\"'.$this->esc($ref).'\"'\n .',`email`=\"'.$this->esc($email).'\",`role`=\"'.$this->esc($role).'\"'\n .',`type`=\"'.$this->esc($type).'\",`status`=\"'.$this->esc($status).'\"'\n .',`mailhash`=\"'.$this->esc($hash).'\"';\n if ($this->query($query)) {\n $newId = $this->insertid();\n return array($newId, $hash);\n }\n return false;\n }", "public static function format_type_name($type_name)\n {\n }", "public function addBetType(BetTypeInterface $gamble, $type, $order = null)\n {\n if (!isset($this->betTypes[$type])) {\n $this->betTypes[$type] = array();\n }\n\n if (is_int($order)) {\n $this->betTypes[$type][$order] = $gamble;\n } else {\n array_push($this->betTypes[$type], $gamble);\n }\n\n $this->sort();\n }", "private function emitEvent($type, $notification)\n\t{\n\t\t$namespace = \\Config::get('notifications::config.package_prefix') . '.' . $type;\n\t\t\\Event::fire($namespace, array($notification));\n\t}", "public function assert_type_of($value, $expectation)\n\t{\n\t\tTests::$results['assertions']++;\n\n\t\t$type_aliasses = array('bool' => 'boolean', 'int' => 'integer', 'float' => 'double');\n\t\tarray_key_exists($expectation, $type_aliasses) and $expectation = $type_aliasses[$expectation];\n\n\t\tif (gettype($value) == $expectation)\n\t\t{\n\t\t\t$this->pass();\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->fail('assert_type_of - Value is not of type \"'.$expectation.'\", but instead \"'.gettype($value).'\".');\n\t\t}\n\t}", "public function add($name, $lambda) {\n $this->builders[$name] = $lambda;\n }", "public function store(AuditTypeRequest $request)\n\t{\n\t\t$auditType = new AuditType;\n $auditType->name = $request->name;\n $auditType->description = $request->description;\n $auditType->user_id = Auth::user()->id;\n\t}", "public function testAttributeElementWithParentThrowsExceptionWhenAttributeNamingElementAddAttributeElement(\n AttributeNamingElementInterface $parent1,\n AttributeNamingElementInterface $parent2\n ): void\n {\n $parent1->addAttributeElement($this->sut);\n \n $this->expectInvalidOperationExceptionChildOfAnotherElement($this->sut, $parent2);\n $parent2->addAttributeElement($this->sut);\n }" ]
[ "0.58497936", "0.56592774", "0.5304141", "0.5232896", "0.5232141", "0.51288253", "0.50996804", "0.5034165", "0.50220287", "0.50078934", "0.49280572", "0.4907559", "0.48835903", "0.4822766", "0.4819612", "0.48186973", "0.47925633", "0.4779981", "0.47739813", "0.47161117", "0.47089636", "0.46796393", "0.46769732", "0.4650422", "0.4645475", "0.46335363", "0.46332058", "0.46305656", "0.46217376", "0.46181577", "0.45850205", "0.4573953", "0.4554603", "0.45429388", "0.45081013", "0.45071435", "0.44948566", "0.4491711", "0.4475236", "0.44611186", "0.445867", "0.44405067", "0.4436678", "0.44361094", "0.4431644", "0.44316256", "0.44288117", "0.44075358", "0.4399913", "0.43931016", "0.43930614", "0.43850747", "0.43803835", "0.4375455", "0.43741363", "0.43643057", "0.43427366", "0.43354616", "0.433514", "0.43339458", "0.4332219", "0.43321759", "0.43250847", "0.43235168", "0.43187487", "0.43180522", "0.43167037", "0.43101087", "0.43007275", "0.42840067", "0.42831737", "0.42822987", "0.42790267", "0.42746425", "0.42728904", "0.42625353", "0.42562672", "0.42527568", "0.4240926", "0.42405432", "0.42319626", "0.4229234", "0.42289793", "0.42240378", "0.42210686", "0.42179134", "0.42139637", "0.42111897", "0.4209442", "0.42065975", "0.4198578", "0.41972008", "0.4193947", "0.4192428", "0.41867927", "0.4185281", "0.418104", "0.41787565", "0.41717854", "0.41714057" ]
0.5525988
2
Allows defining the expectation for the next event in the list of recorded events.
public function nextOne(): self { return new self($this->scenarioBuilder, $this->stage, $this->composite, $this->expectedIndex + 1); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getNextEvent(){\n\t\t// get the events\n\t\t$events = $this->getEvents();\n\n\t\t// extract the next event that will happen\n\t\t$nextEvent = array_shift($events);\n\t\tfor ($i = 1; $i < sizeof($events); $i++){\n\t\t\t$event = array_shift($events);\n\t\t\tif($events[0]['is_approved'] == 1 && $events[0]['date'] > $nextEvent['date']){\n\t\t\t\t$nextEvent = $event;\n\t\t\t}\n\t\t}\n\n\t\treturn $nextEvent;\n\t}", "public function iterateCurrentEvent()\n {\n $this->currentEvent = $this->currentEvent + 1;\n }", "protected function expectAddEvent()\n {\n $this->eventPublisher->expects($this->once())\n ->method('addEvent')\n ->with(['uuid' => '123']);\n }", "function set_next ($e)\n {\n if (is_string ($e))\n $e = new event ($e);\n if (!is_a ($e, 'event'))\n die_traced ('event::set_next(): Argument is not an event object.');\n $this->next = $e;\n return $e;\n }", "final public function getNextEvent()\n\t\t{\n\n\t\t\treturn $this->getEventByTimeAlgo(\"next_event\");\n\n\t\t}", "public function getNextEvent()\n {\n return isset($this->eventIds[$this->currentEvent]) ? $this->eventIds[$this->currentEvent] : null;\n }", "public function nextEvent() {\n\t\t$events = $this->client->getGroupEvents( [\n\t\t\t'urlname' => $this->group,\n\t\t\t'scroll' => 'next_upcoming',\n\t\t] );\n\n\t\treturn $events[0];\n\t}", "public final function onNextRecord()\n {\n $this->lots = false;\n $this->setRecord($this->getCurrentRecord(), true);\n if ($this->isLoaded()) {\n $this->transactionId = $this->getId() . date('YmdHis');\n $this->addresses = false;\n }\n }", "public function testContainsEventUsesCachedAddEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"containsEventEvent\";\n\t\t$new_event = \"NEW EVENT\";\n\t\t$stat_name_id = 1000;\n\t\t$new_stat_name_id = 1001;\n\t\t$now = \"String for date\";\n\t\t$data_rows = new ArrayIterator();\n\t\t$row = new stdClass();\n\t\t$row->stat_name_id = $stat_name_id;\n\t\t$data_rows->append($row);\n\t\t\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadAllBy\")\n\t\t\t->with($this->equalTo(array(\"application_id\" => $application_id)))\n\t\t\t->will($this->returnValue($data_rows));\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadByKey\")\n\t\t\t->with(array($stat_name_id))\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"__get\")\n\t\t\t->will(\n\t\t\t\t$this->returnValue(strtolower($event_name)),\n\t\t\t\t$this->returnValue($stat_name_id),\n\t\t\t\t$this->returnValue($new_stat_name_id));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->exactly(2))\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, $application_id));\n\t\t$this->assertFalse(\n\t\t\t$event_history->containsEvent($new_event, $application_id));\n\t\t$event_history->addEvent($new_event, $application_id);\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($new_event, $application_id));\n\t}", "public function testAttendeeSetStatusRecurExceptionAllFollowing()\n {\n $from = new Tinebase_DateTime('2012-02-01 00:00:00');\r\n $until = new Tinebase_DateTime('2012-02-29 23:59:59');\r\n \r\n $event = new Calendar_Model_Event(array(\r\n 'summary' => 'Some Daily Event',\r\n 'dtstart' => '2012-02-03 09:00:00',\r\n 'dtend' => '2012-02-03 10:00:00',\r\n 'rrule' => 'FREQ=DAILY;INTERVAL=1',\r\n 'container_id' => $this->_testCalendar->getId(),\r\n 'attendee' => $this->_getAttendee(),\r\n ));\r\n \r\n $persistentEvent = $this->_controller->create($event);\n \n $exceptions = new Tinebase_Record_RecordSet('Calendar_Model_Event');\r\n $recurSet = Calendar_Model_Rrule::computeRecurrenceSet($persistentEvent, $exceptions, $from, $until);\r\n \n // accept for sclever thisandfuture\n $start = $recurSet[10];\n $sclever = Calendar_Model_Attender::getAttendee($start->attendee, $event->attendee[1]);\r\n $sclever->status = Calendar_Model_Attender::STATUS_ACCEPTED;\r\n $this->_controller->attenderStatusCreateRecurException($start, $sclever, $sclever->status_authkey, TRUE);\r\n \n $events = $this->_controller->search(new Calendar_Model_EventFilter(array(\r\n array('field' => 'container_id', 'operator' => 'equals', 'value' => $this->_testCalendar->getId())\r\n )))->sort('dtstart', 'ASC');\n \n // assert two baseEvents\n $this->assertTrue($events[0]->rrule_until instanceof Tinebase_DateTime, 'rrule_until of first baseEvent is not set');\n $this->assertTrue($events[0]->rrule_until < new Tinebase_DateTime('2012-02-14 09:00:00'), 'rrule_until of first baseEvent is not adopted properly');\n $this->assertEquals(Calendar_Model_Attender::STATUS_NEEDSACTION, Calendar_Model_Attender::getAttendee($events[0]->attendee, $event->attendee[1])->status, 'first baseEvent status must not be touched');\n \n $this->assertEquals($events[1]->dtstart, new Tinebase_DateTime('2012-02-14 09:00:00'), 'start of second baseEvent is wrong');\n $this->assertTrue(empty($events[1]->recurid), 'second baseEvent is not a baseEvent');\n $this->assertEquals($events[1]->rrule, $event->rrule, 'rrule of second baseEvent must be set');\n $this->assertFalse($events[1]->rrule_until instanceof Tinebase_DateTime, 'rrule_until of second baseEvent must not be set');\n $this->assertEquals(Calendar_Model_Attender::STATUS_ACCEPTED, Calendar_Model_Attender::getAttendee($events[1]->attendee, $event->attendee[1])->status, 'second baseEvent status is not touched');\n }", "function eventclass_offeraride()\n\t{\n\t\t$this->events[\"BeforeMoveNextList\"]=true;\n\n\n//\tonscreen events\n\n\t}", "public function followingEvent()\n {\n return Event::where('starts_at', '>=', $this->ends_at)\n ->where('type', '=', Event::MEETUP)\n ->first();\n }", "public function next()\n\t{\n\t\t$this->summands[$this->currentSummand]->next();\n\t\tif (!$this->summands[$this->currentSummand]->valid()) {\n\t\t\tif ($this->currentSummand < 1) {\n\t\t\t\t$this->currentSummand = 1;\n\t\t\t} else {\n\t\t\t\t$this->valid = false;\n\t\t\t}\n\t\t}\n\t\t$this->key++;\n\t}", "public function next()\n {\n next($this->drivers);\n }", "public function testWithEntity()\n {\n $event = ['1', '2', '3'];\n\n $this->mockCallback->expects($this->once())\n ->method('callback')\n ->with($event);\n\n\n $this->listener->withEntity($event);\n }", "public function next(): void\n {\n next($this->array);\n }", "protected abstract function perform_next();", "public function getNextEvents(){\n\t\t// get the events\n\t\t$events = $this->getEvents();\n\n\t\t$nextEvents = [];\n\t\t$eventNumber = sizeof($events);\n\n\t\t// extracts the events which has not happened yet, which date is not passed\n\t\tfor ($i = 0; $i < $eventNumber; $i++){\n\t\t\t$event = array_shift($events);\n\t\t\tif($event['is_approved'] == 1 && $event['date'] > date('Y-m-d')){\n\t\t\t\tarray_push($nextEvents, $event);\n\t\t\t}\n\t\t}\n\n\t\treturn $nextEvents;\n\t}", "public function next()\r\n {\r\n if ($this->index < $this->aggregate->size()) {\r\n $this->index = $this->index+1;\r\n }\r\n }", "public function checkForFollowUp()\n {\n $now = Carbon::now();\n $preceding = $this->previousEvent;\n\n if (is_null($preceding)) {\n return;\n }\n\n // if already followed\n if ($preceding->triggersToFollowUp->isEmpty()) {\n return;\n }\n\n // One event may be triggered multiple times\n // For example: triggerd by birthday --> make sure to follow all these triggers\n foreach($preceding->triggersToFollowUp as $trigger) {\n if ($now->gte($trigger->start_at->copy()->modify($this->getDelayInterval()))) {\n // for follow-up type of auto-event, need to pass a preceding trigger\n // empty $trigger->subscriber indicates ALL\n MailLog::info(sprintf('Trigger sending follow-up email for automation %s, preceding event ID: %s, event ID: %s', $this->automation->name, $preceding->id, $this->id));\n if ($trigger->subscriber()->exists()) {\n // follow up individual subscriber\n $this->fire([$trigger->subscriber], $trigger);\n } else {\n // follow up the entire list (for the FollowUpSend event)\n $this->fire(null, $trigger);\n }\n }\n }\n }", "public function testMultipleSorted()\n\t{\n\t\t$event = new Event(new Priority());\n\n\t\t// A properly formed event\n\t\t$event_def = array(\n\t\t\tarray(\n\t\t\t\t'testing1',\n\t\t\t\tarray(\n\t\t\t\t\t'class_name1',\n\t\t\t\t\t'method_name1'\n\t\t\t\t),\n\t\t\t\tarray(),\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'testing2',\n\t\t\t\tarray(\n\t\t\t\t\t'class_name2',\n\t\t\t\t\t'method_name2'\n\t\t\t\t),\n\t\t\t\tarray(),\n\t\t\t),\n\t\t);\n\n\t\t$event->add($event_def[0], 10);\n\t\t$event->add($event_def[1], 0);\n\n\t\t// Of course, now we have events.\n\t\t$this->assertTrue($event->hasEvents());\n\n\t\t$added = $event->getEvents();\n\t\t// two of them actually\n\t\t$this->assertTrue(count($added) === 2);\n\t\t// And should be similar to the original one... inverted\n\t\t$this->assertSame($added, array($event_def[1], $event_def[0]));\n\t}", "public function testCreateRecurExceptionAllFollowingPreserveAttendeeStatus()\n {\n $from = new Tinebase_DateTime('2012-02-01 00:00:00');\n $until = new Tinebase_DateTime('2012-02-29 23:59:59');\n \n $event = new Calendar_Model_Event(array(\n 'summary' => 'Some Daily Event',\n 'dtstart' => '2012-02-03 09:00:00',\n 'dtend' => '2012-02-03 10:00:00',\n 'rrule' => 'FREQ=DAILY;INTERVAL=1',\n 'container_id' => $this->_testCalendar->getId(),\n 'attendee' => $this->_getAttendee(),\n ));\n \n $persistentEvent = $this->_controller->create($event);\n $persistentSClever = Calendar_Model_Attender::getAttendee($persistentEvent->attendee, $event->attendee[1]);\n \n // accept series for sclever\n $persistentSClever->status = Calendar_Model_Attender::STATUS_ACCEPTED;\n $this->_controller->attenderStatusUpdate($persistentEvent, $persistentSClever, $persistentSClever->status_authkey);\n \n // update \"allfollowing\" w.o. scheduling change\n $persistentEvent = $this->_controller->get($persistentEvent->getId());\n $exceptions = new Tinebase_Record_RecordSet('Calendar_Model_Event');\n $recurSet = Calendar_Model_Rrule::computeRecurrenceSet($persistentEvent, $exceptions, $from, $until);\n \n $recurSet[5]->description = 'From now on, everything will be better'; //2012-02-09 \n $updatedPersistentEvent = $this->_controller->createRecurException($recurSet[5], FALSE, TRUE);\n \n $updatedPersistentSClever = Calendar_Model_Attender::getAttendee($updatedPersistentEvent->attendee, $event->attendee[1]);\n $this->assertEquals(Calendar_Model_Attender::STATUS_ACCEPTED, $updatedPersistentSClever->status, 'status must not change');\n }", "public function nextAlarm($nextAlarm = null)\n {\n if(null === $nextAlarm)\n {\n return $this->property('nextAlarm');\n }\n return $this->property('nextAlarm', (int) $nextAlarm);\n }", "public function next()\n {\n next($this->array);\n }", "public function nextEvents() {\n\t\t$events = $this->client->getGroupEvents( [\n\t\t\t'urlname' => $this->group,\n\t\t\t'scroll' => 'next_upcoming',\n\t\t] );\n\n\t\treturn $events->getData();\n\t}", "private function processSequence($listener,$e) {\n $valid = $this->findSequence($listener[0], array_slice($this->event_names,$this->sequence_start));\n\n if(!empty($valid) && $this->isWithin()) {\n $this->sequence_start = $valid[0][count($valid[0])-1]+1;\n $this->emit($listener[1],$e);\n }\n }", "public function getRecordingStartedEvent();", "public function next(): void\n {\n $this->_index++;\n }", "public function next(): void\n {\n next($this->payload);\n }", "public function testNextCounter()\n {\n $next = $this->nextCounter();\n $this->assertInstanceOf(InvokedAtIndex::class, $next);\n }", "public function testWhen()\n {\n $feed = $this->eventFeed;\n\n // Assert one of the entry's values\n $entry = $feed[2];\n $when = $entry->getWhen();\n $this->assertEquals($entry->getWhen(), $entry->when);\n $this->assertEquals(1, count($when));\n $this->assertTrue($when[0] instanceof Zend_Gdata_Extension_When);\n $this->verifyProperty($when[0], \"startTime\", \"2007-05-24\");\n $this->verifyProperty($when[0], \"endTime\", \"2007-05-25\");\n\n // Verify that the reminders show up\n $reminders = $when[0]->getReminders();\n $this->assertEquals(2, count($reminders));\n $this->assertTrue($reminders[0] instanceof Zend_Gdata_Extension_Reminder);\n $this->assertTrue($reminders[1] instanceof Zend_Gdata_Extension_Reminder);\n $this->verifyProperty($reminders[0], \"minutes\", \"10\");\n $this->verifyProperty($reminders[0], \"method\", \"alert\");\n $this->verifyProperty($reminders[1], \"minutes\", \"10\");\n $this->verifyProperty($reminders[1], \"method\", \"email\");\n }", "public function testContainsEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"containsEventEvent\";\n\t\t$stat_name_id = 300;\n\t\t$now = \"String for date\";\n\t\t$data_rows = new ArrayIterator();\n\t\t$row = new stdClass();\n\t\t$row->stat_name_id = $stat_name_id;\n\t\t$data_rows->append($row);\n\t\t\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadAllBy\")\n\t\t\t->with($this->equalTo(array(\"application_id\" => $application_id)))\n\t\t\t->will($this->returnValue($data_rows));\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadByKey\")\n\t\t\t->with(array($stat_name_id))\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"name\"))\n\t\t\t->will($this->returnValue(strtolower($event_name)));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->never())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\n\t\t$this->assertTrue(\n\t\t\t$event_history->containsEvent($event_name, $application_id));\n\t\t$this->assertFalse(\n\t\t\t$event_history->containsEvent(\"UNKNOWN_EVENT\", $application_id));\n\t}", "public function testFireEventWithInternalFiredEvent()\n {\n $eventManager = new EventManager;\n $event = 'foor.bar';\n $eventManager->listen(EventManager::FIRED, function ($newEvent) use ($event) {\n $this->assertEquals($newEvent, $event);\n });\n $eventManager->fire($event);\n }", "public function next(): void\n {\n if ($this->index < count($this->objectListKeys)) {\n $this->index++;\n }\n }", "function testSecondEventObserver($data) {\n return $data;\n}", "public function next()\n {\n echo __METHOD__,PHP_EOL;\n next($this->a);\n }", "public function testNext()\n {\n $this->collection->next();\n $this->assertEquals(1, $this->collection->key());\n $this->assertEquals(2, $this->collection->current());\n\n $this->collection->last();\n $this->collection->next();\n $this->assertNull($this->collection->key());\n $this->assertFalse($this->collection->current());\n }", "public function next() {\n $current = current($this->futures);\n\n if ($current && $current instanceof Future && !$current->isResolved()) {\n throw new \\LogicException(sprintf(\n 'Cannot advance FutureStream at index %d; Future value still pending',\n $this->position\n ));\n } else {\n array_shift($this->futures);\n }\n\n $this->position++;\n }", "public function testOne()\n {\n $this->queue->add('first item');\n\n $this->assertEquals('first item', $this->queue->next());\n $this->assertNull($this->queue->next());\n }", "public function next()\n {\n next($this->entities);\n }", "public function next()\n {\n next($this->values);\n }", "function next_event() {\n include(\"connection.php\");\n try {\n $next_result = $db->query(\n \"SELECT date_time, event, description\n FROM events\n WHERE date_time >= CURDATE()\n ORDER BY date_time ASC\n LIMIT 1\"\n );\n } catch (Exception $e) {\n echo \"Unable to retrieve results\";\n exit;\n }\n\n $next = $next_result->fetchALL();\n return $next;\n}", "function next()\n\t{\n\t\t$this->done = true;\n\t}", "public function incAssertions()\n {\n $this->assertions += 1;\n }", "public function groupDetailsWithNextEvent()\n {\n $group = $this->groupDetails();\n\n return Cache::remember('meetup.group_with_next_event', static::CACHE_MINUTES, function () use ($group) {\n if ($group->get('next_event')) {\n $id = (int) $group->get('next_event')['id'];\n\n $group->put('next_event', $this->getEventDetails($id, ['omit' => 'group']));\n }\n\n return $group;\n });\n }", "public function setNext($next) {}", "public function next()\n {\n $method = $this->getMethodForNext();\n call_user_func([$this->result, $method]);\n }", "public function next(): void\n {\n next($this->data);\n }", "public function getNextEvent()\n\t{\n\t\tif (!$this->_nextEvent || !$this->_nextEvent instanceof App_Model_Event || !$this->_nextEvent->getEventId()) {\n\t\t\t$this->_nextEvent = App_Model_Event_Mapper::getInstance()->getNextEventForAction($this->_actionId);\n\t\t}\n\n\t\treturn $this->_nextEvent;\n\t}", "public function next()\r\n\t{\r\n\t}", "public function next(): void {\n next($this->items);\n }", "function eventclass_payments()\n\t{\n\t\t$this->events[\"BeforeMoveNextList\"]=true;\n\n\t\t$this->events[\"AfterAdd\"]=true;\n\n\t\t$this->events[\"AfterEdit\"]=true;\n\n\n//\tonscreen events\n\n\t}", "public function offerFirst($e);", "public function testDuplicateEventNameException()\n {\n $this->setExpectedException('Txiki\\Events\\EventException', 'Duplicate event name', 0);\n\n $this->event->on('event-name', function () {return true;});\n $this->event->on('event-name', function () {return true;});\n }", "public function testOnConsecutiveCallsStub()\n {\n $stub = $this->getMockBuilder('Company\\Product\\SomeClass')\n ->getMock();\n\n // Configure the stub.\n $stub->method('doSomething')\n ->will($this->onConsecutiveCalls(2, 3, 5, 7));\n\n // $stub->doSomething() returns a different value each time\n $this->assertEquals(2, $stub->doSomething());\n $this->assertEquals(3, $stub->doSomething());\n $this->assertEquals(5, $stub->doSomething());\n }", "public function next()\n {\n next($this->rules);\n }", "public function next()\n {\n $current = $this->current();\n\n if ($current) {\n $this->current = $current->getAfter();\n }\n }", "public function next()\n {\n $this->curIndex++;\n if($this->curIndex >= count($this->res)){\n $this->MakeNextReq();\n }\n }", "public function next()\n {\n $this->index++;\n }", "public function test_get_next() {\n //TEST CASE: $serviceID == 0\n //caso con code di lunghezza diversa => prende dalla coda più lunga il biglietto con numero più basso\n\n $ticket_info1 = get_next(0);\n $this->assertEquals(0,$ticket_info1['ticketN'], \"TestQueue: test_get_next not performed correctly or not performed\");\n $this->assertEquals(1,$ticket_info1['serviceID'], \"TestQueue: test_get_next not performed correctly or not performed\");\n //caso con code di lunghezza uguale => prende il timestamp minore\n\n perform_INSERT_or_DELETE(\"INSERT INTO Queue(ServiceID, TicketNumber) VALUES(2, 1)\");\n perform_INSERT_or_DELETE(\"INSERT INTO Queue(ServiceID, TicketNumber) VALUES(2, 2)\");\n perform_INSERT_or_DELETE(\"INSERT INTO Queue(ServiceID, TicketNumber) VALUES(1, 1)\");\n\n /*\n * The actual configuration in Queue table is:\n *\n * ----------------------------------------------------------\n * |ID |ServiceID |TicketNUmber |Timestamp |\n * ----------------------------------------------------------\n * |2 |2 |0 |2019-10-19 12:18:17 |\n * |61 |1 |0 |2019-10-19 16:31:49 |\n * |62 |1 |1 |2019-10-19 20:03:25 |\n * |? |**2** |**1** |? |<<<\n * |? |**2** |**2** |? |<<<\n * |? |**1** |**1** |? |<<< the element with the latest timestamp\n * ----------------------------------------------------------\n */\n\n $ticket_info2 = get_next(0);\n $this->assertTrue($ticket_info2['ticketN'] == 0, \"TestQueue: test_get_next not performed correctly or not performed\");\n $this->assertTrue($ticket_info2['serviceID'] == 2, \"TestQueue: test_get_next not performed correctly or not performed\");\n\n //TEST CASE: $serviceID != -1 AND $serviceID != 0 => ritorna il biglietto con numero minore\n $ticket_info3 = get_next(1);\n\n $this->assertTrue($ticket_info3['ticketN'] == 0, \"TestQueue: test_get_next not performed correctly or not performed\");\n $this->assertTrue($ticket_info3['serviceID'] == 1, \"TestQueue: test_get_next not performed correctly or not performed\");\n\n $ticket_info4 = get_next(2);\n $this->assertTrue($ticket_info4['ticketN'] == 0, \"TestQueue: test_get_next not performed correctly or not performed\");\n $this->assertTrue($ticket_info4['serviceID'] == 2, \"TestQueue: test_get_next not performed correctly or not performed\");\n $conn = TestsConnectMySQL();\n $sql = \"Select * from queue;\";\n $res = $conn->query($sql);\n while( $row = $res->fetch_row()){\n echo\"$row[0] $row[1] $row[2] $row[3] \\n\";\n }\n $res->close();\n perform_INSERT_or_DELETE(\"DELETE FROM queue where ID >62;\");\n }", "public function next()\n {\n next($this->requests);\n }", "public function next() {\n next($this->rules);\n }", "private function next()\n {\n $this->m++;\n $this->init();\n }", "public function testGetValidEventByEventName (): void {\n // count the number of rows and save it for later\n $numRows = $this->getConnection()->getRowCount(\"event\");\n // create a new Event and insert it into mySQL\n $eventId = generateUuidV4();\n\t\t $event = new Event ($eventId, $this->profile->getProfileId(), $this->VALID_EVENTATTENDEELIMIT,$this->VALID_EVENTDETAIL, $this->VALID_EVENTENDDATETIME,$this->VALID_EVENTIMAGE, $this->VALID_EVENTLAT, $this->VALID_EVENTLONG, $this->VALID_EVENTNAME, $this->VALID_EVENTPRICE, $this->VALID_EVENTSTARTDATETIME);\n $event->insert($this->getPDO());\n // grab the data from mySQL and enforce the fields match our expectations\n $results = Event::getEventByEventName($this->getPDO(), $event->getEventName());\n $this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"event\"));\n $this->assertCount(1, $results);\n\n // enforce no other objects are bleeding into the test\n $this->assertContainsOnlyInstancesOf(\"Edu\\\\Cnm\\\\CrowdVibe\\\\Event\", $results);\n\n\n // grab the result from the array and validate it\n $pdoEvent = $results[0];\n $this->assertEquals($pdoEvent->getEventId(), $eventId);\n $this->assertEquals($pdoEvent->getEventProfileId(), $this->profile->getProfileId());\n $this->assertEquals($pdoEvent->getEventDetail(), $this->VALID_EVENTDETAIL);\n //format the date too seconds since the beginning of time to avoid round off error\n $this->assertEquals($pdoEvent->getEventStartDateTime(), $this->VALID_EVENTSTARTDATETIME);\n }", "public function getNextExecution() {}", "public function until($event, $payload = []);", "protected function getTestEvent($isOneEmployeeAllowed = true)\n {\n $employees = new ArrayCollection();\n\n for ($i = 0; $i < 3; $i++) {\n $empUser = new User();\n $empUser->setId('1234-' . $i);\n $perm = new EmployeePermissions(EmployeePermissionsInterface::JOBS_VIEW);\n if (2 == $i && $isOneEmployeeAllowed) {\n $perm->grant(EmployeePermissionsInterface::JOBS_CREATE);\n }\n $emp = new Employee($empUser, $perm);\n\n $employees->add($emp);\n }\n\n $org = $this->getMockBuilder('\\Organizations\\Entity\\OrganizationReference')\n ->disableOriginalConstructor()\n ->getMock();\n\n $org->expects($this->once())\n ->method('hasAssociation')\n ->willReturn(true);\n\n $org->expects($this->once())\n ->method('isOwner')\n ->willReturn(false);\n\n $org->expects($this->once())\n ->method('getEmployees')\n ->willReturn($employees);\n\n $role = new User();\n $role->setId('1234-2');\n $role->setOrganization($org);\n\n $e = new AssertionEvent();\n $e->setRole($role);\n\n return $e;\n }", "public function calculateNextValue() {}", "public function addFirst($e);", "public function testAddEvent()\n\t{\n\t\t$application_id = 1;\n\t\t$event_name = \"addEventEvent\";\n\t\t$stat_name_id = 100;\n\t\t$now = \"String for date\";\n\t\t$history_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$history_model\n\t\t\t->expects($this->exactly(4))\n\t\t\t->method(\"__set\");\n\t\t$history_model\n\t\t\t->expects($this->never())\n\t\t\t->method(\"loadBy\");\n\t\t$history_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"save\");\n\t\t\t\t\n\t\t\n\t\t$name_model = $this->getMock(\n\t\t\t\t\"DB_Models_WritableModel_1\", array(), array(), \"\", FALSE);\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"loadBy\")\n\t\t\t->will($this->returnValue(TRUE));\n\t\t$name_model\n\t\t\t->expects($this->once())\n\t\t\t->method(\"__get\")\n\t\t\t->with($this->equalTo(\"stat_name_id\"))\n\t\t\t->will($this->returnValue($stat_name_id));\n\t\t\n\t\t$event_history = $this->getMock(\n\t\t\t\"VendorAPI_StatPro_Unique_ApplicationEventHistory\",\n\t\t\tarray(\"getNowString\", \"getEventHistoryModel\", \"getEventNameModel\"),\n\t\t\tarray(),\n\t\t\t\"\",\n\t\t\tFALSE);\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getNowString\")\n\t\t\t->will($this->returnValue($now));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventHistoryModel\")\n\t\t\t->will($this->returnValue($history_model));\n\t\t$event_history\n\t\t\t->expects($this->once())\n\t\t\t->method(\"getEventNameModel\")\n\t\t\t->will($this->returnValue($name_model));\n\t\t\n\t\t$event_history->addEvent($event_name, $application_id);\n\t}", "function MoveNext() {}", "public function next() {\n next($this->data);\n }", "public function next() {\n next($this->data);\n }", "public function next () {\n next($this->__fields);\n }", "public function next()\n {\n return next($this->steps);\n }", "public function next()\n {\n }", "public function nextAttribute();", "public function next() {}", "public function next() {}", "public function next() {}", "public function next() {}", "public function next() {}", "public function next() {}", "public function next() {}", "public function next() {}", "public function next(){\n $this->index ++;\n }", "public function testMultiple()\n {\n $this->queue->add('first item');\n $this->queue->add('second item');\n $this->queue->add('third item');\n\n $this->assertEquals('first item', $this->queue->next());\n $this->assertEquals('second item', $this->queue->next());\n $this->assertEquals('third item', $this->queue->next());\n $this->assertNull($this->queue->next());\n }", "public function next(): void;", "public function next(): void;", "public function addNext($next) {}", "public function testAddRelatedWatches() {\n\t\t$editor = self::$users['sysop']->getUser()->getName();\n\t\t$talkPage = self::$users['uploader']->getUser()->getName();\n\t\t// A set of messages which will be inserted\n\t\t$messages = [\n\t\t\t'Moar Cowbell',\n\t\t\t\"I can haz test\\n\\nplz?\", // checks that the parser allows multi-line comments\n\t\t\t'blah blah',\n\t\t\t\"another\"\n\t\t];\n\n\t\t$messageCount = 1;\n\t\t$this->assertCount( 1, $this->fetchAllEvents() );\n\t\t// Start a talkpage\n\t\t$content = \"== Section 8 ==\\n\\n\" . $this->signedMessage( $editor, $messages[$messageCount] );\n\t\t$this->editPage( $talkPage, $content, '', NS_USER_TALK );\n\n\t\t// Ensure the proper event was created\n\t\t$events = $this->fetchAllEvents();\n\t\t$this->assertCount( 1 + $messageCount, $events, 'After initial edit a single event must exist.' ); // +1 is due to 0 index\n\t\t$row = array_shift( $events );\n\t\t$this->assertEquals( 'thank-you-edit', $row->event_type );\n\n\t\t// Add another message to the talk page\n\t\t$messageCount++;\n\t\t$content .= $this->signedMessage( $editor, $messages[$messageCount] );\n\t\t$this->editPage( $talkPage, $content, '', NS_USER_TALK );\n\n\t\t// Ensure another event was created\n\t\t$events = $this->fetchAllEvents();\n\t\t$this->assertCount( 1 + $messageCount, $events );\n\t\t$row = array_shift( $events );\n\t\t$this->assertEquals( 'thank-you-edit', $row->event_type );\n\n\t\t// Add a new section and a message within it\n\t\t$messageCount++;\n\t\t$content .= \"\\n\\n== EE ==\\n\\n\" . $this->signedMessage( $editor, $messages[$messageCount] );\n\t\t$this->editPage( $talkPage, $content, '', NS_USER_TALK );\n\n\t\t// Ensure this event has the new section title\n\t\t$events = $this->fetchAllEvents();\n\t\t$this->assertCount( 1 + $messageCount, $events );\n\t\t$row = array_pop( $events );\n\t\t$this->assertEquals( 'edit-user-talk', $row->event_type );\n\t}", "public function next()\n {\n do {\n $this->iterated->attach($this->current());\n parent::next();\n } while ($this->valid() && (!$this->passes($this->current()) || $this->iterated->contains($this->current())));\n }", "public function next()\n {\n next($this->data);\n }", "public function next()\n {\n next($this->data);\n }", "public function next()\n {\n next($this->data);\n }", "public function next() : void\n {\n $this->currentRecordPos++;\n if ($this->currentRecordPos > $this->maxPageRecord) {\n $this->page($this->currentPagePos+1);\n }\n }", "public function after(TestEvent $e): void\n {\n $name = $this->getTestName($e);\n\n if (empty($this->timeList[$name])) {\n $this->timeList[$name] = 0;\n }\n $this->timeList[$name] += $e->getTime();\n }", "final public function next(): void\n {\n $this->sort();\n\n next($this->index);\n }", "public function expectNext($type)\n {\n\n $token = next($this->tokens);\n\n if (!$token || $type != $token[0]) {\n $this->unexpectedToken($token, $type);\n }\n\n return $token;\n\n }", "public function testRecordingListPage(): void\n {\n $recordingListPage = self::$recordingListPage;\n\n $this->assertInstanceOf(RecordingListPage::class, $recordingListPage);\n $this->assertSame(25, count($recordingListPage));\n\n $recording = $recordingListPage[0];\n\n $this->assertInstanceOf(Recording::class, $recording);\n }" ]
[ "0.56323755", "0.56149757", "0.56049156", "0.5543916", "0.54030204", "0.5279862", "0.526749", "0.52245206", "0.52059865", "0.5180167", "0.51744723", "0.5109982", "0.5020041", "0.5019062", "0.5002295", "0.4992632", "0.49894154", "0.49853057", "0.4976377", "0.4966884", "0.48840082", "0.48436618", "0.4830596", "0.48210353", "0.4811377", "0.48113742", "0.48052272", "0.4802658", "0.4800976", "0.47993508", "0.47979432", "0.47960794", "0.47891873", "0.47750348", "0.4773677", "0.47727585", "0.47545552", "0.47528028", "0.4721229", "0.47111285", "0.47046828", "0.46903673", "0.467579", "0.4668619", "0.46648464", "0.4664752", "0.46624655", "0.46566743", "0.46528876", "0.46486646", "0.46454325", "0.46417913", "0.46393657", "0.4631765", "0.46281767", "0.46265587", "0.46238884", "0.46211845", "0.4620194", "0.46166784", "0.46101904", "0.46069095", "0.45907488", "0.45861253", "0.45842382", "0.4582984", "0.45775282", "0.45644337", "0.45638072", "0.45532382", "0.45524502", "0.4550439", "0.4550439", "0.45502844", "0.45467624", "0.45464447", "0.45426494", "0.4542632", "0.4542632", "0.4542632", "0.4542632", "0.4542632", "0.4542632", "0.4542632", "0.4542632", "0.4535957", "0.45346072", "0.4533612", "0.4533612", "0.4530195", "0.4530088", "0.4528935", "0.4523252", "0.4523252", "0.4523252", "0.4516018", "0.45026836", "0.4499479", "0.44923654", "0.4475312" ]
0.4880604
21
Expects that the event at this stage is the same as another one.
public function sameAs(DomainEventInterface $event): self { return $this->expect(new EventAtIndexIsSameAsExpectation($this->expectedIndex, $event)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testDuplicateEventNameException()\n {\n $this->setExpectedException('Txiki\\Events\\EventException', 'Duplicate event name', 0);\n\n $this->event->on('event-name', function () {return true;});\n $this->event->on('event-name', function () {return true;});\n }", "public function areEventPointsEqual($a, $b)\n {\n return ($a['total']['points'] == $b['total']['points'])\n && ($a['eventPosition'] == $b['eventPosition']);\n }", "public function testTransitionEventTwoTransitions() {\n $entity = EntityTestWithBundle::create([\n 'type' => 'third',\n 'name' => 'Test entity',\n 'field_state' => 'new',\n ]);\n $entity->save();\n\n // Test that applying the second transition also throws the second transition's event.\n $entity->get('field_state')->first()->applyTransitionById('complete2');\n $entity->save();\n\n $messages = \\Drupal::messenger()->all();\n $message = reset($messages);\n $this->assertCount(4, $message);\n $this->assertEquals('Test entity (field_state) - Completed at group pre-transition (workflow: two_transitions, transition: complete2).', (string) $message[0]);\n $this->assertEquals('Test entity (field_state) - Completed at generic pre-transition (workflow: two_transitions, transition: complete2).', (string) $message[1]);\n $this->assertEquals('Test entity (field_state) - Completed at group post-transition (workflow: two_transitions, transition: complete2).', (string) $message[2]);\n $this->assertEquals('Test entity (field_state) - Completed at generic post-transition (workflow: two_transitions, transition: complete2).', (string) $message[3]);\n }", "public function testCreateConflictBetweenRecurAndExistEvent()\n {\n Tinebase_Core::getLogger()->debug(__METHOD__ . ' (' . __LINE__ . ') handle event of type ');\n $event = $this->_getEvent();\n $event->dtstart = '2010-05-20 06:00:00';\n $event->dtend = '2010-05-20 06:15:00';\n $event->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n $this->_controller->create($event);\n\n $event1 = $this->_getRecurEvent();\n $event1->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n \n $this->setExpectedException('Calendar_Exception_AttendeeBusy');\n $this->_controller->create($event1, TRUE);\n }", "public function testOnSubmit()\n {\n $firstEvent = new CalendarEvent();\n $firstEvent->setTitle('1');\n $secondEvent = new CalendarEvent();\n $secondEvent->setTitle('2');\n $eventWithoutRelatedAttendee = new CalendarEvent();\n $eventWithoutRelatedAttendee->setTitle('3');\n\n $parentEvent = new CalendarEvent();\n $parentEvent->setTitle('parent title')\n ->setRelatedAttendee(new Attendee())\n ->setDescription('parent description')\n ->setStart(new \\DateTime('now'))\n ->setEnd(new \\DateTime('now'))\n ->setAllDay(true);\n $parentEvent->addChildEvent($firstEvent)\n ->addChildEvent($secondEvent)\n ->addChildEvent($eventWithoutRelatedAttendee);\n\n $firstEvent->setRelatedAttendee(\n (new Attendee())\n ->setEmail('[email protected]')\n );\n $secondEvent->setRelatedAttendee(\n (new Attendee())\n ->setEmail('[email protected]')\n );\n\n $form = $this->getMock('Symfony\\Component\\Form\\FormInterface');\n $form->expects($this->any())\n ->method('getData')\n ->will($this->returnValue($parentEvent));\n\n // assert default data with default status\n $this->childEventsSubscriber->postSubmit(new FormEvent($form, []));\n\n $this->assertEquals(CalendarEvent::STATUS_ACCEPTED, $parentEvent->getInvitationStatus());\n $this->assertEquals(CalendarEvent::STATUS_NONE, $firstEvent->getInvitationStatus());\n $this->assertEquals(CalendarEvent::STATUS_NONE, $secondEvent->getInvitationStatus());\n $this->assertEquals(null, $eventWithoutRelatedAttendee->getInvitationStatus());\n $this->assertEventDataEquals($parentEvent, $firstEvent);\n $this->assertEventDataEquals($parentEvent, $secondEvent);\n $this->assertEventDataEquals($parentEvent, $eventWithoutRelatedAttendee);\n\n // modify data\n $parentEvent->setTitle('modified title')\n ->setDescription('modified description')\n ->setStart(new \\DateTime('tomorrow'))\n ->setEnd(new \\DateTime('tomorrow'))\n ->setAllDay(false);\n\n $parentEvent->getRelatedAttendee()->setStatus(\n new TestEnumValue(CalendarEvent::STATUS_ACCEPTED, CalendarEvent::STATUS_ACCEPTED)\n );\n $firstEvent->getRelatedAttendee()->setStatus(\n new TestEnumValue(CalendarEvent::STATUS_DECLINED, CalendarEvent::STATUS_DECLINED)\n );\n $secondEvent->getRelatedAttendee()->setStatus(\n new TestEnumValue(CalendarEvent::STATUS_TENTATIVE, CalendarEvent::STATUS_TENTATIVE)\n );\n\n // assert modified data\n $this->childEventsSubscriber->postSubmit(new FormEvent($form, []));\n\n $this->assertEquals(CalendarEvent::STATUS_ACCEPTED, $parentEvent->getInvitationStatus());\n $this->assertEquals(CalendarEvent::STATUS_DECLINED, $firstEvent->getInvitationStatus());\n $this->assertEquals(CalendarEvent::STATUS_TENTATIVE, $secondEvent->getInvitationStatus());\n $this->assertEquals(null, $eventWithoutRelatedAttendee->getInvitationStatus());\n $this->assertEventDataEquals($parentEvent, $firstEvent);\n $this->assertEventDataEquals($parentEvent, $secondEvent);\n $this->assertEventDataEquals($parentEvent, $eventWithoutRelatedAttendee);\n }", "public static function isConflict(Event $event1, Event $event2) {\n /*\n 2 points\n Determine if there are overlaps between\n the two events, the two events can be in any\n order.\n return true is conflict, else return false\n */\n \n\n }", "protected function expectAddEvent()\n {\n $this->eventPublisher->expects($this->once())\n ->method('addEvent')\n ->with(['uuid' => '123']);\n }", "public function testInvalidEventHandling() {\n\t\t$session = $this->getSession();\n\t\t$session->handleEvent(new Event(Event::TYPE_APPLICATION_BEFORE_CONTROLLER_RUN));\n\t\t$session['test'] = 'testValue';\n\t\t$session->handleEvent(new Event(Event::TYPE_APPLICATION_BEFORE_CONTROLLER_RUN));\n\t\t$this->assertSame('testValue', $session['test'], 'Loading the session twice overwrites data');\n\t}", "public function testCreateConflictBetweenRecurAndExistEvent()\n {\n $event = $this->_getEvent();\n $event->dtstart = '2010-05-20 06:00:00';\n $event->dtend = '2010-05-20 06:15:00';\n $event->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n $this->_controller->create($event);\n\n $event1 = $this->_getRecurEvent();\n $event1->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n \n $this->setExpectedException('Calendar_Exception_AttendeeBusy');\n $this->_controller->create($event1, TRUE);\n }", "public function testInstanceOf()\n {\n $this->assertInstanceOf('Symfony\\Component\\EventDispatcher\\Event', $this->event);\n }", "public function matchEvent(Mage_Index_Model_Event $event)\n {\n return false;\n }", "function testSecondEventObserver($data) {\n return $data;\n}", "function record_event_equal($old_data,$new_data) {\n\t\tforeach(array_reverse($old_data) as $i => $data) {\n\t\t\tif($data[\"record\"] == $new_data[\"record\"] && $data[\"event\"] == $new_data[\"event\"]) {\n\t\t\t\tif($data[\"field_name\"] == $new_data[\"field_name\"] && $data[\"value\"] == $new_data[\"value\"]) {return true;}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}", "protected function merge(\\ical\\Event $event) {\n $overwrite = $event->sequence > $this->sequence;\n $props = array_keys(get_object_vars($event));\n\n foreach ($props as $prop) {\n $this->setProperty($prop, $event->$prop, $overwrite);\n }\n }", "public function testPreSetDataWithExistingNode()\n {\n Phake::when($this->node)->getId()->thenReturn('nodeId');\n Phake::when($this->event)->getData()->thenReturn($this->node);\n\n $this->subscriber->preSetData($this->event);\n\n Phake::verify($this->form, Phake::never())->add(Phake::anyParameters());\n }", "public function testGetInputPlaceOfNewElement()\n {\n $start = new StartEvent();\n\n // Assertion: the input place should be null in a start event\n $this->assertNull($start->getInputPlace());\n // Assertion: the active state is null\n $this->assertNull($start->getActiveState());\n }", "public function testPreSubmitWithOldNode()\n {\n $nodeSourceId = 'root';\n Phake::when($this->node)->getId()->thenReturn($nodeSourceId);\n Phake::when($this->form)->getData()->thenReturn($this->node);\n Phake::when($this->event)->getData()->thenReturn(array('nodeSource' => $nodeSourceId));\n\n $this->subscriber->preSubmit($this->event);\n\n Phake::verify($this->nodeManager, Phake::never())->hydrateNodeFromNodeId(Phake::anyParameters());\n }", "public function shouldntRaiseAnEvent()\n {\n }", "public function preSave($event) {\n\t\t$invoker = $event->getInvoker();\n\n\t\t// One cannot be lender and a borrower at the same time\n\t\tif ($invoker->borrower_id === $invoker->lender_id) {\n\t\t\tthrow new Doctrine_Record_Exception(\"Borrower and lender can't be the same person\", Doctrine_Core::ERR_CONSTRAINT);\n\t\t}\n\n\t\t// We don't care about timestamps as long as user didn't receive a book yet\n\t\tif ($invoker->received_at !== null) {\n\t\t\t$requested_at = new Zend_Date($invoker->requested_at);\n\t\t\t$received_at = new Zend_Date($invoker->received_at);\n\t\t\t// Make sure a date when book is received is later than a date when book was requested\n\t\t\tif ($received_at->isLater($requested_at, Zend_Date::DATES) === false) {\n\t\t\t\tthrow new Doctrine_Record_Exception(\"The date of request is earlier or equal the date of receival\", Doctrine_Core::ERR_CONSTRAINT);\n\t\t\t}\n\t\t}\n\t}", "function compare_events($a, $b) {\n if ($a['section'] != $b['section']) {\n return $a['section'] - $b['section'];\n } else {\n return $a['position'] - $b['position'];\n }\n}", "public function testUpdateValidEvent (): void {\n\t\t//count the number of rows and save it for later\n\t\t$numRows = $this->getConnection()->getRowCount(\"event\");\n\n\t\t// create a new Event and insert into mySQL\n\t\t$eventId = generateUuidV4();\n\t\t$event = new Event ($eventId, $this->profile->getProfileId(), $this->VALID_EVENTATTENDEELIMIT,$this->VALID_EVENTDETAIL, $this->VALID_EVENTENDDATETIME,$this->VALID_EVENTIMAGE, $this->VALID_EVENTLAT, $this->VALID_EVENTLONG, $this->VALID_EVENTNAME, $this->VALID_EVENTPRICE, $this->VALID_EVENTSTARTDATETIME);\n\t\t$event->insert($this->getPDO());\n\n\t\t// edit the event and update it in mySQL\n\t\t$event->setEventDetail($this->VALID_EVENTDETAIL2);\n\t\t$event->update($this->getPDO());\n\n\n\t\t// grab the data from mySQL and enforce the fields meet our expectations\n\t\t$pdoEvent = Event::getEventByEventId($this->getPDO(), $event->getEventId());\n\t\t$this->assertEquals($pdoEvent->getEventId(), $eventId);\n\t\t$this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"event\"));\n\t\t$this->assertEquals($pdoEvent->getEventId(), $eventId);\n\t\t$this->assertEquals($pdoEvent->getEventProfileId(),$this->profile->getProfileId());\n\t\t$this->assertEquals($pdoEvent->getEventAttendeeLimit(), $this->VALID_EVENTATTENDEELIMIT);\n\t\t// format the date too seconds since the beginning of time to avoid round off error\n\t\t$this->assertEquals($pdoEvent->getEventDetail(), $this->VALID_EVENTDETAIL2);\n\t\t$this->assertEquals($pdoEvent->getEventEndDateTime(),$this->VALID_EVENTENDDATETIME);\n\t\t$this->assertEquals($pdoEvent->getEventImage(), $this->VALID_EVENTIMAGE);\n\t\t$this->assertEquals($pdoEvent->getEventLat(), $this->VALID_EVENTLAT);\n\t\t$this->assertEquals($pdoEvent->getEventLong(), $this->VALID_EVENTLONG);\n\t\t$this->assertEquals($pdoEvent->getEventName(), $this->VALID_EVENTNAME);\n\t\t$this->assertEquals($pdoEvent->getEventPrice(), $this->VALID_EVENTPRICE);\n\t\t// format the date too seconds since the beginning of time to avoid round off error\n\t\t$this->assertEquals($pdoEvent->getEventStartDateTime(), $this->VALID_EVENTSTARTDATETIME);\n\t}", "public function testTransitionEvent() {\n $entity = EntityTestWithBundle::create([\n 'type' => 'first',\n 'name' => 'Test entity',\n 'field_state' => 'new',\n ]);\n $entity->save();\n\n $entity->get('field_state')->first()->applyTransitionById('create');\n $entity->save();\n\n $messages = \\Drupal::messenger()->all();\n $message = reset($messages);\n $this->assertCount(6, $message);\n $this->assertEquals('Test entity (field_state) - Fulfillment at pre-transition (workflow: default, transition: create).', (string) $message[0]);\n $this->assertEquals('Test entity (field_state) - Fulfillment at group pre-transition (workflow: default, transition: create).', (string) $message[1]);\n $this->assertEquals('Test entity (field_state) - Fulfillment at generic pre-transition (workflow: default, transition: create).', (string) $message[2]);\n $this->assertEquals('Test entity (field_state) - Fulfillment at post-transition (workflow: default, transition: create).', (string) $message[3]);\n $this->assertEquals('Test entity (field_state) - Fulfillment at group post-transition (workflow: default, transition: create).', (string) $message[4]);\n $this->assertEquals('Test entity (field_state) - Fulfillment at generic post-transition (workflow: default, transition: create).', (string) $message[5]);\n\n \\Drupal::messenger()->deleteAll();\n $entity->get('field_state')->first()->applyTransitionById('fulfill');\n $entity->save();\n\n $messages = \\Drupal::messenger()->all();\n $message = reset($messages);\n $this->assertCount(4, $message);\n $this->assertEquals('Test entity (field_state) - Completed at group pre-transition (workflow: default, transition: fulfill).', (string) $message[0]);\n $this->assertEquals('Test entity (field_state) - Completed at generic pre-transition (workflow: default, transition: fulfill).', (string) $message[1]);\n $this->assertEquals('Test entity (field_state) - Completed at group post-transition (workflow: default, transition: fulfill).', (string) $message[2]);\n $this->assertEquals('Test entity (field_state) - Completed at generic post-transition (workflow: default, transition: fulfill).', (string) $message[3]);\n\n \\Drupal::messenger()->deleteAll();\n $entity = EntityTestWithBundle::create([\n 'type' => 'first',\n 'name' => 'Test entity 2',\n 'field_state' => 'new',\n ]);\n $entity->save();\n $entity->get('field_state')->first()->applyTransitionById('create');\n $entity->save();\n\n $messages = \\Drupal::messenger()->all();\n $message = reset($messages);\n $this->assertCount(6, $message);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at pre-transition (workflow: default, transition: create).', (string) $message[0]);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at group pre-transition (workflow: default, transition: create).', (string) $message[1]);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at generic pre-transition (workflow: default, transition: create).', (string) $message[2]);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at post-transition (workflow: default, transition: create).', (string) $message[3]);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at group post-transition (workflow: default, transition: create).', (string) $message[4]);\n $this->assertEquals('Test entity 2 (field_state) - Fulfillment at generic post-transition (workflow: default, transition: create).', (string) $message[5]);\n\n \\Drupal::messenger()->deleteAll();\n // Ensure manually setting the state to \"create\", triggers the cancel\n // transition and not the 'fulfill' transition previously applied.\n $entity->set('field_state', 'canceled');\n $entity->save();\n $messages = \\Drupal::messenger()->all();\n $message = reset($messages);\n $this->assertCount(4, $message);\n $this->assertEquals('Test entity 2 (field_state) - Canceled at group pre-transition (workflow: default, transition: cancel).', (string) $message[0]);\n $this->assertEquals('Test entity 2 (field_state) - Canceled at generic pre-transition (workflow: default, transition: cancel).', (string) $message[1]);\n $this->assertEquals('Test entity 2 (field_state) - Canceled at group post-transition (workflow: default, transition: cancel).', (string) $message[2]);\n $this->assertEquals('Test entity 2 (field_state) - Canceled at generic post-transition (workflow: default, transition: cancel).', (string) $message[3]);\n }", "public function testInstancesOf()\n {\n $this->assertInstanceOf('Symfony\\Component\\EventDispatcher\\Event', $this->gearmanClientCallbackExceptionEvent);\n }", "public function testActionUseCase2()\n {\n // person and target\n\n // workflow, rule and action\n $workflow = factory(WorkflowEloquent::class)->create([\n 'user_id' => $this->user->getKey(),\n ]);\n $action1 = factory(ActionEloquent::class)->create([\n 'action_type' => ActionEloquent::ACTION_TYPE_UPDATE,\n 'target_class' => 'persons',\n 'target_field' => 'is_primary',\n 'value' => 1,\n ]);\n $workflow->actions()->sync([$action1->getKey()]);\n $rule1 = factory(RuleEloquent::class)->create([\n 'name' => 'is preapprove person',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_BOOLEAN,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'persons.is_pre_approved',\n 'value' => '1',\n 'runnable_once' => true,\n 'run_interval' => 0,\n ]);\n $rule2 = factory(RuleEloquent::class)->create([\n 'name' => 'lead type own',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_NUMBER,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'person_contexts.lead_type_id',\n 'value' => $this->leadTypeId,\n ]);\n\n $action1->rules()->sync([ $rule1->getKey(), $rule2->getKey()]); //\n\n $object = factory(ObjectEloquent::class)->create([\n 'workflow_id' => $workflow->getKey(),\n 'object_class' => 'tags.id',\n 'object_type' => $this->tag->getKey(),\n ]);\n // check tag\n $this->seeInDatabase('taggables',[\n 'user_id' => $this->user->getKey(),\n 'tag_id' => $this->tag->getKey(),\n 'taggable_id' => $this->person->getKey(),\n 'taggable_type' => 'persons',\n ]);\n\n //// first time run ////\n $kernel = $this->app->make(Kernel::class);\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n $this->assertEquals($status, 0);\n //$this->assertEquals(1, preg_match('/^Complete fire actions/m', $output->fetch()));\n\n // check logs\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_SUCCESS,\n 'object_class' => $this->person->getLoggableType(),\n 'object_id' => $this->person->getKey(),\n ]);\n $this->seeInDatabase('action_log_rules',[\n 'rule_id' => $rule1->getKey()\n ]);\n $this->seeInDatabase('action_log_rules',[\n 'rule_id' => $rule2->getKey()\n ]);\n\n //// second run must failed ////\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n //echo $output->fetch();\n $this->assertEquals($status, 0);\n\n // // check logs\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_FAILED,\n 'object_class' => $this->person->getLoggableType(),\n 'object_id' => $this->person->getKey(),\n 'info' => 'Already run once!',\n ]);\n $this->seeInDatabase('action_log_rules',[\n 'rule_id' => $rule1->getKey()\n ]);\n $this->seeInDatabase('action_log_rules',[\n 'rule_id' => $rule2->getKey()\n ]);\n\n //cleanup.\n $this->cleanUpRecords(new PersonObserver, $this->person);\n }", "public function onSave()\n {\n if (! ($this->anonymous_submitter == null xor $this->submitter === null)) {\n throw new \\RuntimeException(\n 'Event entity submitter and anonymous_submitter properties: '\n .' one must be null and the other not-null'\n );\n }\n if (! $this->getSubmitter() && !$this->getAnonymousSubmitter()->getAnonymity()) {\n throw new \\RuntimeException(sprintf(\n 'The request submitter of type \"%s\" cannot be anonymous. This may be a bug in the application\\'s input validation',\n (string)$this->getAnonymousSubmitter()\n ));\n }\n if (! ($this->anonymous_judge === null xor $this->judge === null)) {\n $debug = \"\\nanonymous_judge: \" .(is_null($this->anonymous_judge) ? \"null\" : \"not null\");\n $debug .= \"\\nJudge: \" .(is_null($this->judge) ? \"null\" : \"not null\");\n throw new \\RuntimeException(\n 'Event entity judge and anonymous_judge properties: '\n .' one must be null and the other not-null. ' . $debug\n );\n }\n }", "public function testEventCallBackPatch()\n {\n }", "public function saveEvent()\n {\n $result = $this->_signedResponse($this->vars->targetcalendar);\n\n if (!($kronolith_driver = $this->_getDriver($this->vars->targetcalendar))) {\n return $result;\n }\n\n if ($this->vars->as_new) {\n unset($this->vars->event);\n }\n if (!$this->vars->event) {\n $perms = $GLOBALS['injector']->getInstance('Horde_Core_Perms');\n if ($perms->hasAppPermission('max_events') !== true &&\n $perms->hasAppPermission('max_events') <= Kronolith::countEvents()) {\n Horde::permissionDeniedError(\n 'kronolith',\n 'max_events',\n sprintf(_(\"You are not allowed to create more than %d events.\"), $perms->hasAppPermission('max_events'))\n );\n return $result;\n }\n }\n\n if ($this->vars->event &&\n $this->vars->cal &&\n $this->vars->cal != $this->vars->targetcalendar) {\n if (strpos($kronolith_driver->calendar, '\\\\')) {\n list($target, $user) = explode('\\\\', $kronolith_driver->calendar, 2);\n } else {\n $target = $kronolith_driver->calendar;\n $user = $GLOBALS['registry']->getAuth();\n }\n $kronolith_driver = $this->_getDriver($this->vars->cal);\n // Only delete the event from the source calendar if this user has\n // permissions to do so.\n try {\n $sourceShare = Kronolith::getInternalCalendar($kronolith_driver->calendar);\n $share = Kronolith::getInternalCalendar($target);\n if ($sourceShare->hasPermission($GLOBALS['registry']->getAuth(), Horde_Perms::DELETE) &&\n (($user == $GLOBALS['registry']->getAuth() &&\n $share->hasPermission($GLOBALS['registry']->getAuth(), Horde_Perms::EDIT)) ||\n ($user != $GLOBALS['registry']->getAuth() &&\n $share->hasPermission($GLOBALS['registry']->getAuth(), Kronolith::PERMS_DELEGATE)))) {\n $kronolith_driver->move($this->vars->event, $target);\n $kronolith_driver = $this->_getDriver($this->vars->targetcalendar);\n }\n } catch (Exception $e) {\n $GLOBALS['notification']->push(sprintf(_(\"There was an error moving the event: %s\"), $e->getMessage()), 'horde.error');\n return $result;\n }\n }\n\n if ($this->vars->as_new) {\n $event = $kronolith_driver->getEvent();\n } else {\n try {\n $event = $kronolith_driver->getEvent($this->vars->event);\n } catch (Horde_Exception_NotFound $e) {\n $GLOBALS['notification']->push(_(\"The requested event was not found.\"), 'horde.error');\n return $result;\n } catch (Exception $e) {\n $GLOBALS['notification']->push($e);\n return $result;\n }\n }\n\n if (!$event->hasPermission(Horde_Perms::EDIT)) {\n $GLOBALS['notification']->push(_(\"You do not have permission to edit this event.\"), 'horde.warning');\n return $result;\n }\n\n if ($this->vars->recur_edit && $this->vars->recur_edit != 'all') {\n switch ($this->vars->recur_edit) {\n case 'current':\n $attributes = new stdClass();\n $attributes->rstart = $this->vars->rstart;\n $attributes->rend = $this->vars->rend;\n $this->_addException($event, $attributes);\n\n // Create a copy of the original event so we can read in the new\n // form values for the exception. We also MUST reset the recurrence\n // property even though we won't be using it, since clone() does not\n // do a deep copy. Otherwise, the original event's recurrence will\n // become corrupt.\n $newEvent = clone($event);\n $newEvent->recurrence = new Horde_Date_Recurrence($event->start);\n $newEvent->readForm();\n\n // Create an exception event from the new properties.\n $exception = $this->_copyEvent($event, $newEvent, $attributes);\n $exception->start = $newEvent->start;\n $exception->end = $newEvent->end;\n\n // Save the new exception.\n $attributes->cstart = $this->vars->cstart;\n $attributes->cend = $this->vars->cend;\n $result = $this->_saveEvent(\n $exception,\n $event,\n $attributes);\n break;\n case 'future':\n $instance = new Horde_Date($this->vars->rstart, $event->timezone);\n $exception = clone($instance);\n $exception->mday--;\n if ($event->end->compareDate($exception) > 0) {\n // Same as 'all' since this is the first recurrence.\n $this->vars->recur_edit = 'all';\n return $this->saveEvent();\n } else {\n $event->recurrence->setRecurEnd($exception);\n $newEvent = $kronolith_driver->getEvent();\n $newEvent->readForm();\n $newEvent->uid = null;\n $result = $this->_saveEvent($newEvent, $event, $this->vars, true);\n }\n\n }\n } else {\n try {\n $event->readForm();\n $result = $this->_saveEvent($event);\n } catch (Exception $e) {\n $GLOBALS['notification']->push($e);\n return $result;\n }\n }\n\n if (($result !== true) && $this->vars->sendupdates) {\n $type = $event->status == Kronolith::STATUS_CANCELLED ? Kronolith::ITIP_CANCEL : Kronolith::ITIP_REQUEST;\n Kronolith::sendITipNotifications($event, $GLOBALS['notification'], $type);\n }\n Kronolith::notifyOfResourceRejection($event);\n\n return $result;\n }", "public function testWithEntity()\n {\n $event = ['1', '2', '3'];\n\n $this->mockCallback->expects($this->once())\n ->method('callback')\n ->with($event);\n\n\n $this->listener->withEntity($event);\n }", "public function testUpdateConflictBetweenRecurAndExistEvent()\n {\n $event = $this->_getEvent();\n $event->dtstart = '2010-05-20 06:00:00';\n $event->dtend = '2010-05-20 06:15:00';\n $event->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n $this->_controller->create($event);\n\n $event1 = $this->_getRecurEvent();\n $event1->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n \n $event1 = $this->_controller->create($event1);\n $event1->rrule = \"FREQ=DAILY;INTERVAL=2\";\n \n $this->setExpectedException('Calendar_Exception_AttendeeBusy');\n $this->_controller->update($event1, TRUE);\n }", "public function testUpdateConflictBetweenRecurAndExistEvent()\n {\n $event = $this->_getEvent();\n $event->dtstart = '2010-05-20 06:00:00';\n $event->dtend = '2010-05-20 06:15:00';\n $event->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n $this->_controller->create($event);\n\n $event1 = $this->_getRecurEvent();\n $event1->attendee = new Tinebase_Record_RecordSet('Calendar_Model_Attender', array(\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['sclever']->getId()),\n array('user_type' => Calendar_Model_Attender::USERTYPE_USER, 'user_id' => $this->_personasContacts['pwulf']->getId())\n ));\n \n $event1 = $this->_controller->create($event1);\n $event1->rrule = \"FREQ=DAILY;INTERVAL=2\";\n \n $this->setExpectedException('Calendar_Exception_AttendeeBusy');\n $this->_controller->update($event1, TRUE);\n }", "public function testEvent()\n {\n $dispatcher = new Events();\n $this->app->bind(DispatcherInterface::class, function() use ($dispatcher) {\n return $dispatcher;\n });\n $response = (new Command())->testEvent(new Event());\n $event = array_shift($response);\n\n $this->assertSame(Event::class, $event['name'], 'The event that should have been dispatched should match the event passed to event().');\n $this->assertFalse($event['halt'], 'The event should not halt when dispatched from event().');\n }", "public function testMultipleSorted()\n\t{\n\t\t$event = new Event(new Priority());\n\n\t\t// A properly formed event\n\t\t$event_def = array(\n\t\t\tarray(\n\t\t\t\t'testing1',\n\t\t\t\tarray(\n\t\t\t\t\t'class_name1',\n\t\t\t\t\t'method_name1'\n\t\t\t\t),\n\t\t\t\tarray(),\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'testing2',\n\t\t\t\tarray(\n\t\t\t\t\t'class_name2',\n\t\t\t\t\t'method_name2'\n\t\t\t\t),\n\t\t\t\tarray(),\n\t\t\t),\n\t\t);\n\n\t\t$event->add($event_def[0], 10);\n\t\t$event->add($event_def[1], 0);\n\n\t\t// Of course, now we have events.\n\t\t$this->assertTrue($event->hasEvents());\n\n\t\t$added = $event->getEvents();\n\t\t// two of them actually\n\t\t$this->assertTrue(count($added) === 2);\n\t\t// And should be similar to the original one... inverted\n\t\t$this->assertSame($added, array($event_def[1], $event_def[0]));\n\t}", "public function testDeleteEvent()\n {\n }", "public function testQuarantineCreateChangeStreamPostQuarantinesChangeStream()\n {\n\n }", "public function testEventManagerReset2(EventManager $prevEventManager): void\n {\n $this->assertInstanceOf('Cake\\Event\\EventManager', $prevEventManager);\n $this->assertNotSame($prevEventManager, EventManager::instance());\n }", "public function testCloneTask()\n {\n // workflow, rule, action and object\n $this->task = factory(TaskEloquent::class)->create([\n 'user_id' => null,\n 'person_id' => $this->person->getKey(),\n ]);\n\n $workflow = factory(WorkflowEloquent::class)->create([\n 'user_id' => $this->user->getKey(),\n ]);\n $action1 = factory(ActionEloquent::class)->create([\n 'action_type' => ActionEloquent::ACTION_TYPE_CLONE,\n 'target_class' => '',\n 'target_field' => '',\n 'value' => '',\n 'task_id' =>$this->task->getKey(),\n ]);\n $workflow->actions()->sync([$action1->getKey() ]); //, $action2->getKey()\n $object = factory(ObjectEloquent::class)->create([\n 'workflow_id' => $workflow->getKey(),\n 'object_class' => 'tags.id',\n 'object_type' => $this->tag->getKey(),\n ]);\n\n\n // rule\n $rule1 = factory(RuleEloquent::class)->create([\n 'name' => 'assign task to user',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_NUMBER,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'person_contexts.stage_id',\n 'value' => $this->stageId,\n 'runnable_once' => 1, // only once\n ]);\n\n $action1->rules()->sync([ $rule1->getKey()]);\n\n // run action runner\n $kernel = $this->app->make(Kernel::class);\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n //echo $output->fetch();\n $this->assertEquals($status, 0);\n\n // check status\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_SUCCESS,\n 'object_class' => $this->person->getLoggableType(), //$leadContext->getLoggableType(),\n 'object_id' => $this->person->getKey(), //$leadContext->getKey(),\n 'user_id' => $this->user->getKey(),\n ]);\n\n // check task\n $this->seeInDatabase('tasks',[\n 'user_id' => $this->user->getKey(),\n 'person_id' => $this->person->getKey(),\n 'created_by' => $this->user->getKey(),\n 'updated_by' => $this->user->getKey(),\n ]);\n\n $this->cleanUpRecords(new PersonObserver, $this->person);\n }", "public function testFireEventWithInternalFiredEvent()\n {\n $eventManager = new EventManager;\n $event = 'foor.bar';\n $eventManager->listen(EventManager::FIRED, function ($newEvent) use ($event) {\n $this->assertEquals($newEvent, $event);\n });\n $eventManager->fire($event);\n }", "function is_equal(state $other): bool {\n return $this->log_op_list == $other->log_op_list &&\n $this->tree->is_equal($other->tree);\n }", "public function equals($other) { return $this->obj==Sandbox::unwrap($other); }", "public function editCalendarEvent_notModified()\n {\n $inputCreate = [\n 'title' => str_random(16),\n 'start_datetime' => Carbon::parse('2017-08-01 11:00:00'),\n 'end_datetime' => Carbon::parse('2017-08-01 12:00:00'),\n 'description' => str_random(32),\n 'is_recurring' => false,\n 'is_public' => true,\n\n ];\n $calendarEvent = $this->calendarEvent->createCalendarEvent($inputCreate);\n $calendarEventUpdated = $calendarEvent->editCalendarEvent($inputCreate);\n\n $this->assertNull($calendarEventUpdated);\n }", "public function testInsertValidEvent() : void {\n // count the number of rows and save it for later\n $numRows = $this->getConnection()->getRowCount(\"event\");\n\n // create a new Event and insert to into mySQL\n $eventId = generateUuidV4();\n $event = new Event ($eventId, $this->profile->getProfileId(), $this->VALID_EVENTATTENDEELIMIT, $this->VALID_EVENTDETAIL, $this->VALID_EVENTENDDATETIME, $this->VALID_EVENTIMAGE, $this->VALID_EVENTLAT, $this->VALID_EVENTLONG, $this->VALID_EVENTNAME, $this->VALID_EVENTPRICE, $this->VALID_EVENTSTARTDATETIME);\n $event->insert($this->getPDO());\n\n //grab the data from mySQL and enforce the fields match our expectations\n $pdoEvent = Event::getEventByEventId($this->getPDO(), $event->getEventId());\n $this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"event\"));\n $this->assertEquals($pdoEvent->getEventId(), $eventId);\n $this->assertEquals($pdoEvent->getEventProfileId(),$this->profile->getProfileId());\n $this->assertEquals($pdoEvent->getEventAttendeeLimit(), $this->VALID_EVENTATTENDEELIMIT);\n\t\t $this->assertEquals($pdoEvent->getEventDetail(), $this->VALID_EVENTDETAIL);\n // format the date too seconds since the beginning of time to avoid round off error\n $this->assertEquals($pdoEvent->getEventEndDateTime(),$this->VALID_EVENTENDDATETIME);\n $this->assertEquals($pdoEvent->getEventImage(), $this->VALID_EVENTIMAGE);\n $this->assertEquals($pdoEvent->getEventLat(), $this->VALID_EVENTLAT);\n $this->assertEquals($pdoEvent->getEventLong(), $this->VALID_EVENTLONG);\n $this->assertEquals($pdoEvent->getEventName(), $this->VALID_EVENTNAME);\n $this->assertEquals($pdoEvent->getEventPrice(), $this->VALID_EVENTPRICE);\n // format the date too seconds since the beginning of time to avoid round off error\n $this->assertEquals($pdoEvent->getEventStartDateTime(), $this->VALID_EVENTSTARTDATETIME);\n }", "public function test_onEventQueueClose(): void\n {\n $this\n ->getStockAssignmentCacheMock()\n ->expects($this->once())\n ->method('flush')\n ->willReturn([\n $as1 = Fixture::stockAssignment(),\n $as2 = Fixture::stockAssignment(),\n ]);\n\n // Then the stock assignment cache will remove these assignments without scheduling event\n $this\n ->getPersistenceHelperMock()\n ->expects($this->exactly(2))\n ->method('remove')\n ->withConsecutive(\n [$as1, false],\n [$as2, false],\n );\n\n $this->manager->onEventQueueClose();\n }", "public function test_events_are_not_triggered_for_invalid_entities() {\n $client = m::mock('\\GuzzleHttp\\Client');\n $client->shouldReceive('createRequest')->never();\n $client->shouldReceive('send')->never();\n $course = $this->getDataGenerator()->create_course();\n $return = $this->_app['dragdrop_event']->handle_event('sentence', array(), NOGROUPS, m::mock('dragdrop_user'), m::mock('dragdrop_model_manager'), $client);\n $this->assertEmpty($return);\n }", "public function testGetEvent()\n {\n }", "public function beforeSave($event=null) {\n if ($this->_ignoreEvent)\n return true;\n else\n throw new CDbException(Yii::t('yiiext', 'You should not use CActiveRecord::save() method when NestedSetBehavior attached.'));\n }", "public function testInstance() {\n\t\t$this->assertInstanceOf('EventCore', $this->Event);\n\t}", "public function testGetInvalidEventbyEventId() : void {\n // grab a profile id that exceeds the maximum allowable profile id\n $event = Event::getEventByEventId($this->getPDO(), generateUuidV4());\n $this->assertNull($event);\n }", "public function testDestiny2SetQuestTrackedState()\n {\n // TODO: implement\n $this->markTestIncomplete('Not implemented');\n }", "public function testEventStoreWithoutValidationErr()\n {\n $user = factory(User::class)->create();\n\n $input = [\n 'author_id' => $user->id,\n 'title' => 'Ik ben een titel',\n 'description' => 'Ik ben een beschrijving',\n 'start_date' => '10/10/1995',\n 'end_date' => '11/10/1996',\n 'status' => 'Y',\n 'end_hour' => '10:10',\n 'start_hour' => '12:10',\n ];\n\n $this->actingAs($user)\n ->seeIsAuthenticatedAs($user)\n ->post(route('events.store'), $input)\n ->assertStatus(302)\n ->assertSessionHasAll(['flash_notification.0.message' => trans('events.flash-event-create')]);\n\n $this->assertDatabaseHas('events', [\n 'author_id' => $user->id,\n 'title' => 'Ik ben een titel',\n 'description' => 'Ik ben een beschrijving',\n ]);\n }", "public function testEventCallBackGetInboundReferences()\n {\n }", "public function testTagAttach()\n {\n $workflow = factory(WorkflowEloquent::class)->create([\n 'user_id' => $this->user->getKey(),\n ]);\n $action1 = factory(ActionEloquent::class)->create([\n 'action_type' => ActionEloquent::ACTION_TYPE_EXECUTE,\n 'target_class' => 'tagger',\n 'target_field' => 'attach',\n 'value' => 'attach_tag',\n ]);\n $workflow->actions()->sync([$action1->getKey() ]); //, $action2->getKey()\n $object = factory(ObjectEloquent::class)->create([\n 'workflow_id' => $workflow->getKey(),\n 'object_class' => 'tags.id',\n 'object_type' => $this->tag->getKey(),\n ]);\n\n \n // rule\n $rule1 = factory(RuleEloquent::class)->create([\n 'name' => 'tag person',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_NUMBER,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'person_contexts.stage_id',\n 'value' => $this->stageId,\n 'runnable_once' => 1, // only once\n ]);\n\n $action1->rules()->sync([ $rule1->getKey()]);\n\n // run action runner\n $kernel = $this->app->make(Kernel::class);\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n //echo $output->fetch();\n $this->assertEquals($status, 0);\n\n // check status\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_SUCCESS,\n 'object_class' => $this->person->getLoggableType(), //$leadContext->getLoggableType(),\n 'object_id' => $this->person->getKey(), //$leadContext->getKey(),\n 'user_id' => $this->user->getKey(),\n ]);\n\n // check tag\n $this->seeInDatabase('taggables',[\n 'user_id' => $this->user->getKey(),\n 'tag_id' => $this->tag2->getKey(),\n 'taggable_id' => $this->person->getKey(),\n 'taggable_type' => 'persons',\n ]);\n \n $this->cleanUpRecords(new PersonObserver, $this->person);\n }", "public function testEmittedEventName()\n {\n $expected = array(\n 'request.before_send' => 'onBeforeSend'\n );\n $this->assertEquals($expected, DaWandaPlugin::getSubscribedEvents());\n }", "public function getOtherEvents();", "public function matchesEvent($event);", "public function testAttachsToSharedEventManager()\n {\n $target = new CheckJobCreatePermissionListener();\n\n $events = $this->getMockBuilder('\\Zend\\EventManager\\SharedEventManager')\n ->disableOriginalConstructor()\n ->getMock();\n\n $events->expects($this->once())\n ->method('attach')\n ->with('Jobs/Acl/Assertion/Create', AssertionEvent::EVENT_ASSERT, array($target, 'checkCreatePermission'));\n\n $target->attachShared($events);\n }", "public function testUpdateEvents()\n {\n $event= Event::factory(1)->create();\n // dd($event);\n $event->title = 'Maria';\n $this->put(\"/events\". $event[0]->id, $event->toArray());\n\n $this->assertDatabaseHas('events', [\n 'id' => 1,\n 'title' => 'Maria'\n ]);\n }", "public function setExistingEvent($event, $currentUser)\n {\n $event->setDateChanged(new \\DateTime());\n $event->setChangedBy($currentUser);\n $this->storeEvent($event);\n }", "public function testEventNameException()\n {\n $this->setExpectedException('Txiki\\Events\\EventException', 'Event name is necesary', 0);\n\n $this->event->on();\n }", "public function testPreSetDataWithNewNode()\n {\n Phake::when($this->node)->getId()->thenReturn(null);\n Phake::when($this->event)->getData()->thenReturn($this->node);\n\n $this->subscriber->preSetData($this->event);\n\n Phake::verify($this->form)->add('nodeSource', 'orchestra_node_choice', array(\n 'required' => false,\n 'mapped' => false,\n 'label' => 'open_orchestra_backoffice.form.node.node_source'\n ));\n }", "public function doSomeAction(TestEvent $event) {\n drupal_set_message(\"The Example Event has been subscribed, which has bee dispatched on submit of the form with \" . $event->getReferenceID() . \" as Reference\");\n }", "public function hasChangedTargetGroup();", "public function event_joined()\r\n\t{\r\n\t\r\n\t}", "protected function hasSourceFieldChanged() {\n $source_field_name = $this->getSource()->getConfiguration()['source_field'];\n $current_items = $this->get($source_field_name);\n return isset($this->original) && !$current_items->equals($this->original->get($source_field_name));\n }", "function turnitintooltwo_update_event($turnitintooltwo, $part, $courseparam = false, $convertevent = false) {\n global $DB, $CFG, $USER;\n\n // Create the SQL depending on whether we need to check the course parameter.\n $dbselect = \" modulename = ? AND instance = ? AND name LIKE ? \";\n $dbparams = array('turnitintooltwo', $turnitintooltwo->id, '% - '.$part->partname);\n if ($courseparam) {\n $dbselect .= \"AND courseid = ? \";\n $dbparams[] = $turnitintooltwo->course;\n }\n try {\n // Create event data.\n $updatedevent = new stdClass();\n $updatedevent->userid = $USER->id;\n $updatedevent->name = $turnitintooltwo->name.\" - \".$part->partname;\n $updatedevent->timestart = $part->dtdue;\n\n // Create/Update event for assignment part.\n if ($event = $DB->get_record_select(\"event\", $dbselect, $dbparams)) {\n $updatedevent->id = $event->id;\n\n if ($CFG->branch >= 33) {\n $updatedevent->timesort = $part->dtdue;\n $updatedevent->type = 1;\n\n // No need to continue updating on this occasion if we have a new event type already.\n if (($convertevent) && ($event->type == 1)) {\n return;\n }\n }\n\n $DB->update_record('event', $updatedevent);\n } else {\n $turnitintooltwoassignment = new turnitintooltwo_assignment($turnitintooltwo->id);\n $turnitintooltwoassignment->create_event($turnitintooltwo->id, $part->partname, $part->dtdue);\n }\n } catch (Exception $e) {\n turnitintooltwo_comms::handle_exceptions($e, 'turnitintooltwoupdateerror', false);\n }\n}", "public function testSaveOtherUser()\n {\n // verify we cannot swap to an invalid user\n $this->assertFalse(User::exists('swapped'));\n $change = Change::fetch('default');\n\n try {\n $change->setDescription('Test submit')\n ->setUser('swapped')\n ->save();\n $this->fail('should not have worked');\n } catch (CommandException $e) {\n $this->assertSame(\n \"Command failed: Error in change specification.\\nUser swapped doesn't exist.\",\n $e->getMessage()\n );\n }\n\n\n // add the user swapped to make later attempts work\n $user = new User;\n $user->setId('swapped')->setEmail('[email protected]')->setFullName('Swapped User')->save();\n\n\n // verify set user works on existing change\n $change = Change::fetch('default');\n $change->setDescription('Test submit2')\n ->save();\n\n $this->assertSame('tester', Change::fetch(1)->getUser());\n\n $change = Change::fetch(1);\n $change->setUser('swapped')->save();\n\n $this->assertSame('swapped', Change::fetch(1)->getUser());\n\n\n // verify out of the gate set user works\n $change = Change::fetch('default');\n $change->setDescription('Test submit')\n ->setUser('swapped')\n ->save();\n\n $this->assertSame('swapped', Change::fetch(2)->getUser());\n }", "public function testSubscriberUnsetsItselfBeforeThrowningException(): void\n {\n $entityManager = $this->getEntityManager();\n\n // Create two providers\n $provider1 = $this->createProvider('provider1');\n $provider2 = $this->createProvider('provider2');\n\n // Create subscriber\n $instance = $this->createInstance($provider1);\n\n // Get event manager and bind subscriber\n $eventManager = $entityManager->getEventManager();\n $eventManager->addEventSubscriber($instance);\n\n // Create an invalid entity with the wrong provider\n $entity = new EntityHasProviderStub('entity', 'Acme Corp');\n $entity->setProvider($provider2);\n $entityManager->persist($entity);\n\n // Ensure subscriber is bound\n self::assertContains($instance, $eventManager->getListeners('onFlush'));\n\n // Flush changes which should thrown an exception\n try {\n $entityManager->flush();\n } /** @noinspection PhpRedundantCatchClauseInspection */ catch (InvalidEntityOwnershipException $exception) {\n // Ensure subscriber has unset itself\n self::assertNotContains($instance, $eventManager->getListeners('onFlush'));\n self::assertSame('', $exception->getMessage());\n\n // Return so the following failure doesn't happen\n return;\n }\n\n // If exception wasn't thrown, fail test\n self::fail(\\sprintf('Expected %s to be thrown but it did not happen', InvalidEntityOwnershipException::class));\n }", "private function validateState(string $old_state, string $new_state): void\n {\n if ($old_state === $new_state) {\n throw new \\LogicException('State did not change, transition must occur.');\n }\n }", "public function testGetSubscribedEvents0()\n{\n\n $actual = $this->consoleHandler->getSubscribedEvents();\n $expected = null; // TODO: Expected value here\n $this->assertEquals($expected, $actual);\n}", "protected function isUnchanged() {}", "public function testPastSameEmbargoExpiry()\n {\n $page = $this->objFromFixture(SiteTree::class, 'pastSameEmbargoExpiry');\n\n $page = $this->finishWorkflow($page);\n\n $this->assertEquals(0, $page->PublishJobID);\n $this->assertEquals(0, $page->UnPublishJobID);\n }", "public function resetCurrentEvent()\n {\n $this->currentEvent = 0;\n }", "public function testGetInvalidEventName (): void {\n // grab an name that does not exist\n $event = Event::getEventByEventName($this->getPDO(), \"omgmynameisLuther\");\n $this->assertEmpty($event);\n }", "public function isEvent()\n {\n return isset($this->status_changed) && ! is_null($this->status_changed);\n }", "function is_equal(log_op_move $other): bool {\n return $this == $other;\n }", "public function testGetParentChanges()\n {\n }", "public function testEventStatus()\n {\n $feed = $this->eventFeed;\n\n // Assert that all entry's have an eventStatus object\n foreach ($feed as $entry) {\n $this->assertTrue($entry->getEventStatus() instanceof Zend_Gdata_Extension_EventStatus);\n }\n\n // Assert one of the entries values\n $entry = $feed[2];\n $this->verifyProperty2($entry, \"eventStatus\", \"value\", \"http://schemas.google.com/g/2005#event.confirmed\");\n }", "public function should_succeed_when_snapshots_are_equal(): void\n {\n $prev = new DirectorySnapshot(codecept_root_dir('tests/_support'));\n $snapshot = $prev->snapshotFileName();\n codecept_debug('Snapshot file: ' . $snapshot);\n $this->unlinkAfter[] = $snapshot;\n $prev->assert();\n\n $dirSnapshot = new DirectorySnapshot(codecept_root_dir('tests/_support'));\n $dirSnapshot->setSnapshotFileName($snapshot);\n\n $dirSnapshot->assert();\n }", "public function testEventReturnsAValidInstanceOfDispatcherEvent()\n\t{\n\t\t$args = array('my' => 'arguments');\n\t\t$event = Dispatcher::event($args, TRUE);\n\n\t\t$this->assertType('Dispatcher_Event', $event);\n\t}", "function testGetState2(){\n \t$existingAnswer = new Answer(2); //Answer of formdest_id = 2\n\t\t$this->assertEqual($existingAnswer->getState(), TRUE);\n }", "public function testPreSubmitWithNoSource()\n {\n Phake::when($this->node)->getId()->thenReturn(null);\n Phake::when($this->form)->getData()->thenReturn($this->node);\n Phake::when($this->event)->getData()->thenReturn(array());\n\n $this->subscriber->preSubmit($this->event);\n\n Phake::verify($this->nodeManager, Phake::never())->hydrateNodeFromNodeId(Phake::anyParameters());\n }", "public function validateEventState(string $state): void\n {\n if ($this->payload->object_attributes->state !== $state) {\n throw new Exception(\n \"Invalid state. Expected {$state} but found {$this->payload->object_attributes->state}\",\n 200\n );\n }\n }", "private function checkEventExists(){\n $event = Event::find($this->id);\n\n return(!is_null($event));\n }", "public function testAttendeeSetStatusRecurExceptionAllFollowing()\n {\n $from = new Tinebase_DateTime('2012-02-01 00:00:00');\r\n $until = new Tinebase_DateTime('2012-02-29 23:59:59');\r\n \r\n $event = new Calendar_Model_Event(array(\r\n 'summary' => 'Some Daily Event',\r\n 'dtstart' => '2012-02-03 09:00:00',\r\n 'dtend' => '2012-02-03 10:00:00',\r\n 'rrule' => 'FREQ=DAILY;INTERVAL=1',\r\n 'container_id' => $this->_testCalendar->getId(),\r\n 'attendee' => $this->_getAttendee(),\r\n ));\r\n \r\n $persistentEvent = $this->_controller->create($event);\n \n $exceptions = new Tinebase_Record_RecordSet('Calendar_Model_Event');\r\n $recurSet = Calendar_Model_Rrule::computeRecurrenceSet($persistentEvent, $exceptions, $from, $until);\r\n \n // accept for sclever thisandfuture\n $start = $recurSet[10];\n $sclever = Calendar_Model_Attender::getAttendee($start->attendee, $event->attendee[1]);\r\n $sclever->status = Calendar_Model_Attender::STATUS_ACCEPTED;\r\n $this->_controller->attenderStatusCreateRecurException($start, $sclever, $sclever->status_authkey, TRUE);\r\n \n $events = $this->_controller->search(new Calendar_Model_EventFilter(array(\r\n array('field' => 'container_id', 'operator' => 'equals', 'value' => $this->_testCalendar->getId())\r\n )))->sort('dtstart', 'ASC');\n \n // assert two baseEvents\n $this->assertTrue($events[0]->rrule_until instanceof Tinebase_DateTime, 'rrule_until of first baseEvent is not set');\n $this->assertTrue($events[0]->rrule_until < new Tinebase_DateTime('2012-02-14 09:00:00'), 'rrule_until of first baseEvent is not adopted properly');\n $this->assertEquals(Calendar_Model_Attender::STATUS_NEEDSACTION, Calendar_Model_Attender::getAttendee($events[0]->attendee, $event->attendee[1])->status, 'first baseEvent status must not be touched');\n \n $this->assertEquals($events[1]->dtstart, new Tinebase_DateTime('2012-02-14 09:00:00'), 'start of second baseEvent is wrong');\n $this->assertTrue(empty($events[1]->recurid), 'second baseEvent is not a baseEvent');\n $this->assertEquals($events[1]->rrule, $event->rrule, 'rrule of second baseEvent must be set');\n $this->assertFalse($events[1]->rrule_until instanceof Tinebase_DateTime, 'rrule_until of second baseEvent must not be set');\n $this->assertEquals(Calendar_Model_Attender::STATUS_ACCEPTED, Calendar_Model_Attender::getAttendee($events[1]->attendee, $event->attendee[1])->status, 'second baseEvent status is not touched');\n }", "public function testDeleteChallengeEvent()\n {\n }", "public function testDeleteValidEvent() : void {\n // count the number of rows and save it for later\n $numRows = $this->getConnection()->getRowCount(\"event\");\n\n // create a new Event and insert into mySQL\n $eventId = generateUuidV4();\n\t\t $event = new Event ($eventId, $this->profile->getProfileId(), $this->VALID_EVENTATTENDEELIMIT,$this->VALID_EVENTDETAIL, $this->VALID_EVENTENDDATETIME,$this->VALID_EVENTIMAGE, $this->VALID_EVENTLAT, $this->VALID_EVENTLONG, $this->VALID_EVENTNAME, $this->VALID_EVENTPRICE, $this->VALID_EVENTSTARTDATETIME);\n\t\t $event->insert($this->getPDO());\n\n\n // delete the Event from mySQL\n $this->assertEquals($numRows + 1, $this->getConnection()->getRowCount(\"event\"));\n $event->delete($this->getPDO());\n\n //grab the data from mySQQL and enforce the Event does not exist\n $pdoEvent = Event::getEventByEventId($this->getPDO(), $event->getEventId());\n $this->assertNull($pdoEvent);\n $this->assertEquals($numRows, $this->getConnection()->getRowCount(\"event\"));\n }", "public function setupMachine1()\n {\n\n $this->state1->addTransition('event1-2', $this->state2);\n $this->state2->addTransition('event2-1', $this->state1);\n $this->state2->addTransition('event2-3', $this->state3);\n\n $this->stateMachine->addState($this->state1);\n $this->stateMachine->addState($this->state2);\n $this->stateMachine->addState($this->state3);\n }", "public function testSetTimeSheetIfNotBeingLastStatusChangeThrowsException()\n\t{\n\t\t$user = new User('[email protected]');\n\t\t$timeSheet = new TimeSheet($user);\n\t\t\n\t\t$timeSheetStatusChange = new TimeSheetStatusChange('open');\n\t\t$this->setExpectedException('InvalidArgumentException');\n\t\t$timeSheetStatusChange->setTimeSheet($timeSheet);\n\t}", "function setEventType() // OK\n {\n }", "public function testBookingCannotOverlapAWholeOtherBooking()\n {\n $previous = factory(Booking::class)->create([\n 'start_time' => Carbon::parse('2017-01-01 13:00:00'),\n 'end_time' => Carbon::parse('2017-01-01 14:00:00'),\n ]);\n\n $booking = factory(Booking::class)->create([\n 'resource_id' => $previous->resource_id,\n 'start_time' => Carbon::parse('2017-01-01 12:00:00'),\n 'end_time' => Carbon::parse('2017-01-01 15:00:00'),\n ]);\n\n $availableRule = new Available($booking->start_time, $booking->end_time, $booking->id);\n\n $this->assertFalse($availableRule->passes('resource_id', $booking->resource_id));\n }", "public function testTeamAdminCannotUpdateACalendarThatDoesNotBelongToTheProperty()\n {\n // Create a user with property and calendar\n $userOne = User::factory()->withPersonalTeam()->create();\n $userOne->assignRole(Role::findByName('user'));\n $userOne->assignRole(Role::findByName('team-admin'));\n $teams = $userOne->ownedTeams;\n\n $propertyOne = Property::factory()->create([\n 'team_id' => $teams->first()->getKey(),\n 'is_private' => true\n ]);\n $calendarOne = Calendar::factory()->create(['property_id' => $propertyOne->getKey()]);\n $slotOne = Slot::factory()->create(['calendar_id' => $calendarOne->getKey()]);\n\n // Create a user with property and calendar\n $userTwo = User::factory()->withPersonalTeam()->create();\n $userTwo->assignRole(Role::findByName('user'));\n $userTwo->assignRole(Role::findByName('team-admin'));\n $teams = $userTwo->ownedTeams;\n\n $propertyTwo = Property::factory()->create([\n 'team_id' => $teams->first()->getKey(),\n 'is_private' => true\n ]);\n $calendarTwo = Calendar::factory()->create(['property_id' => $propertyTwo->getKey()]);\n $slotTwo = Slot::factory()->create(['calendar_id' => $calendarTwo->getKey()]);\n\n // Try updating a slot which belongs to another user through a calendar that DOES belong to the user\n $response = $this->actingAs($userOne)->delete('/calendars/' . $calendarOne->getKey(). '/slots/' . $slotTwo->getKey());\n $response->assertStatus(404);\n }", "public function test_form_submit_onevents()\n {\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", false)\n ->set(\"onPush\", false)\n ->set(\"onPullrequest\", false)\n ->call('submitForm')\n ->assertHasErrors('onEvents');\n\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", false)\n ->set(\"onPush\", true)\n ->set(\"onPullrequest\", false)\n ->call('submitForm')\n ->assertHasNoErrors('onEvents');\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", true)\n ->set(\"onPush\", true)\n ->set(\"onPullrequest\", false)\n ->call('submitForm')\n ->assertHasNoErrors('onEvents');\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", true)\n ->set(\"onPush\", true)\n ->set(\"onPullrequest\", true)\n ->call('submitForm')\n ->assertHasNoErrors('onEvents');\n\n $hintsTest =[];\n $hint = \"You selected all 3 options: 'on Push', 'on Pull Request', and 'Manual Trigger'.\";\n $hint = $hint . \" I suggest you to select 'Manual Trigger' OR 'on push / on pull request'.\";\n $hintsTest[] = $hint;\n $hintsTest[] =\"I selected automatically a 'Manual Trigger' for you.\";\n\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", true)\n ->set(\"onPush\", true)\n ->set(\"onPullrequest\", true)\n ->call('submitForm')\n ->assertSet('hints', $hintsTest);\n\n Livewire::test(ConfiguratorForm::class)\n ->set(\"name\",\"Test\")\n ->set(\"manualTrigger\", false)\n ->set(\"onPush\", true)\n ->set(\"onPullrequest\", true)\n ->call('submitForm')\n ->assertSet('hints', []);\n }", "function isPastEvent($newEventID){\r\n\t\tif(!$this->DBLogin()){\r\n $this->HandleError(\"Database login failed!\");\r\n return false;\r\n }\r\n\t\t\r\n\t\t//check that the event is not a past event.\r\n\t\t//the user should not be able to edit the event when it is past.\r\n\t\t\r\n\t\t\r\n\t\t\r\n if(!$this->EnsureRegTable()){\r\n return false;\r\n }\r\n\t\t\r\n\t\tif(!$this->EnsureMyEventsTable($formvars['UuserName'])){\r\n return false;\r\n }\r\n\t\t\r\n if(!$this->IsFieldUnique($formvars, 'email')){\r\n $this->HandleError(\"This email is already registered\");\r\n return false;\r\n }\r\n \r\n if(!$this->IsFieldUnique($formvars, 'username')){\r\n $this->HandleError(\"This UserName is already used. Please try another username\");\r\n return false;\r\n }\r\n \r\n if(!$this->InsertIntoEventAdvisorDB($formvars)){\r\n $this->HandleError(\"Inserting to Database failed!\");\r\n return false;\r\n }\r\n return true;\r\n\t}", "static function eventStack($event_name = null)\n\t{\n\t\tif (!isset($event_name)) {\n\t\t\treturn self::$event_stack;\n\t\t}\n\t\tforeach (self::$event_stack as $key => $ei) {\n\t\t\tif ($ei['event_name'] === $event_name) {\n\t\t\t\treturn $ei;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}", "public function test_save() {\n global $DB;\n self::setAdminUser();\n $this->resetAfterTest(true);\n\n // Save new outage.\n $now = time();\n $outage = new outage([\n 'autostart' => false,\n 'warntime' => $now - 60,\n 'starttime' => 60,\n 'stoptime' => 120,\n 'title' => 'Title',\n 'description' => 'Description',\n ]);\n $outage->id = outagedb::save($outage);\n self::$outage = $outage;\n\n // Check existance.\n self::$event = $DB->get_record_select(\n 'event',\n \"(eventtype = 'auth_outage' AND instance = :idoutage)\",\n ['idoutage' => self::$outage->id],\n 'id',\n IGNORE_MISSING\n );\n self::assertTrue(is_object(self::$event));\n }", "public function testDoesNotCreateClassWithIncorrectParameter() : void\n {\n $this->assertNull(EventProcessorFactory::create(\"hockey\", $this->eventStorage));\n }", "public function testAssignTask()\n {\n // workflow, rule, action and object\n $this->task = factory(TaskEloquent::class)->create([\n 'user_id' => null,\n 'person_id' => null,\n ]);\n\n $workflow = factory(WorkflowEloquent::class)->create([\n 'user_id' => $this->user->getKey(),\n ]);\n $action1 = factory(ActionEloquent::class)->create([\n 'action_type' => ActionEloquent::ACTION_TYPE_ASSIGN,\n 'target_class' => '',\n 'target_field' => '',\n 'value' => '',\n 'task_id' =>$this->task->getKey(),\n ]);\n $workflow->actions()->sync([$action1->getKey() ]); //, $action2->getKey()\n $object = factory(ObjectEloquent::class)->create([\n 'workflow_id' => $workflow->getKey(),\n 'object_class' => 'tags.id',\n 'object_type' => $this->tag->getKey(),\n ]);\n\n\n // rule\n $rule1 = factory(RuleEloquent::class)->create([\n 'name' => 'assign task to user',\n 'workflow_id' => $workflow->getKey(),\n 'rule_type' => RuleEloquent::FIELD_TYPE_NUMBER,\n 'operator' => RuleEloquent::OPERATOR_EQUAL,\n 'field_name' => 'person_contexts.stage_id',\n 'value' => $this->stageId,\n 'runnable_once' => 1, // only once\n ]);\n\n $action1->rules()->sync([ $rule1->getKey()]);\n\n // run action runner\n $kernel = $this->app->make(Kernel::class);\n $status = $kernel->handle(\n $input = new ArrayInput(array(\n 'command' => 'workflow:action-run',\n 'workflow' => $workflow->getKey(),\n 'action' => $action1->getKey(),\n )),\n $output = new BufferedOutput\n );\n //echo $output->fetch();\n $this->assertEquals($status, 0);\n\n // check status\n $this->seeInDatabase('action_logs',[\n 'action_id' => $action1->getKey(),\n 'workflow_id' => $workflow->getKey(),\n 'status' => LogInterface::LOG_STATUS_SUCCESS,\n 'object_class' => $this->person->getLoggableType(), //$leadContext->getLoggableType(),\n 'object_id' => $this->person->getKey(), //$leadContext->getKey(),\n 'user_id' => $this->user->getKey(),\n ]);\n\n // check task\n $this->seeInDatabase('tasks',[\n 'id' => $this->task->getKey(),\n 'user_id' => $this->user->getKey(),\n ]);\n\n $this->cleanUpRecords(new PersonObserver, $this->person);\n }", "public function testUpdatedBy()\n {\n $updatedBy = new User();\n $event = (new Event())->setUpdatedBy($updatedBy);\n $this->assertEquals($updatedBy, $event->getUpdatedBy());\n }", "public function testShift()\n {\n $element = $this->collection->shift();\n\n $this->assertCount(2, $this->collection);\n $this->assertFalse($this->collection->contains(1));\n $this->assertEquals(1, $element);\n }", "public function testPersistNotImplementing(): void\n {\n $this->persistEvent->getDocument()->willReturn($this->notImplementing);\n $this->persistEvent->getNode()->shouldNotBeCalled();\n $this->subscriber->saveStructureData($this->persistEvent->reveal());\n }", "public function testCannotBePersistedWithoutTimeSheet()\n\t{\n\t\t$timeSheetStatusChange = new TimeSheetStatusChange('open');\n\t\t\n\t\t$this->em->persist($timeSheetStatusChange);\n\t\t\n\t\t// Catch generic exception as storage engine cannot be assumed\n\t\t$this->setExpectedException('Exception');\n\t\t$this->em->flush();\n\t}" ]
[ "0.56034166", "0.55580646", "0.54245365", "0.5418454", "0.53906626", "0.5302014", "0.53004074", "0.5297801", "0.52564305", "0.51866883", "0.51692474", "0.51631874", "0.5156853", "0.50875133", "0.50477284", "0.5020485", "0.4978576", "0.49550104", "0.4902349", "0.48608422", "0.4839671", "0.48384544", "0.48273498", "0.4792813", "0.4788895", "0.47767606", "0.47603312", "0.47575843", "0.4746859", "0.4746859", "0.4744762", "0.47296995", "0.47281504", "0.4715338", "0.47149703", "0.4700403", "0.46906358", "0.46875176", "0.46826804", "0.466628", "0.46661943", "0.46395218", "0.4627737", "0.46275786", "0.46253932", "0.46210024", "0.46111915", "0.46056172", "0.46028706", "0.46016565", "0.4595886", "0.45781818", "0.4576516", "0.456334", "0.45610303", "0.45574299", "0.45379043", "0.45377645", "0.45372996", "0.4531636", "0.4525725", "0.45229256", "0.4514335", "0.45010775", "0.45008734", "0.44996306", "0.44928044", "0.44914725", "0.44865835", "0.4486157", "0.44848377", "0.44820026", "0.44738275", "0.44737947", "0.44712895", "0.44704488", "0.4452134", "0.44506645", "0.44492775", "0.44490746", "0.44490516", "0.44446117", "0.4434949", "0.443481", "0.4430213", "0.4409613", "0.4407587", "0.44041935", "0.44019622", "0.43983147", "0.43945494", "0.4390374", "0.43865547", "0.4378075", "0.43776345", "0.43639216", "0.43601686", "0.435329", "0.43482834", "0.43475574" ]
0.46014592
50
$opt['equalTo'] ='string that want to be equals';
function test(...$params){ // pass event to callback function print_r($params[0]); print_r("EVENT TYPE: " . $params[1] . PHP_EOL . PHP_EOL); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function globalStringConditionMatchesOnEqualExpression() {}", "public function globalStringConditionMatchesOnEqualExpression() {}", "function eq ($value) {\n return '=\\''.$value.'\\'';\n }", "private static function _prepareSearchConstraint($strProp, $mixValue)\n\t{\n\t\t$strSearch = \"\";\n\t\tif ($mixValue === NULL)\n\t\t{\n\t\t\t$strSearch = \"$strProp IS NULL\";\n\t\t}\n\t\telseif (is_array($mixValue))\n\t\t{\n\t\t\t$strSearch = \"$strProp IN (\". implode(\", \", $mixValue) .\")\";\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$strSearch = \"$strProp = $mixValue\";\n\t\t}\n\t\treturn $strSearch;\n\t}", "function in_any_order(string ...$options) : string\n{\n\n return sprintf('/%s/', implode('', array_map(function ($field) {\n\n return \"(?=.*{$field})\";\n }, $options)));\n}", "public function whereEqualTo($field, $value) {\n\t$this->parseQuery->whereEqualTo($field, $value);\n }", "public function queryString();", "public function where($arr){//ex of $arr : ['name' => 'LIKE A%','email' => '= [email protected]']\n $c = \"\";\n $x = 0;\n foreach($arr as $key => $v){//for each param, translate to SQL language\n if($x != 0){\n $c .= \" AND\";\n }\n $x++;\n $c .= \" $key $v\";\n }\n $this->params[\"WHERE\"] = $c;//adding the conditions to the query\n return $this;\n }", "public function testKeyValueEquality()\n {\n $comparison = $this->parser->parse(\n 'benchmark: \"Foobar\"'\n );\n\n $this->assertEquals(\n new Comparison('$eq', 'benchmark', 'Foobar'),\n $comparison\n );\n }", "function exact_value ( $str, $val )\n\t{\n\t\tif ( strcmp( strval( $str ), strval( $val ) ) !== 0 ) return FALSE;\n\t\treturn TRUE;\n\t}", "public function where(string $key, $value);", "public function findEquals($field, $value);", "public function operator_options() {\n return array('=' => t('contains'), '<>' => t(\"doesn't contain\"));\n }", "public function contains($value)\n\t{\n $this->operator = \"contains\";\n $this->value = $value;\n\t}", "function use_equals($ar) {\r\n\tfor($i = 0, $j = count($ar); $i < $j; $i++) {\r\n\t\tif('gouda' == $ar[$i]) {\r\n\t\t\t// it's gouda\r\n\t\t}\r\n\t}\r\n}", "public function queryString() : string;", "function opting($opt) {\n\t$opt['table']=ascheck(@$opt['table'],'');\n\t$opt['subject']=ascheck(@$opt['subject'],array());\n\t$opt['subject_str']=ar2str(@$opt['subject'],\"_\");\n\t$opt['topic_in']=ascheck(@$opt['topic_in'],array());\n\t$opt['topic_out']=ascheck(@$opt['topic_out'],array());\n\t$opt['name']=ascheck(@$opt['name'],$opt['subject_str'].ac::$nth);\n\t$opt['title']=ascheck(@$opt['title'],$opt['name']);\n\t$opt['id']=ascheck(@$opt['id'],'');\n\t$opt['bucket']=ascheck(@$opt['bucket'],false);\n\t$opt['list']=ascheck(@$opt['list'],false);\n\t$opt['debug']=ascheck(@$opt['debug'],false);\n\t$opt['class']=ascheck(@$opt['class'],'p');\n\t$opt['modal']=ascheck(@$opt['modal'],true);\n\t$opt['scope']=ascheck(@$opt['scope'],'');\n\t$opt['prepend']=ascheck(@$opt['prepend'],'');\n\t$opt['append']=ascheck(@$opt['append'],'');\n\t$opt['order']=ascheck(@$opt['order'],'');\n\treturn $opt;\n}", "public function whereEq()\n {\n \n list($field, $value) = $this->extractQueryToFieldAndValue(func_get_args());\n $this->_conditions[self::WHERE][$field] = new MongoRegex(preg_quote($value), 'i');\n return $this;\n }", "public function WHERE_string($str) {\n\t\t$field_name = $str;\n\n\t\t// But if we see some funky characters (like AND, OR or whitespace)\n\t\tif (preg_match('#\\s|AND|OR|\\(|\\)#', $str)) {\n\t\t\treturn $this->WHERE_literal($str);\t\n\t\t}\n\n\t\treturn $this->WHERE_once($str);\n\t}", "function s_m_put_get_condition($ref_id_db_arr, $ref_data){\r\n $where = \"\";\r\n for($i = 0; $i < count($ref_id_db_arr); $i++){\r\n $where .= $ref_id_db_arr[$i] . \"='\" . $ref_data[$i] . \"'' AND \";\r\n }\r\n return substr($where, 0, strlen($where) - 5);\r\n}", "public function testParsingLongOptionWithEqualsSign()\n {\n $request = $this->parser->parse('foo --name=dave');\n $this->assertEquals('foo', $request->getCommandName());\n $this->assertEquals([], $request->getArgumentValues());\n $this->assertEquals('dave', $request->getOptionValue('name'));\n }", "function acf_str_exists($needle, $haystack)\n{\n}", "function like_match($searchParam, $subject) {\n $preg = preg_grep(\"/(.*)\" . strtolower($searchParam) . \"(.*)/\", [strtolower($subject)]);\n if(!empty($preg)){\n return true;\n }\n return false;\n}", "public function globalStringConditionMatchesWildcardExpression() {}", "private function setSearchstring(){\n $search_req = $this->main->getArrayFromSearchString($_GET['content_search']);\n\n $searchstring = '';\n\n foreach($search_req as $key => $val){\n if(strlen($val) > 0){\n $searchstring .= \"`name` LIKE '%\".DB::quote($val).\"%' OR \";\n };\n };\n\n $searchstring .= \"`name` LIKE '%\".DB::quote($_GET['content_search']).\"%'\";\n\n return $searchstring;\n }", "public function globalStringConditionMatchesWildcardExpression() {}", "function nameEqValueEscaped($data_type, $field_name, $value)\n{\n return \" \".$field_name.\" = \".escapeValue($data_type, $value);\n}", "public function search($value, $strict = false);", "public function globalStringConditionMatchesRegularExpression() {}", "public function globalStringConditionMatchesRegularExpression() {}", "function custom_conds( $conds = array()) {\n\n\t}", "function match($field, $value);", "public function equalTo($value){\n $this->debugBacktrace();\n /*\n Equals is generally used unless using a verb \"is\" and the phrase \"equal to\". \n While reading 3 ft = 1 yd you would say \"three feet equals a yard,\" or \"three feet is equal to a yard\". \n Equals is used as a verb. \n To use equal in mathematics (generally an adjective) you need an accompanying verb.\n */\n $value = $this->_real_escape_string($value);\n\n if($this->last_call_where_or_having == \"where\"){\n $this->whereClause .= \"=$value\";\n }\n else{\n $this->havingClause .= \"=$value\";\n }\n return $this;\n }", "public function testQueryString()\n {\n $obj_query = new \\Search\\Query('test string here');\n $this->assertEquals('test string here', $obj_query->getQuery());\n }", "protected function addCondition($query, $attribute, $partialMatch = false)\n{\n if (($pos = strrpos($attribute, '.')) !== false) {\n $modelAttribute = substr($attribute, $pos + 1);\n } else {\n $modelAttribute = $attribute;\n }\n \n $value = $this->$modelAttribute;\n if (trim($value) === '') {\n return;\n }\n \n \n if ($partialMatch) {\n $query->andWhere(['like', $attribute, $value]);\n } else {\n $query->andWhere([$attribute => $value]);\n }\n}", "private function addSingleKeyValueQuery($key,$value,$valueIsText = false){\n /// \\param[in] $key The key (fieldname)\n /// \\param[in] $value The value\n /// \\param[in] $valueIsText Set whether the content of $value is text \n /// \\return A part of the query or nothing\n global $ORIONDB_DB;\n \n if(($key != \"\") && ($value != \"\")){\n if($this->_queryUnchanged[$this->_numberOfRecursions]){\n $returnQuery = \" WHERE \";\n $this->_queryUnchanged[$this->_numberOfRecursions] = false;\n }\n else {\n\t\t\t\t\t// use OR to search multiple columns, otherwise use AND\n\t\t\t\t\t$returnQuery = ($_POST['search_string']) ? \" OR \" : \" AND \";\n }\n\n $returnQuery .= $ORIONDB_DB->cleansql($key);\n\t\t\t $returnQuery .= ($_POST['search_string']) ? \" LIKE \" : \"=\";\n if($valueIsText){ \n $returnQuery .= \"'\" . $ORIONDB_DB->cleansql($value) . \"' \";\n }\n else {\n $returnQuery .= $ORIONDB_DB->cleansql($value) . \" \"; \n }\n return $returnQuery;\n } \n}", "function start_group_where($key,$value=NULL,$escape=TRUE,$type=\"AND\")\n {\n $this->open_bracket($type); \n return parent::_where($key, $value,'',$escape); \n }", "function isEqual($var,$str){\r\n\tif ($var == $str) {\r\n\t\treturn 1;\r\n\t}\r\n\treturn 0;\r\n}", "public function __contains ( $sField, $mValue )\n {\n // There's a standard way to force case sensitive LIKE ???\n return \"$sField LIKE $mValue\";\n }", "function orEq($array,$key,$default = null, $valid_values_list = null) {\n if ( $default === null ) {\n $default = __('UnNamed', $this->getPluginName() ) . ' - ' . $key;\n }\n if ( isset($array[$key]) ) {\n $value = $array[$key];\n } else {\n $value = $default;\n }\n if ($valid_values_list) {\n foreach ( $valid_values_list as $val) {\n if ($value == $val)\n return $value;\n }\n JSONAPIHelpers::warn(\"orEq was passed a valid_values_list, but inputs did not match, so returning default\");\n return $default;\n } else {\n return $value;\n }\n \n }", "function array_contains_part_of_string ($string, $array) {\n\tforeach ($array as $value) {\n\t\t//if (strstr($string, $url)) { // mine version\n\t\tif (strpos($string, $value) !== FALSE) { // Yoshi version\n\t\t\treturn true;\n\t\t\tbreak;\n\t\t\t\n\t\t}\n\t}\n return false;\n\t\n}", "public function globalVarConditionMatchesOnEqualExpression() {}", "public function globalVarConditionMatchesOnEqualExpression() {}", "function InString($what,$where) {\n\t\t$pos = strpos ($where, $what);\n\t\tif (is_string($pos) && !$pos) {\n\t\t return false;\n\t\t}\n\t\treturn true;\n\t}", "public function match($value);", "public function where($field, $value, $comparison = '==', $logical = 'and');", "function matchStrings($userValue, $label)\n{\n// debug(\"matchStrings $label\", $userValue);\n\n if(!strcasecmp($userValue, $label)) return true;\n \n $firstWord = substringBefore($label, \" \");\n return startsWith($userValue, $firstWord);\n}", "function KM_search($options=array(),$obj_type=FALSE){\n\t if(isset($options['class'])){\n\t\t $table=$this->db->dbprefix.$options['class'];\n\t\t}\n\t\telse{\n\t\t $table=$this->table;\n\t\t}\n\t $tmp_fields='';\n\t foreach($options['search_fields'] as $tmp){\n\t $tmp_fields .=$table.\".\".$tmp.\" LIKE '%\".$this->db->escape_like_str($options['keyword']).\"%' OR \";\n\t\t }\n\t //$conditions=\"MATCH (\".$fields.\") AGAINST ('\".$options['keyword'].\"*' IN BOOLEAN MODE) OR \".substr($tmp_fields,0,-4);\n\t $conditions=substr($tmp_fields,0,-4);\n\t $options['search_conditions']=$conditions;\n\t $result=$this->KM_all($options,$obj_type);\t\n\t\treturn $result;\t\t\n\t}", "public function in($question = '');", "public function testContains1()\n {\n $this->assertTrue(Str::contains('foo', 'oo'));\n }", "public function searchByVal( $value, bool $strict = false );", "function LikeWhereClause ($field, $value)\n\t{\n\t\t$this->field = $field;\n\t\t$this->regexp = '/^' . str_replace('%','.*', preg_quote($value)) . '$/i';\n\t}", "function sa_dev_qstring($arg=null,$value=null,$qstring=null){\n // null value removes arg from querystring\n $query_string = array();\n if($qstring==null) $qstring = $_SERVER['QUERY_STRING'];\n parse_str($qstring, $query_string); \n if(!empty($arg)) $query_string[$arg] = $value;\n $new_str = http_build_query($query_string,'','&amp;');\n return $new_str;\n}", "function orEq($array,$key,$default = null) {\n if ( $default === null ) {\n $default = __('UnNamed', $this->getPluginName() ) . ' - ' . $key;\n }\n if ( isset($array[$key]) ) {\n return $array[$key];\n }\n return $default;\n }", "function parseToWhere($vars,$bool,$selx,$etype) {\n $arVars=explode(';',$vars);\n $arBool=explode(';',$bool);\n $arSelx=explode(';',$selx);\n $arEtype=explode(';',$etype);\n \n $i=0;\n //$iMax=0;\n $whereClause='';\n //$chosenOnes=array();\n \n foreach($arVars AS $varName) {\n if ($whereClause) {$whereClause.=$arBool[$i];}\n if (substr($arSelx[$i],0,2)=='__') {\n $op=substr($arSelx[$i],2,2);\n $val=substr($arSelx[$i],4);\n if ($op=='lt') {$whereClause.=' ('.$varName.\"<'\".$val.\"') \";}\n elseif ($op=='eq') {$whereClause.=' ('.$varName.\"='\".$val.\"') \";}\n elseif ($op=='gt') {$whereClause.=' ('.$varName.\">'\".$val.\"') \";}\n elseif ($op=='rg') {\n $v0=substr($val,0,strpos($val,'_'));\n $v1=substr($val,strpos($val,'_')+1);\n $whereClause.=\" ($varName>='$v0' AND $varName<='$v1') \";\n }\n else {$nought=0;}\n } elseif ($arEtype[$i]=='text') {\n $whereClause.=' ('.$varName.\" LIKE '%\".$arSelx[$i].\"%') \";\n } else {\n $whereClause.=' ('.$varName.\"='\".$arSelx[$i].\"') \";\n }\n $i++;\n }\n return $whereClause;\n}", "function criteria(&$query){\n $id = $this->input->post('id', true);\n $k = $this->input->post('k', true);/*kind*/\n $t = $this->input->post('t', true);/*title*/\n $s = $this->input->post('s', true);/*sub*/\n $b = $this->input->post('b', true);/*background*/\n $so = $this->input->post('so', true);/*sort*/\n if(!empty($id)){/*where like include: before(%pattern), after(pattern%) and both(%pattern%)*/\n $query = $query->like('id', $id, 'both');\n }\n if(!empty($k)){\n $query = $query->like('kind', $k, 'both');\n }\n if(!empty($t)){\n $query = $query->like('title', $t, 'both');\n }\n if(!empty($s)){\n $query = $query->like('sub', $s, 'both');\n }\n if(!empty($b)){\n $query = $query->like('background', $b, 'both');\n }\n if(!empty($so)){\n $query = $query->like('sort', $so, 'both');\n }\n }", "public function findWhere(String $column, $value, String $operator = '=');", "public function __icontains ( $sField, $mValue )\n {\n return \"$sField LIKE $mValue\";\n }", "public function testContains2()\n {\n $this->assertTrue(Str::contains('foo', ['y', 'o']));\n }", "function m_s($a1,$a2)\n{\n \tif ($a1 == $a2)\n \t\treturn \"selected\";\n \telse\n \t\treturn \"\";\n}", "public function cpSearch($tablename,$value1=0,$value2=0) {\n\n /*\n * Prepare the select statement\n */\n $sql=\"SELECT * FROM $tablename\";\n if($value1!=0)\n { $key1= key($value1);\n $sql.=\" where $key1 like '%$value1[$key1]%'\";\n }\n if($value1!=0 && $value2!=0) \n {\n $key2= key($value2);\n $sql.=\" AND $key2='$value2[$key2]'\";\n }\n \n $sth = $this->dbh->prepare($sql);\n $sth->execute();\n $result = $sth->fetchAll(PDO::FETCH_ASSOC);\n return $result;\n \n}", "function validateCompare ($input, $input2, $option = 'same') {\n if($input === $input2) {\n return true;\n } else {\n return false;\n }\n}", "public function contains($value);", "public function beginsWithReturnsTrueForMatchingFirstPartDataProvider() {}", "abstract protected function queryString(): string;", "function mWHERE(){\n try {\n $_type = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$WHERE;\n $_channel = Erfurt_Sparql_Parser_Sparql11_Update_Tokenizer11::$DEFAULT_TOKEN_CHANNEL;\n // Tokenizer11.g:156:3: ( 'where' ) \n // Tokenizer11.g:157:3: 'where' \n {\n $this->matchString(\"where\"); \n\n\n }\n\n $this->state->type = $_type;\n $this->state->channel = $_channel;\n }\n catch(Exception $e){\n throw $e;\n }\n }", "public function equals($arg);", "function generate_where($field,$array)\n{\n\tfor ($i=0;$i<sizeof($array);$i++)\n\t{\n\t\t$where=$where.\" \".$field.\" like \".$array[$i];\n\t\tif ($i<sizeof($array)-1)\n\t\t\t$where=$where.\" or\";\n\t}\n\tif (!isset($where))\n\t{\n\t\t$where = 0;\n\t}\n\tif (!isset($where))\n\t{\n\t\t$where=\"'0'\";\n\t}\n\treturn $where;\n}", "abstract public function find($query_string);", "function compare_operator($query,$item)\n{\n if($query['WHERE'][2]==\"CONTAINS\")\n {\n if(strpos($item,$query['WHERE'][3]) !== false)\n {\n return true;\n }\n }\n else if ($query['WHERE'][2]==\"=\")\n {\n if((is_double($query['WHERE'][3]) && ((double)$item == $query['WHERE'][3])) || strcmp($item, $query['WHERE'][3])==0)\n {\n return true;\n }\n }\n else if ($query['WHERE'][2]==\"<\")\n {\n if((is_double($query['WHERE'][3]) && ((double)$item < $query['WHERE'][3])) || strcmp($item, $query['WHERE'][3]) < 0)\n {\n return true;\n }\n }\n else if ($query['WHERE'][2]==\">\")\n {\n if((is_double($query['WHERE'][3]) && ((double)$item > $query['WHERE'][3])) || strcmp($item, $query['WHERE'][3]) > 0)\n {\n return true;\n }\n }\n return false;\n}", "public function testParsingArrayLongOptionWithEqualsSign()\n {\n $request = $this->parser->parse('foo --name=dave --name=young');\n $this->assertEquals('foo', $request->getCommandName());\n $this->assertEquals([], $request->getArgumentValues());\n $this->assertEquals(['dave', 'young'], $request->getOptionValue('name'));\n }", "function filter_query($query) {\n\n\n\n //use string replace to allow our users to use AND as a Boolean search parameter\n //All of our search engines use OR so we do not need to edit our Query to facilitate its use\n //use string replace to allow our users to use NOT as a Boolean search parameter\n $bad = array(\"NOT \", \"AND \", \"'s\", '\"');\n $good = array(\"-\", \"+\", \"\", \"'\");\n $query = str_replace($bad, $good, $query);\n\n return $query;\n}", "function BasicSearchWhere() {\r\n\t\tglobal $Security, $fs_multijoin_v;\r\n\t\t$sSearchStr = \"\";\r\n\t\t$sSearchKeyword = $fs_multijoin_v->BasicSearchKeyword;\r\n\t\t$sSearchType = $fs_multijoin_v->BasicSearchType;\r\n\t\tif ($sSearchKeyword <> \"\") {\r\n\t\t\t$sSearch = trim($sSearchKeyword);\r\n\t\t\tif ($sSearchType <> \"\") {\r\n\t\t\t\twhile (strpos($sSearch, \" \") !== FALSE)\r\n\t\t\t\t\t$sSearch = str_replace(\" \", \" \", $sSearch);\r\n\t\t\t\t$arKeyword = explode(\" \", trim($sSearch));\r\n\t\t\t\tforeach ($arKeyword as $sKeyword) {\r\n\t\t\t\t\tif ($sSearchStr <> \"\") $sSearchStr .= \" \" . $sSearchType . \" \";\r\n\t\t\t\t\t$sSearchStr .= \"(\" . $this->BasicSearchSQL($sKeyword) . \")\";\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$sSearchStr = $this->BasicSearchSQL($sSearch);\r\n\t\t\t}\r\n\t\t}\r\n\t\tif ($sSearchKeyword <> \"\") {\r\n\t\t\t$fs_multijoin_v->setSessionBasicSearchKeyword($sSearchKeyword);\r\n\t\t\t$fs_multijoin_v->setSessionBasicSearchType($sSearchType);\r\n\t\t}\r\n\t\treturn $sSearchStr;\r\n\t}", "function clients_select_getSearchQuery($ctlData,$searchRow) {\n\tif($ctlData['SEARCHABLE'] != 'no') {\n\t\t$identifier = strtolower($ctlData['IDENTIFIER']);\n\n\t\t## the A part\t\n\t\t$query_A = '';\n\t\t\n\t\t## the B part\n\t\t$query_B = '';\n\t\t\n\t\t## the C part\n\t\t$search_value = $searchRow['value'];\n\t\t$query_C = ' AND ';\n\t\t$query_C .= DB_PREFIX.$GLOBALS['_MODULE_DATAOBJECTS_DBPREFIX'].'.'.$identifier.' like'.\"'%\".$search_value.\"%'\";\n\t\t\n\t\treturn array('partA'=>$query_A,'partB'=>$query_B,'partC'=>$query_C);\n\t}\n}", "protected function _has_operator($str) {\n\t\treturn (bool) preg_match('/(<|>|!|=|\\sIS NULL|\\sIS NOT NULL|\\sEXISTS|\\sBETWEEN|\\sLIKE|\\sIN\\s*\\(|\\s)/i', trim($str));\n\t}", "private function exactMatchUrlValue() {\n if ($this->blExactMatch) {\n return IFinder::REST_QUESTION_MARK;\n } else {\n return IFinder::REST_QUESTION_MARK . PubChemFinder::REST_NAME_SPECIFICATION . PubChemFinder::REST_AMPERSAND;\n }\n }", "function sql_is_compare_operator($op){\n\treturn in_array($op, array('=', 'LIKE', 'NOT LIKE', 'NOT', '<>'));\n}", "public function flexformConditionStringDataProvider() {}", "public function setMDB2WhereCondition($query_string, $data_type, $data_value)\n\t{\n\t\t\n\t\t$this->mdb2Query = $query_string;\n\t\t$this->mdb2DataValue = $data_value;\n\t\t$this->mdb2DataType = $data_type;\n\t\n\t\t\n\t\treturn true;\n\t}", "public function setQuery($q)\n {\n if (is_string($q)) {\n $this->options['Query'] = $q;\n } else {\n return false;\n }\n }", "function testOptionsArray(){\n\t\t#mdx:OptionsArray\n\t\t$choice = new SimpleChoice(\"language\",\"Type in the desired language code:\");\n\t\t$choice->options(['en','es','pt','fr']);\n\t\t#/mdx echo $choice\n\t\t$this->assertContains(\"- en\", \"$choice\");\n\t\t$this->assertNotContains(\"0 - en\", \"$choice\");\n\n\t}", "function email_contains($needle, $barn) {\n\n\t// If not empty ...\n\tif ( ! empty ( $barn ) ) {\n\t\t// search string\n\t\tforeach ( $barn as $straw ) {\n\t\t\tif ( $straw == $needle ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn false;\n\n}", "public function conditionStringDataProvider() {}", "function validarConfirmar($_string, $_stringConfirma)\n{\n if ($_string === $_stringConfirma) {\n return true;\n }\n return false;\n}", "function arrayContains($str, array $arr)\t{\r\n\t\t//write_log(\"Function Fired.\");\r\n\t\t$result = array_intersect($arr,explode(\" \",$str));\r\n\t\tif (count($result)==1) $result = true;\r\n\t\tif (count($result)==0) $result = false;\r\n\t\treturn $result;\r\n\t}", "function Set($strWhere=NULL, $arrWhere=NULL)\r\n\t{\r\n\t\tif (!is_null($strWhere))\r\n\t\t{\r\n\t\t\t$this->_strWhere = $strWhere;\r\n\t\t}\r\n\t\t\r\n\t\tif (is_array($arrWhere) || is_object($arrWhere))\r\n\t\t{\r\n\t\t\t$this->_arrWhere = $arrWhere;\r\n\t\t}\r\n\t}", "function Query ($QueryString);", "public function where($table,$column,$data = \"\");", "protected function getQueryCondition()\n {\n $parts = [];\n foreach ($this->fields as $field) {\n $parts[] = \"{$field} LIKE :pattern\";\n }\n return implode(' AND ', $parts);\n }", "private function setQueryString ($string) {\n\t\tif (empty (trim ($string))) {\n\t\t\treturn ('Command requires argument in the form of a query. E.G. /anime black lagoon');\n\t\t}\n\t\t\n\t\t$this->api_url = 'http://api.jikan.me/search/anime/'.urlencode ($string).'/1';\n\t}", "function BasicSearchWhere() {\r\n\t\tglobal $Security;\r\n\t\t$sSearchStr = \"\";\r\n\t\t$sSearchKeyword = $this->BasicSearch->Keyword;\r\n\t\t$sSearchType = $this->BasicSearch->Type;\r\n\t\tif ($sSearchKeyword <> \"\") {\r\n\t\t\t$sSearch = trim($sSearchKeyword);\r\n\t\t\tif ($sSearchType <> \"=\") {\r\n\t\t\t\twhile (strpos($sSearch, \" \") !== FALSE)\r\n\t\t\t\t\t$sSearch = str_replace(\" \", \" \", $sSearch);\r\n\t\t\t\t$arKeyword = explode(\" \", trim($sSearch));\r\n\t\t\t\tforeach ($arKeyword as $sKeyword) {\r\n\t\t\t\t\tif ($sSearchStr <> \"\") $sSearchStr .= \" \" . $sSearchType . \" \";\r\n\t\t\t\t\t$sSearchStr .= \"(\" . $this->BasicSearchSQL($sKeyword) . \")\";\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t$sSearchStr = $this->BasicSearchSQL($sSearch);\r\n\t\t\t}\r\n\t\t\t$this->Command = \"search\";\r\n\t\t}\r\n\t\tif ($this->Command == \"search\") {\r\n\t\t\t$this->BasicSearch->setKeyword($sSearchKeyword);\r\n\t\t\t$this->BasicSearch->setType($sSearchType);\r\n\t\t}\r\n\t\treturn $sSearchStr;\r\n\t}", "function verify_selected($selected, $options)\n{\n $is_arr = true;\n\n if (!is_array($selected)) {\n $selected = array($selected);\n $is_arr = false;\n }\n if (!is_array($options)) {\n $options = explode(\"\\r\\n\", $options);\n }\n\n // convert options to safe_send as keys\n $opts = safe_send($options, true);\n $foo = array_pair($opts, $options);\n\n // eliminate mismatched values\n $verified = array();\n foreach ($selected as $k => $v) {\n $vv = str_replace('=', '%3D', $v);\n if (array_key_exists($vv, $foo)) {\n $verified[] = $foo[$vv];\n }\n }\n\n if (empty($verified)) {\n return false;\n }\n\n if (!$is_arr) {\n return $verified[0];\n } else {\n return $verified;\n }\n}", "function queryFilterContains(&$layout_def)\n {\n $matches = explode(',', $layout_def['input_name0']);\n $q = \"\";\n foreach ($matches as $match) {\n // Make the match field the lowercase version of the field. This feels\n // a little dirty but I bet Mike Rowe would approve\n $match = strtolower(trim($match));\n $q .= \" \" . $this->getLowercaseColumnSelect($layout_def) . \" LIKE '%\" .$GLOBALS['db']->quote($match).\"%' OR\";\n }\n\n return rtrim($q, \" OR\");\n }", "function testFilteredQuery()\n {\n $q1 = MysqlQueryFactory::getInstance(array(\n \"parameters\" => array(\n \"simple\" => array(\"TYPE\" => \"String\"),\n \"number\" => array(\"TYPE\" => \"Integer\"),\n \"number2\" => array(\"TYPE\" => \"Integer\")\n ),\n \"base\" => \"SELECT * FROM MiTest WHERE [[%filter%]] \"\n ));\n $q1->setConnection($this->connection);\n $g=new StorageEngineGetParams(array(\"query\"=>\"test\",\"filter\"=>array(\"FIELD\"=>\"simple\",\"OPERATOR\"=>\"EQUALS\",\"VALUE\"=>\"Ho'la\")));\n $composed=$q1->parse($g);\n $this->assertEquals(\"SELECT * FROM MiTest WHERE simple = 'Ho\\\\'la'\",trim($composed));\n }", "function get_toggleqstring($arg,$str){\n GLOBAL $SA_DEV_GLOBALS;\n $argstr = $SA_DEV_GLOBALS[$arg] ? 0 : 1;\n return sa_dev_qstring($str,$argstr);\n}", "function get_array_containing_part_of_string ($string, $array) {\n\tforeach ($array as $value) {\n\t\t//if (strstr($string, $url)) { // mine version\n\t\tif (strpos($string, $value) !== FALSE) { // Yoshi version\n\t\t\treturn $value;\n\t\t\tbreak;\n\t\t\t\n\t\t}\n\t}\n return false;\n\t\n}", "function jqGridGetWhereClause($col, $oper, $val)\n{\n\t$ops = array(\n\t\t'eq'=>'=', //equal\n\t\t'ne'=>'<>',//not equal\n\t\t'lt'=>'<', //less than\n\t\t'le'=>'<=',//less than or equal\n\t\t'gt'=>'>', //greater than\n\t\t'ge'=>'>=',//greater than or equal\n\t\t'bw'=>'LIKE', //begins with\n\t\t'bn'=>'NOT LIKE', //doesn't begin with\n\t\t'in'=>'LIKE', //is in\n\t\t'ni'=>'NOT LIKE', //is not in\n\t\t'ew'=>'LIKE', //ends with\n\t\t'en'=>'NOT LIKE', //doesn't end with\n\t\t'cn'=>'LIKE', // contains\n\t\t'nc'=>'NOT LIKE' //doesn't contain\n\t); \n\tif($oper == 'bw' || $oper == 'bn') $val .= '%';\n\tif($oper == 'ew' || $oper == 'en' ) $val = '%'.$val;\n\tif($oper == 'cn' || $oper == 'nc' || $oper == 'in' || $oper == 'ni') $val = '%'.$val.'%';\n\treturn \"$col {$ops[$oper]} '$val'\";\n}", "function getSearchString()\n{\n $includedSearchString = getIncludedSearchString();\n $excludedSearchString = getExcludedSearchString();\n $searchString =\"\";\n if ($includedSearchString != \"\" && $excludedSearchString !=\"\"){\n $searchString = \" WHERE (\".$includedSearchString;\n $searchString = substr($searchString, 0, strlen($searchString) - 4) . \")\"; //delete the last \" OR \" four characters\n $excludeString = substr($excludedSearchString, 0, strlen($excludedSearchString) - 5); //delete the last \" AND \" five characters\n $searchString .= \" AND (\" . $excludeString . \")\"; //add exclude aspects at the end\n }elseif($includedSearchString != \"\"){\n $searchString = \" WHERE (\".$includedSearchString;\n $searchString = substr($searchString, 0, strlen($searchString) - 4) . \")\"; //delete the last \" OR \" four characters\n }elseif($excludedSearchString !=\"\"){\n $searchString = \" WHERE (\";\n $excludeString = substr($excludedSearchString, 0, strlen($excludedSearchString) - 5); //delete the last \" AND \" five characters\n $searchString .= $excludeString . \")\"; //add exclude aspects at the end\n }\n return $searchString;\n}", "function matchesCriterium ($criterium, $value) {\r\n return false;\r\n }", "function areSet($submit, $arr) {\n if(empty($submit)) return false;\n $json = json_encode($submit);\n foreach ($arr as $variable) {\n if (strpos($json, $variable)==-1) return false;\n }\n return true;\n}", "public function globalVarConditionMatchesOnLowerThanOrEqualExpression() {}" ]
[ "0.61071366", "0.6106981", "0.60032266", "0.5493987", "0.54862773", "0.5375508", "0.5322749", "0.52614224", "0.5230418", "0.5209484", "0.5169835", "0.5141447", "0.5137298", "0.5120867", "0.5041792", "0.50217605", "0.5012153", "0.5000738", "0.499501", "0.49881607", "0.49745792", "0.4962824", "0.49351728", "0.49259967", "0.49259928", "0.49233535", "0.49222168", "0.49159253", "0.49108985", "0.49091238", "0.48952597", "0.4891277", "0.4885149", "0.488347", "0.48720023", "0.48697925", "0.48612288", "0.48607415", "0.48570833", "0.485696", "0.48479757", "0.48372453", "0.4836776", "0.48289225", "0.48178524", "0.48062828", "0.48004737", "0.47848856", "0.47708744", "0.47563317", "0.47527742", "0.47501957", "0.47479388", "0.4746808", "0.4745445", "0.4743837", "0.4743272", "0.47430366", "0.4737723", "0.47332057", "0.47295618", "0.4721881", "0.47110438", "0.4703561", "0.46991765", "0.4697715", "0.46945286", "0.46916348", "0.46915784", "0.46838012", "0.46823144", "0.46658584", "0.46658504", "0.46653736", "0.46594995", "0.46511665", "0.4650665", "0.46484363", "0.46424252", "0.46308437", "0.46254128", "0.46220243", "0.46216017", "0.4617856", "0.46145576", "0.46144396", "0.4605381", "0.4605221", "0.46037388", "0.46029156", "0.46020982", "0.459968", "0.45855656", "0.45826977", "0.45809194", "0.45788258", "0.45731208", "0.4566907", "0.45648608", "0.4564417", "0.45625812" ]
0.0
-1
Nota: il metodo non gestisce POST di tipo 'application/xwwwformurlencoded' ma solo di tipo 'application/json'
protected function getJsonDecodedFromPost(){ // $this->app->response()->header("Content-Type", "application/json"); // obtain the JSON of the body of the request $post = json_decode($this->app->request()->getBody(), true); // make it a PHP associative array return $post; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function Angular(){\n\t\t\tif(isset($_SERVER[\"CONTENT_TYPE\"]) && strpos($_SERVER[\"CONTENT_TYPE\"], \"application/json\") !== false) {\n\t\t\t $_POST = array_merge($_POST, (array) json_decode(trim(file_get_contents('php://input')), true));\n\t\t\t}\n\t\t}", "function getPOSTData() {\n // check headers for one of two specific content-types\n $headers = getallheaders();\n $headerError = 'You must specify a Content-Type of either `application/x-www-form-urlencoded` or `application/json`';\n if ( !isset($headers['Content-Type']) ) {\n errorExit( 400, $headerError );\n }\n\n if ( $headers['Content-Type'] === 'application/json' ) {\n // parse the input as json\n $requestBody = file_get_contents( 'php://input' );\n $data = json_decode( $requestBody );\n if ( $data === null ) {\n errorExit( 400, 'Error parsing JSON' );\n }\n return $data;\n } else if ( $headers['Content-Type'] === 'application/x-www-form-urlencoded' ) {\n // convert the $_POST data from an associative array to an object\n return (object)$_POST;\n } else {\n errorExit( 400, $headerError );\n }\n}", "private static function getPostParams()\n\t{\n\t\treturn (count($_POST) > 0) ? $_POST : json_decode(file_get_contents('php://input'), true);\n\t}", "public function testPutDataFormUrlEncoded(): void\n {\n $this->configRequest([\n 'headers' => [\n 'Content-Type' => 'application/x-www-form-urlencoded',\n ],\n ]);\n $this->put('/request_action/post_pass', ['title' => 'value']);\n $this->assertResponseOk();\n $data = json_decode('' . $this->_response->getBody());\n $this->assertSame('value', $data->title);\n }", "function set_submit_normal()\n\t{\n\t\t$this->_submit_type = \"application/x-www-form-urlencoded\";\n\t}", "private function setPostParameters(): void\n {\n $params = filter_input_array(INPUT_POST);\n\n if (!isset($params)) {\n $this->body = (object)array();\n return;\n }\n\n $this->body = $params;\n }", "function _parse_raw_http_request_urlencoded($input)\n{\n $post_data = array();\n\n $pairs = explode('&', $input);\n foreach ($pairs as $pair) {\n $exploded = explode('=', $pair, 2);\n if (count($exploded) == 2) {\n $key = urldecode($exploded[0]);\n $val = urldecode($exploded[1]);\n if (get_magic_quotes_gpc()) {\n $val = addslashes($val);\n }\n\n if (substr($key, -2) == '[]') {\n $key = substr($key, 0, strlen($key) - 2);\n if (!isset($post_data[$key])) {\n $post_data[$key] = array();\n }\n $post_data[$key][] = $val;\n } else {\n $post_data[$key] = $val;\n }\n }\n }\n\n return $post_data;\n}", "private function POST() {\n global $_POST;\n $postData = array();\n foreach($_POST as $key => $value) {\n $postData[$key] = $value;\n }\n $this -> response[\"response\"] = $postData;\n return;\n }", "public function LeerJSONPost($request, $response, $args){\n $valor = $args['param'];\n \n //$response->getBody()->Write($valor);\n //objeto enviado via FormData\n //$listaDeParametros = $request->getParsedBody();\n //$response->getBody()->Write($listaDeParametros['pass']);\n //El dato llega por el body como texto\n \n $ObjetoProvenienteDelFront = json_decode($request->getBody());\n //var_dump($ObjetoProvenienteDelFront);\n\n //recorro los valores del objeto\n $MiUsuario = new Usuario();\n foreach ($ObjetoProvenienteDelFront as $atr => $valueAtr) {\n $MiUsuario->{$atr} = $valueAtr;\n }\n\n\n $response->getBody()->Write(json_encode($MiUsuario));\n\n return $response;\n }", "abstract public function post($data);", "static public function application_x_www_form_urlencoded($request_body)\n {\n $data = array();\n parse_str($request_body, $data);\n return $data;\n }", "function getallheaders()\n{\n return ['Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8'];\n}", "protected function obtainPostRequest() {\n /*\n * If the request was sent in JSON format (for example from an mobile app) \n * we will transform it into a format that can be interpreted by PHP\n */ \n $request = Request::createFromGlobals();\n if ($request->headers->get('Content-Type') == 'application/json') {\n $data = json_decode($request->getContent(), true);\n $request->request->replace(is_array($data) ? $data : array());\n }\n return $request->request;\n }", "function parse_parameters($data)\n{\n $parameters = array();\n $body_params = array();\n //if we get a GET, then parse the query string\n if($_SERVER['REQUEST_METHOD'] == 'GET') {\n if (isset($_SERVER['QUERY_STRING'])) {\n // make this more defensive\n return $_GET;\n }\n } else {\n // Otherwise it is POST, PUT or DELETE.\n // At the moment, we only deal with JSON\n //$data = file_get_contents(\"php://input\");\n $body_params = json_decode($data, TRUE);\n print_r($body_params);\n }\n\n foreach ($body_params as $field => $value) {\n $parameters[$field]= $value;\n }\n return $parameters;\n}", "private function retrieveJsonPostData()\n {\n $rawData = file_get_contents(\"php://input\");\n // this returns null if not valid json\n return json_decode($rawData);\n }", "public function adjustRequestContentType()\n {\n if (in_array($this->method, ['GET', 'DELETE', 'HEAD', 'OPTIONS'])) {\n return;\n }\n\n if ($this->method == 'POST') {\n $fieldName = '_post';\n } else {\n $fieldName = 'adjustedRawInputData';\n }\n\n $contentType = HttpHelper::cleanContentType($this->server('CONTENT_TYPE'));\n\n if ($contentType == 'application/json') {\n $this->$fieldName = json_decode($this->rawRequestData(), true);\n if ($this->rawRequestData() && strpos(trim($this->rawRequestData()), '{') === 0 && !$this->$fieldName) {\n throw new HttpException('Request data are malformed. Please check it.', 400, null, 'Bad Request');\n }\n\n } else if ($contentType == 'application/xml') {\n $requestBody = $this->rawRequestData();\n\n // Inject XMLExternalEntity vulnerability\n $vuln = $this->pixie->vulnService->getVulnerability('XMLExternalEntity');\n $protected = $vuln !== true && !$vuln['enabled'];\n\n if ($protected) {\n libxml_disable_entity_loader(true);\n }\n\n try {\n $xml = simplexml_load_string($requestBody);\n } catch (\\Exception $e) {\n if ($protected) {\n throw new HttpException('Invalid XML Body.', 400, $e, 'Bad Request');\n } else {\n throw $e;\n }\n }\n\n if ($requestBody && $xml === false) {\n throw new HttpException('Request data are malformed. Please check it.', 400, null, 'Bad Request');\n }\n $this->$fieldName = json_decode(json_encode($xml), true);\n }\n\n $this->$fieldName = is_array($this->$fieldName) ? $this->$fieldName : [];\n }", "function getParameters(){\n // Parse incoming query and variables\n return (isset($_SERVER['CONTENT_TYPE']) && strpos($_SERVER['CONTENT_TYPE'], 'application/json') !== false) \n ? json_decode( file_get_contents('php://input'), true) \n : $_REQUEST;\n\n}", "public static function json()\n {\n try {\n $json = json_decode(file_get_contents(\"php://input\"), true);\n if (!empty($json)) {\n $form = [];\n foreach ($json as $name => $value) {\n if (!is_array($value)) {\n $form[htmlspecialchars($name)] = htmlspecialchars($value);\n } else {\n foreach ($value as $n => $v) {\n if (!is_array($v)) {\n $form[htmlspecialchars($name)][$n] = htmlspecialchars($v);\n } else {\n foreach ($v as $n2 => $v2) {\n $form[htmlspecialchars($name)][$n][$n2] = htmlspecialchars(\n $v2\n );\n }\n }\n }\n }\n }\n return $form;\n } else {\n return null;\n }\n } catch (Exception $e) {\n die($e);\n }\n }", "function _post_format_request($qvs)\n {\n }", "protected function setPostData()\n\t{\n\t\t$this->request->addPostFields($this->query->getParams());\n\t}", "function getInput(){\n return json_decode(file_get_contents('php://input'), true);\n }", "public function to_postdata()\n {\n $total = array();\n foreach ($this->parameters as $k => $v)\n {\n if (is_array($v))\n {\n foreach ($v as $va)\n $total[] = OAuthUtil::urlencode_rfc3986($k) . \"[]=\" . OAuthUtil::urlencode_rfc3986($va);\n }\n else\n $total[] = OAuthUtil::urlencode_rfc3986($k) . \"=\" . OAuthUtil::urlencode_rfc3986($v);\n }\n $out = implode(\"&\", $total);\n return $out;\n }", "function receive() {\n // Input type 1.\n if ($this->method == 'POST' && isset($_POST[$this->id . '-form_id']) && $_POST[$this->id . '-form_id'] == $this->id) {\n $this->request['raw_input'] = $_POST;\n }\n // Input types 2 and 3.\n else {\n $this->request['raw_input'] = $_GET;\n }\n }", "public function formParams() {\n\t\tswitch($this->method()) {\n\t\tcase 'GET':\n\t\tcase 'DELETE':\n\t\tcase 'HEAD':\n\t\tcase 'OPTIONS':\n\t\tcase 'TRACE':\n\t\t\t$query_str = $this->queryString();\n\t\t\tbreak;\n\t\tdefault:\n\t\t\t// TODO Validate Content-Type\n\t\t\t$query_str = $this->getBody();\n\t\t}\n\t\tparse_str($query_str, $result);\n\t\treturn $result;\n\t}", "private function getPostData() {\n\t\t$data = null;\n\t\t\n\t\t// Get from the POST global first\n\t\tif (empty($_POST)) {\n\t\t\t// For API calls we need to look at php://input\n\t\t\tif (!empty(file_get_contents('php://input'))) {\n\t\t\t\t$data = @json_decode(file_get_contents('php://input'), true);\n\t\t\t\tif ($data === false || $data === null) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t//TODO: What is this for? isn't 'php://input' always empty at this point?\n\t\t\t\t$dataStr = file_get_contents('php://input');\n\t\t\t\tparse_str($dataStr, $data);\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t$data = $_POST;\n\t\t}\n\t\t\n\t\t// Normalize boolean values\n\t\tforeach ($data as $name => &$value) {\n\t\t\tif ($value === 'true') {\n\t\t\t\t$value = true;\n\t\t\t}\n\t\t\telse if ($value === 'false') {\n\t\t\t\t$value = false;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $data;\n\t}", "function http_post_fields($url, ?array $data = null, ?array $files = null, ?array $options = null, ?array &$info = null) {}", "public function post($request);", "public function post();", "public function post();", "public function post();", "function parse_raw_http_request()\n{\n if (!isset($_SERVER['CONTENT_TYPE'])) {\n return null;\n }\n\n // Read incoming data\n $input = file_get_contents('php://input');\n\n // Grab multipart boundary from content type header\n $matches = array();\n preg_match('#boundary=(.*)$#', $_SERVER['CONTENT_TYPE'], $matches);\n\n if (count($matches) == 0) {\n // Content type is probably regular form-encoded\n $post_data = _parse_raw_http_request_urlencoded($input);\n } else {\n // Multipart encoded (unfortunately for modern PHP versions, this code can't run as php://input is not populated for multipart)...\n $boundary = $matches[1];\n $post_data = _parse_raw_http_request_multipart($input, $boundary);\n }\n\n return $post_data;\n}", "public function getJsonRequestParams()\n {\n return json_decode(file_get_contents(\"php://input\"));\n }", "public function post_body() {\n\t\treturn file_get_contents( 'php://input' );\n\t}", "function convPOSTCharset()\t{\n\t\tif ($this->renderCharset != $this->metaCharset && is_array($_POST) && count($_POST))\t{\n\t\t\t$this->csConvObj->convArray($_POST,$this->metaCharset,$this->renderCharset);\n\t\t\t$GLOBALS['HTTP_POST_VARS'] = $_POST;\n\t\t}\n\t}", "public static function _POST()\n {\n if(!self::$_post) {\n $values = $_POST;\n self::$_post = new HttpParams($values);\n }\n return self::$_post;\n }", "function is_post_request()\n{\n return $_SERVER['REQUEST_METHOD'] == 'POST';\n}", "#[Pure]\nfunction http_request_body_encode(array $fields, array $files) {}", "public static function post($variable='*'){\n \n self::load();\n \n if($variable!='*'){\n return self::$request->request->get($variable); \n }\n else{\n return self::$request->request->all();\n }\n }", "function is_post_request() {\n return $_SERVER['REQUEST_METHOD'] === 'POST';\n}", "abstract public function post();", "public function testPostDataHttpServer(): void\n {\n $this->post('/request_action/post_pass', ['title' => 'value']);\n $data = json_decode('' . $this->_response->getBody());\n $this->assertSame('value', $data->title);\n $this->assertHeader('X-Middleware', 'true');\n }", "protected function _prepare($data = array()) {\n\t\tif (empty($data)) {\n\t\t\treturn null;\n\t\t}\n\t\tif (is_array($data)) {\n\t\t\t$this->request->headers(array(\n\t\t\t\t'Content-Type' => 'application/x-www-form-urlencoded',\n\t\t\t));\n\t\t\t$data = substr($this->request->queryString($data), 1);\n\t\t}\n\t\treturn $this->request->body($data);\n\t}", "function http_get_body(){\n\n // read content from body\n $content = file_get_contents('php://input');\n\n // check content encoding\n switch(http_get_content_encoding()){\n\n // json content encoding\n case \"json\": {\n\n // return content as json\n return json_decode($content);\n }\n\n // xml content encoding\n case \"xml\": {\n\n // return content as xml\n return new SimpleXMLElement($content);\n }\n }\n}", "abstract public function getRequestBody();", "private function getInput() : void {\n\t\t$input = @file_get_contents('php://input');\n\n\t\t// Check if input is json encoded\n\t\t$decode = json_decode($input, true);\n\t\tif (json_last_error() == JSON_ERROR_NONE) {\n\t\t\t$input = $decode;\n\t\t}\n\n\t\tif (!is_array($input)) {\n\t\t\t$input = (array) $input;\n\t\t}\n\n\t\t$get = $_SERVER['QUERY_STRING'] ?? '';\n\t\t$get = explode('&', $get);\n\t\tforeach ($get as $item) {\n\t\t\t$item = explode('=', $item);\n\t\t\tif (count($item) !== 2) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t$this->input[$item[0]] = $item[1];\n\t\t}\n\n\t\t$this->input = array_merge($this->input, $input);\n\t}", "public function request(){\n\t\t$request = file_get_contents('php://input');\n\t\treturn json_decode($request,true);\n\t}", "function RequirePostRequest()\n{\n if($_SERVER['REQUEST_METHOD'] !== 'POST')\n {\n header('HTTP/1.1 400 Bad Request');\n die(\"The Prybar API currently only accepts POST requests\");\n }\n}", "function handle_post($indata) {\n// showDebug('form_class POST:');\n// showArray($indata); \n return;\n }", "public function resolveInput()\n {\n $value = $this->_value( @$_SERVER['CONTENT_TYPE'], '' );\n $value = $this->_value( @$_SERVER['HTTP_CONTENT_TYPE'], $value );\n $value = $this->_value( @$_SERVER['HTTP_X_CONTENT_TYPE'], $value );\n $parts = array();\n\n if( !empty( $value ) )\n {\n $value = 'ctype='. $value;\n $value = preg_replace( '/\\;\\s+/', '&', $value );\n parse_str( $value, $parts );\n }\n $this->ctype = $this->_value( @$parts['ctype'], '' );\n $this->boundary = $this->_value( @$parts['boundary'], '' );\n $this->input = trim( file_get_contents( 'php://input' ) );\n }", "public function readHttpRequest(){\n\t\t\t$incomingFormData = file_get_contents('php://input');\n\t\t\t\n\t\t\treturn $incomingFormData;\n\t\t\t}", "function post($param, $default = null) {\n static $rawPost;\n if (!empty($_POST[$param]))\n return is_array($_POST[$param]) ? $_POST[$param] : trim($_POST[$param]);\n if (!$rawPost) parse_str(file_get_contents('php://input'), $rawPost);\n if (!empty($rawPost[$param])) {\n return $rawPost[$param];\n }\n return $default;\n}", "function _prepare_post_body($formvars, $formfiles)\n\t{\n\t\tsettype($formvars, \"array\");\n\t\tsettype($formfiles, \"array\");\n\t\t$postdata = '';\n\n\t\tif (count($formvars) == 0 && count($formfiles) == 0)\n\t\t\treturn;\n\t\t\n\t\tswitch ($this->_submit_type) {\n\t\t\tcase \"application/x-www-form-urlencoded\":\n\t\t\t\treset($formvars);\n\t\t\t\twhile(list($key,$val) = each($formvars)) {\n\t\t\t\t\tif (is_array($val) || is_object($val)) {\n\t\t\t\t\t\twhile (list($cur_key, $cur_val) = each($val)) {\n\t\t\t\t\t\t\t$postdata .= urlencode($key).\"[]=\".urlencode($cur_val).\"&\";\n\t\t\t\t\t\t}\n\t\t\t\t\t} else\n\t\t\t\t\t\t$postdata .= urlencode($key).\"=\".urlencode($val).\"&\";\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase \"multipart/form-data\":\n\t\t\t\t$this->_mime_boundary = \"Snoopy\".md5(uniqid(microtime()));\n\t\t\t\t\n\t\t\t\treset($formvars);\n\t\t\t\twhile(list($key,$val) = each($formvars)) {\n\t\t\t\t\tif (is_array($val) || is_object($val)) {\n\t\t\t\t\t\twhile (list($cur_key, $cur_val) = each($val)) {\n\t\t\t\t\t\t\t$postdata .= \"--\".$this->_mime_boundary.\"\\r\\n\";\n\t\t\t\t\t\t\t$postdata .= \"Content-Disposition: form-data; name=\\\"$key\\[\\]\\\"\\r\\n\\r\\n\";\n\t\t\t\t\t\t\t$postdata .= \"$cur_val\\r\\n\";\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$postdata .= \"--\".$this->_mime_boundary.\"\\r\\n\";\n\t\t\t\t\t\t$postdata .= \"Content-Disposition: form-data; name=\\\"$key\\\"\\r\\n\\r\\n\";\n\t\t\t\t\t\t$postdata .= \"$val\\r\\n\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\treset($formfiles);\n\t\t\t\twhile (list($field_name, $file_names) = each($formfiles)) {\n\t\t\t\t\tsettype($file_names, \"array\");\n\t\t\t\t\twhile (list(, $file_name) = each($file_names)) {\n\t\t\t\t\t\tif (!is_readable($file_name)) continue;\n\n\t\t\t\t\t\t$fp = fopen($file_name, \"r\");\n\t\t\t\t\t\t$file_content = fread($fp, filesize($file_name));\n\t\t\t\t\t\tfclose($fp);\n\t\t\t\t\t\t$base_name = basename($file_name);\n\n\t\t\t\t\t\t$postdata .= \"--\".$this->_mime_boundary.\"\\r\\n\";\n\t\t\t\t\t\t$postdata .= \"Content-Disposition: form-data; name=\\\"$field_name\\\"; filename=\\\"$base_name\\\"\\r\\n\\r\\n\";\n\t\t\t\t\t\t$postdata .= \"$file_content\\r\\n\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$postdata .= \"--\".$this->_mime_boundary.\"--\\r\\n\";\n\t\t\t\tbreak;\n\t\t}\n\n\t\treturn $postdata;\n\t}", "private function parseInputValues()\r\n {\r\n parse_str(file_get_contents(\"php://input\"),$data);\r\n\r\n $data = reset($data);\r\n \r\n $data = preg_split('/------.*\\nContent-Disposition: form-data; name=/', $data);\r\n \r\n $this->inputValues = array();\r\n \r\n foreach($data as $input)\r\n {\r\n // get key\r\n preg_match('/\"([^\"]+)\"/', $input, $key);\r\n \r\n // get data\r\n $input = preg_replace('/------.*--/', '', $input);\r\n \r\n // Store to an array\r\n $this->inputValues[$key[1]] = trim(str_replace($key[0], '', $input));\r\n }\r\n }", "function rest_post_data($url, $data)\n{\n if (is_array($data)) {\n $data = json_encode($data);\n }\n\n\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_POST, 1);\n curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));\n curl_setopt($ch, CURLOPT_POSTFIELDS, $data);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n $result = curl_exec($ch);\n curl_close($ch);\n return $result;\n}", "function handlePost($isValid, $save)\n{\n $newId = 0;\n\n try {\n $post = trim(file_get_contents(\"php://input\"));\n $data = json_decode($post, true);\n $save($data);\n $newId = $GLOBALS['db']->lastInsertId();\n } catch (Exception $e) {\n echo \"exeption occured\";\n echo $e->getMessage();\n }\n\n $resp = new stdClass();\n $resp->id = $newId;\n echo json_encode($resp);\n}", "function ccrequest_getPostedContent(&$outData) {\r\n\t$postrawdata = file_get_contents(\"php://input\");\r\n\t//parse it into vars\r\n\t//parse_str($postrawdata);\t\r\n\t\r\n\tif (!isset($postrawdata)) {return FALSE;}\r\n\tif ($postrawdata==\"\") {return FALSE;}\r\n\t\r\n\t$outData = $postrawdata;\r\n\treturn TRUE;\t\r\n}", "public function showRequestPost();", "public function to_postdata()\n {\n return http_build_query($this->postFields);\n }", "public function convPOSTCharset() {}", "function get_JSON_input()\n {\n global $_json_input;\n if ( $_json_input != null ) return $_json_input;\n\n // Receive the RAW post data.\n $content = trim(file_get_contents(\"php://input\"));\n\n // Attempt to decode the incoming RAW post data from JSON.\n $_json_input = json_decode($content, true);\n\n // If json_decode failed, the JSON is invalid.\n if (!is_array($_json_input)) {\n return null;\n }\n\n return $_json_input;\n }", "public function inserpaket(){\n\t\t\ttry {\n\t\t\t\tif ($this->input->post()) {\n\t\t\t\t\t$post = $this->input->post();\n\t\t\t\t\techo json_encode($post);\n\t\t\t\t}\n\t\t\t} catch (Exception $e) {\n\t\t\t\techo $e;\n\t\t\t}\n\t\t}", "protected function getRestParams() {\n\t\t$result = array();\n\t\tif (function_exists('mb_parse_str')) {\n\t\t\tmb_parse_str(file_get_contents('php://input'), $result);\n\t\t} else {\n\t\t\tparse_str(file_get_contents('php://input'), $result);\n\t\t}\n\n\t\treturn $result;\n\t}", "public function parsePostData()\n {\n }", "public function postMamodalFormulario(Request $rq)\n {\n $result['status'] = true;\n $result['mensaje'] = 'llego bien';\n return json_encode($result);\n }", "public function ParsePostData() {}", "function parseIncoming(){\r\n\t\t# THIS NEEDS TO BE HERE!\r\n\t\t$this->get_magic_quotes = @get_magic_quotes_gpc();\r\n\r\n \t\tif(is_array($_GET)){\r\n\t\t\twhile(list($k, $v) = each($_GET)){\r\n\t\t\t\tif(is_array($_GET[$k])){\r\n\t\t\t\t\twhile(list($k2, $v2) = each($_GET[$k])){\r\n\t\t\t\t\t\t$this->input[$this->parseCleanKey($k)][$this->parseCleanKey($k2)] = $this->parseCleanValue($v2);\r\n\t\t\t\t\t}\r\n\t\t\t\t}else{\r\n\t\t\t\t\t$this->input[$this->parseCleanKey($k)] = $this->parseCleanValue($v);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\t// Overwrite GET data with post data\r\n\t\tif(is_array($_POST)){\r\n\t\t\twhile(list($k, $v) = each($_POST)){\r\n\t\t\t\tif(is_array($_POST[$k])){\r\n\t\t\t\t\twhile(list($k2, $v2) = each($_POST[$k])){\r\n\t\t\t\t\t\t$this->input[$this->parseCleanKey($k)][$this->parseCleanKey($k2)] = $this->parseCleanValue($v2);\r\n\t\t\t\t\t}\r\n\t\t\t\t}else{\r\n\t\t\t\t\t$this->input[$this->parseCleanKey($k)] = $this->parseCleanValue($v);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t$this->input['requestMethod'] = strtolower($_SERVER['REQUEST_METHOD']);\r\n//\t\techo '<pre>'.print_r($this->input, 1).'</pre>';exit;\r\n\t}", "public function post($name='', $xssClean=true) {\n if($name) {\n if(!isset($_POST[$name]))\n return null;\n \n if(!$xssClean)\n return $_POST[$name];\n \n if(!isset($this->post_data[$name]))\n $this->post_data[$name] = $this->_grubGlobalArray($_POST, $name, $xssClean, self::CONTENT_TYPE_STRING);\n \n return $this->post_data[$name];\n }\n else {\n if(!$xssClean)\n return $_POST;\n \n $this->post_data = $this->arrayXssClean($_POST, self::CONTENT_TYPE_STRING);\n \n return $this->post_data;\n }\n }", "function post(Request &$request, Response &$response);", "function fix_request(){\n\t$var=array();\n\tforeach($_GET as $k=>$v){\n//\t\tif(!is_array($v)){\n//\t\t\tforeach($filtros as $filtro){\n//\t\t\t\t$v=str_replace(trim($filtro),'',$v);\n//\t\t\t}\n//\t\t\t$_GET[$k]=$v;\n\t\t\t$var[$k]=$v;\n//\t\t}\n\t}\n\tforeach($_POST as $k=>$v){\n//\t\tif(!is_array($v)){\n//\t\t\tforeach($filtros as $filtro){\n//\t\t\t\t$v=str_replace(trim($filtro),'',$v);\n//\t\t\t}\n//\t\t\t$_POST[$k]=$v;\n\t\t\t$var[$k]=$v;\n//\t\t}\n\t}\n\t$_REQUEST=$var;\n}", "abstract public function post(Request $request);", "public function testaAction()\n\t{\n\t\t\t\n\t\t//die('---');\n\t\n\t\t/*$html = <<<TEXT\n\t\t<form method = \"POST\" action=\"https://www.guru.com/pro/ProjectDetail.aspx/SubmitProposal\">\n\t\t<input type=\"hidden\" name=\"Proposal\" value='\"{\"ProjectID\":\"906592\",\"CompanyID\":\"415440\",\"ProfileID\":1589705,\"BidType\":\"1\",\"ProposalCost\":\"50\",\"IsPremium\":false,\"Description\":\"I have done this before\",\"AttachmentGroupID\":\"\",\"SaveAsTemplate\":false,\"TemplateID\":null,\"TemplateName\":\"\"}\"'>\n\t\t<input type=\"submit\" value=\"send\">\n\t\t</form>\nTEXT;\n\n\t\tprint $html; die(\"asd\");*/\n\t\t$GuruPostArray = array('Proposal'=>array(\n\t\t\t\t\t'ProjectID'=>'905507',\n\t\t\t\t\t'CompanyID'=>'378569',\n\t\t\t\t\t'ProfileID'=>1596172,\n\t\t\t\t\t'BidType'=>'1',\n\t\t\t\t\t'ProposalCost'=>'50',\n\t\t\t\t\t'IsPremium'=>false,\n\t\t\t\t\t'Description'=>'\"I can help you\"',\n\t\t\t\t\t'AttachmentGroupID'=>'',\n\t\t\t\t\t'SaveAsTemplate'=>false,\n\t\t\t\t\t'TemplateID'=>null,\n\t\t\t\t\t'TemplateName'=>''\n\t\t));\n\t\t//$post_data = '{\"Proposal\":\"{\"ProjectID\":\"905497\",\"CompanyID\":\"576209\",\"ProfileID\":1590813,\"BidType\":\"1\",\"ProposalCost\":\"488\",\"IsPremium\":false,\"Description\":\"I can help you\",\"AttachmentGroupID\":\"\",\"SaveAsTemplate\":false,\"TemplateID\":null,\"TemplateName\":\"\"}\"}';\n\t\t//$post_data = '{\"Proposal\":\"{\\\"ProjectID\\\":\\\"905507\\\",\\\"CompanyID\\\":\\\"378569\\\",\\\"ProfileID\\\":1594462,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"30\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I can help\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}';\n\t\t//$post_data = addslashes($post_data);\n\t\t$post_data = json_encode($GuruPostArray);\n\t\tprint $post_data . '<br>';\n\t\t\n\t\t$post_data = addslashes($post_data);\n\t\t\n\t\tprint '<br><br>'.$post_data. '<br><br>';\n\t\t\n\t\t$post_data = json_encode($post_data);\n\t\t\n\t\t\tprint '<br><br>'.$post_data. '<br><br>';\n\t\t\n\t\t$post_data2 = '{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906593\\\",\\\"CompanyID\\\":\\\"576435\\\",\\\"ProfileID\\\":1589705,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"28\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I ca do it with no problems\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}';\n\t\tprint $post_data2;\n\t\t\n\t\tdie;\n\t\t\n\t\t//$post_data = '{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906593\\\",\\\"CompanyID\\\":\\\"576435\\\",\\\"ProfileID\\\":1589705,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"28\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I ca do it with no problems\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}';\n\t\t\n\t\t//$post_data = '{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906598\\\",\\\"CompanyID\\\":\\\"576435\\\",\\\"ProfileID\\\":1596172,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"28\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I ca do it with no problems\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}';\n\t\t\n\t\t//$post_data = '{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906592\\\",\\\"CompanyID\\\":\\\"576435\\\",\\\"ProfileID\\\":1596172,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"28\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I ca do it with no problems\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}';\n\t\t\n\t\t//$result_data = '{\"d\":\"{\\\"Status\\\":1,\\\"Result\\\":{\\\"ProposalID\\\":12509532,\\\"ProjectID\\\":906598,\\\"CompanyID\\\":136487,\\\"ProfileID\\\":1596172,\\\"BidType\\\":1,\\\"ProfileCategory\\\":\\\"Websites & Ecommerce\\\",\\\"ProposalCost\\\":28.0000,\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I ca do it with no problems\\\",\\\"DatePosted\\\":\\\"2013-01-08-14-00-44\\\",\\\"UrlConvertedDescription\\\":\\\"I ca do it with no problems\\\",\\\"Attachments\\\":[]}}\"}';\n\t\t//print_r(json_decode($result_data,true));\n\t\t//die;\n\t\t\n\t\t/*\n\t\t{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906597\\\",\\\"CompanyID\\\":\\\"576435\\\",\\\"ProfileID\\\":1596172,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"34\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"Choose me\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":false,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"\\\"}\"}\n\t\t*/\n\t\t/*\n\t\t{\"d\":\"{\\\"Status\\\":1,\\\"Result\\\":{\\\"ProposalID\\\":12509558,\\\"ProjectID\\\":906597,\\\"CompanyID\\\":576435,\\\"ProfileID\\\":1596172,\\\"BidType\\\":1,\\\"ProfileCategory\\\":\\\"Websites & Ecommerce\\\",\\\"ProposalCost\\\":34.0000,\\\"IsPremium\\\":false,\\\"Description\\\":\\\"Choose me\\\",\\\"DatePosted\\\":\\\"2013-01-08-14-10-06\\\",\\\"UrlConvertedDescription\\\":\\\"Choose me\\\",\\\"Attachments\\\":[]}}\"}\n\t\t*/\n\t\t\n\t\t/*\n\t\t{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906974\\\",\\\"CompanyID\\\":\\\"566891\\\",\\\"ProfileID\\\":1596172,\\\"BidType\\\":\\\"2\\\",\\\"ProposalCost\\\":\\\"38\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I am a professional designer, I did this before\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":true,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"Template1\\\"}\"}\n\t\t*/\n\t\t\n\t\t/*\n\t\t\n\t\t{\"Proposal\":\"{\\\"ProjectID\\\":\\\"906987\\\",\\\"CompanyID\\\":\\\"572351\\\",\\\"ProfileID\\\":1596172,\\\"BidType\\\":\\\"1\\\",\\\"ProposalCost\\\":\\\"385\\\",\\\"IsPremium\\\":false,\\\"Description\\\":\\\"I am a designer I workde with \\\\\\\"photoshop\\\\\\\" \\\\\\\"corel draw\\\\\\\" + css knowledge and css3\\\",\\\"AttachmentGroupID\\\":\\\"\\\",\\\"SaveAsTemplate\\\":true,\\\"TemplateID\\\":null,\\\"TemplateName\\\":\\\"TEMP2\\\"}\"}\n\t\t\n\t\t*/\n\t\t\n\t\t\n\t\t//print $post_data;\n\t\t$this->addtest($post_data, 44, 5);\t\n\t\tdie;\n\t}", "function asp_decode_params( $params ) {\r\r\n /**\r\r\n * New method for future use.\r\r\n * Detects if there is a _decode_ prefixed input for the current field.\r\r\n * If so, then decodes and overrides the posted value.\r\r\n */\r\r\n foreach ($params as $k=>$v) {\r\r\n if (gettype($v) === \"string\" && substr($v, 0, strlen('_decode_')) == '_decode_') {\r\r\n $real_v = substr($v, strlen('_decode_'));\r\r\n $params[$k] = json_decode(base64_decode($real_v), true);\r\r\n }\r\r\n }\r\r\n return $params;\r\r\n}", "function handlePOSTRequest() {\n if (array_key_exists('submitProjectionRequest', $_POST)) {\n handleProjectionRequest();\n }\n }", "protected function getPostValues() {}", "function post_request($url, $param)\n{\n //リクエスト時のオプション指定\n $options = array(\n 'http' => array(\n 'method' => 'POST', //ここでPOSTを指定\n 'header' => array(\n 'Content-type: application/x-www-form-urlencoded',\n 'User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1'\n ),\n 'content' => http_build_query($param),\n 'ignore_errors' => true,\n 'protocol_version' => '1.1'\n ),\n 'ssl' => array(\n 'verify_peer' => false,\n 'verify_peer_name' => false\n )\n );\n\n //リクエスト実行\n $contents = @file_get_contents($url, false, stream_context_create($options));\n\n //ステータスコード抜粋\n preg_match('/HTTP\\/1\\.[0|1|x] ([0-9]{3})/', $http_response_header[0], $matches);\n $statusCode = (int)$matches[1];\n\n //配列で返すためにjsonのエンコード\n $contents_array = array();\n if($statusCode === 200){\n $contents_array = json_decode($contents);\n }\n return $contents_array;\n}", "protected function validatePOST() {\n return true;\n }", "public function testPostSecuredFormWithUnencodedQuery(): void\n {\n $this->enableSecurityToken();\n $data = [\n 'title' => 'Some title',\n 'body' => 'Some text',\n ];\n $this->post('/posts/securePost?foo=/', $data);\n $this->assertResponseOk();\n $this->assertResponseContains('Request was accepted');\n }", "private function getPostRequest($buffer) {\n $data = array(\"schema\" => self::POST_REQ_SCHEMA, \"data\" => $buffer);\n return $data;\n }", "public function to_postdata() {\n return OAuthUtil::build_http_query($this->parameters);\n }", "public function getPost()\n {\n if (!isset($this->_post)) {\n if (self::$_input && \\bbn\\Str::isJson(self::$_input)) {\n $this->_post = json_decode(self::$_input, 1);\n }\n elseif (!empty($_POST)) {\n $this->_post = $_POST;\n }\n\n if (!$this->_post) {\n $this->_post = [];\n }\n else {\n $this->_has_post = true;\n //$this->_post = bbn\\Str::correctTypes($this->_post);\n foreach ($this->_post as $k => $v) {\n if (X::indexOf($k, '_bbn_') === 0) {\n if (!defined(strtoupper(substr($k, 1)))) {\n define(strtoupper(substr($k, 1)), $v);\n }\n\n unset($this->_post[$k]);\n }\n }\n }\n }\n\n return $this->_post;\n }", "private static function postParams(): array\n {\n $postParams = [];\n\n if (!empty($_POST)) {\n $postParams = filter_input_array(INPUT_POST, FILTER_DEFAULT);\n }\n\n return $postParams;\n }", "function prePost(){\t\n\t\t\n\t\tif( !$_GET['cod'] ) \n\t\t\t$_POST['DataPublicacao'] = date(\"d/m/Y H:i:s\");\n\t\t\t\n\t\t$utils = new Utils();\n\t\t\n\t\t$Url = $utils->cleanUrl($_POST['Nome']);\n\t\t\n\t\t$_POST['Url'] = $Url;\n\t\t\n\t\treturn $_POST;\t\n\t\n\t}", "public function postAction()\n {\n Extra_ErrorREST::setInvalidHTTPMethod($this->getResponse());\n }", "protected function parse_body_params()\n {\n }", "function http_post_data($url, $data = null, ?array $options = null, ?array &$info = null) {}", "abstract protected function getFormTypeParams();", "function unpack_post() {\n // Globals\n global $min_words;\n global $add_num;\n global $add_char;\n global $case_opt;\n global $separator;\n\n if (array_key_exists('min-words', $_POST)) {\n $min_words = $_POST['min-words'];\n }\n\n if (array_key_exists('add-num', $_POST)) {\n $add_num = True;\n }\n\n if (array_key_exists('add-char', $_POST)) {\n $add_char = True;\n }\n\n if (array_key_exists('separator', $_POST)) {\n $separator = $_POST['separator'];\n }\n\n if (array_key_exists('case-opt', $_POST)) {\n $case_opt = $_POST['case-opt'];\n }\n\n // Mostly just for testing\n return [$min_words, (int)$add_num, (int)$add_char, $separator, $case_opt];\n}", "private function parseIncomingParams() {\r\n\t\t$parameters = array ();\r\n\t\t\r\n\t\t// First of all, pull the GET vars\r\n\t\tif (isset ( $_SERVER ['QUERY_STRING'] )) {\r\n\t\t\tparse_str ( $_SERVER ['QUERY_STRING'], $parameters );\r\n\t\t}\r\n\t\t\r\n\t\t// Now how about PUT/POST bodies? These override what we got from GET\r\n\t\t$body = file_get_contents ( \"php://input\" );\r\n\t\t$content_type = false;\r\n\t\tif (isset ( $_SERVER ['CONTENT_TYPE'] )) {\r\n\t\t\t$content_type = $_SERVER ['CONTENT_TYPE'];\r\n\t\t}\r\n\t\tswitch ($content_type) {\r\n\t\t\tcase \"application/json\" :\r\n\t\t\t\t{\r\n\t\t\t\t\ttry {\r\n\t\t\t\t\t\t$body_params = json_decode ( $body );\r\n\t\t\t\t\t\tif ($body_params) {\r\n\t\t\t\t\t\t\tforeach ( $body_params as $param_name => $param_value ) {\r\n\t\t\t\t\t\t\t\t$parameters [$param_name] = $param_value;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\t$this->format = \"json\";\r\n\t\t\t\t\t} catch (Exception $exception) {\r\n\t\t\t\t\t\t$errorResponse = array();\r\n\t\t\t\t\t\t$errorResponse['response'] = App_Constant::$TEXT_ERROR_RESPONSE;\r\n\t\t\t\t\t\t$errorResponse['message'] = App_Constant::$ERROR_FAIL_DB_IMPROPER_CLIENT_REQUEST;\r\n\t\t\t\t\t\treturn $errorResponse;\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t\tbreak;\r\n\t\t\tdefault :\r\n\t\t\t\t// we could parse other supported formats here\r\n\t\t\t\tbreak;\r\n\t\t}\r\n\t\t$this->parameters = $parameters;\r\n\t}", "public function httpPost($redirectTo = null) : string;", "function qa_is_http_post()\n{\n\tif (qa_to_override(__FUNCTION__)) { $args=func_get_args(); return qa_call_override(__FUNCTION__, $args); }\n\n\treturn $_SERVER['REQUEST_METHOD'] === 'POST' || !empty($_POST);\n}", "public function getPostBody(RequestInterface $req, $type = self::TYPE_FORM): array\n {\n $params = $req->getBody()->getContents();\n switch ($type) {\n case self::TYPE_FORM:\n $arr = [];\n parse_str($params, $arr);\n return $arr;\n\n case self::TYPE_JSON:\n $parsed = json_decode($params, true);\n if (!$parsed) {\n return [];\n }\n return $parsed;\n\n default:\n return [];\n }\n }", "function obtenerParametros() {\n\t\t$cuerpo = file_get_contents('php://input');\n\t\tif (isset($cuerpo) == false && $cuerpo !== \"\") {\n\t\t\treturn '';\n\t\t}\t\t\t\n\t\tswitch($_SERVER['REQUEST_METHOD']) {\n\t\t\tcase 'GET':\t\n\t\t\t\t$esLlave = true;\n\t\t\t\t$resultado = array();\n\t\t\t\tfor ($i = 2; $i < sizeof($this->_parametros); $i++) {\n\t\t\t\t\tif ($esLlave) {\n\t\t\t\t\t\t$llave = $this->_parametros[$i];\n\t\t\t\t\t\t$esLlave = !$esLlave;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$resultado[$llave] = $this->_parametros[$i];\n\t\t\t\t\t\t$esLlave = !$esLlave;\n\t\t\t\t\t}\n\t\t\t\t}\t\t\n\t\t\t\t$resultado = (object)$resultado;\n\t\t\t\treturn $resultado;\n\t\t\t\tbreak;\n\t\t\tcase 'POST':\n\t\t\tcase 'PUT':\n\t\t\tcase 'DELETE':\n\t\t\t\treturn json_decode($cuerpo);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\treturn '';\n\t\t\t\tbreak;\n\t\t}\n\t}", "function is_post_request() {\n return (request_method() == 'post');\n}", "protected function getArrPost()\n {\n return $this->getServices()\n ->get(\\Application\\Service\\ServiceJsonPostRequest::class)\n ->setObjRequest(\n $this->getRequest()\n )\n ->getJsonPost();\n }", "private function __parseIncomingData($app) {\n\t\t$parameters = array();\n\t\t$format = '';\n\n\t\t//Check GET \n\t\t$parameters = array_merge($parameters, $_GET, $_POST);\n\n\t\t//Get POST/PUT from PHP input\n\t\t$body = file_get_contents('php://input');\n\n\t\t//Check for content type\n\t\t$content_type = false;\n\t\tif (isset($_SERVER['CONTENT_TYPE'])) {\n\t\t\t$content_type = array_shift(explode(';', $_SERVER['CONTENT_TYPE']));\n\t\t}\n\n\t\tswitch ($content_type) {\n\t\t\tcase 'application/json':\n\t\t\t\t//Decode data\n\t\t\t\t$body_params = json_decode($body, true);\n\n\t\t\t\t//Add to parameters\n\t\t\t\tif ($body_params) {\n\t\t\t\t\tforeach($body_params as $param_name => $param_value) {\n\t\t\t\t\t\t$parameters[$param_name] = $param_value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$format = 'json';\n\t\t\t\tbreak;\n\t\t\tcase 'application/x-www-form-urlencoded':\n\t\t\t\t//Parse variables as query string\n\t\t\t\tparse_str($body, $postvars);\n\n\t\t\t\t//Add to parameters\n\t\t\t\tforeach ($postvars as $f => $v) {\n\t\t\t\t\t$parameters[$f] = $v;\n\t\t\t\t}\n\t\t\t\t$format = 'html';\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t}\n\n\t\t//Save parameters and format\n\t\t$this->parameters = array_merge($app->RouteParams, $parameters);\n\t\t$this->format = $format;\n\t}", "public function methodPost() {\n $jsondata= file_get_contents('php://input');\n $data= json_decode($jsondata,false);\n \n if (!empty($data)) {\n $model= new News();\n $model->saveItem($data);\n return array('ok'=>'ok');\n } else {\n throw new Exception('You must specify an id.');\n }\n }", "protected function json(){\n $this->before(function ($request) {\n if ($request->contentType == \"application/json; charset=utf-8\") {\n $request->data = json_decode($request->data);\n }\n });\n $this->after(function ($response) {\n $response->contentType = \"application/json; charset=utf-8\";\n if (isset($_GET['jsonp'])) {\n $response->body = $_GET['jsonp'].'('.json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES).');';\n } else {\n $response->body = json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);\n }\n });\n }", "protected function json(){\n $this->before(function ($request) {\n if ($request->contentType == \"application/json; charset=utf-8\") {\n $request->data = json_decode($request->data);\n }\n });\n $this->after(function ($response) {\n $response->contentType = \"application/json; charset=utf-8\";\n if (isset($_GET['jsonp'])) {\n $response->body = $_GET['jsonp'].'('.json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES).');';\n } else {\n $response->body = json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);\n }\n });\n }", "protected function json(){\n $this->before(function ($request) {\n if ($request->contentType == \"application/json; charset=utf-8\") {\n $request->data = json_decode($request->data);\n }\n });\n $this->after(function ($response) {\n $response->contentType = \"application/json; charset=utf-8\";\n if (isset($_GET['jsonp'])) {\n $response->body = $_GET['jsonp'].'('.json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES).');';\n } else {\n $response->body = json_encode($response->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);\n }\n });\n }", "function padma_post_form($data){\n if(!isset($data['padma_ignore_this_form'])){\n\n $data = apply_filters('padma_merge_options', $data);\n\n\n $response = wp_remote_post( \"https://crm.padm.am/api/v1/form_integration\", array(\n 'method' => 'POST',\n 'httpversion' => '1.0',\n 'blocking' => true,\n 'headers' => array(),\n 'body' => $data,\n 'cookies' => array(),\n 'sslverify' => false\n )\n );\n\n if ( is_wp_error( $response ) ) {\n return $response->get_error_message();\n } else {\n return true;\n }\n }\n}" ]
[ "0.6520591", "0.63295484", "0.62865794", "0.6102314", "0.6019921", "0.6013962", "0.5970795", "0.59638804", "0.5888861", "0.58792037", "0.5878475", "0.5849174", "0.58461016", "0.58345747", "0.57440305", "0.56840616", "0.56797713", "0.56458557", "0.56092405", "0.5601839", "0.55641633", "0.5533713", "0.55249834", "0.55177426", "0.55169284", "0.5506503", "0.5478804", "0.54508424", "0.54508424", "0.54508424", "0.5449296", "0.5425933", "0.5413599", "0.5402335", "0.5401342", "0.53988475", "0.5383677", "0.5366158", "0.5365162", "0.53437364", "0.53350973", "0.5321906", "0.5310871", "0.53079545", "0.5304645", "0.53039074", "0.5302245", "0.5297842", "0.5274437", "0.5266317", "0.52643687", "0.5241427", "0.5239345", "0.52358156", "0.5234564", "0.5229972", "0.5222722", "0.52208036", "0.52125955", "0.5205456", "0.5179702", "0.51774734", "0.5174497", "0.5169556", "0.51587063", "0.515864", "0.5139457", "0.51270497", "0.51250327", "0.51220363", "0.5106185", "0.5104468", "0.5095124", "0.5094734", "0.5093724", "0.5092554", "0.5086632", "0.50840044", "0.50837326", "0.5083354", "0.50820565", "0.5079774", "0.507609", "0.5074402", "0.5073502", "0.5073252", "0.5071529", "0.5070322", "0.5068705", "0.5064004", "0.5057751", "0.5054964", "0.5053023", "0.50525314", "0.5050213", "0.50460804", "0.504555", "0.504555", "0.504555", "0.50443965" ]
0.5441533
31
Data that should be preloaded for the container. Templates/phrases may be accidentally (or intentionally) rendered in the view or before the container is set to be rendered. Preloading data here can allow all the data to be fetched at once.
protected function _preloadContainerData() { $this->preloadTemplate('page_nav'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function _preload() {\n }", "protected function LoadData()\n\t{\n\t\t$head = $this->GetProject()->GetHeadCommit();\n\t\t$this->tpl->assign(\"head\",$head);\n\n\t\t$this->tpl->assign('page', $this->params['page']);\n\t\t$skip = $this->params['page'] * 100;\n\n\t\t$headlist = $this->GetProject()->GetHeadList()->GetOrderedHeads('-committerdate', 101, $skip);\n\t\tif (isset($headlist) && (count($headlist) > 0)) {\n\t\t\tif (count($headlist) > 100) {\n\t\t\t\t$headlist = array_slice($headlist, 0, 100);\n\t\t\t\t$this->tpl->assign('hasmoreheads', true);\n\t\t\t}\n\t\t\t$this->tpl->assign(\"headlist\", $headlist);\n\t\t}\n\t}", "public function before() {\n // Run anything that needs to run before this.\n parent::before();\n\n if ($this->auto_render) {\n // Initialize empty values\n $this->template->title = '';\n $this->template->meta_keywords = '';\n $this->template->meta_description = '';\n $this->template->meta_copywrite = '';\n $this->template->header = '';\n $this->template->content = '';\n $this->template->footer = '';\n $this->template->styles = array();\n $this->template->scripts = array();\n }\n }", "protected function preprocessData() {}", "protected function initialize()\n {\n $this->viewData['list_sb'] = $this->list_sb = SkeletalBone::orderBy('name', 'asc')->pluck('name', 'id');\n $this->viewData['list_side'] = $this->list_side = SkeletalElement::$side;\n $this->viewData['list_completeness'] = $this->list_completeness = SkeletalElement::$completeness;\n $this->viewData['list_lab'] = $this->list_lab = Lab::where('type', 'Isotope')->get()->pluck('full_name', 'id');\n $this->viewData['list_status'] = $this->list_status = IsotopeBatch::$status;\n $this->viewData['batchStatus'] = $this->batchStatus = 'Open';\n $this->viewData['initialshow'] = $this->initialshow = false;\n }", "public function before()\n {\n // set data to display in view\n foreach ($this->_records as $row) {\n $this->data[] = [\n 'id' => $row->id,\n 'title' => $row->getLocaled('title'),\n 'date' => Date::convertToDatetime($row->created_at, Date::FORMAT_TO_HOUR)\n ];\n }\n }", "protected function prepareData()\n {\n parent::prepareData();\n $this->prepareConfigurableProductOptions();\n $this->prepareAttributeSet();\n }", "public static function loadTemplateData()\n {\n $templateId = 0;\n $app = Factory::getApplication();\n\n if ($app->isClient('site'))\n {\n $currentTemplate = $app->getTemplate(true);\n $templateId = $currentTemplate->id ?? 0;\n\n\t\t\t/**\n\t\t\t * If a page/menu is assigned to a specific template\n\t\t\t * then get the template ID.\n\t\t\t */\n\t\t\t$activeMenu = $app->getMenu()->getActive();\n\n\t\t\tif (!empty($activeMenu) && !empty($activeMenu->template_style_id))\n\t\t\t{\n\t\t\t\t$templateId = $activeMenu->template_style_id;\n\t\t\t}\n }\n else\n {\n if ($app->input->get('option') === 'com_ajax' && $app->input->get('helix') === 'ultimate')\n {\n $templateId = $app->input->get('id', 0, 'INT');\n }\n }\n\n\t\tif (empty($templateId))\n\t\t{\n\t\t\t$templateId = $app->input->get('helix_id', 0, 'INT');\n\t\t}\n\n if($templateId)\n {\n $template = [];\n\n $draftKeyOptions = [\n 'option' => 'com_ajax',\n 'helix' => 'ultimate',\n 'status' => 'draft',\n 'id' => $templateId\n ];\n\n $draftKey = self::generateKey($draftKeyOptions);\n $cache = new HelixCache($draftKey);\n\n /**\n * Check the fetch destination. If it is iframe then load the settings\n * from draft, otherwise if it is document that means this request\n * comes from the original site visit. So load from saved cache.\n */\n $requestFromIframe = $app->input->get('helixMode', '') === 'edit';\n \n if ($cache->contains() && $requestFromIframe)\n {\n $template = $cache->loadData();\n }\n else\n {\n $keyOptions = [\n 'option' => 'com_ajax',\n 'helix' => 'ultimate',\n 'status' => 'init',\n 'id' => $templateId\n ];\n \n $key = self::generateKey($keyOptions);\n $cache->setCacheKey($key);\n \n if ($cache->contains())\n {\n $template = $cache->loadData();\n }\n else\n {\n $template = self::getTemplateStyle($templateId); \n }\n }\n\n\t\t\tif (isset($template->template) && !empty($template->template))\n\t\t\t{\n\t\t\t\tif (!empty($template->params) && \\is_string($template->params))\n\t\t\t\t{\n\t\t\t\t\t$template->params = new Registry($template->params);\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * If params field is found empty in the database or cache then\n\t\t\t\t * read the default options.json file from the template and assign\n\t\t\t\t * the options as template params.\n\t\t\t\t */\n\t\t\t\telseif (empty($template->params))\n\t\t\t\t{\n\t\t\t\t\t$filePath = JPATH_ROOT . '/templates/' . $template->template . '/' . 'options.json';\n\n\t\t\t\t\tif (\\file_exists($filePath))\n\t\t\t\t\t{\n\t\t\t\t\t\t$defaultParams = \\file_get_contents($filePath);\n\t\t\t\t\t\t$template->params = new Registry($defaultParams);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$template->params = new Registry;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn $template;\n\t\t\t}\n }\n\n $template = new \\stdClass;\n $template->template = 'system';\n $template->params = new Registry;\n\n return $template;\n }", "public function preInit()\n {\n $this->_viewEngine = Bigace_Services::get()->getService('view');\n }", "public function before()\n {\n parent::before();\n if($this->auto_render===TRUE)\n {\n \t// Load the template\n \t$this->template = View::factory($this->template);\n \t\n // Initialize empty values\n $this->template->title = 'Site name here';\n $this->template->meta_keywords = '';\n $this->template->meta_description = '';\n $this->template->meta_copywrite = 'Open Classifieds '.Core::version;\n $this->template->header = View::factory('header');\n $this->template->content = '';\n $this->template->footer = View::factory('footer');\n $this->template->styles = array();\n $this->template->scripts = array();\n }\n }", "public function before()\n {\n parent::before();\n\n if ($this->auto_render === TRUE)\n {\n // Load the template\n $this->template = View::factory($this->template);\n }\n }", "protected function prepareForPresentation()\n {\n if ($this->prepared) {\n return;\n }\n\n $this->permissionGroups = new Collection;\n $this->ungroupedPermissions = [];\n $this->groupedPermissionIndex = [];\n\n $this->loadPermissionsFromModules()\n ->loadCustomPermissions()\n ->loadCustomPermissionGroups()\n ->addUngroupedPermissionGroup()\n ->filterEmptyGroups();\n }", "public function __construct()\n {\n $this->templateData = array(\n // Any data that belongs to every template.\n );\n $this->before();\n }", "public function preRetrieve();", "public function prepareVars()\n {\n $this->vars['posts'] = $this->prepareHtml();\n $this->vars['model'] = $this->model;\n }", "public function toPreload()\n\t{\n\t\treturn array('web.Broker', 'template.Opt');\n\t}", "public function prepareVars()\n {\n $this->vars['name'] = $this->formField->getName();\n\n $this->vars['model'] = $this->model;\n $this->vars['category'] = Kategory::where(\"is_active\", \"1\")->lists('name', 'id');\n if (!empty($this->getLoadValue())) {\n $a= $this->vars['value'] = $this->getLoadValue();\n } else {\n $a= $this->vars['value'] = [];\n }\n }", "public function toPreload()\n\t{\n\t\treturn array('template.Opt');\n\t}", "public function prepareData()\r\n\t{\r\n\r\n\t\t// Get title and encode it\r\n\t\tif (empty($this->title)) {\r\n\t\t\t$this->title = urlencode(urlencode(html_entity_decode(get_the_title(), ENT_COMPAT, 'UTF-8')));\r\n\t\t}\r\n\r\n\t\t// Get current post permalink and encode it\r\n\t\tif (empty($this->shared_url)) {\r\n\t\t\t$this->shared_url = get_permalink(get_the_ID());\r\n\t\t}\r\n\r\n\t\t// Get excerpt and format it for Twitter\r\n\t\tif (empty($this->tweet)) {\r\n\t\t\t$tweet = (strlen(get_the_excerpt()) > 140) ? substr(get_the_excerpt(), 0, 140) . '...' : get_the_excerpt();\r\n\t\t\t$this->tweet = $tweet . ' ' . $this->shared_url;\r\n\t\t}\r\n\t}", "public function preRender()\n {\n }", "public function preRender()\n {\n }", "public function preRender()\n {\n }", "function block_editor_rest_api_preload(array $preload_paths, $block_editor_context)\n {\n }", "public function prepareVars()\n {\n $this->vars['name'] = $this->formField->getName();\n $this->vars['value'] = $this->getLoadValue();\n $this->vars['model'] = $this->model;\n }", "public function generatePage_preProcessing() {}", "public function prepareShow()\n {\n $this->location();\n $this->type;\n $this->amenityIds();\n $this->utilityIds();\n $this->reviewCount();\n $this->user->location();\n $this->user->profilePicture();\n $this->user->reviewCount();\n $this->reviews = $this->reviews()->select('reviews.*')->withReviewer()->get();\n $this->coordinates;\n $this->imageRoutes();\n $this->image_ids = $this->images->pluck('id');\n }", "public function postLoad() {}", "public function prepareVars()\n {\n $this->vars['defaultCurrency'] = $this->defaultCurrency;\n $this->vars['defaultValue'] = $this->getPriceValue($this->defaultCurrency->id);\n $this->vars['currencies'] = Currency::orderBy('sort_order', 'ASC')->get();\n $this->vars['field'] = $this->formField;\n }", "protected function preProcess() {}", "private function initData()\n {\n $data = $this->cache->load($this->cacheId);\n if (false === $data) {\n /** @var Reader $reader */\n $reader = $this->readerFactory->create(\n ['fileName' => sprintf(self::SEARCH_PATTERN, $this->componentName)]\n );\n $data = $reader->read();\n $this->cache->save($this->serializer->serialize($data), $this->cacheId);\n } else {\n $data = $this->serializer->unserialize($data);\n }\n\n if (!empty($data)) {\n $this->data[$this->componentName] = [Converter::DATA_ATTRIBUTES_KEY => ['name' => $this->componentName]];\n $this->merge([$this->componentName => $data]);\n $this->data = $this->evaluateComponentArguments($this->data);\n }\n }", "function wp_metadata_lazyloader()\n {\n }", "protected function _beforePrepareDocumentData()\n {\n $this->_documentData = array();\n $this->_documentTextSearch = array();\n $this->_documentCategoryNames = array();\n $this->_documentAutocompleteSearch = array();\n }", "public function preload($preload = null);", "public function preRender() {\n\t\tif ($this->hasOwnBoundObject()) {\n\t\t\t$this->ownBoundObject = $this->getBoundObject();\n\t\t}\n\t\tparent::preRender();\n\t}", "private function _fillAdditionalTemplateData()\n {\n $departments = ['' => trans('labels.please_select')];\n foreach (Department::with('translations')->get() as $department) {\n $departments[$department->id] = $department->name;\n }\n $this->data('departments', $departments);\n }", "public function prePageContent();", "public function before()\n\t{\n\n\t\tparent::before();\n\t\tif ($this->auto_render) { \n\t\t\t$this->template->title = 'Hector - ';\n\t\t\t$this->template->page_description = '';\n\t\t\t$this->template->navbar = '';\n\t\t\t$this->template->content = '';\n\t\t\t$this->template->styles = array();\n\t\t\t$this->template->scripts = array();\n\t\t\t$this->template->set_focus = '';\n\t\t}\n\t\t\n\t}", "protected function _initData()\n\t{\n\t\t// Lets load the content if it doesn't already exist\n\t\tif (empty($this->_data))\n\t\t{\n\t\t\t$template = new stdClass();\n\t\t\t$this->_data = $template;\n\t\t\treturn (boolean) $this->_data;\n\t\t}\n\t\treturn true;\n\t}", "public function preparePageVariables()\n {\n $this->content_hash = md5($this->content);\n $this->is_dublication = self::find()->where(['content_hash' => $this->content_hash])->andWhere(['!=', 'url', $this->url])->exists();\n }", "public function prepare() {\n $this->customTaxonomies = [];\n\n // Get custom taxonomy with selectors\n $this->prepareCustomTaxonomyWithSelectors();\n\n // Get manually added custom post taxonomy\n $this->prepareManuallyAddedCustomTaxonomy();\n\n // If there is no custom taxonomy, stop.\n if(empty($this->customTaxonomies)) return;\n\n // Store it\n $this->bot->getPostData()->setCustomTaxonomies($this->customTaxonomies);\n }", "protected function before()\n {\n $this->view_instance = $this->get_view();\n $this->view_instance->token = $this->token;\n $this->view_instance->settings = $this->getSettings();\n if ($this->filePath == 'Client' . DS) {\n $this->view_instance->set_siteTitle(\"K'nGELL Ingénierie Logistique\");\n $this->view_instance->products = $this->container->make(ProductsManager::class)->get_Products($this->brand());\n $this->view_instance->user_cart = $this->container->make(CartManager::class)->get_userCart() ?? [];\n $this->view_instance->search_box = file_get_contents(FILES . 'template' . DS . 'base' . DS . 'search_box.php');\n } elseif ($this->filePath == 'Backend' . DS) {\n $this->view_instance->set_siteTitle(\"K'nGELL Administration\");\n $this->view_instance->set_Layout('admin');\n }\n }", "public function prepareData() {\r\n $sections = GearSection::getAll($this->id_shop);\r\n $this->smarty->assign('sections', $sections);\r\n $data = array();\r\n foreach($sections as $section) {\r\n $opts = GearOption::getBySection($section->id, $this->id_shop);\r\n $std = new stdClass();\r\n $std->id = $section->id;\r\n $std->name = $section->name;\r\n $std->label = $section->label;\r\n $std->options = $opts;\r\n array_push($data, $std);\r\n }\r\n \r\n if ($this->imported) { // generate css after import\r\n require_once 'classes/FrontStyle.php';\r\n FrontStyle::generateGearCss($data);\r\n }\r\n \r\n return $data;\r\n }", "protected function _prepareRenderData()\n {\n return [\n 'links' => $this->_config['links'],\n 'active' => $this->_activeLink,\n 'trans' => $this->_translations,\n ];\n }", "public function beforerender() {\n parent::beforeRender();\n $this->Meta->data();\n }", "public function data()\n {\n return view('site_preparation.data');\n }", "protected function loadUserData()\n {\n $this->userData = ($this->session->userData?:[]) + $this->userDataTemplate;\n }", "public function postLoad() { }", "protected function getPresets() {}", "public function preDispatch()\r\n {\r\n $this->View()->setScope(Enlight_Template_Manager::SCOPE_PARENT);\r\n\r\n $this->View()->sUserLoggedIn = $this->admin->sCheckUser();\r\n $this->View()->sUserData = $this->getUserData();\r\n }", "function pre_load_metadata($null, $post_id, $name, $hidden)\n {\n }", "protected function postLoad(){\n\t\t\t\n\t\t}", "public function load()\r\n {\r\n if ($this->isLoaded()) {\r\n return;\r\n }\r\n\r\n $container = new Container();\r\n\r\n $container->add('template_path', ROCKET_LL_PATH . 'views/');\r\n $container->add('plugin_basename', ROCKET_LL_BASENAME);\r\n\r\n $container->add('options', function () {\r\n return new Options('rocket_lazyload');\r\n });\r\n\r\n $container->add('event_manager', function () {\r\n return new EventManager();\r\n });\r\n\r\n $service_providers = [\r\n 'RocketLazyLoadPlugin\\ServiceProvider\\OptionServiceProvider',\r\n 'RocketLazyLoadPlugin\\ServiceProvider\\AdminServiceProvider',\r\n 'RocketLazyLoadPlugin\\ServiceProvider\\ImagifyNoticeServiceProvider',\r\n 'RocketLazyLoadPlugin\\ServiceProvider\\LazyloadServiceProvider',\r\n 'RocketLazyLoadPlugin\\ServiceProvider\\SubscribersServiceProvider',\r\n ];\r\n\r\n foreach ($service_providers as $service) {\r\n $container->addServiceProvider($service);\r\n }\r\n\r\n $subscribers = [\r\n 'RocketLazyLoadPlugin\\Subscriber\\ThirdParty\\AMPSubscriber',\r\n 'RocketLazyLoadPlugin\\Subscriber\\AdminPageSubscriber',\r\n 'RocketLazyLoadPlugin\\Subscriber\\ImagifyNoticeSubscriber',\r\n 'RocketLazyLoadPlugin\\Subscriber\\LazyloadSubscriber',\r\n ];\r\n\r\n foreach ($subscribers as $subscriber) {\r\n $container->get('event_manager')->addSubscriber($container->get($subscriber));\r\n }\r\n\r\n $this->loaded = true;\r\n }", "public function prepareVars()\n {\n $this->vars['name'] = $this->formField->getName() . '[]';\n\n $this->vars['model'] = $this->model;\n $this->vars['subscribers'] = Subscriber::all()->lists('count', 'id');\n if (!empty($this->getLoadValue())) {\n $this->vars['value'] = $this->getLoadValue();\n } else {\n $this->vars['value'] = [];\n }\n\n }", "public function __before() {\n\t\t// runs after this->data is set up, but before the class methods are run\n\t}", "public function load() {\n\t\t$this->addShortcodes();\n\n\t\tforeach ($this->loadedShortcodes as $shortcode) {\n\t\t\tadd_shortcode($shortcode->getBase(), array($shortcode, 'renderHolders'));\n\t\t}\n\t}", "private function lazy_get_vars(): Storage\n\t{\n\t\treturn $this->create_storage($this->config[AppConfig::STORAGE_FOR_VARS]);\n\t}", "protected function renderData()\n {\n $this->view->baseUrl = $this->_baseUrl;\n $this->view->staticUrl = Zend_Registry::get('static');\n $this->view->version = Zend_Registry::get('version');\n $this->view->hostUrl = Zend_Registry::get('host');\n $this->view->photoUrl = Zend_Registry::get('photo');\n $this->view->adminUser = $this->_user;\n\n $this->view->isSuperUser = $this->_isSuperUser;\n $this->view->isViewer = $this->_isViewer;\n $this->view->isWatcher = $this->_isWatcher;\n $this->view->isEditor = $this->_isEditor;\n }", "private function preloadTags(){\n if(Tag::all()->count()==0){\n //if no tag in db, load into db from infusionsoft\n\n $infusionsoftHelper = new InfusionsoftHelper();\n $allTags = $infusionsoftHelper->getAllTags()->all();\n $tagsArray = [];\n\n foreach ($allTags as $tag)\n $tagsArray[] = [\n 'tag_id'=>$tag->id,\n 'name'=>$tag->name,\n 'slug'=>str_slug($tag->name) //give each tag a slug for easily finding it later\n ];\n\n Tag::insert($tagsArray);\n }\n }", "private function init()\n\t{\n\t\tif(! $this->authUser = $this->auth->check_login()){\n\t\t\t$this->authUser->logged = false;\n\t\t}\n\t\t// Fill user object in view \n\t\t$this->data['authUser'] = $this->authUser;\n\n\t\t$this->data['menugang'] = $this->recipesModel->menugang();\n\t\t$this->data['hoofdgroup'] = $this->recipesModel->hoofdgroup();\n\t\t$this->data['technique'] = $this->recipesModel->technique();\n\t\t$this->data['kitchen'] = $this->recipesModel->kitchen();\n\t\t$this->data['opening'] = $this->recipesModel->opening();\n\t\t$this->data['dieten'] = $this->recipesModel->dieten();\n\t}", "public function preload_component() {\n\n $content_hook = array(\n \t'page_construct_object' => 'AccessibilityContentUtility::page_construct_object',\n 'content_call_add_functions' => 'AccessibilityContentUtility::content_call_add_functions'\n );\n\n return $content_hook;\n\n }", "protected function getPrimaryData()\n {\n $this->controller['query_results'] = $this->runtime_data->resource->data;\n $this->controller['model_registry'] = $this->runtime_data->resource->model_registry;\n $this->controller['parameters'] = $this->runtime_data->resource->parameters;\n\n if (isset($this->plugin_data->render->extension->parameters)) {\n\n $hold_parameters = $this->plugin_data->render->extension->parameters;\n\n if (is_array($hold_parameters) && count($hold_parameters) > 0) {\n $this->getPrimaryDataExtensionParameters($hold_parameters);\n }\n }\n\n return $this;\n }", "function prepareTemplateVars() {\n\t\t$calcModel = KenedoModel::getModel('ConfigboxModelAdmincalculations');\n\t\t$this->calculations = $calcModel->getRecords(array('admincalculations.product_id'=>$this->productId));\n\n\t\t$this->addViewCssClasses();\n\n\t}", "protected function renderData()\n {\n $data = $this->loadData();\n\n $rows = $data->getRows() ?: [];\n $limit = $this->property('limit') ?: 0;\n $this->vars['rows'] = $limit > 0\n ? array_slice($rows, 0, $limit)\n : $data->getRows();\n\n $this->vars['total'] = $data->getTotals();\n }", "public function loadData()\n\t{\n\t\t$this->load->view('data_page');\n\t}", "protected function prepare()\n {\n $this->register('require', function($context, $path) {\n $context->requireAsset($path);\n });\n\n $this->register('depend_on', function($context, $path) {\n $context->dependOn($path);\n });\n\n $this->register('require_tree', function($context, $path) {\n $context->requireTree($path);\n });\n\n $this->body = $this->getData();\n\n if (preg_match(static::HEADER_PATTERN, $this->getData(), $matches)) {\n $this->header = $matches[0];\n $this->body = substr($this->getData(), strlen($matches[0])) ?: '';\n }\n\n $this->processed = array();\n }", "public function initContent()\n {\n\n $shipping = $this->get_ahref('AdminFrankShipping');\n $returns = $this->get_ahref('AdminFrankReturns');\n $statics = $this->get_ahref('AdminFrankStatics');\n $settings = $this->get_ahref('AdminFrankSettings');\n parent::initContent();\n $this->context->smarty->assign(\n array(\n// 'api_statics' => $api_statics['data'],\n 'shipping' => $shipping,\n 'returns' => $returns,\n 'settings' => $settings,\n )\n );\n\n $this->setTemplate('statics.tpl');\n }", "public function quick_view_dependent_data() {\n\n\t\t\twp_enqueue_script( 'wc-add-to-cart-variation' );\n\t\t\twp_enqueue_script( 'flexslider' );\n\t\t}", "public function getDatas()\n\t{\n\t\t$this->skeleton = $this->data[\"skeleton\"];\n\t\t$this->javascript = $this->data[\"javascript\"];\n\t\t$this->css = $this->data[\"css\"];\n\t\t$this->module = $this->data[\"module\"];\n\t\t$this->site = $this->data[\"site\"];\n\t}", "protected function loadParserData()\n {\n // Load plug-in's variables into the parser\n ExpressionParser::setVars($this->piVars);\n // Load specific configuration into the extra data\n $extraData = array();\n if (is_array($this->conf['context.'])) {\n $extraData = GeneralUtility::removeDotsFromTS($this->conf['context.']);\n }\n // Allow loading of additional extra data from hooks\n if (is_array($GLOBALS['TYPO3_CONF_VARS']['EXTCONF'][$this->extKey]['setExtraDataForParser'])) {\n foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF'][$this->extKey]['setExtraDataForParser'] as $className) {\n $hookObject = GeneralUtility::getUserObj($className);\n $extraData = $hookObject->setExtraDataForParser($extraData, $this);\n }\n }\n // Add the extra data to the parser and to the TSFE\n if (count($extraData) > 0) {\n ExpressionParser::setExtraData($extraData);\n // TODO: this should not stay\n // This was added so that context can be available in the local TS of the templatedisplay\n // We must find another solution so that the templatedisplay's TS can use the tx_expressions_parser\n $GLOBALS['TSFE']->tesseract = $extraData;\n }\n }", "public function beforeTemplate(){\n\t\t//defaults to empty\n\t}", "protected function prepareGalleryData() {}", "public function beforeRender() {\n\t$this->set('allModels', App::objects('model'));\n }", "public function before()\n {\n parent::before();\n\n View::set_global('title', 'Manager page');\n View::set_global('description', 'Manager page');\n $this->template->styles = array('reset', 'templates/template/style', 'manager/style');\n $this->template->scripts = array('jquery', 'hoverIntent', 'templates/template/script', 'manager/script');\n $this->template->modules = ORM::factory('User', Auth_ORM::instance()->get_user()->id)->modules->find_all();\n }", "public function prepare() {\n $postExcerptSelectors = $this->bot->getSetting(SettingKey::POST_EXCERPT_SELECTORS);\n $findAndReplacesForExcerpt = $this->bot->prepareFindAndReplaces($this->bot->getSetting(SettingKey::POST_FIND_REPLACE_EXCERPT));\n\n foreach($postExcerptSelectors as $selectorData) {\n $selector = Utils::array_get($selectorData, SettingInnerKey::SELECTOR);\n if (!$selector) continue;\n\n $attr = Utils::array_get($selectorData, SettingInnerKey::ATTRIBUTE);\n if (!$attr) $attr = 'html';\n\n if($excerpt = $this->bot->extractData($this->bot->getCrawler(), $selector, $attr, \"excerpt\", true, true)) {\n $excerpt[\"data\"] = trim($this->bot->findAndReplace($findAndReplacesForExcerpt, $excerpt[\"data\"]));\n $this->bot->getPostData()->setExcerpt($excerpt);\n\n break;\n }\n\n }\n\n }", "public function handleLoadDataContainer(LoadDataContainerEvent $event)\n {\n parent::loadDataContainer($event->getName(), $event->isCacheIgnored());\n }", "private function _init()\n\t{\n\t\t$data = array();\n\t\t$data['CONTROLLER_NAME'] = $this->controllerTemplate->get_name();\n\t\t$data['VIEW_NAME'] = $this->viewTemplate->get_name();\n\t\t$data['VIEW_NAME_LINK'] = $this->viewTemplate->get_link();\n\t\t$data['MODEL_NAME'] = $this->modelTemplate->get_name();\n\t\t$data['TABLE_VIEW'] = $this->tableTemplate->get_name();\n\t\t$data['TABLE_VIEW_LINK'] = $this->tableTemplate->get_link();\n\t\t$data['DB_TABLE_NAME'] = $this->model->get_table_name();\n\t\t$data['MODEL_INSTANCE_VARIABLES'] = $this->modelTemplate->get_vars();\n\t\t$data['MODEL_SELECT_COLUMNS'] = $this->modelTemplate->get_columns();\n\n\t\treturn $data;\n\t}", "public function homePageData() {\n\t\t$data[\"title\"] = \"Home\";\n\t\t$data[\"is_home\"] = 1;\n\t\t$key = 'homeContent';\n\t\t$data[\"sliders\"] = SM::getCache( 'homeSlider', function () {\n\t\t\treturn Slider::where( \"status\", 1 )->get();\n\t\t} );\n\n\t\t$data[\"cases\"] = SM::getCache( 'homeCases', function () {\n\t\t\t$case_show = SM::smGetThemeOption( \"case_show\", 3 );\n\n\t\t\treturn Cases::where( \"status\", 1 )\n\t\t\t ->orderBy( \"id\", \"desc\" )\n\t\t\t ->limit( $case_show )\n\t\t\t ->get();\n\t\t} );\n\t\t$data[\"blogs\"] = SM::getCache( 'homeBlogs', function () {\n\t\t\t$blog_show = SM::smGetThemeOption( \"blog_show\", 6 );\n\n\t\t\treturn Blog::with( \"user\" )\n\t\t\t ->where( \"status\", 1 )\n\t\t\t ->orderBy( \"id\", \"desc\" )\n\t\t\t ->limit( $blog_show )\n\t\t\t ->get();\n\t\t} );\n\t\t$data['homeContent'] = \\View::make( 'partials.home', $data )->render();\n\n\t\treturn $data;\n\t}", "function initData() {\n\t\t$navigationMenuItemDao = DAORegistry::getDAO('NavigationMenuItemDAO');\n\t\t$navigationMenuItem = $navigationMenuItemDao->getById($this->navigationMenuItemId);\n\n\t\tif ($navigationMenuItem) {\n\t\t\t$this->_data = array(\n\t\t\t\t'path' => $navigationMenuItem->getPath(),\n\t\t\t\t'title' => $navigationMenuItem->getTitle(null),\n\t\t\t\t'url' => $navigationMenuItem->getUrl(),\n\t\t\t\t'menuItemType' => $navigationMenuItem->getType(),\n\t\t\t);\n\t\t\t$this->setData('content', $navigationMenuItem->getContent(null)); // Localized\n\t\t} \n\t}", "protected function prepareRendering() {}", "public function before()\r\n {\r\n \t// Profile the loader\r\n \t\\Profiler::mark('Start of loader\\'s before() function');\r\n \t\\Profiler::mark_memory($this, 'Start of loader\\'s before() function');\r\n \t\r\n // Set the environment\r\n parent::before();\r\n \r\n // Load the config for Segment so we can process analytics data.\r\n \\Config::load('segment', true);\r\n \r\n // Load the config file for event names. Having events names in one place keeps things synchronized.\r\n \\Config::load('analyticsstrings', true);\r\n \r\n // Engine configuration\r\n \\Config::load('engine', true);\r\n\t\t\r\n\t\t// Load the package configuration file.\r\n\t\t\\Config::load('tiers', true);\r\n\t\t\r\n\t\t// Soccket connection configuration\r\n\t\t\\Config::load('socket', true);\r\n \r\n /**\r\n * Ensure that all user language strings are appropriately translated.\r\n * \r\n * @link https://github.com/fuel/core/issues/1860#issuecomment-92022320\r\n */\r\n if (is_string(\\Input::post('language', false))) {\r\n \t\\Environment::set_language(\\Input::post('language', 'en'));\r\n }\r\n \r\n // Load the error strings.\r\n \\Lang::load('errors', true);\r\n }", "public static function setTemplateData()\n\t{\n\n\t\tself::$templateData = array();\n\n\t\t// Request values\n\t\tself::$templateData['get'] = $_GET;\n\t\tself::$templateData['post'] = $_POST;\n\n\t\t// Config values\n self::$templateData['config'] = array();\n foreach( get_class_vars( 'Kiki\\Config' ) as $configKey => $configValue )\n {\n\t\t\t// Lame security check, but better safe than sorry until a proper\n\t\t\t// audit has been done that in no way unauthorised user content get\n\t\t\t// parsed as template itself, through parsing recursion or otherwise. \n\t\t\t// Should mostly be careful about direct assignment of any of it to\n\t\t\t// 'content'.\n if ( !preg_match( '~(^db|pass|secret)~i', $configKey ) )\n self::$templateData['config'][$configKey] = $configValue;\n }\n\n if ( Config::$customCss )\n self::$templateData['stylesheets'] = array( Config::$customCss );\n\n\t\t// Is that all we want?\n self::$templateData['server'] = array(\n 'host' => $_SERVER['HTTP_HOST'] ?? null,\n 'name' => $_SERVER['SERVER_NAME'] ?? null,\n 'requestUri' => $_SERVER['REQUEST_URI'] ?? null,\n );\n\n self::$templateData['user'] = self::$user ? self::$user->templateData() : null;\n\n\t\t// Account service(s). Although multiple routing entries are technically\n\t\t// possible, templateData currently only populates one: the first found or else\n\t\t// the internal fallback in the Kiki controller.\n\t\t// FIXME: disabled for now, this shouldn't be db-populated anyway\n\t\t// $accountServices = array_values( Router::getBaseUris('account') );\n\t\t$baseUri = isset($accountServices[0]) ? $accountServices[0]->base_uri : Config::$kikiPrefix. \"/account\";\n\t\t$title = isset($accountServices[0]) ? $accountServices[0]->title : _(\"Account\");\n\t\tself::$templateData['accountService'] = array( 'url' => $baseUri, 'title' => $title );\n\t\t\n\t\t// Active connections. Only typing laziness explains why this isn't simply in {$user.connections}.\n self::$templateData['activeConnections'] = array();\n\n $connectedServices = array();\n if ( self::$user )\n {\n foreach( self::$user->connections() as $connection )\n {\n self::$templateData['activeConnections'][] = array(\n 'serviceName' => $connection->serviceName(),\n 'screenName' => $connection->screenName(),\n 'userName' => $connection->name(),\n 'pictureUrl' => $connection->picture()\n );\n\n $connectedServices[] = $connection->serviceName();\n }\n }\n\n // Log::debug( \"user cons: \". print_r(self::$user->connections(),true) );\n\n // Inactive connections. Might as well be in {$user) as well,\n // potentially in {$user.connections} with an {active} switch, although\n // the separation at this level is not the worst.\n\n // Log::debug( \"config: \". print_r(Config::$connectionServices, true) );\n // Log::debug( \"connected: \". print_r($connectedServices,true) );\n\n foreach( Config::$connectionServices as $name )\n {\n if ( !in_array( $name, $connectedServices ) )\n {\n $connection = ConnectionService\\Factory::getInstance($name);\n self::$templateData['inactiveConnections'][] = array( 'serviceName' => $connection->name(), 'loginUrl' => $connection->loginUrl() );\n }\n }\n\n // @todo Allow starttime and execution time from Log(::init) to be\n // queried and assign them. Just in case someone wants to output it in\n // a template.\n\n self::$templateData['now'] = time();\n }", "public function prepareVars()\n {\n $this->vars['relationManageId'] = $this->manageId;\n $this->vars['relationLabel'] = $this->config->label ?: $this->field;\n $this->vars['relationManageTitle'] = $this->manageTitle;\n $this->vars['relationField'] = $this->field;\n $this->vars['relationType'] = $this->relationType;\n $this->vars['relationSearchWidget'] = $this->searchWidget;\n $this->vars['relationToolbarWidget'] = $this->toolbarWidget;\n $this->vars['relationManageMode'] = $this->manageMode;\n $this->vars['relationManageWidget'] = $this->manageWidget;\n $this->vars['relationToolbarButtons'] = $this->toolbarButtons;\n $this->vars['relationViewMode'] = $this->viewMode;\n $this->vars['relationViewWidget'] = $this->viewWidget;\n $this->vars['relationViewModel'] = $this->viewModel;\n $this->vars['relationPivotWidget'] = $this->pivotWidget;\n $this->vars['relationSessionKey'] = $this->relationGetSessionKey();\n $this->vars['relationExtraConfig'] = $this->extraConfig;\n }", "protected function beforeGetData()\n {\n\n }", "public function initData()\r\n {\r\n $this->data['page_class'] = strtolower('page-' . $this->classname . '-' . $this->methodname) . ' ';\r\n $this->data['class_name'] = $this->classname;\r\n $this->data['method_name'] = $this->methodname;\r\n\r\n //default description and keyword\r\n $this->data['keywords'] = '';\r\n $this->data['description'] = '';\r\n \r\n $this->data['language'] = $this->session->userdata('language');\r\n\r\n if ($this->config->item('test_mode') == TRUE)\r\n {\r\n $this->output->enable_profiler('true');\r\n }\r\n \r\n //see any notifications to display\r\n if (!empty($this->session->flashdata('notification'))) {\r\n $this->data['notification'] = $this->session->flashdata('notification');\r\n $this->data['notification_type'] = $this->session->flashdata('notification_type');\r\n }\r\n\r\n // set csrf\r\n $this->data['csrf'] = array(\r\n 'token_name' => $this->security->get_csrf_token_name(),\r\n 'hash' => $this->security->get_csrf_hash(),\r\n 'cookie_name' => $this->config->item('csrf_cookie_name'),\r\n );\r\n }", "protected function process_load($data)\n\t{\n\t\t$parsed_data = array();\n\t\tforeach ($data as $key => $value)\n\t\t{\n\t\t\tif (strpos($key, ':'))\n\t\t\t{\n\t\t\t\tlist($table, $field) = explode(':', $key);\n\t\t\t\tif ($table == $this->_table_name)\n\t\t\t\t{\n\t\t\t\t\t$parsed_data[$field] = $value;\n\t\t\t\t}\n\t\t\t\telseif ($field)\n\t\t\t\t{\n\t\t\t\t\t$this->_lazy[inflector::singular($table)][$field] = $value;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$parsed_data[$key] = $value;\n\t\t\t}\n\t\t}\n\t\t$this->_data = $parsed_data;\n\t}", "public function init()\n {\n $this->_items = $this->getTable('Item');\n $this->_exhibits = $this->getTable('NeatlineExhibit');\n $this->_editions = $this->getTable('NeatlineEdition');\n\n // Get exhibit and document markup.\n $item = $this->_items->find($this->_request->id);\n $edition = $this->_editions->findByItem($item);\n $exhibit = $edition->getExhibit();\n $document = $edition->getDocumentMarkup();\n\n // Push records.\n $this->view->exhibit = $exhibit;\n $this->view->edition = $edition;\n $this->view->document = $document;\n }", "public function preDispatcher()\n {\n $bootstrap = Front::getInstance()->getBootstrap();\n $view = $bootstrap->getResource('view');\n $settings = $bootstrap->getResource('settings');\n $navigation = $bootstrap->getResource('navigation');\n\n $module = $this->getRequest()->getModule();\n\n $view->headMeta()->setCharset('utf-8');\n\n $minDepth = 1;\n\n if ($module == 'Admin') {\n $minDepth = 2;\n $view->headTitle()->set('PHP Pro Bid Admin Control Panel');\n $view->headMeta()->setName('robots', 'noindex, nofollow');\n }\n else {\n $view->headTitle()->set($settings['sitename']);\n\n if (!empty($settings['meta_data'])) {\n $metaData = \\Ppb\\Utility::unserialize($settings['meta_data']);\n if (isset($metaData['key'])) {\n foreach ($metaData['key'] as $key => $value) {\n if (!empty($value)) {\n $view->headMeta()->appendName($value, $metaData['value'][$key]);\n }\n }\n }\n }\n }\n\n if ($navigation instanceof Navigation) {\n /** @var \\Cube\\View\\Helper\\Navigation $navigationHelper */\n $navigationHelper = $view->navigation()->setMinDepth($minDepth);\n $breadcrumbs = $navigationHelper->getBreadcrumbs();\n\n if (count($breadcrumbs) > 0) {\n $headTitle = array();\n\n foreach ($breadcrumbs as $breadcrumb) {\n $headTitle[] = $breadcrumb->label;\n }\n\n $view->headTitle()->prepend(implode(' / ', array_filter(array_reverse($headTitle))));\n }\n }\n }", "public function prepareVars()\n {\n $this->vars['cssClasses'] = implode(' ', $this->cssClasses);\n $this->vars['columns'] = $this->getVisibleColumns();\n $this->vars['columnTotal'] = $this->getTotalColumns();\n $this->vars['records'] = $this->getRecords();\n $this->vars['noRecordsMessage'] = trans($this->noRecordsMessage);\n $this->vars['showCheckboxes'] = $this->showCheckboxes;\n $this->vars['showSetup'] = $this->showSetup;\n $this->vars['showPagination'] = $this->showPagination;\n $this->vars['showPageNumbers'] = $this->showPageNumbers;\n $this->vars['showSorting'] = $this->showSorting;\n $this->vars['sortColumn'] = $this->getSortColumn();\n $this->vars['sortDirection'] = $this->sortDirection;\n $this->vars['showTree'] = $this->showTree;\n $this->vars['treeLevel'] = 0;\n\n if ($this->showPagination) {\n $this->vars['pageCurrent'] = $this->records->currentPage();\n // Store the currently visited page number in the session so the same\n // data can be displayed when the user returns to this list.\n $this->putSession('lastVisitedPage', $this->vars['pageCurrent']);\n if ($this->showPageNumbers) {\n $this->vars['recordTotal'] = $this->records->total();\n $this->vars['pageLast'] = $this->records->lastPage();\n $this->vars['pageFrom'] = $this->records->firstItem();\n $this->vars['pageTo'] = $this->records->lastItem();\n }\n else {\n $this->vars['hasMorePages'] = $this->records->hasMorePages();\n }\n }\n else {\n $this->vars['recordTotal'] = $this->records->count();\n $this->vars['pageCurrent'] = 1;\n }\n }", "protected function init()\n {\n $classParser = $this->getContainer()->get('classParser');\n $classParser->setAllowedMethods( array($this->allowedMethod) );\n $this->data = $classParser->getData($this->paths, $this->cacheFile);\n }", "protected function _before() : void {\n require_once '../../public/wp-content/plugins/kc/Data/Database/DataManager.php';\n $this->dataManager = new DataManager(new PostTypeService(), new SecurityService(), new ImageService());\n }", "public function prepareVars()\n {\n $this->vars['name'] = $this->formField->getName();\n $this->vars['value'] = $this->getLoadValue();\n $this->vars['model'] = $this->model;\n\n $path = explode('\\\\', get_class($this->model));\n\n $this->vars['task_id'] = array_pop($path) . '-' . $this->model->{$this->taskKey};\n $this->vars['task_name'] = $this->model->{$this->taskName};\n\n $this->vars['app_name'] = HarvestSettings::get('app_name', 'Harvest');\n $this->vars['app_url'] = Request::url();\n }", "private function _beforeLoad($data)\n {\n $data['update_at']= date('Y-m-d h:i:s',time());\n\n if(isset($data['authors'])) {\n $data['authors'] = implode(',', $data['authors']);\n }\n\n return $data;\n }", "private function prepareExternalProduct() {\n if ($this->getSaverData()->isFirstPage()) {\n $this->setPrice();\n $this->setSKU();\n $this->setEnableReviews();\n $this->setMenuOrder();\n $this->setExternalProductDetails();\n }\n\n $this->setTags();\n $this->setAttributes();\n }", "public function preCacheUpdate()\n\t{\n\t\t$this->template->assign('updateCache', true);\n\t}", "public function loadTemplate()\n\t\t{\n\t\t}", "public function prewarmCache()\n {\n //Now that installation is complete, we need to set this to false to have the caches build correctly\n $GLOBALS['installing'] = false;\n $this->log(\"Populating metadata cache\");\n $GLOBALS['app_list_strings'] = return_app_list_strings_language('en_us');\n require_once 'include/MetaDataManager/MetaDataManager.php';\n MetaDataManager::setupMetadata(array('base'), array('en_us'));\n $this->log(\"Metadata cache populated\");\n }", "protected function executePreRenderHook() {}", "protected function prepareForValidation() {\n parent::prepareForValidation();\n $this->merge(['feedback_contents_template' => json_decode($this->get('feedback_contents_template'), true)]);\n }", "public function executeBefore()\r\n {\r\n $this->please->setStorage([\r\n '___ACFCollection' => [ 'content' => function(){ return $this->bloggyRepo->findBy(['type' => 'acf']); } ],\r\n '___PagesCollection' => [ 'content' => function(){ return $this->bloggyRepo->findBy(['type' => 'page']); } ],\r\n '___ACFChildrenCollection' => [ 'content' => function(){\r\n return $this->please->findLike($this->bloggyRepo, $this->bloggiesTable, [\r\n 'info[acf]' => null // null means we dont have the exact value\r\n ])['get']('rows');\r\n } ],\r\n '___ACFChildren2Collection' => [ 'content' => function(){\r\n return $this->please->findLike($this->bloggyRepo, $this->bloggiesTable, [\r\n 'info[_acf]' => null // null means we dont have the exact value\r\n ])['get']('rows');\r\n } ],\r\n '___UsersCollection' => [ 'content' => function(){ return $this->userRepo->findBy([], ['lastname' => 'asc']); } ],\r\n ], true);\r\n\r\n $this->setVisitsCount();\r\n }", "function lazy_loading()\n{\n // for container injection that are lazily evaluated during the request.\n $tracer = GlobalTracer::get();\n}" ]
[ "0.6343314", "0.61794156", "0.6103424", "0.60131645", "0.5975002", "0.59183383", "0.58694077", "0.58108115", "0.5806258", "0.57801545", "0.57638407", "0.576372", "0.5746515", "0.56977963", "0.56902516", "0.567335", "0.56337726", "0.56140476", "0.56065905", "0.5603404", "0.5603404", "0.5603404", "0.5557101", "0.55535144", "0.5547495", "0.5547046", "0.55449134", "0.5524521", "0.5524397", "0.5514614", "0.5498611", "0.5495636", "0.5492821", "0.54925394", "0.548759", "0.5486952", "0.5486847", "0.5473937", "0.5466484", "0.5466332", "0.54578686", "0.5451535", "0.54496884", "0.542487", "0.5421353", "0.5420555", "0.5416945", "0.54116625", "0.54094344", "0.54075783", "0.53989184", "0.53947264", "0.53924054", "0.53832936", "0.53793174", "0.5377709", "0.5375612", "0.5371756", "0.5369321", "0.5365314", "0.53616154", "0.53605855", "0.53494704", "0.5335827", "0.53350866", "0.53328866", "0.5332729", "0.5329301", "0.53270406", "0.5326462", "0.5322346", "0.531732", "0.53113484", "0.53089416", "0.53006023", "0.5300018", "0.5297015", "0.5296577", "0.52937615", "0.5289922", "0.52891886", "0.5270656", "0.52678865", "0.52670324", "0.52644026", "0.52634895", "0.52617335", "0.5259063", "0.5246778", "0.5246174", "0.5245715", "0.52443624", "0.52320546", "0.52301925", "0.52125037", "0.5204828", "0.51981777", "0.5196384", "0.519635", "0.51961845" ]
0.7710511
0
Fallback for rendering an "unrepresentable" message.
public function renderUnrepresentable() { return $this->renderError(new XenForo_Phrase('requested_page_is_unrepresentable_in_html')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function renderMessage() {}", "protected function renderAsError() {}", "public function render(): string\n {\n $message = new TextNode($this->notSupportedMessege);\n\n return $this->open() . $this->renderChildren() . $message . $this->close();\n }", "public function __toString()\n {\n try {\n return $this->render();\n } catch (ViewException $e) {\n return $e->getMessage();\n }\n }", "abstract protected function getNotFoundMessage();", "public function renderForNoPublicationHashSetInPiVarsReturnsPublishFailedMessage()\n {\n self::assertEquals(\n $this->fixture->translate('message_publishingFailed'),\n $this->fixture->render()\n );\n }", "public function testCellImplictRenderWithError(): void\n {\n $capture = function ($errno, $msg): void {\n restore_error_handler();\n $this->assertSame(E_USER_WARNING, $errno);\n $this->assertStringContainsString('Could not render cell - Cell template file', $msg);\n };\n set_error_handler($capture);\n\n $cell = $this->View->cell('Articles::teaserList');\n $cell->viewBuilder()->setTemplate('nope');\n (string)$cell;\n }", "public function testFlashFallback() {\n\t\t$result = $this->Flash->render('default');\n\t\t$expected = '<div class=\"message\">Default</div>';\n\t\t$this->assertContains($expected, $result);\n\t}", "public function render()\n {\n return $this->throw();\n }", "abstract public function renderHtmlMessage();", "public function handleRenderingFailureEvent(object $message): void;", "public function getUnknownText(): string\n {\n return htmlentities(__('[Unknown]'));\n }", "public function testViewWithBadTemplateOnRender()\n {\n (new BadTemplateView(new CalculatorModel(), 'badTemplate'))->render();\n }", "public function RenderNotFound () {\n\t\tif ($this->application->IsNotFoundDispatched()) return;\n\t\tthrow new \\ErrorException(\n\t\t\t\"Page not found: `\" . htmlspecialchars($this->request->GetFullUrl()) . \"`.\", 404\n\t\t);\n\t}", "public function notfoundAction()\n {\n $this->render('error/notfound');\n }", "public final function maybe_render()\n {\n }", "public final function maybe_render()\n {\n }", "public final function maybe_render()\n {\n }", "public function not_supported() {\n $this->load->view('errors/not-supported');\n }", "protected function message() {\n return sprintf(\n 'The [%s] object does not implement [%s]. It cannot be used to ' .\n 'decorate [%s]',\n $this->presenter,\n Presentable::class,\n get_class($this->presentable)\n );\n }", "protected function renderJsonNotFoundOutput()\n {\n return '{\"message\":\"Not found\"}';\n }", "protected function renderAsPlain() {}", "public function RenderError404PlainText ();", "public function RenderNotFound ($exceptionMessage = '');", "function render_error($message = 'error by unknown reason', $map = null) {\n\trender_page(\"error\", $message, $map);\n}", "public function formatNotFoundError()\n {\n return 'Given resource could not be found.';\n }", "public function NotFound() {\r\n\t\t$this->PrepareController();\r\n\t\t$this->View = 'notfound';\r\n\t\t$this->Render();\r\n }", "public static function missingContent()\n {\n return new static('Notification was not sent. You should specify message, stiker_id or attachment param.');\n }", "protected function getErrorMsgTemplate()\n {\n return 'The %s cast is ';\n }", "public function fallback()\n {\n throw new Horde_Tree_Exception('No fallback renderer found.');\n }", "function render_nothing() {\n $this->render_text('');\n }", "protected function renderXmlNotFoundOutput()\n {\n return '<root><message>Not found</message></root>';\n }", "abstract protected function notFoundError($message = null);", "function myNotFound()\n{\n global $app, $globalSettings;\n $app->render('error.html', [\n 'page' => mkPage(getMessageString('not_found1')),\n 'title' => getMessageString('not_found1'),\n 'error' => getMessageString('not_found2')]);\n}", "public function get_unknow_message() {\n\t\treturn __( 'Unknown service message', 'the-events-calendar' );\n\t}", "final public function __toString() {\n\t\ttry {\n\t\t\treturn $this->render();\n\t\t} catch(Exception $e) {\n\t\t\ttrigger_error($e->getMessage(), E_USER_ERROR);\n\t\t}\n\t}", "public function notFound()\r\n {\r\n\r\n $this->render('Page Not Found', '404.view');\r\n }", "function render_message() {\n return $this->options['message_current'] ?\n xFormTemplate::apply($this->template_message, $this->options) :\n null;\n }", "public function testCellManualRenderError(): void\n {\n $cell = $this->View->cell('Articles');\n\n $e = null;\n try {\n $cell->render('fooBar');\n } catch (MissingCellTemplateException $e) {\n }\n\n $this->assertNotNull($e);\n $message = $e->getMessage();\n $this->assertStringContainsString(\n str_replace('/', DS, 'Cell template file `cell/Articles/foo_bar.php` could not be found.'),\n $message\n );\n $this->assertStringContainsString('The following paths', $message);\n $this->assertStringContainsString(ROOT . DS . 'templates', $message);\n $this->assertInstanceOf(MissingTemplateException::class, $e->getPrevious());\n }", "public static function getDefaultMessage(): string;", "public function FileNotFound() {\n $this->Render();\n }", "public function testRenderWithNonDefaultLocale()\n {\n $result = $this->render();\n $this->assertMatchesRegularExpression('/<span>Nordamerikanische Westküsten-Normalzeit/', $result);\n }", "public function render()\n {\n if(strstr($this->getMessage(), 'PDOException: SQLSTATE[')) {\n if(preg_match('/SQLSTATE\\[(\\w+)\\]:(.*):(\\s+\\d)(.*):(.*)/', $this->getMessage(), $matches) === false) {\n $this->message = 'Generic SQL exception unhandled';\n }\n else {\n $this->message = empty($matches[5]) ? 'Generic SQL exception unhandled' : trim($matches[5]);\n }\n }\n else {\n $this->message = 'Generic SQL exception unhandled';\n }\n\n return response()->json(['message' => $this->getMessage()], 409);\n }", "public function actionnotfound()\n {\n $this->render('notfound');\n }", "public function getMessage()\n\t{\n\t\tprepareDisplayContext();\n\t}", "abstract public function render(): string;", "abstract public function render(): string;", "abstract public function render(): string;", "abstract public function render(): string;", "function getSorry()\n {\n $sorry = $this->row['sorry'];\n if (substr($sorry,0,3) != '<p>')\n $sorry = '<p>' . $sorry . \"</p>\\n\";\n return $sorry;\n }", "public function displayMessage() {}", "public function getGeneralMessage()\n {\n return \"Entity Not Found\";\n }", "function not_found() {\n\treturn show_template('404');\n}", "private function fallbackErrorPage($data=[]) {\n Utils::sendHeaders(500, 'text/html');\n $TAG_MAP = [\n 'title' => 'h1',\n 'message' => 'blockquote',\n 'content' => 'div',\n 'code' => 'pre',\n 'error' => 'pre'\n ];\n $html = '';\n foreach($TAG_MAP as $name => $tag) {\n $content = array_key_exists($name, $data) ? $data[$name] : '';\n if ($content) {\n $html .= $tag === 'pre' ? '<pre style=\"white-space:pre-wrap\">' : \"<$tag>\";\n $html .= $content . \"</$tag>\\n\";\n }\n }\n echo $html;\n exit;\n }", "public function message()\n {\n return __('message.foreign.not_belong', [\n 'foreign' => $this->foreignAttribute,\n 'primary' => $this->primaryAttribute\n ]);\n }", "abstract public function render(): mixed;", "public function cantHearYou() {\n return $this->randomItem(\n \"Sorry, I didn't quite catch that.\",\n 'Can you repeat that?',\n 'One more time, please?',\n 'You want what now?'\n );\n }", "protected function render_nothing()\n\t{\n\t\t$this->render_text (null, false);\n\t\t$this->stop_autorender = true;\n\t}", "public function Error404() {\n\t\t$this -> Render();\n\t}", "abstract public function render( int $sections = self::SECTION_ALL, ?MessageHeaderSection $additionalHeaders = NULL ): string;", "function notAcceptable() {\n header('HTTP/1.0 406 Not Acceptable');\n echo join(', ', array_keys($this->config['renderers']));\n }", "public function RenderError500PlainText ($text = '');", "public function message()\n {\n return 'Invalid message mark up.';\n }", "public function actionError()\n\t{\n\t\t$this->layout = '/layouts/error';\n\n\t\tif ($error = Yii::app()->errorHandler->error) {\n\t\t\tif (isset($error['type']) && $error['type'] == 'NoticeException') {\n\t\t\t\t$model = unserialize($error['message']);\n\t\t\t\tswitch ($error['errorCode']) {\n\t\t\t\t\tcase Notice_INFO:\n\n\t\t\t\t\t\t$this->render('pageNoticeInfo', $model);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase Notice_SUCCESS:\n\n\t\t\t\t\t\t$this->render('pageNoticeSuccess', $model);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase Notice_WARNING:\n\n\t\t\t\t\t\t$this->render('pageNoticeWarning', $model);\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\n\t\t\t\t\t\t$this->render('pageNoticeError', $model);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} elseif ($error['code'] == 403) {\n\t\t\t\t$model['title'] = 'Invalid Access';\n\t\t\t\t$model['message'] = !empty($error['message']) ? $error['message'] : $error;\n\t\t\t\t$this->render('pageAccessError', $model);\n\t\t\t} else {\n\t\t\t\tif (Yii::app()->request->isAjaxRequest) {\n\t\t\t\t\techo $error['message'];\n\t\t\t\t} else {\n\t\t\t\t\t$model['title'] = 'Those do not believe in magic will never find it';\n\t\t\t\t\t$model['message'] = !empty($error['message']) ? $error['message'] : $error;\n\t\t\t\t\t$this->render('pageNoticeError', $model);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function Error404()\n\t{\n\t\t$this->Render();\n\t}", "public function testRenderError()\n {\n $doc = $this->createDomDocument('<content type=\"xhtml\">Foo</content>');\n $content = new Content($this->createFakeNode(), $doc->documentElement->firstChild);\n static::assertEquals('(Required node (xhtml:div) not found)', (string) $content);\n }", "public function notFound()\n {\n $this->set('message', 'API endpoint \"' . $this->request->getUri()->getPath() . '\" does not exist.');\n $this->set('_serialize', ['message']);\n $this->_respondWithNotFound();\n }", "public function displayNotAnsweredQuestion()\n {\n\n }", "function render() {\n foreach ($this->request['invalid_elements'] as $element) {\n foreach ($element->errors as $error) {\n drupal_set_message($error, 'error');\n }\n }\n\n return parent::render();\n }", "public function display($message);", "public function action_404() {\n $this->template->content = View :: factory('error/404');\n }", "public function __toString()\n\t{\n\t\treturn $this->displayError();\n\t}", "function getNotSupportedMessage() {return $this->readNotSupportedMessage();}", "private function render_invalid_step() {\n\t\t?>\n\t\t<p><?php\n\t\tprintf(\n\t\t\t/* translators: 1 - an opening link tag, 2 - a closing link tag. */\n\t\t\tesc_html__( 'You have reached an invaild step - %1$sreturn to the start of the wizard%2$s.', 'wp-security-audit-log' ),\n\t\t\t'<a href=\"' . esc_url( $this->get_welcome_step() ) . '\">',\n\t\t\t'</a>'\n\t\t);\n\t\t?></p>\n\t\t<?php\n\t}", "public function getFallbackText()\n {\n return $this->fallbackText;\n }", "protected function renderFlashMessages() {}", "function forbidden(){\n\t\t$this->render_view(\"errors/forbidden.php\");\n\t}", "abstract public function display( $error );", "public function outputFriendlyError()\n {\n //Erase contents of the output buffer\n ob_end_clean();\n view('errors/generic');\n exit;\n }", "function object_not_found($message) {\n halt(404, json([\n 'status' => 404,\n 'text' => $message\n ]));\n}", "abstract function render();", "private function maybe_print_message( $message, $default ) {\n\t\treturn ! empty( $message ) ? $message : $default;\n\t}", "function bad_request() {\n\treturn show_template('400');\n}", "public function getHtml() {\n $tplString = Parser::getTemplate('notfound', true)\n ?: '<!DOCTYPE html><html><head><meta charset=\"utf-8\"><title>{%lang.$.generic.PAGE_NOT_FOUND%}</title></head><body><h1>{%TITLE%}</h1><p>{%MESSAGE%}</p></body></html>';\n \n return Parser::parseString($tplString, [\n \"TITLE\" => ifNotNull($this->title, Lang::get('foundation.PAGE_NOT_FOUND')),\n \"MESSAGE\" => ifNotNull($this->message, Lang::get('foundation.PAGE_NOT_FOUND_TEXT'))\n ]);\n }", "public function formatNotFoundError();", "public function testDisplayFallback()\n {\n $endpoint = new Endpoint([\n 'endpoint' => 'users',\n 'schema' => [\n 'id' => ['type' => 'string', 'primaryKey' => true],\n 'foo' => ['type' => 'string'],\n ],\n ]);\n $this->assertEquals('id', $endpoint->getDisplayField());\n }", "public function __toString()\n {\n try {\n $html = $this->_render();\n } catch (Exception $e) {\n $html = sprintf(\n 'Exception %s: %s',\n get_class($e),\n $e->getMessage()\n );\n }\n\n return $html;\n }", "public function render()\r\n {\r\n $this->view->toView([\"subTitle\" => \"Error\"])->loadError($this->code);\r\n }", "public function __toString()\n\t{\n\t\ttry {\n\t\t\treturn $this->render();\n\t\t} catch (Exception $e) {\n\t\t\treturn 'Unable to render breadcrumb: ' . $e->getMessage();\n\t\t}\n\t}", "public function ErrorFatal() {\n\t\t$this -> Render();\n\t}", "protected function renderControlNonEditable()\n {\n throw new NotSupportedException();\n }", "private function renderPageNotFound(baxe_App_Web_Response $response) {\n $response->addHeader(new baxe_Header_404);\n $this->getLayout()->setPageTitle(\"Oh noes!\");\n try {\n $view = new baxe_View($this);\n return $view->render('error/notFound.php');\n } catch (Exception $e) {\n return \"Oh noes! You made a 404!\";\n }\n\t}", "function notfound() {\n\t\t$this->fw->render('404');\n\t}", "public function renderErrors();", "public function getMessage()\n {\n return '';\n }", "public function notFoundAction()\n {\n return $this->viewBuilder()->buildViewFromTemplate($this->detailsViewTemplate);\n }", "function render()\n\t{\n\t\tif (isset($this->result)) {\n\t\t\t$this->usageError('Nothing to render!');\n\t\t}\n\t\t// @todo render\n\t}", "public function provideUnavailableFlashMessageType(): \\Generator\n {\n yield[\n '',\n ];\n\n yield[\n 'test',\n ];\n\n yield[\n 'lorem ipsum',\n ];\n\n yield[\n '1234',\n ];\n }", "public function ErrorFatal()\n\t{\n\t\t$this->Render();\n\t}", "public function unauthorized()\n {\n return view('exception.unauthorized');\n }" ]
[ "0.65093213", "0.63625646", "0.6214522", "0.59946907", "0.589575", "0.5884664", "0.58260334", "0.58171207", "0.57887864", "0.57400423", "0.5733457", "0.57104826", "0.5695828", "0.5675146", "0.56742424", "0.56395656", "0.56389743", "0.5638401", "0.5608438", "0.5605906", "0.5556121", "0.5555908", "0.55516577", "0.55470175", "0.55301195", "0.5502639", "0.5498721", "0.54984653", "0.54922277", "0.54656065", "0.54628164", "0.54591453", "0.5427909", "0.54253507", "0.53856355", "0.53772897", "0.5338184", "0.53365093", "0.5318853", "0.5271452", "0.52659816", "0.52562433", "0.5247579", "0.52331", "0.52311105", "0.5195114", "0.5195114", "0.5195114", "0.5195114", "0.517377", "0.5173687", "0.5166061", "0.5158573", "0.5156474", "0.5154421", "0.5151713", "0.5150106", "0.5128586", "0.5117519", "0.51170665", "0.5112345", "0.5112297", "0.5109694", "0.5105536", "0.5099562", "0.5084395", "0.5073886", "0.50705284", "0.50693774", "0.5064447", "0.5058495", "0.50566846", "0.50472647", "0.5040675", "0.5036125", "0.5035015", "0.5029966", "0.50195336", "0.5015759", "0.5014328", "0.50122446", "0.50073993", "0.4997354", "0.49963498", "0.49831542", "0.49814293", "0.49749446", "0.49712217", "0.49691197", "0.49670002", "0.49667048", "0.496596", "0.4961475", "0.49611175", "0.4958407", "0.49580532", "0.4954095", "0.49492055", "0.49476507", "0.49463102" ]
0.7660824
0
Either pass in a number of seconds, or a string representing the time span, like "3 seconds" or "3 days" or "2019/02/20" and it will compute the relative time between now and that duration. Returns negative numbers.
public static function parse(int|float|string $mixed): int { if (is_numeric($mixed)) { return intval($mixed); } if (is_string($mixed)) { $delta = strtotime($mixed); if ($delta !== false) { $result = $delta - time(); if ($result > 0) { return $result; } } } throw new SyntaxException('{method} can not parse {mixed}', [ 'method' => __METHOD__, 'mixed' => $mixed, ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function relativeTime($time)\n{\n $delta = strtotime('+2 hours') - strtotime($time);\n if ($delta < 2 * MINUTE) {\n return \"1 min ago\";\n }\n if ($delta < 45 * MINUTE) {\n return floor($delta / MINUTE) . \" min ago\";\n }\n if ($delta < 90 * MINUTE) {\n return \"1 hour ago\";\n }\n if ($delta < 24 * HOUR) {\n return floor($delta / HOUR) . \" hours ago\";\n }\n if ($delta < 48 * HOUR) {\n return \"yesterday\";\n }\n if ($delta < 30 * DAY) {\n return floor($delta / DAY) . \" days ago\";\n }\n if ($delta < 12 * MONTH) {\n $months = floor($delta / DAY / 30);\n return $months <= 1 ? \"1 month ago\" : $months . \" months ago\";\n } else {\n $years = floor($delta / DAY / 365);\n return $years <= 1 ? \"1 year ago\" : $years . \" years ago\";\n }\n}", "public function getCurrentTimeDifference($time_record, $unit = 'm');", "public function getCurrentTimeDifference($time_record, $unit = 'm');", "function relative_time($time) {\r\n if(!is_numeric($time)) $time = strtotime($time);\r\n\r\n $elapsed = time() - $time;\r\n\r\n if($elapsed <= 1) {\r\n return 'Just now';\r\n }\r\n\r\n $times = array(\r\n 31104000 => 'year',\r\n 2592000 => 'month',\r\n 604800 => 'week',\r\n 86400 => 'day',\r\n 3600 => 'hour',\r\n 60 => 'minute',\r\n 1 => 'second'\r\n );\r\n\r\n foreach($times as $seconds => $title) {\r\n $rounded = $elapsed / $seconds;\r\n\r\n if($rounded > 1) {\r\n $rounded = round($rounded);\r\n return $rounded . ' ' . pluralise($rounded, $title) . ' ago';\r\n }\r\n }\r\n}", "function diff($from,$to,$howlong,$howlongtype)\n{\n$duration_in_days = \"\";\n if($howlongtype=='Weeks')\n {\n $duration_in_days = $howlong * 7;\n }\n else if($howlongtype=='Months')\n {\n $duration_in_days = $howlong * 30;\n }\n else if($howlongtype=='Days')\n {\n $duration_in_days = $howlong;\n }\n\n$diff = abs(strtotime($to) - strtotime($from));/*Plan Synced Date - Current Date*/\n$diff = floor($diff/(60*60*24));\n$diff_in_days = max(0,floor($duration_in_days-$diff));\n\nreturn $diff_in_days;\n}", "function format_duration($seconds)\n{\n $neg = false;\n if ($seconds < 0) {\n $neg = true;\n $seconds = abs($seconds);\n }\n if ($seconds < 60) {\n $time_left = \"$seconds second\";\n if ($seconds != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60) {\n $minutes = round($seconds/60, 0);\n $time_left = \"$minutes minute\";\n if ($minutes != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24) {\n $hours = round($seconds/60/60, 0);\n $time_left = \"$hours hour\";\n if ($hours != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24*30) {\n $days = round($seconds/60/60/24, 0);\n $time_left = \"$days day\";\n if ($days != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24*30*12) {\n $months = round($seconds/60/60/24/30, 0);\n $time_left = \"$months month\";\n if ($months != 1) {\n $time_left .= 's';\n }\n } else {\n $years = round($seconds/60/60/24/30/12, 0);\n $time_left = \"$years year\";\n if ($years != 1) {\n $time_left .= 's';\n }\n }\n return $time_left . ($neg ? ' ago' : '');\n}", "function timeLeft($target)\n{\n\t$return_value = \"\";\n\t$diff = $target['endTime']->diff($target['timeStamp']);\n\t$doPlural = function($nb,$str){return $nb>1?$str.'s':$str;}; // adds plurals\n\n\t$format = array();\n\tif($diff->y !== 0) {\n\t\t$format[] = \"%y \".$doPlural($diff->y, \"year\");\n\t}\n\tif($diff->m !== 0) {\n\t\t$format[] = \"%m \".$doPlural($diff->m, \"month\");\n\t}\n\tif($diff->d !== 0) {\n\t\t$format[] = \"%d \".$doPlural($diff->d, \"day\");\n\t}\n\tif($diff->h !== 0) {\n\t\t$format[] = \"%h \".$doPlural($diff->h, \"hour\");\n\t}\n\tif($diff->i !== 0) {\n\t\t$format[] = \"%i \".$doPlural($diff->i, \"minute\");\n\t}\n\tif($diff->s !== 0) {\n\t\tif(!count($format)) {\n\t\t\treturn \"less than a minute ago\";\n\t\t} else {\n\t\t\t$format[] = \"%s \".$doPlural($diff->s, \"second\");\n\t\t}\n\t}\n\n\t// Prepend 'since ' or whatever you like from the calling function\n\treturn $diff->format(implode (\" \",$format));\n\n}", "function period2seconds($period_name,$span) {\n\tif (!$period_name || $period_name==\"lifespan\") {\n\t\treturn \"\";\n\t}\n\n\tif (!is_int ($span) || !$span) $span=1;\n\n\tif ($period_name==\"day\") {\n\t\treturn 60*60*24*$span;\n\t} elseif ($period_name==\"week\") {\n\t\treturn 60*60*24*7*$span;\n\t} elseif ($period_name==\"month\") {\n\t\treturn 60*60*24*30*$span;\n\t} elseif ($period_name==\"year\") {\n\t\treturn 60*60*24*365*$span;\n\t} else {\n\t\treturn $span;\n\t}\n}", "public static function createDuration();", "public function testRelativeTime() {\n $time = mktime(16, 35, 0, 2, 26, 2012);\n\n // Current\n $this->assertEquals('just now', Format::relativeTime(strtotime('+0 seconds', $time), array('time' => $time)));\n $this->assertEquals('just now', Format::relativeTime($time, array('time' => $time)));\n\n // Past\n $this->assertEquals('45 seconds ago', Format::relativeTime(strtotime('-45 seconds', $time), array('time' => $time)));\n $this->assertEquals('2 weeks, 2 days ago', Format::relativeTime(strtotime('-16 days', $time), array('time' => $time)));\n $this->assertEquals('8 months ago', Format::relativeTime(strtotime('-33 weeks', $time), array('time' => $time)));\n $this->assertEquals('6 months, 4 days ago', Format::relativeTime(strtotime('-6 months', $time), array('time' => $time)));\n $this->assertEquals('2 years, 2 months ago', Format::relativeTime(strtotime('-799 days', $time), array('time' => $time)));\n\n // Future\n $this->assertEquals('in 45 seconds', Format::relativeTime(strtotime('+45 seconds', $time), array('time' => $time)));\n $this->assertEquals('in 2 weeks, 2 days', Format::relativeTime(strtotime('+16 days', $time), array('time' => $time)));\n $this->assertEquals('in 8 months', Format::relativeTime(strtotime('+33 weeks', $time), array('time' => $time)));\n $this->assertEquals('in 6 months, 2 days', Format::relativeTime(strtotime('+6 months', $time), array('time' => $time)));\n $this->assertEquals('in 2 years, 2 months', Format::relativeTime(strtotime('+799 days', $time), array('time' => $time)));\n\n // Large depth\n $this->assertEquals('1 year, 1 month, 4 days ago', Format::relativeTime(strtotime('-399 days', $time), array('time' => $time, 'depth' => 5)));\n $this->assertEquals('1 year, 3 months ago', Format::relativeTime(strtotime('-444 days', $time), array('time' => $time, 'depth' => 5)));\n $this->assertEquals('3 years ago', Format::relativeTime(strtotime('-999 days', $time), array('time' => $time, 'depth' => 5)));\n $this->assertEquals('3 years, 5 months ago', Format::relativeTime(strtotime('-1235 days', $time), array('time' => $time, 'depth' => 5)));\n $this->assertEquals('2 years, 2 months, 1 week, 2 days ago', Format::relativeTime(strtotime('-799 days', $time), array('time' => $time, 'depth' => 5)));\n\n // Non-verbose\n $this->assertEquals('2y, 2m, 1w, 2d ago', Format::relativeTime(strtotime('-799 days', $time), array('time' => $time, 'depth' => 5, 'verbose' => false)));\n $this->assertEquals('in 2y, 2m, 1w, 2d', Format::relativeTime(strtotime('+799 days', $time), array('time' => $time, 'depth' => 5, 'verbose' => false)));\n }", "function ago($time) {\n $timediff=time()-$time;\n $days=intval($timediff/86400);\n $remain=$timediff%86400;\n $hours=intval($remain/3600);\n $remain=$remain%3600;\n $mins=intval($remain/60);\n $secs=$remain%60;\n\n if ($secs>=0) $timestring = $secs.\"s\";//\"0m\".\n if ($mins>0) $timestring = $mins.\"m\";//.$secs.\"s\";\n if ($hours>0) $timestring = $hours.\"h\";//.$mins.\"m\";\n if ($days>0) $timestring = $days.\"d\";//.$hours.\"h\";\n\n return $timestring;\n}", "function getduration_cmn($EndTime, $StartTime) {\n $diff = strtotime($EndTime) - strtotime($StartTime);\n return $diff;\n}", "function Now($seconds_to_add=0);", "function time1($time) \n{\n \n$time= strtotime($time);\n $delta = time() - $time;\n\n if ($delta < 1 * MINUTE)\n {\n return $delta == 1 ? \"one second ago\" : $delta . \" seconds ago\";\n }\n if ($delta < 2 * MINUTE)\n {\n return \"a minute ago\";\n }\n if ($delta < 45 * MINUTE)\n {\n return floor($delta / MINUTE) . \" minutes ago\";\n }\n if ($delta < 90 * MINUTE)\n {\n return \"an hour ago\";\n }\n if ($delta < 24 * HOUR)\n {\n return floor($delta / HOUR) . \" hours ago\";\n }\n if ($delta < 48 * HOUR)\n {\n return \"yesterday\";\n }\n if ($delta < 30 * DAY)\n {\n return floor($delta / DAY) . \" days ago\";\n }\n if ($delta < 12 * MONTH)\n {\n $months = floor($delta / DAY / 30);\n return $months <= 1 ? \"one month ago\" : $months . \" months ago\";\n }\n else\n {\n $years = floor($delta / DAY / 365);\n return $years <= 1 ? \"one year ago\" : $years . \" years ago\";\n }\n \n}", "function Duration($s){\n$timestamp = strtotime(\"now\") - $s;\n\n/* Cleaver Maths! */\n$years=floor($timestamp/(60*60*24*365));$timestamp%=60*60*24*365;\n$months=floor($timestamp/(60*60*24*30));\n/* Display for date, can be modified more to take the S off */\nif ($years >= 1) { $str.= $years; }\nif ($months >= 1) { //$str.= $months.'M'; \n}\nreturn $str;\n\n}", "function getTimeDuration();", "function difference($val1) {\n $date1 = strtotime($val1);\n $date2 = date('Y-m-d H:i:s');\n $diff = abs(strtotime($date2) - $date1);\n $years = floor($diff / (365 * 60 * 60 * 24));\n $months = floor(($diff - $years * 365 * 60 * 60 * 24) / (30 * 60 * 60 * 24));\n $days = floor(($diff - $years * 365 * 60 * 60 * 24 - $months * 30 * 60 * 60 * 24) / (60 * 60 * 24));\n $hours = floor(($diff - $years * 365 * 60 * 60 * 24 - $months * 30 * 60 * 60 * 24 - $days * 60 * 60 * 24) / (60 * 60));\n $minuts = floor(($diff - $years * 365 * 60 * 60 * 24 - $months * 30 * 60 * 60 * 24 - $days * 60 * 60 * 24 - $hours * 60 * 60) / 60);\n $seconds = floor(($diff - $years * 365 * 60 * 60 * 24 - $months * 30 * 60 * 60 * 24 - $days * 60 * 60 * 24 - $hours * 60 * 60 - $minuts * 60));\n $nowtime = strtotime(date(\"H:i:s\"));\n $endTime = strtotime(\"23:59:59\");\n if ($seconds >= 0 && $seconds <= 60 && $minuts == 0 && $hours == 0 && $days == 0 && $months == 0 && $years == 0) {\n $time = $seconds . \" Seconds\";\n //$minuts = $endTime - $nowtime;\n //$minuts = date(\"H:i:s\",$minuts);\n } elseif ($minuts == 0) {\n $minuts = $endTime - $nowtime;\n $minuts = date(\"H:i:s\", $minuts);\n }\n if ($days != '1') {\n $hours11 = $endTime - $nowtime;\n $hours11 = date(\"H\", $hours11);\n if ($hours11 > 0) {\n $hours11 = $hours11 . ' Hour';\n }\n $day = 'Days ' . $hours11;\n } else {\n $hours11 = $endTime - $nowtime;\n\n $hours11 = date(\"H\", $hours11);\n if ($hours11 > 0) {\n $hours11 = $hours11 . ' Hour';\n }\n\n $day = 'Day ' . $hours11;\n }\n if ($months != '' && $days != '') {\n $time = $months . \" Month & \" . $days . \" \" . $day;\n } elseif ($months != '') {\n $time = $months . \" Month\";\n } elseif ($days != '') {\n $time = $days . \" \" . $day;\n } elseif ($hours != '') {\n $time = $hours . \" Hour\";\n } elseif ($hours != '') {\n $time = $minuts . \" Minutes\";\n } else {\n $time = $seconds . \" Seconds\";\n }//echo $time;\t\n return $time;\n}", "function format_duration($seconds)\n{\n if ($seconds < 60) {\n $time_left = \"$seconds second\";\n if ($seconds != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60) {\n $minutes = round($seconds/60, 0);\n $time_left = \"$minutes minute\";\n if ($minutes != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24) {\n $hours = round($seconds/60/60, 0);\n $time_left = \"$hours hour\";\n if ($hours != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24*30) {\n $days = round($seconds/60/60/24, 0);\n $time_left = \"$days day\";\n if ($days != 1) {\n $time_left .= 's';\n }\n } elseif ($seconds < 60*60*24*30*12) {\n $months = round($seconds/60/60/24/30, 0);\n $time_left = \"$months month\";\n if ($months != 1) {\n $time_left .= 's';\n }\n } else {\n $years = round($seconds/60/60/24/30/12, 0);\n $time_left = \"$years year\";\n if ($years != 1) {\n $time_left .= 's';\n }\n }\n return $time_left;\n}", "function ago($datefrom,$dateto=-1)\n {\n // its an error rather than the epoch\n \n if($datefrom=='0') { return \"A long time ago\"; }\n if($dateto=='-1') { $dateto = time(); }\n \n // Make the entered date into Unix timestamp from MySQL datetime field\n\n $datefrom = strtotime($datefrom);\n \n // Calculate the difference in seconds betweeen\n // the two timestamps\n\n $difference = $dateto - $datefrom;\n\n // Based on the interval, determine the\n // number of units between the two dates\n // From this point on, you would be hard\n // pushed telling the difference between\n // this function and DateDiff. If the $datediff\n // returned is 1, be sure to return the singular\n // of the unit, e.g. 'day' rather 'days'\n \n switch(true)\n {\n // If difference is less than 60 seconds,\n // seconds is a good interval of choice\n case(strtotime('-1 min', $dateto) < $datefrom):\n $datediff = $difference;\n $res = ($datediff==1) ? $datediff.' second ago' : $datediff.' seconds ago';\n break;\n // If difference is between 60 seconds and\n // 60 minutes, minutes is a good interval\n case(strtotime('-1 hour', $dateto) < $datefrom):\n $datediff = floor($difference / 60);\n $res = ($datediff==1) ? $datediff.' minute ago' : $datediff.' minutes ago';\n break;\n // If difference is between 1 hour and 24 hours\n // hours is a good interval\n case(strtotime('-1 day', $dateto) < $datefrom):\n $datediff = floor($difference / 60 / 60);\n $res = ($datediff==1) ? $datediff.' hour ago' : $datediff.' hours ago';\n break;\n // If difference is between 1 day and 7 days\n // days is a good interval \n case(strtotime('-1 week', $dateto) < $datefrom):\n $day_difference = 1;\n while (strtotime('-'.$day_difference.' day', $dateto) >= $datefrom)\n {\n $day_difference++;\n }\n \n $datediff = $day_difference;\n $res = ($datediff==1) ? 'yesterday' : $datediff.' days ago';\n break;\n // If difference is between 1 week and 30 days\n // weeks is a good interval \n case(strtotime('-1 month', $dateto) < $datefrom):\n $week_difference = 1;\n while (strtotime('-'.$week_difference.' week', $dateto) >= $datefrom)\n {\n $week_difference++;\n }\n \n $datediff = $week_difference;\n $res = ($datediff==1) ? 'last week' : $datediff.' weeks ago';\n break; \n // If difference is between 30 days and 365 days\n // months is a good interval, again, the same thing\n // applies, if the 29th February happens to exist\n // between your 2 dates, the function will return\n // the 'incorrect' value for a day\n case(strtotime('-1 year', $dateto) < $datefrom):\n $months_difference = 1;\n while (strtotime('-'.$months_difference.' month', $dateto) >= $datefrom)\n {\n $months_difference++;\n }\n \n $datediff = $months_difference;\n $res = ($datediff==1) ? $datediff.' month ago' : $datediff.' months ago';\n\n break;\n // If difference is greater than or equal to 365\n // days, return year. This will be incorrect if\n // for example, you call the function on the 28th April\n // 2008 passing in 29th April 2007. It will return\n // 1 year ago when in actual fact (yawn!) not quite\n // a year has gone by\n case(strtotime('-1 year', $dateto) >= $datefrom):\n $year_difference = 1;\n while (strtotime('-'.$year_difference.' year', $dateto) >= $datefrom)\n {\n $year_difference++;\n }\n \n $datediff = $year_difference;\n $res = ($datediff==1) ? $datediff.' year ago' : $datediff.' years ago';\n break;\n \n }\n return $res;\n }", "function time_duration($seconds = '', $use = null, $zeros = false)\n{\n\n // Define time periods\n $periods = array (\n 'years' => 31556926,\n 'Months' => 2629743,\n 'weeks' => 604800,\n 'days' => 86400,\n 'hours' => 3600,\n 'minutes' => 60,\n 'seconds' => 1\n );\n \n // Break into periods\n $seconds = (float) $seconds;\n $segments = array();\n foreach ($periods as $period => $value) {\n if ($use && strpos($use, $period[0]) === false) {\n continue;\n }\n $count = floor($seconds / $value);\n if ($count == 0 && !$zeros) {\n continue;\n }\n $segments[strtolower($period)] = $count;\n $seconds = $seconds % $value;\n }\n \n // Build the string\n $string = array();\n foreach ($segments as $key => $value) {\n $segment_name = substr($key, 0, -1);\n $segment = $value . ' ' . $segment_name;\n if ($value != 1) {\n $segment .= 's';\n }\n $string[] = $segment;\n }\n \n return implode(', ', $string);\n}", "public static function relativeTime($timestamp, $now = null, $format = null) {\r\n \r\n if ($timestamp instanceof DateTime) {\r\n $timestamp = $timestamp->getTimestamp(); \r\n }\r\n \r\n if ($now instanceof DateTime) {\r\n $now = $now->getTimestamp(); \r\n }\r\n \r\n if (!filter_var($now, FILTER_VALIDATE_INT)) {\r\n $now = time();\r\n }\r\n \r\n $diff = $now - $timestamp;\r\n $format = $format; // to shut up CodeClimate\r\n \r\n if ($diff < 60) {\r\n return sprintf($diff > 1 ? '%s seconds ago' : 'a second ago', $diff);\r\n }\r\n \r\n $diff = floor($diff / 60);\r\n \r\n if ($diff < 60) {\r\n return sprintf($diff > 1 ? '%s minutes ago' : 'one minute ago', $diff);\r\n }\r\n \r\n $diff = floor($diff / 60);\r\n \r\n if ($diff < 24) {\r\n return sprintf($diff > 1 ? '%s hours ago' : 'an hour ago', $diff);\r\n }\r\n \r\n $diff = floor($diff / 24);\r\n \r\n if ($diff < 7) {\r\n return sprintf($diff > 1 ? '%s days ago' : 'yesterday', $diff);\r\n }\r\n \r\n if ($diff < 30) {\r\n $diff = floor($diff / 7);\r\n return sprintf($diff > 1 ? '%s weeks ago' : 'one week ago', $diff);\r\n }\r\n \r\n $diff = floor($diff / 30);\r\n \r\n if ($diff < 12) {\r\n return sprintf($diff > 1 ? '%s months ago' : 'last month', $diff);\r\n }\r\n \r\n $diff = date('Y', $now) - date('Y', $timestamp);\r\n \r\n return sprintf($diff > 1 ? '%s years ago' : 'last year', $diff);\r\n \r\n }", "public function diff($now = 'NOW', $absolute = FALSE)\n{\n\tif(!($now instanceOf DateTime))$now=new Time($now);return parent::diff($now, $absolute);\n}", "public function get_duration();", "function wac_timeleft($t1,$t2='now'){\n\t$timenow \t= ($t2 == 'now')? strtotime('now') : $t2;\n\t$timeDiff \t= round(abs($t1 - $t2) / 60);\n\t\n\treturn $timeDiff;\n}", "public function subDiffFromDate($requestId, $assignTime)\n {\n $ftvpausetime_obj = new Ep_Ftv_FtvPauseTime();\n $pausetimes = $ftvpausetime_obj->getAllPauseDuration($requestId);\n if($pausetimes != 'NO'){\n for($i=0; $i<count($pausetimes); $i++){\n $first_time[$i]=new DateTime($pausetimes[$i]['pause_at']);\n $second_time[$i]=new DateTime($pausetimes[$i]['resume_at']);\n $diff=$first_time[$i]->diff($second_time[$i]);\n\n $yrs[$i] = $diff->format('%Y');\n $moths[$i] = $diff->format('%m');\n $dayss[$i] = $diff->format('%d');\n $hrs[$i] = $diff->format('%h');\n $mins[$i] = $diff->format('%i');\n $sec[$i] = $diff->format('%s');\n }\n $yrs1 = array_sum($yrs);\n $moths1 = array_sum($moths);\n $dayss1 = array_sum($dayss);\n $hrs1 = array_sum($hrs);\n $mins1 = array_sum($mins);\n $sec1 = array_sum($sec);\n\n $format = \"P\".$yrs1.\"Y\".$moths1.\"M\".$dayss1.\"DT\".$hrs1.\"H\".$mins1.\"M\".$sec1.\"S\";\n $time=new DateTime($assignTime);\n $time->add(new DateInterval($format));\n return $assigntime = $time->format('Y-m-d H:i:s');\n }else\n return $assigntime = $assignTime;\n\n }", "function time_calc($up_time)\n {\n // time is of the form YYYY-MM-DD HH:MM:SS.MILISEC\n $x = explode(' ', $up_time);\n $y = explode('-', $x[0]);\n $z = explode(':', $x[1]);\n\n // condition for year\n if(((int)date('Y') - (int)$y[0]) > 0)\n {\n $temp = ((int)date('Y') - (int)$y[0]);\n $temp = $temp.\" years ago\";\n return($temp);\n }\n else if(((int)date('m') - (int)$y[1]) > 0)\n {\n $temp = ((int)date('m') - (int)$y[1]);\n $temp = $temp.\" months ago\";\n return($temp);\n }\n else if(((int)date('d') - (int)$y[2]) > 0)\n {\n $temp = ((int)date('d') - (int)$y[2]);\n $temp = $temp.\" days ago\";\n return($temp);\n }\n else if(((int)date('H') - (int)$z[0]) > 0)\n {\n $temp = ((int)date('H') - (int)$z[0]);\n $temp = $temp.\" hrs ago\";\n return($temp);\n }\n else if(((int)date('i') - (int)$z[1]) > 0)\n {\n $temp = ((int)date('i') - (int)$z[1]);\n $temp = $temp.\" mins ago\";\n return($temp);\n }\n }", "function relative_date($date) {\n if (empty($date)) {\n return \"No date provided\";\n }\n\n $periods = array(\"sec\", \"min\", \"hour\", \"day\", \"week\", \"month\", \"year\", \"decade\");\n $lengths = array(\"60\", \"60\", \"24\", \"7\", \"4.35\", \"12\", \"10\");\n\n $now = time();\n\n //check if supplied Date is in unix date form\n if (is_numeric($date)) {\n $unix_date = $date;\n } else {\n $unix_date = strtotime($date);\n }\n\n\n // check validity of date\n if (empty($unix_date)) {\n return \"Bad date\";\n }\n\n // is it future date or past date\n if ($now > $unix_date) {\n $difference = $now - $unix_date;\n $tense = \"ago\";\n } else {\n $difference = $unix_date - $now;\n $tense = \"from now\";\n }\n\n for ($j = 0; $difference >= $lengths[$j] && $j < count($lengths) - 1; $j++) {\n $difference /= $lengths[$j];\n }\n\n $difference = round($difference);\n\n if ($difference != 1) {\n $periods[$j] .= \"s\";\n }\n\n return \"$difference $periods[$j] {$tense}\";\n}", "public function time_delta($in, $out)\n\t\t{\n\t\t\t$in = new DateTime($in);\n\t\t\t$out = new DateTime($out);\n\n\t\t\tif($in > $out) return -1;\n\n\t\t\t$delta = $in->diff($out);\n\n\t\t\t$seconds = $delta->days * 86400;\n\t\t\t$seconds += $delta->h * 3600;\n\t\t\t$seconds += $delta->i * 60;\n\t\t\t$seconds += $delta->s;\n\n\t\t\treturn $seconds;\n\t\t}", "function tc_time_ago($from_time, $include_seconds = true) {\n\t\t$to_time = time();\n\t\t$mindist = round(abs($to_time - $from_time) / 60);\n\t\t$secdist = round(abs($to_time - $from_time));\n\t \n\t\tif ($mindist >= 0 and $mindist <= 1) {\n\t\t\tif (!$include_seconds) {\n\t\t\t\treturn ($mindist == 0) ? 'less than a minute' : '1 minute';\n\t\t} else {\n\t\t\t\tif ($secdist >= 0 and $secdist <= 4) {\n\t\t\t\t\treturn 'less than 5 seconds';\n\t\t\t\t} elseif ($secdist >= 5 and $secdist <= 9) {\n\t\t\t\t\treturn 'less than 10 seconds';\n\t\t\t\t} elseif ($secdist >= 10 and $secdist <= 19) {\n\t\t\t\t\treturn 'less than 20 seconds';\n\t\t\t\t} elseif ($secdist >= 20 and $secdist <= 39) {\n\t\t\t\t\treturn 'half a minute';\n\t\t\t\t} elseif ($secdist >= 40 and $secdist <= 59) {\n\t\t\t\t\treturn 'less than a minute';\n\t\t\t\t} else {\n\t\t\t\t\treturn '1 minute';\n\t\t\t\t}\n\t\t\t}\n\t\t} elseif ($mindist >= 2 and $mindist <= 44) {\n\t\t\treturn $mindist . ' minutes';\n\t\t} elseif ($mindist >= 45 and $mindist <= 89) {\n\t\t\treturn 'about 1 hour';\n\t\t} elseif ($mindist >= 90 and $mindist <= 1439) {\n\t\t\treturn 'about ' . round(floatval($mindist) / 60.0) . ' hours';\n\t\t} elseif ($mindist >= 1440 and $mindist <= 2879) {\n\t\t\treturn '1 day';\n\t\t} elseif ($mindist >= 2880 and $mindist <= 43199) {\n\t\t\treturn 'about ' . round(floatval($mindist) / 1440) . ' days';\n\t\t} elseif ($mindist >= 43200 and $mindist <= 86399) {\n\t\t\treturn 'about 1 month';\n\t\t} elseif ($mindist >= 86400 and $mindist <= 525599) {\n\t\t\treturn round(floatval($mindist) / 43200) . ' months';\n\t\t} elseif ($mindist >= 525600 and $mindist <= 1051199) {\n\t\t\treturn 'about 1 year';\n\t\t} else {\n\t\t\treturn 'over ' . round(floatval($mindist) / 525600) . ' years';\n\t\t}\n\t}", "function ago($time)\n{\n $periods_single = array(\"seconde\", \"minuut\", \"uur\", \"dag\", \"week\", \"maand\", \"jaar\", \"decennium\");\n $periods_multi = array(\"seconden\", \"minuten\", \"uur\", \"dagen\", \"weken\", \"maanden\", \"jaren\", \"decennia\");\n\n $lengths = array(\"60\",\"60\",\"24\",\"7\",\"4.35\",\"12\",\"10\");\n\n $now = time();\n\n $difference = $now - $time;\n $tense = \"ago\";\n\n for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {\n $difference /= $lengths[$j];\n }\n\n $difference = round($difference);\n\n $period = $periods_single[$j];\n\n if($difference > 1) {\n $period = $periods_multi[$j];\n }\n\n return \"$difference $period geleden\";\n}", "function time_ago($time, $units = 1) {\n //add mysql-server time difference to time;\n $time_diff = 0;\n $time = strtotime(\"+$time_diff hours\", strtotime($time));\n $now = time(); //current time\n return strtolower(timespan($time, $now, $units)). ' ago';\n}", "function time_ago($time, $units = 1) {\n //add mysql-server time difference to time;\n $time_diff = 0;\n $time = strtotime(\"+$time_diff hours\", strtotime($time));\n $now = time(); //current time\n return strtolower(timespan($time, $now, $units)). ' ago';\n}", "function timeSince ( $timestamp ) {\r\n\r\n\t$diff = time() - $timestamp;\r\n\r\n\tif ( $diff < 4000 ) {\r\n\t\t$diff = ceil ( $diff / 60 );\r\n\t\t$unit = \"minute\";\r\n\r\n\t} elseif ( $diff < 100000 ) {\r\n\t\t$diff = ceil ( $diff / 3600 );\r\n\t\t$unit = \"hour\";\r\n\r\n\t} else {\r\n\t\t$diff = ceil ( $diff / 86400 );\r\n\t\t$unit = \"day\";\r\n\t}\r\n\r\n\t$end = ( $diff <= 1 ) ? NULL : \"s\";\r\n\r\n\treturn \"$diff $unit$end ago\";\r\n\r\n}", "public static function Timespan($timespan) {\n $timespan -= 3600 * ($hours = (int) floor($timespan / 3600));\n $timespan -= 60 * ($minutes = (int) floor($timespan / 60));\n $seconds = $timespan;\n\n $Result = sprintf('%02d:%02d:%02d', $hours, $minutes, $seconds);\n return $Result;\n }", "public static function timeAgo($timestamp, $levels = 1, $returnDateIfOlder = '3 weeks ago', $returnDateFormat = 'd.m.Y H:i') {\n // if it only happened less than a minute ago then show 'few seconds ago'\n if ($timestamp > strtotime('1 minute ago')) {\n return 'few seconds ago';\n }\n\n // if it happened too far in the past then return regular date.\n if ($returnDateIfOlder AND ($timestamp < strtotime($returnDateIfOlder))) {\n return date($timestamp, $returnDateFormat);\n }\n\n // Store the current time\n $currentTime = time();\n $levels--; // lower the level\n\n // Determine the difference, between the time now and the timestamp\n $difference = $currentTime - $timestamp;\n\n // Set the periods of time\n $periods = array(\n array(\n 'single' => 'second',\n 'plural' => 'seconds'\n ),\n array(\n 'single' => 'minute',\n 'plural' => 'minutes'\n ),\n array(\n 'single' => 'hour',\n 'plural' => 'hours'\n ),\n array(\n 'single' => 'day',\n 'plural' => 'days'\n ),\n array(\n 'single' => 'week',\n 'plural' => 'weeks'\n ),\n array(\n 'single' => 'month',\n 'plural' => 'months'\n ),\n array(\n 'single' => 'year',\n 'plural' => 'years'\n ),\n array(\n 'single' => 'decade',\n 'plural' => 'decades'\n )\n );\n \n // Set the number of seconds per period\n $lengths = array(1, 60, 3600, 86400, 604800, 2630880, 31570560, 315705600);\n\n // Determine which period we should use, based on the number of seconds lapsed.\n // If the difference divided by the seconds is more than 1, we use that. Eg 1 year / 1 decade = 0.1, so we move on\n // Go from decades backwards to seconds\n for ($val = sizeof($lengths) - 1; ($val >= 0) && (($number = $difference / $lengths[$val]) <= 1); $val--);\n\n // Ensure the script has found a match\n if ($val < 0) $val = 0;\n\n // Determine the minor value, to recurse through\n $newTime = $currentTime - ($difference % $lengths[$val]);\n\n // Set the current value to be floored\n $number = floor($number);\n\n // Return text\n $text = sprintf(\"%d %s \", $number, ($number != 1) ? $periods[$val]['plural'] : $periods[$val]['single']);\n\n // Ensure there is still something to recurse through, and we have not found 1 minute and 0 seconds.\n if (($val >= 1) && (($currentTime - $newTime) > 0) && ($levels > 0)){\n $text .= static::timeAgo($newTime, $levels);\n }\n \n return strtolower(trim($text) . ' ago');\n }", "function human_time($datefrom, $dateto = -1)\n{\n\t// Defaults and assume if 0 is passed in that its an error rather than the epoch\n\tif ( $datefrom <= 0 )\n\t\treturn \"A long time ago\";\n\t\t\n\tif ( $dateto == -1) { \n\t\t$dateto = time(); \n\t}\n\t\n\t// Calculate the difference in seconds betweeen the two timestamps\n\t$difference = $dateto - $datefrom;\n\t\n\t// If difference is less than 60 seconds use 'seconds'\n\tif ( $difference < 60 )\n\t{ \n\t\t$interval = \"s\"; \n\t}\n\t// If difference is between 60 seconds and 60 minutes use 'minutes'\n\telse if ( $difference >= 60 AND $difference < (60*60) )\n\t{\n\t\t$interval = \"n\"; \n\t}\n\t// If difference is between 1 hour and 24 hours use 'hours'\n\telse if ( $difference >= (60*60) AND $difference < (60*60*24) )\n\t{\n\t\t$interval = \"h\"; \n\t}\n\t// If difference is between 1 day and 7 days use 'days'\n\telse if ( $difference >= (60*60*24) AND $difference < (60*60*24*7) )\n\t{\n\t\t$interval = \"d\"; \n\t}\n\t// If difference is between 1 week and 30 days use 'weeks'\n\telse if ( $difference >= (60*60*24*7) AND $difference < (60*60*24*30) )\n\t{\n\t\t$interval = \"ww\";\n\t}\n\t// If difference is between 30 days and 365 days use 'months'\n\telse if ( $difference >= (60*60*24*30) AND $difference < (60*60*24*365) )\n\t{\n\t\t$interval = \"m\"; \n\t}\n\t// If difference is greater than or equal to 365 days use 'years'\n\telse if ( $difference >= (60*60*24*365) )\n\t{\n\t\t$interval = \"y\"; \n\t}\n\t\n\t// Based on the interval, determine the number of units between the two dates\n\t// If the $datediff returned is 1, be sure to return the singular\n\t// of the unit, e.g. 'day' rather 'days'\n\tswitch ($interval)\n\t{\n\t\tcase \"m\" :\n\t\t\t$months_difference = floor($difference / 60 / 60 / 24 / 29);\n\t\t\t\n\t\t\twhile(\n\t\t\t\tmktime(date(\"H\", $datefrom), date(\"i\", $datefrom),\n\t\t\t\tdate(\"s\", $datefrom), date(\"n\", $datefrom)+($months_difference),\n\t\t\t\tdate(\"j\", $dateto), date(\"Y\", $datefrom)) < $dateto)\n\t\t\t{\n\t\t\t\t$months_difference++;\n\t\t\t}\n\t\t\t$datediff = $months_difference;\n\t\n\t\t\t// We need this in here because it is possible to have an 'm' interval and a months\n\t\t\t// difference of 12 because we are using 29 days in a month\n\t\t\tif ( $datediff == 12 )\n\t\t\t{ \n\t\t\t\t$datediff--; \n\t\t\t}\n\t\n\t\t\t$res = ($datediff==1) ? \"$datediff month ago\" : \"$datediff months ago\";\n\t\t\t\n\t\t\tbreak;\n\t\n\t\tcase \"y\" :\n\t\t\t$datediff = floor($difference / 60 / 60 / 24 / 365);\n\t\t\t$res = ($datediff==1) ? \"$datediff year ago\" : \"$datediff years ago\";\n\n\t\t\tbreak;\n\t\n\t\tcase \"d\" :\n\t\t\t$datediff = floor($difference / 60 / 60 / 24);\n\t\t\t$res = ($datediff==1) ? \"$datediff day ago\" : \"$datediff days ago\";\n\t\t\t\n\t\t\tbreak;\n\t\n\t\tcase \"ww\" :\n\t\t\t$datediff = floor($difference / 60 / 60 / 24 / 7);\n\t\t\t$res = ($datediff==1) ? \"$datediff week ago\" : \"$datediff weeks ago\";\n\n\t\t\tbreak;\n\t\n\t\tcase \"h\" :\n\t\t\t$datediff = floor($difference / 60 / 60);\n\t\t\t$res = ($datediff==1) ? \"$datediff hour ago\" : \"$datediff hours ago\";\n\n\t\t\tbreak;\n\t\n\t\tcase \"n\" :\n\t\t\t$datediff = floor($difference / 60);\n\t\t\t$res = ($datediff==1) ? \"$datediff minute ago\" : \"$datediff minutes ago\";\n\t\n\t\t\tbreak;\n\t\n\t\tcase \"s\":\n\t\t\t$datediff = $difference;\n\t\t\t$res = ($datediff==1) ? \"$datediff second ago\" : \"$datediff seconds ago\";\n\t\t\t\n\t\t\tbreak;\n\t}\n\n\treturn $res;\n}", "public function timeSince($format = 1)\n {\n $second = 1;\n $minute = $second * 60;\n $hour = $minute * 60;\n $day = $hour * 24;\n $week = $day * 7;\n $month = $week * 4;\n $year = $month * 12;\n\n $thenTs = $this->_date->toString(Zend_Date::TIMESTAMP);\n $nowTs = time();\n\n $difference = $nowTs - $thenTs;\n\n $years = floor($difference / $year);\n $remainingMonths = $difference - ($years * $year);\n\n $months = floor($remainingMonths / $month);\n $remainingWeeks = $remainingMonths - ($months * $month);\n\n $weeks = floor($remainingWeeks / $week);\n $remainingDays = $remainingWeeks - ($weeks * $week);\n\n $days = floor($remainingDays / $day);\n $remainingHours = $remainingDays - ($days * $day);\n\n $hours = floor($remainingHours / $hour);\n $remainingMinutes = $remainingHours - ($hours * $hour);\n\n $minutes = floor($remainingMinutes / $minute);\n $seconds = $remainingMinutes - ($minutes * $minute);\n\n $variables = array('years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds');\n\n // If the format is provided as an integer, it will interpret it as an\n // auto-format accuracy. It will then work its way down appending times\n // based on accuracy from the highest time over 0.\n if (is_integer($format)) {\n $accuracy = $format;\n $format = array();\n\n if ($years > 0) {\n $formatStart = 'years';\n } elseif ($months > 0) {\n $formatStart = 'months';\n } elseif ($weeks > 0) {\n $formatStart = 'weeks';\n } elseif ($days > 0) {\n $formatStart = 'days';\n } elseif ($hours > 0) {\n $formatStart = 'hours';\n } else {\n $formatStart = 'minutes';\n }\n\n $accuracyCount = 0;\n for ($i = 0; $i < 7; $i++) {\n $variable = $variables[$i];\n\n if ($accuracyCount == 0 && $variable !== $formatStart) {\n continue;\n }\n\n // Hack for accuracy level 2 and the second accuracy level is 0\n if ($accuracy > 1 && $accuracy - $accuracyCount == 1 && $$variable == 0) {\n break;\n }\n\n $format[] = \"%{$variable}% %{$variable}String%\";\n\n ++$accuracyCount;\n if ($accuracyCount == $accuracy) {\n break;\n }\n }\n\n $format = implode(', ', $format);\n }\n\n // Parses the format provided by the user or automatically generated\n foreach ($variables as $variable) {\n $format = str_replace(\"%{$variable}%\", $$variable, $format);\n\n $string = $variable;\n if ($$variable == 1) {\n $string = substr($variable, 0, -1);\n }\n\n $format = str_replace(\"%{$variable}String%\", $string, $format);\n }\n\n return $format;\n }", "function timeDiff($firstTime,$lastTime)\n{\n$firstTime=strtotime($firstTime);\n$lastTime=strtotime($lastTime);\n$timeDiff = ($lastTime-$firstTime)/86400;\nreturn $timeDiff;\n}", "function timedifference($timedifference=0)\n{\n\tif ($timedifference < 60) {\n\t\t$timechange = number_format($timedifference, 0) . ' second';\n\t\tif ($timedifference > 1) {\n\t\t\t$timechange .= 's';\n\t\t}\n\t}\n\n\tif ($timedifference >= 60 && $timedifference < 3600) {\n\t\t$num_mins = floor($timedifference / 60);\n\t\t$timechange = number_format($num_mins, 0) . ' minute';\n\t\tif ($num_mins > 1) {\n\t\t\t$timechange .= 's';\n\t\t}\n\t}\n\n\tif ($timedifference >= 3600) {\n\t\t$hours = floor($timedifference/3600);\n\t\t$mins = floor($timedifference % 3600) / 60;\n\n\t\t$timechange = number_format($hours, 0) . ' hour';\n\t\tif ($hours > 1) {\n\t\t\t$timechange .= 's';\n\t\t}\n\n\t\t$timechange .= ' and ' . number_format($mins, 0) . ' minute';\n\t\tif ($mins > 1) {\n\t\t\t$timechange .= 's';\n\t\t}\n\t}\n\treturn $timechange;\n}", "function elapsed_time($start_time, $finish_time){\n\treturn sc_strtotime($finish_time) - sc_strtotime($start_time);\n}", "public static function timeRelative($relativeTime, $currentTime = IPS_UNIX_TIME_NOW)\r\n\t{\r\n\t\t$difference = $relativeTime - $currentTime;\r\n\t\t\r\n\t\t$return = \"\";\r\n\t\t$settings =& ipsRegistry::settings();\r\n\t\tif($difference < 0 || !$settings['time_use_relative'])\r\n\t\t{\r\n\t\t\t$return = ipsRegistry::getClass('class_localization')->getDate($relativeTime,'LONG',0,1);\r\n\t\t}\r\n\t\telseif($difference == 0)\r\n\t\t{\r\n\t\t\t$return = $this->ipsclass->lang['now'];\r\n\t\t}\r\n\t\telseif($difference == 1)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], ipsRegistry::getClass('class_localization')->words['1_second']);\r\n\t\t}\r\n\t\telseif($difference <= 60)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], sprintf(ipsRegistry::getClass('class_localization')->words['x_seconds'], $difference));\r\n\t\t}\r\n\t\telseif($difference <= 120)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], ipsRegistry::getClass('class_localization')->words['1_minute']);\r\n\t\t}\r\n\t\telseif($difference <= 3600)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], sprintf(ipsRegistry::getClass('class_localization')->words['x_minutes'], floor($difference / 60)));\r\n\t\t}\r\n\t\telseif($difference <= 7200)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], ipsRegistry::getClass('class_localization')->words['1_hour']);\r\n\t\t}\r\n\t\telseif($difference <= 86400)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], sprintf(ipsRegistry::getClass('class_localization')->words['x_hours'], floor($difference / 3600)));\r\n\t\t}\r\n\t\telseif($difference <= 172800)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], ipsRegistry::getClass('class_localization')->words['1_day']);\r\n\t\t}\r\n\t\telseif($difference <= 604800)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'],sprintf(ipsRegistry::getClass('class_localization')->words['x_days'], floor($difference / 86400)));\r\n\t\t}\r\n\t\telseif($difference <= 1209600)\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], ipsRegistry::getClass('class_localization')->words['1_week']);\r\n\t\t}\r\n\t\telse // In many many weeks ahead\r\n\t\t{\r\n\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['in_time'], sprintf(ipsRegistry::getClass('class_localization')->words['x_weeks'], floor($difference / 604800)));\r\n\t\t}\r\n\t\treturn $return;\r\n\t}", "public function getRelativeExpiration(): \\DateInterval;", "public function calculate_duration() {\n $date_helper = YITH_WCBK_Date_Helper();\n $duration = $date_helper->get_time_diff( $this->from, $this->to, $this->duration_unit );\n if ( $this->is_all_day() )\n $duration += 1;\n\n return $duration;\n }", "function TimeAgo($datefrom,$dateto=-1) {\n\t\t// its an error rather than the epoch\n\n\t\tif($datefrom<=0) { return \"A long time ago\"; }\n\t\tif($dateto==-1) { $dateto = time(); }\n\n\t\t// Calculate the difference in seconds betweeen\n\t\t// the two timestamps\n\n\t\t$difference = $dateto - $datefrom;\n\n\t\t// If difference is less than 60 seconds,\n\t\t// seconds is a good interval of choice\n\n\t\tif($difference < 60) {\n\t\t\t$interval = \"s\";\n\t\t}\n\n\t\t// If difference is between 60 seconds and\n\t\t// 60 minutes, minutes is a good interval\n\t\telseif($difference >= 60 && $difference<60*60) {\n\t\t\t$interval = \"n\";\n\t\t}\n\n\t\t// If difference is between 1 hour and 24 hours\n\t\t// hours is a good interval\n\t\telseif($difference >= 60*60 && $difference<60*60*24) {\n\t\t\t$interval = \"h\";\n\t\t}\n\n\t\t// If difference is between 1 day and 7 days\n\t\t// days is a good interval\n\t\telseif($difference >= 60*60*24 && $difference<60*60*24*7){\n\t\t\t$interval = \"d\";\n\t\t}\n\n\t\t// If difference is between 1 week and 30 days\n\t\t// weeks is a good interval\n\t\telseif($difference >= 60*60*24*7 && $difference <60*60*24*30) {\n\t\t\t$interval = \"ww\";\n\t\t}\n\n\t\t// If difference is between 30 days and 365 days\n\t\t// months is a good interval, again, the same thing\n\t\t// applies, if the 29th February happens to exist\n\t\t// between your 2 dates, the function will return\n\t\t// the 'incorrect' value for a day\n\t\telseif($difference >= 60*60*24*30 && $difference <60*60*24*365) {\n\t\t\t$interval = \"m\";\n\t\t}\n\n\t\t// If difference is greater than or equal to 365\n\t\t// days, return year. This will be incorrect if\n\t\t// for example, you call the function on the 28th April\n\t\t// 2008 passing in 29th April 2007. It will return\n\t\t// 1 year ago when in actual fact (yawn!) not quite\n\t\t// a year has gone by\n\t\telseif($difference >= 60*60*24*365) {\n\t\t\t$interval = \"y\";\n\t\t}\n\n\t\t// Based on the interval, determine the\n\t\t// number of units between the two dates\n\t\t// From this point on, you would be hard\n\t\t// pushed telling the difference between\n\t\t// this function and DateDiff. If the $datediff\n\t\t// returned is 1, be sure to return the singular\n\t\t// of the unit, e.g. 'day' rather 'days'\n\n\t\tswitch($interval) {\n\t\t\tcase \"m\":\n\t\t\t$months_difference = floor($difference / 60 / 60 / 24 /29);\n\t\t\twhile (mktime(date(\"H\", $datefrom), date(\"i\", $datefrom), date(\"s\", $datefrom), date(\"n\", $datefrom)+($months_difference), date(\"j\", $dateto), date(\"Y\", $datefrom)) < $dateto) {\n\t\t\t\t$months_difference++;\n\t\t\t}\n\t\t\t$datediff = $months_difference;\n\n\t\t\t// We need this in here because it is possible\n\t\t\t// to have an 'm' interval and a months\n\t\t\t// difference of 12 because we are using 29 days\n\t\t\t// in a month\n\n\t\t\tif($datediff==12) {\n\t\t\t\t$datediff--;\n\t\t\t}\n\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->monthAgo : \"$datediff \".$this->lang()->index->monthsAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"y\":\n\t\t\t$datediff = floor($difference / 60 / 60 / 24 / 365);\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$string->index->yearAgo : \"$datediff \".$this->lang()->index->yearsAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"d\":\n\t\t\t$datediff = floor($difference / 60 / 60 / 24);\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->dayAgo : \"$datediff \".$this->lang()->index->daysAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"ww\":\n\t\t\t$datediff = floor($difference / 60 / 60 / 24 / 7);\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->weekAgo : \"$datediff \".$this->lang()->index->weeksAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"h\":\n\t\t\t$datediff = floor($difference / 60 / 60);\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->hourAgo : \"$datediff \".$this->lang()->index->hoursAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"n\":\n\t\t\t$datediff = floor($difference / 60);\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->minuteAgo :\"$datediff \".$this->lang()->index->minutesAgo;\n\t\t\tbreak;\n\n\t\t\tcase \"s\":\n\t\t\t$datediff = $difference;\n\t\t\t$res = ($datediff==1) ? \"$datediff \".$this->lang()->index->secondAgo :\"$datediff \".$this->lang()->index->secondsAgo;\n\t\t\tbreak;\n\t\t}\n\t\treturn $res;\n\t}", "public function getDuration();", "public function getDuration() {}", "public function time_handler($timestamp){\n //convert timestamp to second\n $db_time = strtotime($timestamp);\n date_default_timezone_set(\"Europe/Paris\");\n //Get the current time\n $current_time = time();\n //Get the difference in seconds\n $time_diff = $current_time - $db_time;\n // echo \"DIFF \".$time_diff . \"<br>\";\n $time_diff_min = floor($time_diff / 60);\n \n $time_diff_hour = floor($time_diff / 3600); //floor($time_diff / 60 * 60)\n $time_diff_day = floor($time_diff / 86400 ); //floor($time_diff / 24 * 60 * 60)\n $time_diff_week = floor($time_diff / 604800 ); //floor($time_diff / 7 * 24 * 60 * 60)\n $time_diff_month = floor($time_diff / 2592000 ); //floor($time_diff / 30 * 24 * 60 * 60)\n $time_diff_year = floor($time_diff / 31536000); //floor($time_diff / 365 *24 * 60 * 60);\n\n if ($time_diff <= 60){\n return \"Just now\";\n\n }else if ($time_diff_min <= 60){\n if ($time_diff_min == 1){\n return \"1 minute ago\";\n }else{\n return $time_diff_min . \" minutes ago\";\n }\n\n }else if ($time_diff_hour <= 24){\n if ($time_diff_hour == 1){\n return \"1 hour ago\";\n }else {\n return $time_diff_hour . \" hours ago\";\n }\n }else if ($time_diff_day <= 7){\n if ($time_diff_day == 1){\n return \"1 day ago\";\n }else {\n return $time_diff_day . \" days ago\";\n }\n }else if ($time_diff_week <= 4.3){\n if ($time_diff_week == 1){\n return \"1 week ago\";\n }else {\n return $time_diff_week . \" weeks ago\";\n }\n }else if ($time_diff_month <= 1){\n if ($time_diff_month == 1){\n return \"1 month ago\";\n }else {\n return $time_diff_month . \" months ago\";\n }\n }else if ($time_diff_year <= 1){\n if ($time_diff_year == 1){\n return \"1 year ago\";\n }else {\n return $time_diff_year . \" years ago\";\n }\n }\n }", "public static function ago($time, $calculateFrom = 'now') {\n\n\t\t// Calculate to\n\t\t$t = strtotime($time);\n\t\t// Calculate from\n\t\t$c = strtotime($calculateFrom);\n\t\t// Elapsed\n\t\t$e = $c - $t;\n\t\t// Elapsed that day\n\t\t$de = date(\"H\", $c) * TimeAgo::$h + date(\"i\", $c) * TimeAgo::$m + date(\"s\", $c);\n\n\t\tif ($e < TimeAgo::$m) {\n\t\t\t// Now / Second / Seconds\n\t\t\treturn ($e == 0) ? TimeAgo::$string['now'] : ($e == 1 ? TimeAgo::$string['second'] : sprintf(TimeAgo::$string['seconds'], $e));\n\t\t} elseif ($e < TimeAgo::$h) {\n\t\t\t// Minutes\n\t\t\treturn (($m = intval($e / TimeAgo::$m)) && $m == 1) ? TimeAgo::$string['minute'] : sprintf(TimeAgo::$string['minutes'], $m);\n\t\t} elseif ($e < TimeAgo::$d) {\n\t\t\t// Today - Hours\n\t\t\treturn (($h = intval($e / TimeAgo::$h)) && $h == 1) ? TimeAgo::$string['hour'] : sprintf(TimeAgo::$string['hours'], $h);\n\t\t} elseif ($e <= TimeAgo::$d + $de) {\n\t\t\t// Yesterday\n\t\t\treturn TimeAgo::$string['yesterday'];\n\t\t} elseif ($e < TimeAgo::$d * 6 + $de) {\n\t\t\t// Last week\n\t\t\treturn sprintf(TimeAgo::$string['on'], TimeAgo::$weekDays[date(\"w\", $t)]);\n\t\t} elseif ($e < TimeAgo::$mo) {\n\t\t\t// less then month\n\t\t\t// Weeks\n\t\t\tif ($e < TimeAgo::$w * 2) {\n\t\t\t\t// Last seven days\n\t\t\t\treturn TimeAgo::$string['week'];\n\t\t\t} elseif ($e < TimeAgo::$w * 3) {\n\t\t\t\t// 2 weeks\n\t\t\t\treturn sprintf(TimeAgo::$string['weeks'], 2);\n\t\t\t} else {\n\t\t\t\t// 3 weeks\n\t\t\t\treturn sprintf(TimeAgo::$string['weeks'], 3);\n\t\t\t}\n\t\t} elseif ($e < TimeAgo::$y) {\n\t\t\t// less then year\n\t\t\t// Month / Months\n\t\t\treturn ($e < TimeAgo::$mo * 2) ? TimeAgo::$string['month'] : sprintf(TimeAgo::$string['months'], intval($e / TimeAgo::$mo));\n\t\t} else {\n\t\t\t// Year / Years\n\t\t\treturn ($e >= TimeAgo::$y && $e < TimeAgo::$y * 2) ? TimeAgo::$string['year'] : sprintf(TimeAgo::$string['years'], intval($e / TimeAgo::$y));\n\t\t}\n\t}", "function get_timeago( $ptime )\n{\n $estimate_time = time() - $ptime;\n\n if( $estimate_time < 1 )\n {\n return 'less than 1 second ago';\n }\n\n $condition = array(\n 12 * 30 * 24 * 60 * 60 => 'year',\n 30 * 24 * 60 * 60 => 'month',\n 24 * 60 * 60 => 'day',\n 60 * 60 => 'hour',\n 60 => 'minute',\n 1 => 'second'\n );\n\n foreach( $condition as $secs => $str )\n {\n $d = $estimate_time / $secs;\n\n if( $d >= 1 )\n {\n $r = round( $d );\n return 'about ' . $r . ' ' . $str . ( $r > 1 ? 's' : '' ) . ' ago';\n }\n }\n}", "function simpleDiff($start, $end = 'NOW') { \n $start_time = strtotime($start);\n $stop_time = strtotime($end);\n\n $diff_time = $start_time - $stop_time;\n\n if (abs($diff_time) < 3600) {\n return ceil($diff_time / 60) . 'm';\n }\n\n return ceil($diff_time / 3600) . 'h';\n }", "function time_diff($start_time,$end_time) {\n\n\t//subtract our times to get the difference\n\t$calcStArray = explode(\":\",$start_time);\n\t$calcEtArray = explode(\":\",$end_time);\n\n\t$start_hour = $calcStArray[0];\n\t$start_min = $calcStArray[1];\n\n\t$end_hour = $calcEtArray[0];\n\t$end_min = $calcEtArray[1];\n\n\t//reduce our dates to timestamps. We use a random date here, since it does not matter\n\t$ts1 = mktime($start_hour,$start_min,\"0\",1,1,2000);\n\t$ts2 = mktime($end_hour,$end_min,\"0\",1,1,2000);\n\n\t//get the number of seconds\n\t$diff = $ts2 - $ts1;\n\n\t$temp = $diff/3600;\n\n\t//get the place of the decimal point\n\t$pos = strpos($temp,\".\");\n\n\t//if we have pos, there is a decimal point\n\tif ($pos) {\n\n\t\t$dur_hour = intval($temp);\n\t\t$min = substr($temp,$pos);\n\n\t\t//convert to clock nums\n\t\tif ($min==\".5\") $dur_min = \"30\";\n\t\telseif ($min==\".25\") $dur_min = \"15\";\n\t\telseif ($min==\".75\") $dur_min = \"45\";\n\n\t}\n\telse {\n\t\t$dur_hour = $temp;\n\t\t$dur_min = \"00\";\n\t}\n\n\treturn array($dur_hour,$dur_min);\n\n}", "function getQueryTime($time_start,$time_end) {\n\t\treturn round($time_end - $time_start,4).'sec';\n\t}", "function timeDiff($firstTime, $lastTime) {\n $firstTime = strtotime($firstTime);\n $lastTime = strtotime($lastTime);\n $timeDiff = ($lastTime - $firstTime) / 86400;\n return $timeDiff;\n}", "function ago($datefrom,$dateto=-1)\r\n\t{\r\n\t\t// its an error rather than the epoch\r\n\r\n\t\tif($datefrom instanceof \\MongoDate)\r\n\t\t\t$datefrom = $datefrom->sec;\r\n\t\tif($dateto instanceof \\MongoDate)\r\n\t\t\t$dateto=$dateto->sec;\r\n\r\n\t\tif($datefrom==0) { return \"A long time ago\"; }\r\n\t\tif($dateto==-1) { $dateto = time(); }\r\n\r\n\t\t// Make the entered date into Unix timestamp from MySQL datetime field\r\n\r\n\t\t$datefrom = $datefrom;\r\n\r\n\t\t// Calculate the difference in seconds betweeen\r\n\t\t// the two timestamps\r\n\r\n\t\t$difference = $dateto - $datefrom;\r\n\r\n\t\t// Based on the interval, determine the\r\n\t\t// number of units between the two dates\r\n\t\t// From this point on, you would be hard\r\n\t\t// pushed telling the difference between\r\n\t\t// this function and DateDiff. If the $datediff\r\n\t\t// returned is 1, be sure to return the singular\r\n\t\t// of the unit, e.g. 'day' rather 'days'\r\n\r\n\t\tswitch(true)\r\n\t\t{\r\n\t\t\t// If difference is less than 60 seconds,\r\n\t\t\t// seconds is a good interval of choice\r\n\t\t\tcase(strtotime('-1 min', $dateto) < $datefrom):\r\n\t\t\t\t$datediff = $difference;\r\n\t\t\t\t$res = ($datediff==1) ? $datediff.' second ago' : $datediff.' seconds ago';\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is between 60 seconds and\r\n\t\t\t\t// 60 minutes, minutes is a good interval\r\n\t\t\tcase(strtotime('-1 hour', $dateto) < $datefrom):\r\n\t\t\t\t$datediff = floor($difference / 60);\r\n\t\t\t\t$res = ($datediff==1) ? $datediff.' minute ago' : $datediff.' minutes ago';\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is between 1 hour and 24 hours\r\n\t\t\t\t// hours is a good interval\r\n\t\t\tcase(strtotime('-1 day', $dateto) < $datefrom):\r\n\t\t\t\t$datediff = floor($difference / 60 / 60);\r\n\t\t\t\t$res = ($datediff==1) ? $datediff.' hour ago' : $datediff.' hours ago';\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is between 1 day and 7 days\r\n\t\t\t\t// days is a good interval\r\n\t\t\tcase(strtotime('-1 week', $dateto) < $datefrom):\r\n\t\t\t\t$day_difference = 1;\r\n\t\t\t\twhile (strtotime('-'.$day_difference.' day', $dateto) >= $datefrom)\r\n\t\t\t\t{\r\n\t\t\t\t\t$day_difference++;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$datediff = $day_difference;\r\n\t\t\t\t$res = ($datediff==1) ? 'yesterday' : $datediff.' days ago';\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is between 1 week and 30 days\r\n\t\t\t\t// weeks is a good interval\r\n\t\t\tcase(strtotime('-1 month', $dateto) < $datefrom):\r\n\t\t\t\t$week_difference = 1;\r\n\t\t\t\twhile (strtotime('-'.$week_difference.' week', $dateto) >= $datefrom)\r\n\t\t\t\t{\r\n\t\t\t\t\t$week_difference++;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$datediff = $week_difference;\r\n\t\t\t\t$res = ($datediff==1) ? 'last week' : $datediff.' weeks ago';\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is between 30 days and 365 days\r\n\t\t\t\t// months is a good interval, again, the same thing\r\n\t\t\t\t// applies, if the 29th February happens to exist\r\n\t\t\t\t// between your 2 dates, the function will return\r\n\t\t\t\t// the 'incorrect' value for a day\r\n\t\t\tcase(strtotime('-1 year', $dateto) < $datefrom):\r\n\t\t\t\t$months_difference = 1;\r\n\t\t\t\twhile (strtotime('-'.$months_difference.' month', $dateto) >= $datefrom)\r\n\t\t\t\t{\r\n\t\t\t\t\t$months_difference++;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$datediff = $months_difference;\r\n\t\t\t\t$res = ($datediff==1) ? $datediff.' month ago' : $datediff.' months ago';\r\n\r\n\t\t\t\tbreak;\r\n\t\t\t\t// If difference is greater than or equal to 365\r\n\t\t\t\t// days, return year. This will be incorrect if\r\n\t\t\t\t// for example, you call the function on the 28th April\r\n\t\t\t\t// 2008 passing in 29th April 2007. It will return\r\n\t\t\t\t// 1 year ago when in actual fact (yawn!) not quite\r\n\t\t\t\t// a year has gone by\r\n\t\t\tcase(strtotime('-1 year', $dateto) >= $datefrom):\r\n\t\t\t\t$year_difference = 1;\r\n\t\t\t\twhile (strtotime('-'.$year_difference.' year', $dateto) >= $datefrom)\r\n\t\t\t\t{\r\n\t\t\t\t\t$year_difference++;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$datediff = $year_difference;\r\n\t\t\t\t$res = ($datediff==1) ? $datediff.' year ago' : $datediff.' years ago';\r\n\t\t\t\tbreak;\r\n\r\n\t\t}\r\n\t\treturn $res;\r\n\t}", "function relative_time ($datetime) {\n\t// like \"Two hours ago\", \"Last week\", etc.\n\t\n\t// http://maniacalrage.net/projects/relative/\n\t\n\tif (!preg_match(\"/\\d\\d\\d\\d-\\d\\d-\\d\\d \\d\\d\\:\\d\\d\\:\\d\\d/\", $datetime)) {\n\t\treturn '';\n\t}\n\n\t$in_seconds = strtotime($datetime);\n\t$now = time();\n\n\t$diff \t= $now - $in_seconds;\n\t$months\t= floor($diff/2419200);\n\t$diff \t-= $months * 2419200;\n\t$weeks \t= floor($diff/604800);\n\t$diff\t-= $weeks*604800;\n\t$days \t= floor($diff/86400);\n\t$diff \t-= $days * 86400;\n\t$hours \t= floor($diff/3600);\n\t$diff \t-= $hours * 3600;\n\t$minutes = floor($diff/60);\n\t$diff \t-= $minutes * 60;\n\t$seconds = $diff;\n \n\t\n\tif ($months > 0) {\n\t\t// Over a month old, just show the actual date.\n\t\t$date = substr($datetime, 0, 9);\n\t\treturn date(\"j M Y\", strtotime($date));\n\n\t} else {\n\t\t$relative_date = '';\n\t\tif ($weeks > 0) {\n\t\t\t// Weeks \n\t\t\t$relative_date .= ($relative_date?', ':'').$weeks.' week'.($weeks>1?'s':'');\n\t\t} elseif ($days > 0) {\n\t\t\t// days \n\t\t\t$relative_date .= ($relative_date?', ':'').$days.' day'.($days>1?'s':'');\n\t\t} elseif ($hours > 0) {\n\t\t\t// hours \n\t\t\t$relative_date .= ($relative_date?', ':'').$hours.' hour'.($hours>1?'s':'');\n\t\t} elseif ($minutes > 0) {\n\t\t\t// minutes only\n\t\t\t$relative_date .= ($relative_date?', ':'').$minutes.' minute'.($minutes>1?'s':'');\n\t\t} else {\n\t\t\t// seconds only\n\t\t\t$relative_date .= ($relative_date?', ':'').$seconds.' second'.($seconds>1?'s':'');\n\t\t}\n\t}\n\t\n\t// Return relative date and add proper verbiage\n\treturn $relative_date.' ago';\n\t\n}", "function timeDiff($firstTime,$lastTime)\n {\n $firstTime=strtotime($firstTime);\n $lastTime=strtotime($lastTime);\n\n// perform subtraction to get the difference (in seconds) between times\n $timeDiff=$lastTime-$firstTime;\n\n return ($timeDiff);\n }", "public function timestamp_remaining_duration(): int {\n\t\t\t$timestamp_remaining = - 1;\n\t\t\t$user = learn_press_get_user( get_current_user_id() );\n\n\t\t\tif ( current_user_can( 'administrator' ) ||\n\t\t\t\t ( current_user_can( LP_TEACHER_ROLE ) &&\n\t\t\t\t $this->get_author()->get_id() === $user->get_id() )\n\t\t\t) {\n\t\t\t\treturn $timestamp_remaining;\n\t\t\t}\n\n\t\t\tif ( 0 === absint( $this->get_data( 'duration' ) ) ) {\n\t\t\t\treturn $timestamp_remaining;\n\t\t\t}\n\n\t\t\tif ( 'yes' !== $this->get_data( 'block_course_duration_expire' ) ) {\n\t\t\t\treturn $timestamp_remaining;\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Get cache\n\t\t\t * Please run wp_cache_delete('timestamp_remaining_duration_course_' . $this->get_id()); when save duration on course\n\t\t\t */\n\t\t\t$timestamp_remaining = wp_cache_get(\n\t\t\t\t'timestamp_remaining_duration_course_' . $this->get_id(),\n\t\t\t\t'course-post'\n\t\t\t);\n\n\t\t\tif ( ! is_bool( $timestamp_remaining ) ) {\n\t\t\t\treturn $timestamp_remaining;\n\t\t\t}\n\n\t\t\t$course_item_data = $user->get_course_data( $this->get_id() );\n\n\t\t\t$course_start_time = $course_item_data->get_start_time()->get_raw_date();\n\t\t\t$duration = $this->get_data( 'duration' );\n\t\t\t$timestamp_expire = strtotime( $course_start_time . ' +' . $duration );\n\t\t\t$timestamp_current = strtotime( current_time( 'mysql' ) );\n\t\t\t$timestamp_remaining = $timestamp_expire - $timestamp_current;\n\n\t\t\tif ( $timestamp_remaining < 0 ) {\n\t\t\t\t$timestamp_remaining = 0;\n\n\t\t\t\t// Set Cache\n\t\t\t\twp_cache_set(\n\t\t\t\t\t'timestamp_remaining_duration_course_' . $this->get_id(),\n\t\t\t\t\t$timestamp_remaining,\n\t\t\t\t\t'course-post'\n\t\t\t\t);\n\t\t\t}\n\n\t\t\treturn apply_filters( 'learnpress/course/block_duration_expire/timestamp_remaining', $timestamp_remaining );\n\t\t}", "public function getRelativeTime() : float\n {\n return ($this->timeStamp - static::$startTime);\n \n }", "function get_time_ago($time) {\n $time_difference = time() - $time;\n\n if( $time_difference < 1 ) { return 'less than 1 second ago'; }\n $condition = array( 12 * 30 * 24 * 60 * 60 => 'year',\n 30 * 24 * 60 * 60 => 'month',\n 24 * 60 * 60 => 'day',\n 60 * 60 => 'hour',\n 60 => 'minute',\n 1 => 'second'\n );\n\n foreach( $condition as $secs => $str )\n {\n $d = $time_difference / $secs;\n\n if( $d >= 1 )\n {\n $t = round( $d );\n return $t . ' ' . $str . ( $t > 1 ? 's' : '' ) . ' ago';\n }\n }\n}", "function timeSince($since) {\n $chunks = array(\n array(60 * 60 * 24 * 365 , 'year'),\n array(60 * 60 * 24 * 30 , 'month'),\n array(60 * 60 * 24 * 7, 'week'),\n array(60 * 60 * 24 , 'day'),\n array(60 * 60 , 'hour'),\n array(60 , 'min'),\n array(1 , 'sec')\n );\n\n for ($i = 0, $j = count($chunks); $i < $j; $i++) {\n $seconds = $chunks[$i][0];\n $name = $chunks[$i][1];\n if (($count = floor($since / $seconds)) != 0) {\n break;\n }\n }\n\n $print = ($count == 1) ? '1 '.$name : \"$count {$name}s\";\n return $print;\n }", "function time_since($since) {\n $chunks = array(\n array(60 * 60 * 24 * 365 , 'year'),\n array(60 * 60 * 24 * 30 , 'month'),\n array(60 * 60 * 24 * 7, 'week'),\n array(60 * 60 * 24 , 'day'),\n array(60 * 60 , 'hour'),\n array(60 , 'min'),\n array(1 , 'sec')\n );\n\n for ($i = 0, $j = count($chunks); $i < $j; $i++) {\n $seconds = $chunks[$i][0];\n $name = $chunks[$i][1];\n if (($count = floor($since / $seconds)) != 0) {\n break;\n }\n }\n\n $print = ($count == 1) ? '1 '.$name : \"$count {$name}s\";\n return $print;\n }", "public function getTimeRemaining(): int\n {\n return $this->runtimeDeadlineMs - $this->nowInMilliseconds();\n }", "function wac_datetimeleft($totaltime){\n\t$seconds = floor($totaltime);\n $minutes = floor($seconds / 60);\n $hours \t = floor($minutes / 60);\n $days \t = floor($hours / 24);\n\t\n\t$hours %= 24;\n $minutes %= 60;\n $seconds %= 60;\n\t \n\treturn ['d'=>$days,'h'=>$hours,'m'=>$minutes,'s'=>$seconds];\n}", "function pretty_timespan($seconds = 1, $time = '')\n{\n\t$timespan = timespan($seconds, $time);\n\n\tif (strpos($timespan, ',') !== FALSE)\n\t\t$timespan = strstr($timespan, ',', TRUE);\n\n\t/* The tilde is added as a token to be able to limit the str_replace to the\n\t beginning of the string. */\n\t$timespan = '~' . strtolower($timespan);\n\t$numbers = array('~1 ', '~2 ', '~3 ', '~4 ', '~5 ', '~6 ', '~7 ', '~8 ', '~9 ');\n\t$names = array('One ', 'Two ', 'Three ', 'Four ', 'Five ', 'Six ', 'Seven ', 'Eight ', 'Nine ');\n\t$timespan = str_replace($numbers, $names, $timespan);\n\t$timespan = str_replace('~', '', $timespan);\n\n\treturn $timespan;\n}", "private function _relative_time($date) {\n\t\t$valid_date = (is_numeric($date) && strtotime($date) === FALSE) ? $date : strtotime($date);\n\t\t$diff = time() - $valid_date;\n\t\tif ($diff > 0) {\n\t\t\tif ($diff < 60) {\n\t\t\t\treturn $diff . \" second\" . $this->_plural($diff) . \" ago\";\n\t\t\t}\n\t\t\t$diff = round($diff / 60);\n\n\t\t\tif ($diff < 60) {\n\t\t\t\treturn $diff . \" minute\" . $this->_plural($diff) . \" ago\";\n\t\t\t}\n\t\t\t$diff = round($diff / 60);\n\n\t\t\tif ($diff < 24) {\n\t\t\t\treturn $diff . \" hour\" . $this->_plural($diff) . \" ago\";\n\t\t\t}\n\t\t\t$diff = round($diff / 24);\n\n\t\t\tif ($diff < 7) {\n\t\t\t\treturn \"about \" . $diff . \" day\" . $this->_plural($diff) . \" ago\";\n\t\t\t}\n\t\t\t$diff = round($diff / 7);\n\n\t\t\tif ($diff < 4) {\n\t\t\t\treturn \"about \" . $diff . \" week\" . $this->_plural($diff) . \" ago\";\n\t\t\t}\n\n\t\t\treturn \"on \" . date(\"F j, Y\", strtotime($valid_date));\n\t\t} else {\n\t\t\tif ($diff > -60) {\n\t\t\t\treturn \"in \" . -$diff . \" second\" . $this->_plural($diff);\n\t\t\t}\n\t\t\t$diff = round($diff / 60);\n\n\t\t\tif ($diff > -60) {\n\t\t\t\treturn \"in \" . -$diff . \" minute\" . $this->_plural($diff);\n\t\t\t}\n\t\t\t$diff = round($diff / 60);\n\n\t\t\tif ($diff > -24) {\n\t\t\t\treturn \"in \" . -$diff . \" hour\" . $this->_plural($diff);\n\t\t\t}\n\t\t\t$diff = round($diff / 24);\n\n\t\t\tif ($diff > -7) {\n\t\t\t\treturn \"in \" . -$diff . \" day\" . $this->_plural($diff);\n\t\t\t}\n\t\t\t$diff = round($diff / 7);\n\n\t\t\tif ($diff > -4) {\n\t\t\t\treturn \"in \" . -$diff . \" week\" . $this->_plural($diff);\n\t\t\t}\t\n\n\t\t\treturn \"on \" . date(\"F j, Y\", strtotime($valid_date));\n\t\t}\n\t}", "public static function relative($date, $unit = null, $time = null)\r\n\t{\r\n\t\tif (is_null($time))\r\n\t\t{\r\n\t\t\t// Get now\r\n\t\t\t$time = JFactory::getDate('now');\r\n\t\t}\r\n\r\n\t\t// Get the difference in seconds between now and the time\r\n\t\t$diff = strtotime($time) - strtotime($date);\r\n\r\n\t\t// Less than a minute\r\n\t\tif ($diff < 60)\r\n\t\t{\r\n\t\t\treturn JText::_('JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE');\r\n\t\t}\r\n\r\n\t\t// Round to minutes\r\n\t\t$diff = round($diff / 60);\r\n\r\n\t\t// 1 to 59 minutes\r\n\t\tif ($diff < 60 || $unit == 'minute')\r\n\t\t{\r\n\t\t\treturn JText::plural('JLIB_HTML_DATE_RELATIVE_MINUTES', $diff);\r\n\t\t}\r\n\r\n\t\t// Round to hours\r\n\t\t$diff = round($diff / 60);\r\n\r\n\t\t// 1 to 23 hours\r\n\t\tif ($diff < 24 || $unit == 'hour')\r\n\t\t{\r\n\t\t\treturn JText::plural('JLIB_HTML_DATE_RELATIVE_HOURS', $diff);\r\n\t\t}\r\n\r\n\t\t// Round to days\r\n\t\t$diff = round($diff / 24);\r\n\r\n\t\t// 1 to 6 days\r\n\t\tif ($diff < 7 || $unit == 'day')\r\n\t\t{\r\n\t\t\treturn JText::plural('JLIB_HTML_DATE_RELATIVE_DAYS', $diff);\r\n\t\t}\r\n\r\n\t\t// Round to weeks\r\n\t\t$diff = round($diff / 7);\r\n\r\n\t\t// 1 to 4 weeks\r\n\t\tif ($diff <= 4 || $unit == 'week')\r\n\t\t{\r\n\t\t\treturn JText::plural('JLIB_HTML_DATE_RELATIVE_WEEKS', $diff);\r\n\t\t}\r\n\r\n\t\t// Over a month, return the absolute time\r\n\t\treturn JHtml::_('date', $date);\r\n\t}", "public static function elapsed(int $decimals = 8): float\n {\n return round((static::now() - static::$start), $decimals);\n }", "function timeDiff($firstTime,$lastTime) {\n\t\t$firstTime = strtotime($firstTime);\n\t\t$lastTime = strtotime($lastTime);\n\n\t\t// perform subtraction to get the difference (in seconds) between times\n\t\t$timeDiff = $lastTime-$firstTime;\n\n\t\t// return the difference\n\t\treturn $timeDiff;\n\t}", "function time_ago($d1, $d2){\r\n\t$d1 = (is_string($d1) ? strtotime($d1) : $d1);\r\n\t$d2 = (is_string($d2) ? strtotime($d2) : $d2);\r\n\r\n\t$diff_secs = abs($d1 - $d2);\r\n\t$base_year = min(date(\"Y\", $d1), date(\"Y\", $d2));\r\n\r\n\t$diff = mktime(0, 0, $diff_secs, 1, 1, $base_year);\r\n\t$diffArray = array(\r\n\t\t\"years\" => date(\"Y\", $diff) - $base_year,\r\n\t\t\"months_total\" => (date(\"Y\", $diff) - $base_year) * 12 + date(\"n\", $diff) - 1,\r\n\t\t\"months\" => date(\"n\", $diff) - 1,\r\n\t\t\"days_total\" => floor($diff_secs / (3600 * 24)),\r\n\t\t\"days\" => date(\"j\", $diff) - 1,\r\n\t\t\"hours_total\" => floor($diff_secs / 3600),\r\n\t\t\"hours\" => date(\"G\", $diff),\r\n\t\t\"minutes_total\" => floor($diff_secs / 60),\r\n\t\t\"minutes\" => (int) date(\"i\", $diff),\r\n\t\t\"seconds_total\" => $diff_secs,\r\n\t\t\"seconds\" => (int) date(\"s\", $diff)\r\n\t);\r\n\tif($diffArray['days'] > 0){\r\n\t\tif($diffArray['days'] == 1){\r\n\t\t\t$days = '1 day';\r\n\t\t}else{\r\n\t\t\t$days = $diffArray['days'] . ' days';\r\n\t\t}\r\n\t\treturn $days . ' and ' . $diffArray['hours'] . ' hours ago';\r\n\t}else if($diffArray['hours'] > 0){\r\n\t\tif($diffArray['hours'] == 1){\r\n\t\t\t$hours = '1 hour';\r\n\t\t}else{\r\n\t\t\t$hours = $diffArray['hours'] . ' hours';\r\n\t\t}\r\n\t\treturn $hours . ' and ' . $diffArray['minutes'] . ' minutes ago';\r\n\t}else if($diffArray['minutes'] > 0){\r\n\t\tif($diffArray['minutes'] == 1){\r\n\t\t\t$minutes = '1 minute';\r\n\t\t}else{\r\n\t\t\t$minutes = $diffArray['minutes'] . ' minutes';\r\n\t\t}\r\n\t\treturn $minutes . ' and ' . $diffArray['seconds'] . ' seconds ago';\r\n\t}else{\r\n\t\treturn 'Less than a minute ago';\r\n\t}\r\n}", "function timeago($referencedate=0, $timepointer='', $measureby=''){\n\t\t\n\t\tif($timepointer == '') $timepointer = time();\n\t\t$Raw = $timepointer-$referencedate;## Raw time difference\n\t\t$Clean = abs($Raw);\n\t\t\n\t\tif($Clean > 60*60*24*30){\n\t\t\tif(date(\"Y\")==date(\"Y\",$referencedate)){\n\t\t\t\t$strTime = date(\"n月j日\",$referencedate);\n\t\t\t\t}else{\n\t\t\t\t$strTime = date(\"Y年n月j日\",$referencedate);\n\t\t\t}\n\t\t\treturn $strTime;\n\t\t}\n\t\t\n\t\t$calcNum = array(\n\t\tarray('s', 60),\n\t\tarray('m', 60*60),\n\t\tarray('h', 60*60*60),\n\t\tarray('d', 60*60*60*24),\n\t\tarray('mo', 60*60*60*24*30)\n\t\t);\n\t\t## Used for calculating\n\t\t$calc = array(\n\t\t's' => array(1, '秒'), \n\t\t'm' => array(60, '分鐘'), \n\t\t'h' => array(60*60, '小時'), \n\t\t'd' => array(60*60*24, '日'), \n\t\t'mo' => array(60*60*24*30, '個月')\n\t\t);\n\t\t\n\t\tif($measureby == ''){\n\t\t\t$usemeasure = 's';## Default unit\n\t\t\tfor($i=0; $i<count($calcNum); $i++){\n\t\t\t\tif($Clean <= $calcNum[$i][1]){\n\t\t\t\t\t$usemeasure = $calcNum[$i][0];\n\t\t\t\t\t$i = count($calcNum);\n\t\t\t\t}\n\t\t\t}\n\t\t\t}else{\n\t\t\t$usemeasure = $measureby;## Used if a unit is provided\n\t\t}\n\t\t\n\t\t$datedifference = floor($Clean/$calc[$usemeasure][0]);\n\t\t\n\t\tif($referencedate != 0){\n\t\t\treturn $datedifference . '' . $calc[$usemeasure][1] . '前';\n\t\t\t}else{\n\t\t\treturn 'No Time';\n\t\t}\n\t}", "function staff_checklist_time_ago_and_due($seconds_ago,$recur_hours=NULL)\n{\n\tif (is_null($recur_hours))\n\t{\n\t\t$seconds_to_go=$seconds_ago; // Actually, if only one parameter given, meaning is different\n\t\t$seconds_ago=mixed();\n\t\tif (is_null($seconds_to_go))\n\t\t{\n\t\t\treturn array(do_lang_tempcode('DUE_NOT'),1000000);\n\t\t}\n\t} else\n\t{\n\t\tif (is_null($seconds_ago))\n\t\t{\n\t\t\treturn array(do_lang_tempcode('DUE_NOW'),0);\n\t\t} else\n\t\t{\n\t\t\t$seconds_to_go=$recur_hours*60*60-$seconds_ago;\n\t\t}\n\t}\n\n\tif ($seconds_to_go>0)\n\t{\n\t\treturn array(do_lang_tempcode('DUE_TIME',is_null($seconds_ago)?do_lang_tempcode('NA_EM'):make_string_tempcode(escape_html(display_time_period($seconds_ago))),make_string_tempcode(escape_html(display_time_period($seconds_to_go)))),$seconds_to_go);\n\t} else\n\t{\n\t\treturn array(do_lang_tempcode('DUE_TIME_AGO',is_null($seconds_ago)?do_lang_tempcode('NA_EM'):make_string_tempcode(escape_html(display_time_period($seconds_ago))),make_string_tempcode(escape_html(display_time_period(-$seconds_to_go)))),$seconds_to_go);\n\t}\n}", "function get_time_ago( $time )\n{\n $time_difference = time() - $time;\n \n if( $time_difference < 1 ) { return 'less than 1 second ago'; }\n $condition = array( 12 * 30 * 24 * 60 * 60 => 'year',\n 30 * 24 * 60 * 60 => 'month',\n 24 * 60 * 60 => 'day',\n 60 * 60 => 'hour',\n 60 => 'minute',\n 1 => 'second'\n );\n \n foreach( $condition as $secs => $str )\n {\n $d = $time_difference / $secs;\n \n if( $d >= 1 )\n {\n $t = round( $d );\n return $t . ' ' . $str . ( $t > 1 ? 's' : '' ) . ' ago';\n }\n }\n}", "function subtract($time1, $time2)\n{\n\t$total=$time1-$time2;\n\treturn $total;\n}", "public function passedTicks() {\r\n\t\t$seconds = 300;\r\n\r\n\t\t$lastUpdate = (int)($this->lastUpdate() / $seconds);\r\n\t\t$now = (int)(TIME / $seconds);\r\n\r\n\t\treturn ($now - $lastUpdate);\r\n\t}", "public function getDuration(): float;", "public function getTimeElapsed(): string\n {\n $now = new DateTime('now');\n $ago = new DateTime($this->datetime);\n $diff = $ago->diff($now);\n if (!empty($diff->y)) {\n $age = $diff->y . 'year';\n $age = $age . ($diff->y > 1 ? 's' : '');\n } elseif ($diff->m > 0) {\n $age = $diff->m . 'month';\n $age = $age . ($diff->m > 1 ? 's' : '');\n } elseif ($diff->d > 0) {\n $age = $diff->d . 'day';\n $age = $age . ($diff->d > 1 ? 's' : '');\n } elseif ($diff->h > 0) {\n $age = $diff->h . 'hour';\n $age = $age . ($diff->h > 1 ? 's' : '');\n } elseif ($diff->i > 0) {\n $age = $diff->i . 'minute';\n $age = $age . ($diff->i > 1 ? 's' : '');\n } else {\n $age = $diff->s . 'second';\n $age = $age . ($diff->s > 1 ? 's' : '');\n }\n $ageWithPostfix = $age . ' ago';\n return $ageWithPostfix;\n }", "public static function ago($t){\n\t\treturn date('Y-m-d H:i:s', time()-$t);\n\t}", "public function getDuration()\n {\n $this->initialRequest();\n if (isset($this->item['contentDetails']['duration'])) {\n\n $date = new \\DateInterval($this->item['contentDetails']['duration']);\n $ret = 0;\n $ret += (int)$date->format('%d') * 86400;\n $ret += (int)$date->format('%h') * 3600;\n $ret += (int)$date->format('%i') * 60;\n $ret += (int)$date->format('%s');\n return $ret;\n }\n else {\n $this->onApiBadInterpretation(\"contentDetails.duration not found\");\n }\n }", "function ibio_index_facet_duration( $params, $class ){\n if ( $params[ 'facet_name' ] != 'duration') return $params;\n\n $duration = $params['facet_value'];\n\n if ($duration < ( 15 * 60)) {\n $params[ 'facet_value'] = '15';\n $params[ 'facet_display_value'] = \"0 - 15 minutes\";\n\n } else if ( $duration < ( 30 * 60) ) {\n $params[ 'facet_value'] = '30';\n $params[ 'facet_display_value'] = \"15 - 30 minutes\";\n\n } else {\n $params[ 'facet_value'] = '60';\n $params[ 'facet_display_value'] = \"30+ minutes\";\n }\n\n return $params;\n\n}", "function time_elapsed_string($ptime)\n{\n if (empty($ptime)) {\n return \"No Time\";\n }\n $etime = time() - $ptime;\n\n if ($etime < 1) {\n return '0 seconds';\n }\n\n $a = array(365 * 24 * 60 * 60 => 'year',\n 30 * 24 * 60 * 60 => 'month',\n 24 * 60 * 60 => 'day',\n 60 * 60 => 'hour',\n 60 => 'min',\n 1 => 'sec'\n );\n $a_plural = array('year' => 'years',\n 'month' => 'months',\n 'day' => 'days',\n 'hour' => 'hours',\n 'min' => 'min',\n 'sec' => 'secs'\n );\n\n foreach ($a as $secs => $str) {\n $d = $etime / $secs;\n if ($d >= 1) {\n $r = round($d);\n return $r . ' ' . ($r > 1 ? $a_plural[$str] : $str) . '';\n }\n }\n}", "private function calculate_remaining_time($show_time, $total_time=30) {\n $remaining_time = $total_time - date_utils::getSecondsBetween(new DateTime($show_time), new DateTime());\n\n if ($remaining_time <= 0) {\n throw new Exception('Câu hỏi đã hết thời gian trả lời');\n }\n return $remaining_time; \n }", "function sloodle_describe_approx_time($secs, $ago = false)\n {\n // Make sure the time is a positive integer\n $secs = (int)$secs;\n if ($secs < 0) $secs *= -1;\n \n // Less than a minute\n if ($secs < 60) {\n // If we are describing a past time, then approximate to 'now'\n if ($ago) return ucwords(get_string('now', 'sloodle'));\n // Give the number of seconds\n if ($secs == 1) return '1 '. get_string('second', 'sloodle');\n return $secs.' '. get_string('seconds', 'sloodle');\n }\n \n // This variable will hold the time description\n $desc = '';\n \n // Roughly 1 minute\n if ($secs < 120) $desc = '1 '. get_string('minute', 'sloodle');\n // Several minutes (up to 1 hour)\n else if ($secs < 3600) $desc = ((string)(int)($secs / 60)).' '. get_string('minutes', 'sloodle');\n // Roughly 1 hour\n else if ($secs < 7200) $desc = '1 '. get_string('hour', 'sloodle');\n // Several hours (up to 1 day)\n else if ($secs < 86400) $desc = ((string)(int)($secs / 3600)).' '. get_string('hours', 'sloodle');\n // Roughly 1 day\n else if ($secs < 172800) $desc = '1 '. get_string('day', 'sloodle');\n // Several days (up to 1 week)\n else if ($secs < 604800) $desc = ((string)(int)($secs / 86400)).' '. get_string('days', 'sloodle');\n // Roughly 1 week\n else if ($secs < 1209600) $desc = '1 '. get_string('week', 'sloodle');\n // Several weeks (up to 2 months)\n else if ($secs < 5184000) $desc = ((string)(int)($secs / 604800)).' '. get_string('weeks', 'sloodle');\n // Several months (up to 11 months)\n else if ($secs < 29462400) $desc = ((string)(int)($secs / 2592000)).' '. get_string('months', 'sloodle');\n // 1 year\n else if ($secs < 63072000) $desc = '1 '. get_string('year', 'sloodle');\n // Several years\n else $desc = ((string)(int)($secs / 31536000)).' '. get_string('years', 'sloodle');\n \n // Add 'ago' if necessary\n if ($ago) return get_string('timeago', 'sloodle', $desc);\n return $desc;\n }", "function timeAgo($time_ago)\n {\n $time_ago = strtotime($time_ago);\n $cur_time = time()-28800;\n $time_elapsed = $cur_time - $time_ago;\n $seconds = $time_elapsed ;\n $minutes = round($time_elapsed / 60 );\n $hours = round($time_elapsed / 3600);\n $days = round($time_elapsed / 86400 );\n $weeks = round($time_elapsed / 604800);\n $months = round($time_elapsed / 2600640 );\n $years = round($time_elapsed / 31207680 );\n // Seconds\n if($seconds <= 60){\n return \"just now\";\n }\n //Minutes\n else if($minutes <=60){\n if($minutes==1){\n return \"one minute ago\";\n }\n else{\n return \"$minutes minutes ago\";\n }\n }\n //Hours\n else if($hours <=24){\n if($hours==1){\n return \"an hour ago\";\n }else{\n return \"$hours hrs ago\";\n }\n }\n //Days\n else if($days <= 7){\n if($days==1){\n return \"yesterday\";\n }else{\n return \"$days days ago\";\n }\n }\n //Weeks\n else if($weeks <= 4.3){\n if($weeks==1){\n return \"a week ago\";\n }else{\n return \"$weeks weeks ago\";\n }\n }\n //Months\n else if($months <=12){\n if($months==1){\n return \"a month ago\";\n }else{\n return \"$months months ago\";\n }\n }\n //Years\n else{\n if($years==1){\n return \"one year ago\";\n }else{\n return \"$years years ago\";\n }\n }\n }", "public static function relativeTimeExact($relativeTime)\r\n\t{\r\n\t\t// The times returned are exact\r\n\t\t// Becare on using this because it may return seconds\r\n\t\tif($relativeTime % 604800 == 0)\r\n\t\t{\r\n\t\t\tif($relativeTime == 604800)\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_days'], 7);\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_weeks'], floor($relativeTime / 604800));\r\n\t\t\t}\r\n\t\t}\r\n\t\telseif($relativeTime % 86400 == 0)\r\n\t\t{\r\n\t\t\tif($relativeTime == 86400)\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_hours'],24);\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_days'], floor($relativeTime / 604800));\r\n\t\t\t}\r\n\t\t}\r\n\t\telseif($relativeTime % 3600 == 0)\r\n\t\t{\r\n\t\t\tif($relativeTime == 3600)\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_minutes'], 60);\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_hours'], floor($relativeTime / 3600));\r\n\t\t\t}\r\n\t\t}\r\n\t\telseif($relativeTime % 60 == 0)\r\n\t\t{\r\n\t\t\tif($relativeTime == 60)\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_seconds'], 60);\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_minutes'], floor($relativeTime / 60));\r\n\t\t\t}\r\n\t\t}\r\n\t\telse //if($total_time % 1 == 0)\r\n\t\t{\r\n\t\t\tif($relativeTime == 1)\r\n\t\t\t{\r\n\t\t\t\t$return = ipsRegistry::getClass('class_localization')->words['1_second'];\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\t$return = sprintf(ipsRegistry::getClass('class_localization')->words['x_seconds'], $relativeTime);\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn $return;\r\n\t}", "public function getWaitTime()\n\t{\n\t\t$createTime = new DateTime($this->time_created);\n\t\t$startTime = new DateTime($this->time_started);\n\t\t$interval = $createTime->diff($startTime);\n\n\t\t$waitTime = ($interval->days * 24 * 3600) + ($interval->h * 3600) + ($interval->i * 60) + ($interval->s);\n\t\treturn $waitTime;\n\t}", "function elapsedSeconds() {\n if (null === $this->startMicrotime) {\n throw new InvalidArgumentException(\"Start time was not marked\");\n }\n if (null === $this->endMicrotime) {\n // Not stopped so return time from start to now\n return microtime(true) - $this->startMicrotime;\n }\n // Stopped so show total elapsed time between start and stop\n return $this->endMicrotime - $this->startMicrotime;\n }", "public function getdifftime($date1,$date2)\n {\n\n\n\n \n\n// Declare and define two dates \n$diff = abs($date1->getTimestamp()-$date2->getTimestamp());\n\n \n \n// To get the year divide the resultant date into \n// total seconds in a year (365*60*60*24) \n$years = floor($diff / (365*60*60*24)); \n \n \n// To get the month, subtract it with years and \n// divide the resultant date into \n// total seconds in a month (30*60*60*24) \n$months = floor(($diff - $years * 365*60*60*24) \n / (30*60*60*24)); \n \n \n// To get the day, subtract it with years and \n// months and divide the resultant date into \n// total seconds in a days (60*60*24) \n$days = floor(($diff - $years * 365*60*60*24 - \n $months*30*60*60*24)/ (60*60*24)); \n \n \n// To get the hour, subtract it with years, \n// months & seconds and divide the resultant \n// date into total seconds in a hours (60*60) \n$hours = floor(($diff - $years * 365*60*60*24 \n - $months*30*60*60*24 - $days*60*60*24) \n / (60*60)); \n \n \n// To get the minutes, subtract it with years, \n// months, seconds and hours and divide the \n// resultant date into total seconds i.e. 60 \n$minutes = floor(($diff - $years * 365*60*60*24 \n - $months*30*60*60*24 - $days*60*60*24 \n - $hours*60*60)/ 60); \n \n \n// To get the minutes, subtract it with years, \n// months, seconds, hours and minutes \n$seconds = floor(($diff - $years * 365*60*60*24 \n - $months*30*60*60*24 - $days*60*60*24 \n - $hours*60*60 - $minutes*60)); \n \nreturn $hours;\n }", "protected function calculateTime()\n {\n return $this->start->diffInHours($this->end) +\n round(\n ($this->start->diffInMinutes($this->end) - ($this->start->diffInHours($this->end) * 60)) / 60,\n 1\n );\n }", "public function getDuration($iDecimals = 3, $bAddTimeUnit = false)\n {\n $_fDuration = $this->fEnd - $this->fStarted;\n\n return Util::getReadableTime($_fDuration, $bAddTimeUnit, $iDecimals);\n }", "function cookie_duration( $duration, $user_id, $remember ) {\n\t\t$dur = $this->getService()->getDuration( true );\n\t\tif ( $dur < 2 ) {\n\t\t\t//duration set smaller than 2 days, use the custom for both remember & non remeber\n\t\t\treturn $dur;\n\t\t} elseif ( $remember ) {\n\t\t\t//this case only\n\t\t\treturn $dur;\n\t\t}\n\n\t\t//return default\n\t\treturn $duration;\n\t}", "public function get_duration() {\n\t\t$a = explode (' ',microtime()); \n \t$this->stop_time = (double) $a[0] + $a[1];\n \t$this->duration = number_format(($this->stop_time - $this->start_time),2);\n\n\t\treturn sprintf('<h2>%s</h2><div class=\"summarize-posts-errors\">%s</div>'\n\t\t\t, __('Execution Time', CCTM_TXTDOMAIN)\n\t\t\t, sprintf(__('%s seconds', CCTM_TXTDOMAIN), $this->duration));\n\t}", "function time_diff($start) {\n return formatDateTimeDiff($start);\n}", "public function get_seconds_left() {\r\n\t\tif ( $this->is_endless() ) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\t$time_left = $this->get_end_time() - current_time( 'timestamp' );\r\n\t\treturn $time_left < 0 ? 0 : $time_left;\t\r\n\t}", "public function get_time_left() {\r\n\t\tif ( $this->is_endless() ) {\r\n\t\t\treturn '';\r\n\t\t}\r\n\r\n\t\t$hour = 3600; \r\n\t\t$day = 86400;\r\n\r\n\t\t$seconds_left = $this->get_seconds_left();\t\t\r\n\r\n\t\t/**\r\n\t\t * Condition 1: The campaign has finished.\r\n\t\t */ \r\n\t\tif ( $seconds_left === 0 ) {\r\n\t\t\t$time_left = apply_filters( 'charitable_campaign_ended', __( 'Campaign has ended', 'charitable' ), $this );\r\n\t\t}\r\n\t\t/**\r\n\t\t * Condition 2: There is less than an hour left.\r\n\t\t */\r\n\t\telseif ( $seconds_left <= $hour ) {\r\n\t\t\t$minutes_remaining = ceil( $seconds_left / 60 );\r\n\t\t\t$time_left = apply_filters( 'charitabile_campaign_minutes_left', \r\n\t\t\t\tsprintf( _n('%s Minute Left', '%s Minutes Left', $minutes_remaining, 'charitable'), '<span class=\"amount time-left minutes-left\">' . $minutes_remaining . '</span>' ), \r\n\t\t\t\t$this\r\n\t\t\t);\r\n\t\t}\r\n\t\t/**\r\n\t\t * Condition 3: There is less than a day left. \r\n\t\t */\r\n\t\telseif ( $seconds_left <= $day ) {\r\n\t\t\t$hours_remaining = floor( $seconds_left / 3600 );\r\n\t\t\t$time_left = apply_filters( 'charitabile_campaign_hours_left', \r\n\t\t\t\tsprintf( _n('%s Hour Left', '%s Hours Left', $hours_remaining, 'charitable'), '<span class=\"amount time-left hours-left\">' . $hours_remaining . '</span>' ), \r\n\t\t\t\t$this\r\n\t\t\t);\r\n\t\t}\r\n\t\t/**\r\n\t\t * Condition 4: There is more than a day left.\r\n\t\t */\r\n\t\telse {\r\n\t\t\t$days_remaining = floor( $seconds_left / 86400 );\r\n\t\t\t$time_left = apply_filters( 'charitabile_campaign_days_left', \r\n\t\t\t\tsprintf( _n('%s Day Left', '%s Days Left', $days_remaining, 'charitable'), '<span class=\"amount time-left days-left\">' . $days_remaining . '</span>' ),\r\n\t\t\t\t$this\r\n\t\t\t);\r\n\t\t}\r\n\r\n\t\treturn apply_filters( 'charitable_campaign_time_left', $time_left, $this );\t\r\n\t}", "function daysAgo($timestamp){ \n date_default_timezone_set('Europe/Riga'); \n $time_ago = strtotime($timestamp); \n $current_time = time(); \n $time_difference = $current_time - $time_ago; \n $seconds = $time_difference; \n $minutes = round($seconds / 60 ); //code bellow calculates each unit by deviding seconds.\n $hours = round($seconds / 3600);\n $days = round($seconds / 86400);\n $weeks = round($seconds / 604800);\n $months = round($seconds / 2629440);\n $years = round($seconds / 31553280);\n if($seconds <= 60) \n { \n return \"Just Now\"; \n } \n else if($minutes <=60) \n { \n if($minutes==1) \n { \n return \"one minute ago\"; \n } \n else \n { \n return \"$minutes minutes ago\"; //two \"if\" statements are needed because of plural and singular.\n } \n } \n else if($hours <=24) \n { \n if($hours==1) \n { \n return \"an hour ago\"; \n } \n else \n { \n return \"$hours hrs ago\"; \n } \n } \n else if($days <= 7) \n { \n if($days==1) \n { \n return \"yesterday\"; \n } \n else \n { \n return \"$days days ago\"; \n } \n } \n else if($weeks <= 4.3) //4.3 == 52/12 \n { \n if($weeks==1) \n { \n return \"a week ago\"; \n } \n else \n { \n return \"$weeks weeks ago\"; \n } \n } \n else if($months <=12) \n { \n if($months==1) \n { \n return \"a month ago\"; \n } \n else \n { \n return \"$months months ago\"; \n } \n } \n else \n { \n if($years==1) \n { \n return \"one year ago\"; \n } \n else \n { \n return \"$years years ago\"; \n } \n } \n }", "protected function durationIntoSeconds($duration = null)\n\t{\n\t\tif ( !isset($duration) ) {\n\t\t\treturn null;\n\t\t}\n\n\t\tif ( is_numeric($duration) ) {\n\t\t\t$duration .= ' seconds';\n\t\t}\n\n\t\t$now = time();\n\n\t\treturn strtotime('+' . $duration, $now) - $now;\n\t}", "function human_time_diff($from, $to = 0)\n {\n }", "function time_taken($tally=0, $precision=5) {\n static $start = 0; // first call\n static $notch = 0; // tally calls\n static $time = 0; // set to time of each call (after setting $duration)\n $now = microtime(1);\n if (! $start) { // init, basically\n $time = $notch = $start = $now;\n return \"Starting at $start.\\n\";\n }\n $duration = $now - $time;\n $time = $now;\n $out = \"That took \".round($duration, $precision).\" seconds.\";\n if ($tally) { // time passed since last tally\n $since_start = $now - $start;\n $since_last_notch = $now - $notch;\n $notch = $now;\n $out .= \"<br>\\n\". round($since_start, $precision) .' seconds since start'.($since_start!=$since_last_notch ? ' ('.round($since_last_notch, $precision) .' since last sum).':'.');\n }\n return $out.\"\\n\";\n}", "public function dateDifference(string $past, string $now = 'now'): array {\n $seconds = 0;\n $minutes = 0;\n $hours = 0;\n $days = 0;\n $months = 0;\n $years = 0;\n\n // sets the default timezone\n date_default_timezone_set($this->_timezone);\n\n // finds the past in datetime\n $past = strtotime($past);\n // finds the current datetime\n $now = strtotime($now);\n\n // calculates the difference\n $timeDifference = $now - $past;\n\n // starts determining the time difference\n if ($timeDifference >= 0) {\n switch ($timeDifference) {\n // finds the number of years\n case ($timeDifference >= $this->_secondsPerYear):\n // uses floor to remove decimals\n $years = floor($timeDifference / $this->_secondsPerYear);\n // saves the amount of seconds left\n $timeDifference -= ($years * $this->_secondsPerYear);\n break;\n\n // finds the number of months\n case ($timeDifference >= $this->_secondsPerMonth && $timeDifference <= ($this->_secondsPerYear - 1)):\n // uses floor to remove decimals\n $months = floor($timeDifference / $this->_secondsPerMonth);\n // saves the amount of seconds left\n $timeDifference -= ($months * $this->_secondsPerMonth);\n break;\n\n // finds the number of days\n case ($timeDifference >= $this->_secondsPerDay && $timeDifference <= ($this->_secondsPerYear - 1)):\n // uses floor to remove decimals\n $days = floor($timeDifference / $this->_secondsPerDay);\n // saves the amount of seconds left\n $timeDifference -= ($days * $this->_secondsPerDay);\n break;\n\n // finds the number of hours\n case ($timeDifference >= $this->_secondsPerHour && $timeDifference <= ($this->_secondsPerDay - 1)):\n // uses floor to remove decimals\n $hours = floor($timeDifference / $this->_secondsPerHour);\n // saves the amount of seconds left\n $timeDifference -= ($hours * $this->_secondsPerHour);\n break;\n\n // finds the number of minutes\n case ($timeDifference >= $this->_secondsPerMinute && $timeDifference <= ($this->_secondsPerHour - 1)):\n // uses floor to remove decimals\n $minutes = floor($timeDifference / $this->_secondsPerMinute);\n // saves the amount of seconds left\n $timeDifference -= ($minutes * $this->_secondsPerMinute);\n break;\n\n // finds the number of seconds\n case ($timeDifference <= ($this->_secondsPerMinute - 1)):\n // seconds is just what there is in the timeDifference variable\n $seconds = $timeDifference;\n }\n }\n\n return [\n 'years' => $years,\n 'months' => $months,\n 'days' => $days,\n 'hours' => $hours,\n 'minutes' => $minutes,\n 'seconds' => $seconds\n ];\n }", "function dateDiff($t1, $t2) {\r\n\t\t$t1 = strtotime($t1);\r\n\t\t$t2 = strtotime($t1);\r\n\t\t$delta_T = ($t2 - $t1);\r\n\t\t$day = round(($delta_T % 604800) / 86400); \r\n\t\t$hours = round((($delta_T % 604800) % 86400) / 3600); \r\n\t\t$minutes = round(((($delta_T % 604800) % 86400) % 3600) / 60); \r\n\t\t$sec = round((((($delta_T % 604800) % 86400) % 3600) % 60));\r\n\r\n\t\treturn \"$day days $hours hours $minutes minutes $sec secs\";\t \r\n }", "function cal_times($times){\n\t\t$diffTime = time()-strtotime($times);\n\t\t//echo $diffTime; exit();\n\t\tif($diffTime>31104000){\n\n\t\t\t$time = ceil($diffTime/31104000);\n\n\t\t\treturn $time.' year ago';\n\n\t\t}elseif($diffTime>2492000){\n\n\t\t\t$time = ceil($diffTime/2492000);\n\n\t\t\treturn $time.' months ago';\n\n\t\t}elseif($diffTime>86400){\n\n\t\t\t$time = ceil($diffTime/86400);\n\n\t\t\treturn $time.' days ago';\n\n\t\t}elseif($diffTime>3600){\n\n\t\t\t$time = ceil($diffTime/3600);\n\n\t\t\treturn $time.' hours ago';\n\n\t\t}elseif($diffTime>60){\n\n\t\t\t$time = ceil($diffTime/60);\n\n\t\t\treturn $time.' minutes ago';\n\n\t\t}else{\n\n\t\t\treturn $diffTime.' second ago';\n\n\t\t}\n\n\t}" ]
[ "0.59821784", "0.59602374", "0.59602374", "0.59434414", "0.5736694", "0.5725866", "0.57257223", "0.5673406", "0.5556682", "0.5542592", "0.5542252", "0.55090135", "0.54891616", "0.54822963", "0.5475733", "0.5461648", "0.54274476", "0.54014164", "0.53529793", "0.5352883", "0.5319271", "0.52658266", "0.52538466", "0.5247396", "0.5242054", "0.5235388", "0.5226976", "0.5225006", "0.5205254", "0.52034193", "0.51908183", "0.51908183", "0.5182638", "0.51820105", "0.51806104", "0.5165402", "0.51418334", "0.51396394", "0.5132757", "0.5131037", "0.5119308", "0.5111583", "0.51058316", "0.5104312", "0.5102076", "0.50944304", "0.5083659", "0.50760347", "0.5074134", "0.5058254", "0.5047977", "0.5041361", "0.50193614", "0.5006283", "0.5000081", "0.49962962", "0.49885035", "0.4971581", "0.49566758", "0.49482062", "0.49468794", "0.49434635", "0.49393174", "0.49320623", "0.49311182", "0.49292126", "0.49242473", "0.49121553", "0.49035236", "0.4896454", "0.4893245", "0.48868328", "0.48850465", "0.488271", "0.48807353", "0.48730952", "0.48726532", "0.48649442", "0.4861665", "0.4849682", "0.4845369", "0.48306543", "0.48258445", "0.48243466", "0.48052117", "0.47985774", "0.4794028", "0.4792756", "0.47819322", "0.4769669", "0.47559473", "0.4748971", "0.47484085", "0.4748378", "0.47477952", "0.47439343", "0.47304213", "0.47274897", "0.47237006", "0.47218505", "0.47198582" ]
0.0
-1
Add seconds to time span
public function add(int $seconds): self { $this->duration = $this->duration + $seconds; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function addSeconds(int $seconds)\n {\n $time = clone $this;\n\n return $time->add(DateInterval::createFromDateString(\"{$seconds} seconds\"));\n }", "function tideways_span_timer_start($span)\n{\n}", "function setSecond( $value )\r\n {\r\n $value = min( $value, 59 );\r\n $this->SecondsElapsed = ( ( $this->hour() * 3600 ) + ( $this->minute() * 60 ) + $value );\r\n }", "public static function Timespan($timespan) {\n $timespan -= 3600 * ($hours = (int) floor($timespan / 3600));\n $timespan -= 60 * ($minutes = (int) floor($timespan / 60));\n $seconds = $timespan;\n\n $Result = sprintf('%02d:%02d:%02d', $hours, $minutes, $seconds);\n return $Result;\n }", "public function addSeconds($seconds) {\n\t\treturn $this->returnFluid($this->setTimestamp($this->getTimestamp() + $seconds + $this->getOffset()));\n\t}", "function pretty_timespan($seconds = 1, $time = '')\n{\n\t$timespan = timespan($seconds, $time);\n\n\tif (strpos($timespan, ',') !== FALSE)\n\t\t$timespan = strstr($timespan, ',', TRUE);\n\n\t/* The tilde is added as a token to be able to limit the str_replace to the\n\t beginning of the string. */\n\t$timespan = '~' . strtolower($timespan);\n\t$numbers = array('~1 ', '~2 ', '~3 ', '~4 ', '~5 ', '~6 ', '~7 ', '~8 ', '~9 ');\n\t$names = array('One ', 'Two ', 'Three ', 'Four ', 'Five ', 'Six ', 'Seven ', 'Eight ', 'Nine ');\n\t$timespan = str_replace($numbers, $names, $timespan);\n\t$timespan = str_replace('~', '', $timespan);\n\n\treturn $timespan;\n}", "public function getSeconds(&$time_seconds){\n\t\t$time_seconds = round($this->disposeTime(),4);\n\t}", "function setSecondsElapsed( $value )\r\n {\r\n $this->SecondsElapsed = $value;\r\n }", "public function recordProcessingTime($seconds);", "public function test_seconds_to_unit() {\n $this->assertEquals(array(0, 60), $this->element->seconds_to_unit(0)); // Zero minutes, for a nice default unit.\n $this->assertEquals(array(1, 1), $this->element->seconds_to_unit(1));\n $this->assertEquals(array(3601, 1), $this->element->seconds_to_unit(3601));\n $this->assertEquals(array(1, 60), $this->element->seconds_to_unit(60));\n $this->assertEquals(array(3, 60), $this->element->seconds_to_unit(180));\n $this->assertEquals(array(1, 3600), $this->element->seconds_to_unit(3600));\n $this->assertEquals(array(2, 3600), $this->element->seconds_to_unit(7200));\n $this->assertEquals(array(1, 86400), $this->element->seconds_to_unit(86400));\n $this->assertEquals(array(25, 3600), $this->element->seconds_to_unit(90000));\n\n $this->element = $this->mform->addElement('duration', 'testel', null, array('defaultunit' => 86400, 'optional' => false));\n $this->assertEquals(array(0, 86400), $this->element->seconds_to_unit(0)); // Zero minutes, for a nice default unit.\n }", "function TimeToSeconds($inputTime, &$printArray) \n{\t\n\t//now i need to strip h m s from this \n\t$s= substr($inputTime, (strlen($inputTime)-2)); // makes seconds the last 2 chars\n $inputTime=substr($inputTime,0,-3);//$inputTime=str_replace((\":\" . $s), \"\", $inputTime);\t//gets rid of seconds and :\n\t$m= substr($inputTime, (strlen($inputTime)-2)); \n\t$inputTime=substr($inputTime,0,-3);//$inputTime=str_replace((\":\" . $m), \"\", $inputTime);\t//gets rid of minutes and :\n\t$h= $inputTime; \n\t\n\t//PRINT\n\tarray_push($printArray,\"TimeToSeconds(adding/before): $h:$m:$s <br>\");\n\t\n\t//USE THIS FOR TOTALS? add each individual piece\n\t$totalH=($h*60*60);\n\t$totalM=($m*60);\n\t$totalS=($s);\n\t\n\t//Then send updated totals back to user\t\n\t\n\t//PRINT\n\tarray_push($printArray,\"TimeToSeconds: TotalTime- $totalH:$totalM:$totalS, Total: (\". ($totalH+$totalM+$totalS) .\") <br>\");\n\t\n\treturn ($totalH+$totalM+$totalS);\n}", "function Now($seconds_to_add=0);", "public function addSeconds(int $seconds) : Date\r\n {\r\n $this->addTime($seconds, 'S');\r\n\r\n return $this;\r\n }", "function addSeconds ($date, $seconds)\n\t{\n\t\treturn new date (\"Y-m-d H:i:s\", strtotime ($date) + $seconds);\n\t}", "function convertSeconds($seconds)\n{\n\t$date1 = new DateTime(\"@0\");\n\t$date2 = new DateTime(\"@$seconds\");\n\treturn $date1->diff($date2)->format(\"%a days, %h hours, %i minutes and %s seconds\");\n}", "public function set_add_delay($seconds) {\n $this->adddelay = $seconds;\n }", "function getTimeFromSeconds($seconds = '') {\n\n\t\t$hours = floor($seconds / 3600);\n\t\t$mins = floor($seconds / 60 % 60);\n\t\t$secs = floor($seconds % 60);\n\n\t\t$timeFormat = sprintf('%02d:%02d:%02d', $hours, $mins, $secs);\n\n\t\treturn $timeFormat;\n\t}", "public static function getCurrentTimeAddition($seconds)\n {\n return self::getCurrentTime() + $seconds;\n }", "public static function seconds(int $decimals = 2): float\n {\n return static::elapsed($decimals);\n }", "function timeElapsed($sec){\n\n if( $sec <= 1 ) 'Agora mesmo';\n\n $date = [ 'ano' => 31536000,\n 'mes' => 2592000,\n 'dia' => 86400,\n 'hora' => 3600,\n 'minuto' => 60,\n 'segundo' => 1];\n \n foreach( $date as $name => $time ){\n $qtde = $sec / $time;\n if( $qtde >= 1 ) return 'há ' . floor( $qtde ) . ' ' . $name . ($qtde > 2 ? 's' : '');\n }\n\n }", "function period2seconds($period_name,$span) {\n\tif (!$period_name || $period_name==\"lifespan\") {\n\t\treturn \"\";\n\t}\n\n\tif (!is_int ($span) || !$span) $span=1;\n\n\tif ($period_name==\"day\") {\n\t\treturn 60*60*24*$span;\n\t} elseif ($period_name==\"week\") {\n\t\treturn 60*60*24*7*$span;\n\t} elseif ($period_name==\"month\") {\n\t\treturn 60*60*24*30*$span;\n\t} elseif ($period_name==\"year\") {\n\t\treturn 60*60*24*365*$span;\n\t} else {\n\t\treturn $span;\n\t}\n}", "function TimeToSecondsNEW($inputTime) \n{\t\n\t//now i need to strip h m s from this \n\t$s= substr($inputTime, (strlen($inputTime)-2)); // makes seconds the last 2 chars\n $inputTime=substr($inputTime,0,-3);//$inputTime=str_replace((\":\" . $s), \"\", $inputTime);\t//gets rid of seconds and :\n\t$m= substr($inputTime, (strlen($inputTime)-2)); \n\t$inputTime=substr($inputTime,0,-3);//$inputTime=str_replace((\":\" . $m), \"\", $inputTime);\t//gets rid of minutes and :\n\t$h= $inputTime; \n\t\n\t//USE THIS FOR TOTALS? add each individual piece\n\t$totalH=($h*60*60);\n\t$totalM=($m*60);\n\t$totalS=($s);\n\t\n\t//Then send updated totals back to user\t\t\n\treturn ($totalH+$totalM+$totalS);\n}", "public static function timeElapsedInSeconds($time){\n $date_time = date_create($time);\n return time() - $date_time->format('U');\n }", "public function incremento()\n {\n if ($this->ss == 59) {\n $this->ss = 0;\n if ($this->mm == 59) {\n $this->mm = 0;\n if ($this->hh == 23) {\n $this->hh = 0;\n } else {\n $this->hh++;\n }\n } else {\n $this->mm++;\n }\n } else {\n $this->ss++;\n }\n }", "private function toSeconds(\\DateInterval $step): int {\n\t\tif ($this->convertible($step))\n\t\t\treturn $step->h * 3600 + $step->i * 60 + $step->s;\n\t\tthrow new \\InvalidArgumentException(\n\t\t\t'For time intervals are allowed only seconds, minutes and hours'\n\t\t);\n\t}", "public function ntc_seconds($input) {\n $this->seconds_input = substr(-5, 2);\n return $this->seconds_output = date('s') - $this->seconds_input;\n }", "function setSecondsElapsedHMS( $hour, $minute, $second )\r\n {\r\n $this->SecondsElapsed = ( ( $hour * 3600 ) + ( $minute * 60 ) + $second );\r\n setType( $this->SecondsElapsed, \"integer\" );\r\n }", "function formatSeconds( $seconds ) {\n $hours = 0;\n $milliseconds = str_replace( \"0.\", '', $seconds - floor( $seconds ) );\n\n if ( $seconds > 3600 ) {\n $hours = floor( $seconds / 3600 );\n }\n $seconds = $seconds % 3600;\n\n return str_pad( $hours, 2, '0', STR_PAD_LEFT ) . gmdate( ':i:s', $seconds ) . ($milliseconds ? \".$milliseconds\" : '') ;\n}", "public function seconds($callback = null)\n {\n Carbon::setTestNow(Carbon::now()->addSeconds($this->value));\n\n return $this->handleCallback($callback);\n }", "public function toSeconds($time) {\n \treturn intval($time / 1000) % 60;\n }", "public function add(int $seconds) : self\n {\n $newTime = $this->getUnixTimestamp() + $seconds;\n\n return self::createFromUnixTstamp($newTime);\n }", "public function setSeconds($seconds) {\n $this->_seconds = $seconds;\n return $this;\n }", "protected function startTimer()\r\n\t{\r\n\t\tlist($usec, $sec) = explode(\" \",$this->time);\r\n\t\t$this->startTime = ((float)$usec + (float)$sec);\r\n\t\treturn;\r\n\t}", "public function subSeconds(int $seconds)\n {\n $time = clone $this;\n\n return $time->sub(DateInterval::createFromDateString(\"{$seconds} seconds\"));\n }", "private function addTimer(array &$request) {\n $request['timer'] = microtime(true); //start time\n $request['time'] = false; //default if not overridden by time later\n }", "public function TimerDuration( $decimals = 4 )\r\n\t{\r\n\t\treturn number_format( $this->time_diff, $decimals );\r\n\t}", "function seconds_to_time_format($seconds = 0, $include_seconds = false) {\r\n $hours = floor($seconds / 3600);\r\n $mins = floor(($seconds - ($hours * 3600)) / 60);\r\n $secs = floor($seconds % 60);\r\n\r\n $hours = ($hours < 10) ? \"0\" . $hours : $hours;\r\n $mins = ($mins < 10) ? \"0\" . $mins : $mins;\r\n $secs = ($secs < 10) ? \"0\" . $secs : $secs;\r\n $sprintF = $include_seconds == true ? '%02d:%02d:%02d' : '%02d:%02d';\r\n return sprintf($sprintF, $hours, $mins, $secs);\r\n}", "function setMinute( $value )\r\n {\r\n $value = min( $value, 59 );\r\n $this->SecondsElapsed = ( ( $this->hour() * 3600 ) + ( $value * 60 ) + $this->second() );\r\n }", "public static function time_seconds($time) {\n //Convert oanda time from microseconds to seconds\n\t\t\treturn floor($time/1000000);\n\t\t}", "public function updateTime( Inx_Api_Recipient_Attribute $attr, $sValue );", "function tideways_span_timer_stop($span)\n{\n}", "public static function addTimes()\n\t{\n\t\tforeach (TimeKeeper::getAll() as $key => $values) {\n\t\t\tself::$response[\"time\"][$key][\"seconds\"] = $values[\"seconds\"];\n\t\t\tself::$response[\"time\"][$key][\"times\"] = $values[\"times\"];\n\t\t}\n\t}", "protected function secondsToTime($seconds) {\n $dtF = new \\DateTime(\"@0\");\n $dtT = new \\DateTime(\"@$seconds\");\n return $dtF->diff($dtT)->format('%a days, %h hours, %i minutes and %s seconds');\n }", "public function getSeconds() {\n $seconds = 0;\n foreach ($this->steps ?? [] as $step):\n $parser = explode(':', $step->getDuration());\n $seconds += (($parser[0] ?? 0) * 60 * 60) + (($parser[1] ?? 0) * 60) + $parser[2] ?? 0;\n endforeach;\n $this->seconds = $seconds;\n return $this->seconds;\n }", "function TimeToSec($time) {\n\t$dot2 = strpos($time, ':');\n\tif($dot2 > 0) {\n\t\t$min = substr($time, 0, $dot2);\n\t\t$time = substr($time, $dot2+1);\n\t}\n\t\t\n\t$time = ($min * 60) + $time;\n\treturn $time;\n}", "function sec2qty($sec)\r\n{\r\n $seconds = $sec / 3600;\r\n return round($seconds, 2);\r\n}", "function time_duration($seconds = '', $use = null, $zeros = false)\n{\n\n // Define time periods\n $periods = array (\n 'years' => 31556926,\n 'Months' => 2629743,\n 'weeks' => 604800,\n 'days' => 86400,\n 'hours' => 3600,\n 'minutes' => 60,\n 'seconds' => 1\n );\n \n // Break into periods\n $seconds = (float) $seconds;\n $segments = array();\n foreach ($periods as $period => $value) {\n if ($use && strpos($use, $period[0]) === false) {\n continue;\n }\n $count = floor($seconds / $value);\n if ($count == 0 && !$zeros) {\n continue;\n }\n $segments[strtolower($period)] = $count;\n $seconds = $seconds % $value;\n }\n \n // Build the string\n $string = array();\n foreach ($segments as $key => $value) {\n $segment_name = substr($key, 0, -1);\n $segment = $value . ' ' . $segment_name;\n if ($value != 1) {\n $segment .= 's';\n }\n $string[] = $segment;\n }\n \n return implode(', ', $string);\n}", "function setSecond($s) {\r\n if($s > 59 || $s < 0) {\r\n $this->segundo = 0;\r\n } else {\r\n $this->segundo = $s;\r\n }\r\n }", "function ibio_index_facet_duration( $params, $class ){\n if ( $params[ 'facet_name' ] != 'duration') return $params;\n\n $duration = $params['facet_value'];\n\n if ($duration < ( 15 * 60)) {\n $params[ 'facet_value'] = '15';\n $params[ 'facet_display_value'] = \"0 - 15 minutes\";\n\n } else if ( $duration < ( 30 * 60) ) {\n $params[ 'facet_value'] = '30';\n $params[ 'facet_display_value'] = \"15 - 30 minutes\";\n\n } else {\n $params[ 'facet_value'] = '60';\n $params[ 'facet_display_value'] = \"30+ minutes\";\n }\n\n return $params;\n\n}", "function elapsedSeconds() {\n if (null === $this->startMicrotime) {\n throw new InvalidArgumentException(\"Start time was not marked\");\n }\n if (null === $this->endMicrotime) {\n // Not stopped so return time from start to now\n return microtime(true) - $this->startMicrotime;\n }\n // Stopped so show total elapsed time between start and stop\n return $this->endMicrotime - $this->startMicrotime;\n }", "function addTaskTime($task, $time)\n\t\t{\n\t\t $updateData = array('totalSeconds' => $task['totalSeconds'] + $time);\n\n\t\t $this->db->where('id', $task['id'])->update('tasks', $updateData);\n\t\t}", "public function addTimeEvents(\\google\\tracing\\v1\\Span\\TimeEvent $value){\n return $this->_add(8, $value);\n }", "private function spread(\\DateInterval $step): string {\n\t\treturn gmdate('H \\h,i \\m,s \\s', $this->toSeconds($step));\n\t}", "protected function _secondsToTime($seconds) {\n\t\t\t$dtF = new DateTime(\"@0\");\n\t\t\t$dtT = new DateTime(\"@$seconds\");\n\t\t\t$msgid = '%a days, %h hours, %i minutes and %s seconds';\n\t\t\treturn $dtF->diff($dtT)->format( __( $msgid ) );\n\t\t}", "function format_time($secs) {\n\t\t $times = array(3600, 60, 1);\n\t\t $time = '';\n\t\t $tmp = '';\n\t\t for($i = 1; $i < 3; $i++) {\n\t\t\t $tmp = floor($secs / $times[$i]);\n\t\t\t if($tmp < 1) {\n\t\t\t\t $tmp = '00';\n\t\t\t }\n\t\t\t elseif($tmp < 10) {\n\t\t\t\t $tmp = '0' . $tmp;\n\t\t\t }\n\t\t\t $time .= $tmp;\n\t\t\t if($i < 2) {\n\t\t\t\t $time .= ':';\n\t\t\t }\n\t\t\t $secs = $secs % $times[$i];\n\t\t }\n\t\t return $time;\n\t\t}", "public function addTimer(float $interval, \\Closure $callback): void;", "function smarty_modifier_update_time($seconds_total, $allow_zero_value = false)\n{\n if ( is_null($seconds_total) || ($seconds_total === FALSE) || ($seconds_total == 0) )\n return \"&lt;Update_time: seconds error&gt;\";\n \n if (($days = floor($seconds_total/86400)) || 1)\n if ($days>0 || ($days == 0 && $allow_zero_value))\n $time_string = $days.\"d\";\n \n $seconds_total = floor($seconds_total - ($days*86400));\n \n if (($hours = floor($seconds_total/3600)) || 1)\n if ($time_string || $hours>0 || ($hours == 0 && $allow_zero_value))\n $time_string .= \" \".str_pad($hours, 2, \"0\", STR_PAD_LEFT).\"h\";\n \n $seconds_total = floor($seconds_total - ($hours*3600));\n \n if (($minutes = floor($seconds_total/60)) || 1)\n if ($time_string || $minutes>0 || ($minutes == 0 && $allow_zero_value))\n $time_string .= \" \".str_pad($minutes, 2, \"0\", STR_PAD_LEFT).\"m\";\n \n $seconds = round($seconds_total - ($minutes*60));\n \n if ($time_string || $seconds>0 || ($seconds == 0 && $allow_zero_value))\n $time_string .= \" \".str_pad($seconds, 2, \"0\", STR_PAD_LEFT).\"s\";\n \n return $time_string;\n}", "public function iSleepSeconds($seconds)\n {\n usleep($seconds*1000000);\n }", "function adSegundos($sec)\r\n {\r\n $this->adIntervalo(new Data_Intervalo($sec));\r\n }", "public function add($value, $timeUnit, $format = self::timePattern)\r\n {\r\n try\r\n { \r\n $time = new DateTime($this->parmTime());\r\n if($value < 0)\r\n {\r\n //$time->sub(new DateInterval(\"PT\".abs($hour).\"H\"));\r\n $time->sub(new DateInterval(\"PT\".abs($value).\"\".$timeUnit));\r\n }\r\n else\r\n {\r\n //$time->add(new DateInterval(\"PT\".$hour.\"H\"));\r\n $time->add(new DateInterval(\"PT\".$value.\"\".$timeUnit));\r\n }\r\n \r\n return $time->format($format);\r\n }\r\n catch(Exception $ex)\r\n {\r\n return $ex->getMessage();\r\n }\r\n }", "public static function timing($stats, $time) {\n\t\tStatsD::updateStats($stats, $time, 1, 'ms');\n\t}", "function convert_time($total)\n{\n return sprintf('%2d:%2d:%2d', intval($total/3600), intval($total/60) % 60, $total % 60);\n}", "function stop_timing() {\n $this->time = number_format(microtime(true) - $this->start_time, 3);\n }", "public function subtractSeconds($seconds) {\n\t\treturn $this->returnFluid($this->setTimestamp($this->getTimestamp() - $seconds + $this->getOffset()));\n\t}", "public function setTotalTime($val){\n $this->totalTime = $val;\n return $this;\n }", "function smarty_modifier_duration($seconds)\n{\n return formatDuration($seconds);\n}", "function getSecondsFromTime($time = '') {\n\t\tsscanf($time, \"%d:%d:%d\", $hours, $minutes, $seconds);\n\t\t$time_seconds = $hours * 3600 + $minutes * 60 + $seconds;\n\n\t\treturn $time_seconds;\n\t}", "public function addSecond($second)\r\n {\r\n $date = date(self::MASK_TIMESTAMP_USER, mktime($this->hour, $this->minute, $this->second + $second, $this->month, $this->day, $this->year));\r\n $this->setValue($date);\r\n\r\n return $this;\r\n }", "function seconds_to_time($inputSeconds)\n {\n\n $secondsInAMinute = 60;\n $secondsInAnHour = 60 * $secondsInAMinute;\n $secondsInADay = 24 * $secondsInAnHour;\n\n // extract days\n $days = floor($inputSeconds / $secondsInADay);\n\n // extract hours\n $hourSeconds = $inputSeconds % $secondsInADay;\n $hours = floor($hourSeconds / $secondsInAnHour);\n\n // extract minutes\n $minuteSeconds = $hourSeconds % $secondsInAnHour;\n $minutes = floor($minuteSeconds / $secondsInAMinute);\n\n // extract the remaining seconds\n $remainingSeconds = $minuteSeconds % $secondsInAMinute;\n $seconds = ceil($remainingSeconds);\n\n // return the final array\n return [\n 'd' => (int)$days,\n 'H' => (int)$hours,\n 'i' => (int)$minutes,\n 's' => (int)$seconds,\n ];\n }", "public function setUseSeconds($var)\n {\n GPBUtil::checkBool($var);\n $this->use_seconds = $var;\n\n return $this;\n }", "function sec2time ($sec) {\n $sec = (int) $sec;\n $time = ''; $h = 0;\n if ($sec >= 3600 ) {\n $h = (int) ($sec / 3600);\n if ($h > 0) { $time .= $h.':'; }\n $sec = $sec - $h*3600;\n }\n $m = (int) ($sec / 60);\n if ($h == 0) { $time .= $m.':'; }\n else { $time .= sprintf(\"%02d\", $m).':'; };\n if ($m > 0) { $sec = $sec - $m*60; }\n $time .= sprintf(\"%02d\", $sec);\n return $time;\n}", "function totalSecond($hh1, $mm1, $ss1 = '0', $hh2, $mm2, $ss3 = '0')\n {\n $seconds = mktime($hh1, $mm1, $ss1) - mktime($hh2, $mm2, $ss3);\n return $seconds;\n }", "function convertSecond2Time($seconds, $formatTime = 'H:i:s')\n {\n $result = date($formatTime, mktime(0, 0, $seconds));\n return $result;\n }", "private function uptime($sec) {\r\n $sec = abs($sec);\r\n\r\n return sprintf(\"%d Days %02d Hours %02d Min\", $sec / 60 / 60 / 24, ($sec / 60 / 60) % 24, ($sec / 60) % 60);\r\n }", "public function setSeconds($a = null)\n {\n throw new NotImplementedException(__METHOD__);\n }", "public function getSeconds(): int\n {\n return $this->seconds;\n }", "public function formatTimeWithSeconds(DateTimeInterface $time, Locale|string|null $locale = null): string\n {\n return $this->getFormatter($locale)->formatTimeWithSeconds($time);\n }", "public function getTotalSeconds()\n\t{\n\t\treturn ($this->s)\n\t\t+ ($this->i * 60)\n\t\t+ ($this->h * 60 * 60)\n\t\t+ ($this->d * 60 * 60 * 24)\n\t\t+ ($this->m * 60 * 60 * 24 * 30) \t// Month - usually days count 30\n\t\t+ ($this->y * 60 * 60 * 24 * 365);\t// Year - usually days count 365\n\t}", "public function secondsInFlight($seconds)\n {\n return ($this->numberOfCompletedFlightCycles($seconds) * $this->durationOfFlight())\n + $this->additionalSecondsInFlightOutsideOfACompletedCycle($seconds);\n }", "abstract public function sleep(Strand $strand, float $seconds);", "function getAsSeconds()\n {\n return $this->seconds;\n }", "function seconds_to_time( $seconds, $format = 'H:m:s' ) {\n\t// extract hours\n\t$hours = floor($seconds / (60 * 60));\n\t\n\t// extract minutes\n\t$divisor_for_minutes = $seconds % ( 60 * 60 );\n\t$minutes = floor( $divisor_for_minutes / 60 );\n\t\n\t// extract the remaining seconds\n\t$divisor_for_seconds = $divisor_for_minutes % 60;\n\t$seconds = ceil( $divisor_for_seconds );\n\t\n\t$format = str_replace( 'H', str_pad( $hours, 2, \"0\", STR_PAD_LEFT ), $format );\n\t$format = str_replace( 'm', str_pad( $minutes, 2, \"0\", STR_PAD_LEFT ), $format );\n\t$format = str_replace( 's', str_pad( $seconds, 2, \"0\", STR_PAD_LEFT ), $format );\n\t\n\treturn $format;\n\t\n}", "function time_to_secs($time)\n{\n$timeArr = array_reverse(split(\":\", $time));\n$seconds = 0;\n$vals = Array(1, 60, 3600, 86400);\nforeach($timeArr as $key => $value)\n{\nif(!isset($vals[$key]))\nbreak;\n$seconds += $value * $vals[$key];\n}\nreturn $seconds;\n}", "function extend_stop_time($pr_id, $stop_time) {\n\t\t$db=htvcenter_get_db_connection();\n\t\t$rs = $db->Execute(\"update \".$this->_db_table.\" set pr_stop=$stop_time where pr_id=$pr_id\");\n\n\t}", "private function formatTime($seconds, $precision=2) {\n $time = \"\";\n \n $weeks = floor($seconds / 604800);\n if ($weeks) {\n $time .= $weeks . ' ' . $this->lang['weeks'] . ' ';\n $seconds = $seconds % 604800;\n }\n $days = floor($seconds / 86400);\n if ($days) {\n $time .= $days . ' ' . $this->lang['days'] . ' ';\n $seconds = $seconds % 86400;\n }\n $hours = floor($seconds / 3600);\n if ($hours) {\n $time .= $hours . ' ' . $this->lang['hours'] . ' ';\n $seconds = $seconds % 3600;\n }\n $minutes = floor($seconds / 60);\n if ($minutes) {\n $time .= $minutes . ' ' . $this->lang['minutes'] . ' ';\n $seconds = $seconds % 60;\n }\n if ($seconds) {\n $time .= $seconds . ' ' . $this->lang['seconds'] . ' ';\n }\n return trim($time);\n }", "protected function dateIntervalSeconds($dateInterval){\n $hourSeconds = $dateInterval->h * 60 * 60;\n $minuteSeconds = $dateInterval->i * 60;\n\n return $dateInterval->s + $minuteSeconds + $hourSeconds; \n }", "public function add_time($t1, $t2){\t\n\t\t$sql = \"select TIME_FORMAT(addtime('$t1', '$t2'), '%k:%i') as total\";\n\t\t$result = $this->query($sql);\t\t\n\t\treturn $result[0][0]['total'];\n\t\t\n\t}", "public function allToSeconds($days, $hours, $minutes, $seconds)\n {\n $tatalseconds = 0;\n if($days != 0)\n $tatalseconds+= $days*24*60*60;\n if($hours != 0)\n $tatalseconds+= $hours*60*60;\n if($minutes != 0)\n $tatalseconds+= $minutes*60;\n if($seconds != 0)\n $tatalseconds+= $seconds;\n\n return $tatalseconds;\n }", "public function setSecond($value)\n {\n if ($value < 0 || $value > 59) {\n throw I18nException::forInvalidSeconds($value);\n }\n\n return $this->setValue('second', $value);\n }", "public static function elapsed(int $decimals = 8): float\n {\n return round((static::now() - static::$start), $decimals);\n }", "function totalTimeToday($timeInSeconds)\n{\n\n\t$totalMinutes = $timeInSeconds / 60;\n\n\t$roundedHours = $totalMinutes / 60;\n\n\t\tif($roundedHours < 1)\n\t\t{\n\t\t\t$roundedHours = 0;\n\t\t}\n\n\t$remainingMinutes = $totalMinutes % 60;\n\n\t$timeTotal = floor($roundedHours) . \" hrs \" . $remainingMinutes . \" mins\";\n\techo \"<div style=\\\"color:red;\\\">\" . $timeTotal . \"</div>\" . \"of total time worked today.\" . \"<br><br>\";\n\n\t$_SESSION['timeToday'] = $timeTotal; //formatted time display\n}", "public function seconds(): int {\n\t\treturn $this->duration;\n\t}", "function sloodle_describe_approx_time($secs, $ago = false)\n {\n // Make sure the time is a positive integer\n $secs = (int)$secs;\n if ($secs < 0) $secs *= -1;\n \n // Less than a minute\n if ($secs < 60) {\n // If we are describing a past time, then approximate to 'now'\n if ($ago) return ucwords(get_string('now', 'sloodle'));\n // Give the number of seconds\n if ($secs == 1) return '1 '. get_string('second', 'sloodle');\n return $secs.' '. get_string('seconds', 'sloodle');\n }\n \n // This variable will hold the time description\n $desc = '';\n \n // Roughly 1 minute\n if ($secs < 120) $desc = '1 '. get_string('minute', 'sloodle');\n // Several minutes (up to 1 hour)\n else if ($secs < 3600) $desc = ((string)(int)($secs / 60)).' '. get_string('minutes', 'sloodle');\n // Roughly 1 hour\n else if ($secs < 7200) $desc = '1 '. get_string('hour', 'sloodle');\n // Several hours (up to 1 day)\n else if ($secs < 86400) $desc = ((string)(int)($secs / 3600)).' '. get_string('hours', 'sloodle');\n // Roughly 1 day\n else if ($secs < 172800) $desc = '1 '. get_string('day', 'sloodle');\n // Several days (up to 1 week)\n else if ($secs < 604800) $desc = ((string)(int)($secs / 86400)).' '. get_string('days', 'sloodle');\n // Roughly 1 week\n else if ($secs < 1209600) $desc = '1 '. get_string('week', 'sloodle');\n // Several weeks (up to 2 months)\n else if ($secs < 5184000) $desc = ((string)(int)($secs / 604800)).' '. get_string('weeks', 'sloodle');\n // Several months (up to 11 months)\n else if ($secs < 29462400) $desc = ((string)(int)($secs / 2592000)).' '. get_string('months', 'sloodle');\n // 1 year\n else if ($secs < 63072000) $desc = '1 '. get_string('year', 'sloodle');\n // Several years\n else $desc = ((string)(int)($secs / 31536000)).' '. get_string('years', 'sloodle');\n \n // Add 'ago' if necessary\n if ($ago) return get_string('timeago', 'sloodle', $desc);\n return $desc;\n }", "protected function setRunIntervalSecond($second = null) {\n if ($second === null || $second == self::ASTERIX) {\n $this->second = self::ASTERIX;\n return;\n }\n\n $this->second = $this->parseRunIntervalValue($second, 0, 59);\n }", "function milisecond_to_time($time) {\n $hours = gmdate(\"H\", $time / 1000);\n $mins = gmdate(\"i\", $time / 1000);\n $seconds = gmdate(\"s\", $time / 1000);\n if($hours > 24) {\n $tags = Math.floor($hours/24);\n $hours = $hours % 24;\n }\n $res = \"$hours:$mins:$seconds\";\n return $res;\n }", "public static function secund($sec)\n {\n $time = round($sec);\n return sprintf('%02d godz. %02d min. %02d sek.', ($time/3600),($time/60%60), $time%60);\n }", "function hms2sec ($hms) {\n\tlist($h, $m, $s) = explode (\":\", $hms);\n\t$seconds = 0;\n\t$seconds += (intval($h) * 3600);\n\t$seconds += (intval($m) * 60);\n\t$seconds += (intval($s));\n\treturn $seconds;\n}", "public function getElapsedTimeInSeconds()\n {\n if(!$this->_timeStartInMicroSeconds)\n {\n return 0;\n }\n\n $microSecsStart = $this->_timeStartInMicroSeconds;\n $microSecsStop = $this->_timeStopInMicroSeconds;\n\n if($microSecsStop == 0)\n {\n // The function stopTimer was not called.\n $microSecsStop = microtime(true);\n }\n\n $seconds = $microSecsStop - $microSecsStart;\n\n return round($seconds, 4);\n }", "function SecondsToTime($inputTime, &$printArray) \n{\t\n\t//echo nl2br(\"Seconds are now: $Seconds \\n\");\n\tif($inputTime>=(60*60))\n\t{\n\t\t$CaryOver=$inputTime%(60*60);\n\t\t$Hours=floor($inputTime/(60*60));\n\t\t$inputTime=$CaryOver;\n\t\t//echo nl2br(\"Seconds are now: $CarryOver \\n\");\n\t\t\t\t\n\t}\n\n\tif($inputTime>=60)\n\t{\n\t\t$CaryOver=$inputTime%60; //Remainder\n\t\t$Minutes=floor($inputTime/60);\n\t\t$inputTime=$CaryOver;\n\t\t//echo nl2br(\"Minutes are now: $CarryOver \\n\");\n\t\t\n\t}\n\t$Seconds=$inputTime;\n\t\n\tarray_push($printArray,\"SecToTime: \",\"$Hours:$Minutes:$Seconds\",\"<br>\");\n\t\n\t//NOW Correct the FORMAT\n\tif($Hours<10)\n\t{$Hours=\"0\".$Hours;}\t\n\tif($Minutes<10)\n\t{$Minutes=\"0\".$Minutes;}\n\tif($Seconds<10)\n\t{$Seconds=\"0\".$Seconds;}\n\t\n\t\n\treturn (\"$Hours:$Minutes:$Seconds\");\n}", "function SecondsToTimeNEW($inputTime) \n{\t\n\t//echo nl2br(\"Seconds are now: $Seconds \\n\");\n\t//HOUR\n\tif($inputTime>=(60*60))\n\t{\n\t\t$CaryOver=$inputTime%(60*60);\n\t\t$Hours=floor($inputTime/(60*60));\n\t\t$inputTime=$CaryOver;\n\t\t\n\t}\n //MIN\n\tif($inputTime>=60)\n\t{\n\t\t$CaryOver=$inputTime%60; //Remainder\n\t\t$Minutes=floor($inputTime/60);\n\t\t$inputTime=$CaryOver;\n\t\t//echo nl2br(\"Minutes are now: $CarryOver \\n\");\n\t\t\n\t}\n\t//SEC\n\t$Seconds=$inputTime;\n\t\t\n\t//NOW Correct the FORMAT\n\tif($Hours<10)\n\t{$Hours=\"0\".$Hours;}\t\n\tif($Minutes<10)\n\t{$Minutes=\"0\".$Minutes;}\n\tif($Seconds<10)\n\t{$Seconds=\"0\".$Seconds;}\n\t\n\t\n\treturn (\"$Hours:$Minutes:$Seconds\");\n}" ]
[ "0.6376805", "0.62205637", "0.6187141", "0.617866", "0.6137229", "0.6029274", "0.58356947", "0.5762132", "0.57498384", "0.57357746", "0.5734939", "0.5701318", "0.5548187", "0.55237144", "0.55183643", "0.54988354", "0.54949653", "0.548731", "0.54866713", "0.54791963", "0.5468134", "0.54517907", "0.5431635", "0.5420686", "0.54181814", "0.54049593", "0.5378854", "0.53571594", "0.53557944", "0.5353531", "0.53392905", "0.53357244", "0.53337795", "0.53337395", "0.53208697", "0.5307392", "0.52899146", "0.5269092", "0.5261094", "0.5243358", "0.52371925", "0.5228551", "0.5196692", "0.5183929", "0.51799864", "0.51789886", "0.51679343", "0.51643157", "0.516153", "0.51594055", "0.5149102", "0.5142343", "0.51354027", "0.5134707", "0.51335233", "0.5096068", "0.50899994", "0.5083331", "0.5065939", "0.5060952", "0.50486624", "0.50430554", "0.5041732", "0.5040758", "0.5030943", "0.5027294", "0.5018494", "0.50182337", "0.5003269", "0.49974734", "0.49914244", "0.49897102", "0.49896225", "0.4989252", "0.49838164", "0.4983056", "0.49797034", "0.4970956", "0.49637395", "0.49587438", "0.4958534", "0.49556705", "0.49423996", "0.49420014", "0.49286988", "0.49253252", "0.4919315", "0.4917623", "0.4911503", "0.4906325", "0.49054754", "0.4905336", "0.4904036", "0.4898751", "0.48961955", "0.48960638", "0.48903203", "0.48850438", "0.4880897", "0.48693612" ]
0.59344465
6
Getter for the duration in seconds
public function seconds(): int { return $this->duration; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getDuration() {}", "public function getDuration();", "public function get_duration();", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration() {\n return $this->duration;\n }", "public function getDuration() {\n\t\treturn $this->duration;\n\t}", "public function getDuration()\n\t{\n\t\treturn $this->duration;\n\t}", "public function getDuration()\n\t{\n\n\t\treturn $this->duration;\n\t}", "public function getDurationTime()\n {\n return $this->duration * 60 * 60;\n }", "public function getDuration(): int\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->_getData(self::DURATION);\n }", "public function getDuration(): float;", "public function get_duration() {\n if ( empty( $this->duration ) ) {\n $this->duration = $this->calculate_duration();\n }\n return $this->duration;\n }", "public function getDuration() {\n $seconds = $this->getSeconds();\n $this->duration = sprintf('%s %02d:%02d:%02d', ((($seconds/86400%60) !== 0) ? ($seconds/86400%60) . 'd' : ''), ($seconds/3600%24),($seconds/60%60), $seconds%60);\n return $this->duration;\n }", "public function getDurationSeconds()\n {\n return ($this->batch->getDuration($this->name, 'start') / 1000);\n }", "function getAsSeconds()\n {\n return $this->seconds;\n }", "function getTimeDuration();", "public function getSeconds() {\n $seconds = 0;\n foreach ($this->steps ?? [] as $step):\n $parser = explode(':', $step->getDuration());\n $seconds += (($parser[0] ?? 0) * 60 * 60) + (($parser[1] ?? 0) * 60) + $parser[2] ?? 0;\n endforeach;\n $this->seconds = $seconds;\n return $this->seconds;\n }", "public function getDuration()\n {\n $this->initialRequest();\n if (isset($this->item['contentDetails']['duration'])) {\n\n $date = new \\DateInterval($this->item['contentDetails']['duration']);\n $ret = 0;\n $ret += (int)$date->format('%d') * 86400;\n $ret += (int)$date->format('%h') * 3600;\n $ret += (int)$date->format('%i') * 60;\n $ret += (int)$date->format('%s');\n return $ret;\n }\n else {\n $this->onApiBadInterpretation(\"contentDetails.duration not found\");\n }\n }", "public function getDurationAttribute()\n {\n // Did a SQL SELECT already compute this?\n if (isset($this->attributes['duration'])) {\n return (int)$this->attributes['duration'];\n }\n\n $on_duty = $this->getOriginal('on_duty');\n if ($this->off_duty) {\n return $this->off_duty->diffInSeconds($this->on_duty);\n }\n\n // Still on duty - return how many seconds have elasped so far\n return Carbon::parse(now())->diffInSeconds($this->on_duty);\n }", "public function getTotalDuration()\n {\n return $this->totalDuration;\n }", "public function getDur() {\n\t\treturn $this->dur;\n\t}", "public function getDuration()\n {\n if (!isset($this->data['events']['__section__'])) {\n return $this->getData('duration', 0);\n }\n\n /** @var \\Symfony\\Component\\Stopwatch\\StopwatchEvent $event */\n $event = $this->data['events']['__section__'];\n\n return $event->getDuration();\n }", "public function getSeconds(): int\n {\n return $this->seconds;\n }", "public function getDuration(): string|null;", "function secondsElapsed()\r\n {\r\n return $this->SecondsElapsed;\r\n }", "public function duration()\n\t{\n\t\treturn $this->CLI->stringQuery($this->SqueezePlyrID.\" duration ?\");\n\t}", "function getElapsedSeconds() {\n\t\treturn $this->time;\n\t}", "public function getDuration()\n {\n if (array_key_exists(\"duration\", $this->_propDict)) {\n if (is_a($this->_propDict[\"duration\"], \"\\DateInterval\") || is_null($this->_propDict[\"duration\"])) {\n return $this->_propDict[\"duration\"];\n } else {\n $this->_propDict[\"duration\"] = new \\DateInterval($this->_propDict[\"duration\"]);\n return $this->_propDict[\"duration\"];\n }\n }\n return null;\n }", "public function get_duration() {\n\t\t$duration = $this->get_product_meta( 'job_listing_duration' );\n\t\treturn absint( $duration ? $duration : mylisting_get_setting( 'submission_default_duration' ) );\n\t}", "public function duration()\n\t{\n\t\t$dif = $this->runEnd->difference( $this->runStart );\n\n\t\t$minutes = (int) $dif->getMinutes( true );\n\t\t$seconds = $dif->getSeconds( true );\n\n\t\t// Since $seconds includes the minutes, calc the extra\n\t\t$seconds = $seconds - ( $minutes * 60 );\n\n\t\treturn str_pad( (string) $minutes, 2, '0', STR_PAD_LEFT ) . ':' . str_pad( (string) $seconds, 2, '0', STR_PAD_LEFT );\n\t}", "public function get_duration() {\n\t\t$a = explode (' ',microtime()); \n \t$this->stop_time = (double) $a[0] + $a[1];\n \t$this->duration = number_format(($this->stop_time - $this->start_time),2);\n\n\t\treturn sprintf('<h2>%s</h2><div class=\"summarize-posts-errors\">%s</div>'\n\t\t\t, __('Execution Time', CCTM_TXTDOMAIN)\n\t\t\t, sprintf(__('%s seconds', CCTM_TXTDOMAIN), $this->duration));\n\t}", "public function get_duration()\n {\n $previous_point_obj = Game_Point::where(\n 'created_at',\n '<',\n $this->created_at\n )\n ->orderBy('created_at', 'desc')\n ->first();\n\n $current_point = $this->created_at;\n\n if (!empty($previous_point_obj)) {\n $previous_point = $previous_point_obj->created_at;\n } else {\n $previous_point = $this->game()->created_at;\n }\n\n $duration_obj = $current_point->diff($previous_point);\n\n $duration = '';\n\n $duration .= (int) $duration_obj->h > 0 ? $duration_obj->h . 'h' : '';\n $duration .= (int) $duration_obj->m > 0 ? $duration_obj->m . 'm' : '';\n $duration .= !empty($duration) && !empty($duration_obj->s) ? ':' : '';\n $duration .= (int) $duration_obj->s > 0 ? $duration_obj->s . 's' : '';\n\n return $duration;\n }", "public function get_field_resolver_duration()\n {\n }", "public function getDuration(): ?int\n {\n return $this->duration;\n }", "public function duration()\n {\n $start_date = (int) $this->start_date;\n $end_date = (int) $this->end_date;\n\n $duration = ($end_date - $start_date) / 1000;\n\n return $duration;\n }", "public function GetDuration_Min()\n {\n // phpcs:enable PSR1.Methods.CamelCapsMethodName.NotCamelCaps\n return $this->_min_duration;\n }", "public function getTravelTime(): Duration\n {\n return $this->travelTime;\n }", "public function getCombinedDuration()\n {\n return $this->combinedDuration;\n }", "public function getResponseDuration()\n\t{\n\t\treturn ($this->responseTime - $this->time) * 1000;\n\t}", "public function duration($value)\n {\n return $this->setProperty('duration', $value);\n }", "public function getDelayInSeconds()\n {\n $now = Carbon::now();\n $delayed = $now->copy()->modify($this->getDelayInterval());\n return $delayed->diffInSeconds(`$now`);\n }", "public function get_request_duration()\n {\n }", "public function getDurationAttribute($value)\n {\n // if ($value) {\n if (array_key_exists($value, self::$duration)) {\n return self::$duration[$value];\n }\n // }\n // return self::$duration[0];\n\n }", "public function getTrafficTime(): Duration\n {\n return $this->trafficTime;\n }", "public function getDuration(int $iSeg = -1) : float\r\n {\r\n return $this->getValue('duration', $iSeg);\r\n }", "public function secondsRemaining(): int\n {\n return $this->getTimeRemaining() / 1000;\n }", "public function getUseSeconds()\n {\n return $this->use_seconds;\n }", "public function getTiming()\n {\n return $this->timing;\n }", "public function getDuracion() {\n return $this->duracion;\n }", "public function getTimeRemaining()\n {\n return $this->time_remaining;\n }", "public function get_time_limit_in_seconds(): int {\n\t\t/**\n\t\t * Filters the lesson time limit in seconds.\n\t\t *\n\t\t * @since 4.6.0\n\t\t *\n\t\t * @param int $time_limit_in_seconds The lesson time limit in seconds.\n\t\t * @param Lesson $lesson The lesson model.\n\t\t *\n\t\t * @ignore\n\t\t */\n\t\treturn apply_filters(\n\t\t\t'learndash_model_lesson_time_limit',\n\t\t\t$this->get_time_limit_in_seconds_from_trait(),\n\t\t\t$this\n\t\t);\n\t}", "public function GetDuration_Max()\n {\n // phpcs:enable PSR1.Methods.CamelCapsMethodName.NotCamelCaps\n return $this->_max_duration;\n }", "public function getDurationNegative()\n {\n return $this->getProperty('neg');\n }", "public function get_duration() {\n\t\t$job_listing_duration = $this->get_job_listing_duration();\n\t\tif ( 'listing' === $this->get_package_subscription_type() ) {\n\t\t\treturn false;\n\t\t} elseif ( $job_listing_duration ) {\n\t\t\treturn $job_listing_duration;\n\t\t} else {\n\t\t\treturn get_option( 'job_manager_submission_duration' );\n\t\t}\n\t}", "public function getTimeout(): float\n {\n }", "public function get_job_listing_duration() {\n\t\treturn $this->get_product_meta( 'job_listing_duration' );\n\t}", "public function getTimeout()\n {\n return ($this->timeout / 1000000);\n }", "public function getTotalTime() {\n return (float) $this->profile->userTotals->totalDuration;\n }", "function elapsedSeconds() {\n if (null === $this->startMicrotime) {\n throw new InvalidArgumentException(\"Start time was not marked\");\n }\n if (null === $this->endMicrotime) {\n // Not stopped so return time from start to now\n return microtime(true) - $this->startMicrotime;\n }\n // Stopped so show total elapsed time between start and stop\n return $this->endMicrotime - $this->startMicrotime;\n }", "public function getDelayTime() {}", "public function getDuration( StopwatchEvent $event ) {\n\t\treturn ( $event->getDuration() / 1000 );\n\t}", "public function getDurationLabel()\n {\n return $this->format_duration($this->getWorkingDuration());\n }", "public function getSoldDurationInDays()\n {\n return $this->soldDurationInDays;\n }", "public function get_data_length() {\n return $this->duration;\n }", "public function getDelay()\n {\n return $this->delay;\n }", "public function getTotalDuration(): float\r\n\t{\r\n\t\t$time = 0;\r\n\t\tforeach ($this->data as $command) {\r\n\t\t\t$time += $command['duration'];\r\n\t\t}\r\n\r\n\t\treturn $time;\r\n\t}", "public function getTotalSeconds(): float\n {\n return $this->getTotalMilliseconds() / 1000;\n }", "public function getDurationAttribute($value)\n {\n return substr($value, 0, strlen($value) -3);\n }", "public function getDelay(): int\n {\n return $this->delay;\n }", "public function getDelay(): int\n {\n return $this->delay;\n }", "private function getDurationInSeconds($duration)\n {\n $aux = $duration % 60;\n if ($aux < 10) {\n $aux = '0'.$aux;\n }\n\n return $aux;\n }", "public function getElapsedTime() {\n\t\treturn self::$elapsedTime;\n\t}", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTimeout() {\r\n return $this->timeout;\r\n }", "public function getTimeout()\n {\n return isset($this->timeout) ? $this->timeout : 0;\n }", "function second()\r\n {\r\n $value = $this->SecondsElapsed;\r\n\r\n $second = $value % 60;\r\n\r\n return $second;\r\n }", "public function getTimeout() {\r\n\t\treturn $this->timeout;\r\n\t}", "public function duration()\n {\n if ($this->minDuration == 0 && $this->maxDuration == 0) return '1+ days';\n if ($this->minDuration == 1 && $this->maxDuration == 30) return '1+ days';\n if ($this->minDuration == 1 && $this->maxDuration == 1) return '1 day';\n if ($this->minDuration == $this->maxDuration) return $this->maxDuration.' days';\n if ($this->maxDuration == 30) return $this->minDuration.' days and more';\n\n return $this->minDuration.' - '.$this->maxDuration.' days';\n\n }", "public function getTimeout()\n {\n return $this->timeout;\n }", "public function getTravelDurationMultiple()\n {\n return isset($this->travel_duration_multiple) ? $this->travel_duration_multiple : 0.0;\n }", "public function calculate_duration() {\n $date_helper = YITH_WCBK_Date_Helper();\n $duration = $date_helper->get_time_diff( $this->from, $this->to, $this->duration_unit );\n if ( $this->is_all_day() )\n $duration += 1;\n\n return $duration;\n }", "public function lockSeconds()\n {\n return $this->type->lock_seconds;\n }", "protected function getElapsedTimeInMs()\n {\n return (microtime(true) - $this->start) * 1000;\n }", "public function getTimeout()\n {\n return self::$timeout;\n }", "public function getFrameDuration()\n {\n $payload = '';\n\n $data = $this->sendRequest(self::FUNCTION_GET_FRAME_DURATION, $payload);\n\n $payload = unpack('v1duration', $data);\n\n return $payload['duration'];\n }", "public function col_duration($values) {\n $lockcount = null;\n $duration = null;\n\n if (isset($values->lockcount)) {\n $lockcount = $values->lockcount;\n }\n\n if (isset($values->duration)) {\n $duration = $values->duration;\n }\n\n if ($lockcount > 0) {\n $duration = sprintf('%.4f', $values->duration / $values->lockcount);\n }\n\n if ($this->is_downloading()) {\n return $duration;\n }\n\n return format_time($duration);\n }", "public function getElapsedTime();" ]
[ "0.86303884", "0.8549719", "0.85131127", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.8511727", "0.84847087", "0.84441495", "0.8403533", "0.83407503", "0.83125025", "0.8283196", "0.8256188", "0.8207592", "0.82064563", "0.8166454", "0.7961109", "0.7802197", "0.7793776", "0.7755509", "0.7750628", "0.7650515", "0.76422787", "0.760422", "0.7538982", "0.748955", "0.74472165", "0.7346805", "0.7317114", "0.7315783", "0.7279962", "0.7272269", "0.7269167", "0.7251465", "0.7184842", "0.7160882", "0.7127256", "0.7101077", "0.703488", "0.7016798", "0.7005012", "0.69960237", "0.69631207", "0.695816", "0.6957852", "0.69259137", "0.69138163", "0.68736655", "0.6854795", "0.68407357", "0.681009", "0.6765002", "0.6752055", "0.674615", "0.6734658", "0.6717456", "0.6706697", "0.66845244", "0.6655354", "0.6642976", "0.664106", "0.6625884", "0.6597749", "0.65567136", "0.65522003", "0.65518945", "0.6531453", "0.65275186", "0.6518", "0.64913535", "0.6483121", "0.648174", "0.648174", "0.64746016", "0.646497", "0.646116", "0.646116", "0.646116", "0.646116", "0.646116", "0.6456548", "0.64561754", "0.64502376", "0.64470303", "0.64417136", "0.64396614", "0.64341414", "0.64335304", "0.6420648", "0.6418941", "0.6417292", "0.64122325", "0.6410311", "0.6398095" ]
0.8223605
19
Setter for the duration in seconds
public function setSeconds(int|float|string $set): self { $this->duration = $this->parse($set); if ($this->duration < 0) { $this->duration = -$this->duration; $this->invert = true; } else { $this->invert = false; } return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setDuration($value)\n {\n $this->duration = $value;\n }", "public function duration($duration) {\n $this->duration = $duration;\n }", "public function setDuration($val)\n {\n $this->_propDict[\"duration\"] = $val;\n return $this;\n }", "public function duration($value)\n {\n return $this->setProperty('duration', $value);\n }", "function setDuration( $value )\n {\n if ( $this->State_ == \"Dirty\" )\n $this->get( $this->ID );\n\n $this->Duration = $value;\n }", "public function setDurationAttribute($value)\n {\n $this->attributes['duration'] = $value . ':00';\n }", "public function setDuration(int $duration): void\n {\n $this->duration = $duration;\n }", "public function setDuration($duration)\n {\n $this->duration = $duration;\n }", "public function setDuration($duration)\n {\n $this->duration = $duration;\n }", "public function setDuration(?string $value): void {\n $this->getBackingStore()->set('duration', $value);\n }", "public function setDurationTime($dur)\n {\n $this->duration = $dur / 60 / 1000 / 60;\n }", "public function setDuration($var)\n {\n GPBUtil::checkString($var, True);\n $this->duration = $var;\n\n return $this;\n }", "public function setDuration($v)\n\t{\n\r\n\t\t// Since the native PHP type for this column is integer,\r\n\t\t// we will cast the input value to an int (if it is not).\r\n\t\tif ($v !== null && !is_int($v) && is_numeric($v)) {\r\n\t\t\t$v = (int) $v;\r\n\t\t}\r\n\n\t\tif ($this->duration !== $v || $v === 0) {\n\t\t\t$this->duration = $v;\n\t\t\t$this->modifiedColumns[] = MmPeer::DURATION;\n\t\t}\n\n\t}", "public function setDuration(&$var)\n {\n GPBUtil::checkMessage($var, \\Google\\Protobuf\\Duration::class);\n $this->duration = $var;\n }", "public function setDuration(float $duration) {\n $this->transaction->setDuration($duration);\n }", "public function setDuration($duration)\n {\n return $this->setData(self::DURATION, $duration);\n }", "public function Duration(int $duration)\n {\n IPS_SetProperty($this->InstanceID, 'UpdateTimer', $duration);\n IPS_ApplyChanges($this->InstanceID);\n }", "public function duration(int $duration)\n {\n $this->options['duration'] = $duration;\n\n return $this;\n }", "public function getDuration();", "public function getDuration() {}", "function setSecondsElapsed( $value )\r\n {\r\n $this->SecondsElapsed = $value;\r\n }", "public function setDuration($duration) {\n $this->duration = $duration;\n return $this;\n }", "public function set_cache_duration($seconds = 3600)\n {\n }", "public function getDuration(): float;", "public function get_duration();", "public function setDuration(?int $duration): self\n {\n $this->duration = $duration;\n\n return $this;\n }", "public function getDuration() {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function getDuration()\n {\n return $this->duration;\n }", "public function setDuration(Duration $duration, array $parameters = null) {\n $this->instance->add($this->calendar->createProperty('DURATION', $duration->toString(), $parameters));\n }", "public function getDuration(): int\n {\n return $this->duration;\n }", "public function getDuration() {\n\t\treturn $this->duration;\n\t}", "public function seconds(): int {\n\t\treturn $this->duration;\n\t}", "public function setFrameDuration($duration)\n {\n $payload = '';\n $payload .= pack('v', $duration);\n\n $this->sendRequest(self::FUNCTION_SET_FRAME_DURATION, $payload);\n }", "public function getDuration()\n\t{\n\t\treturn $this->duration;\n\t}", "public function setDur($dur) {\n\t\t$this->attributes['dur'] = $dur;\n\t\t$this->dur = $dur;\n\t\treturn $this;\n\t}", "public function SetDuration(\n $in_max_duration, ///< An epoch time, defining the maximum duration of a meeting.\n $in_min_duration = null ///< If defined, the minimum duration of the meeting.\n ) {\n // phpcs:enable PSR1.Methods.CamelCapsMethodName.NotCamelCaps\n $this->_max_duration = $in_max_duration;\n \n // We don't let this be less than, or equal to, the start time.\n if (((null != $in_max_duration) && (null != $in_min_duration)) && intval($in_min_duration) >= intval($in_max_duration)) {\n $in_min_duration = null;\n }\n\n $this->_min_duration = $in_min_duration;\n }", "public function getDuration() {\n $seconds = $this->getSeconds();\n $this->duration = sprintf('%s %02d:%02d:%02d', ((($seconds/86400%60) !== 0) ? ($seconds/86400%60) . 'd' : ''), ($seconds/3600%24),($seconds/60%60), $seconds%60);\n return $this->duration;\n }", "public function getDuration()\n\t{\n\n\t\treturn $this->duration;\n\t}", "public function setTimeOut($seconds)\r\n {\r\n $this->timeout = $seconds;\r\n }", "public function getDurationAttribute($value)\n {\n return substr($value, 0, strlen($value) -3);\n }", "public function set($key, $value, $duration = 0): void;", "public function getDurationTime()\n {\n return $this->duration * 60 * 60;\n }", "public function duration(int $duration = null): int\n {\n if (is_int($duration)) {\n // verify that the duration is at least 1 second\n if ($duration < 1) {\n throw new InvalidArgumentException([\n 'data' => ['method' => 'Session::duration', 'argument' => '$duration'],\n 'translate' => false\n ]);\n }\n\n $this->prepareForWriting();\n $this->duration = $duration;\n $this->expiryTime = time() + $duration;\n $this->regenerateTokenIfNotNew();\n }\n\n return $this->duration;\n }", "public function setSeconds($seconds) {\n $this->_seconds = $seconds;\n return $this;\n }", "public function deadlineDuration(?string $value): self\n {\n $this->instance->setDeadlineDuration($value);\n return $this;\n }", "public function set_autodiscovery_cache_duration($seconds = 604800)\n {\n }", "function setSecond( $value )\r\n {\r\n $value = min( $value, 59 );\r\n $this->SecondsElapsed = ( ( $this->hour() * 3600 ) + ( $this->minute() * 60 ) + $value );\r\n }", "public static function destroyDuration();", "public function toneDuration(float $toneDuration) {\n $this->toneDuration = $toneDuration;\n }", "public static function createDuration();", "public function get_duration() {\n if ( empty( $this->duration ) ) {\n $this->duration = $this->calculate_duration();\n }\n return $this->duration;\n }", "function getTimeDuration();", "public function setTimeout($var)\n {\n GPBUtil::checkMessage($var, \\Google\\Protobuf\\Duration::class);\n $this->timeout = $var;\n\n return $this;\n }", "public function setTimeout($secs)\n {\n $this->timeout = (int)$secs;\n }", "public function setDuration(\\DateInterval $duration)\n {\n $this->duration = $duration;\n return $this;\n }", "public function setDuration(\\DateInterval $duration)\n {\n $this->duration = $duration;\n return $this;\n }", "public function setDuration(\\DateInterval $duration)\n {\n $this->duration = $duration;\n return $this;\n }", "public function getDurationAttribute($value)\n {\n // if ($value) {\n if (array_key_exists($value, self::$duration)) {\n return self::$duration[$value];\n }\n // }\n // return self::$duration[0];\n\n }", "public function get_field_resolver_duration()\n {\n }", "function setSecond($s) {\r\n if($s > 59 || $s < 0) {\r\n $this->segundo = 0;\r\n } else {\r\n $this->segundo = $s;\r\n }\r\n }", "public function getDurationSeconds()\n {\n return ($this->batch->getDuration($this->name, 'start') / 1000);\n }", "public function setBanDuration($value)\n {\n $this->banDuration = ((string) $value === '') ? null : (int) $value;\n\n return $this;\n }", "public function getDur() {\n\t\treturn $this->dur;\n\t}", "public function getDurationAttribute()\n {\n // Did a SQL SELECT already compute this?\n if (isset($this->attributes['duration'])) {\n return (int)$this->attributes['duration'];\n }\n\n $on_duty = $this->getOriginal('on_duty');\n if ($this->off_duty) {\n return $this->off_duty->diffInSeconds($this->on_duty);\n }\n\n // Still on duty - return how many seconds have elasped so far\n return Carbon::parse(now())->diffInSeconds($this->on_duty);\n }", "public function getDuration(): string|null;", "public function getDuration()\n {\n return $this->_getData(self::DURATION);\n }", "public function col_duration($values) {\n $lockcount = null;\n $duration = null;\n\n if (isset($values->lockcount)) {\n $lockcount = $values->lockcount;\n }\n\n if (isset($values->duration)) {\n $duration = $values->duration;\n }\n\n if ($lockcount > 0) {\n $duration = sprintf('%.4f', $values->duration / $values->lockcount);\n }\n\n if ($this->is_downloading()) {\n return $duration;\n }\n\n return format_time($duration);\n }", "function getAsSeconds()\n {\n return $this->seconds;\n }", "public function set_timeout($timeout)\n {\n // Sanitize the timeout, and save to instance.\n \n $this->timeout = (int)$timeout;\n }", "public function duration()\n\t{\n\t\t$dif = $this->runEnd->difference( $this->runStart );\n\n\t\t$minutes = (int) $dif->getMinutes( true );\n\t\t$seconds = $dif->getSeconds( true );\n\n\t\t// Since $seconds includes the minutes, calc the extra\n\t\t$seconds = $seconds - ( $minutes * 60 );\n\n\t\treturn str_pad( (string) $minutes, 2, '0', STR_PAD_LEFT ) . ':' . str_pad( (string) $seconds, 2, '0', STR_PAD_LEFT );\n\t}", "public function setExpireDuration(int $expireDuration): void\n {\n $this->setParam($this->getExpireDurationParamKey(), $expireDuration);\n }", "public function testSetGetDuration()\n {\n $duration = 3.5;\n $event = (new Event())->setDuration($duration);\n $this->assertEquals($duration, $event->getDuration());\n }", "public function setAccessControlMaxAge(int $duration): void\n {\n $this->maxAge = $duration;\n }", "public function setSeconds($a = null)\n {\n throw new NotImplementedException(__METHOD__);\n }", "public function timeout($seconds) {\n $this->timeout = $seconds;\n\n return $this;\n }", "private function getDurationInSeconds($duration)\n {\n $aux = $duration % 60;\n if ($aux < 10) {\n $aux = '0'.$aux;\n }\n\n return $aux;\n }", "public function getSeconds(): int\n {\n return $this->seconds;\n }", "public function getTotalDuration()\n {\n return $this->totalDuration;\n }", "public function setSettingsSleepTimeoutInMinutes(?int $value): void {\n $this->getBackingStore()->set('settingsSleepTimeoutInMinutes', $value);\n }", "public function termDuration($termDuration)\n {\n return $this->setProperty('termDuration', $termDuration);\n }", "public function getSeconds() {\n $seconds = 0;\n foreach ($this->steps ?? [] as $step):\n $parser = explode(':', $step->getDuration());\n $seconds += (($parser[0] ?? 0) * 60 * 60) + (($parser[1] ?? 0) * 60) + $parser[2] ?? 0;\n endforeach;\n $this->seconds = $seconds;\n return $this->seconds;\n }", "public function setTimeout($value)\n {\n return $this->set('Timeout', $value);\n }", "public function setDurationMinutes(?int $durationMinutes): void\n {\n $this->durationMinutes['value'] = $durationMinutes;\n }", "public function timeout($seconds)\n {\n $this->timeout = $seconds;\n\n return $this;\n }", "public function test_seconds_to_unit() {\n $this->assertEquals(array(0, 60), $this->element->seconds_to_unit(0)); // Zero minutes, for a nice default unit.\n $this->assertEquals(array(1, 1), $this->element->seconds_to_unit(1));\n $this->assertEquals(array(3601, 1), $this->element->seconds_to_unit(3601));\n $this->assertEquals(array(1, 60), $this->element->seconds_to_unit(60));\n $this->assertEquals(array(3, 60), $this->element->seconds_to_unit(180));\n $this->assertEquals(array(1, 3600), $this->element->seconds_to_unit(3600));\n $this->assertEquals(array(2, 3600), $this->element->seconds_to_unit(7200));\n $this->assertEquals(array(1, 86400), $this->element->seconds_to_unit(86400));\n $this->assertEquals(array(25, 3600), $this->element->seconds_to_unit(90000));\n\n $this->element = $this->mform->addElement('duration', 'testel', null, array('defaultunit' => 86400, 'optional' => false));\n $this->assertEquals(array(0, 86400), $this->element->seconds_to_unit(0)); // Zero minutes, for a nice default unit.\n }", "public function timeout($seconds)\n {\n $this->option('-t', $seconds);\n return $this;\n }", "function setRequestTimeout($value)\n {\n $this->_props['RequestTimeout'] = $value;\n }", "function smarty_modifier_duration($seconds)\n{\n return formatDuration($seconds);\n}", "public function getDuration(): ?int\n {\n return $this->duration;\n }", "protected function update()\n {\n if ($this->getDataChanged() || !$this->getCustomSetting(\"duration\")) {\n try {\n $this->setCustomSetting(\"duration\", $this->getDurationFromBackend());\n } catch (\\Exception $e) {\n Logger::err(\"Unable to get duration of video: \" . $this->getId());\n }\n }\n\n $this->clearThumbnails();\n parent::update();\n }", "public function seconds($callback = null)\n {\n Carbon::setTestNow(Carbon::now()->addSeconds($this->value));\n\n return $this->handleCallback($callback);\n }", "public function unsetDurationMinutes(): void\n {\n $this->durationMinutes = [];\n }" ]
[ "0.8108345", "0.7808378", "0.7649673", "0.75624466", "0.7558407", "0.7511832", "0.7464856", "0.74577814", "0.74577814", "0.7408355", "0.7219642", "0.7035698", "0.7014301", "0.6919389", "0.68806046", "0.68518215", "0.6760959", "0.6621657", "0.6582546", "0.65240943", "0.6519168", "0.64721036", "0.64686584", "0.6454788", "0.64459467", "0.6366004", "0.63652843", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.6351866", "0.63371754", "0.6280429", "0.6250338", "0.6244612", "0.62296474", "0.62233454", "0.61882406", "0.61870533", "0.6111488", "0.6100125", "0.6086198", "0.6010214", "0.6006467", "0.59905183", "0.59819835", "0.5979224", "0.596307", "0.59564614", "0.59018946", "0.58623534", "0.5782768", "0.57726485", "0.5768564", "0.5762565", "0.57601494", "0.5714707", "0.5712843", "0.5712843", "0.5712843", "0.5674568", "0.5642477", "0.5614293", "0.56056577", "0.55830014", "0.5575588", "0.5571996", "0.5554741", "0.55445933", "0.55337685", "0.55294144", "0.5521071", "0.54900587", "0.548598", "0.5478444", "0.5474349", "0.5474236", "0.5460869", "0.54528034", "0.5429752", "0.54253167", "0.5422612", "0.5421679", "0.54202604", "0.54110575", "0.54063815", "0.53914094", "0.53762555", "0.5366538", "0.5365482", "0.5365275", "0.53557515", "0.5346264", "0.53451264", "0.5344664" ]
0.6015463
47
Convert to SQL format (an integer as string)
public function sql(): string { return strval($this->duration); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function tosql($value, $type)\n{\n if(!strlen($value))\n return \"NULL\";\n else\n if($type == \"Number\")\n return str_replace (\",\", \".\", doubleval($value));\n else\n {\n if(get_magic_quotes_gpc() == 0)\n {\n $value = str_replace(\"'\",\"''\",$value);\n $value = str_replace(\"\\\\\",\"\\\\\\\\\",$value);\n }\n else\n {\n $value = str_replace(\"\\\\'\",\"''\",$value);\n $value = str_replace(\"\\\\\\\"\",\"\\\"\",$value);\n }\n\n return \"'\" . $value . \"'\";\n }\n}", "function tosql($value, $type)\n{\n if(!strlen($value))\n return \"NULL\";\n else\n if($type == \"Number\")\n return str_replace (\",\", \".\", doubleval($value));\n else\n {\n if(get_magic_quotes_gpc() == 0)\n {\n $value = str_replace(\"'\",\"''\",$value);\n $value = str_replace(\"\\\\\",\"\\\\\\\\\",$value);\n }\n else\n {\n $value = str_replace(\"\\\\'\",\"''\",$value);\n $value = str_replace(\"\\\\\\\"\",\"\\\"\",$value);\n }\n\n return \"'\" . $value . \"'\";\n }\n}", "function db_intval($int)\n{\n\treturn $int + 0;\n}", "static function integer($value){\n\t\treturn DBValue::decimal($value);\n\t}", "public function getSqlFormattedValue()\n {\n if ($this->getType() == \"string\" || $this->getType() == \"time\" || $this->getType() == \"enum\") {\n return \"{\" .\"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName() .\",'notNumber')},\";\n } else if ($this->getType() == \"date\") {\n return \"{\" .\"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName() .\",'date')},\";\n } else if ($this->getType() == \"datetime\") {\n return \"{\" .\"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName() .\",'datetime')},\";;\n } else {\n return \"{\". \"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName().\")},\";\n }\n /*\n } else if ($this->getType() == \"date_OLD\") {\n return \"STR_TO_DATE(\". \"{\".\"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName().\",'date')},\".\"'\". \"{\".\"$\".\"constants['STORED_DATE_FORMAT']}\" .\"'),\";\n } else if ($this->getType() == \"datetime_OLD\") {\n return \"STR_TO_DATE(\". \"{\".\"$\". \"this->parseValue(\". \"$\". \"this->\". $this->getName().\",'date')},\".\"'\". \"{\".\"$\".\"constants['STORED_DATETIME_FORMAT']}\" .\"'),\";\n */\n\n }", "public static function convertDB($money)\n {\n // convert percent to display format\n return (int)($money * 10000);\n }", "function int_to_str($i) {\n\treturn implode('.', int_to_digits($i));\n}", "function ToSql ($field, $oper, $val) {\n\tswitch ($field) {\n\t\tcase 'id':\n\t\t\treturn intval($val);\n\t\t\tbreak;\n\t\tcase 'amount':\n\t\tcase 'tax':\n\t\tcase 'total':\n\t\t\treturn floatval($val);\n\t\t\tbreak;\n\t\tdefault :\n\t\t\t//mysql_real_escape_string is better\n\t\t\tif($oper=='bw' || $oper=='bn') return \"'\" . addslashes($val) . \"%'\";\n\t\t\telse if ($oper=='ew' || $oper=='en') return \"'%\" . addcslashes($val) . \"'\";\n\t\t\telse if ($oper=='cn' || $oper=='nc') return \"'%\" . addslashes($val) . \"%'\";\n\t\t\telse return \"'\" . addslashes($val) . \"'\";\n\t}\n}", "public function to_sql()\n\t\t{\n\t\t\treturn $this->id;\n\t\t}", "public function generate()\n {\n $sql = new Str();\n $sql->append('`' . $this->key . '`')\n ->append(' INT');\n\n if(!is_null($this->length))\n {\n $sql->append('(' . $this->length . ')');\n }\n\n if($this->unsigned)\n {\n $sql->append(' UNSIGNED');\n }\n\n if($this->not_null)\n {\n $sql->append(' NOT NULL');\n }\n\n if($this->autoincrement)\n {\n $sql->append(' AUTO_INCREMENT');\n }\n\n if($this->primary_key)\n {\n $sql->append(' PRIMARY KEY');\n }\n\n return $sql->get();\n }", "final public static function convertValueForSql($type, $value)\n\t{\n\t\tswitch($type)\n\t\t{\n\t\t\tcase Core::TYPE_INTEGER:\n\t\t\t\treturn intval($value);\n\n\t\t\tcase Core::TYPE_FLOAT:\n\t\t\t\treturn floatval($value);\n\t\t\t\tbreak;\n\n\t\t\tcase Core::TYPE_BOOLEAN:\n\t\t\t\treturn $value ? 1 : 0;\n\n\t\t\tcase Core::TYPE_STRING:\n\t\t\t\t$temp\t\t\t=\thtmlspecialchars_decode($value, ENT_QUOTES);\n\t\t\t\t$temp\t\t\t=\thtmlspecialchars($temp, ENT_QUOTES, Core::$current_db_is_utf8 ? 'UTF-8' : 'ISO-8859-1');\n\t\t\t\treturn '\"'.$temp.'\"';\n\n\t\t\tcase Core::TYPE_DATE:\n\t\t\tcase Core::TYPE_TIME:\n\t\t\tcase Core::TYPE_DATETIME:\n\t\t\tcase Core::TYPE_TIMESTAMP:\n\t\t\tcase Core::TYPE_YEAR:\n\t\t\t\t$format\t\t\t=\tnull;\n\n\t\t\t\tif(empty($value)) {\n\t\t\t\t\treturn 'NULL';\n\t\t\t\t}\n\n\t\t\t\tswitch($type)\n\t\t\t\t{\n\t\t\t\t\tcase Core::TYPE_TIME:\t\t$format\t=\t'H:i:s'; break;\n\t\t\t\t\tcase Core::TYPE_DATETIME:\t$format\t=\t'Y-m-d H:i:s'; break;\n\t\t\t\t\tcase Core::TYPE_TIMESTAMP:\t$format\t=\t'YmdHis'; break;\n\t\t\t\t\tcase Core::TYPE_YEAR:\t\t$format\t=\t'Y'; break;\n\t\t\t\t\tcase Core::TYPE_DATE:\t\t$format\t=\t'Y-m-d'; break;\n\t\t\t\t}\n\n\t\t\t\treturn\t'\"'.(is_numeric($value)\n\t\t\t\t\t\t? @date($format, $value)\n\t\t\t\t\t\t: (\n\t\t\t\t\t\t$value instanceof \\DateTime\n\t\t\t\t\t\t\t? $value->format($format)\n\t\t\t\t\t\t\t: $value\n\t\t\t\t\t\t)).'\"';\n\n\t\t\tdefault:\n\t\t\t\treturn $value;\n\t\t}\n\t}", "public static function formatToDb(?string $value): int\n\t{\n\t\tif (empty($value)) {\n\t\t\treturn 0;\n\t\t}\n\t\t$userModel = \\App\\User::getCurrentUserModel();\n\t\t$groupSeperator = $userModel->getDetail('currency_grouping_separator');\n\t\t$value = str_replace($groupSeperator, '', $value);\n\t\treturn (int) preg_replace('/[^0-9\\.-]/', '', $value);\n\t}", "public static function toDataBase($_number, $_decimals = 2) {\n\n if (!$_number) {\n return 0;\n }\n\n $_number = str_replace('.', '', $_number);\n $_number = str_replace(',', '.', $_number);\n\n return number_format($_number, $_decimals, '.', '');\n }", "public function toNative()\n {\n $value = parent::toNative();\n\n return \\intval($value);\n }", "function quote($val) {\n return is_int($val)?$val:\"\\\"\".$val.\"\\\"\";\n}", "public function quoteInt(?int $value): string\n {\n if ($value===null) return 'null';\n\n return (string)$value;\n }", "function value2sql( $type, $value )\n\t\t{\n\t\tif( $type == \"VARCHAR\" || $type == \"varchar\" || $type == \"char\" )\n\t\t\t{\n\t\t\tif( $value == \"\") return \" null\" ;\n\t\t\treturn \"'\" . $value . \"'\" ;\n\t\t\t}\n\t\telse if( $type == \"DATETIME\" )\n\t\t\t{\n\t\t\tif( $value == \"\") return \" null\" ;\n\t\t\treturn strftime( \"#%Y-%m-%d %H:%M:%S#\", $value ) ;\n\t\t\t}\n\t\treturn $value ;\n\t\t}", "function pgtypeval_to_SQL ($field_type, $val) {\n\tswitch (strtolower(trim($field_type))) {\n\t\tcase 'bool': // a boolean from a pg database\n\t\t\t$output = $val;\n\t\t\tbreak;\n\t\tcase 'int2': // a small integer from a pg database\n\t\tcase 'int4': // an integer from a pg database\n\t\tcase 'int8': // a long integer from a pg database\n\t\t\t$output = (integer) $val;\n\t\t\tbreak;\n\t\tcase 'numeric': // a \"numeric\" real number field from a pg database\n\t\tcase 'float4': // a single precision real number field from a pg database\n\t\tcase 'float8': // a double precision real number field from a pg database\n\t\t\t$output = (float) $val;\n\t\t\tbreak;\n\t\tcase 'date': // a date field from a pg database\n\t\t\t$output = \"'$val'\";\n\t\t\tbreak;\n\t\tcase 'time': // a time field from a pg database\n\t\tcase 'timetz': // a time field with timezone from a pg database\n\t\t\t$output = \"'$val'\";\n\t\t\tbreak;\n\t\tcase 'timestamp': // a timestamp field from a pg database\n\t\tcase 'timestamptz': // a timestamp field with timezone from a pg database\n\t\t\t$output = \"'$val'\";\n\t\t\tbreak;\n\t\tcase 'text': // a text field from a pg database\n\t\tcase 'varchar': // a varchar field from a pg database\n\t\tcase 'bpchar': // a bpchar field from a pg database\n\t\t\t$output = \"'$val'\";\n\t\t\tbreak;\n\t\tdefault: // an unanticipated field type, put a text box or single selects, but may not work\n\t\t\t$output = \"'$val'\";\n\t}\n\treturn $output;\n}", "public function sqlToString($isotime)\r\n\t\t{\r\n\t\t\treturn $this->timeToString($this->sqlToTime($isotime));\r\n\t\t}", "protected function escapeInteger($value)\n {\n return (string) $value;\n }", "function to($dscNum);", "function intFmt($str) {\n return number_format($str, 0);\n}", "public function to_sql()\n {\n }", "public function __toString(): string\n {\n $nullConstraint = ($this->isNull) ? 'NULL' : 'NOT NULL';\n $type = $this->type === 'INT(11)' ? 'INT' : $this->type;\n $column = \"`{$this->name}` {$type} {$nullConstraint}\";\n\n if ($this->default === null && $this->isNull) {\n $column .= ' DEFAULT NULL';\n } elseif ($this->default !== null) {\n $defaultValue = is_numeric($this->default) === false ? \"'{$this->default}'\" : $this->default;\n $column .= \" DEFAULT {$defaultValue}\";\n }\n\n if ($this->isAutoIncrement) {\n $column .= ' AUTO_INCREMENT';\n }\n\n return $column;\n }", "function benc_int($i) {\n\treturn \"i\" . $i . \"e\";\n}", "protected function createNumeric() {\n\t\t$string =\n\t\t\t\t$this->columnSchema[ self::COLUMN_DEFINITION_TYPE ]\n\t\t\t\t. ( $this->columnSchema[ self::COLUMN_DEFINITION_DEFAULT ] !== NULL ? ' DEFAULT \"' . $this->columnSchema[ self::COLUMN_DEFINITION_DEFAULT ] . '\"' : '' )\n\t\t\t\t. ( strtolower( $this->columnSchema[ self::COLUMN_DEFINITION_IS_NULLABLE ] ) == 'no' ? ' NOT NULL' : '' )\n\t\t\t\t. ( !empty( $this->columnSchema[ self::COLUMN_DEFINITION_EXTRA ] ) ? ' auto_increment' : '' );\n\n\t\treturn $string;\n\t}", "function encode_int($int)\r\n {\r\n return 'i' . $int . 'e';\r\n }", "private function _indStoreDBFormat($val)\n\t{\n\t\tif (is_array($val) && implode($val) != '') {\n\t\treturn str_replace('', '00', $val[0]) . ':' . str_replace('', '00', $val[1]) . ':' . str_replace('', '00', $val[2]);\n\t\t}\n\t}", "public function toSql()\n {\n if ($this->isEmpty()) {\n return '';\n }\n\n $params = $this->getParams();\n\n $sql = array('SET');\n $set = array();\n\n foreach ($params as $column => $value) {\n $set[] = implode(' = ', array(\n $column, $this->getBuilder()->getHelper()->toDbValue($value)\n ));\n }\n\n $sql[] = implode(', ', $set);\n\n return implode(' ', $sql);\n }", "public function writeInt($num){ }", "function dbsimplevalue($value) {\n if (is_null($value)) {\n return 'NULL';\n }\n\n\t// Stripslashes\n\tif (get_magic_quotes_gpc())\n\t\t$value = stripslashes($value);\n\n\tif (!is_int($value))\n\t\t$value = \"'\" . addslashes($value) . \"'\";\n\n\treturn $value;\n}", "public function toSQL(){\n if ($this->type === 'RANGE') {\n return \"PARTITION {$this->name} VALUES LESS THAN ({$this->value})\";\n }\n\n if($this->type === 'LIST') {\n return \"PARTITION {$this->name} VALUES IN (\". implode(',', $this->value) . \")\";\n }\n return '';\n }", "public function toValue(): string\n {\n return (string) $this->pdoStatement->fetchColumn();\n }", "function sqlFormatField($field)\n\t{\n\t\tif(is_string($field))\n\t\t{\n $f=addslashes($field);\n\t\t\treturn \"'\" . $f . \"'\";\n\t\t}\n\t\tif(is_numeric($field))\n\t\t{\n\t\t\treturn $field;\n\t\t}\n\t\telseif(empty($field))\n\t\t{\n\t\t\treturn \"null\";\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn \"'\" . $field . \"'\";\n\t\t}\n\t}", "public static function amountToDB($amount) {\n $b = str_replace(',', '', $amount);\n\n if (is_numeric($b)) {\n $amount = $b;\n }\n return $amount;\n }", "public function enumerate_values_SQL(){\n\t\t$this->make_numeric(); \n\t\treturn \"$this->avg_reaction_time_m_no_faces, $this->accuracy_m_no_faces, $this->avg_reaction_time_m_faces, $this->accuracy_m_faces, \n\t\t$this->avg_reaction_time_aba_no_faces, $this->accuracy_aba_no_faces, $this->avg_reaction_time_aba_faces, $this->accuracy_aba_faces,\n\t\t$this->avg_reaction_time_faces, $this->accuracy_faces, $this->avg_reaction_time_no_faces, $this->accuracy_no_faces\";\n\t}", "public function writeInt32($num){ }", "public function toText()\n {\n if ($this->column->autoIncrement) {\n $this->typeMethodName = \"tinyIncrements\";\n }\n\n return parent::toText();\n }", "function IntToJs ($i) {\n\tGlobal $iTimeType;\n\tif ($iTimeType == 1) return $i;\n\t\n\t$n = $i % 100;\n\t$i = (int)($i / 100);\n\t$h = $i % 100;\n\t$i = (int)($i / 100);\n\t$d = $i % 50;\n\t$i = (int)($i / 50);\n\t$m = ($i % 20) -1;\n\t$i = (int)($i / 20);\n\t$y = ($i % 1000) + 2000;\n\treturn mktime($h,$n,0,$m,$d,$y);\n}", "function toDB($value, $type) {\n\t\t// everything is nullable\n\t\tif($value === null) return null;\n\t\t\n\t\tswitch($type) {\n\t\t\tcase 'datetime': // ISO-8601\n\t\t\tcase 'date':\n\t\t\t\tif($value instanceof DateTime) return $value->format('c');\n\t\t}\n\t\treturn $value;\n\t}", "function dbformatvalue($format, $value) {\n switch ($format) {\n case '%s':\n case '%g':\n if (is_null($value)) {\n return 'NULL';\n } else {\n return \"'\" . addslashes($value) . \"'\";\n }\n case '%S':\n if (is_null($value)) {\n return \"''\";\n } else {\n return \"'\" . addslashes($value) . \"'\";\n }\n case '%d':\n case '%f':\n if (is_null($value) || !is_numeric($value)) {\n return 'NULL';\n } else {\n return $value;\n }\n case '%D':\n case '%F':\n if (is_null($value) || !is_numeric($value)) {\n return 0;\n } else {\n return $value;\n }\n case '%G':\n if (is_null($value)) {\n return '0.0';\n } else {\n return \"'\" . $value . \"'\";\n }\n case '%x':\n if (is_null($value) || !is_int($value)) {\n return 'NULL';\n } else {\n return '0x' . sprintf(\"%X\", $value);\n }\n case '%X':\n if (is_null($value) || !is_int($value)) {\n return '0x0';\n } else {\n return '0x' . sprintf(\"%X\", $value);\n }\n default:\n return sprintf($format, \"'\" . addslashes($value) . \"'\");\n }\n}", "function prepValueForDB($value) {\n\t\tif($value === true) {\n\t\t\treturn 1;\n\t\t} if(!$value || !is_numeric($value)) {\n\t\t\treturn \"0\";\n\t\t} else {\n\t\t\treturn addslashes($value);\n\t\t}\n\t}", "public function __toString() {\r\n return $this->to_sql();\r\n }", "public function format(TechDivision_Lang_Integer $integer);", "function db_array_to_update_sqladd( $arr ) {\n\t$s = '';\n\tif ( DB_TYPE == 'access' ) $arr = toutf( $arr );\n\tif ( is_array( $arr ) ) {\n\t\tforeach ( $arr as $k => $v ) {\n\t\t\t$v = ( $v );\n\t\t\t$op = substr( $k, -1 );\n\t\t\tif ( $op == '+' || $op == '-' ) {\n\t\t\t\t$k = substr( $k, 0, -1 );\n\t\t\t\t$v = ( is_int( $v ) || is_float( $v ) ) ? $v : \"'$v'\";\n\t\t\t\t$s .= \"`$k`=$k$op$v,\";\n\t\t\t} else {\n\t\t\t\t$v = ( is_int( $v ) || is_float( $v ) ) ? $v : \"'$v'\";\n\t\t\t\t$s .= \"`$k`=$v,\";\n\t\t\t}\n\t\t}\n\t\treturn substr( $s, 0, -1 );\n\t} else {\n\t\treturn $arr;\n\t}\n}", "static function writeInt4(int $int): string {\n return \\pack('V', $int);\n }", "function tosql_string($string,$addslashes = false,$quotes){\n\tif (empty($string) && (!isset($string) || $string!='0')){\n\t\t$string = \"NULL\";\n\t}else{\n\t\t$string = trim(addslashes($string));\n\t\tif ($quotes){\n\t\t\tif ($addslashes){\n\t\t\t\t$string = \"\\\\'\".$string.\"\\\\'\";\n\t\t\t}else{\n\t\t\t\t$string = \"'\".$string.\"'\";\n\t\t\t}\n\t\t}\n\t}\n\treturn $string;\n}", "public function formatInt($value)\n {\n $return = \"null\";\n\n if ($value) {\n $return = intval($value);\n }\n\n return $return;\n }", "function quote($in)\n {\n if (is_int($in) || is_double($in)) {\n return $in;\n } elseif (is_bool($in)) {\n return $in ? 1 : 0;\n } elseif (is_null($in)) {\n return 'NULL';\n } else {\n return $this->escapeSimple($in);\n }\n }", "protected function typeInteger(Magic $column)\n {\n return 'INTEGER';\n }", "function id_casteo($id){\n\treturn (int)trim(stripslashes(htmlspecialchars($id)));\n}", "final public static function toSQL()\n {\n $select = false;\n foreach (self::$starts as $reserved) {\n if (strpos(self::$query, $reserved . ' ') === 0) {\n $select = true;\n break;\n }\n }\n\n if (!$select) {\n self::$query = \"SELECT * FROM \" . self::tableName() . self::$query;\n }\n\n\n $values = [];\n for ($i = 0; $i < sizeof(self::$bindParams); $i++) {\n foreach (self::$bindParams[$i] as $item) {\n $values[] = $item;\n }\n }\n\n if (sizeof($values) > 0) {\n $query = self::$query;\n self::$query = \"\";\n self::$where = false;\n self::$bindParams = array();\n $query = str_replace(\"?\", \"#%s#\", $query);\n $query = sprintf($query, ...$values);\n $query = str_replace(\"#\", \"'\", $query);\n return sprintf($query, ...$values);\n }\n return self::$query;\n }", "function to_str() {\n return \n //\n //For now we are deleting everything in that record\n \"DELETE {$this->str_values()}\"\n //\n //Get the from expression of the root\n . \"FROM {$this->root->fromexp()}\"\n //\n //the where condition is that the primary value is equal to the \n //primary column\n .\"WHERE {$this->wheres->to_str()} \\n\";\n }", "public function quote($value)\n {\n if ($value === null)\n {\n return 'null';\n }\n elseif ($value === true)\n {\n return \"'1'\";\n }\n elseif ($value === false)\n {\n return \"'0'\";\n }\n elseif (is_object($value))\n {\n // 未使用,因为query并没有分开到db_query类去\n //if ($value instanceof db_query)\n //{\n //// Create a sub-query\n //return '('.$value->compile($this).')';\n //}\n if ($value instanceof db_expression)\n {\n // Use a raw expression\n return $value->value();\n }\n else\n {\n // Convert the object to a string\n return $this->quote((string) $value);\n }\n }\n elseif (is_array($value))\n {\n return '('.implode(', ', array_map(array($this, __FUNCTION__), $value)).')';\n }\n elseif (is_int($value))\n {\n return \"'{$value}'\";\n }\n elseif (is_float($value))\n {\n // Convert to non-locale aware float to prevent possible commas\n //return sprintf('%F', $value);\n return $value;\n }\n\n return $this->escape($value);\n }", "public static function formatToInt($int, $size) {}", "static function writeInt3(int $int): string {\n return \\substr(\\pack('V', $int), 0, 3);\n }", "static function writeInt2(int $int): string {\n return \\pack('v', $int);\n }", "public function toInterpolatedSql() {\n $query = $this->toSql();\n $params = $this->values;\n\n $keys = array();\n $values = $params;\n\n # build a regular expression for each parameter\n foreach ($params as $key => $value) {\n if (is_string($key)) {\n $keys[] = '/:'.$key.'/';\n } else {\n $keys[] = '/[?]/';\n }\n\n if (is_string($value))\n $values[$key] = \"'\" . self::quoteValue($value) . \"'\";\n\n if (is_array($value))\n $values[$key] = \"'\" . implode(\"','\", self::quoteValue($value)) . \"'\";\n\n if (is_null($value))\n $values[$key] = 'NULL';\n }\n\n $query = preg_replace($keys, $values, $query, 1, $count);\n\n return $query;\n }", "public static function format($table_data){\r\n return (!is_numeric($table_data) && !is_bool($table_data))? \"'$table_data'\": $table_data;\r\n }", "private function int(int $value): string\n {\n return (string) $value;\n }", "protected function type_integer(Magic $column)\n {\n return 'INT';\n }", "function formatNumbers($inputID)\n\t{\n\t\t$number_format = number_format($inputID);\n\t\t\n\t\techo $number_format;\n\t}", "public function getSQLDefinition()\n {\n // Index columns are always of the same type\n if ($this->columnName == IESDataColumnType::INDEX_COLUMN_NAME) {\n return \"{$this->columnName} INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY\";\n }\n\n $type = \"\";\n $nullSuffix = $this->nullable ? \"NULL\" : \"NOT NULL\";\n\n if ($this->dataType == IESDataColumnType::STRING) {\n $type = \"VARCHAR({$this->getColumnLength()})\";\n } else if ($this->dataType == IESDataColumnType::BOOLEAN) {\n $type = \"BIT\";\n } else if ($this->dataType == IESDataColumnType::FLOAT) {\n $type = \"DECIMAL(13,4)\";\n } else if ($this->dataType == IESDataColumnType::INTEGER) {\n $subType = $this->getIntegerSubType();\n\n if ($subType == IESDataColumnIntegerTypes::SIGNED_BYTE)\n $type = \"TINYINT SIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::SIGNED_SHORT)\n $type = \"SMALLINT SIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::SIGNED_INTEGER)\n $type = \"INTEGER SIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::SIGNED_LONG)\n $type = \"BIGINT SIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::UNSIGNED_BYTE)\n $type = \"TINYINT UNSIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::UNSIGNED_SHORT)\n $type = \"SMALLINT UNSIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::UNSIGNED_INTEGER)\n $type = \"INTEGER UNSIGNED\";\n else if ($subType == IESDataColumnIntegerTypes::UNSIGNED_LONG)\n $type = \"BIGINT UNSIGNED\";\n }\n\n return \"`{$this->columnName}` {$type} {$nullSuffix}\";\n }", "public static function quote($n) {\n return \"'\" . DbSqlController::EscapeString($n) . \"'\";\n }", "protected function type_integer(Magic $column)\n {\n return 'INTEGER';\n }", "function array_to_sqladd($arr) {\n\t$s = '';\n\tforeach($arr as $k=>$v) {\n\t\t$v = addslashes($v);\n\t\t$op = substr($k, -1);\n\t\tif($op == '+' || $op == '-') {\n\t\t\t$k = substr($k, 0, -1);\n\t\t\t$s .= \"`$k`=`$k`$op'$v',\";\n\t\t} else {\n\t\t\t$s .= \"`$k`='$v',\";\n\t\t}\n\t}\n\treturn substr($s, 0, -1);\n}", "function th($number) {\n\treturn number_format(intval($number));\n}", "function sqlString( $string ) {\r\n\t\t\tif ( strtolower( $string ) == 'null' ) {\r\n\t\t\t\treturn 'null';\r\n\t\t\t}\r\n\t\t\tif ( strtolower( substr( $string, 0, 7 ) ) == 'to_date' ) {\r\n\t\t\t\treturn $string;\r\n\t\t\t}\r\n\t\t\treturn $this->_fmtQuote . $this->string( $string ) . $this->_fmtQuote;\r\n\t\t}", "public function __toString()\n {\n $sql = parent::__toString();\n $this->connection->limit($sql, $this->limit);\n return $sql;\n }", "public function quoteDecimal($value): string\n {\n if ($value===null || $value==='') return 'null';\n\n if (is_int($value) || is_float($value)) return (string)$value;\n\n return \"'\".$this->mysqli->real_escape_string($value).\"'\";\n }", "function time_php2sql($unixtime){\n return gmdate(\"Y-m-d H:i:s\", $unixtime);\n}", "public function toSql()\n {\n if (0 === count($this->getParams())) {\n return 'SELECT *';\n } else {\n return 'SELECT ' . implode(', ', $this->getParams());\n }\n }", "function decodeInteger($integer);", "function to_str() {\n //\n //Test if this sql has an elias \n $alias= is_null($this->alias) ? \"\":\"as `$this->alias`\";\n //\n //the update statement \n $smt=\"\"\n //This is an update statement \n .\"UPDATE \\n\"\n //\n //Get the root from expression as the source table of this update \n //statement \n . \"{$this->root->fromexp()} \\n\"\n . \"SET \\n\"\n //\n //get the values as key values pairs \n .\"{$this->str_values()} \\n\"\n //\n //The joins, if any\n . \"{$this->joins->to_str()} \\n\"\n //\n //the where condition is that the primary value is equal to the \n //primary column\n .\"WHERE {$this->wheres->to_str()} \\n\"\n //\n //include an ellias if any \n .\"$alias\";\n //\n //Return the sql statement\n return $smt;\n }", "function convert_number($n) {\r\r\n if($n != ''){\r\r\n $n = (0+str_replace(\",\", \"\", $n));\r\r\n }\r\r\n\r\r\n //if (!is_numeric($n)) return false;\r\r\n\r\r\n if ($n > 1000000000000) return round(($n/1000000000000), 2).'T';\r\r\n elseif ($n > 1000000000) return round(($n/1000000000), 2).'B';\r\r\n elseif ($n > 1000000) return round(($n/1000000), 2).'M';\r\r\n elseif ($n > 1000) return round(($n/1000), 2).'Th';\r\r\n \r\r\n return number_format($n);\r\r\n }", "public function to_sql() {\r\n if ($this->sql == null) {\r\n $this->sql = $this->builder->{$this->type}($this);\r\n }\r\n\r\n return $this->sql;\r\n }", "private function toSql($query)\n {\n return \"SELECT $query->query_fields $query->query_from $query->query_where $query->query_orderby $query->query_limit\";\n }", "function storeDatabaseFormat($val, $data)\n\t{\n\t\treturn $this->_indStoreDBFormat($val);\n\t}", "public static function formatToInt8($int) {}", "function to_str() {\n $smt=\"INSERT \\n\"\n //\n //Get the root of the sql \n . \"INTO {$this->root->fromexp()}\\n\"\n //The values\n . \"{$this->str_values()}\\n\"\n //\n //The joins if any because some insert may have sqls as their root\n .\"{$this->joins->to_str()}\" \n \n \n ;\n //\n //Return the sql statement that inserts \n return $smt;\n }", "public static function formatarDataDoMysql($data) {\n\t\treturn implode(\"/\", array_reverse(explode(\"-\", $data)));\n\t}", "function o_castInt($value) {\n\t\t\treturn Obj::singleton()->castInt($value);\n\t\t}", "public function toSql(ValueBinder $valueBinder = null): string;", "function securite_bdd($base, $string)\n{\n\tif(ctype_digit($string))\n\t{\n\t\t$string = intval($string);\n\t}\n\t// Pour tous les autres types\n\telse\n\t{\n\t\t$string = mysqli_real_escape_string($base, $string);\n\t\t$string = addcslashes($string, '%_');\n\t}\n\t\n\t// echo $string;\n\t// echo \"<br>\";\n\n\treturn $string;\n}", "function PrepInt(&$int,$blnNullable = true) {\n if($int === \"\" || $int === false || $int === null) {\n $int = \"NULL\";\n if(!$blnNullable) {\n $this->XaoThrow(\n \"XaoDb::PrepInt() Unhandled NOT NULL Exception. \" .\n \"See stack trace for details.\",\n debug_backtrace()\n );\n }\n return;\n }\n else {\n $int = (integer)$int;\n }\n }", "public function dbSerialize(): string;", "public function querySpecifiedField($strSql, $isInt = false)\n\t{\n\t\tif(!$this->checkup())\n\t\t{\n\t\t\treturn false;\n\t\t}\n\n\t\t$startTime = microtime(TRUE);\n\t\t$this->lastSql = $strSql;\n\t\t$objRes = mysqli_query($this->mysqli, $this->lastSql);\n\t\tif (!$objRes)\n\t\t{\n\t\t\treturn false;\n\t\t}\n\n\t\t$out = null;\n\t\t$arrResult = mysqli_fetch_row($objRes);\n\t\tif($arrResult)\n\t\t{\n\t\t\tif($isInt)\n\t\t\t{\n\t\t\t\t$out = intval($arrResult[0]);\n\t\t\t}\n\t\t\t$out = $arrResult[0];\n\t\t}\n\t\telse\n\t\t{\n\t\t\tif($isInt)\n\t\t\t{\n\t\t\t\t$out = 0;\n\t\t\t}\n\t\t\t$out = null;\t\n\t\t}\n\t\t$endTime = microtime(TRUE);\n\n\t\t$this->queryNum++;\n\t\t$this->querySql[] = $this->lastSql;\n\t\t$this->queryTime[] = $endTime - $startTime;\n\n\t\treturn $out;\n\t}", "static function writeInt1(int $int): string {\n return \\chr($int);\n }", "public function timeToSQL($ts)\r\n\t\t{\r\n\t\t\treturn date('Y-m-d H:i:s', $ts);\r\n\t\t}", "function GetQueryI ( $cSQL )\n{\n $val = $this->_db->getOne($cSQL);\n if ( DB::isError($val) ) {\n $this->_ERROR_(\"SQL('$cSQL') -> \".$val->getMessage(),$this->_DebugMode);\n return null;\n }\n//!!echo \"<br/>GetQueryI('$cSQL')=$val<br/>\";\n return (int)$val;\n}", "function gen_user_id()\n{\n global $dbc;\n\n $query = \"SELECT `id` FROM `users` ORDER BY `id` DESC LIMIT 1\";\n $result = mysqli_query($dbc, $query);\n\n list($id) = mysqli_fetch_array($result);\n\n $prefix = 'DIOCE-' . date(\"y\") . 'U';\n\n $idd = $id + 1;\n\n if($idd < 10)\n $value = '000' . $idd;\n elseif($idd < 100)\n $value = '00' . $idd;\n elseif($idd < 1000)\n $value = '0' . $idd;\n else\n $value = $idd;\n\n return $prefix . $value;\n}", "public function getCast()\n {\n $result = $this->getType();\n if ($result == \"date\")\n $result = \"string\";\n if ($result == \"datetime\")\n $result = \"string\";\n if ($result == \"enum\")\n $result = \"string\";\n if ($result == \"time\")\n $result = \"string\";\n // BIT, TIMESTAMP, VARBINARY, BLOB\n return \"(\" . $result . \")\";\n }", "private function _sql_limit() {\n\t\tif ( $this->limit ) {\n\t\t\treturn ' LIMIT ' . $this->limit;\n\t\t}\n\t\telse {\n\t\t\treturn '';\n\t\t}\n\t}", "public function escape($value)\n\t{\n\t\tif(is_int($value))\n\t\t\treturn $value;\n\t\telse if(is_float($value))\n\t\t\treturn str_replace(',', '.', ''.$value);\n\t\telse\n\t\t\treturn $this->escapeString($value);\n\t}", "function build_sql(string $sql, array $bindings = []): string\n{\n if (! Arr::isAssoc($bindings)) {\n $position = 0;\n foreach ($bindings as $value) {\n $position = strpos($sql, '?', $position);\n if ($position === false) {\n break;\n }\n\n $value = (string) match (gettype($value)) {\n 'integer', 'double' => $value,\n 'boolean' => (int) $value,\n default => sprintf(\"'%s'\", $value),\n };\n $sql = substr_replace($sql, $value, $position, 1);\n $position += strlen($value);\n }\n }\n\n return $sql;\n}", "function toSQL($mixed,$addslashes = false,$quotes = true){\n\tif (is_null($mixed)){\n\t\treturn 'NULL';\n\t}\n\tif (!is_array($mixed)){\n\t\treturn tosql_string($mixed,$addslashes,$quotes);\n\t}\n\t$string = '';\n\tforeach($mixed as $value){\n\t\tif ($string != ''){\n\t\t\t$string .= ',';\n\t\t}\n\t\t$string .= tosql_string($value,$addslashes,$quotes);\n\t}\n\treturn $string;\n}", "public function convertToUserIntObject() {}", "public function convert($integer)\n {\n if ($integer == 0) {\n return 'zero';\n }\n\n $name = array();\n $numbers = explode(',', number_format($integer));\n $count = count($numbers);\n\n foreach ($numbers as $number) {\n $padded = sprintf('%03d', $number);\n\n $hundreds = $this->getHundreds($padded);\n $tens = $this->getTens(substr($padded, 1));\n\n $temp = $hundreds . $tens;\n\n if ($hundreds && $tens) {\n $temp = $hundreds . ' and ' . $tens;\n }\n\n if ($count > 1) {\n $temp .= ' ' . $this->units[$count];\n }\n\n $count--;\n\n if ($temp) {\n $name[] = $temp;\n }\n }\n\n return implode(', ', $name);\n }", "function DateIntToStr ($i) {\n\tGlobal $iTimeType;\n\tif ($iTimeType == 1) return date('Y-m-d H:i:s',$i);\n\t\n\t$n = $i % 100;\n\t$i = (int)($i / 100);\n\t$h = $i % 100;\n\t$i = (int)($i / 100);\n\t$d = $i % 50;\n\t$i = (int)($i / 50);\n\t$m = ($i % 20) -1;\n\t$i = (int)($i / 20);\n\t$y = ($i % 1000) + 2000;\n\treturn sprintf (\"%04d-%02d-%02d %02d:%02d\", $y,$m,$d,$h,$n);\n}", "function gmp_intval($gmpnumber)\n{\n}" ]
[ "0.6123151", "0.6123151", "0.60980386", "0.6090499", "0.6052786", "0.586827", "0.5838087", "0.5816568", "0.5785453", "0.5783202", "0.5764238", "0.5751157", "0.5748751", "0.5680996", "0.5560394", "0.5556829", "0.5553827", "0.5529406", "0.55126303", "0.5473919", "0.5437409", "0.5410627", "0.5408771", "0.540296", "0.5361549", "0.5355441", "0.53445923", "0.5319627", "0.52851", "0.52826613", "0.52596533", "0.5232018", "0.52153426", "0.5209126", "0.51529086", "0.514789", "0.513654", "0.51121444", "0.51038146", "0.5097516", "0.509645", "0.50812495", "0.50811815", "0.5079527", "0.50651115", "0.5047001", "0.5012923", "0.5005511", "0.49981043", "0.49902132", "0.49846914", "0.49801567", "0.49717405", "0.4965966", "0.49613076", "0.4958402", "0.49576026", "0.4956634", "0.49498478", "0.49461693", "0.49390128", "0.49264", "0.49182674", "0.4917026", "0.49164757", "0.49120015", "0.49109036", "0.49077868", "0.49037543", "0.4902293", "0.49014363", "0.4893282", "0.48847702", "0.4881291", "0.48735344", "0.48711738", "0.4869287", "0.48675808", "0.48569745", "0.4855743", "0.48529425", "0.48454386", "0.48434052", "0.48321018", "0.48306933", "0.482175", "0.48148197", "0.48141533", "0.48085392", "0.4806281", "0.4800007", "0.4797191", "0.47873506", "0.47867203", "0.4783699", "0.47820604", "0.47771248", "0.4766111", "0.47652575", "0.47636014" ]
0.5749888
12
Fetch formatting for this object
public function formatting(array $options = []): array { $seconds = $this->seconds(); $ss = $seconds % 60; $minutes = floor($seconds / 60); $mm = $minutes % 60; $hours = floor($seconds / 3600); $hh = $hours % 24; $days = intval(floor($seconds / 86400)); return [ 'negative' => $this->invert ? '-' : '', 'seconds' => $seconds, 'ss' => StringTools::zeroPad($ss), 'minutes' => $minutes, 'mm' => StringTools::zeroPad($mm), 'hours' => $hours, 'hh' => StringTools::zeroPad($hh), 'days' => $days, 'dd' => StringTools::zeroPad($days), 'ddd' => StringTools::zeroPad($days % 365, 3), ]; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFormat() {}", "public function getFormat() {}", "public function getFormat() {}", "public function getFormatting() {\n\t\treturn $this->formatting;\n\t}", "public function getFormattedData();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function format() {\r\n\t\t$this->resource->format();\r\n\t}", "public function format() {\n return $this->format;\n }", "abstract public function getFormat();", "public function formatted()\n\t{\n\t\treturn $this->feed_formatted;\n\t}", "public function getFormatter();", "public function getFormat() { return $this->_format; }", "public function getFormat() {\n $result = TingOpenformatMethods::parseFields($this->_getDetails(), array('format'));\n return $result;\n }", "public function format()\n {\n return json_decode($this->renderer->format(), false, JSON_FORCE_OBJECT);\n }", "public function getFormatter()\n {\n }", "public function getFormatter()\n {\n }", "function format()\r\n\t{\r\n\t\treturn $this->text;\r\n\t}", "public function getFormats()\n {\n\t $format_field = $this->getValue('format');\n\t return wed_decodeJSON($format_field,true);\n }", "public function format()\n {\n return $this->hasOne('WhereYouLeftOff\\Format');\n }", "public function getFormatter()\n {\n return parent::getFormatter();\n }", "protected function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->_format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getDataToBeFormatted(){\n\t\t\treturn $this->setDataToBeFormatted();\n\t\t}", "public function getFormatSetting()\n {\n return $this->format_setting;\n }", "public function getFormat() {\n return $this->format;\n }", "public function getFormat()\n\t{\n\t\treturn $this->format; \n\n\t}", "abstract function format();", "public function getFormat()\n {\n\n return $this->format;\n }", "public static function formatting_process() {}", "public function getFormat() {\n\t\t\treturn $this->_format;\n\t\t}", "public function GetFormat () {\n\t\treturn $this->format;\n\t}", "public function getFormat() {\r\n\t\treturn $this->format;\r\n\t}", "public function &GetFormats()\n {\n // phpcs:enable PSR1.Methods.CamelCapsMethodName.NotCamelCaps\n return $this->_formats;\n }", "public function getFormatList()\n {\n return $this->formatList;\n }", "public static function getFormat(): string;", "public function getFormat()\n\t\t\t{\n\t\t\t\treturn $this->format;\n\t\t\t}", "public function getFormats()\n {\n return $this->_formats;\n }", "public function format() {\n\n /* * Add the mandatary props* */\n if (!is_null($this->name)) {\n $result[self::NAME_KEY] = $this->name;\n }\n\n /* * Add the optional props if any* */\n if (!is_null($this->optionalProperties)) {\n $result = array_merge($result, $this->optionalProperties);\n }\n\n\n return $result;\n }", "public function getFormatter()\n {\n return $this->_formatter; \n }", "public static function formats()\n {\n return self::$formats;\n }", "public function get() {\n return $this->___getItemFormatsSanitized( $this->aInputs, $this->aOldInputs );\n }", "public function getPublicationFormat() {\n $fields = array('format');\n $result = TingOpenformatMethods::parseFields($this->_getPublicationDetails(), $fields);\n return (is_array($result)) ? reset($result) : $result;\n }", "public function getFormatList() {\r\n\t\treturn $this->formatList;\r\n\t}", "public function getFormat(): array;", "public function getFormat()\n {\n return get_post_format($this->id) ? get_post_format($this->id) : 'standard';\n }", "public static function getFormats()\n {\n return self::$formats;\n }", "public function __toString()\n {\n return $this->format();\n }", "public function __toString()\n {\n return $this->format();\n }", "public function __toString()\n {\n return $this->format();\n }", "public function format($format);", "public function getType()\n {\n return 'formatting';\n }", "public static function getFormatter()\n {\n return static::$formatter;\n }", "public function getFormatter()\n {\n return $this->formatter;\n }", "protected function toJson()\n {\n $this->formatter->setInstance($this);\n\n return $this->formatter->format();\n }", "public function getFormatName();", "protected function getFormat()\n {\n return 'FORMAT: 1A';\n }", "public function __toString()\n {\n return $this->formatAsString();\n }", "public function format($data);", "public function format($data);", "public function formatted() {\n\t\treturn parent::get('formatted') ? true : false;\n\t}", "public function defaultFormat()\n\t{\n\t\treturn $this->format();\n\t}", "public function getFormat(): int;", "public function GetFormat($formatType);", "public function getToStringFormat()\n {\n return $this->_to_string_format;\n }", "protected function formatter() {\n return '';\n }", "public function getFormatAction()\n {\n $content = null;\n try {\n $content = $this->dms()->getService()->getInfo($this->params('file'), 'format');\n } catch (NoFileException $e) {\n $content = $e->getMessage();\n }\n\n return $this->getResponse()->setContent($content);\n }", "public function getDataFormatter()\n {\n return $this->dataFormatter;\n }", "abstract public function getFormat(): int;", "public function getFormatter(): FormatterInterface;", "public function format(): string;", "public function __toString()\r\n {\r\n return $this->getFormattedString();\r\n }", "protected function get_default_format_fields() {\n\t\treturn null;\n\t}", "public function getDataFormat()\n {\n return $this->data_format;\n }", "public function getDataFormat()\n {\n return $this->data_format;\n }", "public function getFormatContent(): string\n {\n $this->label = rtrim($this->label,';');\n return \"\\e[{$this->label}m{$this->content}\\e[0m\";\n }", "public static function getFormats() {\n return array(\n 'none',\n 'pretty',\n 'php',\n 'php-data',\n 'json-pretty',\n 'json-strict',\n 'serialize',\n 'shell',\n );\n }", "public function format() { \n\n\t\t$this->f_start = inet_ntop($this->start); \n\t\t$this->f_end = inet_ntop($this->end); \n\n\t\t$this->f_user = $this->get_user_name(); \n\t\t$this->f_level = $this->get_level_name(); \n\t\t$this->f_type = $this->get_type_name(); \n\n\t}", "public function getFormattedStatus(): string;", "public function getGlyphDataFormat() {}", "public function format($format = null)\n\t{\n\t\treturn parent::format($format ? $format : $this->defaultFormat);\n\t}", "public function getFormatMail()\n {\n return $this->get(self::_FORMAT_MAIL);\n }", "public function getFormat($format){\n\t\t$this->_format = $format;\n\t}", "public function titleGetFormats($bookid);", "public function format($format = NULL)\r\n\t{\r\n\t\tif ($format === NULL)\r\n\t\t\treturn $this;\r\n\r\n\t\t$this->format = (string) $format;\r\n\r\n\t\t// Update the result for this item\r\n\t\t$this->result = preg_replace_callback(\r\n\t\t\t'/\\{([+-])?+(up|down|total|balance|pct_(?:up|down))(?:([.,])(\\d++))?\\}/i',\r\n\t\t\tarray($this, 'format_callback'),\r\n\t\t\t$this->format\r\n\t\t);\r\n\r\n\t\t// Split into different result areas separated by \"||\"\r\n\t\t$this->result = preg_split('/\\s*\\|\\|\\s*/', $this->result);\r\n\r\n\t\t// Chainable method\r\n\t\treturn $this;\r\n\t}", "public function getFormatKeys()\n {\n return $this->formatKeys;\n }", "public function getResultFormat()\n {\n return $this->resultFormat;\n }" ]
[ "0.7350332", "0.7350332", "0.7350332", "0.7308966", "0.7049996", "0.6995233", "0.6995233", "0.6995233", "0.6995233", "0.6995233", "0.6995233", "0.6905726", "0.6905345", "0.6869502", "0.68596256", "0.6849666", "0.684631", "0.6811143", "0.6782355", "0.67691207", "0.67691207", "0.6701768", "0.664283", "0.66237646", "0.6587121", "0.65849805", "0.63762367", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6342492", "0.6337317", "0.6314802", "0.6298413", "0.62878567", "0.62716204", "0.625641", "0.62558246", "0.62407684", "0.6228253", "0.62139857", "0.61892617", "0.61629224", "0.6149216", "0.6142748", "0.6135241", "0.61280614", "0.6121696", "0.6063634", "0.60625756", "0.6059359", "0.60441315", "0.60391325", "0.60388577", "0.60184395", "0.59910756", "0.59910756", "0.59910756", "0.59833866", "0.5960348", "0.59326273", "0.5916504", "0.58788997", "0.5878627", "0.5858556", "0.58576006", "0.58508223", "0.58508223", "0.58414865", "0.5814236", "0.58107287", "0.579707", "0.57954955", "0.5794076", "0.5792716", "0.5771375", "0.57461333", "0.57410777", "0.5737081", "0.57358813", "0.5731016", "0.57271695", "0.57271695", "0.57143515", "0.57140774", "0.57088614", "0.56920314", "0.56778324", "0.5674846", "0.5650394", "0.56490624", "0.5616219", "0.5606672", "0.559389", "0.559289" ]
0.0
-1
Specify Model class name
function model() { return UserBackground::class; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function getModelName()\n {\n if (isset($this->options[\"type\"])) {\n $type = ucfirst($this->options[\"type\"]);\n $class = \"\\\\app\\\\models\\\\feeds\\\\\" . $type;\n if (class_exists($class)) {\n return $class;\n }\n }\n \n return \"\\\\app\\\\models\\\\\" . $this->objectName;\n }", "public function getModelNameBasedOnClassName(): string\n {\n $fqn = explode(\"\\\\\", get_class($this));\n\n return strtolower(end($fqn));\n }", "public static function model($className=__CLASS__)\r\n\t{\r\n return parent::className();\r\n\t}", "public static function model($className = __CLASS__) {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) { return parent::model($className); }", "static public function model($className = __CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\n \treturn parent::model($className);\n }", "public static function model($className = __CLASS__) {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) \n { \n return parent::model($className); \n }", "public static function model($className=__CLASS__) \n { \n return parent::model($className); \n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model ($className = __CLASS__) {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\n\treturn parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) \n\t{\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__) {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\n return parent::model($className);\n }", "public function getModelClass(): string\n {\n return static::${'modelClass'};\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\r\n {\r\n return parent::model($className);\r\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model($className = __CLASS__) {\r\n return parent::model($className);\r\n }", "public static function model ($className = __CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className = __CLASS__){\n return parent::model($className);\n }", "public static function model($className = __CLASS__){\n return parent::model($className);\n }", "public function getModelClass();", "public function getModelClass();", "public function getModelClass();", "public static function model($className = __CLASS__) {\n return parent::model( $className );\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }", "public static function model($className=__CLASS__)\n {\n return parent::model($className);\n }" ]
[ "0.768929", "0.76618075", "0.7585344", "0.7583571", "0.7583571", "0.7542252", "0.75075734", "0.74778146", "0.74702877", "0.74578375", "0.74578375", "0.7453601", "0.7453601", "0.7447208", "0.7444998", "0.7435527", "0.74304074", "0.7416409", "0.74128395", "0.74125767", "0.74125767", "0.74125767", "0.741222", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.7407984", "0.740793", "0.74018055", "0.7400949", "0.739494", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.73907846", "0.7390499", "0.7390499", "0.7384692", "0.7384692", "0.7384692", "0.7384692", "0.7384692", "0.7384692", "0.7383603", "0.7379902", "0.7379902", "0.73766464", "0.73766464", "0.73766464", "0.73750174", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766", "0.7373766" ]
0.0
-1
Store the form key that was previously set
public function __construct() { if (isset($_SESSION['formkey'])) { $this->oldFormkey = $_SESSION['formkey']; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function setFormKey($key);", "function clearFormKey(){\n\t\t // session genereate key\n\t\t$this->formSession['key'] = null;\n\t}", "public function getFormKey()\n {\n return Mage::getSingleton('core/session')->getFormKey();\n }", "public function getFormkey()\n {\n // generate the key and store it inside the class\n $this->formkey = $this->generateFormkey();\n // store the form key in the session\n $_SESSION['formkey'] = $this->formkey;\n // output the form key\n return \"<input type='hidden' name='formkey' value='\" . $this->formkey . \"' />\";\n }", "function add_form_key($form_name)\n{\n\tglobal $config, $template, $user;\n\n\t$now = time();\n\t$token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : '';\n\t$token = sha1($now . $user->data['user_form_salt'] . $form_name . $token_sid);\n\n\t$s_fields = build_hidden_fields(array(\n\t\t'creation_time' => $now,\n\t\t'form_token'\t=> $token,\n\t));\n\n\t$template->assign_vars(array(\n\t\t'S_FORM_TOKEN'\t=> $s_fields,\n\t));\n}", "public function getFormKey()\n {\n return $this->formKey->getFormKey();\n }", "public function use_key($key='form_key')\n\t{\n\t\t$stamp = date('U');\n\t\t$this->add_hidden(new hidden($key, $stamp));\n\t\treturn $stamp;\n\t}", "public function disableFormKey()\r\n {\r\n Mage::getSingleton('core/session')->setData('_form_key', 'disabled');\r\n }", "private function key() {\n return sprintf('form_%s_%d', $this->module->name, $this->module->id);\n }", "private function setSessionKey()\n {\n $this->sessionKey = 'formfactory.captcha.' . $this->formRequestClass;\n }", "private function store()\n {\n $this->session->set('sergsxm_form_'.$this->formId, $this->parameters);\n }", "function persisted_or_stored($posted_key, $stored_key) {\n\n $form_data = Session::getFormData();\n if (isset($form_data[$posted_key])) {\n echo $form_data[$posted_key];\n } else {\n echo $stored_key;\n }\n \n \n}", "public function getFormKey()\n {\n return $this->getBlockHtml('form_key');\n }", "function SetKey( $i ) { $this->_key = $i; $this->SetValue('_key', $i ); }", "public function getFormKey()\n\t{\n\t\treturn encrypt((new \\ReflectionClass($this))->getShortName());\n\t}", "function persisted($posted_key) {\n\n $form_data = Session::getFormData();\n if (isset($form_data[$posted_key])) {\n echo $form_data[$posted_key];\n }\n \n}", "function generateSessionKey(){\n\t\t // genereate session and form key\n\t\t$this->formSession['key'] = rand();\n\t\t$GLOBALS[\"TSFE\"]->fe_user->setKey('ses',$this->extKey, $this->formSession);\n\t\t$GLOBALS[\"TSFE\"]->storeSessionData();\n\t}", "function vc_infusion_settings_form_submit($form, $form_state) {\n $v = &$form_state['values'];\n variable_set('vc_infusion_appkey', $v['appkey']);\n variable_set('vc_infusion_appname', $v['appname']);\n variable_set('vc_infusion_template_firstname', $v['firstname']);\n variable_set('vc_infusion_template_lastname', $v['lastname']);\n variable_set('vc_infusion_template_email', $v['email']);\n}", "function _pageform_newkey( )\n{\n $pf = rand();\n return $pf;\n}", "public function SetKey($key = ''){\n \tself::$userKey = $key;\n }", "function SetupKeyValues($key) {\r\n\t\tglobal $rekeningju;\r\n\t\t$arrKeyFlds = explode(EW_COMPOSITE_KEY_SEPARATOR, $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$rekeningju->kode_otomatis->setFormValue($arrKeyFlds[0]);\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "function set_key($key)\n\t{\n\t\tif(empty($key) || !isset($GLOBALS['ACCESS_KEYS'][$key])) return;\n\t\tif(ACCESS_MODEL === \"roles\") {\n\t\t\tforeach($GLOBALS['ACCESS_KEYS'][$key] as $k) {\n\t\t\t\tif(substr($k, 0, 1) == '@') {\n\t\t\t\t\t// This key references another role - pull in all keys from that role\n\t\t\t\t\t$this->set_key(substr($k, 1));\n\t\t\t\t} else {\n\t\t\t\t\t$this->access_keys[] = $k;\n\t\t\t\t}\n\t\t\t}\n\t\t} else if(ACCESS_MODEL === \"discrete\") {\n\t\t\t$this->access_keys[] = $key;\n\t\t}\n\n\t\t$_SESSION['_ACCESS']['keys'] = $this->access_keys;\n\t}", "function memberSetFormInSession($formName){\n\t\tforeach($this->post as $key => $value){\n\t\t\t$_SESSION[$formName][$key]=$value;\n\t\t}\n\t}", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 2) {\r\n\t\t\t$this->identries->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->identries->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t\t$this->id->setFormValue($arrKeyFlds[1]);\r\n\t\t\tif (!is_numeric($this->id->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "public function setCurrentKey($key)\n {\n $this->steps[$key];\n }", "function setFormInSession($formName,$receiver){\n\t\tforeach($this->post as $key => $value){\n\t\t\t$_SESSION[$formName][$key]=$value;//echo $key . \" \".$value.\"<br>\";\n\t\t}\n\t}", "function adminSetFormInSession($formName){\n\t\tforeach($this->post as $key => $value){\n\t\t\t$_SESSION[$formName][$key]=$value;\n\t\t}\n\t}", "private function setFormFields($form,$key,&$forms,&$keys) {\n $fields = $form->getWidgetSchema()->getFields(); \n\n // add key to list of keys\n $keys[] = $key;\n\n //set the fields to the embedded form\n foreach($fields as $k=>$v) {\n \n $forms[$key][] = $k;\n }\n }", "function setKey($key)\r\n {\r\n $this->key = $key;\r\n $this->changed = true;\r\n }", "private function generateFormkey()\n {\n $ip = $_SERVER['REMOTE_ADDR'];\n // mt_rand() is better than rand()\n $uniqid = uniqid(mt_rand(), true);\n\n return md5($ip . $uniqid);\n }", "function setKey( $key ) \n {\n $this->setValueByFieldName( 'label_key', $key );\n }", "public function getCacheKey()\n {\n return md5($this->formId . ':' . implode(',', $this->fieldIds));\n }", "function GetKey() { return( $this->key ); }", "public function storeUniqueKey()\n {\n $query = $this->db->getQuery(true);\n\n $query\n ->update($this->db->quoteName(\"#__crowdf_intentions\"))\n ->set($this->db->quoteName(\"unique_key\") .\"=\". $this->db->quote($this->unique_key))\n ->where($this->db->quoteName(\"id\") .\"=\". (int)$this->id);\n\n $this->db->setQuery($query);\n $this->db->execute();\n\n return $this;\n }", "public function key() { return $this->_m_key; }", "private function addPresharedkey(){\n\t\t$this->checkPresharedkeyForm();\n\t\t$newkey = $this->data->keys->addChild('key');\n\t\t$newkey->addAttribute('id',time());\n\t\t$newkey->addAttribute('description', htmlentities($_POST['services_ipsec_key_descr']));\n\t\t$newkey->addChild('content',htmlentities($_POST['services_ipsec_key_pskey']));\n\t\t\n\t\t$this->config->saveConfig();\n\t\techo '<reply action=\"ok\"><ipsec><keys>';\n\t\techo $newkey->asXML();\n\t\techo '</keys></ipsec></reply>';\n\t}", "private function restore()\n {\n if ($this->session->has('sergsxm_form_'.$this->formId)) {\n $this->parameters = $this->session->get('sergsxm_form_'.$this->formId);\n } else {\n $this->parameters = array();\n }\n }", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "public function setFormSessionData(): void\n {\n $session = (array) $this->request->getSession()->get(config('form.session_key'));\n\n $formId = $this->form->getID();\n if (array_key_exists($formId, $session)) {\n $data = $session[$formId];\n\n $this->data = array_key('data', $data, []);\n $this->errors = array_key('messages', $data, []);\n }\n array_map(\n function ($name, $message) {\n $this->form->getField($name)->setErrorMessage($message);\n },\n array_keys($this->errors),\n $this->errors\n );\n \n array_key_unset(config('form.csrf_field_name'), $this->data);\n \n $this->form->setValues($this->data);\n $this->removeSessionData();\n }", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$this->Id_Proveedor->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->Id_Proveedor->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "function setKey($value) {\r\n $this->key = $value;\r\n }", "public function setFakedFormValue($key, $value)\n {\n $this->fakedFormValues[$key] = $value;\n }", "public function testUpdateKey()\n {\n }", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->userlevelid->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->userlevelid->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function OnAfterAdd(){\n //get keyfield value\n if (intval($this->item_id) == 0)\n $data = $this->Storage->GetRecord(null, array(\n $this->key_field => \"\"));\n $this->item_id = $data[$this->key_field];\n }", "public function setKey($key);", "public function save($key = null, $urlVar = null)\r\n\t{\r\n\t\t$app = JFactory::getApplication();\r\n\t\t$input = $app->input;\r\n\t\t$data = $input->post->get('jform', array(), 'array');\r\n\r\n\t\t// For Fields group\r\n\t\t// Convert jform[fields_group][field] to jform[field] or JTable cannot bind data.\r\n\t\t// ==========================================================================================\r\n\t\t$data = AKHelper::_('array.pivotFromTwoDimension', $data);\r\n\r\n\t\t$input->post->set('jform', $data);\r\n\t\t$input->set('jform', $data);\r\n\t\tJRequest::setVar('jform', $data);\r\n\r\n\t\treturn parent::save($key, $urlVar);\r\n\t}", "public function setPreviousToken() {\n\t\t$this->_token = $this->_previousToken;\n\t\t$this->_session->key = $this->_previousToken;\n\t}", "function greetingSetFormInSession($formName){\n\t\tforeach($this->post as $key => $value){\n\t\t\t$_SESSION[$formName][$key]=$value;\n\t\t}\n\t}", "function setKeyoption($key_in) : void\n {\n $this->keyoption = $key_in;\n }", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$this->idfb_posts->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->idfb_posts->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "public function settings_field_private_key() {\n\t\t?>\n\t\t<input name=\"theme_my_login_recaptcha[private_key]\" type=\"text\" id=\"theme_my_login_recaptcha_private_key\" value=\"<?php echo esc_attr( $this->get_option( 'private_key' ) ); ?>\" class=\"regular-text\" />\n\t\t<?php\n\t}", "protected function setNewEncryptionKeyAndLogOut() {}", "public function setMaconomyId(string $key): void\n {\n $this->data['instancekeyField'] = $key;\n }", "function SetupKeyValues($key) {\n\t\t$sKeyFld = $key;\n\t\tif (!is_numeric($sKeyFld))\n\t\t\treturn FALSE;\n\t\t$this->product_id->CurrentValue = $sKeyFld;\n\t\treturn TRUE;\n\t}", "private function setRateLimiterKey()\n {\n $this->rateLimiterKey = sha1($this->formRequestClass . request()->ip());\n }", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->row_id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->row_id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function setEntryKey($entryKey) {\n\t\t$this->setData('entryKey', $entryKey);\n\t}", "public function key($key = null)\n\t{\n\t\treturn $this->getSet(\"key\", $key);\n\t}", "public function key($key = null)\n\t{\n\t\treturn $this->getSet(\"key\", $key);\n\t}", "function key()\n\t{\n\t\tglobal $Cl_root_path, $errors, $template, $security;\n\t\t\n\t\t$status = '';\n\t\t\n\t\tif ( isset( $_POST[ 'UL' ] ) )\n\t\t{ // an upload has happened\n\t\t\t$err = $_FILES[ 'key' ][ 'error' ];\n\t\t\tif ( $err != 0 )\n\t\t\t{\n\t\t\t\t$status = '<span style=\"color: red\">' . $this->lang[ 'Key_err' . $err ] . '</span>';\n\t\t\t}else\n\t\t\t{\n\t\t\t\tif ( @move_uploaded_file( $_FILES[ 'key' ][ 'tmp_name' ], $Cl_root_path . 'console/config/mykey.dat' ) )\n\t\t\t\t{\n\t\t\t\t\t$status = '<span style=\"color: green\">' . $this->lang[ 'Key_uploaded' ] . '</span>';\n\t\t\t\t}else\n\t\t\t\t{\n\t\t\t\t\t$status = '<span style=\"color: red\">' . $this->lang[ 'Key_errx' ] . '</span>';\n\t\t\t\t}\n\t\t\t}\n\t\t}elseif ( isset( $_POST[ 'DL' ] ) )\n\t\t{\n\t\t\t// have to send the raw file to the user\n\t\t\tif ( is_readable( $Cl_root_path . 'console/config/mykey.dat' ) )\n\t\t\t{\n\t\t\t\tob_clean();\n\t\t\t\theader( 'Content-type: file/text' );\n\t\t\t\theader ( 'Content-Disposition: attachment; filename=\"mykey.dat\"' );\n\t\t\t\techo @file_get_contents( $Cl_root_path . 'console/config/mykey.dat' );\n\t\t\t\texit;\n\t\t\t}else\n\t\t\t{\n\t\t\t\t$status = '<span style=\"color: red\">' . $this->lang[ 'Key_noread' ] . '</span>';\n\t\t\t}\n\t\t}elseif ( isset( $_POST[ 'RM' ] ) )\n\t\t{\n\t\t\tif ( !@file_exists( $Cl_root_path . 'console/config/mykey.dat' ) )\n\t\t\t{\n\t\t\t\t$status = '<span style=\"color: green\">' . $this->lang[ 'Key_removed' ] . '</span>';\n\t\t\t}elseif ( @unlink( $Cl_root_path . 'console/config/mykey.dat' ) )\n\t\t\t{\n\t\t\t\t$status = '<span style=\"color: green\">' . $this->lang[ 'Key_removed' ] . '</span>';\n\t\t\t}else\n\t\t\t{\n\t\t\t\t$status = '<span style=\"color: red\">' . $this->lang[ 'Key_notremoved' ] . '</span>';\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\t// show it\n\t\t$template->assign_block_vars( 'key', '', array(\n\t\t\t\t'L_TITLE' => $this->lang[ 'Key_title' ],\n\t\t\t\t'L_EXPLAIN' => $this->lang[ 'Key_explain' ],\n\t\t\t\t'L_KEY' => $this->lang[ 'Key_ulfield' ],\n\t\t\t\t'L_UPLOAD' => $this->lang[ 'Key_upload' ],\n\t\t\t\t'L_REMOVE' => $this->lang[ 'Key_remove' ],\n\t\t\t\t'L_DOWNLOAD' => $this->lang[ 'Key_download' ],\n\t\t\t\t\n\t\t\t\t'S_FRAME_ACTION' => $security->append_sid( '?' . MODE_URL . '=ACP&' . SUBMODE_URL . '=ACP_advance&s=key' ),\n\t\t\t\t\n\t\t\t\t'STATUS' => $status\n\t\t\t) );\n\t\t$template->assign_switch( 'key', TRUE );\n\t}", "private static function Store($key) {\n\t\n\t\t# initial data\n\t\t$data = array(\n\t\t\t\"headers\" => $_SERVER,\n\t\t\t\"flashdata\" => array()\n\t\t);\n\t\t\n\t\t# perform insert\n\t\tdatabase()->start_query('sessions', 'INSERT')->set(array(\n\t\t\t\"key\" => $key,\n\t\t\t\"method\" => 'cookie',\n\t\t\t\"_data\" => serialize($data),\n\t\t\t\"signature\" => self::get_signature(),\n\t\t))->run();\n\t}", "public function key() {\n return serialize($this->currentKey);\n }", "function mace_gif_setting_s3_key() {\n\t?>\n\t<input name=\"mace_gif_s3_key\" id=\"mace_gif_s3_key\" class=\"regular-text code mace-s3-storage-config\" type=\"text\" value=\"<?php echo esc_attr( mace_get_gif_s3_key() ); ?>\" />\n\t<?php\n}", "public function setKeyFromData()\n\t{\n\t\t$key = isset($this->data[$this->primaryKey])\n\t\t\t? $this->data[$this->primaryKey]\n\t\t\t: null;\n\n\t\tif ($key !== null && !is_numeric($key)) {\n\t\t\t$key = Hash::decode($key);\n\t\t}\n\n\t\t$this->key = $key;\n\t}", "public function setKey( $key )\r\n {\r\n $this->key = $key;\r\n }", "function campaignion_newsletters_dotmailer_admin_add_more_submit($form, &$form_state) {\n $form_state['dotmailer_new_keys']++;\n $form_state['rebuild'] = TRUE;\n}", "public static function setKey($key){\n\t\tself::$_key = $key;\n\t}", "public function setUrlKey(?string $urlKey): FormInterface;", "private function set_keys() {\n\t\t$this->skeleton->load('customers_id', !empty($_SESSION['customer_id'])?$_SESSION['customer_id']:NULL);\n\t\t$this->skeleton->load('customers_extra_logins_id', !empty($_SESSION['customer_extra_login_id'])?$_SESSION['customer_extra_login_id']:NULL);\n\n\t\t// this will set the ID as the session value, if one is found, otherwise if there is an existing cart for this user, pull it out\n\t\tif (empty($this->id()) && $header = self::fetch('cart_header_by_key', [':cart_key' => $this->get_cart_key()])) {\n\t\t\t$this->id($header['cart_id']);\n\t\t}\n\n\t\t//var_dump([$this->skeleton->get('customers_id'), $_SESSION['customer_id']]);\n\t}", "public function store()\n {\n $this->storeKeys();\n }", "protected function setTransactionKey()\n {\n $payment = $this->order->getPayment();\n $originalKey = AbstractMethod::BUCKAROO_ORIGINAL_TRANSACTION_KEY_KEY;\n $transactionKey = $this->getTransactionKey();\n\n if (!$payment->getAdditionalInformation($originalKey) && strlen($transactionKey) > 0) {\n $payment->setAdditionalInformation($originalKey, $transactionKey);\n }\n }", "public function setAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function setKey($key)\n\t{\n\t\t$this->key = $key;\n\t}", "public function setKey($key)\n\t{\n\t\t$this->key = $key;\n\t}", "public function setKey($key)\n\t{\n\t\t$this->key = $key;\n\t}", "public function regenerateValidationKey() {\n $this->saveAttributes(array(\n 'validation_key' => md5(mt_rand() . mt_rand() . mt_rand()),\n ));\n }", "public function get_key() {\n\t\treturn self::$csrf_cookie;\n\t}", "public function setKey($key)\n {\n $this->_key = $key;\n }", "function setKey($clave){\n $this->key = $clave;\n }", "private static function setSubmitToken() {\n// preventing double submitting\n $token = md5(time());\n $_SESSION[$token] = true;\n\n return $token;\n }", "private function storeEnrollmentKey(string $key): void\n {\n $keys = [];\n if ($this->session->has(self::ENROLL_KEYS_SESSION_NAME)) {\n $keys = $this->session->get(self::ENROLL_KEYS_SESSION_NAME);\n }\n $keys[] = $key;\n $this->session->set(self::ENROLL_KEYS_SESSION_NAME, $keys);\n }", "public function storeKey()\n {\n return $this->repository->get($this->repoOptionString($this->sessionKey));\n }", "public function prepareElement(Form $form)\n {\n $this->getValidator()->getHash(true);\n }", "protected function _setLastRequestKey($requestKey)\n {\n $this->_lastRequestKey = $requestKey;\n }", "public function setKey($key)\n {\n $this->key = $key;\n }", "public function setKey($key)\n {\n $this->key = $key;\n }", "public function setKey($key)\n {\n $this->key = $key;\n }", "public function settings_field_public_key() {\n\t\t?>\n\t\t<input name=\"theme_my_login_recaptcha[public_key]\" type=\"text\" id=\"theme_my_login_recaptcha_public_key\" value=\"<?php echo esc_attr( $this->get_option( 'public_key' ) ); ?>\" class=\"regular-text\" />\n\t\t<?php\n\t}", "protected function setHashIndexKey(): void\n {\n $this->hashIndexKey = $this->index . (empty($this->indexType)\n ? self::HASH_INDEX_GLUE\n : (self::HASH_INDEX_GLUE . $this->indexType . self::HASH_INDEX_GLUE));\n }", "function setUniqueID($key) {\r\n\t\t$this->uniqueID = $key;\r\n\t}", "public function key() {}", "public function key() {}", "public function key() {}", "public function key() {}", "public function key() {}", "public function key() {}" ]
[ "0.77647465", "0.69885266", "0.6852227", "0.6685428", "0.6651876", "0.65231186", "0.63205457", "0.62208956", "0.6219203", "0.62024397", "0.6169858", "0.60241616", "0.60039306", "0.5952028", "0.5899636", "0.58578396", "0.5826872", "0.5777976", "0.57710105", "0.57274336", "0.57241476", "0.5647137", "0.56312096", "0.5615604", "0.55983067", "0.55889875", "0.558772", "0.55617535", "0.5530563", "0.55012035", "0.5500371", "0.5500236", "0.5475535", "0.5417738", "0.5410946", "0.5400393", "0.5394706", "0.5391225", "0.5391225", "0.5391225", "0.5391225", "0.53863144", "0.53830314", "0.5368917", "0.5366036", "0.53598773", "0.5346352", "0.5343442", "0.53354996", "0.5328695", "0.5326042", "0.53232014", "0.53182113", "0.5293769", "0.5286615", "0.5277362", "0.52770704", "0.52761567", "0.52755576", "0.5272658", "0.5267191", "0.5248669", "0.5248669", "0.5231406", "0.5230392", "0.5215658", "0.52130747", "0.52097344", "0.52019984", "0.52013254", "0.520082", "0.5200294", "0.51919293", "0.51855546", "0.51767564", "0.5176523", "0.51749897", "0.51749897", "0.51749897", "0.51697236", "0.5169538", "0.5167617", "0.5167395", "0.51576644", "0.51527005", "0.51480377", "0.51425755", "0.5128748", "0.51240325", "0.51240325", "0.51240325", "0.5123922", "0.5116393", "0.5108281", "0.510723", "0.510723", "0.510723", "0.510723", "0.510723", "0.510723" ]
0.6255673
7
Generate the form key based on IP address
private function generateFormkey() { $ip = $_SERVER['REMOTE_ADDR']; // mt_rand() is better than rand() $uniqid = uniqid(mt_rand(), true); return md5($ip . $uniqid); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function getKey()\n {\n\treturn 'ip:' . $this->ip;\n }", "public static function generateKey()\n {\n return openssl_digest(php_uname() . \"-\" . $_SERVER[\"REMOTE_ADDR\"], 'MD5', true);\n }", "abstract protected function generateKey();", "function mswProdKeyGen() {\n $_SERVER['HTTP_HOST'] = (isset($_SERVER['HTTP_HOST']) && $_SERVER['HTTP_HOST'] ? $_SERVER['HTTP_HOST'] : uniqid(rand(),1));\n $_SERVER['REMOTE_ADDR'] = (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] ? $_SERVER['REMOTE_ADDR'] : uniqid(rand(),1));\n if (function_exists('sha1')) {\n $c1 = sha1($_SERVER['HTTP_HOST'].date('YmdHis').$_SERVER['REMOTE_ADDR'].time());\n $c2 = sha1(uniqid(rand(),1).time());\n $prodKey = substr($c1.$c2,0,60);\n } elseif (function_exists('md5')) {\n $c1 = md5($_SERVER['HTTP_POST'].date('YmdHis').$_SERVER['REMOTE_ADDR'].time());\n $c2 = md5(uniqid(rand(),1),time());\n $prodKey = substr($c1.$c2,0,60);\n } else {\n $c1 = str_replace('.','',uniqid(rand(),1));\n $c2 = str_replace('.','',uniqid(rand(),1));\n $c3 = str_replace('.','',uniqid(rand(),1));\n $prodKey = substr($c1.$c2.$c3,0,60);\n }\n return strtoupper($prodKey);\n}", "function generate_key()\n\t{\n\t\treturn $this->key_prefix . md5( $this->key_prefix . microtime() . uniqid() . 'teamps' );\n\t}", "function generate_fingerprint() \n\t{\n\t\t//We don't use the ip-adress, because it is subject to change in most cases\n// \t\tforeach(array('ACCEPT_CHARSET', 'ACCEPT_ENCODING', 'ACCEPT_LANGUAGE', 'USER_AGENT') as $name) {\n// \t\t\t$key[] = empty($_SERVER['HTTP_'. $name]) ? NULL : $_SERVER['HTTP_'. $name];\n// \t\t}\n// \t\t//Create an MD5 has and return it\n// \t\treturn md5(implode(\"\\0\", $key));\n\t\t$secure_word = 'a39ccdef11305d5999dbccddcf4';\n\t\treturn md5($secure_word.$_SERVER['HTTP_USER_AGENT']);\t\t\n\t}", "private function generateKey(): string\n\t{\n\t\t// `+` and `/` are replaced by `-` and `_`, resp.\n\t\t// The other characters (a-z, A-Z, 0-9) are legal within an URL.\n\t\t// As the number of bytes is divisible by 3, no trailing `=` occurs.\n\t\treturn strtr(base64_encode(random_bytes(3 * self::RANDOM_ID_LENGTH / 4)), '+/', '-_');\n\t}", "function key_gen($str=''){\n\treturn str_replace('=','',base64_encode(md5($str)));\n}", "public function createKey()\n {\n return md5('Our-Calculator') . (time() + 60);\n }", "public function generateAuthKey() {\n $this->llaveAutenticacion = Yii::$app->security->generateRandomString();\n }", "public function generateKey()\n\t{\n\t\treturn substr(md5(uniqid(mt_rand(), true)), 0, 3) . substr(md5(uniqid(mt_rand(), true)), 0, 2);\n\t}", "public function generateKey()\n {\n return 'do.' . $this->token->user->id . '.' . preg_replace('/\\//', '.', $this->getUrl());\n }", "protected function _genRequestKey()\n {\n $hash = sprintf(\"%u\", crc32(serialize($this->_request)));\n $this->_setLastRequestKey($hash);\n return $hash;\n }", "private function generateApiKey(){\n\n return md5(uniqid(rand(), true));\n\n }", "private function buildSigningKey(): string {\r\n return \"$this->secret&$this->userSecret\";\r\n }", "function generate_key()\n{\n $pool = \"qwertzupasdfghkyxcvbnm\";\n $pool .= \"23456789\";\n $pool .= \"WERTZUPLKJHGFDSAYXCVBNM\";\n srand ((double)microtime()*1000000);\n for($index = 0; $index < 10; $index++)\n {\n $akti .= substr($pool,(rand()%(strlen ($pool))), 1);\n }\n return $akti;\n}", "public function generate_config_ftp_key()\n\t{\n\t\treturn random_str(32);\n\t}", "public function key();", "public function key();", "public function key();", "public function key();", "public function key();", "public function key();", "public function key();", "public function key();", "public function key();", "public function key() {\n\t\treturn \"Address\";\n\t}", "protected function generateEncryptionKeyIfNeeded() {}", "public function getFormkey()\n {\n // generate the key and store it inside the class\n $this->formkey = $this->generateFormkey();\n // store the form key in the session\n $_SESSION['formkey'] = $this->formkey;\n // output the form key\n return \"<input type='hidden' name='formkey' value='\" . $this->formkey . \"' />\";\n }", "private function generateApiKey()\n {\n return md5(uniqid(rand(), true));\n }", "private function generateApiKey()\n {\n return md5(uniqid(rand(), true));\n }", "function generateSessionKey(){\n\t\t // genereate session and form key\n\t\t$this->formSession['key'] = rand();\n\t\t$GLOBALS[\"TSFE\"]->fe_user->setKey('ses',$this->extKey, $this->formSession);\n\t\t$GLOBALS[\"TSFE\"]->storeSessionData();\n\t}", "private function generateApiKey() {\n return md5(uniqid(rand(), true));\n }", "private function generateApiKey() {\n return md5(uniqid(rand(), true));\n }", "public static function generateKey(){\n $key = '';\n // [0-9a-z]\n for ($i=0;$i<32;$i++){\n $key .= chr(rand(48, 90));\n }\n self::$_key = $key;\n }", "private function getKey(){\r\n\t\t# convert a string into a key\r\n\t\t# key is specified using hexadecimal\r\n\t\t# show key size use either 16, 24 or 32 byte keys for AES-128, 192\r\n\t\t# and 256 respectively\t\t\r\n\t\t$key = array(\"key\" => $this->_keygen_str, \"key_size\"=>strlen($this->_keygen_str));\r\n\t\t\r\n\t\t# create a random IV to use with CBC encoding\r\n\t\t$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);\r\n\t\t$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);\r\n\t\t$key[\"iv_size\"] = $iv_size;\r\n\t\t$key[\"iv\"] = $iv;\r\n\t\t\r\n\t\treturn $key;\r\n\t}", "function keymaker($id = ''){\n\t\t//look up of info unique to the user or id. It could include date/time to timeout keys.\n\t\t$secretkey='1RuL1HutysK98UuuhDasdfafdCrackThisBeeeeaaaatchkHgjsheIHFH44fheo1FhHEfo2oe6fifhkhs';\n\t\t$key=md5($id.$secretkey);\n\t\treturn $key;\n\t}", "function generate_keypair($filename)\n\t\t{\n\t\t\t$key = '';\n\t\t\t/*$this->chars = mt_rand($this->minchars,$this->maxchars);\n\t\t\tfor($i=0; $i < $this->chars; $i++) {\n\t\t\t\t$key .= $this->validchars{mt_rand(0,strwidth($this->validchars))};\n\t\t\t}*/\n\t\t\t//read the key from file, not random\n\t\t\t$lines = file(\"/usr/local/mud/xkx/pkuxkx/web/antirobot/\".$filename);\n\t\t\tif(count($lines) > 0)\n\t\t\t{\n\t\t\t $key = $lines[0];\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t $key = \"\";\n\t\t\t}\n\t\t\t\n\t\t\t//if($this->case_sensitive==0) $key = mb_strtoupper($key);\n\t\t\t//$this->public_key = md5($key);\n\t\t\t$Guid = new Guid();\n\t\t\t$this->public_key = $Guid->toString();\n\n\t\t\tif($this->debug) echo \"\\n<br>-Captcha-Debug: Generate Keys, protected key is: (\".$key.')';\n\t\t\tif($this->debug) echo \"\\n<br>-Captcha-Debug: Generate Keys, public key is: (\".$this->public_key.')';\n\t\t\treturn $key;\n\t\t}", "protected function _generateVerificationKey() {\n\t\treturn mt_rand(111111,999999);\n\t}", "function generate_token()\n {\n $this->load->helper('security');\n $res = do_hash(time().mt_rand());\n $new_key = substr($res,0,config_item('rest_key_length'));\n return $new_key;\n }", "function key(){\n\t\t$api_key = '42b85431eba6a84d17266021e817d2a6';\n\t\treturn $api_key;\n\t}", "private function _generate_enckey()\n {\n // encrypt user id and email so that nobody gets the user information\n $this->_user->enc_key = $this->encryption->encrypt($this->_user->id . '-' . $this->_user->email_address);\n\n // use codeigniters string helper to generate random key\n $string = random_string('alnum', 16);\n\n // encrypt it again just for nothing and then return the key.\n return $this->encryption->encrypt($string);\n }", "protected function createToken()\n {\n $currentServerIp = $this->request->server('SERVER_ADDR');\n\n $secretKey = $this->config['doublespark_contaobridge_secret_key'];\n\n return md5('phpbbbridge'.date('d/m/Y').$currentServerIp.$secretKey);\n }", "public function generateAuthKey()\n {\n $this->auth_key = UsniAdaptor::app()->security->generateRandomString();\n }", "public function generateKey(Application $app)\n {\n $bytes = random_bytes(16);\n $api_key = bin2hex($bytes);\n $this->addExampleRecords($app, $api_key);\n return ['key' => $api_key];\n }", "public function generateAuthKey() {\n\t\t$this->txt_auth_key = Yii::$app->security->generateRandomString ();\n\t}", "public function settings_field_public_key() {\n\t\t?>\n\t\t<input name=\"theme_my_login_recaptcha[public_key]\" type=\"text\" id=\"theme_my_login_recaptcha_public_key\" value=\"<?php echo esc_attr( $this->get_option( 'public_key' ) ); ?>\" class=\"regular-text\" />\n\t\t<?php\n\t}", "abstract public function createSecretKey();", "private function _generateActivationKey()\n {\n $key = Utils::getRandomKey(32);\n return $key;\n }", "public function generate_ip()\n {\n $gameIP1 = rand(0, 255);\n $gameIP2 = rand(0, 255);\n $gameIP3 = rand(0, 255);\n $gameIP4 = rand(0, 255);\n\n return $gameIP1 . '.' . $gameIP2 . '.' . $gameIP3 . '.' . $gameIP4;\n }", "function generateApiKey($str_length){\n //base 62 map\n $chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';\n\n //get enough random bits for base 64 encoding (and prevent '=' padding)\n //note: +1 is faster than ceil()\n $bytes = openssl_random_pseudo_bytes(3*$str_length/4+1);\n\n //convert base 64 to base 62 by mapping + and / to something from the base 62 map\n //use the first 2 random bytes for the characters\n $repl = unpack('C2', $bytes);\n\n $first = $chars[$repl[1]%62];\n $second = $chars[$repl[2]%62];\n return strtr(substr(base64_encode($bytes), 0, $str_length), '+/', \"$first$second\");\n\n}", "private function generateAPIKey() {\n $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';\n $length = 32;\n\n $new_api_key = '';\n $max = mb_strlen($keyspace, '8bit') - 1;\n for ($i = 0; $i < $length; ++$i) {\n $new_api_key .= $keyspace[random_int(0, $max)];\n }\n\n return $new_api_key;\n }", "function generateApiKey($str_length){\n //base 62 map\n $chars = \"123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\";\n\n //get enough randombits for base 64 encoding (and prevent '=' padding)\n //note: +1 is faster than cell\n $bytes = openssl_random_pseudo_bytes(3*$str_length/4+1);\n \n //convert base 64 to base 62 by mapping + and / to something from the base 62 map\n //use the first 2 random bytes for the new characters\n $repl = unpack(\"C2\", $bytes);\n\n $first = $chars[$repl[1]%62];\n $second = $chars[$repl[2]%62];\n \n return strtr(substr(base64_encode($bytes), 0, $str_length), \"+/\", \"$first$second\");\n}", "public function generateAuthKey(){\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateApiKey() {\n return md5(uniqid(rand(), true));\n }", "public function generateAuthKey() {\n $this->auth_key = Yii::$app->security->generateRandomString(32);\n }", "public function getFormKey()\n\t{\n\t\treturn encrypt((new \\ReflectionClass($this))->getShortName());\n\t}", "public function getGatewayKey ();", "public function generateIcsFeedKey();", "function generate_key(): string\n{\n $keyset = \"0123456789ABCDEF\";\n do {\n $key = \"\";\n for ($i = 0; $i < 16; $i++) {\n $key .= substr($keyset, rand(0, strlen($keyset)-1), 1);\n }\n } while (substr($key, 0, 1) == \"0\");\n return $key;\n}", "function _gensesskey() {\n # with compliments to \"ripat at lumadis dot be\" from php.net online docs\n $acceptedChars = 'azertyuiopqsdfghjklmwxcvbnAZERTYUIOPQSDFGHJKLMWXCVBN0123456789';\n $max = strlen($acceptedChars)-1;\n $key = null;\n for ($i = 0; $i < 64; $i++) {\n $key .= $acceptedChars{mt_rand(0, $max)};\n }\n return $key;\n }", "public function generateAuthKey()\n {\n $this->token = Yii::$app->security->generateRandomString(32);\n }", "public function generateAuthKey()\n {\n $this->salt = OldDi::GetString(8);\n }", "function _pageform_newkey( )\n{\n $pf = rand();\n return $pf;\n}", "public function generateAuthKey()\n {\n // default length=32\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "private function makeSigningKey() {\r\n\t\t$signing_key = $this->makeBase64HmacSha256($this->timestamp, $this->client_secret);\r\n\t\t$this->verbose('signing_key', $signing_key);\r\n\t\treturn $signing_key;\r\n\t}", "public static function getEmailKey($tracking_method = null);", "public function randomKey();", "function makeKey($masterID){\n\n\t$key = \"I want to see you so bad :/\";\n\t$keyElement1 = \"\";\n\t$keyElement2 = \"\";\n\t$keyElement3 = \"\";\n\t$hash = \"\";\n\n\t$strSQL = \"SELECT * FROM masteraccount WHERE 1 \n\t\tAND masterID = '\".$masterID.\"' \n\t\t\";\n\t\n\t$objQuery = mysql_query($strSQL);\n\t$objResult = mysql_fetch_array($objQuery);\n\tif($objResult) {\n\t\t$keyElement1 = $objResult[\"masterTextPassword\"];\n\t\t$keyElement2 = $objResult[\"masterGraphicalPassword\"];\n\n\t\t//echo \"element2 : \".$keyElement2.\"<br>\";\n\n\t\t$keyElement3 = $objResult[\"email\"];\n\t\t$cost = 11;\n\t\t$salt = mcrypt_create_iv(22, MCRYPT_DEV_URANDOM);\n\t\t\n\t\t//make key -> Hash(Hash(text)+Hash(graphical))+Hash(email)\n\t\t$keyElement1 = hash(\"sha256\",$keyElement1, false);\n\t\t$keyElement2 = hash(\"sha256\",$keyElement2, false);\n\t\t$key = $keyElement1.$keyElement2 ;\n\n\t\t//echo \"key ele1+2 : \".$key.\"<br>\";\n\n\t\t$key = hash(\"sha256\",$key, false);\n\n\t\t//echo \"hashed key ele1+2 : \".$key.\"<br>\";\n\n\t\t$keyElement3 = hash(\"sha256\",$keyElement3, false);\n\t\t$key = $key.$keyElement3 ;\n\t\t$key = hash(\"sha256\",$key, false);\n\n\t\t//echo \"FinalKey : \".$key.\"<br><br>\";\n\t}\n\treturn $key;\n}", "private function newKey()\n {\n $kp = sodium_crypto_box_keypair();\n //$pk = sodium_crypto_box_secretkey($kp);\n return $kp;\n }", "function wp_generate_user_request_key($request_id)\n {\n }", "public function getBoxSecretKey() : string;", "abstract public function createPublicKey();", "private function generateRandomKey()\n {\n return substr(base_convert(sha1(uniqid(mt_rand(), true)), 16, 36), 0, 8);\n }", "public function getVarificationCode(){ \n $pw = $this->randomString(); \n return $varificat_key = password_hash($pw, PASSWORD_DEFAULT); \n }", "private function generateAPIAuth()\n {\n $ts = time();\n return '&ts='.$ts.'&apikey='.getenv('PUBLIC_KEY').'&hash='.md5($ts.getenv('PRIVATE_KEY').getenv('PUBLIC_KEY'));\n }", "public static function createKey() {\r\n $MIN = 100000;\r\n $MAX = 922337203685477580;\r\n return mt_rand($MIN,$MAX);\r\n }", "public function generateAuthKey() {\n $this->employer_auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateKeyAndSecret() {\n $user = user_load($this->uid);\n\n $this->app_key = str_replace(array(' ', '', '-'), '_', strtolower($this->title));\n $this->app_secret = md5($user->name . $this->time);\n }", "public function generateAuthKey()\n {\n return Yii::$app->security->generateRandomString();\n }", "function add_form_key($form_name)\n{\n\tglobal $config, $template, $user;\n\n\t$now = time();\n\t$token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : '';\n\t$token = sha1($now . $user->data['user_form_salt'] . $form_name . $token_sid);\n\n\t$s_fields = build_hidden_fields(array(\n\t\t'creation_time' => $now,\n\t\t'form_token'\t=> $token,\n\t));\n\n\t$template->assign_vars(array(\n\t\t'S_FORM_TOKEN'\t=> $s_fields,\n\t));\n}", "public function generateAuthKey() {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey() {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey() {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey() {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "function generateKey()\n\t{\n\t\treturn ( rand(1, 25) );\n\t}", "public function generateAuthKey()\r\n {\r\n $this->auth_key = Yii::$app->getSecurity()->generateRandomString();\r\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->getSecurity()->generateRandomString();\n }", "function make_key($pw, $salt) {\n\treturn sha1(md5(md5($pw).md5($salt)));\n}", "public function getClientNoncePad(): string;", "public function getSecretKey();", "private function _generate_key(){\n $salt = base_convert(bin2hex($this->CI->security->get_random_bytes(64)), 16, 36);\n \n // If an error occurred, then fall back to the previous method\n if ($salt === FALSE){\n $salt = hash('sha256', time() . mt_rand());\n }\n \n $new_key = substr($salt, 0, config_item('rest_key_length'));\n while ($this->_key_exists($new_key));\n\n return $new_key;\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }", "public function generateAuthKey()\n {\n $this->auth_key = Yii::$app->security->generateRandomString();\n }" ]
[ "0.6912268", "0.68697757", "0.6544286", "0.64752644", "0.6238394", "0.61175805", "0.60931057", "0.6042118", "0.6022244", "0.59811956", "0.5977744", "0.59616995", "0.594829", "0.5937962", "0.5913995", "0.5904669", "0.58925515", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58887124", "0.58870214", "0.58481836", "0.5840574", "0.58319247", "0.58319247", "0.58117706", "0.5804103", "0.5804103", "0.5781859", "0.5773206", "0.57642466", "0.57612056", "0.5756695", "0.57550085", "0.57546777", "0.5749164", "0.57375956", "0.5726375", "0.5703321", "0.5700012", "0.5696622", "0.5675453", "0.5674379", "0.5672535", "0.5672067", "0.56459546", "0.56416297", "0.5635066", "0.56277233", "0.5626574", "0.5623965", "0.56207764", "0.5616072", "0.5612682", "0.56120867", "0.56098545", "0.5608643", "0.56083864", "0.5601281", "0.5598854", "0.55978537", "0.5595994", "0.55956525", "0.55830264", "0.5578808", "0.55718744", "0.55698436", "0.55670905", "0.5564772", "0.5557408", "0.5556005", "0.5555334", "0.55449885", "0.5543524", "0.5539394", "0.55265963", "0.55265963", "0.55265963", "0.55265963", "0.552489", "0.55222875", "0.55216026", "0.55203867", "0.5517523", "0.55171037", "0.551404", "0.5510335", "0.5510335", "0.5510335", "0.5510335", "0.5510335", "0.5510335", "0.5510335", "0.5510335" ]
0.800465
0
Return the form key for inclusion in HTML
public function getFormkey() { // generate the key and store it inside the class $this->formkey = $this->generateFormkey(); // store the form key in the session $_SESSION['formkey'] = $this->formkey; // output the form key return "<input type='hidden' name='formkey' value='" . $this->formkey . "' />"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFormKey()\n {\n return $this->getBlockHtml('form_key');\n }", "private function key() {\n return sprintf('form_%s_%d', $this->module->name, $this->module->id);\n }", "public function getFormKey()\n {\n return Mage::getSingleton('core/session')->getFormKey();\n }", "public function getFormKey()\n {\n return $this->formKey->getFormKey();\n }", "function getFormHtmlIdPrefix() {\n\t\t\tif ($this->hasForm( )) {\n\t\t\t\treturn $this->getForm( )->getFormHtmlIdPrefix( );\n\t\t\t}\n\n\t\t}", "public function FormName()\n {\n return $this->getTemplateHelper()->generateFormID($this);\n }", "function add_form_key($form_name)\n{\n\tglobal $config, $template, $user;\n\n\t$now = time();\n\t$token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : '';\n\t$token = sha1($now . $user->data['user_form_salt'] . $form_name . $token_sid);\n\n\t$s_fields = build_hidden_fields(array(\n\t\t'creation_time' => $now,\n\t\t'form_token'\t=> $token,\n\t));\n\n\t$template->assign_vars(array(\n\t\t'S_FORM_TOKEN'\t=> $s_fields,\n\t));\n}", "public function getFormKey()\n\t{\n\t\treturn encrypt((new \\ReflectionClass($this))->getShortName());\n\t}", "function getFormHtmlId() {\n\t\t\tif ($this->hasForm( )) {\n\t\t\t\treturn $this->getForm( )->getHtmlId( );\n\t\t\t}\n\n\t\t}", "public function getFormName();", "public function getFormName();", "public function getFormId()\n\t{\n\t\treturn strtolower($this->_removeNonAlphaCharacters($this->tag));\n\t}", "function shorten_keys_form() {\n $form = drupal_get_form('shorten_keys');\n return drupal_render($form);\n}", "public function getFormId() {\n return 'ever_form';\n }", "abstract protected function getFormName();", "protected function getForm( $html=false ) { return $this->form_name; }", "function setFormKey($key);", "public function getFormPrefix() {}", "public function get_input_name() {\n\t\treturn 'input_' . md5( 'recaptchav3' . gf_recaptcha()->get_version() . $this->formId );\n\t}", "public function getFormName(){\n return $this->form_name ?? 'form';\n }", "final public function getFormName(): string\n {\n\n return str_replace('.', '__', $this->getName());\n }", "public function getFormId() {\n return 'alexandrie_config_form';\n }", "private function generateFormkey()\n {\n $ip = $_SERVER['REMOTE_ADDR'];\n // mt_rand() is better than rand()\n $uniqid = uniqid(mt_rand(), true);\n\n return md5($ip . $uniqid);\n }", "public function getFormTemplate(): string\n {\n return static::FORM_TEMPLATE;\n }", "public function get_field_key() {\n\t\treturn $this->get_field_attr( 'field_key' );\n\t}", "function getKeyField() \n {\n return \"navbarlink_textKey\";\n }", "function getKeyField() \n {\n return 'label_key';\n }", "public function getFormId()\n {\n return 'pubcid_cookie_management_settings';\n }", "public function getKey(): string\n {\n if ($this->key) {\n return $this->key;\n }\n\n // If the user has set a custom key.\n if ($this->config->has('key')) {\n $key = Key::validate($this->config->get('key'), 'field');\n\n $this->key = $key;\n\n return $key;\n }\n\n // For fields which doesn't require name attribute use label instead.\n if (\n !$this->config->has('name') &&\n in_array($this->getType(), ['accordion', 'message', 'tab'])\n ) {\n $key = $this->config->get('label');\n } else {\n $key = $this->config->get('name');\n }\n\n $key = sprintf('%s_%s', $this->parentKey, Key::sanitize($key));\n\n $this->key = $key;\n\n return $key;\n }", "function tpl_key ($key) {\n \n return AUTHORING ? \"data-designmode=\\\"$key\\\"\" : '';\n \n }", "function DBDataFormTitle()\n {\n return\n $this->GetRealNameKey\n (\n $this->ApplicationObj()->PertainsSetup[ $this->ApplicationObj()->Pertains ],\n \"Data_Form_Title\"\n );\n }", "public function getCurrentStructureFormPrefix() {}", "function getCaptchaFieldName()\n\t{\t\t\n\t\treturn $this->pSet->captchaEditFieldName();\n\t}", "function form_shortcode( $atts ) {\n \n if ( isset( $atts['form'] ) ) {\n \n $form_id_or_key = $atts['form'];\n unset( $atts['form'] );\n \n ob_start();\n \n $this->render( $form_id_or_key, $atts );\n \n $output = ob_get_clean();\n \n return $output;\n \n }\n \n }", "function um_add_form_identifier( $args ) {\r\n\t?>\r\n\t\t<input type=\"hidden\" name=\"form_id\" id=\"form_id_<?php echo $args['form_id']; ?>\" value=\"<?php echo $args['form_id']; ?>\" />\r\n\t<?php\r\n}", "protected function get_form_identifier() {\n\n $formid = $this->_customdata->id.'_'.get_class($this);\n return $formid;\n }", "public function getFormId() {\n return 'cohesion_elements_settings_form';\n }", "public function getFieldContext()\n\t{\n\t\treturn 'sproutForms:'.$this->id;\n\t}", "public function use_key($key='form_key')\n\t{\n\t\t$stamp = date('U');\n\t\t$this->add_hidden(new hidden($key, $stamp));\n\t\treturn $stamp;\n\t}", "public function getFormId() {\n return 'form_task32';\n }", "protected function getNameFormFileIn()\n {\n $formName = str_replace(' ', '', ucwords(str_replace('-', ' ', $this->owner->id)));\n return \"Form\" . $formName . ucfirst($this->owner->action->actionMethod) . 'In';\n }", "public function getFormFilename()\n {\n return MVC_FORM_DIR . DIRECTORY_SEPARATOR . 'credentialForm.xml';\n }", "public function getFormId() {\n return 'session_email_admin';\n }", "public function key(): string\n {\n return parent::key().':'.$this->tag();\n }", "public function getFormId() {\n return 'sayhello_block_form';\n }", "public function key()\n {\n return view('site_preparation.key');\n }", "public static function form(){\n\t\treturn \"\";\n\t}", "function bg_AddApiKeySettingsFieldHtml() {\n global $bg_optionGroup, $bg_opts_apiKey, $bg_input_apiKey, $bg_page;\n \n\t$options = get_option($bg_optionGroup);\n\t$apiKey = '';\n\tif (array_key_exists ($bg_opts_apiKey, $options)){\n\t\t$apiKey = $options[$bg_opts_apiKey];\n\t}\n\t\n\techo \"<input id='${$bg_page}_{$bg_opts_apiKey}' name='{$bg_input_apiKey}' size='40' type='text' value='{$apiKey}' />\";\n}", "protected function getFormObjectName() {}", "public function getFormName()\n {\n return $this->getModelSimpleName() .'Form';\n }", "public function settings_field_public_key() {\n\t\t?>\n\t\t<input name=\"theme_my_login_recaptcha[public_key]\" type=\"text\" id=\"theme_my_login_recaptcha_public_key\" value=\"<?php echo esc_attr( $this->get_option( 'public_key' ) ); ?>\" class=\"regular-text\" />\n\t\t<?php\n\t}", "public function getFormId()\n {\n return $this->formId;\n }", "public function settings_field_private_key() {\n\t\t?>\n\t\t<input name=\"theme_my_login_recaptcha[private_key]\" type=\"text\" id=\"theme_my_login_recaptcha_private_key\" value=\"<?php echo esc_attr( $this->get_option( 'private_key' ) ); ?>\" class=\"regular-text\" />\n\t\t<?php\n\t}", "function getKey() \n {\n return $this->getValueByFieldName( 'label_key' );\n }", "function _pageform_newkey( )\n{\n $pf = rand();\n return $pf;\n}", "function renderToken(){\n if($this->useValidationToken == true){\n //Generate token and place it in a session\n $token = md5(uniqid());\n Session::put(\"form_token\", $token);\n \n //Render the token code out to use on forms\n return '<input type=\"hidden\" name=\"form_token\" value=\"'.$token.'\" />';\n }\n }", "public function display_option_client_key() {\n $client_key = $this->options['client_key'];\n $this->display_input_text_field('client_key', $client_key);\n?>\nThe key that the server requires for authentication, passed in the <code><?php esc_attr_e($this->plugin->query_var()); ?></code> parameter.\n<?php\n }", "public function get_key() {\n\t\treturn self::$csrf_cookie;\n\t}", "public function formItem(): HtmlString\n {\n return $this->formItem;\n }", "public function paymentFormPartial(): string\n {\n return 'form';\n }", "private function getKey() {\n\t\tif ( !$this->key )\n\t\t\t$this->key = \"mvn-maillists-\" . sanitize_key( $this->getName() );\n\n\t\treturn $this->key;\n\t}", "public function getCsrfField(): string\n {\n return '<input type=\"hidden\" name=\"_token\" value=\"' . $this->session->getToken() . '\">';\n }", "public function getForm(): string\n {\n return $this->html;\n }", "function getReviewFormId() {\n\t\treturn $this->getData('reviewFormId');\n\t}", "public function getFormId() {\n return 'tfa_settings_reset_form';\n }", "public function getFieldContext(): string\n {\n return 'simple-forms';\n }", "public function getKey()\n {\n return defined('QUFORM_LICENSE_KEY') ? QUFORM_LICENSE_KEY : $this->options->get('licenseKey');\n }", "public function generateFormProperites(){\r\n\t\t$formProperties = $this->formProperties;\r\n\t\t$formTags = '<form ';\r\n\t\tif(sizeof($formProperties) > 0) {\r\n\t\t\tforeach($formProperties as $key=>$params){\r\n\t\t\t\t$formTags .= $key.'=\"'.$params.'\" ';\r\n\t\t\t}\r\n\t\t}\r\n\t\t$formTags\t\t.= '>';\r\n\t\treturn $formTags;\r\n\t}", "function nonce_input() {\n\techo '<input type=\"hidden\" name=\"nonce\" id=\"form_key\" value=\"' . $_SESSION['nonce'] . '\">';\n}", "public function getFormId() {\n return 'conference_final_registration_main';\n }", "public function FormName()\n {\n return ($this->_widgetEditor->getForm() ? $this->_widgetEditor->getForm()->FormName() : false);\n }", "public static function getFormIdStatic() {\n return 'pmmi_sales_agent_mail_mass_confirm_form';\n }", "public function display_api_key() {\r\n\t\t$key = 'inf_key';\r\n\r\n\t\tif ( isset( $this->existing_options[$key] ) && $this->existing_options[$key] )\r\n\t\t\t$existing_value = $this->existing_options[$key];\r\n\t\telse\r\n\t\t\t$existing_value = '';\r\n\r\n\t\t$id = $key;\r\n\t\tsettings_errors( $id );\r\n\t\techo '<input type=\"password\" name=\"' . self::OPTION_NAME . '[' . $key . ']\" id=\"' . $id . '\"';\r\n\t\tif ( $existing_value )\r\n\t\t\techo ' value=\"' . esc_attr( $existing_value ) . '\"';\r\n\t\techo ' size=\"40\" autocomplete=\"off\" pattern=\"[a-zA-Z0-9-_]+\" />';\r\n\r\n\t\techo '<p class=\"description\">' . __( 'Not sure what the API key is or where to get it? <a target=\"_blank\" href=\"http://kb.infusionsoft.com/index.php?/article/AA-00442/0/How-do-I-enable-the-Infusionsoft-API.html\">Click here</a>', 'fb-eventpresso' ) . '</p>';\r\n\t}", "public function getVarName()\n\t{\n\t\treturn 'form-'.$this->domain;\n\t}", "protected static function getAjaxKey()\n\t{\n\t\t$strAjaxKey = str_replace('_' . self::getAjaxId(), '', self::getPost('id'));\n\n\t\tif (self::getGet('act') == 'editAll')\n\t\t{\n\t\t\t$strAjaxKey = preg_replace('/(.*)_[0-9a-zA-Z]+$/', '$1', $strAjaxKey);\n\t\t}\n\n\t\treturn $strAjaxKey;\n\t}", "public function getKeyField()\n {\n $class = get_class($this);\n $parts = explode('\\\\', $class);\n $name = $parts[count($parts)-1];\n return strtolower($name) . '_id';\n }", "public function getFormId() {\n return 'pmmi_personify_company_settings';\n }", "public function getFormId() {\n return 'FedoraResource_settings';\n }", "public function getCacheKey()\n {\n return md5($this->formId . ':' . implode(',', $this->fieldIds));\n }", "function generateFormToken( $form ) {\r\n\t\t\r\n\t\t // generate a token from an unique value\r\n\t\t\t$token = md5( uniqid( microtime( ), true) ); \r\n\t\t\t\r\n\t\t\t// Write the generated token to the session variable to check it against the hidden field when the form is sent\r\n\t\t\t$_SESSION[$form.'_token'] = $token; \r\n\t\t\t\r\n\t\t\treturn $token;\r\n\t\r\n\t\t}", "public function getKey()\n {\n return isset($this->key) ? $this->key : '';\n }", "public function getKey()\n {\n return isset($this->key) ? $this->key : '';\n }", "function getFormAction()\n {\n return $this->getAttribute(\"formaction\");\n }", "public function getExtensionKey()\n {\n return $this->request->getControllerExtensionKey();\n }", "public function getFormId() {\n return 'publicate_settings';\n }", "function getLabelField() \n {\n return \"navbarlink_textKey\";\n }", "public function getKeyField()\n {\n return $this->_key;\n }", "function localisation_sc_form() {\n\treturn vdsl_get_template( 'search-form.php' );\n}", "function getFormJsObjectName() {\n\t\t\tif ($this->hasForm( )) {\n\t\t\t\treturn $this->getForm( )->getJsObjectName( );\n\t\t\t}\n\n\t\t}", "protected function getFormId(){\n return (\n (\n $this->_id!==NULL &&\n is_string($this->_id) &&\n strlen(trim($this->_id))\n )\n ?$this->_id\n :$this->setFormId()\n );\n }", "function async_social_vk_form() {\n\n\t$form['sasync_social_vk_text'] = array(\n \t'#markup' => '<label for=\"vk-notice\">Please note:</label><div id=\"vk-notice\">\n \t<p>VK buttons don\\'t work without an API ID.<br />\n \tAnd at the same time the VK button language<br/>\n \tdepends on the language that is set for<br />\n \tthe VK account the API ID was created with.</p>\n \t<p>You may also pay attention at VK to set<br />\n \ta corresponding base domain during development<br />\n \tto test the button in your local environment<br />\n \tas well.</p></div>'\n\t);\n\t$form['async_social_vk_apiid'] = array(\n\t\t'#type' => 'textfield',\n\t\t'#title' => t('Mandatory: VK API ID'),\n\t\t'#description' => t('Enter a VK API ID. It\\'s mandatory to make the VK button work.'),\n\t\t'#default_value' => variable_get('async_social_vk_apiid', ''),\n\t);\n\n\treturn system_settings_form($form);\n}", "public function getKey(): string {\n return $this->getType() . $this->getId() . $this->getLang() . $this->getRevisionId() ?? '';\n }", "private function getKey(string $view): string\n {\n return str_replace(\n \".blade.php\",\n \"\",\n basename($view)\n );\n }", "public function render_license_key_settings_field() {\n\t\t$settings_field_name = $this->get_settings_field_name();\n\t\t$options = get_option( $settings_field_name );\n\t\t?>\n\t\t<input type='text' name='<?php echo $settings_field_name; ?>[license_key]' value='<?php echo $options['license_key']; ?>' class='regular-text' />\n\t<?php\n\t}", "public function getFormId() {\n return 'weather_config_form';\n }", "public function getFormId()\n {\n return 'partner_referral_form';\n }", "function access_key_gui() {\n $access_key = get_option('amazon_polly_access_key');\n echo '<input type=\"text\" class=\"regular-text\" name=\"amazon_polly_access_key\" id=\"amazon_polly_access_key\" value=\"' . esc_attr($access_key) . '\" autocomplete=\"off\"> ';\n echo '<p class=\"description\" id=\"amazon_polly_access_key\">Required only if you aren\\'t using IAM roles</p>';\n }", "public function getFormId()\n {\n return 'lei_entity_type_settings';\n }", "public function getToken()\n\t{\n\t\treturn static::createFormToken($this->target_form_id ? $this->target_form_id : $this->id);\n\t}", "protected function renderRequestHashField() {}" ]
[ "0.83583146", "0.78992873", "0.7845595", "0.7843136", "0.71532387", "0.7141773", "0.7122179", "0.69783", "0.68587714", "0.6747576", "0.6747576", "0.67470694", "0.66598237", "0.66060126", "0.66047627", "0.65835524", "0.6565458", "0.65635806", "0.655621", "0.6521787", "0.6502904", "0.6473814", "0.64607024", "0.64562154", "0.64475495", "0.64285994", "0.6421776", "0.6415429", "0.6344177", "0.63239765", "0.63081855", "0.6242596", "0.62410694", "0.6227014", "0.6211905", "0.6191559", "0.6175168", "0.61683196", "0.61638117", "0.6143119", "0.6134885", "0.6131784", "0.61235964", "0.6082267", "0.60662127", "0.606351", "0.6050311", "0.6033577", "0.5993604", "0.59814095", "0.5973175", "0.59579855", "0.59396213", "0.5929445", "0.5917476", "0.591705", "0.59070295", "0.589411", "0.5893966", "0.5868107", "0.5861327", "0.5843209", "0.5830411", "0.5810895", "0.580906", "0.5798496", "0.5794607", "0.57854813", "0.5782371", "0.57807755", "0.57784986", "0.57747084", "0.5772116", "0.5768203", "0.5756851", "0.57549924", "0.57533914", "0.57455754", "0.5744331", "0.5728751", "0.5717965", "0.5717965", "0.5714953", "0.5713756", "0.569727", "0.5690548", "0.5688496", "0.5684255", "0.56805146", "0.5664842", "0.56643105", "0.5658406", "0.5657671", "0.56545216", "0.56513137", "0.5647439", "0.56469405", "0.5645654", "0.5645285", "0.5643019" ]
0.8145737
1
Validate the form key against the one previously set
public function validate() { return $_POST['formkey'] === $this->oldFormkey; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function validate_key( $key ) {\n \treturn self::$instance->validate( $key );\n }", "private function checkPresharedkeyForm(){\n\t\tif(!isset($_POST['services_ipsec_key_pskey'])){\n\t\t\tErrorHandler::addError('formerror','services_ipsec_key_pskey');\n\t\t}\n\t\t\n\t\tif(ErrorHandler::errorCount() > 0){\n\t\t\tthrow new Exception('There is invalid form input');\n\t\t}\n\t}", "function eve_api_enter_api_form_validate($form, &$form_state) {\n $key_id = (int) $form_state['values']['keyID'];\n $v_code = (string) $form_state['values']['vCode'];\n\n if (empty($key_id) || empty($v_code) || preg_match('/[^a-z0-9]/i', $v_code) || preg_match('/[^0-9]/', $key_id) || strlen($key_id) > 15 || strlen($v_code) > 64 || strlen($v_code) < 20) {\n form_set_error('keyID', t('Invalid input, please try again.'));\n form_set_error('vCode');\n return;\n }\n\n $result = db_query('SELECT apiID FROM {eve_api_keys} WHERE keyID = :keyID AND vCode =:vCode', array(\n ':keyID' => $key_id,\n ':vCode' => $v_code,\n ));\n\n if ($result->rowCount()) {\n form_set_error('keyID', t('API Key already exists!'));\n form_set_error('vCode');\n return;\n }\n\n $query = array(\n 'keyID' => $key_id,\n 'vCode' => $v_code,\n );\n\n $characters = eve_api_get_api_key_info_api($query);\n\n if (isset($characters['error'])) {\n form_set_error('keyID', t('There was an error with the API.'));\n form_set_error('vCode');\n }\n else {\n $whitelist = array();\n\n if (!empty($characters)) {\n foreach ($characters['characters'] as $character) {\n $whitelist[] = (int) $character['characterID'];\n }\n }\n\n $result = db_query('SELECT characterID FROM {eve_api_whitelist} WHERE characterID IN (:characterIDs)', array(\n ':characterIDs' => $whitelist,\n ));\n\n $allow_expires = variable_get('eve_api_require_expires', FALSE) ? FALSE : !empty($characters['expires']);\n $allow_type = variable_get('eve_api_require_type', TRUE) ? $characters['type'] != 'Account' : FALSE;\n\n if ($result->rowCount()) {\n if ($allow_expires || ($characters['accessMask'] & 8388680) != 8388680) {\n form_set_error('keyID', t('Your account has been whitelisted, please ensure that the \"Type\" drop down box is set to \"Character\", and that the \"No Expiry\" checkbox is ticked. Only (Public Information -> (Characterinfo and FacWarStats), (Private Information) -> (CharacterSheet)) are required.'));\n form_set_error('vCode');\n }\n }\n else {\n if ($allow_expires || $allow_type || ($characters['accessMask'] & variable_get('eve_api_access_mask', 268435455)) != variable_get('eve_api_access_mask', 268435455)) {\n form_set_error('keyID', t('Please ensure that all boxes are highlighted and selected for the API, the \"Character\" drop down box is set to \"All\", the \"Type\" drop down box is set to \"Character\", and that the \"No Expiry\" checkbox is ticked.'));\n form_set_error('vCode');\n }\n }\n\n if (!eve_api_verify_blue($characters) && !variable_get('eve_api_require_blue', FALSE)) {\n form_set_error('keyID', t('No characters associated with your key are currently blue to this alliance.'));\n form_set_error('vCode');\n }\n\n if ($chars = eve_api_characters_exist($characters)) {\n form_set_error('keyID', t('Characters on this key have already been registered. Characters registered: @chars', array('@chars' => implode(\", \", $chars))));\n form_set_error('vCode');\n }\n }\n}", "function setFormKey($key);", "protected function is_valid_key($key)\n {\n }", "private function validateReviewerKey(){\n\t\treturn true;\n\t}", "function invalid_form_element($key) {\n $errors = Session::getErrors();\n if ($errors != null) {\n if (array_key_exists($key, $errors)) {\n echo 'invalid';\n }\n }\n}", "function validate_key($key)\n{\n if ($key == 'PhEUT5R251')\n return true;\n else\n return false;\n}", "public function isValid(string $key) : bool;", "function campaignion_newsletters_dotmailer_admin_validate($form, &$form_state) {\n $keys = &$form_state['values']['dotmailer']['api_keys'];\n foreach ($keys as $key => $data) {\n if (empty($data['name']) && empty($data['username']) && empty($data['password'])) {\n continue;\n }\n if (empty($data['name'])) {\n form_set_error('dotmailer][api_keys][' . $key . '][name', t('The API key has to have a unique name.'));\n }\n }\n}", "function check_form_key($form_name, $timespan = false, $return_page = '', $trigger = false)\n{\n\tglobal $config, $user;\n\n\tif ($timespan === false)\n\t{\n\t\t// we enforce a minimum value of half a minute here.\n\t\t$timespan = ($config['form_token_lifetime'] == -1) ? -1 : max(30, $config['form_token_lifetime']);\n\t}\n\n\tif (isset($_POST['creation_time']) && isset($_POST['form_token']))\n\t{\n\t\t$creation_time\t= abs(request_var('creation_time', 0));\n\t\t$token = request_var('form_token', '');\n\n\t\t$diff = time() - $creation_time;\n\n\t\t// If creation_time and the time() now is zero we can assume it was not a human doing this (the check for if ($diff)...\n\t\tif ($diff && ($diff <= $timespan || $timespan === -1))\n\t\t{\n\t\t\t$token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : '';\n\t\t\t$key = sha1($creation_time . $user->data['user_form_salt'] . $form_name . $token_sid);\n\n\t\t\tif ($key === $token)\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ($trigger)\n\t{\n\t\ttrigger_error($user->lang['FORM_INVALID'] . $return_page);\n\t}\n\n\treturn false;\n}", "private function validateInput($key) {\n if (!array_key_exists($key, $_POST)) {\n return false;\n } else {\n $_POST[$key] = trim($_POST[$key]);\n if ($_POST[$key] == \"\") {\n return false;\n }\n }\n return $_POST[$key];\n }", "function check_formkey($formkey)\r\n\t{\r\n\t\t$code = decrypt($formkey);\r\n\t\t\r\n\t\treturn (($code >= 1199116800 && REQUEST_TIME - $code <= FORMKEY_TIMEOUT) ? true : false);\r\n\t\t\r\n\t}", "public function validate()\n {\n // generate Token String\n $idTokenString = $this->getTokenString($this->_key);\n return ($idTokenString == $this->_tokenString);\n }", "function validate_form($key) {\n $errors = Session::getErrors();\n if ($errors !== NULL) {\n if (array_key_exists($key, $errors)) {\n echo $errors[$key];\n }\n }\n}", "function postageapp_admin_form_validate($form, &$form_state) { \n //\n $api_key = $form_state['values']['postageapp_api_key'];\n \n if ($api_key) {\n $postage = new PostageApp($api_key);\n $valid_key = $postage->get_project_info();\n \n if ($valid_key->response->status == 'ok') {\n drupal_set_message(t('Your API key is valid. Welcome to PostageApp.'), \"status\");\n drupal_set_message(t('To complete settings add \"$conf[\\'mail_system\\'][\\'default-system\\'] = \\'PostageappDrupalMail\\';\" to settings.php (without duoble quotes). This settings override default mail system in Drupal to use Postageapp as mail delivery service.'), 'info');\n }\n else {\n form_set_error('postageapp_api_key', t($valid_key->response->message));\n }\n }\n}", "function _eventbrite_sboc_config_form_validate($form, &$form_state){\n $eventbrite_api_key = $form_state['values']['eventbrite_api_key'];\n $eventbrite_api_user_key = $form_state['values']['eventbrite_api_user_key'];\n \n if (empty($eventbrite_app_key) || empty($eventbrite_api_user_key)) {\n\t form_set_error('API Credentials', t('Eventbrite API Key and API Usere Keys are required.'));\n } \n }", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 2) {\r\n\t\t\t$this->identries->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->identries->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t\t$this->id->setFormValue($arrKeyFlds[1]);\r\n\t\t\tif (!is_numeric($this->id->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "public function validateAuthKey($authKey){\n }", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "private function check_key_valid() {\n $license = get_transient('wcis_license');\n\n // if key doesn't exist, abort\n if(!isset($license['key']) ) { return false; }\n\n // if valid, return success\n if(isset($license['valid']) && $license['valid'] === true) {\n $msg = __('API Connected!', 'wcis');\n $this->form_fields['key']['description'] = '<span style=\"color: #4caf50;\">' . $msg . '</span>';\n }\n else {\n $msg = __('Invalid API Key. Is there empty space before / after it?', 'wcis');\n $this->form_fields['key']['description'] = '<span style=\"color:#f44336;\">' . $msg . '</span>';\n }\n\n return $license['valid'];\n }", "public function validation()\n {\n $this->validate(\n new Uniqueness(\n array(\n 'field' => 'reset_key'\n )\n )\n );\n\n if ($this->validationHasFailed() == true) {\n return false;\n }\n }", "public static function validatePasskey( $key ) {\n\t\t$pk = self::getPasskey( $key );\n\n\t\tif ( ( $pk == 'false' ) || ( $pk === false ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t/*\n\t\tif ( empty( $pk->active ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( empty( $pk->type_def['valid'] ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( $pk->trials <= 0 ) {\n\t\t\treturn false;\n\t\t}\n\t\t*/\n\n\t\treturn true;\n\t}", "function check($key) {\n\t\tswitch ($key) {\n\t\t\tcase 'name':\n\t\t\tcase 'email':\n\t\t\tcase 'type_demande':\n\t\t\t\t// field(s) is(are) compulsory\n\t\t\t\treturn $this->checkEmpty($key);\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// any other field is fine as it is\n\t\t\t\treturn true;\n\t\t}\n\t\treturn true;\n\t}", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$this->Id_Proveedor->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->Id_Proveedor->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->userlevelid->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->userlevelid->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "public function valid()\n {\n return !is_null($this->key());\n }", "public function valid()\n {\n return $this->isCurrentKeyValid();\n }", "public function validateAuthKey($authKey) {\n }", "function check_element_validity($key,$opt){\n\n if (preg_match(STARTCHARRGX, $key) === 1 ) { //check first character\n preg_match(STARTCHARRGX,$key,$matches);\n if ($matches[0] == \"_\") {\n return false;\n }\n return true;\n }\n if ( preg_match(INVALIDCHARSRGX, $key) === 1) { //check other chars validity\n return true;\n }\n return false;\n }", "public function valid() {\n return isset($this->keys[$this->index]);\n }", "function SetupKeyValues($key) {\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\n\t\tif (count($arrKeyFlds) >= 1) {\n\t\t\t$this->row_id->setFormValue($arrKeyFlds[0]);\n\t\t\tif (!is_numeric($this->row_id->FormValue))\n\t\t\t\treturn FALSE;\n\t\t}\n\t\treturn TRUE;\n\t}", "public function formIsValid() {\n $data = array();\n foreach ($this->getSessionNamespace() as $key => $info) {\n $data[$key] = $info[$key];\n }\n return (count($this->getStoredForms()) < count($this->getPotentialForms()))? false : $this->getForm()->isValid($data);\n }", "public function validateAuthKey($authKey)\n {\n }", "public function validateAuthKey($authKey)\n {\n }", "public function validateAuthKey($authKey)\n {\n }", "public function validateAuthKey($authKey)\n {\n }", "public function validateAuthKey($authKey)\n {\n }", "public function validateAuthKey($authKey)\n {\n }", "public function valid() { return isset($this->keys[$this->pos]);\n }", "public function validateAuthKey($authKey)\n {}", "function pdfbulletin_settings_form_validate(&$form, &$form_state) {\n // @todo SERIOUSLY\n}", "public function testIsValidKeyWithValidKey() \n {\n $key = 'key1';\n $result = $this->fileCache->isValidKey($key);\n $expected = TRUE;\n\n $this->assertEquals($expected, $result);\n }", "public function valid() {\n return ( ! is_null($this->key()));\n }", "public function isSubmittedWith( $key )\n {\n return $this->request->getFormField( $key . 'Submit' ) != null;\n }", "public function formIsValid()\n {\n $data = array();\n foreach ($this->getSessionNamespace() as $key => $info) {\n $data[$key] = $info;\n }\n \n return $this->getForm()->isValid($data);\n }", "function settingsIsValid($key)\n {\n return app('Padosoft\\Laravel\\Settings\\SettingsManager')->isValid($key);\n }", "function is_valid_meta_key( $key ) {\n\t\t// skip attachment metadata since we'll regenerate it from scratch\n\t\t// skip _edit_lock as not relevant for import\n\t\tif ( in_array( $key, array( '_wp_attached_file', '_wp_attachment_metadata', '_edit_lock' ) ) )\n\t\t\treturn false;\n\t\treturn $key;\n\t}", "abstract public function getIsValidKey($name);", "public function hasValidValue($key)\n {\n if($key)\n { \n if($this->_validateFields)\n {\n if(in_array($key, array_keys($this->_validateFields)))\n {\n if(isset($this->_validateFields[$key]) && (boolean)$this->_validateFields[$key]['require'] == false)\n {\n if(!$this->{$key})\n {\n return true;\n } \n } \n \n $this->{$key} = null;\n unset($this->_modifiedFields[$key]);\n }\n } \n }\n return false;\n }", "private function isValidKey($key) {\n\n\t\t// Check key length\n\t\t$len = strlen($key);\n\n\t\tif ($len < 1) {\n\t\t\tthrow new FlintstoneException('No key has been set');\n\t\t}\n\n\t\tif ($len > 50) {\n\t\t\tthrow new FlintstoneException('Maximum key length is 50 characters');\n\t\t}\n\n\t\t// Check valid characters in key\n\t\tif (!preg_match(\"/^[A-Za-z0-9_\\-]+$/\", $key)) {\n\t\t\tthrow new FlintstoneException('Invalid characters in key');\n\t\t}\n\n\t\treturn true;\n\t}", "protected function validateApiKey(array &$form, FormStateInterface $form_state) {\n $api_url = $form_state->getValue(['api', 'url']);\n $api_key = $form_state->getValue(['api', 'key']);\n\n try {\n /** @var \\Drupal\\ckan_connect\\Client\\CkanClientInterface $client */\n $client = \\Drupal::service('ckan_connect.client');\n $client->setApiUrl($api_url);\n\n if ($api_key) {\n $client\n ->setApiKey($api_key)\n ->get('action/dashboard_activity_list', ['limit' => 1]);\n }\n else {\n $client->get('action/site_read');\n }\n }\n catch (RequestException $e) {\n $response = $e->getResponse();\n $status_code = $response->getStatusCode();\n\n switch ($status_code) {\n case 403:\n $form_state->setErrorByName('api_url', $this->t('API return \"Not Authorised\" please check your API key.'));\n break;\n\n default:\n $form_state->setErrorByName('api_url', $this->t('Could not establish a connection to the endpoint. Error: @code', ['@code' => $status_code]));\n }\n }\n }", "public function valid()\n {\n return $this->key() !== null;\n }", "protected function checkCronjobKey() {\n return (!isset($_REQUEST['key']) || ($_REQUEST['key'] != $this->cronjob_key)) ? false : true;\n }", "public function valid()\n {\n return $this->key === 0;\n }", "function SetupKeyValues($key) {\r\n\t\t$arrKeyFlds = explode($GLOBALS[\"EW_COMPOSITE_KEY_SEPARATOR\"], $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$this->idfb_posts->setFormValue($arrKeyFlds[0]);\r\n\t\t\tif (!is_numeric($this->idfb_posts->FormValue))\r\n\t\t\t\treturn FALSE;\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "public function valid()\n\t{\n\t\treturn array_key_exists($this->_idx, $this->_keys);\n\t}", "function twitter_auth_account_form_validate($form, &$form_state) {\n $key = variable_get('twitter_consumer_key', '');\n $secret = variable_get('twitter_consumer_secret', '');\n if ($key == '' || $secret == '') {\n form_set_error('', t('Please configure your consumer key and secret key at ' .\n '<a href=\"!url\">Twitter settings</a>.', array( '!url' => url('admin/config/services/twitter'),\n )));\n }\n}", "public function validate(){\r\n\t\tif(array_get($this->entity, array_get($this->validate, 'fieldName')) != $this->fieldValue){\r\n\t\t\tHmsException::occur($fieldName. '必须等于', $this->fieldValue);\r\n\t\t}\r\n\t}", "public function testIsValidKeyWithInvalidKey() \n {\n $result = $this->fileCache->isValidKey('');\n $expected = FALSE;\n\n $this->assertEquals($expected, $result);\n }", "public function validate() {\n\n $validationErrors = [];\n\n // If we have a duplicate site key, complain.\n if (self::values(\"COUNT(*) total\", \"WHERE siteKey = ? AND siteId <> ?\", $this->siteKey, $this->siteId ? $this->siteId : \"\")[0]) {\n $validationErrors[\"siteKey\"][\"unique\"] = new FieldValidationError(\"siteKey\", \"unique\", \"The site key supplied is already in use\");\n }\n\n return $validationErrors;\n }", "public function valid() {\n return ($this->key() !== null);\n }", "public function valid() {\n return ($this->key() !== null);\n }", "public function valid () {\n return isset($this->__fields[key($this->__fields)]);\n }", "function inscription_jesa_manage_validate($form, &$form_state) {\n \n}", "public function validateName()\n {\n if (strlen(trim($_POST[$this->key])) < $this->minLength) {\n self::$errors[] = $this->convertUnderscores() . \" field requires at least $this->minLength characters\";\n }\n\n //check for profanity.\n if ($this->noProfanity) {\n $this->checkProfanity();\n }\n\n //lastly, check for valid first name patterns.\n\n if (!preg_match(\"/^[a-zA-Z]+[ -\\/\\\\'\\\"]*[a-zA-Z]+[ \\\"]{0,2}[a-zA-Z]*$/\", trim($_POST[$this->key]))) {\n self::$errors[] = \"Not a valid \" . $this->convertUnderscores();\n }\n\n return self::$errors ? false : true;\n }", "function SetupKeyValues($key) {\r\n\t\tglobal $rekeningju;\r\n\t\t$arrKeyFlds = explode(EW_COMPOSITE_KEY_SEPARATOR, $key);\r\n\t\tif (count($arrKeyFlds) >= 1) {\r\n\t\t\t$rekeningju->kode_otomatis->setFormValue($arrKeyFlds[0]);\r\n\t\t}\r\n\t\treturn TRUE;\r\n\t}", "function eve_api_user_register_form_validate(&$form, &$form_state) {\n $key_id = (int) $form_state['signup_object']['keyID'];\n $v_code = (string) $form_state['signup_object']['vCode'];\n\n $result = db_query('SELECT apiID FROM {eve_api_keys} WHERE keyID = :keyID AND vCode =:vCode', array(\n ':keyID' => $key_id,\n ':vCode' => $v_code,\n ));\n\n if ($result->rowCount()) {\n form_set_error('keyID', t('API Key already exists!'));\n form_set_error('vCode');\n drupal_goto('user/register');\n }\n\n $query = array(\n 'keyID' => $key_id,\n 'vCode' => $v_code,\n );\n\n $characters = eve_api_get_api_key_info_api($query);\n\n if (isset($characters['error'])) {\n form_set_error('keyID', t('Unknown Error, please try again.'));\n form_set_error('vCode');\n drupal_goto('user/register');\n }\n\n $whitelist = array();\n\n if (!empty($characters)) {\n foreach ($characters['characters'] as $character) {\n $whitelist[] = (int) $character['characterID'];\n }\n }\n\n $result = db_query('SELECT characterID FROM {eve_api_whitelist} WHERE characterID IN (:characterIDs)', array(\n ':characterIDs' => $whitelist,\n ));\n\n $allow_expires = variable_get('eve_api_require_expires', FALSE) ? FALSE : !empty($characters['expires']);\n $allow_type = variable_get('eve_api_require_type', TRUE) ? $characters['type'] != 'Account' : FALSE;\n\n if ($result->rowCount()) {\n if ($allow_expires || ($characters['accessMask'] & 8388680) != 8388680) {\n form_set_error('keyID', t('Your account has been whitelisted, please ensure that the \"Type\" drop down box is set to \"Character\", and that the \"No Expiry\" checkbox is ticked. Only (Public Information -> (Characterinfo and FacWarStats), (Private Information) -> (CharacterSheet)) are required.'));\n form_set_error('vCode');\n }\n }\n else {\n if ($allow_expires || $allow_type || ($characters['accessMask'] & variable_get('eve_api_access_mask', 268435455)) != variable_get('eve_api_access_mask', 268435455)) {\n form_set_error('keyID', t('Please ensure that all boxes are highlighted and selected for the API, the \"Character\" drop down box is set to \"All\", the \"Type\" drop down box is set to \"Character\", and that the \"No Expiry\" checkbox is ticked.'));\n form_set_error('vCode');\n }\n }\n\n if (!eve_api_verify_blue($characters) && !variable_get('eve_api_require_blue', FALSE)) {\n form_set_error('keyID', t('No characters associated with your key are currently blue.'));\n form_set_error('vCode');\n }\n\n if ($chars = eve_api_characters_exist($characters)) {\n form_set_error('keyID', t('Characters on this key have already been registered. Characters registered: @chars', array('@chars' => implode(\", \", $chars))));\n form_set_error('vCode');\n }\n\n $selected = array();\n\n foreach ($characters['characters'] as $character) {\n $selected[] = $character['characterName'];\n }\n\n if (!in_array((string) $form_state['values']['name'], $selected)) {\n form_set_error('name', t('You must select a main character!'));\n }\n}", "function is_valid_input( $id = 0 ) {\n\n\t\t$rule = 'required|callback_is_valid_name['. $id .']';\n\n\t\t$this->form_validation->set_rules( 'key', get_msg( 'name' ), $rule);\n\n\t\tif ( $this->form_validation->run() == FALSE ) {\n\t\t// if there is an error in validating,\n\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}", "public function validateAuthKey($authKey): bool {\n }", "public function options_form_validate($form, &$form_state) {\n // Context module doesn't allow for validation of reaction fields.\n // @todo: Raise bug for context module.\n }", "function form1()\r\n {\r\n global $f3;\r\n $isValid= true;\r\n if (!validString($f3->get('animal'))) {\r\n $isValid = false;\r\n $f3->set(\"errors['animal']\", \"Please enter an animal \");\r\n }\r\n if (!validQty($f3->get('qty'))) {\r\n $isValid = false;\r\n $f3->set(\"errors['qty']\", \"Please enter quantity\");\r\n }\r\n return $isValid;\r\n }", "public function getFormKey()\n {\n return $this->formKey->getFormKey();\n }", "function isFormValid(){\n\tif(!isset($_POST['num-input'])){\n\t\treturn false;\n\t}\n\tif(!isset($_POST['job-name'])){\n\t\treturn false;\n\t}\n\treturn true;\n}", "public final function verifyData($key){\n\n unset($this->errors[$key]);\n\n if(!array_key_exists($key,$this->data)){\n\n if(!array_key_exists($key,$this->definition)){\n throw new \\Disco\\exceptions\\Exception(\"Field `{$key}` is not defined by this data model\");\n }//if\n\n //DEFAULT\n if(array_key_exists('default',$this->definition[$key])){\n $this->data[$key] = $this->definition[$key]['default'];\n }//if\n //REQUIRED\n else if($this->getDefinitionValue($key,'required')){\n return $this->setError($key,\"`{$key}` is required\");\n }//elif\n else {\n return false;\n }//el\n\n }//if\n\n //PREMASSAGE\n if(($massage = $this->getDefinitionValue($key,'premassage')) !== false){\n $this->data[$key] = $this->{$massage}($this->data[$key]);\n }//if\n\n $value = $this->data[$key];\n\n //REGEXP\n if(($regexp = $this->getDefinitionValue($key,'regexp')) !== false){\n if(($default = \\App::getCondition($regexp)) !== false && !\\App::matchCondition($default,$value)){\n return $this->setError($key);\n }//if\n if(!preg_match(\"/{$regexp}/\",$value)){\n return $this->setError($key);\n }//if\n $this->_postMassage($key,$value);\n return true;\n }//if\n\n //METHOD\n if(($method = $this->getDefinitionValue($key,'method')) !== false){\n if(!$this->{$method}($value)){\n return $this->setError($key);\n }//if\n $this->_postMassage($key,$value);\n return true;\n }//if\n\n //NULLABLE\n if($this->getDefinitionValue($key,'nullable') && $value === null){\n $this->_postMassage($key,$value);\n return true;\n }//if\n\n $type = $this->getDefinitionValue($key,'type');\n\n //TRUTHY\n if($type != 'boolean' && $this->getDefinitionValue($key,'truthy') && is_bool($value)){\n $this->_postMassage($key,$value);\n return true;\n }//if\n\n switch($type){\n\n case 'int':\n\n if(!$this->_isValidInt($key,$value)){\n return false;\n }//if\n\n break;\n\n case 'uint':\n\n if(!$this->_isValidInt($key,$value)){\n return false;\n }//if\n\n if($value < 0){\n return $this->setError($key,\"`{$key}` must be a positive integer\");\n }//if\n\n break;\n\n case 'float':\n\n if(!$this->_isValidFloat($key,$value)){\n return false;\n }//if\n\n break;\n\n case 'ufloat':\n\n if(!$this->_isValidFloat($key,$value)){\n return false;\n }//if\n\n if($value < 0){\n return $this->setError($key,\"`{$key}` must be a positive number\");\n }//if\n\n break;\n\n case 'string':\n\n if(!is_string($value)){\n return $this->setError($key,\"`{$key}` must be a string\");\n }//if\n\n if(($min = $this->getDefinitionValue($key,'minlen')) !== false && strlen($value) < $min){\n return $this->setError($key,\"`{$key}` must be greater than {$min} characters long\");\n }//if\n\n if(($max = $this->getDefinitionValue($key,'maxlen')) !== false && strlen($value) > $max){\n return $this->setError($key,\"`{$key}` must be less than {$max} characters long\");\n }//if\n\n break;\n\n case 'char':\n\n if(!is_string($value) || strlen($value) != 1){\n return $this->setError($key,\"`{$key}` must be a single character\");\n }//if\n\n break;\n\n case 'boolean': \n\n if(!is_bool($value)){\n return $this->setError($key,\"`{$key}` must be a boolean value\");\n }//if\n\n break;\n\n case 'array':\n\n if(!is_array($value)){\n return $this->setError($key,\"`{$key}` must be an array\");\n }//if\n\n break;\n\n case 'object':\n\n if(is_object($value)){\n if(($instanceof = $this->getDefinitionValue($key,'instanceof')) !== false && !$value instanceof $instanceof){\n return $this->setError($key,\"`{$key}` must be an instance of `{$instanceof}`\");\n }//if\n } //if\n else {\n return $this->setError($key,\"`{$key}` must be an object\");\n }//if\n\n break;\n\n case 'closure':\n\n if(!is_object($value) || !$value instanceof \\Closure){\n return $this->setError($key,\"`{$key}` must be a closure\");\n }//if \n\n break;\n\n default:\n return $this->setError($key);\n\n }//switch\n\n //IN\n if(($in = $this->getDefinitionValue($key,'in')) !== false && !in_array($value,$in)){\n $in = implode(', ',$in);\n return $this->setError($key,\"`{$key}` must be a value of `{$in}`\");\n }//if\n\n //NOTIN\n if(($in = $this->getDefinitionValue($key,'notin')) !== false && in_array($value,$in)){\n $in = implode(', ',$in);\n return $this->setError($key,\"`{$key}` must not be a value of `{$in}`\");\n }//if\n\n $this->_postMassage($key,$value);\n\n }", "static protected function validateKey($key)\r\n {\r\n /*\r\n The variable name must be a string and has to consist of one or more\r\n groups of lowercase alphanumeric characters, separated by a dot.\r\n */\r\n if(!is_string($key) || !preg_match(\"/^([a-z0-9_]+\\.)*[a-z0-9_]+$/\", $key))\r\n {\r\n throw new Exception(\"Invalid configuration key\");\r\n }\r\n }", "protected function _validate() {\n\t}", "public function edit_form_validate($form, &$form_state) {\n if (!preg_match('/[a-zA-Z0-9_\\$]+/', $form_state['values']['path'])) {\n form_set_error('path', t('The database name is not valid.'));\n }\n parent::edit_form_validate($form, $form_state);\n }", "public function valid()\n {\n return array_key_exists($this->index, $this->keys);\n }", "public function valid()\n {\n return ($this->key() !== null);\n }", "public function valid()\n {\n return ($this->key() !== null);\n }", "public function valid()\n {\n return ($this->key() !== null);\n }", "protected function ValidateForm()\n {\n return true;\n }", "public function validateAuthKey($authKey): bool;", "public function valid()\n {\n $key = $this->key();\n return ($key !== false && $key !== null);\n }", "protected static function validKey($key) {\n return is_string($key) && !is_numeric($key) && strpos($key, ':') === FALSE;\n }", "private function is_valid_field_data() {\n\t\t$data = rgpost( $this->get_input_name() );\n\n\t\tif ( empty( $data ) ) {\n\t\t\tgf_recaptcha()->log_debug( __METHOD__ . \"(): Input {$this->get_input_name()} empty.\" );\n\n\t\t\treturn false;\n\t\t}\n\n\t\treturn gf_recaptcha()->get_token_verifier()->verify_submission( $data );\n\t}", "function form_validate($form, &$form_state) {\n }", "function _verify(){\n $e = \"\";\n if (isset($_POST['verder'])) {\n foreach($_POST as $key=>$value){\n if($key== 'verder') continue;\n $value = validate($value);\n if(!$this->_existsInDatabase($value)){\n $e = \"ID komt niet voor in Database\";\n }\n }\n }\n return $e;\n }", "public function getFormKey()\n {\n return Mage::getSingleton('core/session')->getFormKey();\n }", "function cps_changeset_edit_form_validate($form, &$form_state) {\n}", "public function valid() {\n return array_key_exists($this->_key, $this->_data);\n }", "function mongo_node_type_create_form_validate($form, $form_state) {\n $set = mongo_node_settings();\n $machine_name = $form_state['values']['name'];\n\n if (isset($set[$machine_name])) {\n form_set_error('name', t('Machine name @machine_name already exists', array('@machine_name' => $machine_name)));\n return FALSE;\n }\n return TRUE;\n}", "function validForm()\n{\n global $f3;\n $isValid = true;\n\n if (!validCity($f3->get('city'))) {\n\n $isValid = false;\n $f3->set(\"errors['city']\", \"Please enter a valid city.\");\n }\n\n if (!validDistance($f3->get('distance'))) {\n\n $isValid = false;\n $f3->set(\"errors['distance']\", \"Please enter a valid distance.\");\n }\n\n return $isValid;\n}", "public function valid()\n {\n return $this->key() < $this->filesize;\n }", "public function valid(): bool\n {\n return $this->key() !== null && $this->key() !== false;\n }", "function valid() {\n if (isset($this->keys[$this->position])) {\n return $this->__isset($this->keys[$this->position]);\n }\n return false;\n }" ]
[ "0.68630564", "0.669512", "0.66931117", "0.6677665", "0.66311616", "0.65796393", "0.65443856", "0.6451032", "0.64331216", "0.64252746", "0.63272274", "0.631559", "0.62736934", "0.62583804", "0.6240612", "0.6170513", "0.61204606", "0.6116328", "0.6066981", "0.6053776", "0.6053776", "0.6053776", "0.6053776", "0.6042922", "0.60420996", "0.60338354", "0.6023836", "0.60178787", "0.599823", "0.5987213", "0.5968463", "0.5961133", "0.59439874", "0.59405965", "0.5901667", "0.58991754", "0.5898713", "0.5898713", "0.5898713", "0.5898713", "0.5898713", "0.5898713", "0.5891695", "0.5885255", "0.5863255", "0.5862295", "0.58526075", "0.5845936", "0.58423305", "0.58369195", "0.58352745", "0.583375", "0.58311254", "0.5816134", "0.5805024", "0.5802238", "0.5788478", "0.5788071", "0.5784671", "0.5760593", "0.57514834", "0.57284015", "0.5724296", "0.57214886", "0.5717449", "0.5717449", "0.57143617", "0.57143086", "0.57128835", "0.57119554", "0.5710071", "0.5705068", "0.5704371", "0.56965333", "0.5692808", "0.5685517", "0.5680279", "0.56778824", "0.56737393", "0.56734955", "0.5662847", "0.56588894", "0.5643045", "0.5643045", "0.5643045", "0.56225586", "0.56108665", "0.5608614", "0.5608178", "0.559889", "0.55954105", "0.55949926", "0.5594888", "0.5592027", "0.5581715", "0.5579996", "0.55706555", "0.5570241", "0.55688584", "0.55654407" ]
0.74740344
0
This plugin assumes the presence of SLT's "Developer's Custom Fields" ( The following function is abstract enough to be defined only once, rather than being specific to this file. However, until we decide a good mechanism (e.g. plugin, or starter functions.php file for site templates), this will be associated with a register_post_type statement.
function register_capabilities_testimonials($post_type_name) { global $wp_roles; if(!isset($wp_roles)) { $wp_roles = new WP_Roles(); } $role =& $wp_roles->get_role('administrator'); $capabilities = $role->capabilities; $adminCapabilities = array( 'edit_%s', 'read_%s', 'delete_%s', 'edit_%ss', 'edit_others_%ss', 'publish_%ss', 'read_private_%ss' ); foreach($adminCapabilities as $capFmt) { $capName = sprintf($capFmt, $post_type_name); if(!array_key_exists($capName, $capabilities)) { // Regardless of capability yes/no, we only care if it has been previously defined. $role->add_cap($capName); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function acadp_get_custom_field_types() {\n\n\t$types = array(\n\t\t'text' => __( 'Text', 'advanced-classifieds-and-directory-pro' ),\n\t\t'textarea' => __( 'Text Area', 'advanced-classifieds-and-directory-pro' ),\n\t\t'select' => __( 'Select', 'advanced-classifieds-and-directory-pro' ),\n\t\t'checkbox' => __( 'Checkbox', 'advanced-classifieds-and-directory-pro' ),\n\t\t'radio' => __( 'Radio Button', 'advanced-classifieds-and-directory-pro' ),\n\t\t'url' => __( 'URL', 'advanced-classifieds-and-directory-pro' )\n\t);\n\n\t// Return\n\treturn apply_filters( 'acadp_custom_field_types', $types );\n\n}", "function tower_custom_post_types() {\n foreach (TOWER_CUSTOM_POSTS as $key => $custom_type) {\n register_post_type($key, $custom_type['config']);\n }\n}", "function bs_configure_custom_post_types($args)\n{\n function bs_custom_post_types()\n {\n global $bs_config;\n\n foreach ($bs_config[\"custom-post-types\"] as $key => $type) {\n $type = bs_defaults($type, [\n \"public\" => true,\n ]);\n\n if (isset($type[\"name\"])) {\n $type[\"labels\"][\"name\"] = $type[\"name\"];\n }\n\n if (isset($type[\"slug\"])) {\n $type[\"rewrite\"][\"slug\"] = $type[\"slug\"];\n }\n\n if (isset($type[\"admin_only\"]) && $type[\"admin_only\"]) {\n $type[\"public\"] = false;\n $type[\"show_ui\"] = true;\n }\n\n register_post_type($key, bs_array_omit($type, [\"slug\", \"name\", \"admin_only\"]));\n }\n }\n add_action(\"init\", \"bs_custom_post_types\");\n}", "public function flo_reg_custom_post_type(){\n\t\t// call the methods that are registering the post types\n\t\t$this->flo_reg_forms_post_type();\n\t\t$this->flo_reg_entrie_post_type();\n\n\t\t$this->flo_register_form_entries_taxonomy();\n\t}", "function register_post_types(){\n }", "public function customPostType()\n {\n\n if (empty($this->custom_post_types)) {\n return;\n }\n\n foreach ($this->custom_post_types as $post_type) {\n register_post_type(\n $post_type['post_type'],\n [\n 'labels' => [\n 'name' => __($post_type['name'], 'vrcoder'),\n 'singular_name' => __($post_type['singular_name'], 'vrcoder'),\n 'menu_name' => __($post_type['name'], 'vrcoder'),\n 'name_admin_bar' => __($post_type['singular_name'], 'vrcoder'),\n 'archives' => __($post_type['singular_name'] . ' Archives', 'vrcoder'),\n 'attributes' => __($post_type['singular_name'] . ' Attributes', 'vrcoder'), \n 'parent_item_colon' => __('Parent ' . $post_type['singular_name'], 'vrcoder'),\n 'all_items' => __('All ' . $post_type['name'], 'vrcoder'),\n 'add_new_item' => __('Add new ' . $post_type['singular_name'], 'vrcoder'),\n 'add_new' => __('Add new', 'vrcoder'),\n 'new_item' => __('New ' . $post_type['singular_name'], 'vrcoder'),\n 'edit_item' => __('Edit ' . $post_type['singular_name'], 'vrcoder'),\n 'update_item' => __('Update' . $post_type['singular_name'], 'vrcoder'),\n 'view_item' => __('View' . $post_type['singular_name'], 'vrcoder'),\n 'view_items' => __('View' . $post_type['name'], 'vrcoder'),\n 'search_items' => __('Search' . $post_type['name'], 'vrcoder'),\n 'not_found' => __('No' . $post_type['singular_name'] . ' Found', 'vrcoder'),\n 'not_found_in_trash' => __('No' . $post_type['singular_name'] . ' Found in Trash', 'vrcoder'),\n 'featured_image' => __('Featured Image', 'vrcoder'),\n 'set_featured_image' => __('Set Featured Image', 'vrcoder'),\n 'remove_featured_image' => __('Remove Featured Image', 'vrcoder'),\n 'use_featured_image' => __('Use Featured Image', 'vrcoder'),\n 'insert_into_item' => __('Insert into' . $post_type['singular_name'], 'vrcoder'),\n 'uploaded_to_this_item' => __('Upload to this' . $post_type['singular_name'], 'vrcoder'),\n 'items_list' => __($post_type['name'] . ' List', 'vrcoder'),\n 'items_list_navigation' => __($post_type['name'] . ' List Navigation', 'vrcoder'),\n 'filter_items_list' => __('Filter' . $post_type['name'] . ' List', 'vrcoder'),\n ],\n 'label' => __($post_type['singular_name'], 'vrcoder'),\n 'description' => __($post_type['name'] . ' Custom Post Type', 'vrcoder'),\n 'supports' => $post_type['supports'],\n 'show_in_rest' => $post_type['show_in_rest'],\n 'taxonomies' => $post_type['taxonomies'],\n 'hierarchical' => $post_type['hierarchical'],\n 'public' => $post_type['public'],\n 'show_ui' => $post_type['show_ui'],\n 'show_in_menu' => $post_type['show_in_menu'],\n 'menu_position' => $post_type['menu_position'],\n 'show_in_admin_bar' => $post_type['show_in_admin_bar'],\n 'show_in_nav_menus' => $post_type['show_in_nav_menus'],\n 'can_export' => $post_type['can_export'],\n 'has_archive' => $post_type['has_archive'],\n 'exclude_from_search' => $post_type['exclude_from_search'],\n 'publicly_queryable' => $post_type['publicly_queryable'],\n 'capability_type' => $post_type['capability_type'],\n 'menu_icon' => $post_type['menu_icon']\n ]\n );\n }\n\n }", "function register_post_types(){\n }", "function register_post_types(){\n\t\t\trequire('lib/custom-types.php');\n\t\t}", "function register_post_types(){\n\t\trequire('lib/custom-types.php');\n\t}", "public function add_custom_post_types() {\n //\n }", "function register_post_types()\n {\n }", "public static function post_type(){}", "function register_post_types() {\n\t}", "function register_post_types() {\n\t}", "function custom_post_type() {\n\n// Set UI labels for Custom Post Type\n\t$labels = array(\n\t\t'name' => _x( 'Новости', 'Новости сайта', 'p1atform' ),\n\t\t'singular_name' => _x( 'Новость', 'Post Type Singular Name', 'p1atform' ),\n\t\t'menu_name' => __( 'Новости', 'p1atform' ),\n\t\t'parent_item_colon' => __( 'Parent Новость', 'p1atform' ),\n\t\t'all_items' => __( 'Все новости', 'p1atform' ),\n\t\t'view_item' => __( 'Просмотреть новость', 'p1atform' ),\n\t\t'add_new_item' => __( 'Добавить новость', 'p1atform' ),\n\t\t'add_new' => __( 'Добавить новость', 'p1atform' ),\n\t\t'edit_item' => __( 'Редактировать новость', 'p1atform' ),\n\t\t'update_item' => __( 'Обновить новость', 'p1atform' ),\n\t\t'search_items' => __( 'Поиск новости', 'p1atform' ),\n\t);\n\n\t$args = array(\n\t\t'label' => __( 'Отзывы', 'p1atform' ),\n\t\t'description' => __( 'Отзывы', 'p1atform' ),\n\t\t'labels' => $labels,\n\t\t'supports' => array(\n\t\t\t'title',\n\t\t\t'editor',\n\t\t\t'excerpt',\n\t\t\t'author',\n\t\t\t'thumbnail',\n\t\t\t'comments',\n\t\t\t'revisions',\n\t\t\t'custom-fields'\n\t\t),\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_in_admin_bar' => true,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => 'dashicons-format-aside',\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'post',\n\t);\n\n\tregister_post_type( 'news', $args );\n\n\t$labels = array(\n\t\t'name' => _x( 'Клиенты', 'Новости сайта', 'p1atform' ),\n\t\t'singular_name' => _x( 'Клиент', 'Post Type Singular Name', 'p1atform' ),\n\t\t'menu_name' => __( 'Клиенты', 'p1atform' ),\n\t\t'parent_item_colon' => __( 'Парент Клиент', 'p1atform' ),\n\t\t'all_items' => __( 'Все клиенты', 'p1atform' ),\n\t\t'view_item' => __( 'Просмотреть клиента', 'p1atform' ),\n\t\t'add_new_item' => __( 'Добавить клиента', 'p1atform' ),\n\t\t'add_new' => __( 'Добавить клиента', 'p1atform' ),\n\t\t'edit_item' => __( 'Редактировать клиента', 'p1atform' ),\n\t\t'update_item' => __( 'Обновить клиента', 'p1atform' ),\n\t\t'search_items' => __( 'Поиск клиента', 'p1atform' ),\n\t);\n\n\t$args = array(\n\t\t'labels' => $labels,\n\t\t'supports' => array(\n\t\t\t'title',\n\t\t\t'editor',\n\t\t\t'excerpt',\n\t\t\t'author',\n\t\t\t'thumbnail',\n\t\t\t'comments',\n\t\t\t'revisions',\n\t\t\t'custom-fields',\n\t\t),\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_in_admin_bar' => true,\n\t\t'menu_position' => 6,\n\t\t'menu_icon' => 'dashicons-admin-users',\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'post',\n\t);\n\n\tregister_post_type( 'clients', $args );\n\n\tregister_post_type( 'reviews', array(\n\t\t'labels' => array(\n\t\t\t'name' => 'Отзывы', // Основное название типа записи\n\t\t\t'singular_name' => 'Отзыв', // отдельное название записи типа Book\n\t\t\t'add_new' => 'Добавить Отзыв',\n\t\t\t'add_new_item' => 'Добавить Отзыв',\n\t\t\t'edit_item' => 'Редактировать Отзыв',\n\t\t\t'new_item' => 'Новая Отзыв',\n\t\t\t'view_item' => 'Посмотреть Отзыв',\n\t\t\t'search_items' => 'Найти Отзыв',\n\t\t\t'not_found' => 'Книг не найдено',\n\t\t\t'not_found_in_trash' => 'В корзине книг не найдено',\n\t\t\t'parent_item_colon' => '',\n\t\t\t'menu_name' => 'Отзывы'\n\n\t\t),\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'query_var' => true,\n\t\t'rewrite' => true,\n\t\t'capability_type' => 'post',\n\t\t'has_archive' => true,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => 'dashicons-format-chat',\n\t\t'hierarchical' => false,\n\t\t'menu_position' => null,\n\t\t'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )\n\t) );\n\n}", "function acf_get_post_types($args = array())\n{\n}", "public static function register_post_types() {}", "function theme_custom_post_type() {\n\tregister_post_type( 'custom_type',\n\n\t\t// Array with all the options for the custom post type\n\t\tarray( 'labels' => array(\n\t\t\t'name'\t\t\t\t\t=> __( 'Custom Types' ), // Name of the custom post type group\n\t\t\t'singular_name'\t\t\t=> __( 'Custom Post' ), // Name of the custom post type singular\n\t\t\t'all_items'\t\t\t\t=> __( 'All Custom Posts' ),\n\t\t\t'add_new' \t\t\t\t=> __( 'Add New' ),\n\t\t\t'add_new_item' \t\t\t=> __( 'Add New Custom Type' ),\n\t\t\t'edit'\t\t\t\t\t=> __( 'Edit' ),\n\t\t\t'edit_item'\t\t\t\t=> __( 'Edit Post Types' ),\n\t\t\t'new_item'\t\t\t\t=> __( 'New Post Type' ),\n\t\t\t'view_item'\t\t\t\t=> __( 'View Post Type' ),\n\t\t\t'search_items'\t\t\t=> __( 'Search Post Type' ),\n\t\t\t'not_found'\t\t\t\t=> __( 'Nothing found in the Database.' ),\n\t\t\t'not_found_in_trash'\t=> __( 'Nothing found in Trash' ),\n\t\t\t'parent_item_colon' \t=> ''\n\t\t\t),\n\n\t\t\t'description' \t\t\t=> __( 'This is the example custom post type' ), // Custom post type description\n\t\t\t'public' \t\t\t\t=> true,\n\t\t\t'publicly_queryable' \t=> true,\n\t\t\t'exclude_from_search' \t=> false,\n\t\t\t'show_ui' \t\t\t\t=> true,\n\t\t\t'query_var' \t\t\t=> true,\n\t\t\t'menu_position' \t\t=> 5, // The order the custom post type appears on the admin menu\n\t\t\t// 'menu_icon' \t\t\t=> get_stylesheet_directory_uri() . '/assets/images/custom-post-icon.png',\n\t\t\t'rewrite'\t\t\t\t=> array( 'slug' => 'custom_type', 'with_front' => false ), // You may specify its url slug\n\t\t\t'has_archive' \t\t\t=> 'custom_type', // You mary rename the slug here\n\t\t\t'capability_type' \t\t=> 'post',\n\t\t\t'hierarchical' \t\t\t=> false,\n\n\t\t\t// Enable post editor support\n\t\t\t'supports' => array(\n\t\t\t\t'title',\n\t\t\t\t'editor',\n\t\t\t\t'author',\n\t\t\t\t'thumbnail',\n\t\t\t\t'excerpt',\n\t\t\t\t'trackbacks',\n\t\t\t\t'custom-fields',\n\t\t\t\t'comments',\n\t\t\t\t'revisions',\n\t\t\t\t'sticky'\n\t\t\t)\n\t\t)\n\t);\n\n\t// This adds your post categories to your custom post type\n\tregister_taxonomy_for_object_type( 'category', 'custom_type' );\n\n\t// This adds your post tags to your custom post type\n\tregister_taxonomy_for_object_type( 'post_tag', 'custom_type' );\n\n}", "function register_post_type(){\n \n $capability = acf_get_setting('capability');\n \n if(!acf_get_setting('show_admin'))\n $capability = false;\n \n register_post_type($this->post_type, array(\n 'label' => 'Options Page',\n 'description' => 'Options Page',\n 'labels' => array(\n 'name' => 'Options Pages',\n 'singular_name' => 'Options Page',\n 'menu_name' => 'Options Pages',\n 'edit_item' => 'Edit Options Page',\n 'add_new_item' => 'New Options Page',\n ),\n 'supports' => array('title'),\n 'hierarchical' => true,\n 'public' => false,\n 'show_ui' => true,\n 'show_in_menu' => 'edit.php?post_type=acf-field-group',\n 'menu_icon' => 'dashicons-layout',\n 'show_in_admin_bar' => false,\n 'show_in_nav_menus' => false,\n 'can_export' => false,\n 'has_archive' => false,\n 'rewrite' => false,\n 'exclude_from_search' => true,\n 'publicly_queryable' => false,\n 'capabilities' => array(\n 'publish_posts' => $capability,\n 'edit_posts' => $capability,\n 'edit_others_posts' => $capability,\n 'delete_posts' => $capability,\n 'delete_others_posts' => $capability,\n 'read_private_posts' => $capability,\n 'edit_post' => $capability,\n 'delete_post' => $capability,\n 'read_post' => $capability,\n ),\n 'acfe_admin_orderby' => 'title',\n 'acfe_admin_order' => 'ASC',\n 'acfe_admin_ppp' => 999,\n ));\n \n }", "function bf_register_custom_post_type() {\r\n /* Añado las etiquetas que aparecerán en el escritorio de WordPress */\r\n\t$labels = array(\r\n\t\t'name' => _x( 'Ponentes', 'post type general name', 'text-domain' ),\r\n\t\t'singular_name' => _x( 'Ponente', 'post type singular name', 'text-domain' ),\r\n\t\t'menu_name' => _x( 'Ponentes', 'admin menu', 'text-domain' ),\r\n\t\t'add_new' => _x( 'Añadir nuevo', 'ponente', 'text-domain' ),\r\n\t\t'add_new_item' => __( 'Añadir nuevo ponente', 'text-domain' ),\r\n\t\t'new_item' => __( 'Nuevo Ponente', 'text-domain' ),\r\n\t\t'edit_item' => __( 'Editar Ponente', 'text-domain' ),\r\n\t\t'view_item' => __( 'Ver ponente', 'text-domain' ),\r\n\t\t'all_items' => __( 'Todos los ponentes', 'text-domain' ),\r\n\t\t'search_items' => __( 'Buscar ponentes', 'text-domain' ),\r\n\t\t'not_found' => __( 'No hay ponentes.', 'text-domain' ),\r\n\t\t'not_found_in_trash' => __( 'No hay ponentes en la papelera.', 'text-domain' )\r\n\t);\r\n\r\n /* Configuro el comportamiento y funcionalidades del nuevo custom post type */\r\n\t$args = array(\r\n\t\t'labels' => $labels,\r\n\t\t'description' => __( 'Descripción.', 'text-domain' ),\r\n\t\t'public' => true,\r\n\t\t'publicly_queryable' => true,\r\n\t\t'show_ui' => true,\r\n\t\t'show_in_menu' => true,\r\n\t\t'show_in_nav_menus' => true,\r\n\t\t'query_var' => true,\r\n\t\t'rewrite' => array( 'slug' => 'ponente' ),\r\n\t\t'capability_type' => 'post',\r\n\t\t'hierarchical' => false,\r\n\t\t'menu_position' => null,\r\n 'menu_icon' => 'dashicons-businessman',\r\n\t\t'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),\r\n\t\t'show_in_rest'\t \t => true,\r\n\t\t'public' \t\t\t => true,\r\n\t\t'has_archive' \t\t => true,\r\n\t\t'taxonomies' => array('category','categoria-conferencias')\r\n\t);\r\n\r\n\tregister_post_type('ponentes', $args );\r\n}", "public function get_custom_field_types() {\n\n\t\t$custom_field_types = array(\n\t\t\t'' => __( 'Default', 'codepress-admin-columns' ),\n\t\t\t'checkmark' => __( 'Checkmark (true/false)', 'codepress-admin-columns' ),\n\t\t\t'color' => __( 'Color', 'codepress-admin-columns' ),\n\t\t\t'count' => __( 'Counter', 'codepress-admin-columns' ),\n\t\t\t'date' => __( 'Date', 'codepress-admin-columns' ),\n\t\t\t'excerpt' => __( 'Excerpt' ),\n\t\t\t'image' => __( 'Image', 'codepress-admin-columns' ),\n\t\t\t'library_id' => __( 'Media Library', 'codepress-admin-columns' ),\n\t\t\t'link' => __( 'Url', 'codepress-admin-columns' ),\n\t\t\t'array' => __( 'Multiple Values', 'codepress-admin-columns' ),\n\t\t\t'numeric' => __( 'Numeric', 'codepress-admin-columns' ),\n\t\t\t'title_by_id' => __( 'Post Title (Post ID\\'s)', 'codepress-admin-columns' ),\n\t\t\t'user_by_id' => __( 'Username (User ID\\'s)', 'codepress-admin-columns' ),\n\t\t\t'term_by_id' => __( 'Term Name (Term ID\\'s)', 'codepress-admin-columns' ),\n\t\t);\n\n\t\t// deprecated. do not use, will be removed.\n\t\t$custom_field_types = apply_filters( 'cpac_custom_field_types', $custom_field_types );\n\n\t\t/**\n\t\t * Filter the available custom field types for the meta (custom field) field\n\t\t *\n\t\t * @since 2.0\n\t\t *\n\t\t * @param array $custom_field_types Available custom field types ([type] => [label])\n\t\t */\n\t\t$custom_field_types = apply_filters( 'cac/column/meta/types', $custom_field_types );\n\n\t\treturn $custom_field_types;\n\t}", "function wppb_add_prepopulated_default_fields( $post_id, $post ){\r\n\tif ( 'auto-draft' == $post->post_status ) {\r\n\t\t$all_fields = get_option ( 'wppb_manage_fields' );\r\n\t\t$all_fields_new = array();\r\n\t\t\r\n\t\tforeach ( $all_fields as $key => $value )\r\n\t\t\tarray_push( $all_fields_new, array( 'field' => wppb_field_format( $value['field-title'], $value['field'] ), 'id' => $value['id'] ) );\r\n\t\t\r\n\t\tif ( 'wppb-rf-cpt' == $post->post_type ) {\r\n // Remove \"Display name publicly as\" from register forms\r\n foreach( $all_fields_new as $key => $value ) {\r\n if( strpos( $value['field'], 'Display name publicly as' ) !== false ) {\r\n unset( $all_fields_new[$key] );\r\n }\r\n }\r\n $all_fields_new = array_values( $all_fields_new );\r\n add_post_meta( $post->ID, 'wppb_rf_fields', $all_fields_new );\r\n\r\n } elseif ( 'wppb-epf-cpt' == $post->post_type ){\r\n\t\t\t// remove reCAPTCHA and Validation fields from the list\r\n\t\t\tforeach ( $all_fields_new as $key => $value ){\r\n\t\t\t\tif ( strpos ( $value['field'], '( reCAPTCHA )' ) !== false || strpos ( $value['field'], '( Validation )' ) !== false ) {\r\n\t\t\t\t\tunset( $all_fields_new[$key] );\r\n\t\t\t\t}\r\n\t\t\t}\r\n $all_fields_new = array_values( $all_fields_new );\r\n\t\t\tadd_post_meta( $post->ID, 'wppb_epf_fields', $all_fields_new );\r\n\t\t}\t\t\r\n\t}\r\n}", "function medarbejder_custom_post_type() {\n $labels = array(\n 'name' => _x( 'Medarbejdere', 'Post Type General Name', 'webstarters' ),\n 'singular_name' => _x( 'Medarbejder', 'Post Type Singular Name', 'webstarters' ),\n 'menu_name' => __( 'Medarbejdere', 'webstarters' ),\n 'parent_item_colon' => __( 'Forældre medarbejder', 'webstarters' ),\n 'all_items' => __( 'Alle medarbejdere', 'webstarters' ),\n 'view_item' => __( 'Se medarbejder', 'webstarters' ),\n 'add_new_item' => __( 'Tilføj ny medarbejder', 'webstarters' ),\n 'add_new' => __( 'Tilføj ny medarbejder', 'webstarters' ),\n 'edit_item' => __( 'Redigere medarbejder', 'webstarters' ),\n 'update_item' => __( 'Opdatere medarbejder', 'webstarters' ),\n 'search_items' => __( 'Søg efter medarbejder', 'webstarters' ),\n 'not_found' => __( 'Not Found', 'webstarters' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'webstarters' ),\n );\n\n// Set other options for Custom Post Type\n\n $args = array(\n 'label' => __( 'medarbejder', 'webstarters' ),\n 'description' => __( 'Custom post type til byggegrunde', 'webstarters' ),\n 'labels' => $labels,\n // Features this CPT supports in Post Editor\n 'supports' => array( 'title', 'thumbnail', 'custom-fields', ),\n // You can associate this CPT with a taxonomy or custom taxonomy.\n 'taxonomies' => array(),\n /* A hierarchical CPT is like Pages and can have\n * Parent and child items. A non-hierarchical CPT\n * is like Posts.\n */\n 'hierarchical' => false,\n 'public' => false,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => false,\n 'exclude_from_search' => false,\n 'publicly_queryable' => false,\n 'capability_type' => 'page',\n );\n\n // Registering your Custom Post Type\n register_post_type( 'medarbejder', $args );\n\n}", "public function registerCustomPostTypes() {\n\n\n }", "function custom_post_type() {\n // Set other options for Custom Post Type\n $args = array(\n 'label' => __( 'Child Care', 'AOK' ),\n 'description' => __( 'Child Care', 'AOK' ),\n 'labels' => $labels,\n // Features in Post Editor\n 'supports' => array( 'title', 'author', 'comments' ),\n // Taxonomies or custom taxonomy.\n //'taxonomies' => array( 'categories' ),\n /* A hierarchical CPT is like Pages and can have\n* Parent and child items. A non-hierarchical CPT\n* is like Posts.\n*/\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'post',\n );\n /*\n$args2 = array(\n'label' => __( 'Public Profile', 'AOK' ),\n'description' => __( 'Public Profile', 'AOK' ),\n'labels' => $labels,\n// Features in Post Editor\n'supports' => false,\n// Taxonomies or custom taxonomy.\n//'taxonomies' => array( 'categories' ),\n// A hierarchical CPT is like Pages and can have\n// Parent and child items. A non-hierarchical CPT\n// is like Posts.\n\n'hierarchical' => false,\n'public' => true,\n'show_ui' => true,\n'show_in_menu' => true,\n'show_in_nav_menus' => true,\n'show_in_admin_bar' => true,\n'menu_position' => 3,\n'can_export' => true,\n'has_archive' => true,\n'exclude_from_search' => false,\n'publicly_queryable' => true,\n'capability_type' => 'post',\n);\n*/\n // Registering Custom Post Type\n register_post_type( 'child_care', $args );\n //register_post_type( 'profile', $args2 );\n}", "function classTools_post_type() {\n\n $labels = array(\n 'name' => _x( 'Ferramentas', 'Post Type General Name', 'text_domain' ),\n 'singular_name' => _x( 'ferramenta', 'Post Type Singular Name', 'text_domain' ),\n 'menu_name' => __( 'Ferramenta', 'text_domain' ),\n 'name_admin_bar' => __( 'Post Type', 'text_domain' ),\n 'archives' => __( 'Item Archives', 'text_domain' ),\n 'attributes' => __( 'Item Attributes', 'text_domain' ),\n 'parent_item_colon' => __( 'Parent Item:', 'text_domain' ),\n 'all_items' => __( 'todas as ferramentas', 'text_domain' ),\n 'add_new_item' => __( 'Add novaferramenta', 'text_domain' ),\n 'add_new' => __( 'nova ferramenta', 'text_domain' ),\n 'new_item' => __( 'nova ferramenta', 'text_domain' ),\n 'edit_item' => __( 'Edit Item', 'text_domain' ),\n 'update_item' => __( 'Update Item', 'text_domain' ),\n 'view_item' => __( 'View Item', 'text_domain' ),\n 'view_items' => __( 'View Items', 'text_domain' ),\n 'search_items' => __( 'Search Item', 'text_domain' ),\n 'not_found' => __( 'não encontrado', 'text_domain' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\n 'featured_image' => __( 'Featured Image', 'text_domain' ),\n 'set_featured_image' => __( 'Set featured image', 'text_domain' ),\n 'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),\n 'use_featured_image' => __( 'Use as featured image', 'text_domain' ),\n 'insert_into_item' => __( 'Insert into item', 'text_domain' ),\n 'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),\n 'items_list' => __( 'Items list', 'text_domain' ),\n 'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),\n 'filter_items_list' => __( 'Filter items list', 'text_domain' ),\n );\n $args = array(\n 'label' => __( 'ferramentas', 'text_domain' ),\n 'description' => __( 'ferramentas', 'text_domain' ),\n 'labels' => $labels,\n 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields'),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'menu_position' => 5,\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => true,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n register_post_type( 'classTools_post_type', $args );\n\n}", "function carbon_register_post_type($settings){\n\n $labels = array(\n 'name' => _x($settings['plural'],'post type plural name','carbon'),\n 'singular_name' => _x($settings['singular'],'post type singular name','carbon'),\n 'add_new' => _x('Add New',$settings['singular'],'carbon'),\n 'add_new_item' => __('Add New ' .$settings['singular']),\n 'edit_item' => __('Edit ' .$settings['singular']),\n 'new_item' => __('New ' .$settings['singular']),\n 'all_items' => __('All ' .$settings['plural']),\n 'view_item' => __('View ' .$settings['singular']),\n 'search_items' => __('Search ' .$settings['plural']),\n 'not_found' => __('No ' .$settings['plural'].' found'),\n 'not_found_in_trash' => __('No ' .$settings['plural'].' found in Trash'),\n 'parent_item_colon' => ':',\n 'menu_name' => $settings['plural'],\n );\n\n $args = array(\n 'labels' => $labels,\n 'can_export' => (isset($settings['can_export']) ? $settings['can_export'] : true), // defaults true\n 'capability_type' => (isset($settings['capability_type']) ? $settings['behavior'] : 'post'), // default post\n // 'capabilities' // default capability_type\n 'exclude_from_search' => (isset($settings['exclude_from_search']) ? $settings['exclude_from_search'] : false), // default opposite of public\n 'hierarchical' => (isset($settings['hierarchical']) ? $settings['hierarchical'] : false), // default false\n 'has_archive' => (isset($settings['has_archive']) ? $settings['has_archive'] : false), // default false\n // 'permalink_epmask' // default EP_PERMALINK\n 'public' => (isset($settings['public']) ? $settings['public'] : true), // default false\n 'publicly_queryable' => (isset($settings['publicly_queryable']) ? $settings['publicly_queryable'] : true), // default public\n 'query_var' => (isset($settings['query_var']) ? $settings['query_var'] : true), // default true type\n 'show_ui' => (isset($settings['show_ui']) ? $settings['show_ui'] : true), // default public\n 'show_in_menu' => (isset($settings['show_in_menu']) ? $settings['show_in_menu'] : true), // default public\n 'show_in_admin_bar' => (isset($settings['show_in_admin_bar']) ? $settings['show_in_admin_bar'] : true), // default show_in_menu\n 'menu_position' => (isset($settings['menu_position']) ? $settings['menu_position'] : null), // default null\n 'menu_icon' => (isset($settings['menu_icon']) ? $settings['menu_icon'] : 'dashicons-admin-post'),\n 'supports' => (isset($settings['supports']) ? $settings['supports'] : array('title', 'editor', 'excerpt', 'thumbnail', 'revisions', 'page-attributes')), // default title editor\n 'taxonomies' => (isset($settings['taxonomies']) ? $settings['taxonomies'] : array()), // default none\n // 'register_meta_box_cb' // default none\n 'rewrite' => (isset($settings['rewrite']) ? $settings['rewrite'] : array( // default true name\n 'slug' => (isset($settings['slug']) ? $settings['slug'] : $settings['type']), // default type\n 'with_front' => (isset($settings['with_front']) ? $settings['with_front'] : false), // default true\n 'feeds' => (isset($settings['feeds']) ? $settings['feeds'] : false), // default has_archive\n 'pages' => (isset($settings['pages']) ? $settings['pages'] : true), // defaults true\n // 'ep_mask' // default permalink_epmask EP_PERMALINK\n )),\n );\n register_post_type($settings['type'], $args);\n }", "function acf_get_field_types_info($args = array())\n{\n}", "function acf_register_field_type_info($info)\n{\n}", "function carbon_register_post_types(){\n\n // carbon_register_post_type(array(\n // 'singular' => 'Type', // required\n // 'plural' => 'Types', // required\n // 'type' => 'type', // required\n // 'slug' => 'types/type',\n // 'menu_icon' => 'dashicons-admin-post',\n // 'has_archive' => true,\n // 'exclude_from_search' => true,\n // ));\n }", "function acf_get_field_types($args = array())\n{\n}", "function wpcf_custom_types_default() {\n return array(\n 'labels' => array(\n 'name' => '',\n 'singular_name' => '',\n 'add_new' => 'Add New',\n 'add_new_item' => 'Add New %s',\n// 'edit' => 'Edit',\n 'edit_item' => 'Edit %s',\n 'new_item' => 'New %s',\n// 'view' => 'View',\n 'view_item' => 'View %s',\n 'search_items' => 'Search %s',\n 'not_found' => 'No %s found',\n 'not_found_in_trash' => 'No %s found in Trash',\n 'parent_item_colon' => 'Parent %s',\n 'menu_name' => '%s',\n 'all_items' => '%s',\n ),\n 'slug' => '',\n 'description' => '',\n 'public' => true,\n 'capabilities' => false,\n 'menu_position' => null,\n 'menu_icon' => '',\n 'taxonomies' => array(\n 'category' => false,\n 'post_tag' => false,\n ),\n 'supports' => array(\n 'title' => true,\n 'editor' => true,\n 'trackbacks' => false,\n 'comments' => false,\n 'revisions' => false,\n 'author' => false,\n 'excerpt' => false,\n 'thumbnail' => false,\n 'custom-fields' => false,\n 'page-attributes' => false,\n 'post-formats' => false,\n ),\n 'rewrite' => array(\n 'enabled' => true,\n 'slug' => '',\n 'with_front' => true,\n 'feeds' => true,\n 'pages' => true,\n ),\n 'has_archive' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_menu_page' => '',\n 'publicly_queryable' => true,\n 'exclude_from_search' => false,\n 'hierarchical' => false,\n 'query_var_enabled' => true,\n 'query_var' => '',\n 'can_export' => true,\n 'show_rest' => false,\n 'rest_base' => '',\n 'show_in_nav_menus' => true,\n 'register_meta_box_cb' => '',\n 'permalink_epmask' => 'EP_PERMALINK',\n 'update' => false,\n );\n}", "function food_specials_custompost() {\r\n\t$args = array(\r\n\t\t'label' => 'Daily Food Specials',\r\n\t\t'public' => true,\r\n\t\t'show_ui' => true,\r\n\t\t'capability_type' => 'post',\r\n\t\t'rewrite' => array('slug' => 'food_specials'),\r\n\t\t'query_var' => true,\r\n\t\t'supports' => array(\r\n\t\t\t'title', 'editor', 'excerpt', 'comments', 'thumbnail', 'author',)\r\n\t\t);\r\n\tregister_post_type('food_specials', $args);\r\n}", "function get_custom_post_types() {\n\t$args = array(\n\t\t'public' => true,\n\t\t'_builtin' => false\n\t);\n\t$post_types = get_post_types( $args, 'names');\n\treturn $post_types;\n}", "function types_rename_build_in_post_types() {\n global $wp_post_types;\n $custom_types = get_option( WPCF_OPTION_NAME_CUSTOM_TYPES, array() );\n\n if ( !empty( $custom_types ) ) {\n foreach ( $custom_types as $post_type => $data ) {\n // only for build_in\n if (\n isset( $data['_builtin'] )\n && $data['_builtin']\n && isset( $data['slug'] )\n && isset( $data['labels']['name'] )\n ) {\n // check if slug (post/page) exists\n if( isset( $wp_post_types[$data['slug']] ) ) {\n // refer $l to post labels\n $l = &$wp_post_types[$data['slug']]->labels;\n\n // change name\n $l->name = isset( $data['labels']['name'] ) ? $data['labels']['name'] : $l->name;\n\n // change singular name\n $l->singular_name = isset( $data['labels']['singular_name'] ) ? $data['labels']['singular_name'] : $l->singular_name;\n\n // change labels\n $l->add_new_item = 'Add New';\n $l->add_new = 'Add New ' . $l->singular_name;\n $l->edit_item = 'Edit ' . $l->singular_name;\n $l->new_item = 'New ' . $l->name ;\n $l->view_item = 'View ' . $l->name;\n $l->search_items = 'Search '. $l->name;\n $l->not_found = 'No ' . $l->name . ' found';\n $l->not_found_in_trash = 'No ' . $l->name . ' found in Trash';\n $l->parent_item_colon = 'Parent '. $l->name;\n $l->all_items = 'All ' . $l->name;\n $l->menu_name = $l->name;\n $l->name_admin_bar = $l->name;\n\n }\n }\n }\n }\n}", "function custom_post_type() {\n $labels = array(\n 'name' => _x( 'Ort', 'Post Type General Name', 'twentythirteen' ),\n 'singular_name' => _x( 'Ort', 'Post Type Singular Name', 'twentythirteen' ),\n 'menu_name' => __( 'Orter', 'twentythirteen' ),\n 'all_items' => __( 'Alla Orter', 'twentythirteen' ),\n 'view_item' => __( 'View Ort', 'twentythirteen' ),\n 'add_new_item' => __( 'Skapa ny Ort', 'twentythirteen' ),\n 'add_new' => __( 'Skapa ny Ort', 'twentythirteen' ),\n 'edit_item' => __( 'Redigera Ort', 'twentythirteen' ),\n 'update_item' => __( 'Upddatera Ort', 'twentythirteen' ),\n 'search_items' => __( 'Sök Ort', 'twentythirteen' ),\n 'not_found' => __( 'Not Found', 'twentythirteen' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'twentythirteen' ),\n );\n \n $args = array(\n 'label' => __( 'cities', 'twentythirteen' ),\n 'description' => __( 'City Post Page', 'twentythirteen' ),\n 'labels' => $labels,\n 'supports' => array('title','thumbnail',),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n \n register_post_type( 'cities', $args );\n\n }", "function omfg_mobile_pro_create_site_posttypes() {\n\tdo_action('omfg_mobile_pro_create_site_posttypes');\n}", "function get_post_types() {\n\tglobal $rf_custom_posts;\n\n\t$post = new PostType();\n\t$cpts = $post->get_admin_post_pages();\n\n\t$cpts = array_merge($cpts, $rf_custom_posts);\n\t$cpts = apply_filters(\"admin/post_types\", $cpts);\n\n\treturn $cpts;\n}", "function people_post_type() {\n\n\t/***************************************************************\n\t *\n\t OUR PEOPLE\n\t *\n\t***************************************************************/\n\n\t$peopleLabels = array(\n\t\t'name' => _x( 'Our People', 'Post Type General Name', 'text_domain' ),\n\t\t'singular_name' => _x( 'Our People', 'Post Type Singular Name', 'text_domain' ),\n\t\t'menu_name' => __( 'Our People', 'text_domain' ),\n\t\t'name_admin_bar' => __( 'Our People', 'text_domain' ),\n\t\t'archives' => __( 'Our People Archives', 'text_domain' ),\n\t\t'attributes' => __( 'Our People Attributes', 'text_domain' ),\n\t\t'parent_item_colon' => __( 'Parent Our People:', 'text_domain' ),\n\t\t'all_items' => __( 'All Our People', 'text_domain' ),\n\t\t'add_new_item' => __( 'Add New Person', 'text_domain' ),\n\t\t'add_new' => __( 'Add New Person', 'text_domain' ),\n\t\t'new_item' => __( 'New Person', 'text_domain' ),\n\t\t'edit_item' => __( 'Edit Person', 'text_domain' ),\n\t\t'update_item' => __( 'Update Person', 'text_domain' ),\n\t\t'view_item' => __( 'View Person', 'text_domain' ),\n\t\t'view_items' => __( 'View Our People', 'text_domain' ),\n\t\t'search_items' => __( 'Search Our People', 'text_domain' ),\n\t\t'not_found' => __( 'Not found', 'text_domain' ),\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\n\t\t'featured_image' => __( 'Featured Image', 'text_domain' ),\n\t\t'set_featured_image' => __( 'Set featured image', 'text_domain' ),\n\t\t'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),\n\t\t'use_featured_image' => __( 'Use as featured image', 'text_domain' ),\n\t\t'insert_into_item' => __( 'Insert into Person', 'text_domain' ),\n\t\t'uploaded_to_this_item' => __( 'Uploaded to this Person', 'text_domain' ),\n\t\t'items_list' => __( 'Our People list', 'text_domain' ),\n\t\t'items_list_navigation' => __( 'Our People list navigation', 'text_domain' ),\n\t\t'filter_items_list' => __( 'Filter Our People list', 'text_domain' ),\n\t);\n\t$peopleArgs = array(\n\t\t'label' => __( 'Our People', 'text_domain' ),\n\t\t'description' => __( 'Post Type Description', 'text_domain' ),\n\t\t'labels' => $peopleLabels,\n\t\t'supports' => array( 'title', 'editor', 'thumbnail' ),\n\t\t// 'taxonomies' => array( 'team_categories' ),\n\t\t//'rewrite' => array( 'slug' => 'team-archive' ),\n\t\t'rewrite' => true,\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'menu_position' => 20,\n\t\t'menu_icon' => 'dashicons-groups',\n\t\t'show_in_admin_bar' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_in_rest' => true,\n\t\t'can_export' => true,\n\t\t'has_archive' => false,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'page',\n\t);\n\n\tregister_post_type( 'people', $peopleArgs );\n\t/* this adds your post categories to your custom post type */\n\t// register_taxonomy_for_object_type( 'team_categories', 'team' );\n\n}", "function thirdtheme_custom_post_type()\n {\n $args = array(\n 'labels' => array('name' =>__(' my custom post'),\n 'singular name' =>__('my custom post')),\n 'public' => true,\n 'show_in_menu' => true,\n 'has_archive' => true,\n 'supports' => array( 'title', 'editor', 'author', 'thumbnail'));\n register_post_type('custompost',$args);\n \n }", "private function addCustomFields() {\n if (function_exists('get_fields')) {\n foreach (self::getPostTypes() as $post_type) {\n register_rest_field($post_type, 'fields', [\n 'get_callback' => function ($post) {\n if (is_object($post)) {\n return get_fields($post->id);\n } elseif (is_array($post) && array_key_exists('id', $post)) {\n return get_fields($post['id']);\n }\n },\n ]);\n }\n }\n }", "function registerPostTypes()\n{\n register_post_type('destination', [\n 'public' => true,\n 'label' => 'Destinations',\n 'supports' => ['title', 'editor', 'thumbnail']\n ]);\n register_post_type('review', [\n 'public' => true,\n 'label' => 'Reviews',\n 'supports' => ['title', 'editor']\n ]);\n}", "function mfn_news_post_type()\n{\n mfn_register_types();\n}", "function BH_register_posttypes() {\r\n\r\n\tBH_register_posttype_event();\r\n\tBH_register_posttype_gallery();\r\n\r\n}", "function db099_lifterlms_add_post_types($post_types) {\r\n\tif (in_array('course', get_post_types())) {\r\n\t\t$post_types[] = 'course';\r\n\t} \r\n\treturn $post_types;\r\n}", "public function registerCustomPostType()\n {\n if (!post_type_exists($this->slug)) {\n register_post_type($this->slug, $this->arguments);\n }\n }", "function custom_post_type() {\n\t$labels = array(\n\t\t'name' => __( 'Post', 'themeSlug' ),\n\t\t'singular_name' => __( 'Post', 'themeSlug' ),\n\t\t'menu_name' => __( 'Post', 'themeSlug' ),\n\t\t'all_items' => __( 'All Post', 'themeSlug' ),\n\t\t'add_new' => __( 'Add New', 'themeSlug' ),\n\t\t'add_new_item' => __( 'Add New Post', 'themeSlug' ),\n\t\t'edit_item' => __( 'Edit Post', 'themeSlug' ),\n\t\t'new_item' => __( 'New Item', 'themeSlug' ),\n\t\t'view_item' => __( 'View Post', 'themeSlug' ),\n\t\t'search_items' => __( 'Search Post', 'themeSlug' ),\n\t\t'not_found' => __( 'No Post Found', 'themeSlug' ),\n\t\t'not_found_in_trash' => __( 'No Post in trash', 'themeSlug' ),\n\t\t'parent_item_colon' => __( 'Parent Post', 'themeSlug' ),\n\t\t'archives' => __( 'Post Archives', 'themeSlug' ),\n\t\t'insert_into_item' => __( 'Insert into Post', 'themeSlug' ),\n\t\t'uploaded_to_this_item' => __( 'Uploaded to this Post', 'themeSlug' ),\n\t\t'filter_items_list' => __( 'Filter Post List', 'themeSlug' ),\n\t\t'items_list_navigation' => __( 'Post list navigation', 'themeSlug' ),\n\t\t'items_list' => __( 'Post List', 'themeSlug' ),\n\t);\n\t$args = array(\n\t\t'label' => __( 'Post', 'text_domain' ),\n\t\t'description' => __( 'Post', 'text_domain' ),\n\t\t'labels' => $labels,\n\t\t'supports' => array( 'title', 'editor' ),\n\t\t'hierarchical' => false,\n\t\t'public' => false,\n\t\t'publicly_queryable' => false,\n\t\t'show_ui' => true,\n\t\t'show_in_rest' => true,\n\t\t'show_in_menu' => true,\n\t\t'menu_position' => 6,\n\t\t'menu_icon' => 'dashicons-format-status',\n\t\t'exclude_from_search' => false,\n\t\t'capability_type' => 'post',\n\t\t'rewrite' => array(\n\t\t\t'slug' => 'cpt',\n\t\t\t'with_front' => true,\n\t\t),\n\t);\n\n\tregister_post_type( 'cpt', $args );\n}", "function get_wordpress_custom_field_type($mytype) {\n $corresp = array(\n 'date' => 'string',\n 'email' => 'string',\n 'postal_code' => 'string',\n 'text' => 'string',\n 'tel' => 'string',\n 'number' => 'integer',\n 'radio' => 'string',\n 'dropdown' => 'string',\n );\n if (isset($corresp[$mytype])) return $corresp[$mytype];\n else return 'string';\n}", "function acf_register_field_type($class)\n{\n}", "function create_custom_fields() {\n // Get all components to be listed\n $this->get_components();\n // Add components meta box\n if ( function_exists( 'add_meta_box' ) ) {\n foreach ( $this->postTypes as $postType ) {\n add_meta_box( 'wpnext', 'WPNext Builder', array( &$this, 'display_custom_fields' ), $postType, 'normal', 'high' );\n }\n }\n }", "function university_post_types() {\n\t\tregister_post_type('event', array(\n\t\t\t'show_in_rest' => true, \n\t\t\t// Working with the \"Members\" plugin here\n\t\t\t// default for capability type is \"post\" - which means an editor will have access to this type\n\t\t\t// unless you set a specific capability type (such as'event' here)\n\t\t\t// Note: If you cannot see the Events Post type as Admin - then you need to grant permission in the Members Plugin\n\t\t\t'capability_type' => 'event',\n\t\t\t// without setting the map-meta-cap to true we would need to create our own custom logic for when the new capability is required. \n\t\t\t'map_meta_cap' => true,\n\t\t\t'has_archive' => true,\n\t\t\t// by default slug would be 'event' so override to 'events' instead\n\t\t\t'rewrite' => array('slug' => 'events'),\n\t\t\t// by default post types get title and editor, but NOT excerpt\n\t\t\t'supports' => array('title', 'editor', 'excerpt'),\n\t\t\t'public' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Events',\n\t\t\t\t'add_new_item' => 'Add New Event',\n\t\t\t\t'edit_item' => 'Edit Event',\n\t\t\t\t'all_items' => 'All Events',\n\t\t\t\t'singular_name' => 'Event'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-calendar'\t\t));\n\n\t\t// Custom Program Post Type\n\t\tregister_post_type('program', array(\n\t\t\t'show_in_rest' => true,\n\t\t\t'has_archive' => true,\n\t\t\t// by default slug would be 'program' so override to 'programs' instead\n\t\t\t'rewrite' => array('slug' => 'programs'),\n\t\t\t// by default post types get title and editor - for program we do NOT want editor as we are\n\t\t\t// using a custom field for the main body content\n\t\t\t'supports' => array('title'),\n\t\t\t'public' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Programs',\n\t\t\t\t'add_new_item' => 'Add New Program',\n\t\t\t\t'edit_item' => 'Edit Program',\n\t\t\t\t'all_items' => 'All Programs',\n\t\t\t\t'singular_name' => 'Program'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-awards'\t\t));\n\n\t\t// Custom Professor Post Type\n\t\tregister_post_type('professor', array(\n\t\t\t'show_in_rest' => true,\n\t\t\t// by default post types get title and editor - needed to add thumbnail for Professor image\n\t\t\t'supports' => array('title', 'editor', 'thumbnail'),\n\t\t\t'public' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Professors',\n\t\t\t\t'add_new_item' => 'Add New Professor',\n\t\t\t\t'edit_item' => 'Edit Professor',\n\t\t\t\t'all_items' => 'All Professors',\n\t\t\t\t'singular_name' => 'Professor'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-welcome-learn-more'\t\t));\n\n\t\t// Custom Campus Post Type\n\t\tregister_post_type('campus', array(\n\t\t\t'show_in_rest' => true,\n\t\t\t// Note: If you cannot see the Campuses Post type as Admin - then you need to grant permission in the Members Plugin\n\t\t\t'capability_type' => 'campus',\n\t\t\t'map_meta_cap' => true,\n\t\t\t// by default post types get title and editor - add excerpt as well\n\t\t\t'supports' => array('title', 'editor', 'excerpt'),\n\t\t\t// by default slug would be 'program' so override to 'programs' instead\n\t\t\t'rewrite' => array('slug' => 'campuses'),\n\t\t\t'public' => true,\n\t\t\t'has_archive' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Campuses',\n\t\t\t\t'add_new_item' => 'Add New Campus',\n\t\t\t\t'edit_item' => 'Edit Campus',\n\t\t\t\t'all_items' => 'All Campuses',\n\t\t\t\t'singular_name' => 'Campus'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-location-alt'\t\t));\n\n\t\t// Custom Note Post Type\n\t\tregister_post_type('note', array(\n\t\t\t'capability_type' => 'note',\n\t\t\t'map_meta_cap' => true,\n\t\t\t'show_in_rest' => true,\n\t\t\t// by default post types get title and editor\n\t\t\t'supports' => array('title', 'editor'),\n\t\t\t'public' => false,\n\t\t\t// Show admin dashboard UI?\n\t\t\t'show_ui' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Notes',\n\t\t\t\t'add_new_item' => 'Add New Note',\n\t\t\t\t'edit_item' => 'Edit Note',\n\t\t\t\t'all_items' => 'All Notes',\n\t\t\t\t'singular_name' => 'Note'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-welcome-write-blog'\t\t));\n\t\n\t\t// Custom LIKE Post Type\n\t\tregister_post_type('like', array(\n\t\t\t// by default post types get title and editor - just need title for like\n\t\t\t'supports' => array('title'),\n\t\t\t'public' => false,\n\t\t\t// Show admin dashboard UI?\n\t\t\t'show_ui' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Likes',\n\t\t\t\t'add_new_item' => 'Add New Like',\n\t\t\t\t'edit_item' => 'Edit Like',\n\t\t\t\t'all_items' => 'All Likes',\n\t\t\t\t'singular_name' => 'Like'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-heart'\t\t));\n\n\t\t// Custom Home Page Slide Post Type\n\t\tregister_post_type('homeslide', array(\n\t\t\t// by default slug would be 'event' so override to 'events' instead\n\t\t\t'rewrite' => array('slug' => 'homeslide'),\n\t\t\t// by default post types get title and editor - just need title ONLY\n\t\t\t'supports' => array('title'),\n\t\t\t'public' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Home Page Slides',\n\t\t\t\t'add_new_item' => 'Add New Home Page Slide',\n\t\t\t\t'edit_item' => 'Edit Home Page Slide',\n\t\t\t\t'all_items' => 'All Home Page Slides',\n\t\t\t\t'singular_name' => 'Home Page Slide'\n\t\t\t),\n\t\t\t// Icon for the WP dashboard\n\t\t\t'menu_icon' => 'dashicons-slides'\t\t));\n\t}", "public function register_custom_post_type() {\n $labels = array (\n 'name' => __('Custom', self::$plugin_obj->class_name ),\n 'singular_name' => __('item', self::$plugin_obj->class_name ),\n 'add_new' => __('new item', self::$plugin_obj->class_name ),\n 'add_new_item' => __('new item', self::$plugin_obj->class_name ),\n 'new_item' => __('new item', self::$plugin_obj->class_name ),\n 'edit' => __('edit item', self::$plugin_obj->class_name ),\n 'edit_item' => __('edit item', self::$plugin_obj->class_name ),\n 'view' => __('view item', self::$plugin_obj->class_name ),\n 'view_item' => __('view item', self::$plugin_obj->class_name ),\n 'search_items' => __('search item', self::$plugin_obj->class_name ),\n 'not_found' => __('no item found', self::$plugin_obj->class_name ),\n 'not_found_in_trash' => __('no item in trash', self::$plugin_obj->class_name ),\n 'parent' => __('parent item', self::$plugin_obj->class_name )\n );\n\n $args = array(\n 'labels' => $labels,\n 'public' => TRUE,\n 'publicly_queryable' => TRUE,\n 'show_ui' => TRUE,\n 'show_in_menu' => TRUE,\n 'query_var' => TRUE,\n 'capability_type' => 'page',\n 'has_archive' => TRUE,\n 'hierarchical' => TRUE,\n 'exclude_from_search' => FALSE,\n 'menu_position' => 100 ,\n 'supports' => array('title','editor','excerpt','custom-fields','revisions','thumbnail','page-attributes'),\n 'taxonomies' => array('category','post_tag')\n );\n\n register_post_type('custom', $args);\n }", "function wpbm_register_post_type(){\n include('inc/admin/register/wpbm-register-post.php');\n register_post_type( 'WP Blog Manager', $args );\n }", "public function register_post_types() {\n\n\t}", "public function register_qmgt_custom_post() {\r\n\t\trequire_once( QMGT_ROOT . '/qmgt-custom-post-type.php');\r\n\t}", "function generate_post_meta()\n {\n $post_types = apply_filters('generate_entry_meta_post_types', array(\n 'post',\n ));\n\n if (in_array(get_post_type(), $post_types)): ?>\n<div class=\"entry-meta\">\n <?php generate_posted_on();?>\n</div><!-- .entry-meta -->\n<?php endif;\n }", "function ks_include_custom_acf_field_types() {\n include_once(get_template_directory() . '/includes/acf-custom/fields/acf-gf-select.php'); // add Gravity Form field type\n}", "function ydd_post_type() {\r\n\r\n $labels = array(\r\n 'name' => _x( 'YDD', 'Post Type General Name', 'text_domain' ),\r\n\t\t'singular_name' => _x( 'Yacht Design', 'Post Type Singular Name', 'text_domain' ),\r\n\t\t'menu_name' => __( 'Yacht Design', 'text_domain' ),\r\n\t\t'parent_item_colon' => __( 'Parent Design:', 'text_domain' ),\r\n\t\t'all_items' => __( 'All Yacht Designs', 'text_domain' ),\r\n\t\t'view_item' => __( 'View Yacht Design', 'text_domain' ),\r\n\t\t'add_new_item' => __( 'Add Yacht Design', 'text_domain' ),\r\n\t\t'add_new' => __( 'Add Yacht Design', 'text_domain' ),\r\n\t\t'edit_item' => __( 'Edit Yacht Design', 'text_domain' ),\r\n\t\t'update_item' => __( 'Update Yacht Design', 'text_domain' ),\r\n\t\t'search_items' => __( 'Search YDD', 'text_domain' ),\r\n\t\t'not_found' => __( 'Yacht Design Not found in Register', 'text_domain' ),\r\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\r\n\t);\r\n\t$capabilities = array(\r\n\t\t'edit_post' => 'edit_ydd',\r\n\t\t'read_post' => 'read_ydd',\r\n\t\t'delete_post' => 'delete_ydd',\r\n\t\t'edit_posts' => 'edit_ydd',\r\n\t\t'edit_others_posts' => 'edit_others_ydd',\r\n\t\t'publish_posts' => 'publish_ydd',\r\n\t\t'read_private_posts' => 'read_private_ydd',\r\n\t);\r\n\t$args = array(\r\n\t\t'label' => __( 'ydd', 'text_domain' ),\r\n\t\t'description' => __( 'Yacht Design Database', 'text_domain' ),\r\n\t\t'labels' => $labels,\r\n\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions',),\r\n\t\t'hierarchical' => false,\r\n\t\t'public' => true,\r\n\t\t'show_ui' => true,\r\n\t\t'show_in_menu' => true,\r\n\t\t'show_in_nav_menus' => true,\r\n\t\t'show_in_admin_bar' => true,\r\n\t\t'menu_position' => 5,\r\n\t\t'can_export' => true,\r\n\t\t'has_archive' => true,\r\n\t\t'exclude_from_search' => false,\r\n\t\t'publicly_queryable' => true,\r\n\t 'capabilities' => $capabilities,\r\n\t);\r\n\tregister_post_type( 'ydd', $args );\r\n \r\n add_ydd_capabilities_to_role( 'curator' );\r\n add_ydd_capabilities_to_role( 'administrator' );\r\n add_ydd_capabilities_to_role( 'nmmc_admin' );\r\n}", "function farmhouse_post_type_support() {\n\n $post_type_supports = genesis_get_config( 'post-type-supports' );\n\n foreach ( $post_type_supports as $post_type => $args ) {\n add_post_type_support( $post_type, $args );\n }\n\n}", "function isf_create_custom_post_types() {\n\n\t// Maps.\n\tregister_post_type(\n\t\tMAP_POST_TYPE,\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Maps',\n\t\t\t\t'singular_name' => 'Map',\n\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t'add_new_item' => 'Add New Map',\n\t\t\t\t'edit_item' => 'Edit Map',\n\t\t\t\t'new_item' => 'New Map',\n\t\t\t\t'view_item' => 'View Map',\n\t\t\t\t'view_items' => 'View Maps',\n\t\t\t\t'search_items' => 'Search Maps',\n\t\t\t\t'not_found' => 'No Maps Found',\n\t\t\t\t'not_found_in_trash' => 'No Maps found in Trash',\n\t\t\t\t'all_items' => 'All Maps',\n\t\t\t\t'archives' => 'Map Archives',\n\t\t\t\t'attributes' => 'Map Attributes',\n\t\t\t\t'insert_into_item' => 'Insert into Map',\n\t\t\t\t'uploaded_to_this_item' => 'Uploaded to this Map',\n\t\t\t),\n\t\t\t'public' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'menu_icon' => 'dashicons-location-alt',\n\t\t\t'supports' => array( 'title' ),\n\t\t)\n\t);\n\n\t// Map Groups.\n\tregister_post_type(\n\t\tMAP_GROUP_POST_TYPE,\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Map Groups',\n\t\t\t\t'singular_name' => 'Map Group',\n\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t'add_new_item' => 'Add New Map Group',\n\t\t\t\t'edit_item' => 'Edit Map Group',\n\t\t\t\t'new_item' => 'New Map Group',\n\t\t\t\t'view_item' => 'View Map Group',\n\t\t\t\t'view_items' => 'View Map Groups',\n\t\t\t\t'search_items' => 'Search Map Groups',\n\t\t\t\t'not_found' => 'No Map Groups Found',\n\t\t\t\t'not_found_in_trash' => 'No Map Groups found in Trash',\n\t\t\t\t'all_items' => 'All Map Groups',\n\t\t\t\t'archives' => 'Map Group Archives',\n\t\t\t\t'attributes' => 'Map Group Attributes',\n\t\t\t\t'insert_into_item' => 'Insert into Map Group',\n\t\t\t\t'uploaded_to_this_item' => 'Uploaded to this Map Group',\n\t\t\t),\n\t\t\t'public' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'menu_icon' => 'dashicons-arrow-right',\n\t\t\t'supports' => array( 'title' ),\n\t\t)\n\t);\n\n\t// Proposal Eras.\n\tregister_post_type(\n\t\tPROPOSAL_ERA_POST_TYPE,\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Proposal Eras',\n\t\t\t\t'singular_name' => 'Proposal Era',\n\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t'add_new_item' => 'Add New Proposal Era',\n\t\t\t\t'edit_item' => 'Edit Proposal Era',\n\t\t\t\t'new_item' => 'New Proposal Era',\n\t\t\t\t'view_item' => 'View Proposal Era',\n\t\t\t\t'view_items' => 'View Proposal Eras',\n\t\t\t\t'search_items' => 'Search Proposal Eras',\n\t\t\t\t'not_found' => 'No Proposal Eras Found',\n\t\t\t\t'not_found_in_trash' => 'No Proposal Eras found in Trash',\n\t\t\t\t'all_items' => 'All Proposal Eras',\n\t\t\t\t'archives' => 'Proposal Era Archives',\n\t\t\t\t'attributes' => 'Proposal Era Attributes',\n\t\t\t\t'insert_into_item' => 'Insert into Proposal Era',\n\t\t\t\t'uploaded_to_this_item' => 'Uploaded to this Proposal Era',\n\t\t\t),\n\t\t\t'public' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'menu_icon' => 'dashicons-menu-alt',\n\t\t\t'supports' => array( 'title' ),\n\t\t)\n\t);\n\n\t// Narratives.\n\tregister_post_type(\n\t\tNARRATIVE_POST_TYPE,\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Narratives',\n\t\t\t\t'singular_name' => 'Narrative',\n\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t'add_new_item' => 'Add New Narrative',\n\t\t\t\t'edit_item' => 'Edit Narrative',\n\t\t\t\t'new_item' => 'New Narrative',\n\t\t\t\t'view_item' => 'View Narrative',\n\t\t\t\t'view_items' => 'View Narratives',\n\t\t\t\t'search_items' => 'Search Narratives',\n\t\t\t\t'not_found' => 'No Narratives Found',\n\t\t\t\t'not_found_in_trash' => 'No Narratives found in Trash',\n\t\t\t\t'all_items' => 'All Narratives',\n\t\t\t\t'archives' => 'Narrative Archives',\n\t\t\t\t'attributes' => 'Narrative Attributes',\n\t\t\t\t'insert_into_item' => 'Insert into Narrative',\n\t\t\t\t'uploaded_to_this_item' => 'Uploaded to this Narrative',\n\t\t\t),\n\t\t\t'public' => true,\n\t\t\t'menu_icon' => 'dashicons-book-alt',\n\t\t\t'rewrite' => array( 'slug' => 'narratives' ),\n\t\t)\n\t);\n\n\t// Feedback.\n\tregister_post_type(\n\t\tFEEDBACK_POST_TYPE,\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => 'Feedback',\n\t\t\t\t'singular_name' => 'Feedback',\n\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t'add_new_item' => 'Add New Feedback',\n\t\t\t\t'edit_item' => 'Feedback',\n\t\t\t\t'new_item' => 'New Feedback',\n\t\t\t\t'view_item' => 'View Feedback',\n\t\t\t\t'view_items' => 'View Feedback',\n\t\t\t\t'search_items' => 'Search Feedback',\n\t\t\t\t'not_found' => 'No Feedback Found',\n\t\t\t\t'not_found_in_trash' => 'No Feedback found in Trash',\n\t\t\t\t'all_items' => 'All Feedback',\n\t\t\t\t'archives' => 'Feedback Archives',\n\t\t\t\t'attributes' => 'Feedback Attributes',\n\t\t\t\t'insert_into_item' => 'Insert into Feedback',\n\t\t\t\t'uploaded_to_this_item' => 'Uploaded to this Feedback',\n\t\t\t),\n\t\t\t'public' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'menu_icon' => 'dashicons-testimonial',\n\t\t\t'supports' => false,\n\t\t\t'map_meta_cap' => true,\n\t\t\t'capabilities' => array(\n\t\t\t\t'create_posts' => false,\n\t\t\t),\n\t\t)\n\t);\n\n}", "function create_custom_post_types(){\n\t/**\n\t * Arguments for company labels\n\t */\n\t$args_labels_company = array(\n\t\t'name' => __('Companies', 'threedee-expo'),\n\t\t'singular_name' => __('Company', 'threedee-expo'),\n\t\t'add_new_item' => __('Add New Company', 'threedee-expo'),\n\t\t'edit_item' => __('Edit Company', 'threedee-expo'),\n\t\t'new_item' => __('New Company', 'threedee-expo'),\n\t\t'view_item' => __('View Company', 'threedee-expo'),\n\t\t'search_items' => __('Search Companies', 'threedee-expo'),\n\t\t'not_found' => __('No companies found', 'threedee-expo'),\n\t\t'not_found_in_trash'=> __('No companies found in Trash', 'threedee-expo'),\n\t\t'all_items' => __('All Companies', 'threedee-expo'),\n\t\t'archives' => __('Company Archives', 'threedee-expo'),\n\t);\n\t/**\n\t * Arguments for company capabilities\n\t */\n\t$args_capabilities_company = array(\n\t\t'publish_posts' => 'publish_companies',\n\t\t'edit_posts' => 'edit_companies',\n\t\t'edit_others_posts' => 'edit_others_companies',\n\t\t'delete_posts' => 'delete_companies',\n\t\t'delete_others_posts' => 'delete_others_companies',\n\t\t'read_private_posts' => 'read_private_companies',\n\t\t'edit_post' => 'edit_company',\n\t\t'delete_post' => 'delete_company',\n\t\t'read_post' => 'read_company',\n\t);\n\t/**\n\t * Arguments for register companies\n\t */\n\t$args_company = array(\n\t\t'labels' => $args_labels_company,\n\t\t'description' => 'Companies.',\n\t\t'public' => true,\n\t\t'has_archive' => true,\n\t\t'rewrite'\t => array('slug' => 'company'),\n\t\t'menu_icon' => 'dashicons-businessman',\n\t\t'capability_type' => 'companies',\n\t\t'capabilities' => $args_capabilities_company,\n\t\t'map_meta_cap' => true,\n\t\t'supports' => array('author','title')\n\t);\n\t/**\n\t * Arguments for company labels\n\t */\n\t$args_labels_group_of_companies = array(\n\t\t'name' => __('Group of Companies', 'threedee-expo'),\n\t\t'singular_name' => __('Group of Company', 'threedee-expo'),\n\t\t'add_new_item' => __('Add New Group of Companies', 'threedee-expo'),\n\t\t'edit_item' => __('Edit Group of Companies', 'threedee-expo'),\n\t\t'new_item' => __('New Group of Companies', 'threedee-expo'),\n\t\t'view_item' => __('View Group of Companies', 'threedee-expo'),\n\t\t'search_items' => __('Search Group of Companies', 'threedee-expo'),\n\t\t'not_found' => __('No Group of Companies found', 'threedee-expo'),\n\t\t'not_found_in_trash'=> __('No Group of Companies found in Trash', 'threedee-expo'),\n\t\t'all_items' => __('All Group of Companies', 'threedee-expo'),\n\t\t'archives' => __('Group of Companies Archives', 'threedee-expo'),\n\t);\n\t/**\n\t * Arguments for company capabilities\n\t */\n\t$args_capabilities_group_of_companies = array(\n\t\t'publish_posts' => 'publish_group_of_companies',\n\t\t'edit_posts' => 'edit_group_of_companies',\n\t\t'edit_others_posts' => 'edit_others_group_of_companies',\n\t\t'delete_posts' => 'delete_group_of_companies',\n\t\t'delete_others_posts' => 'delete_others_group_of_companies',\n\t\t'read_private_posts' => 'read_private_group_of_companies',\n\t\t'edit_post' => 'edit_group_of_company',\n\t\t'delete_post' => 'delete_group_of_company',\n\t\t'read_post' => 'read_group_of_company',\n\t);\n\t/**\n\t * Arguments for register companies\n\t */\n\t$args_group_of_companies = array(\n\t\t'labels' => $args_labels_group_of_companies,\n\t\t'description' => 'Group of Companies.',\n\t\t'public' => true,\n\t\t'has_archive' => true,\n\t\t'rewrite'\t => array('slug' => 'group_of_companies'),\n\t\t'menu_icon' => 'dashicons-groups',\n\t\t'capability_type' => 'group_of_companies',\n\t\t'capabilities' => $args_capabilities_group_of_companies,\n\t\t'map_meta_cap' => true,\n\t\t'supports' => array('author','title')\n\t);\n\tregister_post_type( 'companies', $args_company);\n\tregister_post_type( 'group_of_companies',$args_group_of_companies);\n}", "private function post_types() {\n\t\t$this->section_data['general_post_types'] = array(\n\t\t\t'name' \t\t\t\t\t=> 'general_post_types',\n\t\t\t'label' \t\t\t\t=> __( 'Post types', 'fixedtoc' ),\n\t\t\t'default' \t\t\t=> array( 'post', 'page' ),\n\t\t\t'type' \t\t\t\t\t=> 'multi_checkbox',\n\t\t\t'choices'\t\t\t\t=> $this->obj_field_data->get_posttype_choices(),\n\t\t\t'des'\t\t\t\t\t\t=> __( 'Check the post types to be applied. Multiple choice.', 'fixedtoc' )\n\t\t);\n\t}", "function custom_post_type() {\n\n// Set UI labels for Custom Post Type\n\t$labels = array(\n\t\t'name' => _x( 'Engagements', 'Post Type General Name'),\n\t\t'singular_name' => _x( 'Engagement', 'Post Type Singular Name'),\n\t\t'menu_name' => __( 'Engagements'),\n\t\t'all_items' => __( 'All Engagements'),\n\t\t'view_item' => __( 'View Engagement'),\n\t\t'add_new_item' => __( 'Add New Engagement'),\n\t\t'add_new' => __( 'Add New'),\n\t\t'edit_item' => __( 'Edit Engagement'),\n\t\t'update_item' => __( 'Update Engagement')\n\n\t\t\n\t);\n\t\n// Set other options for Custom Post Type\n\t\n\t$args = array(\n\t\t'label' => __( 'engagements'),\n\t\t'labels' => $labels,\n\t\t// Features this CPT supports in Post Editor\n\t\t'supports' => array( 'title', 'editor'),\n \n\t\t/* A hierarchical CPT is like Pages and can have\n\t\t* Parent and child items. A non-hierarchical CPT\n\t\t* is like Posts.\n\t\t*/\t\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_nav_menus' => false,\n\t\t'show_in_admin_bar' => true,\n\t\t'menu_position' => 5,\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => true,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'post',\n 'rewrite' => array(\"slug\" => \"engagements\"),\n 'register_meta_box_cb' => 'add_engagements_metaboxes' // function hooking up metaboxes\n\t);\n\t\n\t// Registering your Custom Post Type\n\tregister_post_type( 'engagements', $args );\n\n}", "abstract protected function post_type();", "function acf_is_field_type($name = '')\n{\n}", "public function register_meta_fields() {\n\n\t\t$args = array(\n\t\t\t'type' => 'boolean',\n\t\t\t'description' => 'Has this post been published to stage',\n\t\t\t'single' => true,\n\t\t\t'show_in_rest' => true,\n\t\t);\n\n\t\tregister_meta( 'post', 'lbn_published_stage', $args );\n\n\t\t$args['description'] = 'Has this post been published to production';\n\t\tregister_meta( 'post', 'lbn_published_production', $args );\n\t}", "function function_callback_post_types()\n\t{\n\t\t$all_post_registered = get_post_types();\n\t\t#Setear a todos agregando una imagen destacada\n\t\tadd_theme_support('post-thumbnails', $all_post_registered );\n\t}", "public function installCustomPostTypes()\n {\n $this->installCustomPostTypesFromJSON();\n $this->installCustomPostTypesFromPHP();\n $this->installMultipleCustomPostTypes();\n }", "function nsbr_post_type() {\r\n\r\n $labels = array(\r\n\t\t'name' => _x( 'NSBR', 'Post Type General Name', 'text_domain' ),\r\n\t\t'singular_name' => _x( 'Boat', 'Post Type Singular Name', 'text_domain' ),\r\n\t\t'menu_name' => __( 'NSBR', 'text_domain' ),\r\n\t\t'parent_item_colon' => __( 'Parent Boat:', 'text_domain' ),\r\n\t\t'all_items' => __( 'All Small Boat Registrations', 'text_domain' ),\r\n\t\t'view_item' => __( 'View Boat Registration', 'text_domain' ),\r\n\t\t'add_new_item' => __( 'Add Small Boat Registration', 'text_domain' ),\r\n\t\t'add_new' => __( 'Add Small Boat Registration', 'text_domain' ),\r\n\t\t'edit_item' => __( 'Edit Boat Registration', 'text_domain' ),\r\n\t\t'update_item' => __( 'Update Boat Registration', 'text_domain' ),\r\n\t\t'search_items' => __( 'Search NSBR', 'text_domain' ),\r\n\t\t'not_found' => __( 'Boat Not found in Register', 'text_domain' ),\r\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\r\n\t);\r\n\t$capabilities = array(\r\n\t\t'edit_post' => 'edit_nsbr',\r\n\t\t'read_post' => 'read_nsbr',\r\n\t\t'delete_post' => 'delete_nsbr',\r\n\t\t'edit_posts' => 'edit_nsbr',\r\n\t\t'edit_others_posts' => 'edit_others_nsbr',\r\n\t\t'publish_posts' => 'publish_nsbr',\r\n\t\t'read_private_posts' => 'read_private_nsbr',\r\n\t);\r\n\t$args = array(\r\n\t\t'label' => __( 'nsbr', 'text_domain' ),\r\n\t\t'description' => __( 'National Small Boat Register', 'text_domain' ),\r\n\t\t'labels' => $labels,\r\n\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions',),\r\n\t\t'hierarchical' => false,\r\n\t\t'public' => true,\r\n\t\t'show_ui' => true,\r\n\t\t'show_in_menu' => true,\r\n\t\t'show_in_nav_menus' => true,\r\n\t\t'show_in_admin_bar' => true,\r\n\t\t'menu_position' => 5,\r\n\t\t'can_export' => true,\r\n\t\t'has_archive' => true,\r\n\t\t'exclude_from_search' => false,\r\n\t\t'publicly_queryable' => true,\r\n\t 'capabilities' => $capabilities,\r\n\t);\r\n\tregister_post_type( 'nsbr', $args );\r\n\t\r\n\tadd_role('nsbr_manager', 'NSBR Manager', array(\r\n 'edit_nsbr' => true,\r\n 'edit_others_nsbr' => true,\r\n 'read_nsbr' => true,\r\n 'publish_nsbr' => true,\r\n 'read_private_nsbr' => true,\r\n 'delete_nsbr' => true,\r\n 'read'=> true\r\n ));\r\n \r\n\t add_nsbr_capabilities_to_role( 'curator' );\r\n add_nsbr_capabilities_to_role( 'administrator' );\r\n add_nsbr_capabilities_to_role( 'nmmc_admin' );\r\n}", "function rng_create_post_type() {\n\n\t$labels = array(\n\t\t'name' => _x( 'Post Types Plural', 'Post Type General Name', 'translate_name' ),\n\t\t'singular_name' => _x( 'Post Type Singular', 'Post Type Singular Name', 'translate_name' ),\n\t\t'menu_name' => __( 'Post Types', 'translate_name' ),\n\t\t'name_admin_bar' => __( 'Post Type', 'translate_name' ),\n\t\t'archives' => __( 'Item Archives', 'translate_name' ),\n\t\t'attributes' => __( 'Item Attributes', 'translate_name' ),\n\t\t'parent_item_colon' => __( 'Parent Item:', 'translate_name' ),\n\t\t'all_items' => __( 'All Items', 'translate_name' ),\n\t\t'add_new_item' => __( 'Add New Item', 'translate_name' ),\n\t\t'add_new' => __( 'Add New', 'translate_name' ),\n\t\t'new_item' => __( 'New Item', 'translate_name' ),\n\t\t'edit_item' => __( 'Edit Item', 'translate_name' ),\n\t\t'update_item' => __( 'Update Item', 'translate_name' ),\n\t\t'view_item' => __( 'View Item', 'translate_name' ),\n\t\t'view_items' => __( 'View Items', 'translate_name' ),\n\t\t'search_items' => __( 'Search Item', 'translate_name' ),\n\t\t'not_found' => __( 'Not found', 'translate_name' ),\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'translate_name' ),\n\t\t'featured_image' => __( 'Featured Image', 'translate_name' ),\n\t\t'set_featured_image' => __( 'Set featured image', 'translate_name' ),\n\t\t'remove_featured_image' => __( 'Remove featured image', 'translate_name' ),\n\t\t'use_featured_image' => __( 'Use as featured image', 'translate_name' ),\n\t\t'insert_into_item' => __( 'Insert into item', 'translate_name' ),\n\t\t'uploaded_to_this_item' => __( 'Uploaded to this item', 'translate_name' ),\n\t\t'items_list' => __( 'Items list', 'translate_name' ),\n\t\t'items_list_navigation' => __( 'Items list navigation', 'translate_name' ),\n\t\t'filter_items_list' => __( 'Filter items list', 'translate_name' ),\n\t);\n\t$args = array(\n 'public' => true,\n\t\t'label' => __( 'Post Type Singular', 'translate_name' ),\n\t\t'description' => __( 'Post Type Description', 'translate_name' ),\n 'labels' => $labels,\n 'exclude_from_search' => true,\n 'publicly_queryable' => true,\n 'show_ui' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_in_menu'\t\t\t=> true,\n\t\t'show_in_admin_bar'\t\t=> true,\n\t\t'menu_position'\t\t\t=> 5,\n\t\t// 'menu_icon' \t\t\t=> get_bloginfo('template_directory') . '/images/portfolio-icon.png',\n\t\t'menu_icon'\t\t\t\t=> 'dashicon-groups',\n\t\t'has_archive'\t\t\t=> true,\n\t\t'capability_type'\t\t=> array('book','books'),\n\t\t'capabilities' \t\t\t=> array(\n\t\t\t'edit_post' => 'edit_book', \n\t\t\t'read_post' => 'read_book', \n\t\t\t'delete_post' => 'delete_book', \n\t\t\t'edit_posts' => 'edit_books', \n\t\t\t'edit_others_posts' => 'edit_others_books', \n\t\t\t'publish_posts' => 'publish_books', \n\t\t\t'read_private_posts' => 'read_private_books', \n\t\t\t'create_posts' => 'edit_books', \n\t\t),\n\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'page-attributes', 'post-formats' ),\n\t\t'taxonomies' => array( 'category', 'post_tag' ),\n\t\t'hierarchical' => true,\n\t);\n\tregister_post_type( 'book', $args );\n\n}", "function tcf_init() {\n require_once( 'library/custom-post-type.php' );\n\n // launching operation cleanup\n add_action( 'init', 'tcf_head_cleanup' );\n // A better title\n add_filter( 'wp_title', 'rw_title', 10, 3 );\n // remove WP version from RSS\n add_filter( 'the_generator', 'tcf_rss_version' );\n // remove pesky injected css for recent comments widget\n add_filter( 'wp_head', 'remove_wp_widget_recent_comments_style', 1 );\n // clean up comment styles in the head\n add_action( 'wp_head', 'remove_recent_comments_style', 1 );\n // clean up gallery output in wp\n add_filter( 'gallery_style', 'tcf_gallery_style' );\n\n // enqueue base scripts and styles\n add_action( 'wp_enqueue_scripts', 'tcf_scripts_and_styles', 800 );\n add_action( 'wp_enqueue_scripts', 'template_scripts_and_styles', 999 );\n // ie conditional wrapper\n\n // launching this stuff after theme setup\n tcf_theme_support();\n\n // adding sidebars to Wordpress (these are created in functions.php)\n add_action( 'widgets_init', 'tcf_register_sidebars' );\n\n // cleaning up random code around images\n add_filter( 'the_content', 'filter_ptags_on_images' );\n // cleaning up excerpt\n add_filter( 'excerpt_more', 'tcf_excerpt_more' );\n\n}", "function gndt_register_cpt_publishing() {\n register_post_type('gndt_research',\n array(\n 'labels' => array(\n 'name' => __('Research', 'textdomain'),\n 'singular_name' => __('Research', 'textdomain'),\n ),\n 'public' => true,\n 'has_archive' => true,\n\t\t \t\t'show_in_rest' => true,\n 'supports' => ['editor'], /* allow gutenberg editor for this post type */\n 'capability_type' => 'gndt_researchposttype',\n\t\t\t \t'capabilities' => array(\n\t\t\t\t\t 'publish_posts' => 'gndt_publish_researchposttypes',\n\t\t\t\t\t 'edit_posts' => 'gndt_edit_researchposttypes',\n\t\t\t\t\t 'edit_others_posts' => 'gndt_edit_others_researchposttypes',\n\t\t\t\t\t 'read_private_posts' => 'gndt_read_private_researchposttypes',\n\t\t\t\t\t 'edit_post' => 'gndt_edit_researchposttype',\n\t\t\t\t\t 'delete_post' => 'gndt_delete_researchposttype',\n\t\t\t\t\t 'read_post' => 'gndt_read_researchposttype',\n\t\t\t\t ),\n )\n );\n\n\tadd_post_type_support( 'gndt_research', 'author' ); //add author support to custom post type \n}", "function acf_get_field_type($name)\n{\n}", "public function register_post_types() {\n require_once('includes/post-types.php');\n }", "function custom_post_type_careers() {\n\t$labels = array(\n\t\t'name' => _x( 'Careers', 'Post Type General Name', 'leasepilot' ),\n\t\t'singular_name' => _x( 'Job', 'Post Type Singular Name', 'leasepilot' ),\n\t\t'menu_name' => __( 'Jobs', 'leasepilot' ),\n\t\t'name_admin_bar' => __( 'Post Type', 'leasepilot' ),\n\t\t'archives' => __( 'Jobs Archives', 'leasepilot' ),\n\t\t'attributes' => __( 'Job Attributes', 'leasepilot' ),\n\t\t'parent_item_colon' => __( 'Parent Job:', 'leasepilot' ),\n\t\t'all_items' => __( 'All Jobs', 'leasepilot' ),\n\t\t'add_new_item' => __( 'Add New Job', 'leasepilot' ),\n\t\t'add_new' => __( 'Add New', 'leasepilot' ),\n\t\t'new_item' => __( 'New Job', 'leasepilot' ),\n\t\t'edit_item' => __( 'Edit Job', 'leasepilot' ),\n\t\t'update_item' => __( 'Update Job', 'leasepilot' ),\n\t\t'view_item' => __( 'View Job', 'leasepilot' ),\n\t\t'view_items' => __( 'View Jobs', 'leasepilot' ),\n\t\t'search_items' => __( 'Search Jobs', 'leasepilot' ),\n\t\t'not_found' => __( 'Not found', 'leasepilot' ),\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'leasepilot' ),\n\t\t'featured_image' => __( 'Featured Image', 'leasepilot' ),\n\t\t'set_featured_image' => __( 'Set featured image', 'leasepilot' ),\n\t\t'remove_featured_image' => __( 'Remove featured image', 'leasepilot' ),\n\t\t'use_featured_image' => __( 'Use as featured image', 'leasepilot' ),\n\t\t'insert_into_item' => __( 'Insert into job', 'leasepilot' ),\n\t\t'uploaded_to_this_item' => __( 'Uploaded to this job', 'leasepilot' ),\n\t\t'items_list' => __( 'Jobs list', 'leasepilot' ),\n\t\t'items_list_navigation' => __( 'Jobs list navigation', 'leasepilot' ),\n\t\t'filter_items_list' => __( 'Filter Jobs list', 'leasepilot' ),\n\t);\n\t$args = array(\n\t\t'label' => __( 'Job', 'leasepilot' ),\n\t\t'description' => __( 'Job Description', 'leasepilot' ),\n\t\t'labels' => $labels,\n\t\t'supports' => array( 'title', 'thumbnail', 'editor', 'excerpt' ),\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => 'dashicons-businessman',\n\t\t'show_in_admin_bar' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'page',\n\t\t'rewrite' => array( 'with_front' => false ), // This needs to be false so that custom Permalinks settings won't effect this permalink.\n\t);\n\tregister_post_type( 'careers', $args );\n}", "function my_custom_post_registry() {\n\t$registry_labels = array(\n\t\t'name' => 'Registrations',\n\t\t'singular_name' => 'Cozmeena Shawl Registration',\n\t\t'add_new' => 'Add New',\n\t\t'all_items' => 'All Registrations',\n\t\t'add_new_item' => 'Add New Registration',\n\t\t'edit_item' => 'Edit Registration',\n\t\t'new_item' => 'New Registration',\n\t\t'view_item' => 'View Registration',\n\t\t'search_items' => 'Search Registrations',\n\t\t'not_found' => 'No Registrations found',\n\t\t'not_found_in_trash' => 'No Registrations found in trash',\n\t\t'parent_item_colon' => '',\n\t\t'menu_name' => 'Cozmeena Shawl Registrations'\n\t);\n\t$registry_args = array(\n\t\t'labels' => $registry_labels,\n\t\t'description' => \"The International Cozmeena Registry is the official record of Cozmeena Shawls\",\n\t\t'public' => true,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => '',\n\t\t'supports' => array('title','author', 'editor','thumbnail'),\n\t\t'capability_type' => 'coz_registry', // need to assign capabilities via plugin\n\t\t'map_meta_cap' => true,\n\t\t'has_archive' => true,\n\t); \n\tregister_post_type('coz_registry',$registry_args);\n}", "function wpcp_custom_post_type()\n{\n register_post_type('wpcp_server',\n array(\n 'labels' => array(\n 'name' => __('Servers', 'textdomain'),\n 'singular_name' => __('Server', 'textdomain'),\n ),\n 'public' => true,\n 'has_archive' => false,\n 'delete_with_user' => false,\n \"supports\" => array(\"customer\", \"author\"),\n 'menu_icon' => 'dashicons-cloud'\n )\n );\n}", "public static function register_post_type() {\n\t\tregister_post_type( 'drsa_ad', self::arguments() );\n\t}", "function register_content_type( $singular, $plural, $type, $ns = 'theme' )\n{\n // Hook into the 'init' action\n add_action( 'init', function() use ( $singular, $plural, $type, $ns ) {\n\n $labels = [\n 'name' => _x( $plural, 'Post Type General Name', $ns ),\n 'singular_name' => _x( $singular, 'Post Type Singular Name', $ns ),\n 'menu_name' => __( $plural, $ns ),\n 'parent_item_colon' => __( 'Parent ' . $singular . ':', $ns ),\n 'all_items' => __( 'All ' . $plural, $ns ),\n 'view_item' => __( 'View ' . $singular, $ns ),\n 'add_new_item' => __( 'Add New ' . $singular, $ns ),\n 'add_new' => __( 'Add New', $ns ),\n 'edit_item' => __( 'Edit ' . $singular, $ns ),\n 'update_item' => __( 'Update ' . $singular, $ns ),\n 'search_items' => __( 'Search ' . $plural, $ns ),\n 'not_found' => __( 'Not found', $ns ),\n 'not_found_in_trash' => __( 'Not found in Trash', $ns ),\n ];\n $args = [\n 'label' => __( $singular, $ns ),\n 'description' => __( $plural, $ns ),\n 'labels' => $labels,\n 'supports' => [ 'title', 'editor', 'custom-fields', 'thumbnail' ],\n 'taxonomies' => [ 'category', 'post_tag' ],\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n ];\n register_post_type( $type, $args );\n\n }, 0 );\n}", "public function register_post_type() {\n\t\tadd_action( 'init', array( $this, 'post_registration_callback' ), 0, 0 );\n\t}", "function create_volunteer_custom_post() {\n register_post_type( 'volunteers',\n array(\n 'labels' => array(\n 'name' => __( 'Board Members' ),\n 'singular_name' => __( 'Board Member' ),\n ),\n 'public' => true,\n 'has_archive' => true,\n 'supports' => array(\n 'title',\n 'editor',\n 'thumbnail',\n 'custom-fields'\n )\n ));\n}", "function kstHelpWordpressMisc_customFieldsAndMetaBoxes() {\n ?>\n <p>\n Among the many fabulous but too little used features of WordPress includes\n custom fields. Custom fields are generic form fields below the text editor\n on posts and pages (and custom post types) that allow theme and plugin\n developers the ability to add unique functionality to posts and pages that\n you have control over per post/page.\n </p>\n <p>\n Examples include changing a quote or content box in the header or sidebar\n on a per page basis, embedding media, and adding extra meta-type information to\n display about posts such as \"duration\", \"citations\", \"special guests\", or\n whatever the theme or plugin developer offered.\n </p>\n <p>\n If your theme includes such things hopefully they will have added a help\n entry for you to learn how to use them.\n </p>\n <p>\n The theme or plugin developer may have alternatively created\n \"metaboxes\" that appear in place of the \"generic custom fields\". A metabox\n is a custom mini-form that explicitly tells the contributor what data they\n can enter.\n </p>\n <?php\n}", "function create_post_type() {\n\n // register external_post as a Custom Post Type\n register_post_type( 'external_post', \n array( \n 'labels' => array( \n 'name' => __('External Posts'), \n 'singular_name' => __('External Post') \n ),\n 'public' => true,\n 'menu_position' => 5,\n 'supports' => array('title', 'excerpt'),\n 'rewrite' => array('slug' => 'external','with_front' => false) \n ) \n ); \n\n // connect external_post to category taxonomy\n register_taxonomy_for_object_type('category', 'external_post');\n register_taxonomy_for_object_type('post_tag', 'external_post');\n\n\n // register wp_tool as a Custom Post Type\n register_post_type('wp_tool',\n array( \n 'labels' => array( \n 'name' => __('WordPress Tools'), \n 'singular_name' => __('WordPress Tool') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'author', 'editor', 'excerpt', 'thumbnail', 'post-formats', 'revisions', 'meta_info'),\n 'rewrite' => array('slug' => 'tool','with_front' => false) \n ) \n );\n\n // connect wp_tool to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'wp_tool');\n register_taxonomy_for_object_type('category', 'wp_tool');\n\n\n // reregister default post so we can set a custom slug\n register_post_type('post', array(\n 'labels' => array(\n 'name_admin_bar' => _x('Post', 'add new on admin bar' ),\n ),\n 'public' => true,\n '_builtin' => false, \n '_edit_link' => 'post.php?post=%d', \n 'capability_type' => 'post',\n 'map_meta_cap' => true,\n 'show_in_menu' => false,\n 'hierarchical' => false,\n 'rewrite' => array('slug' => 'article'),\n 'query_var' => false,\n 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats', 'column_info'),\n )); \n\n // register external_tool as a Custom Post Type\n register_post_type('external_tool',\n array(\n 'labels' => array( \n 'name' => __('External Tools'), \n 'singular_name' => __('External Tool') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'author', 'excerpt', 'thumbnail', 'revisions', 'meta_info'),\n 'rewrite' => array('slug' => 'special','with_front' => false) \n ) \n ); \n\n // connect external_tool to category taxonomy\n register_taxonomy_for_object_type('category', 'external_tool');\n register_taxonomy_for_object_type('meta_info', 'external_tool');\n\n\n // register city_journal as a Custom Post Type\n register_post_type('city_journal',\n array(\n 'labels' => array( \n 'name' => __('CityJournal Entry'),\n 'singular_name' => __('CityJournal Entry')\n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'editor', 'author', 'excerpt', 'thumbnail', 'revisions', 'meta_info', 'comments'),\n 'rewrite' => array('slug' => 'cityjournal','with_front' => false) \n ) \n ); \n\n // connect city_journal to category taxonomy\n register_taxonomy_for_object_type('category', 'city_journal');\n register_taxonomy_for_object_type('meta_info', 'city_journal'); \n\n\n // register people_project as a Custom Post Type\n register_post_type('people_project',\n array(\n 'labels' => array( \n 'name' => __('People & Projects'),\n 'singular_name' => __('People & Project')\n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'excerpt', 'thumbnail', 'meta_info'),\n ) \n ); \n\n // connect people_project to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'people_project'); \n\n\n register_post_type('discussion',\n array( \n 'labels' => array( \n 'name' => __('Discussions'), \n 'singular_name' => __('Discussion') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'post-formats', 'revisions', 'meta_info', 'comments'),\n 'rewrite' => array('slug' => 'discussion','with_front' => false) \n ) \n );\n\n // connect discussion to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'discussion');\n register_taxonomy_for_object_type('category', 'discussion');\n\n}", "function create_post_type() {\r\n\r\n\tregister_post_type( 'Editorials',\r\n\t// CPT Options\r\n\t\tarray(\r\n\t\t\t'labels' => array(\r\n\t\t\t\t'name' => __( 'Editorials' ),\r\n\t\t\t\t'singular_name' => __( 'Editorial' )\r\n\t\t\t),\r\n\t\t\t'public' => true,\r\n\t\t\t'has_archive' => true,\r\n\t\t\t'rewrite' => array('slug' => 'editorials'),\r\n\t\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'comments' ),\r\n \t'show_ui' => true,\r\n\t\t)\r\n\t);\r\n\tregister_post_type( 'Local news',\r\n\t// CPT Options\r\n\t\tarray(\r\n\t\t\t'labels' => array(\r\n\t\t\t\t\r\n\t\t\t\t'name' => __( 'Local news' ),\r\n\t\t\t\t'singular_name' => __( 'Local new' )\r\n\t\t\t),\r\n\t\t\t'public' => true,\r\n\t\t\t'has_archive' => true,\r\n\t\t\t'rewrite' => array('slug' => 'local news'),\r\n\t\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'comments' ),\r\n \t'show_ui' => true,\r\n\t\t)\r\n\t);\r\n}", "function awmInputFieldsTypes()\n {\n return apply_filters('awmInputFieldsTypes_filter', array(\n 'text' => array('label' => __('Text', 'extend-wp')),\n 'email' => array('label' => __('Email', 'extend-wp')),\n 'checkbox' => array('label' => __('Checkbox', 'extend-wp')),\n 'url' => array('label' => __('Url', 'extend-wp')),\n 'number' => array('label' => __('Number', 'extend-wp')),\n 'file' => array('label' => __('File', 'extend-wp')),\n 'color' => array('label' => __('Color', 'extend-wp')),\n 'submit' => array('label' => __('Submit', 'extend-wp')),\n ));\n }", "function my_remove_post_type_support()\n{\n\tremove_post_type_support('page', 'editor');\n\tremove_post_type_support('post', 'editor');\n\tremove_post_type_support('companies', 'editor');\n\tremove_post_type_support('group_of_companies', 'editor');\n}", "function get_post_type($post = \\null)\n {\n }", "function wpcpolls_custom_post_type() {\n $labels = array(\n 'name' => _x( 'Polls', 'Post Type General Name', 'wordpress-custom-polls' ),\n 'singular_name' => _x( 'Poll', 'Post Type Singular Name', 'wordpress-custom-polls' ),\n 'menu_name' => __( 'Polls', 'wordpress-custom-polls' ),\n 'name_admin_bar' => __( 'Polls', 'wordpress-custom-polls' ),\n 'archives' => __( 'Poll Archives', 'wordpress-custom-polls' ),\n 'attributes' => __( 'Poll Attributes', 'wordpress-custom-polls' ),\n 'parent_item_colon' => __( 'Parent Poll:', 'wordpress-custom-polls' ),\n 'all_items' => __( 'All Polls', 'wordpress-custom-polls' ),\n 'add_new_item' => __( 'Add New Poll', 'wordpress-custom-polls' ),\n 'add_new' => __( 'Add New', 'wordpress-custom-polls' ),\n 'new_item' => __( 'New Poll', 'wordpress-custom-polls' ),\n 'edit_item' => __( 'Edit Poll', 'wordpress-custom-polls' ),\n 'update_item' => __( 'Update Poll', 'wordpress-custom-polls' ),\n 'view_item' => __( 'View Poll', 'wordpress-custom-polls' ),\n 'view_items' => __( 'View Polls', 'wordpress-custom-polls' ),\n 'search_items' => __( 'Search Poll', 'wordpress-custom-polls' ),\n 'not_found' => __( 'Not found', 'wordpress-custom-polls' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'wordpress-custom-polls' ),\n 'featured_image' => __( 'Featured Image', 'wordpress-custom-polls' ),\n 'set_featured_image' => __( 'Set featured image', 'wordpress-custom-polls' ),\n 'remove_featured_image' => __( 'Remove featured image', 'wordpress-custom-polls' ),\n 'use_featured_image' => __( 'Use as featured image', 'wordpress-custom-polls' ),\n 'insert_into_item' => __( 'Insert into Poll', 'wordpress-custom-polls' ),\n 'uploaded_to_this_item' => __( 'Uploaded to this Poll', 'wordpress-custom-polls' ),\n 'items_list' => __( 'Polls list', 'wordpress-custom-polls' ),\n 'items_list_navigation' => __( 'Polls list navigation', 'wordpress-custom-polls' ),\n 'filter_items_list' => __( 'Filter Polls list', 'wordpress-custom-polls' ),\n );\n $args = array(\n 'label' => __( 'Poll', 'wordpress-custom-polls' ),\n 'description' => __( 'Custom Polls', 'wordpress-custom-polls' ),\n 'labels' => $labels,\n 'supports' => array( 'title', 'editor' ),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => false,\n 'menu_position' => 5,\n 'menu_icon' => 'dashicons-list-view',\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => true,\n 'can_export' => true,\n 'has_archive' => false,\n 'rewrite' => array('slug' => 'wpcpolls_polls'),\n 'exclude_from_search' => true,\n 'publicly_queryable' => true,\n 'capability_type' => 'post',\n 'show_in_rest' => true,\n );\n\n register_post_type( 'wpcpolls_polls', $args );\n}", "public static function add_custom_fields_support_to_cpt( $args, $post_type ) {\n\t\t\tif ( is_array( $args ) && isset( $args['public'] ) && $args['public'] && isset( $args['supports'] ) && is_array( $args['supports'] ) && ! in_array( 'custom-fields', $args['supports'], true ) ) {\n\t\t\t\t$args['supports'][] = 'custom-fields';\n\t\t\t}\n\n\t\t\treturn $args;\n\t\t}", "function customize_meta_boxes()\n{\n // These remove meta boxes from POSTS\n //remove_post_type_support(\"post\",\"excerpt\"); //Remove Excerpt Support\n //remove_post_type_support(\"post\",\"author\"); //Remove Author Support\n //remove_post_type_support(\"post\",\"revisions\"); //Remove Revision Support\n //remove_post_type_support(\"post\",\"comments\"); //Remove Comments Support\n //remove_post_type_support(\"post\",\"trackbacks\"); //Remove trackbacks Support\n //remove_post_type_support(\"post\",\"editor\"); //Remove Editor Support\n //remove_post_type_support(\"post\",\"custom-fields\"); //Remove custom-fields Support\n //remove_post_type_support(\"post\",\"title\"); //Remove Title Support\n\n\n // These remove meta boxes from PAGES\n //remove_post_type_support(\"page\",\"revisions\"); //Remove Revision Support\n //remove_post_type_support(\"page\",\"comments\"); //Remove Comments Support\n //remove_post_type_support(\"page\",\"author\"); //Remove Author Support\n //remove_post_type_support(\"page\",\"trackbacks\"); //Remove trackbacks Support\n //remove_post_type_support(\"page\",\"custom-fields\"); //Remove custom-fields Support\n\n}", "function remove_default_custom_fields( $type, $context, $post ) {\n foreach ( array( 'normal', 'advanced', 'side' ) as $context ) {\n foreach ( $this->postTypes as $postType ) {\n remove_meta_box( 'postcustom', $postType, $context );\n }\n }\n }", "function cursos_post_type() {\n\n $labels = array(\n 'name' => _x( 'cursos', 'Post Type General Name', 'text_domain' ),\n 'singular_name' => _x( 'curso', 'Post Type Singular Name', 'text_domain' ),\n 'menu_name' => __( 'cursos', 'text_domain' ),\n 'name_admin_bar' => __( 'Post Type', 'text_domain' ),\n 'archives' => __( 'Item Archives', 'text_domain' ),\n 'attributes' => __( 'Item Attributes', 'text_domain' ),\n 'parent_item_colon' => __( 'Parent Item:', 'text_domain' ),\n 'all_items' => __( 'Todos os cursos', 'text_domain' ),\n 'add_new_item' => __( 'Add nova pergunta', 'text_domain' ),\n 'add_new' => __( 'novo cursoa', 'text_domain' ),\n 'new_item' => __( 'nova pergunta', 'text_domain' ),\n 'edit_item' => __( 'Edit Item', 'text_domain' ),\n 'update_item' => __( 'Update Item', 'text_domain' ),\n 'view_item' => __( 'View Item', 'text_domain' ),\n 'view_items' => __( 'View Items', 'text_domain' ),\n 'search_items' => __( 'Search Item', 'text_domain' ),\n 'not_found' => __( 'não encontrato', 'text_domain' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\n 'featured_image' => __( 'Featured Image', 'text_domain' ),\n 'set_featured_image' => __( 'Set featured image', 'text_domain' ),\n 'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),\n 'use_featured_image' => __( 'Use as featured image', 'text_domain' ),\n 'insert_into_item' => __( 'Insert into item', 'text_domain' ),\n 'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),\n 'items_list' => __( 'Items list', 'text_domain' ),\n 'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),\n 'filter_items_list' => __( 'Filter items list', 'text_domain' ),\n );\n $args = array(\n 'label' => __( 'cursos', 'text_domain' ),\n 'description' => __( 'cursos', 'text_domain' ),\n 'labels' => $labels,\n 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'excerpt'),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'menu_position' => 5,\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => true,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n register_post_type( 'cursos_post_type', $args );\n\n}", "function custom_post_type() {\n $supports = array(\n 'title',\n 'editor',\n // 'excerpt',\n // 'custom-fields',\n 'author',\n 'thumbnail',\n );\n\n $labels = array(\n 'name' => _x('Reviews', 'plural'),\n 'singular_name' => _x('Review', 'singular'),\n 'name_admin_bar' => _x('All Reviews', 'admin bar'),\n 'menu_name' => _x('Reviews', 'admin menu'),\n 'add new' => _x('Add new', 'add new'),\n 'add_new_item' => __('Add new Review'),\n 'all_items' => __('All Reviews'),\n 'new_item' => __('Add New Review'),\n 'search_items' => __('Search Reviews'),\n 'not_found' => __('No reviews found'),\n 'view_item' => __('View Review'),\n );\n\n $args = array(\n 'supports' => $supports,\n 'labels' => $labels,\n 'public' => true,\n 'label' => 'Reviews', // Las reviews son visibles para todos tanto en el backend como en el frontend\n 'query_var' => true, // Nuestro custom post type estará presente en la queryvar general de wp\n 'rewrite' => array('slug' => 'lostguides-reviews'), // Establecer el slug para nuestro custom post type\n 'has_archive' => true, // Permitir usar la plantilla archive-{custom-post-type}.php\n 'hierarchical' => false, // Indica que nuestro custom-post-type no tiene hijos\n 'menu_position' => 7, // Posicion en el menu\n 'show_in_menu' => true, // Para hacer que me funcione el menu position\n 'menu_icon' => 'dashicons-games',\n // 'show_in_rest' => true, // Habilita el editor gutemberg para tu custom post type\n );\n \n register_post_type('lostguides-reviews', $args);\n register_taxonomy_for_object_type('category', 'lostguides-reviews'); // Habilitamos las categorias para nuestro CPT\n register_taxonomy_for_object_type('post_tag', 'lostguides-reviews'); // Habilitamos los tags para nuestro CPT\n }", "function resource_post_type() {\n\n\t$labels = array(\n\t\t'name' => _x( 'Resources', 'Post Type General Name', 'text_domain' ),\n\t\t'singular_name' => _x( 'Resource', 'Post Type Singular Name', 'text_domain' ),\n\t\t'menu_name' => __( 'Resource', 'text_domain' ),\n\t\t'parent_item_colon' => __( 'Parent Resource:', 'text_domain' ),\n\t\t'all_items' => __( 'All Resources', 'text_domain' ),\n\t\t'view_item' => __( 'View Resource', 'text_domain' ),\n\t\t'add_new_item' => __( 'Add New Resource', 'text_domain' ),\n\t\t'add_new' => __( 'Add New', 'text_domain' ),\n\t\t'edit_item' => __( 'Edit Resource', 'text_domain' ),\n\t\t'update_item' => __( 'Update Resource', 'text_domain' ),\n\t\t'search_items' => __( 'Search Resource', 'text_domain' ),\n\t\t'not_found' => __( 'Not found', 'text_domain' ),\n\t\t'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\n\t);\n\t$args = array(\n\t\t'label' => __( 'resource', 'text_domain' ),\n\t\t'description' => __( 'Base resources for fuel use', 'text_domain' ),\n\t\t'labels' => $labels,\n\t\t'supports' => array( 'title', 'custom-fields', 'page-attributes', ),\n\t\t'taxonomies' => array( 'usage' ),\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'show_in_admin_bar' => true,\n\t\t'menu_position' => 5,\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'page',\n\t\t'show_in_rest' => true,\n\t\t'rest_base' => 'resources',\n\t);\n\tregister_post_type( 'resource', $args );\n\n}", "public function create_post_types() {\n }", "function wtfdivi099_add_post_types($post_types) {\r\n\tforeach(get_post_types() as $pt) {\r\n\t\tif (!in_array($pt, $post_types) and post_type_supports($pt, 'editor')) {\r\n\t\t\t$post_types[] = $pt;\r\n\t\t}\r\n\t} \r\n\treturn $post_types;\r\n}", "function clases_yoga_dev_post_type() {\n\n\t$labels = array(\n\t\t'name' => _x( 'Clases grabadas', 'Post Type General Name', 'text_domain' ),\n\t\t'singular_name' => _x( 'Clase grabada', 'Post Type Singular Name', 'text_domain' ),\n\t\t'menu_name' => __( 'Clases grabadas', 'text_domain' ),\n\t\t'name_admin_bar' => __( 'Clase grabada', 'text_domain' ),\n\t\t'archives' => __( 'Item Archives', 'text_domain' ),\n\t\t'attributes' => __( 'Item Attributes', 'text_domain' ),\n\t\t'parent_item_colon' => __( 'Parent Clase:', 'text_domain' ),\n\t\t'all_items' => __( 'All Clase', 'text_domain' ),\n\t\t'add_new_item' => __( 'Add New Clase', 'text_domain' ),\n\t\t'add_new' => __( 'New Clase', 'text_domain' ),\n\t\t'new_item' => __( 'New Item', 'text_domain' ),\n\t\t'edit_item' => __( 'Edit Clase', 'text_domain' ),\n\t\t'update_item' => __( 'Update Clase', 'text_domain' ),\n\t\t'view_item' => __( 'View Clase', 'text_domain' ),\n\t\t'view_items' => __( 'View Items', 'text_domain' ),\n\t\t'search_items' => __( 'Search clases', 'text_domain' ),\n\t\t'not_found' => __( 'No clases found', 'text_domain' ),\n\t\t'not_found_in_trash' => __( 'No clases found in Trash', 'text_domain' ),\n\t\t'featured_image' => __( 'Featured Image', 'text_domain' ),\n\t\t'set_featured_image' => __( 'Set featured image', 'text_domain' ),\n\t\t'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),\n\t\t'use_featured_image' => __( 'Use as featured image', 'text_domain' ),\n\t\t'insert_into_item' => __( 'Insert into item', 'text_domain' ),\n\t\t'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),\n\t\t'items_list' => __( 'Items list', 'text_domain' ),\n\t\t'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),\n\t\t'filter_items_list' => __( 'Filter items list', 'text_domain' ),\n\t);\n\t$rewrite = array(\n\t\t'slug' => 'clases-grabadas-dev',\n\t\t'with_front' => true,\n\t\t'pages' => true,\n\t\t'feeds' => true,\n\t);\n\t$args = array(\n\t\t'label' => __( 'Clase', 'text_domain' ),\n\t\t'description' => __( 'Clases de yoga post type', 'text_domain' ),\n\t\t'labels' => $labels,\n\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'comments', 'custom-fields' ),\n\t\t'taxonomies' => array( 'category', 'post_tag' ),\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'menu_position' => 5,\n\t\t'show_in_admin_bar' => true,\n\t\t'show_in_nav_menus' => true,\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => false,\n\t\t'publicly_queryable' => true,\n\t\t'rewrite' => $rewrite,\n\t\t'capability_type' => 'page',\n\t);\n\tregister_post_type( 'clases_yoga_dev', $args );\n\n}", "function press_post_type() {\n\n// Set UI labels for Custom Post Type\n\t$labels = array(\n\t\t'name' => _x( 'Press', 'Post Type General Name'),\n\t\t'singular_name' => _x( 'Press', 'Post Type Singular Name'),\n\t\t'menu_name' => __( 'Press'),\n\t\t'all_items' => __( 'All Press'),\n\t\t'view_item' => __( 'View Press'),\n\t\t'add_new_item' => __( 'Add New Press'),\n\t\t'add_new' => __( 'Add New'),\n\t\t'edit_item' => __( 'Edit Press'),\n\t\t'update_item' => __( 'Update Press')\n\n\t\t\n\t);\n\t\n// Set other options for Custom Post Type\n\t\n\t$args = array(\n\t\t'label' => __( 'press'),\n\t\t'labels' => $labels,\n\t\t// Features this CPT supports in Post Editor\n\t\t'supports' => array( 'title', 'editor', 'thumbnail'),\n \n\t\t/* A hierarchical CPT is like Pages and can have\n\t\t* Parent and child items. A non-hierarchical CPT\n\t\t* is like Posts.\n\t\t*/\t\n\t\t'hierarchical' => false,\n\t\t'public' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_nav_menus' => false,\n\t\t'show_in_admin_bar' => true,\n\t\t'menu_position' => 5,\n\t\t'can_export' => true,\n\t\t'has_archive' => true,\n\t\t'exclude_from_search' => true,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'post',\n 'rewrite' => array(\"slug\" => \"press\"),\n 'register_meta_box_cb' => 'add_press_metaboxes' // function hooking up metaboxes\n\t);\n\t\n\t// Registering your Custom Post Type\n\tregister_post_type( 'press', $args );\n\n}", "function base_custom_post_type( $name, $singular_name, $menu_name, $parent_item_colon, $all_items, $view_item, $add_new_item, $add_new, $edit_item, $update_item, $search_items, $not_found, $not_found_in_trash,$description) {\n $labels = array(\n 'name' => _x( $name, 'Post Type General Name', 'base' ),\n 'singular_name' => _x( $singular_name, 'Post Type Singular Name', 'base' ),\n 'menu_name' => __( $menu_name, 'base' ),\n 'parent_item_colon' => __( $parent_item_colon, 'base' ),\n 'all_items' => __( $all_items, 'base' ),\n 'view_item' => __( $view_item, 'base' ),\n 'add_new_item' => __( $add_new_item, 'base' ),\n 'add_new' => __( $add_new, 'base' ),\n 'edit_item' => __( $edit_item, 'base' ),\n 'update_item' => __( $update_item, 'base' ),\n 'search_items' => __( $search_items, 'base' ),\n 'not_found' => __( $not_found, 'base' ),\n 'not_found_in_trash' => __( $not_found_in_trash, 'base' )\n );\n \n// Set other options for Custom Post Type\n \n $args = array(\n 'label' => __( strtolower( $singular_name ) , 'base' ),\n 'description' => __( $description, 'base' ),\n 'labels' => $labels,\n // Features this CPT supports in Post Editor\n 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields','page-attributes' ),\n // You can associate this CPT with a taxonomy or custom taxonomy. \n 'taxonomies' => array( 'genres' ),\n /* A hierarchical CPT is like Pages and can have\n * Parent and child items. A non-hierarchical CPT\n * is like Posts.\n */ \n 'hierarchical' => true,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page'\n );\n \n // Registering your Custom Post Type\n register_post_type( strtolower($menu_name), $args );\n \n}", "function reserva_post_type() {\n\n $labels = array(\n 'name' => _x( 'reservas', 'Post Type General Name', 'text_domain' ),\n 'singular_name' => _x( 'reserva', 'Post Type Singular Name', 'text_domain' ),\n 'menu_name' => __( 'Post Types', 'text_domain' ),\n 'name_admin_bar' => __( 'Post Type', 'text_domain' ),\n 'archives' => __( 'Item Archives', 'text_domain' ),\n 'attributes' => __( 'Item Attributes', 'text_domain' ),\n 'parent_item_colon' => __( 'Parent Item:', 'text_domain' ),\n 'all_items' => __( 'All Items', 'text_domain' ),\n 'add_new_item' => __( 'Add New Item', 'text_domain' ),\n 'add_new' => __( 'Add New', 'text_domain' ),\n 'new_item' => __( 'New Item', 'text_domain' ),\n 'edit_item' => __( 'Edit Item', 'text_domain' ),\n 'update_item' => __( 'Update Item', 'text_domain' ),\n 'view_item' => __( 'View Item', 'text_domain' ),\n 'view_items' => __( 'View Items', 'text_domain' ),\n 'search_items' => __( 'Search Item', 'text_domain' ),\n 'not_found' => __( 'Not found', 'text_domain' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),\n 'featured_image' => __( 'Featured Image', 'text_domain' ),\n 'set_featured_image' => __( 'Set featured image', 'text_domain' ),\n 'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),\n 'use_featured_image' => __( 'Use as featured image', 'text_domain' ),\n 'insert_into_item' => __( 'Insert into item', 'text_domain' ),\n 'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),\n 'items_list' => __( 'Items list', 'text_domain' ),\n 'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),\n 'filter_items_list' => __( 'Filter items list', 'text_domain' ),\n );\n $args = array(\n 'label' => __( 'reserva', 'text_domain' ),\n 'description' => __( 'personalizanilazioón de reserva', 'text_domain' ),\n 'labels' => $labels,\n 'supports' => array( 'title', 'editor', 'thumbnail' ),\n 'taxonomies' => array( 'category', 'post_tag' ),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'menu_position' => 5,\n 'menu_icon' => 'dashicons-welcome-write-blog',\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => true,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n register_post_type( 'reserva', $args );\n\n}", "function vcex_theme_post_types() {\n\tif ( function_exists( 'wpex_theme_post_types' ) ) {\n\t\treturn wpex_theme_post_types();\n\t}\n\treturn array();\n}" ]
[ "0.75340843", "0.7410608", "0.72691333", "0.7250192", "0.7247401", "0.7242515", "0.7212585", "0.72084886", "0.7151635", "0.7136772", "0.7087692", "0.70860463", "0.70720184", "0.70720184", "0.70236784", "0.6976127", "0.696189", "0.69597137", "0.6936945", "0.6935295", "0.6932881", "0.69296557", "0.6928996", "0.6915129", "0.68924856", "0.6882723", "0.6879242", "0.68737364", "0.68733746", "0.68726975", "0.68508697", "0.6850766", "0.6846197", "0.68437827", "0.683399", "0.6830292", "0.6828401", "0.6804799", "0.68011254", "0.6792159", "0.6787991", "0.6773997", "0.67708087", "0.6764709", "0.67547375", "0.67497164", "0.6748689", "0.6745715", "0.6743572", "0.67435706", "0.67402226", "0.67382985", "0.67382514", "0.6732309", "0.6702291", "0.67020404", "0.669918", "0.6669535", "0.66678655", "0.6665272", "0.6662186", "0.66620433", "0.6660471", "0.66556376", "0.6649017", "0.6632149", "0.6626716", "0.66246694", "0.6600162", "0.6599653", "0.6588111", "0.65856284", "0.65832025", "0.65779155", "0.65656066", "0.65641034", "0.6564008", "0.6561079", "0.6559664", "0.65537775", "0.6547755", "0.6547305", "0.6537081", "0.65360636", "0.6530379", "0.65279204", "0.6509898", "0.65081036", "0.6506674", "0.65043", "0.6497884", "0.6494715", "0.6492863", "0.6492769", "0.6489989", "0.6484702", "0.64826626", "0.64776266", "0.6470991", "0.6459216", "0.6458552" ]
0.0
-1
Register the post type
function testimonial_init() { register_post_type( 'testimonial', array( 'labels' => array( 'name' => 'Testimonials', 'singular_name' => 'Testimonial', 'add_new_item' => 'Add new Testimonial', 'new_item_name' => 'New Testimonial', 'parent_item' => 'Parent Testimonial', 'search_items' => 'Search Testimonials', 'update_item' => 'Update Testimonial', 'add_or_remote_items' => 'Add or remove Testimonials' ), 'public' => true, 'capability_type' => 'post', // TODO: Customize at site level, replace "post" with "testimonial" 'hierarchical' => false, 'rewrite' => false, // FH:NOTE:JRB:20110728 -- disabled rewrite for older version of wordpress; shouldn't be necessary anyway 'supports' => array('title', 'custom-fields', 'editor', 'excerpt', 'thumbnail') ) ); register_capabilities_testimonials('testimonial'); if(function_exists("slt_cf_register_box")) { slt_cf_register_box(array( 'type' => 'post', 'id' => 'sltcf_testimonials', 'title' => 'Testimonial Details', 'fields' => array( array( 'name' => 'attribution', 'label' => 'Attribution', 'description' => 'Who is the testimony "attributed to?"', 'scope' => array('testimonial'), 'type' => 'text' ), array( 'name' => 'attribution_location', 'label' => 'Location', 'description' => 'Location of person giving testimony', 'scope' => array('testimonial'), 'type' => 'text' ) ) )); slt_cf_register_box(array( 'type' => 'post', 'id' => 'sltcf_testimonial_selection', 'title' => 'Testimonial Selection', 'description' => 'Allows for post- or page-level override of default "random" behavior.', 'fields' => array( array( 'name' => 'testimonial_override', 'label' => 'Testimonial Selection', 'description' => 'Allows for selection of a specific testimonial (default is random)', 'scope' => array("page"), // NOTE: This might need to be modified per-site 'type' => 'select', 'options_type' => 'posts', 'options_query' => array( 'post_type' => 'testimonial', 'post_status' => 'publish', 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC' ) ), array( 'name' => 'testimonial_negate', 'label' => 'Hide Testimonials', 'description' => 'Set if this page should not display any testimonials in widgets (default is to hide testimonial)', 'scope' => array("page"), // NOTE: This might need to be modified per-site 'type' => 'checkbox', 'default' => 1 ), array( 'name' => 'testimonial_inherit', 'label' => 'Enumerate using inheritance', 'description' => 'When rendering testimonials, look at parent for overrides', 'scope' => array("page"), // NOTE: This might need to be modified per-site 'type' => 'checkbox' ) ) )); } else { add_action('admin_notices', 'testimonial_admin_notice_sltcf_dependency'); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function register_post_type() {\n\t\tadd_action( 'init', array( $this, 'post_registration_callback' ), 0, 0 );\n\t}", "public function register_post(): void\n {\n $args = $this->register_post_type_args();\n register_post_type($this->post_type, $args);\n }", "public static function register_post_types() {}", "public function register_post_types() {\n\n\t}", "public function register()\n {\n $args = apply_filters( $this->name.'_post_type_config', $this->config );\n $args['labels'] = apply_filters( $this->name.'_post_type_labels', $this->labels);\n\n register_post_type( $this->name, $args );\n }", "function register_post_types(){\n }", "function register_post_types(){\n }", "function register_post_types()\n {\n }", "public function registerCustomPostType()\n {\n if (!post_type_exists($this->slug)) {\n register_post_type($this->slug, $this->arguments);\n }\n }", "function wpbm_register_post_type(){\n include('inc/admin/register/wpbm-register-post.php');\n register_post_type( 'WP Blog Manager', $args );\n }", "function register_post_types() {\n\t}", "function register_post_types() {\n\t}", "public function registerCustomPostTypes() {\n\n\n }", "public function register_post_type() {\n\t $args = array(\n\t\t\t'public' => true,\n\t\t\t'label' => 'Questions'\n\t\t);\n\t register_post_type( 'questions', $args );\n\t}", "public function flo_reg_custom_post_type(){\n\t\t// call the methods that are registering the post types\n\t\t$this->flo_reg_forms_post_type();\n\t\t$this->flo_reg_entrie_post_type();\n\n\t\t$this->flo_register_form_entries_taxonomy();\n\t}", "public static function register_post_type() {\n\t\tregister_post_type( 'drsa_ad', self::arguments() );\n\t}", "public function register_custom_post() {\n foreach ( $this->posts as $key => $value ) {\n register_post_type( $key, $value );\n }\n }", "public function register_post_type(){\r\n //Capitilize the words and make it plural\r\n $name = ucwords( str_replace( '_', ' ', $this->post_type_name ) );\r\n $plural = $name . 's';\r\n $menupos = $this->post_type_pos;\r\n\r\n // We set the default labels based on the post type name and plural. We overwrite them with the given labels.\r\n $labels = array_merge(\r\n\r\n // Default\r\n array(\r\n 'name' => _x( $plural, 'post type general name' ),\r\n 'singular_name' => _x( $name, 'post type singular name' ),\r\n 'add_new' => _x( 'Add New', strtolower( $name ) ),\r\n 'add_new_item' => __( 'Add New ' . $name ),\r\n 'edit_item' => __( 'Edit ' . $name ),\r\n 'new_item' => __( 'New ' . $name ),\r\n 'all_items' => __( 'All ' . $plural ),\r\n 'view_item' => __( 'View ' . $name ),\r\n 'search_items' => __( 'Search ' . $plural ),\r\n 'not_found' => __( 'No ' . strtolower( $plural ) . ' found'),\r\n 'not_found_in_trash' => __( 'No ' . strtolower( $plural ) . ' found in Trash'),\r\n 'parent_item_colon' => '',\r\n 'menu_name' => $plural\r\n ),\r\n\r\n // Given labels\r\n $this->post_type_labels\r\n\r\n );\r\n\r\n // Same principle as the labels. We set some defaults and overwrite them with the given arguments.\r\n $args = array_merge(\r\n\r\n // Default\r\n array(\r\n 'capability_type' => 'post',\r\n 'hierarchical' => false,\r\n 'label' => $plural,\r\n 'labels' => $labels,\r\n 'menu_position' => $menupos,\r\n 'public' => true,\r\n 'publicly_queryable' => true,\r\n 'query_var' => true,\r\n 'rewrite' => array('slug' => $plural),\r\n 'show_in_nav_menus' => true,\r\n 'show_ui' => true,\r\n 'supports' => array( 'title', 'editor'),\r\n '_builtin' => false,\r\n ),\r\n\r\n // Given args\r\n $this->post_type_args\r\n\r\n );\r\n\r\n // Register the post type\r\n register_post_type( $this->post_type_name, $args );\r\n }", "public static function register_post_type()\n {\n\n \t register_post_type( 'books',\n\t\t array(\n\t\t 'labels' => array(\n\t\t 'name' => __( 'Books' ),\n\t\t 'singular_name' => __( 'Books' )\n\t\t ),\n\t\t 'public' => true,\n\t\t 'has_archive' => false,\n\t\t )\n\t\t );\n\n }", "public function register_post_type(){\n\t\tif(!class_exists('CPT')) return;\n\t\n\t\t$this->post_type = new CPT(\n\t\t\tarray(\n\t\t\t 'post_type_name' => 'slide',\n\t\t\t 'singular' => 'Slide',\n\t\t\t 'plural' => 'Slides',\n\t\t\t 'slug' => 'slide'\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'has_archive' \t\t\t=> \ttrue,\n\t\t\t\t'menu_position' \t\t=> \t8,\n\t\t\t\t'menu_icon' \t\t\t=> \t'dashicons-layout',\n\t\t\t\t'supports' \t\t\t\t=> \tarray('title', 'excerpt', 'content','thumbnail', 'post-formats', 'custom-fields')\n\t\t\t)\n\t\t);\n\t\t\n\t\t$labels = array('menu_name'=>'Types');\n\t\t$this->post_type->register_taxonomy('type',array(\n\t\t\t'hierarchical' => true,\n\t\t\t'public' => true,\n\t\t\t'show_ui' => true,\n\t\t\t'show_admin_column' => true,\n\t\t\t'show_in_nav_menus' => true,\n\t\t\t'show_tagcloud' => true,\n\t\t),$labels);\n\t}", "function register_post_types(){\n\t\t\trequire('lib/custom-types.php');\n\t\t}", "function carbon_register_post_types(){\n\n // carbon_register_post_type(array(\n // 'singular' => 'Type', // required\n // 'plural' => 'Types', // required\n // 'type' => 'type', // required\n // 'slug' => 'types/type',\n // 'menu_icon' => 'dashicons-admin-post',\n // 'has_archive' => true,\n // 'exclude_from_search' => true,\n // ));\n }", "public static function register_post_type() {\n\t\t$labels = array(\n\t\t\t'name' => _x( 'Collections', 'post type general name', 'wp-recipe-maker-premium' ),\n\t\t\t'singular_name' => _x( 'Collection', 'post type singular name', 'wp-recipe-maker-premium' ),\n\t\t);\n\n\t\t$args = apply_filters( 'wprm_recipe_collections_post_type_arguments', array(\n\t\t\t'labels' \t=> $labels,\n\t\t\t'public' \t=> false,\n\t\t\t'rewrite' \t=> false,\n\t\t\t'capability_type' \t=> 'post',\n\t\t\t'query_var' \t=> false,\n\t\t\t'has_archive' \t=> false,\n\t\t\t'supports' \t\t\t\t=> array( 'title', 'author' ),\n\t\t\t'show_in_rest'\t\t\t=> true,\n\t\t\t'rest_base'\t\t\t\t=> WPRMPRC_POST_TYPE,\n\t\t\t'rest_controller_class' => 'WP_REST_Posts_Controller',\n\t\t));\n\n\t\tregister_post_type( WPRMPRC_POST_TYPE, $args );\n\t}", "protected function register_post_type() {\n\t\t$labels = array(\n\t\t\t'name' => __( 'geopin', 'geopin-post-type' ),\n\t\t\t'singular_name' => __( 'geopin Member', 'geopin-post-type' ),\n\t\t\t'add_new' => __( 'Add geopin', 'geopin-post-type' ),\n\t\t\t'add_new_item' => __( 'Add geopin', 'geopin-post-type' ),\n\t\t\t'edit_item' => __( 'Edit geopin', 'geopin-post-type' ),\n\t\t\t'new_item' => __( 'New geopin', 'geopin-post-type' ),\n\t\t\t'view_item' => __( 'View geopin', 'geopin-post-type' ),\n\t\t\t'search_items' => __( 'Search geopin', 'geopin-post-type' ),\n\t\t\t'not_found' => __( 'No geopins found', 'geopin-post-type' ),\n\t\t\t'not_found_in_trash' => __( 'No geopins in the trash', 'geopin-post-type' ),\n\t\t);\n\n\t\t$supports = array(\n\t\t\t'title',\n\t\t\t// 'editor',\n\t\t\t'thumbnail',\n\t\t\t// 'custom-fields',\n\t\t\t// 'revisions',\n\t\t);\n\n\t\t$args = array(\n\t\t\t'labels' => $labels,\n\t\t\t'supports' => $supports,\n\t\t\t'public' => true,\n\t\t\t'capability_type' => 'post',\n\t\t\t'rewrite' => array( 'slug' => 'geopin', ), \n\t\t\t'menu_position' => 5,\n\t\t\t'menu_icon' => 'dashicons-admin-site',\n\t\t);\n\n\t\t$args = apply_filters( 'geoPin_post_type_args', $args );\n\n\t\tregister_post_type( $this->post_type, $args );\n\t}", "public function register_post_type()\n {\n $labels = [\n 'name' => _x('Chiro Quizzes', 'post type general name', $this->token),\n 'singular_name' => _x('Chiro Quiz', 'post type singular name', $this->token),\n 'add_new' => _x('Add New', $this->token, $this->token),\n 'add_new_item' => sprintf(__('Add New %s', $this->token), __('Chiro Quiz', $this->token)),\n 'edit_item' => sprintf(__('Edit %s', $this->token), __('Chiro Quiz', $this->token)),\n 'new_item' => sprintf(__('New %s', $this->token), __('Chiro Quiz', $this->token)),\n 'all_items' => sprintf(__('All %s', $this->token), __('Chiro Quizzes', $this->token)),\n 'view_item' => sprintf(__('View %s', $this->token), __('Chiro Quiz', $this->token)),\n 'search_items' => sprintf(__('Search %a', $this->token), __('Chiro Quizzes', $this->token)),\n 'not_found' => sprintf(__('No %s Found', $this->token), __('Chiro Quizzes', $this->token)),\n 'not_found_in_trash' => sprintf(__('No %s Found In Trash', $this->token), __('Chiro Quizzes', $this->token)),\n 'parent_item_colon' => '',\n 'menu_name' => __('Chiro Quizzes', $this->token)\n ];\n\n $slug = __('chiro-quiz', 'pf_chiro_quiz');\n $custom_slug = get_option('pf_chiro_quiz_slug');\n if ($custom_slug && strlen($custom_slug) > 0 && $custom_slug != '') {\n $slug = $custom_slug;\n }\n\n $args = [\n 'labels' => $labels,\n 'public' => true,\n 'publicly_queryable' => true,\n 'exclude_from_search' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'query_var' => true,\n 'rewrite' => ['slug' => $slug],\n 'capability_type' => 'post',\n 'has_archive' => false,\n 'hierarchical' => false,\n 'supports' => ['title'],\n 'menu_position' => 5,\n 'menu_icon' => 'dashicons-admin-quiz'\n ];\n\n register_post_type($this->token, $args);\n }", "private function register_post_type() {\n\t\t\t// register the post type\n\t\t\t$args = array('label' => __('Options Pages', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t'description' => '',\n\t\t\t\t\t\t\t\t\t\t'public' => false,\n\t\t\t\t\t\t\t\t\t\t'show_ui' => true,\n\t\t\t\t\t\t\t\t\t\t'show_in_menu' => true,\n\t\t\t\t\t\t\t\t\t\t'capability_type' => 'post',\n\t\t\t\t\t\t\t\t\t\t'map_meta_cap' => true,\n\t\t\t\t\t\t\t\t\t\t'hierarchical' => false,\n\t\t\t\t\t\t\t\t\t\t'rewrite' => array('slug' => $this->post_type, 'with_front' => false),\n\t\t\t\t\t\t\t\t\t\t'query_var' => true,\n\t\t\t\t\t\t\t\t\t\t'exclude_from_search' => true,\n\t\t\t\t\t\t\t\t\t\t'menu_position' => 100,\n\t\t\t\t\t\t\t\t\t\t'menu_icon' => 'dashicons-admin-generic',\n\t\t\t\t\t\t\t\t\t\t'supports' => array('title','custom-fields','revisions'),\n\t\t\t\t\t\t\t\t\t\t'labels' => array('name' => __('Options Pages', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'singular_name' => __('Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'menu_name' =>\t__('Options Pages', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'add_new' => __('Add Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'add_new_item' => __('Add New Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'edit' => __('Edit', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'edit_item' => __('Edit Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'new_item' => __('New Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'view' => __('View Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'view_item' => __('View Options Page', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'search_items' => __('Search Options Pages', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'not_found' => __('No Options Pages Found', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'not_found_in_trash' => __('No Options Pages Found in Trash', $this->text_domain),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'parent' => __('Parent Options Page', $this->text_domain)));\n\t\t\tregister_post_type($this->post_type, $args);\n\t\t}", "function register_post_types(){\n\t\trequire('lib/custom-types.php');\n\t}", "public function register_qmgt_custom_post() {\r\n\t\trequire_once( QMGT_ROOT . '/qmgt-custom-post-type.php');\r\n\t}", "public function register_post_types() {\n require_once('includes/post-types.php');\n }", "public function create_post_types() {\n }", "function registerPostTypes()\n{\n register_post_type('destination', [\n 'public' => true,\n 'label' => 'Destinations',\n 'supports' => ['title', 'editor', 'thumbnail']\n ]);\n register_post_type('review', [\n 'public' => true,\n 'label' => 'Reviews',\n 'supports' => ['title', 'editor']\n ]);\n}", "static function register_post_type() {\n\n $args = array(\n 'labels' => array(\n\t\t'name' => __( 'Forms', 'pwp' ),\n\t\t'singular_name' => __( 'Form', 'pwp' ),\n\t\t'add_new' => __( 'Add New', 'pwp' ),\n\t\t'add_new_item' => __( 'Add New Form', 'pwp' ),\n\t\t'edit_item' => __( 'Edit Form', 'pwp' ),\n\t\t'new_item' => __( 'New Form', 'pwp' ),\n\t\t'all_items' => __( 'All Forms', 'pwp' ),\n\t\t'view_item' => __( 'View Form', 'pwp' ),\n\t\t'search_items' => __( 'Search Forms', 'pwp' ),\n\t\t'not_found' => __( 'No forms found', 'pwp' ),\n\t\t'not_found_in_trash' => __( 'No forms found in Trash', 'pwp' ),\n\t\t'parent_item_colon' => __( ':', 'pwp' ),\n\t\t'menu_name' => __( 'Forms', 'pwp' )\n\t ),\n 'public' => false,\n 'show_ui' => true,\n 'query_var' => false,\n 'supports' => array( 'title', 'custom-fields', 'editor' )\n );\n\tregister_post_type( 'form', $args );\n }", "public static function registerWPPostType()\n {\n register_post_type\n (\n 'fs_feed_entry',\n array\n (\n 'label' => 'Feed Entries',\n 'labels' => array\n (\n 'name' => 'Feed Entries',\n 'singular_name' => 'Feed Entry',\n 'add_new' => 'Add New',\n 'add_new_item' => 'Add New Feed Entry',\n 'edit_item' => 'Edit Feed Entry',\n 'new_item' => 'New Feed Entry',\n 'view_item' => 'View Feed Entry',\n 'search_items' => 'Search Feed Entries',\n 'not_found' => 'No Feed Entries Found',\n 'not_found_in_trash' => 'No Feed Entries Found In Trash',\n 'parent_item_colon' => 'Parent Feed Entries:',\n 'edit' => 'Edit',\n 'view' => 'View Feed Entry'\n ),\n 'public' => false,\n 'show_ui' => true\n )\n );\n }", "static function register_post_type ()\n {\n register_post_type(\n 'person',\n array(\n 'labels' => array(\n 'name' => __x( 'People', 'post type general name' ),\n 'singular_name' => __x( 'Person', 'post type singular name' ),\n 'menu_name' => __x( 'People', 'admin menu' ),\n 'name_admin_bar' => __x( 'Person', 'add new on admin bar' ),\n 'add_new' => __x( 'Add New', 'book' ),\n 'add_new_item' => ___( 'Add New Person' ),\n 'new_item' => ___( 'New Person' ),\n 'edit_item' => ___( 'Edit Person' ),\n 'view_item' => ___( 'View Person' ),\n 'all_items' => ___( 'All People' ),\n 'search_items' => ___( 'Search People' ),\n 'parent_item_colon' => ___( 'Parent People:' ),\n 'not_found' => ___( 'No persons found.' ),\n 'not_found_in_trash' => ___( 'No persons found in Trash.' )\n ),\n 'description' => ___( 'Noteworthy people' ),\n 'public' => true,\n 'publicly_queryable' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'query_var' => true,\n 'rewrite' => array( 'slug' => 'people' ),\n 'capability_type' => 'post',\n 'has_archive' => true,\n 'hierarchical' => false,\n 'menu_position' => null,\n 'menu_icon' => 'dashicons-welcome-learn-more',\n 'supports' => array( 'title', 'editor', 'thumbnail' )\n ));\n }", "function bf_register_custom_post_type() {\r\n /* Añado las etiquetas que aparecerán en el escritorio de WordPress */\r\n\t$labels = array(\r\n\t\t'name' => _x( 'Ponentes', 'post type general name', 'text-domain' ),\r\n\t\t'singular_name' => _x( 'Ponente', 'post type singular name', 'text-domain' ),\r\n\t\t'menu_name' => _x( 'Ponentes', 'admin menu', 'text-domain' ),\r\n\t\t'add_new' => _x( 'Añadir nuevo', 'ponente', 'text-domain' ),\r\n\t\t'add_new_item' => __( 'Añadir nuevo ponente', 'text-domain' ),\r\n\t\t'new_item' => __( 'Nuevo Ponente', 'text-domain' ),\r\n\t\t'edit_item' => __( 'Editar Ponente', 'text-domain' ),\r\n\t\t'view_item' => __( 'Ver ponente', 'text-domain' ),\r\n\t\t'all_items' => __( 'Todos los ponentes', 'text-domain' ),\r\n\t\t'search_items' => __( 'Buscar ponentes', 'text-domain' ),\r\n\t\t'not_found' => __( 'No hay ponentes.', 'text-domain' ),\r\n\t\t'not_found_in_trash' => __( 'No hay ponentes en la papelera.', 'text-domain' )\r\n\t);\r\n\r\n /* Configuro el comportamiento y funcionalidades del nuevo custom post type */\r\n\t$args = array(\r\n\t\t'labels' => $labels,\r\n\t\t'description' => __( 'Descripción.', 'text-domain' ),\r\n\t\t'public' => true,\r\n\t\t'publicly_queryable' => true,\r\n\t\t'show_ui' => true,\r\n\t\t'show_in_menu' => true,\r\n\t\t'show_in_nav_menus' => true,\r\n\t\t'query_var' => true,\r\n\t\t'rewrite' => array( 'slug' => 'ponente' ),\r\n\t\t'capability_type' => 'post',\r\n\t\t'hierarchical' => false,\r\n\t\t'menu_position' => null,\r\n 'menu_icon' => 'dashicons-businessman',\r\n\t\t'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),\r\n\t\t'show_in_rest'\t \t => true,\r\n\t\t'public' \t\t\t => true,\r\n\t\t'has_archive' \t\t => true,\r\n\t\t'taxonomies' => array('category','categoria-conferencias')\r\n\t);\r\n\r\n\tregister_post_type('ponentes', $args );\r\n}", "public function register_post_type() {\n\t\t// make sure the post type info is set - none of this will work without it!\n\t\tif ( is_null( $this->post_type ) or is_null( $this->post_type_title ) or is_null( $this->post_type_single ) )\n\t\t\treturn false;\n\n\t\t// Register post type\n\t\tregister_post_type( $this->post_type, $this->_post_type_args );\n\n\t\t// Register taxonomy for post type\n\t\tif ( ! $this->disable_post_type_categories ) {\n\t\t\tregister_taxonomy(\n\t\t\t\t$this->taxonomy_name,\n\t\t\t\tarray( $this->post_type ),\n\t\t\t\t$this->_taxonomy_args\n\t\t\t);\n\t\t} // if()\n\t}", "function BH_register_posttypes() {\r\n\r\n\tBH_register_posttype_event();\r\n\tBH_register_posttype_gallery();\r\n\r\n}", "protected function addPostType()\n {\n WordPress::registerType('lbwp-nl', 'Newsletter', 'Newsletter', array(\n 'show_in_menu' => 'newsletter',\n 'publicly_queryable' => false,\n 'exclude_from_search' => true,\n 'supports' => array('title')\n ), 'n');\n }", "public function registerPostTypes()\n {\n // Get the post types from the config.\n $postTypes = config('post-types');\n\n $translater = new Translater($postTypes, 'post-types');\n $postTypes = $translater->translate([\n '*.label',\n '*.labels.*',\n '*.names.singular',\n '*.names.plural',\n ]);\n\n // Iterate over each post type.\n collect($postTypes)->each(function ($item, $key) {\n\n // Check if names are set, if not keep it as an empty array\n $names = $item['names'] ?? [];\n\n // Unset names from item\n unset($item['names']);\n\n // Register the extended post type.\n register_extended_post_type($key, $item, $names);\n });\n }", "public function register() {\r\n add_action('post_updated', array($this, 'save_meta'), null, 2 );\r\n\r\n $original_config = $this->get_config();\r\n // push it through a filter so a theme can change the terminology\r\n $filtered_config = apply_filters('ah-wp-dl-res-config',$original_config);\r\n register_post_type(self::POST_TYPE, $filtered_config);\r\n\r\n register_taxonomy(self::POST_TYPE . '_cat',\r\n array(self::POST_TYPE),\r\n array('hierarchical' => true,\r\n 'labels' => array(\r\n 'name' => __( 'Categories' ),\r\n 'singular_name' => __( 'Category' ),\r\n 'search_items' => __( 'Search Categories' ),\r\n 'all_items' => __( 'All Categories' ),\r\n 'parent_item' => __( 'Parent Category' ),\r\n 'parent_item_colon' => __( 'Parent Category:' ),\r\n 'edit_item' => __( 'Edit Category' ),\r\n 'update_item' => __( 'Update Category' ),\r\n 'add_new_item' => __( 'Add New Category' ),\r\n 'new_item_name' => __( 'New Category Name')\r\n ),\r\n 'show_ui' => true,\r\n 'query_var' => true,\r\n 'rewrite' => array( 'slug' => 'documents/categories' ),\r\n )\r\n );\r\n }", "private static function register_form_post_type() {\n\t\tif ( post_type_exists( self::$forms_post_type ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$post_type_args = apply_filters(\n\t\t\t'wphf_register_post_type_' . self::$forms_post_type,\n\t\t\tarray(\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => __( 'Forms', 'fff-rest-contact-form' ),\n\t\t\t\t\t'singular_name' => __( 'Form', 'fff-rest-contact-form' ),\n\t\t\t\t),\n\t\t\t\t'public' => true,\n\t\t\t\t'supports' => array( 'title' ),\n\t\t\t)\n\t\t);\n\n\t\tregister_post_type( self::$forms_post_type, $post_type_args );\n\t}", "public static function init() {\n\t\tadd_action( 'init', array( __CLASS__, 'register_post_type' ), 1 );\n\t}", "public function register_custom_post_type() {\n $labels = array (\n 'name' => __('Custom', self::$plugin_obj->class_name ),\n 'singular_name' => __('item', self::$plugin_obj->class_name ),\n 'add_new' => __('new item', self::$plugin_obj->class_name ),\n 'add_new_item' => __('new item', self::$plugin_obj->class_name ),\n 'new_item' => __('new item', self::$plugin_obj->class_name ),\n 'edit' => __('edit item', self::$plugin_obj->class_name ),\n 'edit_item' => __('edit item', self::$plugin_obj->class_name ),\n 'view' => __('view item', self::$plugin_obj->class_name ),\n 'view_item' => __('view item', self::$plugin_obj->class_name ),\n 'search_items' => __('search item', self::$plugin_obj->class_name ),\n 'not_found' => __('no item found', self::$plugin_obj->class_name ),\n 'not_found_in_trash' => __('no item in trash', self::$plugin_obj->class_name ),\n 'parent' => __('parent item', self::$plugin_obj->class_name )\n );\n\n $args = array(\n 'labels' => $labels,\n 'public' => TRUE,\n 'publicly_queryable' => TRUE,\n 'show_ui' => TRUE,\n 'show_in_menu' => TRUE,\n 'query_var' => TRUE,\n 'capability_type' => 'page',\n 'has_archive' => TRUE,\n 'hierarchical' => TRUE,\n 'exclude_from_search' => FALSE,\n 'menu_position' => 100 ,\n 'supports' => array('title','editor','excerpt','custom-fields','revisions','thumbnail','page-attributes'),\n 'taxonomies' => array('category','post_tag')\n );\n\n register_post_type('custom', $args);\n }", "function tower_custom_post_types() {\n foreach (TOWER_CUSTOM_POSTS as $key => $custom_type) {\n register_post_type($key, $custom_type['config']);\n }\n}", "function thirdtheme_custom_post_type()\n {\n $args = array(\n 'labels' => array('name' =>__(' my custom post'),\n 'singular name' =>__('my custom post')),\n 'public' => true,\n 'show_in_menu' => true,\n 'has_archive' => true,\n 'supports' => array( 'title', 'editor', 'author', 'thumbnail'));\n register_post_type('custompost',$args);\n \n }", "public function add_custom_post_types() {\n //\n }", "function tev_post_factory_register($postType, $className) {\n Tev\\Application\\Application::getInstance()\n ->fetch('post_factory')\n ->register($postType, $className);\n }", "private function registerPostType() {\n\t global $superfood_elated_global_Framework;\n\n\t $menuPosition = 5;\n\t $menuIcon = 'dashicons-admin-post';\n\n\t if(eltd_core_theme_installed()) {\n\t\t $menuPosition = $superfood_elated_global_Framework->getSkin()->getMenuItemPosition('masonry-gallery');\n\t\t $menuIcon = $superfood_elated_global_Framework->getSkin()->getMenuIcon('masonry-gallery');\n\t }\n\n register_post_type($this->base,\n array(\n 'labels' \t\t=> array(\n 'name' \t\t\t\t=> esc_html__('Masonry Gallery', 'eltdf-core' ),\n 'all_items'\t\t\t=> esc_html__('Masonry Gallery Items', 'eltdf-core'),\n 'singular_name' \t=> esc_html__('Masonry Gallery Item', 'eltdf-core' ),\n 'add_item'\t\t\t=> esc_html__('New Masonry Gallery Item', 'eltdf-core'),\n 'add_new_item' \t\t=> esc_html__('Add New Masonry Gallery Item', 'eltdf-core'),\n 'edit_item' \t\t=> esc_html__('Edit Masonry Gallery Item', 'eltdf-core')\n ),\n 'public'\t\t=>\tfalse,\n 'show_in_menu'\t=>\ttrue,\n 'rewrite' \t\t=> \tarray('slug' => 'masonry-gallery'),\n\t\t\t\t'menu_position' => \t$menuPosition,\n 'show_ui'\t\t=>\ttrue,\n 'has_archive'\t=>\tfalse,\n 'hierarchical'\t=>\tfalse,\n 'supports'\t\t=>\tarray('title', 'thumbnail'),\n\t\t\t\t'menu_icon' => $menuIcon\n )\n );\n }", "public function register_post_types() {\n\n\t\t// FAQ\n\t\tif (!MKB_Options::option('disable_faq')) {\n\t\t\t$this->register_faq_cpt();\n\t\t\t$this->register_faq_taxonomy();\n\t\t}\n\t}", "public function register_post_type()\n\t{\n\n\t\tregister_taxonomy( $this->post_type_name . '_words', $this->post_type_name, array(\n\t\t\t'label' => 'Words',\n\t\t\t'labels' => array(\n\t\t\t\t'singular_name' => 'Word',\n\t\t\t\t'menu_name' => 'Words',\n\t\t\t\t'all_items' => 'All words',\n\t\t\t\t'edit_item' => 'Edit word',\n\t\t\t\t'view_item' => 'View word',\n\t\t\t\t'update_item' => 'View word',\n\t\t\t\t'add_new_item' => 'Add word',\n\t\t\t\t'new_item_name' => 'New word',\n\t\t\t\t'search_items' => 'Search words',\n\t\t\t\t'popular_items' => 'Popular words',\n\t\t\t\t'separate_items_with_commas' => 'Separate words with commas',\n\t\t\t\t'add_or_remove_items' => 'Add or remove words',\n\t\t\t\t'choose_from_most_used' => 'Choose from most used words',\n\t\t\t\t'not_found' => 'No words found',\n\t\t\t),\n\t\t\t'show_ui' => FALSE,\n\t\t\t'show_admin_column' => FALSE,\n\t\t\t'query_var' => TRUE,\n\t\t\t'rewrite' => array(\n\t\t\t\t'slug' => 'word',\n\t\t\t\t'with_front' => FALSE,\n\t\t\t),\n\t\t));\n\n\t\tregister_taxonomy( $this->post_type_name . '_partsofspeech', $this->post_type_name, array(\n\t\t\t'label' => 'Parts of Speech',\n\t\t\t'labels' => array(\n\t\t\t\t'singular_name' => 'Part of Speech',\n\t\t\t\t'menu_name' => 'Parts of Speech',\n\t\t\t\t'all_items' => 'All parts of speech',\n\t\t\t\t'edit_item' => 'Edit part of speech',\n\t\t\t\t'view_item' => 'View part of speech',\n\t\t\t\t'update_item' => 'View part of speech',\n\t\t\t\t'add_new_item' => 'Add part of speech',\n\t\t\t\t'new_item_name' => 'New part of speech',\n\t\t\t\t'search_items' => 'Search parts of speech',\n\t\t\t\t'popular_items' => 'Popular parts of speech',\n\t\t\t\t'separate_items_with_commas' => 'Separate parts of speech with commas',\n\t\t\t\t'add_or_remove_items' => 'Add or remove parts of speech',\n\t\t\t\t'choose_from_most_used' => 'Choose from most used parts of speech',\n\t\t\t\t'not_found' => 'No parts of speech found',\n\t\t\t),\n\t\t\t'show_ui' => FALSE,\n\t\t\t'show_admin_column' => TRUE,\n\t\t\t'query_var' => TRUE,\n\t\t\t'rewrite' => array(\n\t\t\t\t'slug' => 'partofspeech',\n\t\t\t\t'with_front' => FALSE,\n\t\t\t),\n\t\t));\n\n\t\t// register the damn post type already\n\t\tregister_post_type( \n\t\t\t$this->post_type_name,\n\t\t\tarray(\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => 'Definitions',\n\t\t\t\t\t'singular_name' => 'Definition',\n\t\t\t\t\t'add_new' => 'Add New',\n\t\t\t\t\t'add_new_item' => 'Add New Definition',\n\t\t\t\t\t'edit_item' => 'Edit Definition',\n\t\t\t\t\t'new_item' => 'New Definition',\n\t\t\t\t\t'all_items' => 'All Definitions',\n\t\t\t\t\t'view_item' => 'View Definitions',\n\t\t\t\t\t'search_items' => 'Search Definitions',\n\t\t\t\t\t'not_found' => 'No definitions found',\n\t\t\t\t\t'not_found_in_trash' => 'No definitions found in Trash',\n\t\t\t\t\t'parent_item_colon' => '',\n\t\t\t\t\t'menu_name' => 'Definitions',\n\t\t\t\t),\n\t\t\t\t'supports' => array(\n\t\t\t\t\t'title',\n\t\t\t\t\t'editor',\n\t\t\t\t\t'thumbnail',\n\t\t\t\t\t'trackbacks',\n\t\t\t\t\t'comments',\n\t\t\t\t\t'revisions',\n\t\t\t\t),\n\t\t\t\t'public' => TRUE,\n\t\t\t\t'has_archive' => 'definitions',\n\t\t\t\t'rewrite' => array(\n\t\t\t\t\t'slug' => 'define',\n\t\t\t\t\t'with_front' => FALSE,\n\t\t\t\t),\n\t\t\t\t'register_meta_box_cb' => array( $this, 'metaboxes' ),\n\t\t\t\t'public' => TRUE,\n\t\t\t\t'taxonomies' => array(\n\t\t\t\t\t$this->post_type_name . '_partsofspeech',\n\t\t\t\t\t$this->post_type_name . '_words',\n\t\t\t\t),\n\t\t\t\t'menu_position' => 5,\n\t\t\t)\n\t\t);\n\t}", "private function register_post_types()\n {\n // Gather all the post type services\n $post_types = array_merge(\n $this->get_custom_post_type_services(),\n $this->get_extended_post_type_services()\n );\n\n $this->register_service($post_types, 'post_types');\n }", "public function createPostTypes()\n {\n }", "function carbon_register_post_type($settings){\n\n $labels = array(\n 'name' => _x($settings['plural'],'post type plural name','carbon'),\n 'singular_name' => _x($settings['singular'],'post type singular name','carbon'),\n 'add_new' => _x('Add New',$settings['singular'],'carbon'),\n 'add_new_item' => __('Add New ' .$settings['singular']),\n 'edit_item' => __('Edit ' .$settings['singular']),\n 'new_item' => __('New ' .$settings['singular']),\n 'all_items' => __('All ' .$settings['plural']),\n 'view_item' => __('View ' .$settings['singular']),\n 'search_items' => __('Search ' .$settings['plural']),\n 'not_found' => __('No ' .$settings['plural'].' found'),\n 'not_found_in_trash' => __('No ' .$settings['plural'].' found in Trash'),\n 'parent_item_colon' => ':',\n 'menu_name' => $settings['plural'],\n );\n\n $args = array(\n 'labels' => $labels,\n 'can_export' => (isset($settings['can_export']) ? $settings['can_export'] : true), // defaults true\n 'capability_type' => (isset($settings['capability_type']) ? $settings['behavior'] : 'post'), // default post\n // 'capabilities' // default capability_type\n 'exclude_from_search' => (isset($settings['exclude_from_search']) ? $settings['exclude_from_search'] : false), // default opposite of public\n 'hierarchical' => (isset($settings['hierarchical']) ? $settings['hierarchical'] : false), // default false\n 'has_archive' => (isset($settings['has_archive']) ? $settings['has_archive'] : false), // default false\n // 'permalink_epmask' // default EP_PERMALINK\n 'public' => (isset($settings['public']) ? $settings['public'] : true), // default false\n 'publicly_queryable' => (isset($settings['publicly_queryable']) ? $settings['publicly_queryable'] : true), // default public\n 'query_var' => (isset($settings['query_var']) ? $settings['query_var'] : true), // default true type\n 'show_ui' => (isset($settings['show_ui']) ? $settings['show_ui'] : true), // default public\n 'show_in_menu' => (isset($settings['show_in_menu']) ? $settings['show_in_menu'] : true), // default public\n 'show_in_admin_bar' => (isset($settings['show_in_admin_bar']) ? $settings['show_in_admin_bar'] : true), // default show_in_menu\n 'menu_position' => (isset($settings['menu_position']) ? $settings['menu_position'] : null), // default null\n 'menu_icon' => (isset($settings['menu_icon']) ? $settings['menu_icon'] : 'dashicons-admin-post'),\n 'supports' => (isset($settings['supports']) ? $settings['supports'] : array('title', 'editor', 'excerpt', 'thumbnail', 'revisions', 'page-attributes')), // default title editor\n 'taxonomies' => (isset($settings['taxonomies']) ? $settings['taxonomies'] : array()), // default none\n // 'register_meta_box_cb' // default none\n 'rewrite' => (isset($settings['rewrite']) ? $settings['rewrite'] : array( // default true name\n 'slug' => (isset($settings['slug']) ? $settings['slug'] : $settings['type']), // default type\n 'with_front' => (isset($settings['with_front']) ? $settings['with_front'] : false), // default true\n 'feeds' => (isset($settings['feeds']) ? $settings['feeds'] : false), // default has_archive\n 'pages' => (isset($settings['pages']) ? $settings['pages'] : true), // defaults true\n // 'ep_mask' // default permalink_epmask EP_PERMALINK\n )),\n );\n register_post_type($settings['type'], $args);\n }", "public function post_type() {\n\t\t$labels = array(\n\t\t\t'name' => __( 'Departamentos'),\n\t\t\t'singular_name' => __( 'Departamento' ),\n\t\t\t'add_new' => __('Añadir nuevo'),\n\t\t\t'add_new_item' => __('Añadir nuevo Departamento'),\n\t\t\t'edit_item' => __('Editar Departamento'),\n\t\t\t'new_item' => __('Nuevo Departamento'),\n\t\t\t'view_item' => __('Ver Departamento'),\n\t\t\t'search_items' => __('Buscar'),\n\t\t\t'not_found' => __('No se encontraron Departamentos'),\n\t\t\t'not_found_in_trash' => __('No se encontraron Departamentos en la Papelera'), \n\t\t\t'parent_item_colon' => ''\n\t\t );\n\t\t \n\t\t $args = array(\n\t\t\t'labels' => $labels,\n\t\t\t'public' => true,\n\t\t\t'publicly_queryable' => true,\n\t\t\t'show_ui' => true, \n\t\t\t'query_var' => true,\n\t 'has_archive' => true,\n\t\t\t'capability_type' => 'post',\n\t\t\t'hierarchical' => true,\n\t\t 'show_ui' => true,\n\t\t\t'show_in_nav_menus' => true,\n\t\t 'show_in_menu' => 'bn_config',\n\t\t\t'menu_position' => 57,\n\t\t\t'menu_icon' => 'dashicons-clipboard',\n\t\t\t'rewrite' => array('slug' => __( $this->post_type )),\n\t\t\t'supports' => array('title', 'excerpt', 'page-attributes') //,'editor'\n\t\t );\n\t\t \n\t\t register_post_type(__( $this->post_type ), $args);\n\t}", "public function register_post_type() {\n\t\t$labels = array(\n\t\t\t'name' => _x( 'Movies', 'Post type general name', 'plugintest' ),\n\t\t\t'singular_name' => _x( 'Movie', 'Post type singular name', 'plugintest' ),\n\t\t\t'menu_name' => _x( 'Movies', 'Admin Menu text', 'plugintest' ),\n\t\t\t'name_admin_bar' => _x( 'Movie', 'Admin Menu Toolbar text', 'plugintest' ),\n\t\t\t'add_new' => __( 'Add New', 'plugintest' ),\n\t\t\t'add_new_item' => __( 'Add New Movie', 'plugintest' ),\n\t\t\t'new_item' => __( 'Aaaaaa', 'plugintest' ),\n\t\t\t'view_item' => __( 'View Movie', 'plugintest' ),\n\t\t\t'edit_item' => __( 'Edit Movie', 'plugintest' ),\n\t\t\t'all_items' => __( 'All Movies', 'plugintest' ),\n\t\t\t'search_items' => __( 'Search Movies', 'plugintest' ),\n\t\t\t'parent_item_colon' => __( 'Parent Movies', 'plugintest' ),\n\t\t\t'not_found' => __( 'No Movies found.', 'plugintest' ),\n\t\t\t'not_found_in_trash' => __( 'No Movies found in Trash.', 'plugintest' ),\n\t\t\t'featured_image' => _x( 'Movie Cover Image', 'Overrides the “Featured Image” phrase for this post type. Added in 4.3', 'plugintest' ),\n\t\t\t'set_featured_image' => _x( 'Set cover image', 'Overrides the “Set featured image” phrase for this post type. Added in 4.3', 'plugintest' ),\n\t\t\t'remove_featured_image' => _x( 'Remove cover image', 'Overrides the “Remove featured image” phrase for this post type. Added in 4.3', 'plugintest' ),\n\t\t\t'use_featured_image' => _x( 'Use as cover image', 'Overrides the “Use as featured image” phrase for this post type. Added in 4.3', 'plugintest' ),\n\t\t\t'item_published' => __( 'New Movie Published.', 'plugintest' ),\n\t\t\t'item_updated' => __( 'Movie post updated.', 'plugintest' ),\n\t\t);\n\n\t\t$args = array(\n\t\t\t'labels' => $labels,\n\t\t\t'public' => true,\n\t\t\t'publicly_queryable' => true,\n\t\t\t'show_ui' => true,\n\t\t\t'show_in_menu' => true,\n\t\t\t'query_var' => true,\n\t\t\t'rewrite' => array( 'slug' => 'movie' ),\n\t\t\t'capability_type' => 'post',\n\t\t\t'hierarchical' => false,\n\t\t\t'has_archive' => true,\n\t\t\t'menu_position' => null,\n\t\t\t'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),\n\t\t\t'taxonomies' => array( 'category', 'post_tag' ), // Using wordpess category and tags.\n\t\t);\n\n\t\tregister_post_type( 'movie', $args );\n\t\tflush_rewrite_rules();\n\n\t\t$category_labels = array(\n\t\t\t'name' => esc_html__( 'Movies Categories', 'plugintest' ),\n\t\t\t'singular_name' => esc_html__( 'Movie Category', 'plugintest' ),\n\t\t\t'all_items' => esc_html__( 'Movies Categories', 'plugintest' ),\n\t\t\t'parent_item' => null,\n\t\t\t'parent_item_colon' => null,\n\t\t\t'edit_item' => esc_html__( 'Edit Category', 'plugintest' ),\n\t\t\t'update_item' => esc_html__( 'Update Category', 'plugintest' ),\n\t\t\t'add_new_item' => esc_html__( 'Add New Movie Category', 'plugintest' ),\n\t\t\t'new_item_name' => esc_html__( 'New Movie Name', 'plugintest' ),\n\t\t\t'menu_name' => esc_html__( 'Genre', 'plugintest' ),\n\t\t\t'search_items' => esc_html__( 'Search Categories', 'plugintest' ),\n\t\t);\n\n\t\t$category_args = array(\n\t\t\t'hierarchical' => false,\n\t\t\t'public' => true,\n\t\t\t'labels' => $category_labels,\n\t\t\t'show_ui' => true,\n\t\t\t'show_admin_column' => true,\n\t\t\t'rewrite' => array( 'slug' => 'genre' ),\n\t\t);\n\n\t\tregister_taxonomy( 'genre', array( self::$post_type ), $category_args );\n\t}", "public function registerPostTypes()\n {\n $projectLabels = array(\n 'name' => __( 'Projects'),\n 'singular_name' => __( 'Project'),\n 'menu_name' => __( 'Projects'),\n 'parent_item_colon' => __( 'Parent Project'),\n 'all_items' => __( 'All Projects'),\n 'view_item' => __( 'View Project'),\n 'add_new_item' => __( 'Add New Project'),\n 'add_new' => __( 'Add New'),\n 'edit_item' => __( 'Edit Project'),\n 'update_item' => __( 'Update Project'),\n 'search_items' => __( 'Search Project'),\n 'not_found' => __( 'Not Found'),\n 'not_found_in_trash' => __( 'Not found in Trash'),\n );\n $componentLabels = array(\n 'name' => __( 'Components'),\n 'singular_name' => __( 'Component'),\n 'menu_name' => __( 'Components'),\n 'parent_item_colon' => __( 'Parent Component'),\n 'all_items' => __( 'All Components'),\n 'view_item' => __( 'View Component'),\n 'add_new_item' => __( 'Add New Component'),\n 'add_new' => __( 'Add New'),\n 'edit_item' => __( 'Edit Component'),\n 'update_item' => __( 'Update Component'),\n 'search_items' => __( 'Search Component'),\n 'not_found' => __( 'Not Found'),\n 'not_found_in_trash' => __( 'Not found in Trash'),\n );\n $componentTypeTaxLabels = array(\n 'name' => __('Component types'),\n 'singular_name' => __('Component type'),\n 'search_items' => __( 'Search Component types' ),\n 'popular_items' => __( 'Popular Component types' ),\n 'all_items' => __( 'All Component types' ),\n 'parent_item' => null,\n 'parent_item_colon' => null,\n 'edit_item' => __( 'Edit Component type' ),\n 'update_item' => __( 'Update Component type' ),\n 'add_new_item' => __( 'Add New Component type' ),\n 'new_item_name' => __( 'New Component type Name' ),\n 'separate_items_with_commas' => __( 'Separate component types with commas' ),\n 'add_or_remove_items' => __( 'Add or remove component types' ),\n 'choose_from_most_used' => __( 'Choose from the most used ones' ),\n 'menu_name' => __( 'Component types' ),\n ); \n \n // Set other options for custom post types\n $projectArgs = array(\n 'label' => __( 'projects'),\n 'description' => __( 'Stuff that you have done or used'),\n 'labels' => $projectLabels,\n 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields'),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 6,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n \n $componentArgs = array(\n 'label' => __( 'components'),\n 'description' => __( 'Things used in projects'),\n 'labels' => $componentLabels,\n 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields'),\n 'taxonomies' => array('components'),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 7,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n \n $componentTypeTaxArgs = array(\n 'hierarchical' => false,\n 'labels' => $componentTypeTaxLabels,\n 'show_ui' => true,\n 'show_admin_column' => true,\n 'update_count_callback' => '_update_post_term_count',\n 'query_var' => true,\n 'rewrite' => array( 'slug' => 'type' ),\n );\n \n // Registering your Custom Post Type\n register_taxonomy('component_type', 'component', $componentTypeTaxArgs);\n register_post_type('component', $componentArgs);\n register_post_type( 'project', $projectArgs );\n }", "public static function post_type(){}", "function compendium_register_type($slug, $name, $pname, $dicon) {\n $pt_slug = $slug;\n $tax_slug = $slug . '-category';\n\n register_post_type($pt_slug, array(\n 'labels' => array(\n 'name' => $pname,\n 'singular_name' => $name,\n 'add_new' => 'Add New',\n 'add_new_item' => 'Add New '.$name,\n 'edit_item' => 'Edit '.$name,\n 'new_item' => 'New '.$name,\n 'view_item' => 'View '.$name,\n 'search_items' => 'Search '.$pname,\n 'not_found' => 'No '.$pname.' found',\n 'not_found_in_trash' => 'No '.$pname.' found in trash',\n ),\n 'public' => true,\n 'menu_position' => 35,\n 'supports' => array('title','editor','thumbnail','excerpt'),\n 'menu_icon' => $dicon,\n 'rewrite' => array(\n 'slug' => 'resource-center/' . $pt_slug,\n 'with_front' => true\n ),\n ));\n\n register_taxonomy($tax_slug, $pt_slug, array(\n 'labels' => array(\n 'name' => 'Categories',\n 'singular_name' => 'Category',\n ),\n 'hierarchical' => true,\n ));\n}", "function register_post_type(){\n \n $capability = acf_get_setting('capability');\n \n if(!acf_get_setting('show_admin'))\n $capability = false;\n \n register_post_type($this->post_type, array(\n 'label' => 'Options Page',\n 'description' => 'Options Page',\n 'labels' => array(\n 'name' => 'Options Pages',\n 'singular_name' => 'Options Page',\n 'menu_name' => 'Options Pages',\n 'edit_item' => 'Edit Options Page',\n 'add_new_item' => 'New Options Page',\n ),\n 'supports' => array('title'),\n 'hierarchical' => true,\n 'public' => false,\n 'show_ui' => true,\n 'show_in_menu' => 'edit.php?post_type=acf-field-group',\n 'menu_icon' => 'dashicons-layout',\n 'show_in_admin_bar' => false,\n 'show_in_nav_menus' => false,\n 'can_export' => false,\n 'has_archive' => false,\n 'rewrite' => false,\n 'exclude_from_search' => true,\n 'publicly_queryable' => false,\n 'capabilities' => array(\n 'publish_posts' => $capability,\n 'edit_posts' => $capability,\n 'edit_others_posts' => $capability,\n 'delete_posts' => $capability,\n 'delete_others_posts' => $capability,\n 'read_private_posts' => $capability,\n 'edit_post' => $capability,\n 'delete_post' => $capability,\n 'read_post' => $capability,\n ),\n 'acfe_admin_orderby' => 'title',\n 'acfe_admin_order' => 'ASC',\n 'acfe_admin_ppp' => 999,\n ));\n \n }", "public static function register_type() {\n\t\tregister_graphql_object_type(\n\t\t\t'PostTypeLabelDetails',\n\t\t\t[\n\t\t\t\t'description' => __( 'Details for labels of the PostType', 'wp-graphql' ),\n\t\t\t\t'fields' => [\n\t\t\t\t\t'name' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'General name for the post type, usually plural.', 'wp-graphql' ),\n\t\t\t\t\t],\n\t\t\t\t\t'singularName' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Name for one object of this post type.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->singular_name ) ? $labels->singular_name : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'addNew' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Default is ‘Add New’ for both hierarchical and non-hierarchical types.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->add_new ) ? $labels->add_new : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'addNewItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for adding a new singular item.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->add_new_item ) ? $labels->add_new_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'editItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for editing a singular item.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->edit_item ) ? $labels->edit_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'newItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the new item page title.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->new_item ) ? $labels->new_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'viewItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for viewing a singular item.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->view_item ) ? $labels->view_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'viewItems' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for viewing post type archives.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->view_items ) ? $labels->view_items : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'searchItems' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for searching plural items.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->search_items ) ? $labels->search_items : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'notFound' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label used when no items are found.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->not_found ) ? $labels->not_found : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'notFoundInTrash' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label used when no items are in the trash.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->not_found_in_trash ) ? $labels->not_found_in_trash : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'parentItemColon' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label used to prefix parents of hierarchical items.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->parent_item_colon ) ? $labels->parent_item_colon : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'allItems' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label to signify all items in a submenu link.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->all_items ) ? $labels->all_items : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'archives' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for archives in nav menus', 'wp-graphql' ),\n\t\t\t\t\t],\n\t\t\t\t\t'attributes' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the attributes meta box.', 'wp-graphql' ),\n\t\t\t\t\t],\n\t\t\t\t\t'insertIntoItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the media frame button.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->insert_into_item ) ? $labels->insert_into_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'uploadedToThisItem' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the media frame filter.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->uploaded_to_this_item ) ? $labels->uploaded_to_this_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'featuredImage' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the Featured Image meta box title.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->featured_image ) ? $labels->featured_image : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'setFeaturedImage' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for setting the featured image.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->set_featured_image ) ? $labels->set_featured_image : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'removeFeaturedImage' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for removing the featured image.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->remove_featured_image ) ? $labels->remove_featured_image : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'useFeaturedImage' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label in the media frame for using a featured image.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->use_featured_item ) ? $labels->use_featured_item : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'menuName' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the menu name.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->menu_name ) ? $labels->menu_name : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'filterItemsList' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the table views hidden heading.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->filter_items_list ) ? $labels->filter_items_list : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'itemsListNavigation' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the table pagination hidden heading.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->items_list_navigation ) ? $labels->items_list_navigation : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t\t'itemsList' => [\n\t\t\t\t\t\t'type' => 'String',\n\t\t\t\t\t\t'description' => __( 'Label for the table hidden heading.', 'wp-graphql' ),\n\t\t\t\t\t\t'resolve' => function( $labels ) {\n\t\t\t\t\t\t\treturn ! empty( $labels->items_list ) ? $labels->items_list : null;\n\t\t\t\t\t\t},\n\t\t\t\t\t],\n\t\t\t\t],\n\t\t\t]\n\t\t);\n\n\t}", "public function add_post_type( $name ) {\n\t\t$this->post_types[] = $name;\n\t}", "function pluginprefix_setup_post_type()\n{\n register_post_type('post-nasa-gallery', [\n 'label' => 'Nasa Images Posts',\n 'public' => true\n ]);\n}", "function zmpm_register_post_type() {\n\t\n\t$labels = array(\n\t\t'name' => 'Permissions',\n\t\t'singular_name' => 'Permission',\n\t\t'menu_name' => 'Permissions',\n\t\t'name_admin_bar' => 'Permission',\n\t\t'archives' => 'Permission Archives',\n\t\t'attributes' => 'Permission Attributes',\n\t\t'parent_item_colon' => 'Parent Permission:',\n\t\t'all_items' => 'Permissions',\n\t\t'add_new_item' => 'Add New Permission',\n\t\t'add_new' => 'Add New',\n\t\t'new_item' => 'New Permission',\n\t\t'edit_item' => 'Edit Permission',\n\t\t'update_item' => 'Update Permission',\n\t\t'view_item' => 'View Permission',\n\t\t'view_items' => 'View Permissions',\n\t\t'search_items' => 'Search Permission',\n\t\t'not_found' => 'Not found',\n\t\t'not_found_in_trash' => 'Not Found in Trash',\n\t\t'featured_image' => 'Featured Image',\n\t\t'set_featured_image' => 'Set featured image',\n\t\t'remove_featured_image' => 'Remove featured image',\n\t\t'use_featured_image' => 'Use as featured image',\n\t\t'insert_into_item' => 'Insert into permission',\n\t\t'uploaded_to_this_item' => 'Uploaded to this permission',\n\t\t'items_list' => 'Permissions list',\n\t\t'items_list_navigation' => 'Permissions list navigation',\n\t\t'filter_items_list' => 'Filter permissions list',\n\t);\n\t$args = array(\n\t\t'label' => 'Permission',\n\t\t'description' => 'ZingMap permissions',\n\t\t'labels' => $labels,\n\t\t'supports' => array( 'title' ),\n\t\t'hierarchical' => false,\n\t\t'public' => false,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => 'users.php',\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => 'dashicons-lock',\n\t\t'show_in_admin_bar' => true,\n\t\t'show_in_nav_menus' => false,\n\t\t'can_export' => true,\n\t\t'has_archive' => false,\n\t\t'exclude_from_search' => true,\n\t\t'publicly_queryable' => true,\n\t\t'capability_type' => 'page',\n\t);\n\tregister_post_type( 'zmpm_permission', $args );\n\t\n}", "function create_post_type() {\r\n\r\n\tregister_post_type( 'Editorials',\r\n\t// CPT Options\r\n\t\tarray(\r\n\t\t\t'labels' => array(\r\n\t\t\t\t'name' => __( 'Editorials' ),\r\n\t\t\t\t'singular_name' => __( 'Editorial' )\r\n\t\t\t),\r\n\t\t\t'public' => true,\r\n\t\t\t'has_archive' => true,\r\n\t\t\t'rewrite' => array('slug' => 'editorials'),\r\n\t\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'comments' ),\r\n \t'show_ui' => true,\r\n\t\t)\r\n\t);\r\n\tregister_post_type( 'Local news',\r\n\t// CPT Options\r\n\t\tarray(\r\n\t\t\t'labels' => array(\r\n\t\t\t\t\r\n\t\t\t\t'name' => __( 'Local news' ),\r\n\t\t\t\t'singular_name' => __( 'Local new' )\r\n\t\t\t),\r\n\t\t\t'public' => true,\r\n\t\t\t'has_archive' => true,\r\n\t\t\t'rewrite' => array('slug' => 'local news'),\r\n\t\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'comments' ),\r\n \t'show_ui' => true,\r\n\t\t)\r\n\t);\r\n}", "public function create_post_type() {\n\n register_post_type( self::POST_TYPE,\n array(\n\n 'labels' => array(\n 'name' => __( 'Fundraisers' ),\n 'singular_name' => __( 'Fundraiser' )\n ),\n 'description' => 'Fundraisers that allow users to purchase items through the WooCommerce Stores',\n 'menu_icon' => 'dashicons-chart-line',\n 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt',\n 'revisions' ),\n 'public' => true,\n 'has_archive' => true,\n 'rewrite' => array(\n 'slug' => __( 'fundraisers' ),\n 'with_front' => false\n )\n )\n );\n }", "static function register() {\n // register the post type\n register_post_type('sale-flat', array(\n\t\t\n\t\t\t'labels'=> array(\n\t\t\t\t'name' => _x( 'Eladó ingatlanok', 'theme-phrases' ),\n\t\t\t\t'singular_name' => _x( 'Eladó ingatlan', 'theme-phrases' ),\n\t\t\t\t'menu_name' => _x( 'Eladó ingatlanok', 'theme-phrases' ),\n\t\t\t\t'name_admin_bar' => _x( 'Eladó ingatlan', 'theme-phrases' ),\n\t\t\t\t'add_new' => _x( 'Új eladó ingatlan', 'theme-phrases' ),\n\t\t\t\t'add_new_item' => __( 'Új eladó ingatlan hozzáadása', 'theme-phrases' ),\n\t\t\t\t'new_item' => __( 'Új eladó ingatlan', 'theme-phrases' ),\n\t\t\t\t'edit_item' => __( 'Eladó ingatlan szerkesztése', 'theme-phrases' ),\n\t\t\t\t'view_item' => __( 'Eladó ingatlan megtekintése', 'theme-phrases' ),\n\t\t\t\t'all_items' => __( 'Összes eladó ingatlan', 'theme-phrases' ),\n\t\t\t\t'search_items' => __( 'Eladó ingatlan keresése', 'theme-phrases' ),\n\t\t\t\t'parent_item_colon' => __( 'Parent eladó ingatlan:', 'theme-phrases' ),\n\t\t\t\t'not_found' => __( 'Nincsenek eladó ingatlanok.', 'theme-phrases' ),\n\t\t\t\t'not_found_in_trash' => __( 'Nincsenek eladó ingatlanok a kukában.', 'theme-phrases' )\n\t\t\t),\n 'description' => __('Eladó ingatlanok', 'theme-phrases'),\n 'exclude_from_search' => true,\n 'publicly_queryable' => true,\n 'public' => true,\n 'show_ui' => true,\n 'auto-draft' => false,\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => true,\n 'menu_position' => 4,\n 'menu_icon'\t=> 'dashicons-tag',\n 'revisions' => false,\n 'hierarchical' => true,\n 'has_archive' => true,\n\t\t\t'supports' => array('title','editor','thumbnail'),\n 'rewrite' => false,\n 'can_export' => false,\n 'capabilities' => array (\n 'create_posts' => 'edit_posts',\n 'edit_post' => 'edit_posts',\n 'read_post' => 'edit_posts',\n 'delete_posts' => 'edit_posts',\n 'delete_post' => 'edit_posts',\n 'edit_posts' => 'edit_posts',\n 'edit_others_posts' => 'edit_posts',\n 'publish_posts' => 'edit_posts',\n 'read_private_posts' => 'edit_posts',\n ),\n 'register_meta_box_cb' => array('SaleFlatPostType', 'add_metabox') \n ));\n }", "public function register_estate_post_type() {\r\n $options = get_option( 'myhome_redux' );\r\n // define post type slug\r\n if ( ! empty( $options['mh-estate-slug'] ) ) {\r\n $slug = $options['mh-estate-slug'];\r\n } else {\r\n $slug = 'properties';\r\n }\r\n\r\n register_post_type( 'estate', array(\r\n 'labels' => array(\r\n 'name'\t\t\t => esc_html__( 'Properties', 'myhome-core' ),\r\n 'singular_name'\t => esc_html__( 'Property', 'myhome-core' ),\r\n 'menu_name' => esc_html__( 'Properties', 'myhome-core' ),\r\n 'name_admin_bar' => esc_html__( 'Add New Property', 'myhome-core' ),\r\n 'add_new' => esc_html__( 'Add New Property', 'myhome-core' ),\r\n 'add_new_item' => esc_html__( 'Add New Property', 'myhome-core' ),\r\n 'new_item' => esc_html__( 'New Property', 'myhome-core' ),\r\n 'edit_item' => esc_html__( 'Edit Property', 'myhome-core' ),\r\n 'view_item' => esc_html__( 'View Property', 'myhome-core' ),\r\n 'all_items' => esc_html__( 'Properties', 'myhome-core' ),\r\n 'search_items' => esc_html__( 'Search property', 'myhome-core' ),\r\n 'not_found' => esc_html__( 'No Property Found found.', 'myhome-core' ),\r\n 'not_found_in_trash' => esc_html__( 'No Property found in Trash.', 'myhome-core' )\r\n ),\r\n 'show_in_rest' => true,\r\n 'query_var' => true,\r\n 'public'\t\t => true,\r\n 'has_archive'\t => true,\r\n 'menu_position' => 21,\r\n 'menu_icon' => 'dashicons-admin-home',\r\n 'capability_type' => array( 'estate', 'estates' ),\r\n 'map_meta_cap' => true,\r\n 'rewrite'\t\t => array( 'slug' => $slug ),\r\n 'supports'\t\t => array(\r\n 'title',\r\n 'author',\r\n 'editor',\r\n 'thumbnail',\r\n )\r\n ) );\r\n }", "public function register() {\n\n\t\t// Register\n\t\tregister_post_type(\n\t\t\tstatic::$ID,\n\t\t\tarray(\n\t\t\t\t// Labels\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => __( 'FAQs', 'nxtheme' ),\n\t\t\t\t\t'singular_name' => __( 'FAQ', 'nxtheme' ),\n\t\t\t\t\t'add_new_item' => __( 'Add New FAQ', 'nxtheme' ),\n\t\t\t\t\t'edit_item' => __( 'Edit FAQ', 'nxtheme' ),\n\t\t\t\t\t'update_item' => __( 'Update FAQ', 'nxtheme' ),\n\t\t\t\t\t'add_new' => __( 'Add new FAQ', 'nxtheme' ),\n\t\t\t\t),\n\t\t\t\t'label' => __( 'FAQs', 'nxtheme' ),\n\t\t\t\t'description' => __( 'Sharespace FAQs', 'nxtheme' ),\n\n\t\t\t\t// Backend\n\t\t\t\t'hierarchical' => false,\n\t\t\t\t'show_ui' => true,\n\t\t\t\t'show_in_menu' => true,\n\t\t\t\t'menu_position' => 9, // 20 = below comments\n 'menu_icon' => 'dashicons-editor-help',\n\t\t\t\t'supports' => array(\n\t\t\t\t\t'title',\n\t\t\t\t\t'editor',\n\t\t\t\t\t//'thumbnail',\n\t\t\t\t\t//'page-attributes',\n\t\t\t\t\t'revisions',\n\t\t\t\t),\n\t\t\t\t'show_in_nav_menus' => false,\n\n\t\t\t\t// Fronted\n\t\t\t\t'has_archive' => false,\n\t\t\t\t'public' => false,\n\t\t\t\t'exclude_from_search' => true,\n\t\t\t)\n\t\t);\n\t}", "public function register_post_type()\n\t{\n\n\t\tregister_post_type( 'partner', array(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => _x( 'Partners', 'post type general name', 'custom-post-type-partners' ),\n\t\t\t\t'singular_name' => _x( 'Partner', 'post type singular name', 'custom-post-type-partners' ),\n\t\t\t\t'add_new' => _x( 'Add New', 'Partner', 'custom-post-type-partners' ),\n\t\t\t\t'add_new_item' => __( 'Add New Partner', 'custom-post-type-partners' ),\n\t\t\t\t'edit_item' => __( 'Edit Partner', 'custom-post-type-partners' ),\n\t\t\t\t'new_item' => __( 'New Partner', 'custom-post-type-partners' ),\n\t\t\t\t'all_items' => __( 'All Partners', 'custom-post-type-partners' ),\n\t\t\t\t'view_item' => __( 'View Partner', 'custom-post-type-partners' ),\n\t\t\t\t'search_items' => __( 'Search Partners', 'custom-post-type-partners' ),\n\t\t\t\t'not_found' => __( 'No Partners found', 'custom-post-type-partners' ),\n\t\t\t\t'not_found_in_trash' => __( 'No Partners found in Trash', 'custom-post-type-partners' ),\n\t\t\t\t'parent_item_colon' => '',\n\t\t\t\t'menu_name' => __( 'Partners', 'custom-post-type-partners' )\n\t\t\t),\n\t\t\t'public' => TRUE,\n\t\t\t'publicly_queryable' => TRUE,\n\t\t\t'show_ui' => TRUE,\n\t\t\t'show_in_menu' => TRUE,\n\t\t\t'query_var' => TRUE,\n\t\t\t'rewrite' => TRUE,\n\t\t\t'capability_type' => 'post',\n\t\t\t'has_archive' => FALSE,\n\t\t\t'hierarchical' => FALSE,\n\t\t\t'menu_position' => NULL,\n\t\t\t'menu_icon' => 'dashicons-admin-links',\n\t\t\t'supports' => array( 'title', 'editor', 'thumbnail', 'page-attributes' )\n\t\t) );\n\n\t}", "public function registered_post_type( $post_type, $args ) {\n\n\t\tglobal $wp_post_types, $wp_rewrite, $wp;\n\n\t\tif( $args->_builtin or !$args->publicly_queryable or !$args->show_ui ){\n\t\t\treturn false;\n\t\t}\n\t\t$permalink = get_option( $post_type.'_structure' );\n\n\t\tif( !$permalink ) {\n\t\t\t$permalink = $this->default_structure;\n\t\t}\n\n\t\t$permalink = '%'.$post_type.'_slug%'.$permalink;\n\t\t$permalink = str_replace( '%postname%', '%'.$post_type.'%', $permalink );\n\n\t\tadd_rewrite_tag( '%'.$post_type.'_slug%', '('.$args->rewrite['slug'].')','post_type='.$post_type.'&slug=' );\n\n\t\t$taxonomies = get_taxonomies( array(\"show_ui\" => true, \"_builtin\" => false), 'objects' );\n\t\tforeach ( $taxonomies as $taxonomy => $objects ):\n\t\t\t$wp_rewrite->add_rewrite_tag( \"%tax-$taxonomy%\", '(.+?)', \"$taxonomy=\" );\n\t\tendforeach;\n\n\t\t$permalink = trim($permalink, \"/\" );\n\t\tadd_permastruct( $post_type, $permalink, $args->rewrite );\n\n\t}", "public function cws_register_cpt() {\n\n\t\tforeach ( $this->cpts as $key => $value ) {\n\n\t\t\tregister_post_type( $key, $value );\n\n\t\t}\n\n\t}", "function humcore_register_post_type() {\n\n\t// Define the labels to be used by the post type humcore_deposits.\n\t$labels = array(\n\t\t// 'name' => _x( 'HumCORE Deposits', 'post type general name', 'humcore_domain' ),\n\t\t'singular_name' => _x( 'Deposit', 'post type singular name', 'humcore_domain' ),\n\t\t'menu_name' => _x( 'HumCORE Deposits', 'admin menu', 'humcore_domain' ),\n\t\t'name_admin_bar' => _x( 'Deposit', 'add new on admin bar', 'humcore_domain' ),\n\t\t'add_new' => _x( 'Add New', 'add new', 'humcore_domain' ),\n\t\t'add_new_item' => __( 'Add New Deposits', 'humcore_domain' ),\n\t\t'new_item' => __( 'New Deposit', 'humcore_domain' ),\n\t\t'edit_item' => __( 'Edit Deposit', 'humcore_domain' ),\n\t\t'view_item' => __( 'View Deposit', 'humcore_domain' ),\n\t\t'all_items' => __( 'All Deposits', 'humcore_domain' ),\n\t\t'search_items' => __( 'Search Deposits', 'humcore_domain' ),\n\t\t'not_found' => __( 'No Deposits found', 'humcore_domain' ),\n\t\t'not_found_in_trash' => __( 'No Deposits found in Trash', 'humcore_domain' ),\n\t\t'parent_item_colon' => '',\n\t);\n\n\t$post_type_args = array(\n\t\t'label' => __( 'HumCORE Deposits', 'humcore_domain' ),\n\t\t'labels' => $labels,\n\t\t'public' => false,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'show_in_admin_bar' => false,\n\t\t'query_var' => false,\n\t\t'rewrite' => array(\n\t\t\t'slug' => 'humcore_deposit',\n\t\t\t'with_front' => true,\n\t\t),\n\t\t'capability_type' => 'post',\n\t\t'has_archive' => false,\n\t\t'hierarchical' => true,\n\t\t'menu_position' => null,\n\t\t'supports' => array( 'title', 'author', 'excerpt' ),\n\t\t// 'supports' => array( 'title', 'author', 'excerpt', 'custom-fields', revisions', 'page-attributes' ),\n\t\t'register_meta_box_cb' => 'humcore_add_post_type_metabox',\n\t);\n\n\tregister_post_type( 'humcore_deposit', $post_type_args );\n}", "function register_type( $post_type_singular, $post_type_plural, $options = array() ) {\n\n\t$text_domain = 'sgdf';\n\n\t$labels = array(\n\t\t'name' => _x( ucwords( $post_type_plural ), 'post type general name', $text_domain ),\n\t\t'singular_name' => _x( ucwords( $post_type_singular ), 'post type singular name', $text_domain ),\n\t\t'menu_name' => _x( ucwords( $post_type_plural ), 'admin menu', $text_domain ),\n\t\t'name_admin_bar' => _x( ucwords( $post_type_singular ), 'add new on admin bar', $text_domain ),\n\t\t'add_new' => _x( 'Add New', 'book', $text_domain ),\n\t\t'add_new_item' => __( 'Add New ' . ucwords( $post_type_singular ), $text_domain ),\n\t\t'new_item' => __( 'New ' . ucwords( $post_type_singular ), $text_domain ),\n\t\t'edit_item' => __( 'Edit ' . ucwords( $post_type_singular ), $text_domain ),\n\t\t'view_item' => __( 'View ' . ucwords( $post_type_singular ), $text_domain ),\n\t\t'all_items' => __( 'All ' . ucwords( $post_type_plural ), $text_domain ),\n\t\t'search_items' => __( 'Search ' . ucwords( $post_type_plural ), $text_domain ),\n\t\t'parent_item_colon' => __( 'Parent ' . ucwords( $post_type_plural ) . ':', $text_domain ),\n\t\t'not_found' => __( 'No ' . $post_type_plural . ' found.', $text_domain ),\n\t\t'not_found_in_trash' => __( 'No ' . $post_type_plural . ' found in Trash.', $text_domain )\n\t);\n\n\t$args = array(\n\t\t'labels' => $labels,\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'show_ui' => true,\n\t\t'show_in_menu' => true,\n\t\t'query_var' => true,\n\t\t'rewrite' => array( 'slug' => $post_type_singular ),\n\t\t'capability_type' => 'post',\n\t\t'has_archive' => true,\n\t\t'hierarchical' => false,\n\t\t'menu_position' => null,\n\t\t'menu_icon' \t => null,\n\t\t'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )\n\t);\n\n\tforeach ($options as $key => $option) {\n\t\t$args[$key] = $option;\n\t}\n\n\treturn register_post_type( $post_type_singular, $args );\n}", "public function create_post_type() {\n\t\t\n \t\tregister_post_type(self::POST_TYPE,\n \t\t\tarray(\n \t\t\t\t'labels' => array(\n \t\t\t\t\t'name' => \"Custom\",\n \t\t\t\t\t'singular_name' => __(ucwords(str_replace(\"_\", \" \", self::POST_TYPE)))\n \t\t\t\t),\n \t\t\t\t'public' => true,\n \t\t\t\t'has_archive' => true,\n \t\t\t\t'description' => __(\"This is WP Custom Post Type\"),\n \t\t\t\t'supports' => array('title', 'editor', 'excerpt','thumbnail','custom-fields'),\n \t\t\t)\n \t\t);\n\n\t\t\tregister_taxonomy(\n\t\t\t\t'custom-category',\n\t\t\t\tself::POST_TYPE,\n\t\t\t\tarray(\n\t\t\t\t\t'label' => __( 'Category' ),\n\t\t\t\t\t'rewrite' => array( 'slug' => 'custom-category' ),\n\t\t\t\t\t'hierarchical' => true,\n\t\t\t\t)\n\t\t\t);\n\t\t}", "public function register() {\n\t\t$registration = array(\n\t\t\t'labels' => $this->labels(),\n\t\t\t'supports' => $this->supports(),\n\t\t\t'public' => $this->options('public'),\n\t\t\t'taxonomies' => $this->options('taxonomies'),\n\t\t\t'_builtin' => $this->options('built_in')\n\t\t);\n\n\t\tif ($this->options('use_order')) {\n\t\t\t$registration = array_merge($registration, array('hierarchical' => True,));\n\t\t}\n\n\t\tregister_post_type($this->options('name'), $registration);\n\n\t\tif ($this->options('use_shortcode')) {\n\t\t\tadd_shortcode($this->options('name').'-list', array($this, 'shortcode'));\n\t\t}\n\t}", "public function register()\n {\n foreach ($this->types as $type) {\n if (!class_exists($type)) {\n trigger_error('Missing post type class: ' . $type . '.');\n continue;\n }\n $typeInstance = with(new $type)->init();\n $this->resolvedAlias[$type] = $this->resolvedTypes[$typeInstance->id] = $typeInstance;\n }\n }", "public function init_register() {\n\n $event_type = VF_Events::type();\n $event_topic = VF_Events::topic();\n\n register_post_type($event_type, array(\n 'labels' => $this->get_labels(),\n 'description' => __('Events', 'vfwp'),\n 'public' => true,\n 'hierarchical' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'show_in_rest' => true,\n 'rest_base' => \"{$event_type}s\",\n 'menu_position' => 20,\n 'menu_icon' => 'dashicons-calendar',\n 'capability_type' => 'page',\n 'supports' => array('title', 'editor', 'page-attributes', 'excerpt', 'revisions'),\n 'has_archive' => true,\n 'rewrite' => array(\n 'slug' => 'events',\n 'with_front' => false,\n ),\n 'query_var' => true,\n 'can_export' => true,\n 'delete_with_user' => false,\n 'taxonomies' => array(\n 'embl_taxonomy',\n 'event_type',\n 'event_topic'\n ),\n ));\n/*\n register_taxonomy(\"{$event_type}_type\", array($event_type), array(\n 'labels' => $this->get_type_labels(),\n 'hierarchical' => true,\n 'show_ui' => true,\n 'show_admin_column' => true,\n 'query_var' => true,\n 'publicly_queryable' => true,\n 'show_in_rest' => false,\n 'show_in_nav_menus' => false,\n 'rewrite' => array(\n 'slug' => 'type'\n ),\n ));\n\n register_taxonomy(\"{$event_topic}_topic\", array($event_topic), array(\n 'labels' => $this->get_topic_labels(),\n 'hierarchical' => true,\n 'show_ui' => true,\n 'show_admin_column' => true,\n 'query_var' => true,\n 'publicly_queryable' => true,\n 'show_in_rest' => false,\n 'show_in_nav_menus' => false,\n 'rewrite' => array(\n 'slug' => 'topic'\n ),\n ));\n */\n }", "function create_post_type() {\r\n register_post_type( 'nyheter',\r\n array(\r\n 'labels' => array(\r\n 'name' => __( 'Nyheter' ),\r\n 'singular_name' => __( 'Nyheter' )\r\n ),\r\n 'public' => true,\r\n 'has_archive' => true,\r\n 'supports' => array('title', 'editor', 'thumbnail')\r\n )\r\n );\r\n}", "function create_posttype() \n {\n register_post_type( 'mist_employee',\n array(\n 'labels' => array(\n 'name' => __( 'Employees' ),\n 'singular_name' => __( 'Employee' )\n ),\n \n 'public' => true,\n 'has_archive' => true,\n 'rewrite' => array('slug' => 'employees'),\n 'supports' => array('title','editor','thumbnail','excerpt'),\n 'menu_icon' => 'dashicons-businessman'\n )\n );\n register_post_type( 'mist_message',\n array(\n 'labels' => array(\n 'name' => __( 'Person Messages' ),\n 'singular_name' => __( 'Message' ),\n ),\n \n 'public' => true,\n 'has_archive' => true,\n 'rewrite' => array('slug' => 'message'),\n 'supports' => array('title','editor','thumbnail','excerpt'),\n 'menu_icon' => 'dashicons-testimonial'\n )\n );\n add_post_type_support('mist_message', 'excerpt');\n \n }", "function add_custom_post_type() \n {\n // add custom type evenementen\n $labels = array(\n 'name' => _x('Quotes', 'post type general name', $this->localization_domain),\n 'singular_name' => _x('Quote', 'post type singular name', $this->localization_domain),\n 'add_new' => _x('Add Quote', 'event', $this->localization_domain),\n 'add_new_item' => __('Add New Quote', $this->localization_domain),\n 'edit_item' => __('Edit Quote', $this->localization_domain),\n 'new_item' => __('New Quote', $this->localization_domain),\n 'view_item' => __('View Quote', $this->localization_domain),\n 'search_items' => __('Search Quotes', $this->localization_domain),\n 'not_found' => __('No Quotes found', $this->localization_domain),\n 'not_found_in_trash' => __('No Quotes found in Trash', $this->localization_domain), \n 'parent_item_colon' => ''\n );\n $type_args = array(\n 'labels' => $labels,\n 'description' => __('bbQuotations offers a simple quotes custom post type. Useful for pull quotes or just random quotes on your site.',\n $this->localization_domain),\n 'public' => false,\n 'publicly_queryable' => false,\n 'show_ui' => true, \n 'query_var' => true,\n 'rewrite' => array('slug' => $this->options['bbquotations-slug']),\n 'capability_type' => 'post',\n 'hierarchical' => false,\n 'menu_position' => 5,\n 'supports' => array('title','editor','author')\n ); \n register_post_type( $this->custom_post_type_name, $type_args);\n }", "private function initCustomPostType(){\n //Instantiate our custom post type object\n $this->cptWPDS = new PostType($this->wpdsPostType);\n \n //Set our custom post type properties\n $this->cptWPDS->setSingularName($this->wpdsPostTypeName);\n $this->cptWPDS->setPluralName($this->wpdsPostTypeNamePlural);\n $this->cptWPDS->setMenuName($this->wpdsPostTypeNamePlural);\n $this->cptWPDS->setLabels('Add New', 'Add New '.$this->wpdsPostTypeName, 'Edit '.$this->wpdsPostTypeName, 'New '.$this->wpdsPostTypeName, 'All '.$this->wpdsPostTypeNamePlural, 'View '.$this->wpdsPostTypeNamePlural, 'Search '.$this->wpdsPostTypeNamePlural, 'No '.strtolower($this->wpdsPostTypeNamePlural).' found', 'No '.strtolower($this->wpdsPostTypeNamePlural).' found in the trash');\n $this->cptWPDS->setMenuIcon('dashicons-welcome-write-blog');\n $this->cptWPDS->setSlug($this->wpdsPostType);\n $this->cptWPDS->setDescription('Writings from the universe');\n $this->cptWPDS->setShowInMenu(true);\n $this->cptWPDS->setPublic(true);\n $this->cptWPDS->setTaxonomies([$this->wpdsPostType]);\n $this->cptWPDS->removeSupports(['title']);\n \n //Register custom post type\n $this->cptWPDS->register();\n }", "function create_post_type(){\n register_post_type('recipes', [ \n 'labels' => [\n 'name' => 'Recipes', //Etikett i plural Etikett i singular\n 'singular_name' => 'Recipe', //Vad som ska stå i ”Lägg till...” knappen\n 'add_new' => 'New Recipe', //Vad som ska stå i ”Lägg till ny...” knappen\n 'add_new_item' => 'New Recipe', //Vad som ska stå i ”Ny...” länken\n 'edit_item' => 'Edit Recipe', //Vad som ska stå i ”Redigera...” länken\n 'new_item' => 'New Recipe', //Vad som ska stå i ”Ny...” länken\n 'search_items' => 'Search for Recipe', //Vad som ska stå i sökrutan i listningen\n 'not_found' => 'No Recipe Found', \n 'all_items' => 'All Recipes', //Vad som ska stå i ”Alla...” länken\n ],\n 'supports' => array( 'thumbnail' ),\n 'description' => 'The Big Tasty!', //En kort beskrivning av posttypen\n 'public' => true, //Om och hur posttypen ska visas för olika användare\n 'exclude_from_search' => false, //Om posttypens poster ska exkluderas vid sökning\n 'show_ui' => true, //Om posttypen ska kunna hanteras från admin\n 'show_in_nav_menus' => true, //Om poster av posttypen ska kunna läggas till i menyer\n 'show_in_menu' => true, //Vart posttypen ska listas i admin (vänster eller topp)\n 'show_in_admin_bar' => true, //Om posttypen ska visas i toppbar’en\n 'menu_position' => 10, //Vart i vänstermenyn posttypen ska visas\n 'hierarchical' => false, //Om poster i posttypen ska kunna ha föräldrar, likt Sidor\n 'menu_icon' => 'dashicons-food', //Ikon för posttypen\n 'supports' => array('title' , 'editor'), //Vad som ska synas när man skapar/redigerar en post \n 'taxonomies' => array('category'), //Vilka taxonomier som ska tillhöra posttypen\n 'has_archive' => true, //Om posttypen ska ha arkivsida\n 'rewrite' => [ //Hur posttypens rewrites ska hanteras...\n 'slug' => 'recipe', //Permalänkstrukturen för posttypen\n 'with_front' => true //Om permalänkarna ska låta föregås av sluggen\n ] \n ]);\n\n}", "public function register_content_type() {\n\t\t$labels = array(\n\t\t\t'name' => 'Honor Rolls',\n\t\t\t'singular_name' => 'Honor Roll',\n\t\t\t'add_new' => 'Add New',\n\t\t\t'add_new_item' => 'Add New Honor Roll',\n\t\t\t'edit_item' => 'Edit Honor Roll',\n\t\t\t'new_item' => 'New Honor Roll',\n\t\t\t'all_items' => 'All Honor Rolls',\n\t\t\t'view_item' => 'View Honor Rolls',\n\t\t\t'search_items' => 'Search Honor Rolls',\n\t\t\t'not_found' => 'No Honor Rolls found',\n\t\t\t'not_found_in_trash' => 'No Honor Rolls found in Trash',\n\t\t\t'menu_name' => 'Honor Rolls',\n\t\t);\n\n\t\t$args = array(\n\t\t\t'labels' => $labels,\n\t\t\t'public' => false,\n\t\t\t'publicly_queryable' => false,\n\t\t\t'show_ui' => true,\n\t\t\t'show_in_menu' => true,\n\t\t\t'query_var' => true,\n\t\t\t'rewrite' => false,\n\t\t\t'has_archive' => false,\n\t\t\t'hierarchical' => false,\n\t\t\t'supports' => array( 'title' ),\n\t\t);\n\t\tregister_post_type( $this::$content_type_slug, $args );\n\t}", "function wpmudev_create_post_type() {\n\t$labels = array(\n \t\t'name' => 'Actividades',\n \t'singular_name' => 'Actividad',\n \t'add_new' => 'Añade Nueva Actividad',\n \t'add_new_item' => 'Añade una nueva Actividad',\n \t'edit_item' => 'Edita la Actividad',\n \t'new_item' => 'Nueva Actividad',\n \t'all_items' => 'Todas las Actividades',\n \t'view_item' => 'Ver Actividad',\n \t'search_items' => 'Buscar Actividades',\n \t'not_found' => 'No se han encontrado Actividades',\n \t'not_found_in_trash' => 'No se han encontrado Actividades en la Papelera', \n \t'parent_item_colon' => '',\n \t'menu_name' => 'Actividades',\n );\n \n $args = array(\n\t\t'labels' => $labels,\n\t\t'has_archive' => true,\n \t\t'public' => true,\n\t\t'supports' => array( 'title', 'custom-fields', 'thumbnail', 'comments', 'page-attributes', 'author' ),\n\t\t'exclude_from_search' => false,\n\t\t'capability_type' => 'post',\n\t\t//'map_meta_caps' => true,\n\t\t'rewrite' => array( 'slug' => 'actividades' ),\n\t);\n\t\n\tregister_post_type( 'actividad', $args );\n}", "public function init_post_type() {\n\t\t\t\n\t\t\t$labels = array(\n\t\t\t\t'name'\t\t\t\t=> 'Meetups',\n\t\t\t\t'new_item'\t\t\t=> 'Neues Meetup',\n\t\t\t\t'singular_name'\t\t=> 'Meetup',\n\t\t\t\t'view_item'\t\t\t=> 'Zeige Meetups',\n\t\t\t\t'edit_item'\t\t\t=> 'Editiere Meetup',\n\t\t\t\t'add_new_item'\t\t=> 'Meetup hinzuf&uuml;gen',\n\t\t\t\t'not_found'\t\t\t=> 'Kein Meetup gefunden',\n\t\t\t\t'search_items'\t\t=> 'Durchsuche Meetups',\n\t\t\t\t'parent_item_colon' => ''\n\t\t\t);\n\t\t\t\n\t\t\t$supports = array(\n\t\t\t\t'title',\n\t\t\t\t'editor',\n\t\t\t\t'comments',\n\t\t\t);\n\t\t\t\n\t\t\t$args = array(\n\t\t\t\t'public'\t\t\t\t=> TRUE,\n\t\t\t\t'publicly_queryable'\t=> TRUE,\n\t\t\t\t'show_ui'\t\t\t\t=> TRUE, \n\t\t\t\t'query_var'\t\t\t\t=> TRUE,\n\t\t\t\t'capability_type'\t\t=> 'post',\n\t\t\t\t'hierarchical'\t\t\t=> FALSE,\n\t\t\t\t'menu_position'\t\t\t=> NULL,\n\t\t\t\t'supports'\t\t\t\t=> $supports,\n\t\t\t\t'has_archive'\t\t\t=> TRUE,\n\t\t\t\t'rewrite'\t\t\t\t=> TRUE,\n\t\t\t\t'labels'\t\t\t\t=> $labels\n\t\t\t);\n\t\t\t\n\t\t\tregister_post_type( 'wpmeetups', $args );\n\t\t}", "function create_post_type() {\n\n // register external_post as a Custom Post Type\n register_post_type( 'external_post', \n array( \n 'labels' => array( \n 'name' => __('External Posts'), \n 'singular_name' => __('External Post') \n ),\n 'public' => true,\n 'menu_position' => 5,\n 'supports' => array('title', 'excerpt'),\n 'rewrite' => array('slug' => 'external','with_front' => false) \n ) \n ); \n\n // connect external_post to category taxonomy\n register_taxonomy_for_object_type('category', 'external_post');\n register_taxonomy_for_object_type('post_tag', 'external_post');\n\n\n // register wp_tool as a Custom Post Type\n register_post_type('wp_tool',\n array( \n 'labels' => array( \n 'name' => __('WordPress Tools'), \n 'singular_name' => __('WordPress Tool') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'author', 'editor', 'excerpt', 'thumbnail', 'post-formats', 'revisions', 'meta_info'),\n 'rewrite' => array('slug' => 'tool','with_front' => false) \n ) \n );\n\n // connect wp_tool to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'wp_tool');\n register_taxonomy_for_object_type('category', 'wp_tool');\n\n\n // reregister default post so we can set a custom slug\n register_post_type('post', array(\n 'labels' => array(\n 'name_admin_bar' => _x('Post', 'add new on admin bar' ),\n ),\n 'public' => true,\n '_builtin' => false, \n '_edit_link' => 'post.php?post=%d', \n 'capability_type' => 'post',\n 'map_meta_cap' => true,\n 'show_in_menu' => false,\n 'hierarchical' => false,\n 'rewrite' => array('slug' => 'article'),\n 'query_var' => false,\n 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats', 'column_info'),\n )); \n\n // register external_tool as a Custom Post Type\n register_post_type('external_tool',\n array(\n 'labels' => array( \n 'name' => __('External Tools'), \n 'singular_name' => __('External Tool') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'author', 'excerpt', 'thumbnail', 'revisions', 'meta_info'),\n 'rewrite' => array('slug' => 'special','with_front' => false) \n ) \n ); \n\n // connect external_tool to category taxonomy\n register_taxonomy_for_object_type('category', 'external_tool');\n register_taxonomy_for_object_type('meta_info', 'external_tool');\n\n\n // register city_journal as a Custom Post Type\n register_post_type('city_journal',\n array(\n 'labels' => array( \n 'name' => __('CityJournal Entry'),\n 'singular_name' => __('CityJournal Entry')\n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'editor', 'author', 'excerpt', 'thumbnail', 'revisions', 'meta_info', 'comments'),\n 'rewrite' => array('slug' => 'cityjournal','with_front' => false) \n ) \n ); \n\n // connect city_journal to category taxonomy\n register_taxonomy_for_object_type('category', 'city_journal');\n register_taxonomy_for_object_type('meta_info', 'city_journal'); \n\n\n // register people_project as a Custom Post Type\n register_post_type('people_project',\n array(\n 'labels' => array( \n 'name' => __('People & Projects'),\n 'singular_name' => __('People & Project')\n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'excerpt', 'thumbnail', 'meta_info'),\n ) \n ); \n\n // connect people_project to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'people_project'); \n\n\n register_post_type('discussion',\n array( \n 'labels' => array( \n 'name' => __('Discussions'), \n 'singular_name' => __('Discussion') \n ), \n 'public' => true, \n 'menu_position' => 5, \n 'supports' => array('title', 'editor', 'excerpt', 'thumbnail', 'post-formats', 'revisions', 'meta_info', 'comments'),\n 'rewrite' => array('slug' => 'discussion','with_front' => false) \n ) \n );\n\n // connect discussion to category taxonomy\n register_taxonomy_for_object_type('meta_info', 'discussion');\n register_taxonomy_for_object_type('category', 'discussion');\n\n}", "function stock_toolkit_custom_post()\n\t{\n\tregister_post_type('slide', array(\n\t\t'labels' => array(\n\t\t\t'name' => __('Slides') ,\n\t\t\t'singular_name' => __('Slide')\n\t\t) ,\n\t\t'supports' => array(\n\t\t\t'title',\n\t\t\t'editor',\n\t\t\t'custom-fields',\n\t\t\t'thumbnail',\n\t\t\t'page-attributes'\n\t\t) ,\n\t\t'public' => false,\n\t\t'show_ui' => true\n\t));\n\t}", "public function register(){\n\t\t\n\t\t$args = $this->get_args();\n\t\t\n\t\t$label = $this->get_label();\n\t\t\n\t\tif ( is_array( $label ) ){\n\t\t\t\n\t\t\t$args['labels'] = $label;\n\t\t\t\n\t\t} else {\n\t\t\t\n\t\t\t$args['label'] = $label;\n\t\t\t\n\t\t} // end if\t\n\t\t\n\t\tregister_taxonomy( $this->get_slug(), $this->get_post_types() , $args );\n\t\t\n\t\t$this->pre_populate();\n\t\t\n\t}", "private static function register_entries_post_type() {\n\t\tif ( post_type_exists( self::$entries_post_type ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t$post_type_args = apply_filters(\n\t\t\t'wphf_register_post_type_' . self::$entries_post_type,\n\t\t\tarray(\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => __( 'Form Entires', 'fff-rest-contact-form' ),\n\t\t\t\t\t'singular_name' => __( 'Form Entry', 'fff-rest-contact-form' ),\n\t\t\t\t),\n\t\t\t\t'public' => false,\n\t\t\t\t'show_ui' => true,\n\t\t\t\t'supports' => false,\n\t\t\t)\n\t\t);\n\n\t\tregister_post_type( self::$entries_post_type, $post_type_args );\n\t}", "function ks_create_post_type() {\n\tregister_post_type( 'image-entry',\n\t\tarray(\n\t\t\t'labels' => array(\n\t\t\t\t'name' => __( 'Comp. Entries', 'kilpailusivu' ),\n\t\t\t\t'singular_name' => __( 'Entry', 'kilpailusivu' ),\n\t\t\t\t'add_new' => __( 'Add New', 'kilpailusivu' ),\n\t\t\t\t'add_new_item' => __( 'Add New Entry', 'kilpailusivu' ),\n\t\t\t\t'edit' => __( 'Edit', 'kilpailusivu' ),\n\t\t\t\t'edit_item' => __( 'Edit Entry', 'kilpailusivu' ),\n\t\t\t\t'new_item' => __( 'New Entry', 'kilpailusivu' ),\n\t\t\t\t'view' => __( 'View', 'kilpailusivu' ),\n\t\t\t\t'view_item' => __( 'View Entry', 'kilpailusivu' ),\n\t\t\t\t'search_items' => __( 'Search Entries', 'kilpailusivu' ),\n\t\t\t\t'not_found' => __( 'No Entries found', 'kilpailusivu' ),\n\t\t\t\t'not_found_in_trash' => __( 'No Entries found in Trash', 'kilpailusivu' )\n\t\t\t),\n\t\t\t'public' => true,\n\t\t\t'hierarchical' => true,\n\t\t\t'has_archive' => true,\n\t\t\t'supports' => array(\n\t\t\t\t'title',\n\t\t\t),\n\t\t\t'menu_icon' => 'dashicons-smiley',\n\t\t\t'can_export' => true,\n\t\t\t'taxonomies' => array()\n\t\t) );\n}", "public function register_post_types() {\n $args = array(\n 'description' => '',\n 'public' => true,\n 'publicly_queryable' => true,\n 'show_in_nav_menus' => false,\n 'show_in_admin_bar' => true,\n 'exclude_from_search' => false,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'menu_position' => 12,\n 'menu_icon' => 'dashicons-portfolio',\n 'can_export' => true,\n 'delete_with_user' => false,\n 'hierarchical' => false,\n // 'has_archive' => option::get( 'portfolio_root' ),\n 'query_var' => 'portfolio_item',\n 'show_in_rest' => true,\n\n /* The rewrite handles the URL structure. */\n 'rewrite' => array(\n 'slug' => trim( option::get( 'portfolio_root' ) ),\n 'with_front' => false,\n 'pages' => true,\n 'feeds' => true,\n 'ep_mask' => EP_PERMALINK,\n ),\n\n /* What features the post type supports. */\n 'supports' => array(\n 'title',\n 'editor',\n 'excerpt',\n 'author',\n 'thumbnail',\n 'custom-fields',\n 'comments'\n ),\n\n /* Labels used when displaying the posts. */\n 'labels' => array(\n 'name' => __( 'Portfolio Items', 'wpzoom' ),\n 'singular_name' => __( 'Portfolio Item', 'wpzoom' ),\n 'menu_name' => __( 'Portfolio', 'wpzoom' ),\n 'name_admin_bar' => __( 'Portfolio Item', 'wpzoom' ),\n 'add_new' => __( 'Add New', 'wpzoom' ),\n 'add_new_item' => __( 'Add New Portfolio Item', 'wpzoom' ),\n 'edit_item' => __( 'Edit Portfolio Item', 'wpzoom' ),\n 'new_item' => __( 'New Portfolio Item', 'wpzoom' ),\n 'view_item' => __( 'View Portfolio Item', 'wpzoom' ),\n 'search_items' => __( 'Search Portfolio', 'wpzoom' ),\n 'not_found' => __( 'No portfolio items found', 'wpzoom' ),\n 'not_found_in_trash' => __( 'No portfolio items found in trash', 'wpzoom' ),\n 'all_items' => __( 'Portfolio Items', 'wpzoom' ),\n\n // Custom labels b/c WordPress doesn't have anything to handle this.\n 'archive_title' => __( 'Portfolio', 'wpzoom' ),\n )\n );\n\n /* Register the portfolio post type */\n register_post_type( 'portfolio_item', $args );\n }", "public static function register_type() {\n\n\t\tregister_graphql_enum_type(\n\t\t\t'ContentNodeIdTypeEnum',\n\t\t\t[\n\t\t\t\t'description' => __( 'The Type of Identifier used to fetch a single resource. Default is ID.', 'wp-graphql' ),\n\t\t\t\t'values' => self::get_values(),\n\t\t\t]\n\t\t);\n\n\t\t$allowed_post_types = \\WPGraphQL::get_allowed_post_types();\n\t\tif ( ! empty( $allowed_post_types ) && is_array( $allowed_post_types ) ) {\n\t\t\tforeach ( $allowed_post_types as $post_type ) {\n\t\t\t\t$post_type_object = get_post_type_object( $post_type );\n\n\t\t\t\tif ( empty( $post_type_object ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t$values = self::get_values();\n\t\t\t\tif ( ! $post_type_object->hierarchical ) {\n\t\t\t\t\t$values['slug'] = [\n\t\t\t\t\t\t'name' => 'SLUG',\n\t\t\t\t\t\t'value' => 'slug',\n\t\t\t\t\t\t'description' => __( 'Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier.', 'wp-graphql' ),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\tif ( 'attachment' === $post_type_object->name ) {\n\t\t\t\t\t$values['source_url'] = [\n\t\t\t\t\t\t'name' => 'SOURCE_URL',\n\t\t\t\t\t\t'value' => 'source_url',\n\t\t\t\t\t\t'description' => __( 'Identify a media item by its source url', 'wp-graphql' ),\n\t\t\t\t\t];\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Register a unique Enum per Post Type. This allows for granular control\n\t\t\t\t * over filtering and customizing the values available per Post Type.\n\t\t\t\t */\n\t\t\t\tregister_graphql_enum_type(\n\t\t\t\t\t$post_type_object->graphql_single_name . 'IdType',\n\t\t\t\t\t[\n\t\t\t\t\t\t'description' => __( 'The Type of Identifier used to fetch a single resource. Default is ID.', 'wp-graphql' ),\n\t\t\t\t\t\t'values' => $values,\n\t\t\t\t\t]\n\t\t\t\t);\n\n\t\t\t}\n\t\t}\n\n\t}", "function rp_registriere_post_type_spieler() {\n register_taxonomy(\n 'rp_spieler_mannschaft',\n 'rp_spieler', array(\n 'labels' => array(\n 'name' => 'Mannschaften',\n 'singular_name' => 'Mannschaft',\n 'search_items' => 'Mannschaft suchen',\n 'all_items' => 'Alle Mannschaften',\n 'add_new_item' => 'Neue Mannschaft hinzufügen',\n ),\n 'hierarchical' => true,\n 'show_ui' => true,\n 'public'=> true,\n 'rewrite' => array(\n 'slug' => 'spieler',\n 'with_front' => true\n )\n )\n );\n\n /*\n * Registriere den Post Type rp_spieler\n */\n register_post_type('rp_spieler', array(\n 'label' => 'Spieler',\n 'description' => 'Post Type: Spieler',\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'capability_type' => 'post',\n 'capabilities' => array(\n 'create_posts' => false, // Entferne \"Neuer Spieler\" Support\n ),\n 'map_meta_cap' => true,\n 'hierarchical' => false,\n 'rewrite' => array(\n 'slug' => 'spieler/%rp_spieler_mannschaft%',\n 'with_front' => true\n ),\n 'has_archive' => 'spieler',\n 'query_var' => true,\n 'menu_icon' => 'dashicons-groups',\n 'supports' => array(\n 'title',\n 'editor',\n 'custom-fields',\n 'revisions',\n 'thumbnail',\n 'page-attributes',\n 'post-formats'),\n 'labels' => array(\n 'name' => 'Spieler',\n 'singular_name' => 'Spieler',\n 'menu_name' => 'Spieler',\n 'add_new' => 'Spieler hinzufügen',\n 'add_new_item' => 'Neuen Spieler hinzufügen',\n 'edit' => 'Spieler bearbeiten',\n 'edit_item' => 'Edit Spieler',\n 'new_item' => 'Neuer Spieler',\n 'view' => 'Spieler anzeigen',\n 'view_item' => 'View Spieler',\n 'search_items' => 'Search Spieler',\n 'not_found' => 'Kein Spieler gefunden',\n 'not_found_in_trash' => 'Kein Spieler gefunden',\n 'parent' => 'Parent Spieler',\n )\n ));\n}", "function custom_post_type() {\n $labels = array(\n 'name' => _x( 'Ort', 'Post Type General Name', 'twentythirteen' ),\n 'singular_name' => _x( 'Ort', 'Post Type Singular Name', 'twentythirteen' ),\n 'menu_name' => __( 'Orter', 'twentythirteen' ),\n 'all_items' => __( 'Alla Orter', 'twentythirteen' ),\n 'view_item' => __( 'View Ort', 'twentythirteen' ),\n 'add_new_item' => __( 'Skapa ny Ort', 'twentythirteen' ),\n 'add_new' => __( 'Skapa ny Ort', 'twentythirteen' ),\n 'edit_item' => __( 'Redigera Ort', 'twentythirteen' ),\n 'update_item' => __( 'Upddatera Ort', 'twentythirteen' ),\n 'search_items' => __( 'Sök Ort', 'twentythirteen' ),\n 'not_found' => __( 'Not Found', 'twentythirteen' ),\n 'not_found_in_trash' => __( 'Not found in Trash', 'twentythirteen' ),\n );\n \n $args = array(\n 'label' => __( 'cities', 'twentythirteen' ),\n 'description' => __( 'City Post Page', 'twentythirteen' ),\n 'labels' => $labels,\n 'supports' => array('title','thumbnail',),\n 'hierarchical' => false,\n 'public' => true,\n 'show_ui' => true,\n 'show_in_menu' => true,\n 'show_in_nav_menus' => true,\n 'show_in_admin_bar' => true,\n 'menu_position' => 5,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'publicly_queryable' => true,\n 'capability_type' => 'page',\n );\n \n register_post_type( 'cities', $args );\n\n }", "public static function regsiter_post_type() {\n\n\t\t$labels = array(\n\t\t\t'name' => _x( 'Zip Downloads', 'post type general name', 'zip-downloads-textdomain' ),\n\t\t\t'singular_name' => _x( 'Zip Downloads', 'post type singular name', 'zip-downloads-textdomain' ),\n\t\t\t'menu_name' => _x( 'Zip Downloads', 'admin menu', 'zip-downloads-textdomain' ),\n\t\t\t'name_admin_bar' => _x( 'Zip Downloads', 'add new on admin bar', 'zip-downloads-textdomain' ),\n\t\t\t'add_new' => _x( 'Add New File', 'zip downloads', 'zip-downloads-textdomain' ),\n\t\t\t'add_new_item' => __( 'Add New File', 'zip-downloads-textdomain' ),\n\t\t\t'new_item' => __( 'New File', 'zip-downloads-textdomain' ),\n\t\t\t'edit_item' => __( 'Edit File', 'zip-downloads-textdomain' ),\n\t\t\t'view_item' => __( 'View File', 'zip-downloads-textdomain' ),\n\t\t\t'all_items' => __( 'All File', 'zip-downloads-textdomain' ),\n\t\t\t'search_items' => __( 'Search File', 'zip-downloads-textdomain' ),\n\t\t\t'parent_item_colon' => __( 'Parent File:', 'zip-downloads-textdomain' ),\n\t\t\t'not_found' => __( 'No file found.', 'zip-downloads-textdomain' ),\n\t\t\t'not_found_in_trash' => __( 'No files found in Trash.', 'zip-downloads-textdomain' )\n\t\t);\n\n\t\t$args = array(\n\t\t\t'labels' => $labels,\n\t\t\t'public' => true,\n\t\t\t'publicly_queryable' => true,\n\t\t\t'show_ui' => true,\n\t\t\t'show_in_menu' => true,\n\t\t\t'query_var' => true,\n\t\t\t'rewrite' => array( 'slug' => 'zip-downloads' ),\n\t\t\t'capability_type' => 'post',\n\t\t\t'has_archive' => true,\n\t\t\t'hierarchical' => false,\n\t\t\t'menu_position' => 10,\n\t\t\t'menu_icon' \t\t => 'dashicons-slides',\n\t\t\t'supports' => array( 'title', 'thumbnail' )\n\t\t);\n\n\t\tregister_post_type( 'zip_downloads', $args );\n\t}", "function create_post_type() {\n\tregister_post_type( 'Architects', array(\n\t\t'labels' => array(\n\t\t\t'name' => __( 'Architects' ),\n\t\t\t'singular_name' => __( 'Architect' ),\n\t\t\t'add_new_item' => __( 'Add architect' ),\n\t\t\t'edit' => __( 'Edit' ),\n\t\t\t'edit_item' => __( 'Edit this architect' ),\n\t\t\t'new_item' => __( 'New architect' ),\n\t\t\t'view' => __( 'View architect' ),\n\t\t\t'view_item' => __( 'View this architect' ),\n\t\t\t'search_items' => __( 'Search architects' ),\n\t\t\t'not_found' => __( 'No architect was found' ),\n\t\t\t'not_found_in_trash' => __( 'No architects in the trash' ),\n\t\t\t'parent' => __( 'Parent' )\n\t\t),\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'exclude_from_search' => false,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => get_template_directory_uri() . '/images/icon-post.type-integrantes.png',\n\t\t'hierarchical' => true, // if true this post type will be as pages\n\t\t'query_var' => true,\n\t\t'supports' => array('title', 'editor','excerpt','custom-fields','author','page-attributes','trackbacks'),\n\t\t'rewrite' => array('slug'=>'architect','with_front'=>false),\n\t\t'can_export' => true,\n\t\t'_builtin' => false,\n\t\t'_edit_link' => 'post.php?post=%d',\n\t));\n\t// Remotes custom post type\n\tregister_post_type( 'Remotes', array(\n\t\t'labels' => array(\n\t\t\t'name' => __( 'Projects' ),\n\t\t\t'singular_name' => __( 'Project' ),\n\t\t\t'add_new_item' => __( 'Add projects' ),\n\t\t\t'edit' => __( 'Edit' ),\n\t\t\t'edit_item' => __( 'Edit this project' ),\n\t\t\t'new_item' => __( 'New project' ),\n\t\t\t'view' => __( 'View project' ),\n\t\t\t'view_item' => __( 'View this project' ),\n\t\t\t'search_items' => __( 'Search project' ),\n\t\t\t'not_found' => __( 'No project was found' ),\n\t\t\t'not_found_in_trash' => __( 'No project in the trash' ),\n\t\t\t'parent' => __( 'Parent' )\n\t\t),\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'exclude_from_search' => false,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => get_template_directory_uri() . '/images/icon-post.type-integrantes.png',\n\t\t'hierarchical' => false, // if true this post type will be as pages\n\t\t'query_var' => true,\n\t\t'supports' => array('title', 'editor','excerpt','custom-fields','author','comments','trackbacks'),\n\t\t'rewrite' => array('slug'=>'project','with_front'=>false),\n\t\t'can_export' => true,\n\t\t'_builtin' => false,\n\t\t'_edit_link' => 'post.php?post=%d',\n\t));\n\t// Scienticic custom post type\n\tregister_post_type( 'scientifics', array(\n\t\t'labels' => array(\n\t\t\t'name' => __( 'Scientifics' ),\n\t\t\t'singular_name' => __( 'Scientific' ),\n\t\t\t'add_new_item' => __( 'Add scientific' ),\n\t\t\t'edit' => __( 'Edit' ),\n\t\t\t'edit_item' => __( 'Edit this scientific' ),\n\t\t\t'new_item' => __( 'New scientific' ),\n\t\t\t'view' => __( 'View scientific' ),\n\t\t\t'view_item' => __( 'View this scientific' ),\n\t\t\t'search_items' => __( 'Search scientific' ),\n\t\t\t'not_found' => __( 'No scientific was found' ),\n\t\t\t'not_found_in_trash' => __( 'No scientifics in the trash' ),\n\t\t\t'parent' => __( 'Parent' )\n\t\t),\n\t\t'public' => true,\n\t\t'publicly_queryable' => true,\n\t\t'exclude_from_search' => false,\n\t\t'menu_position' => 5,\n\t\t'menu_icon' => get_template_directory_uri() . '/images/icon-post.type-integrantes.png',\n\t\t'hierarchical' => true, // if true this post type will be as pages\n\t\t'query_var' => true,\n\t\t'supports' => array('title', 'editor','excerpt','custom-fields','author','page-attributes','trackbacks'),\n\t\t'rewrite' => array('slug'=>'scientific','with_front'=>false),\n\t\t'can_export' => true,\n\t\t'_builtin' => false,\n\t\t'_edit_link' => 'post.php?post=%d',\n\t));\n\n}", "function register_post_field($args) {\r\n\t\t$this->postmeta[ $args['post_type'] ][ $args['section'] ][ $args['id'] ] = $args;\r\n\t}", "final public function register() : void\n {\n $labels = $this->entityClass::getLabels();\n $slug = $this->entityClass::getSlug();\n\n $args = array(\n 'label' => $labels['name'],\n 'labels' => $labels,\n 'supports' => array(),\n 'hierarchical' => false,\n 'public' => false,\n 'show_ui' => true,\n 'show_in_admin_bar' => true,\n 'show_in_nav_menus' => false,\n 'can_export' => true,\n 'has_archive' => true,\n 'exclude_from_search' => false,\n 'capability_type' => 'post',\n 'show_in_menu' => $this->menu->getSlug()\n );\n\n register_post_type($slug, $args);\n $this->registerDefaultMetaBox($slug);\n }", "public function create_post_type() {\n\n\t\t\t$this->register_post_type( array(\n\t\t\t\t'hierarchical' => false,\n\t\t\t\t'public' => true,\n\t\t\t\t'show_ui' => true,\n\t\t\t\t'show_in_menu' => true,\n\t\t\t\t'menu_position' => 6.9,\n\t\t\t\t'menu_icon' => 'dashicons-book-alt',\n\t\t\t\t'show_in_admin_bar' => true,\n\t\t\t\t'show_in_nav_menus' => false,\n\t\t\t\t'can_export' => true,\n\t\t\t\t'has_archive' => 'manuals',\n\t\t\t\t'exclude_from_search' => false,\n\t\t\t\t'publicly_queryable' => true,\n\t\t\t\t'capability_type' => 'post',\n\t\t\t\t'show_in_rest' => true,\n\t\t\t) );\n\n\t\t\tnew WPS\\Schema\\Entry_Schema( $this->post_type, 'book' );\n\n\t\t}", "public function register_post_types() {\n\n\t\t/***********************\n\t\t * Custom Post Types *\n\t\t ***********************/\n\n\t\t$labels = $this->get_default_names();\n\t\t$labels = $labels['wampum_program'];\n\n\t\tregister_post_type( 'wampum_program',\n\t\t\tapply_filters( 'wampum_program_args', array(\n\t\t\t\t'exclude_from_search' => true,\n\t\t\t\t'has_archive' => apply_filters( 'wampum_program_has_archive', false ),\n\t\t\t\t'hierarchical' => true,\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => $labels['plural'],\n\t\t\t\t\t'singular_name' => $labels['singular'],\n\t\t\t\t\t'menu_name' => $labels['plural'],\n\t\t\t\t\t'name_admin_bar' => $labels['singular'],\n\t\t\t\t\t'add_new' => _x( 'Add New', 'wampum programs' , 'wampum-programs' ),\n\t\t\t\t\t'add_new_item' => sprintf( __( 'Add New %s', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'new_item' => sprintf( __( 'New %s' , 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'edit_item' => sprintf( __( 'Edit %s' , 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'view_item' => sprintf( __( 'View %s' , 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'all_items' => sprintf( __( 'All %s', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'search_items' => sprintf( __( 'Search %s', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'parent_item_colon' => sprintf( __( 'Parent %s:', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'not_found' => sprintf( __( 'No %s found.', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t\t'not_found_in_trash' => sprintf( __( 'No %s found in Trash.', 'wampum-programs' ), $labels['singular'] ),\n\t\t\t\t),\n\t\t\t\t'menu_icon' => 'dashicons-feedback',\n\t\t\t\t'public' => true,\n\t\t\t\t'publicly_queryable' => true,\n\t\t\t\t'show_in_menu' => true,\n\t\t\t\t'show_in_nav_menus' => true,\n\t\t\t\t'show_ui' => true,\n\t\t\t\t'rewrite' => array( 'slug' => $labels['slug'], 'with_front' => false ),\n\t\t\t\t'supports' => apply_filters( 'wampum_program_supports', array( 'title', 'editor', 'excerpt', 'thumbnail', 'page-attributes', 'genesis-cpt-archives-settings', 'genesis-layouts' ) ),\n\t\t\t\t// 'taxonomies' => array( 'wampum_program_template' ),\n\t\t\t)\n\t\t));\n\n\t\t/***********************\n\t\t * Custom Taxonomies *\n\t\t ***********************/\n\n\t\tregister_taxonomy( 'wampum_program_template', 'wampum_program',\n\t\t\tapply_filters( 'wampum_program_template_args', array(\n\t\t\t\t'exclude_from_search' => true,\n\t\t\t\t'has_archive' => false,\n\t\t\t\t'hierarchical' => true,\n\t\t\t\t'labels' => array(\n\t\t\t\t\t'name' => _x( 'Templates' , 'wampum programs template general name', 'wampum-programs' ),\n\t\t\t\t\t'singular_name' => _x( 'Template' , 'wampum programs template singular name' , 'wampum-programs' ),\n\t\t\t\t\t'search_items' => __( 'Search Templates' , 'wampum-programs' ),\n\t\t\t\t\t'popular_items' => __( 'Popular Templates' , 'wampum-programs' ),\n\t\t\t\t\t'all_items' => __( 'All Categories' , 'wampum-programs' ),\n\t\t\t\t\t'edit_item' => __( 'Edit Template' , 'wampum-programs' ),\n\t\t\t\t\t'update_item' => __( 'Update Template' , 'wampum-programs' ),\n\t\t\t\t\t'add_new_item' => __( 'Add New Template' , 'wampum-programs' ),\n\t\t\t\t\t'new_item_name' => __( 'New Template Name' , 'wampum-programs' ),\n\t\t\t\t\t'separate_items_with_commas' => __( 'Separate Templates with commas' , 'wampum-programs' ),\n\t\t\t\t\t'add_or_remove_items' => __( 'Add or remove Templates' , 'wampum-programs' ),\n\t\t\t\t\t'choose_from_most_used' => __( 'Choose from the most used Templates' , 'wampum-programs' ),\n\t\t\t\t\t'not_found' => __( 'No Templates found.' , 'wampum-programs' ),\n\t\t\t\t\t'menu_name' => __( 'Templates' , 'wampum-programs' ),\n\t\t\t\t\t'parent_item' => null,\n\t\t\t\t\t'parent_item_colon' => null,\n\t\t\t\t),\n\t\t\t\t'public' => false,\n\t\t\t\t'rewrite' => false,\n\t\t\t\t'show_admin_column' => true,\n\t\t\t\t'show_in_menu' => true,\n\t\t\t\t'show_in_nav_menus' => false,\n\t\t\t\t'show_tagcloud' => false,\n\t\t\t\t'show_ui' => true,\n\t\t\t)\n\t\t));\n\n\t}", "function mfn_news_post_type()\n{\n mfn_register_types();\n}" ]
[ "0.8789404", "0.8787945", "0.8479326", "0.8422557", "0.84210527", "0.83502024", "0.83349377", "0.8304442", "0.82271373", "0.8224839", "0.8202511", "0.8202511", "0.81806964", "0.81368214", "0.8134448", "0.8078773", "0.8049411", "0.80435026", "0.79549825", "0.793551", "0.788714", "0.7871671", "0.78592485", "0.7839204", "0.78171736", "0.7800887", "0.77927935", "0.7746158", "0.7745629", "0.76860833", "0.7676695", "0.7630185", "0.7617164", "0.75960183", "0.75715566", "0.7560891", "0.749817", "0.7484344", "0.746983", "0.7430006", "0.7416692", "0.7393355", "0.73932505", "0.73928225", "0.7389479", "0.738665", "0.7384317", "0.73728335", "0.73691905", "0.7356438", "0.73550546", "0.73455065", "0.7342851", "0.7341441", "0.73296106", "0.7315019", "0.7310955", "0.73061657", "0.7297216", "0.7292573", "0.72925377", "0.7289979", "0.72889537", "0.72847056", "0.72681814", "0.7265476", "0.72554755", "0.72545314", "0.72502136", "0.72154474", "0.71936643", "0.71904904", "0.718151", "0.7180182", "0.7174431", "0.7165979", "0.7159779", "0.7156058", "0.7139514", "0.7130469", "0.71268296", "0.7125719", "0.71197337", "0.71180195", "0.7116254", "0.7100089", "0.709839", "0.709482", "0.70869935", "0.70839775", "0.70776767", "0.7068364", "0.70559263", "0.70557517", "0.70412576", "0.7039685", "0.70377755", "0.7034712", "0.7027416", "0.7026833", "0.70215964" ]
0.0
-1
/ Load relevant models
public function index() { $this->load->model('blog_model', 'blog'); /* Catch searched tags from get global */ $this->searchedTags = $this->input->get('searchedTags'); if (!$this->searchedTags){ $result = $this->blog->get_latest_articles(); } else { /* Catch the result of the query that executes within the model */ $result = $this->blog->get_by_tagName($this->searchedTags); } if ($this->input->is_ajax_request()){ /* Return results to javascript */ $data = $result; echo json_encode($data); } else { /* Display results on the articles page */ $this->load->model('tag_model', 'tags'); $data['title'] = 'Articles'; $data['content'] = 'articles'; $data['searchFormAttrs'] = $this->searchFormAttrs; $data['tags'] = $this->tagsToArray($this->tags->get_all_tags()); $data['articles'] = $result; $data['prev_searched'] = $this->searchedTags; $this->load->view('main', $data); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function _load_models()\r\n {\r\n foreach ($this->models as $model)\r\n {\r\n $this->load->model($this->_model_name($model), $model);\r\n }\r\n }", "private function _load_models()\n {\n foreach ($this->models as $model)\n {\n $this->load->model($this->_model_name($model), $model);\n }\n }", "private function loadModels()\n {\n $this->use = ( ! isset($this->use)) ? [$this->class] : $this->use;\n\n if ($this->use) {\n foreach ($this->use as $model) {\n self::load('model', $model);\n }\n }\n }", "static private function loadModels() {\n\n $config = Application::getConfig();\n\n if ($handle = opendir($config[\"system\"][\"models-folder\"])) {\n\n /* Das ist der korrekte Weg, ein Verzeichnis zu durchlaufen. */\n while (false !== ($entry = readdir($handle))) {\n if($entry != \".\" && $entry != \"..\") {\n require $config[\"system\"][\"models-folder\"] . \"/\" .$entry;\n }\n }\n closedir($handle);\n }\n }", "private static function _loadModels(){\n if (self::$_models == null){\n $sql = 'SELECT id, uuid, name, description, version_id, created FROM v_model WHERE 1';\n $models = Mysql::query($sql);\n if ($models){\n $_models = array();\n foreach($models as $model){\n $sql = \"SELECT id, model_id, uuid, name, description, type, list, instance_model_id, version_id, created FROM v_property WHERE model_id = '{$model->id}'\";\n $properties = Mysql::query($sql);\n if ($properties){\n $model->properties = $properties;\n $_models[] = $model;\n }\n }\n self::$_models = $_models;\n }\n }\n }", "protected function loadAnnotatedModels()\n {\n if ($this->app->environment('local') && $this->scanWhenLocal) {\n $this->scanModels();\n }\n\n $scans = $this->modelScans();\n\n if (!empty($scans) && $this->finder->modelsAreScanned()) {\n $this->loadScannedModels();\n }\n }", "function include_model($models) {\n $models = explode(',', str_replace(' ', '', $models));\n \n foreach ($models as $model) {\n $model_name = strtolower(ApplicationModel::filename_to_modelname($model));\n if (empty(Application::$models->$model_name)) {\n echo \"Warning: include_model: Model $model_name not found\";\n continue;\n }\n Application::$models->$model_name->load();\n }\n}", "protected function setup_models()\n\t{\n\t}", "abstract function load(Model $model);", "public static function loadModel($params)\n\t{\n\t\tif(!self::$_model_loaded){\n\t\t\tself::loadLibrary('SHIN_Model');\n\t\t\tself::loadLibrary('SHIN_SelectQuery');\n\t\t\tself::$_model_loaded = TRUE;\n\t\t}\n\t\n\t\t$__data = preg_split(\"/_/\", $params[0]);\n\t\t$app_raw_name = strtolower($__data[0]);\n\t\t\n\t\tif($app_raw_name == 'sys'){\n\t\t\t$app_folder = self::$_config['core']['shinfw_folder'];\n\t\t} else {\n\t\t\t$app_folder = self::$applistpath[$app_raw_name];\n\t\t}\n\t\t\n\t\t$path = self::$_config['core']['base_path'].$app_folder;\n\t\t\t\n\t\t$__p = \tstrtolower($path.DIRECTORY_SEPARATOR.'models'.DIRECTORY_SEPARATOR.$params[0].'.php');\n\t\t\n\t\tif(count($params) == 2)\n\t\t{\n if(!is_file($__p))\n\t\t\t{\n self::show_error(\"Model \".$__p.\" not exists. Pls check path.\");\n }\n\t\t\trequire_once($__p);\n\t\t\t\n\t\t\tself::$_models[strtolower($params[1])] = new $params[0]();\n\t\t} else {\n\t\t\trequire_once($__p);\n\t\t}\n\t\t\n\t\treturn;\n }", "public function loadModel() : void\n {\n $model = $this->newModel();\n\n $model->loadModel($this->modelPath);\n $model->printModel();\n\n $this->fm = FunctionMap::loadFunctionMap();\n }", "protected function loadScannedModels()\n {\n $this->app->booted(function () {\n $router = $this->app['Illuminate\\Contracts\\Routing\\Registrar'];\n\n require $this->finder->getScannedModelsPath();\n });\n }", "function loadModel($model){\n $url='models/'.$model.'model.php';//models/alumnomodel.php\n //validando que el modelo exista\n if(file_exists($url)){\n //si axiste lo llamamos\n require $url;\n $modelName=$model.'Model';\n //instancia de la clase del modelo recibido\n $this->model=new $modelName;\n }\n }", "abstract protected function loadModel(array $conditions);", "public function loadModels($OtherModel = array())\n {\n if (count($OtherModel) > 0) {\n foreach ($OtherModel as $item) {\n $item .= '_Model';\n $this->load->model($item);\n }\n }\n }", "abstract protected function prepareModels();", "protected function _loader(){\n\t\t/*\n\t\t* \n\t\t* Load all the Model to use database\n\t\t* Load all the library\n\t\t*\n\t\t*/\n\t\t$this->load->model('post');\n\t\t$this->load->model('user');\n\t\t$this->load->library('form_validation');\n\t}", "protected function uses(array $models)\n {\n $this->container->get('loader')->loadModels($this, $models);\n }", "public function populateModels()\n {\n }", "function __autoload($modelname){\n\tif(Model::exists($modelname)){\n\t\tinclude Model::getFullPath($modelname);\n\t} \n}", "protected static function model()\n {\n foreach (self::fetch('resources/models', false) as $file) {\n Bus::need($file);\n }\n }", "public function loadModel(){\n\t\t$className = get_class($this);\n\t\tforeach(func_get_args() as $model){\n\t\t\t$entity = EntityManager::getEntityInstance($model);\n\t\t\tself::$_settingLock[$className] = true;\n\t\t\t$this->$model = $entity;\n\t\t\tself::$_settingLock[$className] = false;\n\t\t}\n\t}", "public function loadModel()\n {\n if ($this->_modelName == null) {\n $this->_modelName = $this->_controllerName . '_Model';\n $this->load->model($this->_modelName);\n }\n }", "private function modelLoader( $className ) {\r\n\t\t// $className = trim( str_replace(\"_\", \"/\", $className), \"/\" );\r\n\t\t@include_once CORE_MODEL . $className .'.php';\r\n\t\t\r\n\t}", "private function loadModel()\n {\n require_once APP . '/model/User.php';\n // create new \"model\" (and pass the database connection)\n $this->model = new User($this->db);\n }", "function loadModel($model = null) {\n\t\tif ($model && $this->$model == null) {\n\t\t\tApp::import('Model',\"Seo.$model\");\n\t\t\t$this->$model = ClassRegistry::init(\"Seo.$model\");\n\t\t}\n\t}", "public function beforeFilter(){\n\t $this->LoadModel(\"RestaurantInfo\");\n\t $this->LoadModel(\"Food\");\n\t $this->LoadModel(\"FoodReview\");\n\t $this->LoadModel(\"FeedBack\");\n\t $this->LoadModel(\"Restaurant\");\n\t $this->LoadModel(\"User\");\n\t }", "function __construct(){\n foreach(glob(\"model/*.php\") as $file){\n require_once $file;\n }\n\n }", "private function loadModel() {\n // name as requested resource.\n $name = $this->name.'Model';\n $path = str_replace(kPlaceholder, $this->version, kModelsFolder);\n $path = $path . $name . \".php\";\n // If it does not exist, go with\n // the default Model class.\n if (!file_exists($path)) {\n return new Model();\n } else {\n if (!class_exists($name)) {\n include $path;\n }\n\n return new $name();\n }\n }", "public static function __in_load($params)\n\t{\n\t\n\t\t$tmp_views_array = array();\n\t\n\t\t// need load specific libraries\n\t\tif(isset($params['help'])){\n foreach($params['help'] as $needed){\n\t\t\t\tself::loadHelper($needed, FALSE);\n\t\t\t}\n\t\t}\n\n\t\tif(isset($params['core'])){\n\t\t\tforeach($params['core'] as $needed){\n\t\t\t\tself::initCoreComponent($needed);\n\t\t\t}\n\t\t}\n\t\t\n\t\tif(isset($params['libs'])){\n\t\t\tforeach($params['libs'] as $needed){\n \t\tself::loadLibrary($needed, TRUE);\n\t\t\t}\n\t\t}\n\n\t\tif(isset($params['models'])){\n\t\t\n\t\t\tif(!self::$_db){\n\t\t\t\tSHIN_Core::show_error('You are try to load some model without database layer. Pls add in your required core components <b>SHIN_Database</b>');\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\tforeach($params['models'] as $needed){\n\t\t\t\tself::loadModel($needed, TRUE);\n\t\t\t}\n\t\t}\n\t\t\t\t\t\n\t\tif(isset($params['views'])){\n\t\t\tforeach($params['views'] as $needed){\n\t\t\t\tself::loadModel($needed, TRUE);\n\t\t\t}\n\t\t}\n\t\t\n\t\tif(isset($params['workers'])){\n\t\t\tforeach($params['workers'] as $needed){\n \t\tself::loadWorker($needed, TRUE);\n\t\t\t}\n\t\t}\n }", "public function loadModel()\n {\n $data = Contest::find($this->modelId);\n $this->title = $data->title;\n $this->description = $data->description;\n $this->image = $data->image;\n $this->featured_image = $data->featured_image;\n\n }", "public function generateModels () {\r\n $modelParam = \\app\\lib\\router::getModel();\r\n $ModelPath = \\app\\lib\\router::getPath();\r\n $ModelName = \"app\\model\\\\\" . end($ModelPath);\r\n $this->model =new $ModelName;\r\n }", "public function load($model) {\n\t\tstatic $models = array();\n\t\t$db = DBO::init();\n\n\t\t$atom = explode('.', $model);\n\n\t\tif(isset($models[$model]))\n\t\t\treturn $models[$model];\n\n\t\t$path = \"site/models/{$atom[0]}/{$atom[1]}Model.php\";\n\t\tif(!file_exists($path)) {\n\t\t\tthrow new \\Exception(\"Model '{$model}' does not exist!<br />$path\");\n\t\t}\n\n\t\tinclude($path);\n\t\t$class = \"{$atom[1]}Model\";\n\t\t$obj = new $class($db);\n\t\t$models[$model] = $obj;\n\t\t$this->initialise($obj);\n\t\treturn $obj;\n\t}", "private function _load_default_model(){\n\n\t\t$default_model_name = strtolower(get_class($this)) . '_model';\n\n\t\tif(file_exists(APPPATH . 'models/' . $default_model_name . '.php')){\n\n\t\t\t$this->load->model($default_model_name, strtolower(get_class($this)));\n\t\t\t$this->_default_model = strtolower(get_class($this));\n\t\t}\n\n\t}", "public static function init() {\n\t\tcore::loadClass(\"database\");\n\n\t\t/* Child tables */\n\t\tcore::loadClass(\"doorkey_model\");\n\t\tcore::loadClass(\"key_history_model\");\n\t}", "abstract public function loadAll();", "function loadModel($modelName,$negocio){\r\n\tif($modelName=='database'){\r\n\t\t$modelPath = '../Config/'.$negocio.'_'.$modelName.'.php';\r\n\t\tif(is_file($modelPath)){\r\n\t\t\tif (!class_exists($modelName)) {\r\n\t\t\t\trequire_once($modelPath);\r\n\t\t\t}\t\t\r\n\t\t}else{\r\n\t\t\techo 'No existe la conexion'.$modelPath;\r\n\t\t\texit();\r\n\t\t}\r\n\t\t$model = new $modelName();\r\n\t\treturn $model;\t\r\n\t}else{\r\n\t\t$modelPath = '../Model/'.$modelName.'.php';\r\n\t\tif(is_file($modelPath)){\r\n\t\t\tif (!class_exists($modelName)) {\r\n\t\t\t\trequire_once($modelPath);\r\n\t\t\t}\r\n\t\t}else{\r\n\t\t\techo 'No existe este modelo '.$modelPath;\r\n\t\t\texit();\r\n\t\t}\r\n\t\t$model = new $modelName();\r\n\t\tif($negocio != 'null'){\r\n\t\t\t$model->negocio = $negocio;\r\n\t\t}\t\t\r\n\t\treturn $model;\r\n\t}\r\n}", "private function loadRelatedModels(Collection $models) {\n\t\t\t/** @var Model $model */\n\t\t\tforeach ($models as $model) {\n\t\t\t\t$model->loadRelatedModels($this->request->getInclude());\n\t\t\t}\n\t\t}", "function autoload_model($class_name) {\n $filename = strtolower($class_name) . '.php';\n $file = __site_path . '/app/models/' . $filename;\n\n if (!is_readable($file))\n {\n\t\tthrow new Exception('Invalid model path: ' . $file);\n return false;\n }\n\t\n\tinclude ($file);\n}", "function loadModel ($name){\n $file = ROOT.DS.'models'.DS.$name.'.php';\n require_once($file);\n\n if(!isset($this->name)){\n $this->$name = new $name();\n }\n }", "private function loadModelClass($className)\n\t{\n\t\t$filePath = __DIR__ . '/../model/' . $className . '.php';\n\n\t\tif (file_exists($filePath)) {\n\t\t\trequire_once $filePath;\n\t\t}\n\t}", "function __autoload( $arquivo ){\n if(file_exists(MODELS.$arquivo.\".php\")){\n require_once(MODELS.$arquivo.\".php\");\n } else {\n echo \"Erro: O Model '\".$arquivo.\"' não foi encontrado!\";\n exit;\n }\n}", "function _ci_assign_to_models()\n {\n if (count($this->_ci_models) == 0)\n {\n return;\n }\n\n $CI =& get_instance();\n foreach ($this->_ci_models as $model)\n {\n $CI->$model->_assign_libraries();\n }\n }", "function model($model, $name = '', $db_conn = FALSE)\n\t{\n\t // We need to override this method from the default loader because we want to be able to support the\n\t // instantiation of multiple controllers and subsequent model loading between multiple controllers for\n\t // proper amf batching support. Because CodeIgniter uses a superclass paradigm for the base controller class,\n\t // we need to check if a model class has been loaded in any instance of a controller class.\n\t // Look at the code for CI_Base and Loader for more details.\n\n\t if (is_array($model))\n\t\t{\n\t\t\tforeach($model as $babe)\n\t\t\t{\n\t\t\t\t$this->model($babe);\t\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tif ($model == '')\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\n\t\t// Is the model in a sub-folder? If so, parse out the filename and path.\n\t\tif (strpos($model, '/') === FALSE)\n\t\t{\n\t\t\t$path = '';\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$x = explode('/', $model);\n\t\t\t$model = end($x);\t\t\t\n\t\t\tunset($x[count($x)-1]);\n\t\t\t$path = implode('/', $x).'/';\n\t\t}\n\t\n\t\tif ($name == '')\n\t\t{\n\t\t\t$name = $model;\n\t\t}\n\t\t\n\t\tif (in_array($name, $this->_ci_models, TRUE))\n\t\t{\n\t\t $CI =& get_instance();\n//\t\t log_message('error', \"MODEL ALREADY LOADED: \" . $name . \" class = \" . get_class($CI));\n\t\t if (! isset($CI->$name)) {\n//\t\t log_message('error', \"SETTING MODEL INSTANCE TO CONTROLLER: \" . $name . \" class = \" . get_class($CI));\n\t\t $CI->$name = & $this->_ci_model_instances[$name];\n\t\t }\n\t\t return;\n\t\t}\n\t\t\n\t\t$CI =& get_instance();\n\t\tif (isset($CI->$name))\n\t\t{\n\t\t\tshow_error('The model name you are loading is the name of a resource that is already being used: '.$name);\n\t\t}\n\t\n\t\t$model = strtolower($model);\n\n $model_exists = false;\n\n foreach($this->_all_model_paths as $mod_path)\n {\n if (file_exists($mod_path . 'models/'.$path.$model.EXT))\n {\n $model_exists = true;\n break;\n }\n }\n\n if ( ! $model_exists)\n\t\t{\n\t\t\tshow_error('Unable to locate the model you have specified: '.$model);\n\t\t}\n\n\t\tif ($db_conn !== FALSE AND ! class_exists('CI_DB'))\n\t\t{\n\t\t\tif ($db_conn === TRUE)\n\t\t\t\t$db_conn = '';\n\t\t\n\t\t\t$CI->load->database($db_conn, FALSE, TRUE);\n\t\t}\n\n if (CI_VERSION === '2.1.0' || CI_VERSION === '2.1.1') {\n if ( ! class_exists('CI_Model'))\n {\n load_class('Model', 'core');\n }\n } else {\n if ( ! class_exists('Model'))\n {\n load_class('Model', FALSE);\n }\n }\n\n $found = FALSE;\n foreach($this->_all_model_paths as $mod_path)\n {\n $file = $mod_path.'models/'.$path.$model.EXT;\n if (file_exists($file))\n {\n $found = TRUE;\n include_once($file);\n break;\n }\n }\n\n if($found === FALSE)\n {\n show_error('Unable to load the requested file: models/'.$model.EXT);\n }\n\n\t\t$model = ucfirst($model);\n\t\t\t\t\n//\t log_message('info', \"LOADING MODEL: \" . $name . \" class = \" . get_class($CI));\n\t\t$CI->$name = new $model();\n $CI->$name->_assign_libraries();\n\n\t\t$all_ci = get_all_loaded_instances();\n\t\tforeach ($all_ci as $old_ci) {\n\t\t if (! isset($old_ci->$name)) {\n//\t\t log_message('error', \"BACKLOADING MODEL INSTANCE TO CONTROLLER: \" . $name . \" class = \" . get_class($old_ci));\n\t\t $old_ci->$name = & $CI->$name;\n\t\t }\n\t\t}\n\n\t\t$this->_ci_model_instances[$name] = & $CI->$name;\n\n\t\t$this->_ci_models[] = $name;\t\n\t}", "public function load()\n {\n foreach ($this->aMappingConfiguration as $sLinkedEntity => $aMappingSetup) {\n $this->loadMapped(new $sLinkedEntity());\n }\n }", "public function initialize()\n {\n parent::initialize();\n $this->loadModel('Projects');\n $this->loadModel('ProjectsInjections');\n $this->loadModel('Colonies');\n }", "private function _getAllModels(): array {\n\t\t$models = Array();\n\t\t$folder = Environment::$dirs->models;\n\t\t$files = array_diff(scandir($folder), array('.', '..'));\n\t\tforeach ($files as $fileName) {\n\t\t\tinclude_once($folder.DIRECTORY_SEPARATOR.$fileName);\n\t\t\t$className = basename($fileName, \".php\");\n\t\t\t$classNameNamespaced = \"\\\\Jeff\\\\Api\\\\Models\\\\\" . ucfirst($className);\n\t\t\t$model = new $classNameNamespaced($this->db, $this->account);\n\t\t\t$models[$model->modelNamePlural] = $model;\n\t\t}\n\t\treturn $models;\n\t}", "public function __construct(){\n require_once 'EntidadBase.php'; // Incluye el archivo EntidadBase\n require_once 'BaseModel.php'; // Incluye el archivo BaseModel\n foreach(glob('Model/*.php') as $file){ // Recorre todos los archivos de la carpeta Model con la extensión PHP.\n require_once($file); // Incluye el archivo\n }\n }", "public function models();", "public function load() {\r\n\t\t$this->includes();\r\n\t\t$this->inits();\r\n\t}", "private static function model()\n {\n $files = ['ORM_', 'CRUD', 'ORM', 'Collection', 'ModelArray'];\n $folder = static::$root.'MVC/Model'.'/';\n\n self::call($files, $folder);\n\n $files = ['ForeingKeyMethodException', 'ColumnNotEmptyException', 'ManyPrimaryKeysException', 'TableNotFoundException', 'ModelNotFoundException', 'PrimaryKeyNotFoundException'];\n $folder = static::$root.'MVC/Model/Exceptions'.'/';\n\n self::call($files, $folder);\n }", "public function loadModel(){\n $this->load->model('Data_Model');\n return new Data_Model($this->used_table,$this->used_db);\n }", "function __autoload($model_name) {\n $filename = strtolower($model_name) . '.model.php';\n $file = __SITE_PATH . '/model/' . $filename;\n\n if (!file_exists($file)) {\n return false;\n }\n include_once $file;\n}", "public function getModels();", "public function getModels();", "function loadModelFile($fileName){\n $modelPath = $this->modelBasePath . $fileName . $this->suffix;\n if(file_exists($modelPath)){\n require $modelPath;\n }\n }", "function loadModel($name){\n\t\t$dir = APP . \"Entity\" . DS;\n\n\t\t$file = str_replace([$dir,\".php\"], [\"\",\"\"], $name);\n\n\t\tif(!isset($this->$file)){\n\t\t\trequire_once $name;\n\t\t\t$this->$file = new $file();\n\t\t\tif(isset($this->Form)){\n\t\t\t\t$this->$file->Form = $this->Form; \n\t\t\t}\n\t\t}\n\n\n\t}", "function autoload($classe)\n{\n //echo dirname(__FILE__).\"\\\\Models\\\\\".$classe.\".php\";\n require dirname(__FILE__).\"\\\\model\\\\\".$classe.\".php\";\n}", "public function loadModel($name) {\n echo \"new view was called\";\n $path = MODELS_PATH . DS . $name . '_model.php';\n\n if (file_exists($path)) {\n require MODELS_PATH . DS . $name . '_model.php';\n $modelName = $name . '_Model';\n $this->model = new $modelName();\n }\n }", "public function __construct()\n {\n parent::__construct();\n $this->app->loadClass('date');\n $this->loadModel('task');\n $this->loadModel('order', 'crm');\n $this->loadModel('customer');\n }", "function load ()\n {\n $this->relationships = parent::_load ( $this->basepath ) ;\n }", "public function init()\n {\n\t\t$this->user_model = new Application_Model_Users;\n\t\t$this->request_model = new Application_Model_Requests;\n\t\t$this->material_model = new Application_Model_Materials;\n\t\t$this->course_model = new Application_Model_Courses;\n\t\t$this->comment_model = new Application_Model_Comments;\n\t\t$this->category_model = new Application_Model_Categories;\n \t$this->assoc_rules_model = new Application_Model_Assocrules;\n }", "public function load_model( $model_name = false ) {\n\t\tif ( ! $model_name ) return;\n\n\t\t$model_name = strtolower( $model_name );\n\t\t$model_path = ABSPATH . '/models/' . $model_name . '.php';\n\n\t\tif ( file_exists( $model_path ) ) {\n\t\t\trequire_once $model_path;\n\n\t\t\t// Pega só o nome final do caminho\n\t\t\t$model_name = explode('/', $model_name);\n\t\t\t$model_name = end( $model_name );\n\t\t\t$model_name = preg_replace( '/[^a-zA-Z0-9]/is', '', $model_name );\n\n\t\t\t// Retorna um objeto da classe\n\t\t\tif ( class_exists( $model_name ) ) {\n\t\t\t\treturn new $model_name( $this->db, $this );\n\t\t\t}\n\n\t\t\treturn;\n\t\t} // load_model\n\n\t}", "private function loadModels(ObjectManager $manager)\n {\n\n // First get and parse the yaml file\n $models = Yaml::parse(file_get_contents(__DIR__ . '/datas/yml/Models.yaml'));\n\n // Loop en every entry of yaml\n foreach ($models as $k => $v) {\n\n // Get family object in DB from given name\n $family = $manager->getRepository('AppBundle:Product\\Family')\n ->findOneBy(['name' => $v['family_name']]);\n\n // Create new model object and hydrate\n $model = new Model();\n $model->setName($k);\n $model->setFamily($family);\n $model->hydrate($v);\n\n // Loop on every feature given for this model\n foreach ($v['features'] as $fk => $fv) {\n // Check if feature is already in DDB\n $feature = $manager->getRepository('AppBundle:Feature\\Feature')\n ->findOneBy(['name' => $fk]);\n\n // If not knowed, create and persist it\n if (is_null($feature)) {\n $feature = new Feature();\n $feature->setName($fk);\n $manager->persist($feature);\n }\n\n // Loop on feature specifications\n foreach ($fv as $fsk => $fsv) {\n // Check if spec exists in DDB\n $spec = $manager->getRepository('AppBundle:Feature\\Spec')\n ->findOneBy(['name' => $fsk]);\n\n // If not, create and persist\n if (is_null($spec)) {\n $spec = new Spec();\n $spec->setName($fsk);\n $spec->setFeature($feature);\n $manager->persist($spec);\n }\n\n // With every spec, set&link model value\n $specValue = new SpecValue();\n $specValue->setSpec($spec);\n $specValue->setModel($model);\n $specValue->setValue($fsv);\n\n // Finally persist the spec value\n $manager->persist($specValue);\n }\n }\n\n // One features and specs are stored, persist the model\n $manager->persist($model);\n\n $manager->flush();\n }\n }", "function setModels($models) {\n\t\t$_models = array();\n\n\t\t// First clean array of models, applying implicit database ids when required\n\t\tforeach ($models as $model) {\n\t\t\tif (strpos($model, '/') !== false) {\n\t\t\t\tlist($id, $table) = explode('/', $model);\n\t\t\t} else {\n\t\t\t\t$id = urlize($this->_implicit, '_');\n\t\t\t\t$table = $model;\n\t\t\t}\n\n\n\t\t\tif (!ake($id, $_models)) {\n\t\t\t\t$_models[$id] = array();\n\t\t\t}\n\n\t\t\t$_models[$id][] = $table;\n\t\t}\n\n\t\t// Then actually load models\n\t\tforeach ($_models as $database => $models) {\n\t\t\t$tables = array();\n\n\t\t\tforeach ($models as $model) {\n\t\t\t\t$tables[camelize($model, '_')] = $this->_loadModel($database, $model);\n\t\t\t}\n\t\t\t$this->_models[camelize($database, '_')] = new GetableCollection($tables);\n\t\t}\n\n\t\tif (!ake($this->_implicit, $this->_models)) {\n\t\t\t$this->_models[$this->_implicit] = new GetableCollection(array());\n\t\t}\n\t}", "private function IncludeModels()\n {\n $models_files = array_diff(scandir(\"Models\"), array(\".\", \"..\"));\n foreach ($models_files as $model_file) {\n $path = \"Models/\" . $model_file;\n if (file_exists($path))\n include $path;\n else\n throw new Exception(\"There is no a file named '{$path}'.\", 404);\n }\n }", "function __autoload($className) {\n require_once \"../model/\" . $className . '.php';\n}", "protected function loadObjects() {\n if (!isset($this->objects)) {\n $this->obj_builder->toggleAutoload('on');\n $this->objects = $this->obj_builder->buildObjects();\n $this->obj_builder->toggleAutoload('off');\n }\n }", "public function load() {\n $this->loadModules($this->dir['modules_core'], 'core');\n $this->loadModules($this->dir['modules_custom'], 'custom');\n $this->runModules();\n }", "public function loadModel()\n {\n $data = ModelsPegawai::find($this->dataId);\n $this->name = $data->name;\n $this->email = $data->email;\n $this->username = $data->username;\n $this->password = $data->password;\n $this->level = $data->level;\n\n }", "protected function _getModelsFromAppDir()\n {\n $modelsDir = dirname(dirname(dirname(__FILE__))) . '/' . $this->_applicationName . '/Model/';\n if (! file_exists($modelsDir)) {\n return null;\n }\n \n try {\n $modelDir = dirname(dirname(dirname(__FILE__))) . '/' . $this->_applicationName . '/Model/';\n if (! file_exists($modelDir)) {\n return array();\n }\n $dir = new \\DirectoryIterator($modelDir);\n } catch (Exception $e) {\n Exception::log($e);\n return array();\n }\n\n $models = array();\n foreach ($dir as $fileinfo) {\n if (!$fileinfo->isDot() && !$fileinfo->isLink()) {\n if ($this->_isModelFile($fileinfo)) {\n $models[] = $this->_applicationName . '_Model_' . str_replace('.php', '', $fileinfo->getBasename());\n } else if ($fileinfo->isDir()) {\n // go (only) one level deeper\n $subdir = new \\DirectoryIterator($fileinfo->getPath() . '/' . $fileinfo->getFilename());\n foreach ($subdir as $subfileinfo) {\n if ($this->_isModelFile($subfileinfo)) {\n $models[] = $this->_applicationName . '_Model_' . $fileinfo->getBasename() . '_'\n . str_replace('.php', '', $subfileinfo->getBasename());\n }\n }\n\n }\n }\n }\n\n foreach ($models as $key => $model) {\n if (class_exists($model)) {\n $reflection = new \\ReflectionClass($model);\n $interfaces = $reflection->getInterfaceNames();\n if (! in_array('Tinebase_Record_Interface', $interfaces)) {\n unset($models[$key]);\n }\n } else {\n // interface, no php class, ...\n unset($models[$key]);\n }\n }\n\n return $models;\n }", "function init()\n {\n foreach ($GLOBALS['_PX_models'] as $model=>$val) {\n if (isset($val['relate_to'])) {\n foreach ($val['relate_to'] as $related) {\n if ($this->_model == $related) {\n // The current model is related to $model\n // through one or more foreign key. We load\n // the $model to check on which fields the\n // foreign keys are set, as it is possible in\n // one model to have several foreign keys to\n // the same other model.\n if ($model != $this->_model) {\n $_m = new $model();\n $_fkeys = $_m->getForeignKeysToModel($this->_model);\n } else {\n $_fkeys = $this->getForeignKeysToModel($this->_model);\n }\n foreach ($_fkeys as $_fkey=>$_fkeyval) {\n //For each foreign key, we add the\n //get_xx_list method that can have a\n //custom name through the relate_name\n //value.\n if (isset($_fkeyval['relate_name'])) {\n $mname = $_fkeyval['relate_name'];\n } else {\n $mname = strtolower($model);\n }\n $this->_methods_list['get_'.$mname.'_list'] = array($model, $_fkey);\n }\n break;\n }\n }\n }\n if (isset($val['relate_to_many']) && \n in_array($this->_model, $val['relate_to_many'])) {\n $this->_methods_list['get_'.strtolower($model).'_list'] = $model;\n $this->_manytomany[$model] = 'manytomany';\n }\n }\n foreach ($this->_cols as $col=>$val) {\n $field = new $val['type']($col);\n if ($field->type == 'foreignkey') {\n $this->_methods_get['get_'.strtolower($col)] = array($val['model'], $col);\n $this->_fk[$col] = 'foreignkey';\n }\n if ($field->type == 'manytomany') {\n $this->_methods_list['get_'.strtolower($col).'_list'] = $val['model'];\n $this->_manytomany[$val['model']] = 'manytomany';\n }\n foreach ($field->add_methods as $method) {\n $this->_methods_extra[$method[0]] = array(strtolower($col), $method[1]);\n }\n }\n }", "public function getModel() {\r\n\tforeach (glob('modules/' . $this->name . '/model/*.php') as $filename) {\r\n\t $model = basename($filename, '.php');\r\n\t $this->model[$model] = $this->getEntity($model);\r\n\t}\r\n\treturn $this->model;\r\n }", "protected function _init_models($models) {\n if (!is_array($models)) return false;\n foreach ($models as $model_type => $model_config) {\n $model_config = $this->_normalize_model_config($model_type, $model_config);\n $values = $model_config['values'];\n $object_type = $model_config['object_type'];\n $linked_entities = $model_config['linked_entities'];\n $table_name = $model_config['table'];\n if ($table_name) $this->table_to_model_type[ $table_name ] = $model_type;\n if ($values) {\n $value_nicknames = $model_config['value_nicknames'];\n $v_arr = [ ];\n foreach ($values as $value_name => $id) {\n if (is_string($value_name)) {\n $nickname = Inflector::humanize(strtolower($value_nicknames[ $value_name ] ?? $value_name));\n $name = strtolower($value_name);\n $index = $object_type === 'Type' && 0 === strpos($name, 'relationship') ? Inflector::pluralize($name) : $name;\n $v_arr[ $index ] = [\n 'id' => $id,\n 'index' => $name,\n 'name' => $nickname,\n ];\n }\n };\n //::static\n $this->enum_values[ Inflector::underscore(Inflector::pluralize($model_type)) ] = $v_arr;\n }\n switch ($object_type) {\n case 'Map':\n if (!$linked_entities) {\n preg_match_all('/([A-Z]{1}[a-z]+)(?=[A-Z])/', $model_type, $linked_entities);\n $linked_entities = $linked_entities[0];\n }\n break;\n case 'Model':\n case 'Role':\n case 'Type':\n case 'Status':\n break;\n }\n $linked_entities = $this->_normalize_linked_entities($model_type, $linked_entities, $object_type);\n if ($linked_entities) {\n $linked_entity_types = $this->get_linked_entity_string($linked_entities);\n if (strpos($linked_entity_types, '|') === 0) Log::init($linked_entities)->log_it();\n $this->linked_entities_to_model_type[ $linked_entity_types ] = $this->linked_entities_to_model_type[ $linked_entity_types ] ?? [ ];\n if (!in_array($model_type, $this->linked_entities_to_model_type[ $linked_entity_types ]))\n $this->linked_entities_to_model_type[ $linked_entity_types ][] = $model_type;\n $this->model_type_to_linked_entity_properties[ $model_type ] = $linked_entities;\n }\n if ($model_config['prefix']) $this->prefix_to_model_type[ $model_config['prefix'] ] = $model_type;\n $this->model_type_to_properties[ $model_type ] = $this->_normalize_properties($model_config['properties']);\n }\n return true;\n }", "function __construct() {\n parent::__construct();\n $this->load->model('flightModel');\n $this->load->model('flight');\n $this->load->model('wackyModel');\n $this->load->model('fleetModel');\n }", "public function __construct()\n{\nparent::__construct();\n\n//load database libray manually\n$this->load->database();\n\n//load Model\n$this->load->model('welcomemodel');\n}", "public function loadModel ($name) { \n $modelName = $name . 'Model';\n if (class_exists($modelName, FALSE)) {\n return new $modelName($this->db);\n } else {\n $path = MODEL_PATH . strtolower($name) . '_model.php';\n // Check for model: Does such a model exist?\n if (file_exists($path)) {\n require MODEL_PATH . strtolower($name) . '_model.php'; \n // Return new model and pass the database connection to the model\n return new $modelName($this->db);\n } else {\n return null;\n }\n }\n }", "function __construct() {\n parent::__construct();\n $this->load->model('Fontend_model');\n $this->load->model('Package_model');\n }", "public function testApiLoadModels()\n {\n $response = $this->get($this->apiPath . '/dinamicQuery/models', $this->createAuthHeaderToAdminUser());\n $response->assertStatus(200);\n\n $responseData = $response->decodeResponseJson();\n\n $this->seeJsonStructure($response, ['*' => [\n 'name', 'attributes' => [\n '*' => ['name', 'type']\n ]\n ]]);\n\n //need to be at least user model\n $this->assertContains('User', collect($responseData)->pluck('name')->all());\n }", "function loader($class){\n require_once \"routes/cats.php\";\n require_once \"models/CatsModel.php\";\n require_once \"models/Database.php\";\n require_once \"models/Mysqldb.php\";\n require_once \"views/CatsView.php\";\n require_once \"controllers/CatsController.php\";\n\n}", "protected abstract function loadModel($data, $entry);", "protected function load_model($model_name)\n {\n $this->$model_name = \\App::getInstance()->getTable($model_name);\n }", "public function load($model, $post) {\n // empty implementation. \n }", "public static function loadAll();", "public function __construct() {\n parent::__construct();\n $this->load->model('Website_model');\n $this->load->model('mall_model');\n }", "private function Load()\n\t{\n\t\t$sql = \"show tables\";\n\t\t$rs = $this->Server->Connection->Select($sql);\n\t\t\n\t\t// first pass load all the tables. this will initialize each object. we have to\n\t\t// do this first so that we can correctly determine and store \"Set\" information\n\t\twhile ($row = $this->Server->Connection->Next($rs))\n\t\t{\n\t\t\t$this->Tables[$row[\"Tables_in_\" . $this->Name]] = new DBTable($this,$row);\n\t\t}\n\t\t\n\t\t// now load all the keys and constraints for each table\n\t\tforeach ($this->Tables as $table)\n\t\t{\n\t\t\t$table->LoadKeys();\n\t\t}\n\n\t\t$this->Server->Connection->Release($rs);\n\t\t\n\t\t$sql = \"show table status from `\" . $this->Name . \"`\";\n\t\t$rs2 = $this->Server->Connection->Select($sql);\n\t\t\n\t\t// load the extra data\n\t\twhile ($row = $this->Server->Connection->Next($rs2))\n\t\t{\n\t\t\t$this->Tables[$row[\"Name\"]]->Engine = $row[\"Engine\"]; \n\t\t\t$this->Tables[$row[\"Name\"]]->Comment = $row[\"Comment\"];\n\t\t}\n\t\t$this->Server->Connection->Release($rs2);\n\t}", "public function LoadModel($model = \"\"){\n\t\t$model = $model != \"\" ? $model : CONTROLLER_CALLED;\t\t// Si $model esta vacia significa que se esta llamando al modelo que se llama igual al controlador actual\n\t\t$nameModel = $model.\"Model\";\n\t\t$routeModelModule = MODULE_USED.\"models/\".$model.\".php\";\n\t\tif(is_file($routeModelModule)){\n\t\t\t// Vista del Modulo actual\n\t\t\t$routeModel = $routeModelModule;\n\t\t}else{\n\t\t\tif(strpos($model,\"/\") !== false){\t\t\t// Con slashes ignificaria que se esta llamando el modelo de otro modulo\n\t\t\t\t$modelInfo = explode(\"/\",$model);\n\t\t\t\t$module = $modelInfo[0];\n\t\t\t\t$model2 = $modelInfo[1];\n\t\t\t\t$nameModel = $model2.\"Model\";\n\t\t\t\t\n\t\t\t\t$routeModelApp = APP_PATH.\"modules/\".$module.\"/models/\".$model2.\".php\";\n\t\t\t\tif(is_file($routeModelApp)){\n\t\t\t\t\t$routeModel = $routeModelApp;\n\t\t\t\t}else{\n\t\t\t\t\tthrow new \\Exception(\"The model \".$model.\" is not found in the application\");\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\tthrow new \\Exception(\"The model \".$model.\" is not found in the module application\");\n\t\t\t}\n\t\t}\n\t\tinclude($routeModel);\n\t\t$objModel = new $nameModel;\n\t\treturn $objModel;\n\t}", "public function loadRelated()\n {\n return;\n }", "public function testModels()\n {\n foreach(array('TextPageCategory') as $className){\n $this->className = $className;\n $this->allByDocExample();\n }\n }", "private function getAllModels()\n {\n return (object)ModelRegistry::getAllObjects();\n }", "public function __construct()\n {\n parent::__construct();\n $this->load->model(['m_voting', 'm_master', 'm_prospects', 'm_factors']);\n }", "public function __construct() {\n\t\t$config = ['config_student', 'config_course'];\n\t\t$models = ['courses_model', 'lessons_model'];\n\t\t$this->common_model->autoload_resources($config, $models);\n\t}", "private function loadData(): void\n {\n $modules = BackendExtensionsModel::getModules();\n\n // split the modules in 2 separate data grid sources\n foreach ($modules as $module) {\n if ($module['installed']) {\n $this->installedModules[] = $module;\n } else {\n $this->installableModules[] = $module;\n }\n }\n }", "function model($model = '')\n{\n require_once dirname(__DIR__,1) . \"/model/\" . $model . \".php\";\n}", "public function loadModel($name)\r\n\t\t{\r\n\r\n\t\t\t$path = 'application\\models\\\\'.ucfirst($name);\r\n\t\t\tif (class_exists($path))\r\n\t\t\t{\r\n\t\t\t\t\r\n\t\t\t\treturn new $path;\r\n\t\t\t}\r\n\t\t}", "function __construct()\n {\n parent::__construct();\n $this->load->database();\n $this->load_model('book', $this->auth);\n $this->load_model('user', $this->auth);\n $this->load_model('participant', $this->auth);\n $this->load_model('question', $this->auth);\n }", "protected function addModelConfigs()\n {\n // TODO: add model configs\n }", "function autoLoad($class)\n{\n if (preg_match('/Controller$/', $class)) {\n require(\"controllers/\" . $class . \".php\");\n }\n else {\n require(\"models/\" . $class . \".php\");\n }\n}", "public function load() { }", "public function getModelsManager() {}", "function __autoload($className) {\n if(strpos($className, \"Model\")){\n \t//echo MODELS_PATH.$className.'.php';exit;\n }\n $pathToLoad = false;\n if(is_file(CONTROLLERS_PATH.$className.'.php'))\n \t$pathToLoad = CONTROLLERS_PATH.$className.'.php';\n if(is_file(MODELS_PATH.$className.'.php'))\n \t$pathToLoad = MODELS_PATH.$className.'.php';\n if(is_file(LIBRARIES_PATH.$className.'.php'))\n \t$pathToLoad = LIBRARIES_PATH.$className.'.php';\n if(is_file(HELPERS_PATH.$className.'.php'))\n \t$pathToLoad = HELPERS_PATH.$className.'.php';\n if(isset($pathToLoad) && !empty($pathToLoad))\n \trequire_once($pathToLoad);\n}" ]
[ "0.8586278", "0.8576526", "0.8385047", "0.7955293", "0.7722002", "0.7286554", "0.7162411", "0.70958674", "0.70056033", "0.6992704", "0.6952662", "0.680123", "0.67942935", "0.67860854", "0.6784766", "0.67780596", "0.67751867", "0.67569005", "0.6734832", "0.67138207", "0.6705599", "0.6663213", "0.6646172", "0.6621794", "0.66128695", "0.655063", "0.65484494", "0.65476817", "0.6474726", "0.6457041", "0.64441806", "0.643332", "0.6429234", "0.6411973", "0.64001054", "0.63899", "0.6387631", "0.63864386", "0.63671046", "0.6351156", "0.6334058", "0.63155764", "0.63131386", "0.63122624", "0.630248", "0.62957674", "0.62723905", "0.62715256", "0.62631035", "0.62613255", "0.6260506", "0.62531024", "0.62496126", "0.62473005", "0.62473005", "0.62398833", "0.6231943", "0.6155126", "0.61291844", "0.61009705", "0.60978276", "0.60820234", "0.6069181", "0.60651463", "0.606414", "0.605798", "0.6053778", "0.60324544", "0.6024075", "0.60225946", "0.6020707", "0.60194093", "0.6017389", "0.60013366", "0.59999484", "0.5964465", "0.59407556", "0.5939613", "0.5932729", "0.5925953", "0.59157413", "0.59100217", "0.58986217", "0.58849055", "0.58814996", "0.5878703", "0.587184", "0.5864096", "0.58638567", "0.586306", "0.58587253", "0.5848403", "0.5845744", "0.5840962", "0.58309126", "0.582979", "0.58278584", "0.58227956", "0.58227503", "0.58217335", "0.58183753" ]
0.0
-1
Determine if the user is authorized to make this request.
public function authorize() { return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function authorize()\n {\n if ($this->user() !== null) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n return $this->user() !== null;\n }", "public function authorize()\n {\n return $this->user() !== null;\n }", "public function authorize()\n {\n return $this->user() != null;\n }", "public function authorize(): bool\n {\n return $this->user() !== null;\n }", "public function authorize(): bool\n {\n return $this->isUserAuthorised();\n }", "public function authorize()\n {\n return !is_null($this->user());\n }", "public function authorize()\n {\n return request()->user() != null;\n }", "public function authorize()\n\t{\n\t\t// if user is updating his profile or a user is an admin\n\t\tif( $this->user()->isSuperAdmin() || !$this->route('user') ){\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public function authorize()\n {\n // this was my best guess\n return $this->user()->id === $this->route('user')->id;\n }", "public function isAuthorized()\n {\n return $this->cookieHelper->requestCookieExists('auth');\n }", "public function authorize()\n {\n return !empty(Auth::user()) && ($this->user()->isAnAdmin() || $this->user()->hasRole('user'));\n }", "public function authorize()\n {\n $originAccount = Account::find($this->get('origin_account_id'));\n return $originAccount->user_id == auth()->id();\n }", "public function authorize()\n {\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n case 'PUT':\n case 'PATCH':\n case 'DELETE':\n default:\n return $this->user()->type == 'App\\\\Staff' ? true : false;\n break;\n }\n\n return false;\n }", "public function authorize()\n {\n if($this->user()->role == \"admin\" || $this->user()->id == $this->request->get('author_id')) return true;\n else return false;\n }", "public function authorize()\n {\n if(\\Auth::guest())\n {\n return false;\n } else {\n // Action 1 - Check if authenticated user is a superadmin\n if(\\Auth::User()->hasRole('superadmin'))\n return true;\n\n // Action 2 - Find UUID from request and compare to authenticated user\n $user = User::where('uuid', $this->user_uuid)->firstOrFail();\n if($user->id == \\Auth::User()->id)\n return true;\n\n // Action 3 - Fail request\n return false;\n }\n }", "public function authorize()\n {\n $this->model = $this->route('user');\n\n $this->model = is_null($this->model) ? User::class : $this->model;\n\n return $this->isAuthorized();\n }", "public function isAuthorized(): bool\n {\n // TODO: implement authorization check\n\n return true;\n }", "public function isAuthorized() {}", "public function authorize()\n {\n return request()->loggedin_role === 1;\n }", "public function authorize()\n {\n $this->model = $this->route('user');\n\n if ($this->isEdit() && !is_null($this->model)) {\n if (!user()->hasPermissionTo('Administrations::admin.user') && $this->model->id != user()->id) {\n return false;\n }\n }\n\n $this->model = is_null($this->model) ? User::class : $this->model;\n\n return $this->isAuthorized();\n }", "public function authorize()\n {\n $accessor = $this->user();\n\n return $accessor->isAdmin() || $accessor->hasKey('post-users');\n }", "public function authorize()\n {\n $user = \\Auth::getUser();\n\n return $user->user_type == 1;\n }", "public function authorize()\n {\n return auth()->check() ? true : false;\n }", "public function authorize()\n {\n return auth()->check() ? true : false;\n }", "public function authorize()\n {\n /**\n * @var User $user\n * @var Document $document\n */\n $user = Auth::user();\n $document = $this->route('document');\n\n return (int)$user->id === (int)$document->user_id;\n }", "public function authorize()\n {\n switch (true) {\n case $this->wantsToList():\n case $this->wantsToShow():\n if ($this->hasRoles(['owner', 'administrator'])) {\n return true;\n }\n break;\n case $this->wantsToStore():\n case $this->wantsToUpdate():\n case $this->wantsToDestroy():\n if ($this->hasRoles(['owner'])) {\n return true;\n }\n break;\n }\n\n return false;\n }", "public function authorize()\n {\n $user = JWTAuth::parseToken()->authenticate();\n $organisation = Organization::findOrFail($this->route('organizations'));\n return $organisation->admin_id == $user->id;\n }", "public function authorize()\n {\n if($this->user()->isAdmin())\n return true;\n\n return false;\n }", "function isAuthorized()\n {\n $authorized = parent::isAuthorized();\n return $authorized;\n }", "public function authorize()\n {\n $user = auth('web')->user();\n if ($user && $user->active) {\n return true;\n }\n\n return false;\n }", "public function authorize()\n {\n $this->user = User::query()->find($this->route()->parameter('user'));\n $this->merge(['verified' => $this->get('verified') ? 1 : 0]);\n\n return true;\n }", "public function authorize()\n {\n $user = request()->user('api');\n return $user->isSenior();\n }", "public function authorize()\n {\n return is_client_or_staff();\n }", "public function isAuthorized() {\n\t\treturn true;\n\t}", "public function authorize()\n {\n switch ($this->method()) {\n case 'POST':\n return true;\n case 'GET':\n default:\n {\n return false;\n }\n }\n }", "public function authorize()\n {\n switch ($this->method()) {\n case 'POST':\n return true;\n case 'GET':\n default:\n {\n return false;\n }\n }\n }", "public function authorize()\n {\n //Check if user is authorized to access this page\n if($this->user()->authorizeRoles(['admin'])) {\n return true;\n } else {\n return false;\n }\n }", "public function isAuthorized()\n\t{\n\t\t$sessionVal = Yii::$app->session->get($this->sessionParam);\n\t\treturn (!empty($sessionVal));\n\t}", "public function authorize() {\n\n return auth()->user() && auth()->user()->username === $this->user->username;\n }", "public function authorize()\n {\n return session('storefront_key') || request()->session()->has('api_credential');\n }", "public function authorize()\n {\n if ($this->user()->isAdmin($this->route('organization'))) {\n return true;\n }\n\n return false;\n\n }", "public function authorize()\n {\n return $this->user() && $this->user()->role === Constants::USER_ROLE_ADMIN;\n }", "public function authorized()\n {\n return $this->accepted && ! $this->test_mode;\n }", "public function authorize()\n {\n if (!auth()->check()) {\n return false;\n }\n return true;\n }", "public function hasAuthorized() {\n return $this->_has(1);\n }", "public function authorize()\n {\n $resource = Resource::find($this->route('id'));\n\n if (!$resource) {\n return true;\n }\n\n return $resource && $this->user()->can('access', $resource);\n }", "public function authorize()\n {\n /*\n if ($this->loan_id && is_numeric($this->loan_id) && $loan = Loan::whereId($this->loan_id)->first()) {\n // loan_id belongs to requesting user\n return $loan && $this->user()->id == $loan->user_id;\n }\n */\n return true; // let rules handle it\n }", "public function authorize()\n {\n //TODO Authorice Request (without Controller)\n return auth()->user()->role_id === 1;\n }", "public function authorize(): bool\n {\n return $this->user()->id === $this->article->user->id;\n }", "public function authorize()\n {\n return $this->user()->rol == 'admin' ? true : false;\n }", "public function isAuth()\n {\n return $this->session->hasAuthorisation();\n }", "public function authorize()\n {\n if(Auth::user())\n {\n return true;\n }\n else\n {\n return false;\n }\n }", "public function authorize()\n {\n //Check if user is authorized to access this page\n if($this->user()->authorizeRoles(['admin', 'hrmanager', 'hruser'])) {\n return true;\n } else {\n return false;\n }\n }", "public function authorize()\n {\n return \\Auth::check() ? true : false;\n }", "public function authorize()\n\t{\n\t\treturn true; //no user checking\n\t}", "public function authorize()\n {\n return $this->user()->id === $this->route('report')->user_id;\n }", "public function authorize()\n {\n return $this->user()->id === $this->route('report')->user_id;\n }", "public function authorize()\n {\n return !empty(Auth::user());\n }", "public function authorize()\n {\n return $this->groupHasUser() || $this->hasSeller();\n }", "public function authorize()\n\t{\n\t\t//@todo check with perissions\n\t\treturn (request()->user()->user_type == ADMIN_USER);\n\t}", "public function authorize()\n\t{\n\t\t//@todo check with perissions\n\t\treturn (request()->user()->user_type == ADMIN_USER);\n\t}", "public function isAuthorized() {\n\t\t\n\t}", "public function authorize()\n {\n if(Auth::check())\n {\n return (Auth::user()->has_world_admin_access);\n }\n return false;\n }", "public function authorize()\n {\n if (!\\Auth::guest()) {\n $user = \\Auth::getUser();\n if ($user->type == User::USER_TYPE_ADMIN) {\n return true;\n }\n }\n\n return false;\n }", "public function authorize()\n {\n if (auth()->user()->is_admin) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n if ($this->user()->is_admin){\n return true;\n }\n else if ($this->method == \"PUT\"){\n if ($this->user()->id == $this->input('id')){\n return true;\n }\n }\n return false;\n }", "public function authorize(): bool\n {\n return parent::authorize() && (int)$this->playList->user_id === auth()->user()->id;\n }", "public function authorize() {\n\t\treturn $this->user()->is_admin;\n\t}", "public function authorize()\n {\n if (Auth::check()) {\n \n return true;\n \n }\n return false;\n }", "public function authorize()\n {\n $user = Auth::user();\n return $user && $user->rol == 'admin';\n }", "public function authorize()\n\t{\n\t\t// Nutzern akzeptiert werden\n\t\tif(Auth::check())\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public function authorize()\n {\n // TODO: Check if has business\n return session()->has('id');\n }", "public function authorize()\n {\n if (auth()->check() && auth()->user()->isAdmin()) {\n return true;\n }\n\n return false;\n }", "public function authorize()\n {\n return $this->auth->check();\n }", "public function authorize() {\n\t\t$user = \\Auth::user();\n\n\t\tif ( $user->isAdmin() ) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "public function authorize()\n {\n if (auth()->user()->isAdmin() || auth()->user()->isCustomer()) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n return $this->container['auth']->check();\n }", "function isAuthorized($request) {\n return true;\n }", "public function authorize()\n {\n return Auth::guest() || isMember();\n }", "public function authorize()\n {\n return auth()->user() && auth()->user()->isCeo();\n }", "public function authorize(): bool\n {\n $deckId = $this->request->get('deck_id');\n $userId = Deck::whereKey($deckId)->value('user_id');\n\n return $userId === user()->id;\n }", "public function authorize()\n {\n return Auth::check() && Auth::user()->is_contractor;\n }", "public function authorize()\n {\n return TRUE;\n }", "public function authorize()\n {\n $user = User::find($this->id);\n\n if (!$user) {\n $user = User::where('no_ahli', $this->no_ahli)->first();\n }\n if ($user && $user->id == auth()->user()->id) return true;\n if (auth()->user()->is('admin')) return true;\n\n return false;\n }", "public function authorize()\n {\n # if it's false, it will rejected\n return true;\n }", "public function authorize()\n {\n $isValid = auth()->user()->is($this->route('task')->attempt->checklist->owner);\n\n return $isValid;\n }", "public function authorize()\n {\n $user = Auth::user();\n\n return ($user->getRole() == 'admin');\n }", "public function is_authorized() {\n\t\t$authorized = true;\n\t\tif ( $this->is_access_token_expired() ) {\n\t\t\t$authorized = false;\n\t\t}\n\n\t\treturn $authorized;\n\t}", "public function authorize()\n {\n $user = User::findOrFail($this->route('id'));\n\n return $user->hasRole('admin') || $user->hasRole('teacher');\n }", "public function authorize()\n {\n $project = \\App\\Project::find($this->request->get('project'));\n return $project && $project->isManager($this->user()->name);\n }", "public function isAuthorized() {\n\t\treturn (bool)$this->_storage->hasData();\n\t}", "public function authorize()\n {\n $idExpense = $this->input('expense');\n $expense = Expense::find($idExpense);\n\n return $expense && $this->user()->id == $expense->user_id;\n }", "public function authorize()\n {\n // User system not implemented\n return true;\n }", "public function authorize() : bool\n {\n // TODO check request to xhr in middleware\n return true;\n }", "public function authorize()\n {\n $organizationId = (string) $this->route('id');\n\n $this->organization = Organization::findByUuidOrFail($organizationId);\n\n return $this->user()->can('show', [Organization::class, $this->organization]);\n }", "public function authorize()\n {\n $user = $this->findFromUrl('user');\n return $this->user()->can('update', $user);\n }", "public function authorize()\n {\n $user = Auth::user();\n $orderElement = OrderElement::find($this->input(\"order_element_id\"));\n $order = $orderElement->order;\n\n if ($user->id == $order->user_id) {\n return true;\n } else {\n return false;\n }\n }", "public function authorize()\n {\n $current_user = auth()->user();\n $convention = Convention::find($this->route('convention_id'));\n\n // Use ClientPolicy here to authorize before checking the fields\n return $current_user->can('store', Convention::class)\n || $current_user->can('update', $convention);\n }", "public function authorize()\n {\n if (session()->has('user'))\n {\n $participantController = new ParticipantController();\n\n return !$participantController->isParticipating($this->input('id_user'), $this->input('id_event'));\n }\n else\n {\n return false;\n }\n }", "public function authorize()\n {\n return (Auth::user()->allowSuperAdminAccess || Auth::user()->allowAdminAccess);\n }" ]
[ "0.8401071", "0.8377486", "0.8377486", "0.8344406", "0.8253731", "0.824795", "0.8213121", "0.8146598", "0.81115526", "0.8083369", "0.7991986", "0.79907674", "0.79836637", "0.79604936", "0.79516214", "0.79494005", "0.79265946", "0.7915068", "0.79001635", "0.7894822", "0.7891453", "0.7890965", "0.7862504", "0.78414804", "0.78414804", "0.7837965", "0.78248763", "0.7812292", "0.7809632", "0.77928597", "0.7788316", "0.7781619", "0.77815884", "0.7763308", "0.7754035", "0.7717961", "0.7717961", "0.77171147", "0.77138597", "0.7705001", "0.7693082", "0.7692783", "0.76915383", "0.76909506", "0.76733255", "0.7667128", "0.7665592", "0.7656238", "0.7650853", "0.764326", "0.76431626", "0.76431614", "0.7635147", "0.76311624", "0.76294273", "0.7627076", "0.76207024", "0.76207024", "0.76139116", "0.76036394", "0.76035625", "0.76035625", "0.76032084", "0.7602515", "0.76007926", "0.75971127", "0.7588128", "0.7586303", "0.7581912", "0.7563037", "0.7554785", "0.75526226", "0.755171", "0.75436753", "0.75432944", "0.7540682", "0.7538806", "0.75280696", "0.751548", "0.75149626", "0.7501161", "0.74959517", "0.74956346", "0.74911124", "0.7489147", "0.74858016", "0.748033", "0.7478443", "0.7472642", "0.7472576", "0.7465409", "0.7464371", "0.74630046", "0.7462218", "0.7461453", "0.7449168", "0.74399257", "0.74358094", "0.7433247", "0.7432659", "0.74248093" ]
0.0
-1
Get the validation rules that apply to the request. request da pagina atualizar
public function rules() { $req = SistemaAtualizarRequest::all(); if ($req['email'] == null) { return [ 'justificativa' => 'required|max:500', 'status' => 'required', ]; }else { return [ 'justificativa' => 'required|max:500', 'status' => 'required', 'email' => 'max:100|email|unique:sistemas,email' ]; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract protected function getValidationRules();", "public function rules()\n {\n $data = $this->request->all();\n $rules['username'] = 'required|email';\n $rules['password'] = 'required'; \n\n return $rules;\n }", "private function storeRequestValidationRules(Request $request) {\n return [\n ];\n }", "public function rules()\n {\n $rules = [];\n if ($this->isMethod('post')) {\n $rules = [\n 'vacancy_name' => 'required|string|min:4|max:20',\n 'workers_amount' => 'required|integer|min:1|max:10',\n 'organization_id'=> 'required|integer|exists:organizations,id',\n 'salary' => 'required|integer|min:1|max:10000000',\n ];\n } elseif ($this->isMethod('put')) {\n $rules = [\n 'vacancy_name' => 'required|string|min:4|max:20',\n 'workers_amount' => 'required|integer|min:1|max:10',\n 'organization_id'=> 'required|integer|exists:organizations,id',\n 'salary' => 'required|integer|min:1|max:10000000',\n ];\n }\n return $rules;\n }", "public function rules()\n {\n\n $rules = [\n 'id_tecnico_mantenimiento' => 'required',\n 'id_equipo_mantenimiento' => 'required'\n ];\n\n if ($this->request->has('status')) {\n $rules['status'] = 'required';\n }\n\n if ($this->request->has('log_mantenimiento')) {\n $rules['log_mantenimiento'] = 'required';\n }\n\n return $rules;\n }", "public function rules()\n {\n $commons = [\n\n ];\n return get_request_rules($this, $commons);\n }", "public function rules()\n {\n $rules = $this->rules;\n\n $rules['fee'] = 'required|integer';\n $rules['phone'] = 'required|min:8|max:20';\n $rules['facebook'] = 'required|url';\n $rules['youtube'] = 'required|url';\n $rules['web'] = 'url';\n\n $rules['requestgender'] = 'required';\n $rules['serviceaddress'] = 'required|max:150';\n $rules['servicetime'] = 'required|max:150';\n $rules['language'] = 'required|max:150';\n $rules['bust'] = 'required|max:100|integer';\n $rules['waistline'] = 'required|max:100|integer';\n $rules['hips'] = 'required|max:100|integer';\n $rules['motto'] = 'max:50';\n\n return $rules;\n }", "public function rules()\n {\n switch($this->method())\n {\n case 'GET':\n case 'DELETE':\n {\n return [];\n }\n case 'POST':\n {\n $rules = [\n 'id_moneda' => 'required',\n 'detalles_venta' => 'required',\n 'tipo_pago' => 'required'\n ];\n foreach ($this->get('detalles_venta') as $key => $val) {\n $rules['detalles_venta.'.$key.'.id_articulo'] = 'required';\n $rules['detalles_venta.'.$key.'.precio_unitario'] = 'required|min:1';\n $rules['detalles_venta.'.$key.'.cantidad'] = 'required|:min:1';\n }\n return $rules;\n }\n case 'PUT':\n case 'PATCH':\n {\n return [\n /* 'cbxMoneda' => 'required',\n 'cbxEmpleado' => 'required',\n 'cbxContacto' => 'required'*/\n ];\n }\n default:{\n return [];\n }\n }\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_MovieID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_UserID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CountryID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_BroadCastDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t\t'_CreatedDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t);\n\t}", "public function rules()\n {\n switch($this->method()){\n case 'POST':\n return [\n 'name' => 'required',\n 'app_id' => 'required',\n 'account_id' => 'required',\n 'start_at' => 'required',\n 'end_at' => 'required',\n 'content' => 'required',\n ];\n break;\n default:\n return [];\n break;\n }\n\n }", "public function getValidationRules() {\n return [\n 'email' => 'required|email',\n 'name' => 'required|min:3',\n 'password' => 'required',\n ];\n }", "public function rules(Request $request)\n { \n \n return [\n 'checkin' => 'required',\n 'checkout' => 'required',\n 'room_type' => 'required',\n 'adult' => 'required',\n 'kid' => 'required',\n ];\n \n }", "public function rules()\n {\n $rules = $this->rules;\n if(Request::isMethod('PATCH')){\n $rules['mg_name'] = 'required|min:2,max:16';\n }\n return $rules;\n }", "private function storeRequestValidationRules(Request $request) {\n $rules = [\n 'code' => 'string|required|max:64',\n 'name' => 'string|required|max:255',\n 'order' => 'string|required|max:64',\n 'ldap_id' => 'string|required|max:255',\n ];\n return $rules;\n }", "public function rules()\n {\n $rules = [\n 'first_name' => ['required'],\n 'birthdate' => ['required', 'date', 'before:today'],\n ];\n\n if (is_international_session()) {\n $rules['email'] = ['required', 'email'];\n }\n\n if (should_collect_international_phone()) {\n $rules['phone'] = ['phone'];\n }\n\n if (is_domestic_session()) {\n $rules['phone'] = ['required', 'phone'];\n }\n\n return $rules;\n }", "public function rules()\n {\n\n $rules=[\n \"user_type\"=>\"required\",\n \"group_id\"=>\"required\",\n \"class_id\"=>\"required\",\n \"stream_id\"=>\"required\",\n \"program_id\"=>\"required\",\n \"subject_id\"=>\"required\",\n ];\n if(\\Request::segment(2)==\"examlist\")\n $rules=array_merge($rules,[\"page\"=>\"required\",\"mode\"=>\"required\",\"test_type\"=>\"required\"]);\n if(\\Request::segment(2)==\"teacher_studentlist\")\n $rules=array_merge($rules,[\"section_id\"=>\"required\",\"exam_id\"=>\"required\",\"page\"=>\"required\"]);\n\n return $rules;\n\n }", "public function rules()\n {\n // get 直接放行\n if( request()->isMethod('get') ){\n return []; // 规则为空\n }\n\n // 只在post的时候做验证\n return [\n 'username' => 'required|min:2|max:10', \n 'password' => 'required|min:2|max:10', \n 'email' => 'required|min:2|max:10|email', \n 'phoneNumber' => 'required|min:2|max:10', \n\n ];\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'POST':\n return [\n 'username' => 'required|max:255',\n 'user_id' => 'required',\n 'mobile' => 'required|regex:/^1[34578][0-9]{9}$/',\n 'birthday' => 'required',\n 'cycle_id' => 'required',\n 'expired_at' => 'required',\n 'card_price' => 'required',\n ];\n case 'PUT':\n return [\n 'username' => 'required|max:255',\n 'user_id' => 'required',\n 'mobile' => 'required|regex:/^1[34578][0-9]{9}$/',\n 'birthday' => 'required',\n 'cycle_id' => 'required',\n 'expired_at' => 'required',\n 'card_price' => 'required',\n ];\n }\n }", "public function rules()\n {\n /**\n * This is the original way, expecting post params for each user value\n */\n return [\n 'firstName' => 'required|min:2|max:255',\n 'lastName' => 'required|min:2|max:255',\n 'phone' => 'min:9|max:25',\n 'gender' => 'in:M,V',\n 'dateOfBirth' => 'before:today|after:1890-01-01',\n 'email' => 'email|min:12|max:255',\n ];\n }", "public function rules()\n {\n return $this->validationRules;\n }", "public function rules(Request $request)\n {\n //dd($request->all());\n return [\n 'menu_id' => 'required',\n 'description_en' => 'required',\n 'information_en' => 'required',\n // 'nutrition_facts' => 'required',\n 'serving_size' => 'required',\n 'calories' => 'required',\n 'carbs' => 'required',\n 'protein' => 'required',\n 'fat' => 'required'\n \n ];\n }", "public function rules($request) {\n $function = explode(\"@\", $request->route()[1]['uses'])[1];\n return $this->getRouteValidateRule($this->rules, $function);\n // // 获取请求验证的函数名\n // // ltrim(strstr($a,'@'),'@')\n // if (count(explode(\"@\", Request::route()->getActionName())) >= 2) {\n // $actionFunctionName = explode(\"@\", Request::route()->getActionName()) [1];\n // }\n\n // // 取配置并返回\n // if (isset($this->rules[$actionFunctionName])) {\n // if (is_array($this->rules[$actionFunctionName])) {\n // return $this->rules[$actionFunctionName];\n // }\n // else {\n // return $this->rules[$this->rules[$actionFunctionName]];\n // }\n // }\n // else {\n // return [];\n // }\n }", "public function rules(Request $request)\n {\n\n if ($request->isMethod('PUT') || $request->isMethod('PATCH') || $request->isMethod('POST')) {\n \n return [\n 'direccion_calle' => array('required', 'regex:/[a-zA-Z0-9]/', 'max:180'),\n 'direccion_numero' => 'required|digits_between:2,6',\n 'direccion_codigo_postal' => 'required',\n 'direccion_colonia' => array('required', 'regex:/[a-zA-Z]/', 'max:180'),\n 'direccion_ciudad' => array('required', 'regex:/[a-zA-Z0-9]/', 'max:180'),\n 'direccion_estado' => array('required', 'regex:/[a-zA-Z]/', 'max:180'),\n 'direccion_pais' => array('required', 'regex:/[a-zA-Z]/', 'max:180') \n ];\n\n }\n\n\n }", "public function getValidationRules()\n {\n return [];\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_ID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CoverImageID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_TrackID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_Status' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_Rank' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CreateDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t);\n\t}", "protected function get_validation_rules()\n {\n }", "public static function getRules()\n {\n return (new static)->getValidationRules();\n }", "public function validationRules()\n {\n return [];\n }", "public function rules()\n {\n if($this->method() == 'POST')\n {\n return [\n 'reason'=>'required',\n 'date_from'=>'required',\n 'date_to'=>'required',\n 'attachment'=>'required',\n ];\n }\n }", "public function rules(Request $request)\n {\n $rules = [\n 'name' => ['required'],\n 'text' => ['required'],\n ];\n\n return $rules;\n }", "public function validationRules() {\n\t\treturn [\t \n\t\t\t'nom'=>'required',\n\t\t\t'enonce'=>'required',\n\t\t\t'sur'=>'required'\n\t];\t\n\t}", "public function rules(Request $request)\n {\n\n if ($request->isMethod('GET')) {\n return [];\n }\n\n return [\n 'transfer_from'=>'required',\n 'route'=>'required',\n 'distance'=>'required|numeric',\n 'duration'=>'required|numeric',\n 'price_4seat'=>'required|numeric',\n 'price_7seat'=>'required|numeric',\n 'price_16seat'=>'required|numeric',\n\n ];\n }", "public function rules()\n {\n $rules = [\n 'name' => 'required|string|min:2',\n 'email' => \"required|email|unique:users,email, {$this->request->get('user_id')}\",\n 'role_id' => 'required|numeric',\n 'group_id' => 'required|numeric',\n ];\n\n if ($this->request->has('password')){\n $rules['password'] = 'required|min:6';\n }\n\n return $rules;\n }", "public function rules()\n {\n switch(Route::currentRouteName()){\n case 'adminBinding' :\n return [\n 'order_id' => 'required|integer',\n 'money' => 'required|numeric',\n ];\n case 'adminUnbinding' :\n return [\n 'order_id' => 'required|integer',\n 'pivot_id' => 'required|integer',\n ];\n case 'adminReceiptSave' :\n case 'adminReceiptUpdate' :\n return [\n 'customer_id' => 'required',\n 'receiptcorp' => 'required',\n 'account' => 'required',\n 'account_id' => 'required',\n 'bank' => 'required',\n 'currency_id' => 'required',\n 'advance_amount' => 'required|numeric',\n 'picture' => 'required',\n 'business_type' => 'required|in:1,2,3,4,5',\n 'exchange_type' => 'required_unless:currency_id,354|in:1,2',\n 'expected_received_at' => 'required|date_format:Y-m-d',\n ];\n case 'adminReceiptExchange' :\n return [\n 'rate' => 'required|numeric',\n ];\n default :\n return [];\n }\n }", "public function rules()\n {\n switch($this->method()) {\n case 'POST':\n $this->rules = [\n 'nombre' => 'required|string|max:255',\n 'email' => 'required|email|max:255|unique:usuarios,email',\n 'ano' => 'required|size:4',\n 'mes' => 'required',\n 'dia' => 'required',\n 'pais' => 'required|exists:paises,id_pais',\n 'password' => 'required|min:6'\n ];\n }\n return $this->rules;\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n {\n return [\n 'mobile' => ['required','max:11','min:11'],\n 'code' => ['required','max:6','min:6'],\n 'avatar' => ['required'],\n 'wx_oauth' => ['required'],\n 'password' => ['nullable','min:6','max:20']\n ];\n }\n case 'PUT':\n case 'PATCH':\n case 'DELETE':\n default: {\n return [];\n }\n }\n }", "public function rules()\n {\n $rules = [];\n switch ($this->getMethod()):\n case \"POST\":\n $rules = [\n 'course_id' => 'required|numeric',\n 'questions' => 'required|array',\n ];\n break;\n case \"PUT\":\n $rules = [\n 'id' => 'required|numeric',\n 'course_id' => 'required|numeric',\n 'questions' => 'required|array',\n ];\n break;\n case \"DELETE\":\n $rules = [\n 'id' => 'required|numeric'\n ];\n break;\n endswitch;\n return $rules;\n }", "public function validationRules()\n {\n return [];\n }", "public function getValidationRules() : array;", "public function rules(Request $request)\n {\n $return = [];\n\n switch ($request->method) {\n\n case 'POST': case 'PATCH':\n\n $return = [\n 'content' => 'required|min:10'\n ];\n\n break;\n\n default: break;\n\n }\n\n return $return;\n }", "public function rules()\n {\n $rules = array();\n if ($this->exists('nombre')){\n $rules['nombre'] = $this->validateNombre();\n }\n if ($this->exists('categoria')){\n $rules['categoria'] = $this->validateCategoria();\n }\n if ($this->exists('detalle')){\n $rules['detalle'] = $this->validateDetalle();\n }\n if ($this->exists('precio')){\n $rules['precio'] = $this->validatePrecio();\n }\n if ($this->exists('marca')){\n $rules['marca'] = $this->validateMarca();\n }\n return $rules;\n }", "public function rules()\n {\n $rules = [];\n switch ($this->method()){\n case 'GET':\n $rules['mobile'] = ['required', 'regex:/^1[3456789]\\d{9}$/'];\n break;\n case 'POST':\n if($this->route()->getActionMethod() == 'sms') {\n $rules['area_code'] = ['digits_between:1,6'];\n if(in_array($this->get('type'), ['signup', 'reset_pay_pwd'])) {\n $rules['mobile'] = ['required', 'digits_between:5,20'];\n if($this->get('type') == 'signup' && !$this->get('area_code')) {\n $this->error('请选择区号');\n }\n }\n $rules['type'] = ['required', Rule::in(\\App\\Models\\Captcha::getSmsType())];\n }\n break;\n }\n return $rules;\n }", "public function rules() {\n\t\t$validation = [ ];\n\t\tswitch ($this->method ()) {\n\t\t\tcase 'POST' :\n\t\t\t\t$validation = [ \n\t\t\t\t\t\t'name' => 'required|max:255',\n\t\t\t\t\t\t'slug' => 'required|unique:games,slug|max:255',\n\t\t\t\t\t\t'logo' => 'required|image',\n\t\t\t\t\t\t'image' => 'required|image',\n\t\t\t\t\t\t'banner_image' => 'required|image',\n\t\t\t\t];\n\t\t\t\t\n\t\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'PUT' :\n\t\t\t\t$validation = [\n\t\t\t\t\t\t'name' => 'required|max:255',\n\t\t\t\t\t\t'slug' => 'sometimes|required||max:255|unique:games,id,'. $this->route()->getParameter('gameId'),\n\t\t\t\t];\n\t\t\t\t\n\t\t\t\tif($this->hasFile('logo')) {\n\t\t\t\t\t$validation[\"logo\"] = 'required|image';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif($this->hasFile('image')) {\n\t\t\t\t\t$validation[\"image\"] = 'required|image';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif($this->hasFile('banner_image')) {\n\t\t\t\t\t$validation[\"banner_image\"] = 'required|image';\n\t\t\t\t}\n\t\t\t\n\t\t\tdefault :\n\t\t\t\tbreak;\n\t\t}\n\t\t\n\t\treturn $validation;\n\t}", "public function rules()\n {\n switch ($this->method()) {\n case 'POST': {\n return [\n 'Fiscalyear' =>'required|unique:Fiscalyear',\n 'StartDate' => 'required|date',\n 'EndDate' => 'required|date',\n 'TaxPercent' => 'numeric',\n 'TollPercent' => 'numeric',\n 'TollPercent2' => 'numeric'\n ];\n }\n case 'GET':\n case 'DELETE':\n {\n return [];\n }\n case 'PUT':\n case 'PATCH':\n {\n return [\n 'Fiscalyear' =>'required',\n 'StartDate' => 'required|date',\n 'EndDate' => 'required|date',\n 'TaxPercent' => 'numeric',\n 'TollPercent' => 'numeric',\n 'TollPercent2' => 'numeric'\n ];\n }\n default:break;\n }\n }", "public function rules()\n {\n $method = $this->method();\n if ($this->get('_method', null) !== null) {\n $method = $this->get('_method');\n }\n // $this->offsetUnset('_method');\n switch ($method) {\n case 'DELETE':\n case 'GET':\n break; \n case 'POST':\n $mailRules = \\Config::get('database.default').'.users';\n break;\n case 'PUT':\n $user = $this->authService->authJWTUserForm();\n $mailRules = \\Config::get('database.default').'.users,email,'.$user->getKey();\n break;\n case 'PATCH':\n break;\n default:\n break;\n }\n \n return [\n 'name' => 'required|string|max:256',\n 'email' => 'required|string|email|max:255|unique:'.$mailRules,\n 'password' => 'required|string|min:3',\n ];\n }", "public function rules()\n {\n\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users',\n 'password' => 'required|min:6|confirmed',\n 'password_confirmation' => 'min:6|same:password',\n 'role_id' => 'required'\n ];\n break;\n case 'PUT':\n case 'PATCH':\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users,email,'.$this->id,\n ];\n break;\n\n default:\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users,email,'.$this->id,\n ];\n break;\n }\n return $rules;\n }", "public function rules()\n {\n return [\n 'paginate_site' => 'required|integer',\n 'paginate_admin' => 'required|integer',\n 'contactform' => 'required|integer',\n 'footer_about' => 'required|string|max:4096',\n ];\n }", "public function rules()\n {\n if($this->isMethod('post')){\n return $this->post_rules();\n }\n if($this->isMethod('put')){\n return $this->put_rules();\n }\n }", "public function rules()\n {\n\t\t\n\t\t $rules = [\n 'name' => 'required',\n 'describe' => 'required',\n 'category' => 'required',\n \n ];\n\n foreach($this->request->get('brandAndStorage') as $key => $val)\n {\n $rules['brandAndStorage.'.$key] = 'required';\n }\n\n foreach($this->request->get('propertyId') as $key => $val)\n {\n $rules['propertyId.'.$key] = 'required';\n }\n return [\n //\n ];\n }", "public function rules() {\n\n $validation = [\n 'public_id' => 'required|min:2',\n 'albom_id' => 'required|min:1',\n 'count' => 'required|integer',\n 'offset' => 'required|integer',\n 'albom' => 'required|integer',\n ];\n\n return $validation;\n }", "public function rules()\n {\n $rules = [\n 'aluno_id' => 'required',\n 'curso_id' => 'required',\n ];\n\n return $rules;\n }", "public function rules()\n\t{\n\t\t$rule = [];\n\t\tif(Request::path() == 'api/utility/upload-image'){\n\t\t\t$rule = [\n\t\t\t\t'imagePath' => 'required',\n\t\t\t];\n\t\t}else if(Request::path() == 'api/utility/check-transaction'){\n\t\t\t$rule = [\n\t\t\t\t'countNumber' => 'required',\n\t\t\t];\n\t\t}\n\t\treturn $rule;\n\t}", "public function rules()\n {\n $rules = [\n // 'status' => 'required',\n ];\n\n $languages = Language::where('status', 1)->sorted()->get();\n foreach ($languages as $language) {\n $rules[$language->locale. '.title'] = 'required';\n $rules[$language->locale. '.description'] = 'required';\n }\n\n if ($this->isMethod('PATCH')) {\n $rules['photo'] = 'image';\n }\n return $rules;\n }", "public function defineValidationRules()\n {\n return [];\n }", "public function rules()\n {\n //With password\n if(request('password') || request('password_confirmation')) {\n return array_merge($this->passwordRules(), $this->defaultRules());\n }\n //Without password\n return $this->defaultRules();\n }", "public function rules() {\n $rules = [\n 'nome' => 'required|max:255',\n 'email' => 'required|email',\n ];\n\n return $rules;\n }", "private function updateRequestValidationRules(Request $request) {\n return [\n ];\n }", "public function getRules()\n {\n return $this->validation_rules;\n }", "public function rules()\n {\n\t\tswitch($this->method()) {\n\t\t\tcase 'POST':\n\t\t\t\t{\n\t\t\t\t\treturn [\n\t\t\t\t\t\t'field_id' => 'integer|required',\n\t\t\t\t\t\t'label' => 'string|required',\n\t\t\t\t\t\t'value' => 'alpha_dash|required',\n\t\t\t\t\t\t'selected' => 'boolean',\n\t\t\t\t\t\t'actif' => 'boolean',\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\tcase 'PUT':\n\t\t\t\t{\n\t\t\t\t\treturn [\n\t\t\t\t\t\t'field_id' => 'integer|required',\n\t\t\t\t\t\t'label' => 'string|required',\n\t\t\t\t\t\t'value' => 'alpha_dash|required',\n\t\t\t\t\t\t'selected' => 'boolean',\n\t\t\t\t\t\t'actif' => 'boolean',\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\tdefault:break;\n\t\t}\n }", "public function getRules()\n {\n return $this->validator->getRules();\n }", "public function rules()\n {\n $rules = [\n 'nome' => 'required|max:255',\n 'login' => 'required|alpha_dash|max:25|unique:users',\n 'password' => 'required|min:6|confirmed',\n 'password_confirmation' => 'required|min:6|required_with:password',\n 'email' => 'nullable|email',\n 'perfis' => 'required',\n 'cpf' => 'nullable|cpf|unique:users,cpf',\n 'imagem' => 'image'\n ];\n\n if ($this->get('_method') == 'PUT') {\n $rules['login'] = 'required|alpha_dash|max:25|unique:users,login,' . $this->route('id');\n $rules['cpf'] = 'nullable|cpf|unique:users,cpf,' . $this->route('id');\n $rules['password'] = 'nullable|min:6|required_with:senha_confirmation|confirmed';\n $rules['password_confirmation'] = 'nullable|min:6|required_with:senha';\n }\n\n return $rules;\n }", "public function rules()\n {\n if ($this->request->get('action') == 'edit') {\n $valid = array(\n\n 'expensive_for' => 'required|',\n 'budget_category_id' => 'required|',\n 'budget_subcategory_id' => 'required|',\n 'expensive_quantity' => 'required|',\n 'expensive_rate' => 'required|',\n 'specifications' => 'required|',\n );\n } else {\n $valid = array(\n 'expensive_for' => 'required|',\n 'budget_category_id' => 'required|',\n 'budget_subcategory_id' => 'required|',\n 'expensive_quantity' => 'required|',\n 'expensive_rate' => 'required|',\n 'specifications' => 'required|',\n );\n }\n return $valid;\n }", "public function rules()\n {\n $rule = [\n 'kodemk' => 'bail|required',\n 'kelas' => 'bail|required',\n 'nidn' => 'bail|required',\n 'hari' => 'bail|required',\n 'tanggal' => 'bail|required',\n 'checkin' => 'bail|required',\n 'checkout' => 'bail|required',\n 'idjadwal' => 'bail|required',\n ];\n\n switch ($this->method()) {\n case 'POST':\n return $rule;\n break;\n case 'PUT':\n return $rule;\n case 'PATCH':\n return $rule;\n break;\n default:\n return [];\n break;\n }\n\n }", "public function rules()\n {\n $rules = array();\n\n if($this->exists('name')){\n $rules['name'] = $this->validarName();\n }\n\n if($this->exists('lastName')) {\n $rules['lastName'] = $this->validarName();\n }\n\n if($this->exists('userName')) {\n $rules['userName'] = $this->validarUserName();\n }\n\n if($this->exists('email')) {\n $rules['email'] = $this->validarEmail();\n }\n\n if($this->exists('especialidad')) {\n $rules['especialidad'] = $this->validarEspecialidad();\n }\n\n if($this->exists('movil')) {\n $rules['movil'] = $this->validarMovil();\n }\n\n if($this->exists('num_colegiado')) {\n $rules['num_colegiado'] = $this->validarNumColegiado();\n }\n\n if($this->exists('num_sanitario')) {\n $rules['num_sanitario'] = $this->validarNumSanitario();\n }\n\n if($this->exists('birthdate')) {\n $rules['birthdate'] = $this->validarBirthdate();\n }\n\n if($this->exists('dni')) {\n $rules['dni'] = $this->validarDnidni();\n }\n\n if($this->exists('password')) {\n $rules['password'] = $this->validarPassword();\n }\n\n if($this->exists('password_confirmation')) {\n $rules['password_confirmation'] = $this->validarPasswordConfirmation();\n }\n\n return $rules;\n }", "public function rules()\n {\n return $this->getPaginationValidationRules('id,code,name');\n }", "public function rules()\n {\n $rules = [];\n\n // Validation request for stripe keys for stripe if stripe status in active\n if($this->has('stripe_status')){\n $rules[\"api_key\"] = \"required\";\n $rules[\"api_secret\"] = \"required\";\n $rules[\"webhook_key\"] = \"required\";\n }\n\n if($this->has('razorpay_status')){\n $rules[\"razorpay_key\"] = \"required\";\n $rules[\"razorpay_secret\"] = \"required\";\n $rules[\"razorpay_webhook_secret\"] = \"required\";\n }\n\n // Validation request for paypal keys for paypal if paypal status in active\n if($this->has('paypal_status')){\n $rules[\"paypal_client_id\"] = \"required\";\n $rules[\"paypal_secret\"] = \"required\";\n $rules[\"paypal_mode\"] = \"required_if:paypal_status,on|in:sandbox,live\";\n }\n\n\n return $rules;\n }", "abstract public function getValidationRules(): array;", "public function rules()\n {\n $this->request->get('formData');\n return $rules = [\n 'daterange' => 'required',\n ];\n }", "public function rules()\n {\n $languages = array_keys(Lang::get('base.languages'));\n return [\n 'activity_type' => 'required',\n 'title' => 'required|min:5',\n 'description' => 'required|min:5',\n 'organizer' => 'required',\n 'location' => 'required_unless:activity_type,open-online,invite-online',\n \"event_url\" => 'required_if:activity_type,open-online,invite-online',\n 'language' => ['required', $this->in($languages)],\n 'start_date' => 'required',\n 'end_date' => 'required|after:start_date',\n 'audience' => ['required',new ValidAudience],\n 'theme' => ['required',new ValidTheme],\n 'country_iso' => 'required|exists:countries,iso',\n 'user_email' => 'required',\n 'organizer_type' => 'required',\n 'privacy' => 'required',\n 'leading_teacher_tag' => 'nullable'\n\n ];\n }", "public function rules()\n {\n $validation = [];\n if ($this->method() == \"POST\") {\n $validation = [\n 'name' => 'required|unique:users',\n 'email' => 'required|unique:users|email',\n 'password' => 'required|min:6|confirmed',\n 'password_confirmation' => 'required|min:6',\n 'roles' => 'required',\n ];\n } elseif ($this->method() == \"PUT\") {\n $validation = [\n 'name' => 'required|unique:users,name,' . $this->route()->parameter('id') . ',id',\n 'email' => 'required|unique:users,email,' . $this->route()->parameter('id') . ',id|email',\n 'roles' => 'required',\n ];\n\n if ($this->request->get('change_password') == true) {\n $validation['password'] = 'required|min:6|confirmed';\n $validation['password_confirmation'] = 'required|min:6';\n }\n }\n\n return $validation;\n }", "public function rules()\r\n {\r\n \r\n $validation = [\r\n \"name\" => \"required|min:4|max:50\",\r\n \"email\" => \"required|email|unique:users,email\",\r\n \"password\" =>\r\n 'required|confirmed|min:8',\r\n \"phone\" => 'required|min:10|numeric',\r\n \"qualification\" => \"required\",\r\n \"blood_group\" => \"required\",\r\n\r\n ];\r\n\r\n if ($this->isMethod(\"put\")) {\r\n $validation = [\r\n \"name\" => \"required|alpha_num|min:4|max:50\",\r\n \"password\" =>\r\n 'nullable|confirmed|min:8',\r\n 'phone' => 'required|min:10|numeric', \r\n \"qualification\" => \"required\",\r\n \"blood_group\" => \"required\", \r\n ];\r\n }\r\n\r\n return $validation;\r\n }", "public function rules()\n\t{\n\t\t$rules = [\n\t\t\t'price' => 'required',\n\t\t\t'currency' => 'required',\n\t\t\t'name' => 'required|min:10|max:120',\n\t\t\t'content' => 'required|min:10',\n\t\t\t'gearbox' => 'required',\n\t\t\t'year' => 'required|min:2',\n\t\t\t'colour' => 'required|min:2',\n\t\t\t/*'g-recaptcha-response' => 'required|recaptcha',*/\n\t\t];\n\n\t\treturn $rules;\n\t}", "public function rules()\n {\n $rule = [\n 'kodemk' => 'bail|required',\n 'kelas' => 'bail|required',\n 'nidn' => 'bail|required',\n 'hari' => 'bail|required',\n 'kode_hari' => 'bail|required',\n 'jam_in' => 'bail|required',\n 'jam_out' => 'bail|required',\n ];\n \n switch ($this->method()) {\n case 'POST':\n return $rule;\n break;\n case 'PUT':\n case 'PATCH':\n return $rule;\n break;\n default:\n return [];\n break;\n }\n\n }", "public function rules(Request $request)\n {\n $rules = [];\n if(isset($request->email)){\n $rules['email'] = 'required|email';\n }\n if(isset($request->email)){\n $rules['phone'] = 'required|numeric|digits:10|regex:/(0)[0-9]{9}/';\n }\n $rules['first_name'] = 'sometimes|required';\n $rules['last_name'] = 'sometimes|required';\n $rules['date_of_birth'] = 'date_format:Y-m-d|nullable';\n return $rules;\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'DELETE': {\n return [];\n }\n case 'POST': {\n return [\n //\n 'provincia' => 'required|unique:provincias',\n 'departamento' => 'required'\n ];\n }\n case 'PATCH':\n case 'PUT': {\n return [\n //\n 'provincia' => 'required|unique:provincias',\n 'departamento' => 'required'\n ];\n }\n default : break;\n }\n }", "public function rules()\n {\n if ($this->isMethod('PUT')){\n return [\n 'name' => 'required|string|max:191',\n 'email' => 'required|email|unique:research_groups,email,'.$this->route('research_group')->id.',id|max:191',\n 'leader' => 'required|string|max:191',\n 'gruplac' => 'url|max:191',\n 'minciencias_code' => 'required|string|max:191',\n 'minciencias_category' => 'required|max:1',\n 'website' => 'url|max:191',\n ];\n } else {\n return [\n 'name' => 'required|string|max:191',\n 'email' => 'required|email|unique:research_groups,email|max:191',\n 'leader' => 'required|string|max:191',\n 'gruplac' => 'url|max:191',\n 'minciencias_code' => 'required|string|max:191',\n 'minciencias_category' => 'max:1',\n 'website' => 'url|max:191',\n ];\n }\n }", "public function rules()\n {\n \n return [\n 'titulo' => 'required|max:100',\n 'descricao' => 'required|max:10000',\n 'lance_inicial' => 'required',\n 'valor_incremento' => 'required',\n 'tempo' => 'required',\n 'tipo' => 'required',\n 'localidade' => 'required|max:50',\n 'nota_fiscal' => Rule::requiredIf($this->get('justificativa_nao_envio_nota_fiscal') == null),\n 'justificativa_nao_envio_nota_fiscal' => Rule::requiredIf($this->get('nota_fiscal') == null),\n ];\n }", "public function rules()\n {\n if(\\Request::isMethod('post')){\n return [\n \"utilityname\" => 'required',\n \"commodity\" => 'required',\n \"market\" => 'required'\n ];\n }\n \n return [];\n \n }", "public function rules()\n {\n switch ($this->method()){\n case 'GET':\n case 'DELETE':\n return [];\n\n case 'POST':\n return [\n 'logo' => 'required|image',\n 'number' => 'required|numeric',\n 'iban_number' => 'required|string:24',\n 'name' => 'required',\n\n\n ];\n\n case 'PUT':\n case 'PATCH':\n return [\n 'logo' => 'image',\n 'number' => 'required|numeric',\n 'iban_number' => 'required|string:24',\n 'name' => 'required',\n\n ];\n\n }\n }", "public function rules()\n {\n switch($this->method())\n {\n case 'GET':\n case 'DELETE':\n {\n return [];\n }\n case 'POST':\n case 'PUT':\n {\n return [\n 'name' => 'required',\n ];\n }\n default:break;\n }\n }", "public function rules()\n {\n\n return [\n 'paterno'=>'required',\n 'materno'=>'required',\n 'nombres'=>'required',\n 'dni'=>'required',\n 'fechanacimiento'=>'required',\n 'autorizo'=>'required',\n 'esapoderado'=>'required',\n 'idtipo'=>'required|not_in:-1',\n 'email'=>'required|unique:familiar,email,'.$this->route->getParameter('familiar')\n ];\n }", "public function rules()\n {\n switch($this->method()) {\n case 'GET':\n return [];\n case 'POST':\n return [\n 'name' => 'required|max:50',\n 'company' => 'required|max:100',\n 'position' => 'required|max:50',\n 'email' => 'required|email|max:150',\n 'phone' => 'required|max:25',\n 'description' => 'nullable|max:500',\n ];\n case 'PUT':\n case 'PATCH':\n return [\n 'name' => 'required|max:50',\n 'company' => 'required|max:100',\n 'position' => 'required|max:50',\n 'email' => 'required|email|max:150',\n 'phone' => 'required|max:25',\n 'description' => 'nullable|max:500',\n ];\n case 'DELETE':\n return [];\n default:break;\n }\n \n }", "public function rules()\n {\n if($this->isMethod('post')) {\n return $this->storeRules();\n }\n else if($this->isMethod('put') || $this->isMethod('patch')){\n return $this->updateRules();\n }\n }", "public function rules()\n {\n $named = $this->route()->getName();\n switch ($named) {\n case 'admin.auth.change.password':\n return [\n 'password' => 'required|between:8,16',\n 'password_confirmation' => 'required|between:8,16'\n ];\n case 'admin.auth.edit.profile':\n return [\n 'email' => 'email',\n 'name' => 'between:1,128',\n ];\n default:\n return [\n //\n ];\n }\n }", "public function rules()\n {\n $this->sanitize();\n return [\n 'event_id' => 'required',\n 'member_id' => 'required',\n 'guild_pts' => 'required',\n 'position' => 'required',\n 'solo_pts' => 'required',\n 'league_id' => 'required',\n 'solo_rank' => 'required',\n 'global_rank' => 'required',\n ];\n }", "public function rules(Request $request)\n {\n $language = $request->language;\n return [\n 'status' => 'required',\n 'title' => 'required|name|max:255',\n //'slug' => 'required|slug|unique:pages',\n 'slug' => 'required|slug|unique:pages,slug,NULL,id,language,'.$language,\n 'content' => 'required',\n ];\n }", "public function rules()\n {\n $states = implode(',', config('constants.listState'));\n\n $rules = [\n 'name' => 'required',\n 'cpf' => 'required|min:14|max:14',\n 'rg' => 'required_if:state,SP',\n 'birth_date' => 'required|date|after_or_equal:'.now()->addYears(-123)->format(\"Y-m-d\"),\n 'phone' => 'required|min:14|max:15',\n 'state' => 'required|in:' . $states\n ];\n\n if(request()->get('state') == 'BA') {\n $rules['birth_date'] = 'required|date|before_or_equal:'.now()->subYears(18)->format(\"Y-m-d\").'|after_or_equal:'.now()->addYears(-123)->format(\"Y-m-d\");\n }\n\n return $rules;\n }", "public function rules()\n {\n $docente = $this->route('docente');\n if($this->route('docente')){\n return [\n 'id_biometrico' => 'required|unique:SistemaEsfot.users,id_biometrico,' . $docente . ',id',\n 'name' => 'required',\n 'email' => 'required|unique:SistemaEsfot.users,email,' . $docente . ',id',\n 'password' => 'nullable|min:5',\n 'tipo_rol' => 'required',\n\n ];\n }else{\n return [\n 'id_biometrico' => 'required|unique:SistemaEsfot.users,id_biometrico,' . $docente . ',id',\n 'name' => 'required',\n 'email' => 'required|unique:SistemaEsfot.users,email,' . $docente . ',id',\n 'password' => 'required',\n 'tipo_rol' => 'required',\n\n ];\n\n }\n\n }", "public function rules(Request $request)\n {\n\n\n $validation_array= [\n \"category\"=>\"required|exists:categories,id\",\n \"product\"=>\"required|exists:products,id\",\n \"user\"=>\"required|exists:users,id\",\n \"selling_price\"=>\"required|numeric\",\n \"stock\"=>\"required|numeric\",\n \"size\"=>\"required|exists:sizes,id\",\n \"code\"=>\"required|unique:stocks,code\"\n\n ];\n\n\n return $validation_array;\n }", "public function validation_rules() {\r\n\t\t$class = __CLASS__;\r\n\t\treturn $class::_object()->validates;\r\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_ID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_EventID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_SourceID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_UserID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_HasEvent' => array(\n\t\t\t\t'inArray' => array('values' => array(self::HASEVENT_0, self::HASEVENT_1),),\n\t\t\t),\n\t\t);\n\t}", "public function rules()\n {\n return [\n 'paterno'=>'required',\n 'materno'=>'required',\n 'nombres'=>'required',\n 'dni'=>'required|unique:personal,dni,'.$this->route->getParameter('personal'),\n 'email'=>'required|unique:familiar,email,'.$this->route->getParameter('personal')\n ];\n }", "public function rules()\n {\n if ($this->isMethod('POST')) {\n return [\n 'car_type_id' => 'required',\n 'merk' => 'required|string',\n 'no_plat' => 'required|string',\n 'color' => 'required|string',\n 'year' => 'required|numeric',\n 'price' => 'required',\n 'fine' => 'required',\n 'image' => 'required|mimes:jpg,jpeg,png|max:3072',\n ];\n }\n\n if ($this->isMethod('PUT')) {\n return [\n 'car_type_id' => 'required',\n 'merk' => 'required|string',\n 'no_plat' => 'required|string',\n 'color' => 'required|string',\n 'year' => 'required|numeric',\n 'price' => 'required',\n 'fine' => 'required',\n ];\n }\n }", "public function rules()\n {\n $rules = [];\n if ($this->request->get('containers') == null) {\n return ['containers' => 'required'];\n }\n\n foreach($this->request->get('containers') as $key => $val)\n {\n $position = Container::find($val)->lastPosition();\n if ($position !=null && !$position['end']) {\n $rules['containers.'.$key] = 'different:'.$val;\n }\n }\n\n if (!empty($rules)) {\n return $rules;\n }\n switch ($this->method()) {\n case 'GET':\n case 'DELETE': {\n return [];\n }\n case 'POST': {\n return [\n 'containers' => 'required',\n ];\n }\n case 'PUT':\n case 'PATCH': {\n return [\n 'user.name.first' => 'required',\n 'user.name.last' => 'required',\n 'user.password' => 'required|confirmed',\n ];\n }\n default:\n break;\n }\n }", "private function getValidation() {\n return [\n 'title' => 'required|min:4|max:50',\n 'poster' => 'required|max:255',\n 'price' => 'required',\n 'start_date' => 'required',\n ];\n }", "public function rules()\n {\n $rules = [\n 'name' => 'required|string|max:255',\n 'last_name' => 'required|string|max:255',\n 'user_type' => 'required|string',\n ];\n if ($this->method() == 'PUT') {\n $rules['email'] = 'required|string|email|max:255|unique:users,email,' . $this->route()->parameter('user');\n $rules['password'] = 'sometimes|string|' .config('rules.password');\n } else {\n $rules['email'] = 'required|string|email|max:255|unique:users';\n $rules['password'] = 'required|string|' .config('rules.password');\n }\n\n return $rules;\n }", "public function rules()\n {\n\n switch($this->method())\n {\n case 'GET':\n break;\n case 'DELETE':\n {\n return [];\n }\n case 'POST':\n {\n return [\n 'cpf' => 'required|cpf|unique:participante',\n 'email' => 'required|email|unique:participante',\n 'password' => 'required|confirmed',\n 'password_confirmation' => 'required',\n ];\n }\n case 'PUT':\n {\n return [];\n }\n default:break;\n }\n }", "public function rules()\n {\n $rules = [\n\n 'asset_id'=>'required|integer|exists:assets_tb,id',\n 'type'=>'required|string|in:internal,external',\n 'receive_date' => 'required|date',\n 'delivery_date' => 'required|date',\n 'receive_time' => 'required',\n 'delivery_time' => 'required',\n 'note' => 'nullable|string|max:1000',\n ];\n\n if (authIsSuperAdmin()) {\n $rules['branch_id'] = 'required|integer|exists:branches,id';\n }\n\n if (request()['type'] == 'external') {\n $rules['maintenance_center_id'] = 'required|integer|exists:maintenance_centers,id';\n }\n\n return $rules;\n }", "public function rules()\n {\n $rules = [\n '_token' => 'required'\n ];\n\n foreach($this->request->get('emails') as $key => $val) {\n $rules['emails.'.$key] = 'required|email';\n }\n\n return $rules;\n }", "public function rules()\n {\n \n \n $rules = [\n 'user_id'=>'required',\n 'naranja'=>'required',\n 'platano'=>'required',\n 'manzana'=>'required',\n 'fresas'=>'required',\n 'cerezas'=>'required',\n 'melocoton'=>'required',\n 'sandia'=>'required',\n 'melon'=>'required',\n 'kiwi'=>'required',\n 'uvas'=>'required',\n 'aceitunas'=>'required',\n 'frutasAlmibar'=>'required',\n 'datiles'=>'required',\n 'almendras'=>'required',\n 'nueces'=>'required'\n \n \n ];\n\n return $rules;\n }", "public function rules()\n {\n switch ($this->route()->getActionMethod()) {\n case 'login': {\n if ($this->request->has('access_token')) {\n return [\n 'access_token' => 'required',\n 'driver' => 'required|in:facebook,github,google',\n ];\n }\n return [\n 'email' => 'required|email',\n 'password' => 'required|min:6',\n ];\n }\n case 'register': {\n return [\n 'email' => 'required|email|unique:users,email',\n 'password' => 'required|min:6',\n 'name' => 'required',\n ];\n }\n default: return [];\n }\n }" ]
[ "0.76396567", "0.7600609", "0.75933844", "0.7531062", "0.75197107", "0.7505342", "0.7429589", "0.74287987", "0.74253327", "0.742466", "0.74072045", "0.7406529", "0.74062157", "0.73816955", "0.7365205", "0.73641956", "0.73193264", "0.7312056", "0.7303371", "0.7299229", "0.7296699", "0.72966", "0.72819465", "0.7281254", "0.7278686", "0.72764754", "0.7268036", "0.72667295", "0.7264649", "0.7258572", "0.7257743", "0.72413784", "0.72392094", "0.7223724", "0.7219853", "0.72195405", "0.721836", "0.72129786", "0.7201268", "0.71979445", "0.7195034", "0.71932644", "0.7190164", "0.7185893", "0.71852595", "0.71850663", "0.71831745", "0.7181736", "0.7181689", "0.7179166", "0.7178161", "0.71775156", "0.71774995", "0.7177424", "0.71759266", "0.7170507", "0.7169438", "0.7168394", "0.7162638", "0.7160692", "0.7155939", "0.7155367", "0.71536046", "0.71531785", "0.71513724", "0.71490014", "0.7144717", "0.71427846", "0.71397024", "0.71389353", "0.7135431", "0.7135386", "0.71324635", "0.7126162", "0.71215564", "0.7118339", "0.7116755", "0.7116744", "0.7114889", "0.7110239", "0.710534", "0.7104513", "0.71042633", "0.7101636", "0.7100442", "0.7097179", "0.7095017", "0.7094296", "0.70918983", "0.709178", "0.70890504", "0.7088248", "0.70854586", "0.70837086", "0.70836765", "0.70827466", "0.7081916", "0.70817804", "0.7080841", "0.7075991", "0.7074417" ]
0.0
-1
Create a new command instance.
public function __construct() { parent::__construct(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function newCommand() {\n return newinstance(Command::class, [], '{\n public static $wasRun= false;\n public function __construct() { self::$wasRun= false; }\n public function run() { self::$wasRun= true; }\n public function wasRun() { return self::$wasRun; }\n }');\n }", "public function createCommand()\r\n\t{\r\n\t\t$obj = new DbCommand($this,$this->dbms);\r\n\t\treturn $obj;\r\n\t}", "public function createCommand() {\n\t\treturn new UnboxedCommand( $this );\n\t}", "protected function createCommand($args) {\n $command = new Command();\n $command->id = ifseta($args, 'id');\n $command->name = ifseta($args, 'name');\n $command->url = ifseta($args, 'url');\n $command->description = ifseta($args, 'description');\n $command->uses = ifseta($args, 'uses');\n $command->creationDate = ifseta($args, 'creation_date');\n $command->lastUseDate = ifseta($args, 'last_use_date');\n $command->goldenEggDate = ifseta($args, 'golden_egg_date');\n return $command;\n }", "static public function create($cmd = null, $args = null)\n {\n return new self($cmd, $args);\n }", "public function createCommand($kernel, string $commandName = null, string $commandDescription = null): Command;", "public function makeCommand() \n {\n if($this->CrontabCommandObject === NULL)\n {\n $this->CrontabCommandObject = new \\root\\library\\Crontab\\CrontabCommand\\CrontabCommand();\n }\n \n return $this->CrontabCommandObject;\n }", "public function testInstantiation()\n {\n $command = new CreateRule('dummy name');\n }", "public function command(Command $command);", "public function __construct($command)\n {\n $this->command = $command;\n }", "public static function create(array $data)\n {\n $command = new static();\n $command->exchangeArray($data);\n return $command;\n }", "protected function getCreateCommand()\n {\n $command = new IndexCreateCommand();\n $command->setContainer($this->getContainer());\n\n return $command;\n }", "public function createCommand($string = '')\n {\n return $this->createStringable($string);\n }", "public function createCommand($type) {\r\n $command = $this->xml->createElement('command');\r\n $command->setAttribute('xsi:type', $type);\r\n $command->setAttribute('xmlns', '');\r\n $this->xmlSchema($command);\r\n return $command;\r\n }", "public function __construct()\n {\n // We will go ahead and set the name, description, and parameters on console\n // commands just to make things a little easier on the developer. This is\n // so they don't have to all be manually specified in the constructors.\n if (isset($this->signature)) {\n $this->configureUsingFluentDefinition();\n } else {\n parent::__construct($this->name);\n }\n\n // Once we have constructed the command, we'll set the description and other\n // related properties of the command. If a signature wasn't used to build\n // the command we'll set the arguments and the options on this command.\n $this->setDescription((string) $this->description);\n\n $this->setHelp((string) $this->help);\n\n $this->setHidden($this->isHidden());\n\n if (! isset($this->signature)) {\n $this->specifyParameters();\n }\n }", "public function make(string $name, PreprocessorInterface $preprocessor = null): CommandInterface;", "private function _getCommandByClassName($className)\n {\n return new $className;\n }", "public function newCommand($regex, $callable) {\n $cmd = new Command();\n $cmd->regex = $regex;\n $cmd->callable = $callable;\n return $this->addCommand($cmd);\n }", "public static function create($commandID, ...$args)\n {\n $arguments = func_get_args();\n\n return new static(array_shift($arguments), $arguments);\n }", "private function __construct($command = null)\n {\n $this->command = $command;\n }", "public static function factory(string $command, string $before = '', string $after = ''): self\n {\n return new self($command, $before, $after);\n }", "public function getCommand() {}", "protected function buildCommand()\n {\n $command = new Command(\\Tivie\\Command\\ESCAPE);\n $command\n ->chdir(realpath($this->repoDir))\n ->setCommand($this->gitDir)\n ->addArgument(new Argument('tag', null, null, false))\n ->addArgument(new Argument($this->tag, null, null, true));\n\n return $command;\n }", "public function testCanBeInstantiated()\n {\n $command = $this->createInstance();\n $this->assertInstanceOf('\\\\Dhii\\\\ShellInterop\\\\CommandInterface', $command, 'Command must be an interoperable command');\n $this->assertInstanceOf('\\\\Dhii\\\\ShellCommandInterop\\\\ConfigurableCommandInterface', $command, 'Command must be a configurable command');\n $this->assertInstanceOf('\\\\Dhii\\\\ShellCommandInterop\\\\MutableCommandInterface', $command, 'Command must be a mutable command');\n }", "public function getCommand();", "protected function createCommand($name, array $parameters = [])\n {\n return new Fluent(\n array_merge(\n compact('name'),\n $parameters)\n );\n }", "public function testCanPassCommandStringToConstructor()\n {\n $command = new Command('/bin/ls -l');\n\n $this->assertEquals('/bin/ls -l', $command->getExecCommand());\n }", "public function makeCommandInstanceByType(...$args): CommandInterface\n {\n $commandType = array_shift($args);\n\n switch ($commandType) {\n case self::PROGRAM_READ_MODEL_FETCH_ONE_COMMAND:\n return $this->makeFetchOneCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_FIND_COMMAND:\n return $this->makeFindCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_FIND_LITE_COMMAND:\n return $this->makeFindLiteCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_CREATE_TASK_COMMAND:\n return $this->makeItemCreateTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_CREATE_COMMAND:\n return $this->makeItemCreateCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_UPDATE_TASK_COMMAND:\n return $this->makeItemUpdateTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_UPDATE_COMMAND:\n return $this->makeItemUpdateCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_DELETE_TASK_COMMAND:\n return $this->makeItemDeleteTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_DELETE_COMMAND:\n return $this->makeItemDeleteCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_ADD_ID_COMMAND:\n return $this->makeItemAddIdCommand(...$args);\n\n default:\n throw new FactoryException(sprintf('Command bus for type `%s` not found!', (string) $commandType));\n }\n }", "public function __construct($cmd)\n {\n $this->cmd = $cmd;\n }", "public function getCommand()\n {\n }", "public function command($class)\n {\n $runnable = $this->resolveClass($class);\n\n if ( ! $runnable instanceof Command) {\n throw new InvalidArgumentException(get_class($runnable).' must be an instance of '.Command::class.'.');\n }\n\n $command = $runnable;\n\n if ($runnable instanceof Taggable) {\n $command = new Cached($command, $this);\n }\n\n if ($runnable instanceof Transactional) {\n $command = new Transaction($command, $this, $this->makeFromContainer(ConnectionInterface::class));\n }\n\n if ($runnable instanceof Eventable) {\n $command = new Evented($command, $this);\n }\n\n return $this->newBuilder($command);\n }", "protected function createCommandFactory(): CommandFactory\n {\n return new CommandFactory([\n 'CLOSE' => Command\\CLOSE::class,\n ]);\n }", "public static function register() {\n\n if ( !defined( 'WP_CLI' ) || !WP_CLI ) {\n return;\n }\n \n $instance = new static;\n if(empty( $instance->namespace )) {\n throw new \\Exception(\"Command namespace not defined\", 1);\n \n }\n\t\t\\WP_CLI::add_command( $instance->namespace, $instance, $instance->args ?? null );\n\t}", "public function addCommand($command);", "public function add(Command $command);", "abstract protected function getCommand();", "public function createCommand()\r\n\t{\r\n\t\t//start the string\r\n\t\t$command = '';\r\n\t\t\r\n\t\t//add the java command or the path to java\r\n\t\t$command .= $this->java_path;\r\n\t\t\r\n\t\t//add the class path\r\n\t\t$command .= ' -cp \"'. $this->stanford_path . $this->seperator . '*\" ';\r\n\t\t\r\n\t\t//add options\r\n\t\t$options = implode(' ', $this->java_options);\r\n\t\t$command .= '-'.$options;\r\n\t\t\r\n\t\t//add the call to the pipeline object\r\n\t\t$command .= ' edu.stanford.nlp.pipeline.StanfordCoreNLP ';\r\n\r\n\t\t//add the annotators\r\n\t\t$command .= '-annotators '. $this->listAnnotators();\r\n\t\t\r\n\t\t//add the input and output directors\r\n\t\t$command .= ' -file '. $this->tmp_file . ' -outputDirectory '. $this->tmp_path;\r\n\t\t\r\n\t\t//this is for testing purposes\r\n\t\t//$command .= ' -file '. $this->tmp_path .'\\\\nlp3F25.tmp' . ' -outputDirectory '. $this->tmp_path;\r\n\t\t\r\n\t\t//if using regexner add this to the command string\r\n\t\tif($this->annotators['regexner'] === true)\r\n\t\t{\r\n\t\t\t$command .=' -regexner.mapping '. $this->regexner_path . $this->seperator . $this->regexner_file;\r\n\t\t}\r\n\t\t\r\n\t\t\r\n\t\treturn $command;\r\n\t}", "protected function createCommand(string $name, array $parameters = []): Fluent\n {\n return new Fluent(array_merge(compact('name'), $parameters));\n }", "public function __construct()\n {\n parent::__construct(static::NAME, static::VERSION);\n $this->add(new DefaultCommand());\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->command_name = config(\"custom-commands.command_name\");\n\n parent::__construct($this->signature = $this->command_name);\n\n $this->commands = (array) config(\"custom-commands.commands\");\n \n $this->table = config(\"custom-commands.table\");\n\n $this->row = config(\"custom-commands.row\");\n\n $this->changeEnv = (boolean) config(\"custom-commands.change_env\");\n\n }", "protected function createCommandFile()\n {\n $command_file_full_path = $this->command_dir_path . DIRECTORY_SEPARATOR . $this->arg->getCommandFileName();\n\n // Check if the command already exists\n if (file_exists($command_file_full_path)) {\n throw new Exception('Command already exists.');\n }\n\n // Create the file for the new command\n $command_file = fopen($command_file_full_path, 'w');\n\n // TODO: Create Script Generator to generate the PHP scripts for the new command.\n\n fclose($command_file);\n\n $this->console->getOutput()->println('File created at: ' . $command_file_full_path);\n $this->console->getOutput()->success('Command ' . $this->arg->getSignature() . ' created successfully.');\n }", "public static function create() {}", "public static function create() {}", "public static function create() {}", "public static function create(InteropContainer $container)\n {\n $middleware = $container->get('cmd.middleware');\n return new CommandBusFactory($middleware);\n }", "private function createCli() {\n $this->cli = new Cli();\n $this->commands = $this->commandParser->getAllCommands();\n\n foreach ($this->commands as $command) {\n if ($command->isDefault()) {\n $this->cli->command(\"*\");\n foreach ($command->getOptions() as $option) {\n $this->cli->opt($option->getName(), $option->getDescription(), $option->isRequired(), $option->getType());\n }\n foreach ($command->getArguments() as $argument) {\n if (!$argument->isVariadic())\n $this->cli->arg($argument->getName(), $argument->getDescription(), $argument->isRequired());\n }\n }\n if ($command->getName() != \"\") {\n $this->cli->command($command->getName())->description($command->getDescription());\n foreach ($command->getOptions() as $option) {\n $this->cli->opt($option->getName(), $option->getDescription(), $option->isRequired(), $option->getType());\n }\n foreach ($command->getArguments() as $argument) {\n if (!$argument->isVariadic())\n $this->cli->arg($argument->getName(), $argument->getDescription(), $argument->isRequired());\n }\n }\n }\n\n\n }", "public function testInstantiation()\n {\n $this->assertInstanceOf('Contao\\ManagerBundle\\Command\\InstallWebDirCommand', $this->command);\n }", "public function command(string $command): self\n {\n $this->addCommands[] = $command;\n\n return $this;\n }", "public function create() {}", "protected function createProcess($cmd)\n {\n return new Process(explode(' ', $cmd));\n }", "public function create(){}", "protected function getCommandFactory(): Command\\Factory\n {\n return new Command\\RedisFactory();\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->commandData = new CommandData($this, CommandData::$COMMAND_TYPE_API);\n }", "public function testNewCommand() : void\n {\n $this->assertFalse($this->command->hasArguments());\n $this->assertEquals(\"\", $this->command->getArguments());\n }", "protected function createCommandBuilder()\n\t{\n\t\treturn new CSqliteCommandBuilder($this);\n\t}", "public function __construct($command, $config = [])\n {\n $this->command = $command;\n $this->_output = $this->getDefaultOutput();\n parent::__construct($config);\n }", "public function __construct(){\n\n global $argv;\n\n if(!isset($argv[1])){\n echo 'You must supply a command!' . PHP_EOL;\n exit;\n }//if\n\n $args = $argv;\n\n $scriptName = array_shift($args);\n $method = array_shift($args);\n\n $method = explode('-',$method);\n foreach($method as $k => $v){\n if($k != 0){\n $method[$k] = ucwords($v);\n }//if\n }//foreach\n\n $method = implode('',$method);\n\n $resolved = false;\n\n if(method_exists($this,$method)){\n call_user_func(Array($this,$method), $args);\n $resolved = true;\n }//if\n else {\n foreach(static::$extendedCommands as $commandClass){\n if(method_exists($commandClass,$method)){\n call_user_func(Array($commandClass,$method), $args);\n $resolved = true;\n break;\n }//if\n }//foreach\n }//el\n\n if(!$resolved){\n echo \"`{$method}` is not a valid CLI command!\";\n }//if\n\n echo PHP_EOL;\n exit;\n\n }", "public function forCommand($command)\n {\n $this->command = $command;\n $this->pipe = new NullPipe();\n $this->manager = new InteractiveProcessManager($this->userInteraction);\n\n return $this;\n }", "public function __construct()\n {\n parent::__construct('pwman', '0.1.0');\n\n $getCommand = new Get();\n $this->add($getCommand);\n\n $setCommand = new Set();\n $this->add($setCommand);\n }", "public function create() {\n $class_name = $this->getOption('className');\n return new $class_name();\n }", "public function createCommand(?string $sql = null, array $params = []): Command;", "public function __construct($command = NULL, $name = NULL)\n {\n $args = func_get_args();\n\n switch ($command) {\n case self::CONSTR_CMD_POPULATE_SYNCED_ARRAY:\n case self::CONSTR_CMD_POP_FROM_ARR:\n case self::CONSTR_CMD_POP_FROM_OBJ:\n case self::CONSTR_CMD_POP_FROM_DB:\n case self::CONSTR_CMD_NEW:\n $this->setup_name = $name;\n\n # shift off known args\n array_shift($args);\n array_shift($args);\n break;\n }\n\n switch ($command) {\n case self::CONSTR_CMD_POP_FROM_ARR:\n $this->applyArray($args[0]);\n break;\n case self::CONSTR_CMD_POP_FROM_OBJ:\n break;\n case self::CONSTR_CMD_POP_FROM_DB:\n break;\n case self::CONSTR_CMD_POPULATE_SYNCED_ARRAY:\n $this->applyArray($args[0]);\n $this->setAllLoaded();\n break;\n default:\n throw new OrmInputException('Guessing not supported, please explicitly specify construction type');\n self::constructGuess($args);\n }\n\n $this->ensureObjectInDb();\n }", "public function generateCommands();", "protected function newInstanceCommand($commandClass)\n {\n $class = new ReflectionClass($commandClass);\n\n return $class->newInstanceArgs($this->resolveCommandParameters($class));\n }", "protected function buildCommand()\n {\n return $this->command;\n }", "public function makeItemCreateCommand(string $processUuid, array $item): ItemCreateCommand\n {\n $processUuid = ProcessUuid::fromNative($processUuid);\n $uuid = Uuid::fromNative(null);\n $item = Item::fromNative($item);\n\n return new ItemCreateCommand($processUuid, $uuid, $item);\n }", "public function __construct($commandName, $args = [], $description = '') {\n if (!$this->setName($commandName)) {\n $this->setName('--new-command');\n }\n $this->addArgs($args);\n\n if (!$this->setDescription($description)) {\n $this->setDescription('<NO DESCRIPTION>');\n }\n }", "public function getCommand($name, array $args = array())\n {\n return parent::getCommand($name, $args)\n ->setRequestSerializer(RequestSerializer::getInstance());\n }", "protected function buildCommand()\n {\n $command = new Command(\\Tivie\\Command\\DONT_ADD_SPACE_BEFORE_VALUE);\n $command\n ->chdir(realpath($this->repoDir))\n ->setCommand($this->gitDir)\n ->addArgument(new Argument('rev-parse'))\n ->addArgument(new Argument('HEAD'));\n\n return $command;\n }", "protected function instantiateCommand(Request $request, $args)\n {\n $command = new DeletePackageCustomerCommand($args);\n\n $requestBody = $request->getParsedBody();\n\n $this->setCommandFields($command, $requestBody);\n\n return $command;\n }", "public function createCommand($sql = null, $params = [])\n {\n $command = new Command([\n 'db' => $this,\n 'sql' => $sql,\n ]);\n\n return $command->bindValues($params);\n }", "protected function setCommand($value) {\n\t\t$this->_command = trim($value);\n\t\treturn $this;\n\t}", "public function setCommand($command)\n {\n $this->command = $command;\n\n return $this;\n }", "public function buildCommand()\n {\n return parent::buildCommand();\n }", "private function registerMakeModuleCommand()\n {\n $this->app->singleton('command.make.module', function($app) {\n return $app['Caffeinated\\Modules\\Console\\Generators\\MakeModuleCommand'];\n });\n\n $this->commands('command.make.module');\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->currentDirectory = getcwd();\n $this->baseIndentLevel = 0;\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\HelpCommand\", \"help\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\InitializePlanetCommand\", \"init\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PackAndPushUniToolCommand\", \"packpushuni\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PackLightPluginCommand\", \"packlightmap\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PushCommand\", \"push\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PushUniverseSnapshotCommand\", \"pushuni\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\UpdateSubscriberDependenciesCommand\", \"updsd\");\n\n }", "public function getCommand(string $command);", "protected function registerCommand(){\n\t\t$this->app->singleton('fakeid.command.setup', function ($app){\n\t\t\treturn new SetupCommand();\n\t\t});\n\n\t\t$this->commands('fakeid.command.setup');\n\t}", "public function addCommand($command, $args = [], $data = [])\n {\n $item = new ScreenCommand();\n $item->screen_id = $this->id;\n $item->command = $command;\n $item->arguments = $args;\n $item->fill($data);\n $item->save();\n\n return $item;\n }", "public function test_creating_command_from_container()\n {\n $now = new \\DateTime();\n $this->container->add('DateTime', $now);\n $command = 'Spekkionu\\DomainDispatcher\\Test\\Commands\\CommandWithConstructor';\n $result = $this->dispatcher->dispatch($command);\n $this->assertSame($now, $result);\n }", "protected function createProcess(): Process\n {\n $command = [\n $this->settings['executable']\n ];\n\n $command[] = $this->from;\n $command[] = $this->to;\n\n // Set the margins if needed.\n if ($this->settings['marginsType'] !== self::MARGIN_TYPE_NO_MARGINS) {\n $command[] = '--marginsType=' . $this->settings['marginsType'];\n }\n\n // If we need to proxy with node we just need to prepend the $command with `node`.\n if ($this->settings['proxyWithNode']) {\n array_unshift($command, 'node');\n }\n\n // If there's no graphical environment we need to prepend the $command with `xvfb-run\n // --auto-servernum`.\n if (! $this->settings['graphicalEnvironment']) {\n array_unshift($command, '--auto-servernum');\n array_unshift($command, 'xvfb-run');\n }\n\n return new Process($command);\n }", "private function registerCommand()\n {\n $this->app->singleton('command.shenma.push', function () {\n return new \\Larva\\Shenma\\Push\\Commands\\Push();\n });\n\n $this->app->singleton('command.shenma.push.retry', function () {\n return new \\Larva\\Shenma\\Push\\Commands\\PushRetry();\n });\n }", "public function __construct(string $command, string $before = '', string $after = '')\n {\n $this->command = $command;\n $this->before = $before;\n $this->after = $after;\n }", "public function generateCommand($singleCommandDefinition);", "public function create() {\n }", "public function create() {\n }", "public function create() {\r\n }", "public function create() {\n\n\t}", "private function getImportCommand()\n {\n return new IndexImportCommand(self::getContainer());\n }", "public function __construct($command)\n {\n $this->command = $command;\n\n $this->command->line('Installing Images: <info>✔</info>');\n }", "public function __construct()\n {\n self::$instance =& $this;\n\n $commanddir = Config::main('directory');\n $excludes = Config::main('exclude');\n\n if(is_null($commanddir))\n die('Could not find commands directory. It should be specified in the main config.');\n\n //The directory where commands reside should be relative\n //to the directory with the clip executable.\n $dir = realpath(__DIR__.\"/{$commanddir}\");\n\n $cmdfiles = scandir($dir);\n //Loop through each file in the commands directory\n foreach($cmdfiles as $file)\n {\n //Assume that each file uses the standard '.php' file extension.\n $command = substr($file, 0, -4);\n\n //Ignore the unnecessary directories as commands and anything that\n //has been marked for exclusion then attempt to include the valid ones.\n if($file !== '.' && $file !== '..' && array_search($command, $excludes) === false && include(\"{$dir}/{$file}\"))\n {\n if(class_exists($command, false))\n {\n $obj = new $command;\n //Only load commands that use the clip command interface\n if($obj instanceof Command)\n $this->commands[strtolower($command)] = $obj;\n }\n }\n }\n }", "public function __construct($action, $command = null) {\n parent::__construct($action, self::NAME);\n\n $fieldFactory = FieldFactory::getInstance();\n\n $commandField = $fieldFactory->createField(FieldFactory::TYPE_STRING, self::FIELD_COMMAND, $command);\n\n $this->addField($commandField);\n }", "public function createCommand($db = null, $action = 'get')\n {\n if ($db === null) {\n $db = Yii::$app->get(Connection::getDriverName());\n }\n $this->addAction($action);\n $commandConfig = $db->getQueryBuilder()->build($this);\n\n return $db->createCommand($commandConfig);\n }", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();" ]
[ "0.8010746", "0.7333379", "0.72606754", "0.7164165", "0.716004", "0.7137585", "0.6748632", "0.67234164", "0.67178184", "0.6697025", "0.6677973", "0.66454077", "0.65622073", "0.65437883", "0.64838654", "0.64696646", "0.64292693", "0.6382209", "0.6378306", "0.63773245", "0.6315901", "0.6248427", "0.6241929", "0.6194334", "0.6081284", "0.6075819", "0.6069913", "0.60685146", "0.6055616", "0.6027874", "0.60132784", "0.60118896", "0.6011778", "0.5969603", "0.59618074", "0.5954538", "0.59404427", "0.59388787", "0.5929363", "0.5910562", "0.590651", "0.589658", "0.589658", "0.589658", "0.58692765", "0.58665586", "0.5866528", "0.58663124", "0.5852474", "0.5852405", "0.58442044", "0.58391577", "0.58154446", "0.58055794", "0.5795853", "0.5780188", "0.57653266", "0.57640004", "0.57584697", "0.575748", "0.5742612", "0.5739361", "0.5732979", "0.572247", "0.5701043", "0.5686879", "0.5685233", "0.56819254", "0.5675983", "0.56670785", "0.56606543", "0.5659307", "0.56567776", "0.56534046", "0.56343585", "0.56290466", "0.5626615", "0.56255764", "0.5608852", "0.5608026", "0.56063116", "0.56026554", "0.5599553", "0.5599351", "0.55640906", "0.55640906", "0.5561977", "0.5559745", "0.5555084", "0.5551485", "0.5544597", "0.55397296", "0.5529626", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908" ]
0.0
-1
Execute the console command.
public function handle() { try { if (User::create([ 'username' => $this->argument('username'), 'password' => Hash::make($this->argument('password')), 'email' => $this->argument('email'), ])) { $this->info("Account created!"); } else { $this->error("We couldn't create your account"); } } catch (\Exception $e) { $this->error("Error: " . $e->getMessage()); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function handle()\n {\n\t\t$this->info('league fetching ..');\n $object = new XmlFeed();\n\t\t$object->fetchLeague($this->argument('sports_id'));\n\t\t$this->info('league saved');\n }", "public function handle()\n {\n //get us the Converter class instance and call the convert() method on it.\n $this->info(\n \\Aregsar\\Converter\\ConverterFacade::convert($this->argument(\"currency\"))\n );\n }", "public function handle()\n {\n $this->locale = $this->argument('locale');\n\n $this->loadGroupLines();\n\n $this->loadNameSpacedLines();\n\n $this->info('Complete');\n }", "public function handle()\n {\n $this->importUser($this->argument('username'));\n $this->call('ldap:show-user', $this->arguments());\n }", "public function handle() {\n $user = User::where('id', $this->argument('userId'))->first();\n $this->info($user->email);\n }", "public function handle()\n {\n $translations = collect(json_decode(file_get_contents('https://raw.githubusercontent.com/getbible/Bibles/master/translations.json')))->flatten();\n switch($this->argument('action')) {\n case 'fetch':\n $this->fetchBibles($translations);\n break;\n case 'convert':\n $this->convertBibles($translations);\n break;\n }\n }", "public function handle()\n {\n try {\n $evalstr = $this->evaluater->evaluate($this->argument('evalString'));\n $this->info($evalstr);\n } catch (ForbiddenSymbolsException $exception) {\n $this->error($exception->getMessage());\n } catch (IncorrectSymbolsException $exception) {\n $this->error($exception->getMessage());\n }\n }", "public function handle()\n {\n\n $settings = Setting::fetch();\n $id = $this->argument('id');\n $this->scrape_game_data($id);\n }", "public function handle()\n {\n // env('CALENDARINDEX_TOKEN', '6f2bd927201ba4b22bb57df08db0c517e51732de')\n $this->getData($this->argument('country'), $this->argument('region'));\n }", "public function handle()\n {\n $email = $this->argument('email');\n $name = $this->argument('name');\n\n $this->info(\"starting to generate users details\");\n\n }", "public function handle()\n {\n\t\t$this->info('Importing translations...');\n\n\t\t$this->manager->importTranslations(true);\n }", "public function handle()\n {\n $user = null;\n\n if ($email = $this->option(\"email\", false)) {\n $user = $this->findByEmail($email);\n }\n\n if ($id = $this->option(\"id\", false)) {\n $user = $this->findById($id);\n }\n\n if (empty($user)) {\n $this->warn(\"User no found\");\n }\n else {\n $this->setRoleToUser($user);\n }\n }", "public function handle()\n {\n $name = ucwords($this->argument('name'));\n $this->call('repository:contract', [ 'name' => $name ]);\n $this->call('repository:class', [ 'name' => $name, '--driver' => $this->option('driver') ]);\n }", "public function handle()\n\t{\n\t\t// Superuser\n\t\tif( ! $this->option('no-superuser'))\n\t\t\t$this->call('setup:superuser');\n\n\t\t// Countries\n\t\tif( ! $this->option('no-countries'))\n\t\t\t$this->call('setup:countries', ['country' => array_filter(explode(',', $this->option('countries')))]);\n\n\t\t// Languages\n\t\tif( ! $this->option('no-languages'))\n\t\t\t$this->call('setup:languages', ['language' => array_filter(explode(',', $this->option('languages')))]);\n\n\t\t// Currencies\n\t\tif( ! $this->option('no-currencies'))\n\t\t\t$this->call('setup:currencies', ['currency' => array_filter(explode(',', $this->option('currencies')))]);\n\n\t\t// Clear cache\n\t\t$this->call('cache:clear');\n\t}", "public function handle()\n\t{\n\t\t$name = $this->argument('name');\n\t\t\n\t\t$this->info(\"Searching eve api for {$name}\");\n\t\t$result = Corporation::searchEVEAPI($name);\n\n\t\t$this->info(\"results\");\n\t\tforeach($result as $corp)\n\t\t{\n\t\t\tprint $corp->name . \" \" . $corp->id . \"\\r\\n\";\n\t\t}\n\t}", "public function handle()\n {\n $user = $this->argument('user');\n $this->info('Display this on the screen, user ' . $user);\n return 0;\n }", "public function handle()\n {\n $this->userVectors->test($this->option('force'));\n }", "public function handle()\n {\n $mapping = $this->formatMappingName((string)$this->argument('mapping'));\n \n $model = $this->option('model') ? $this->formatModelName($this->option('model')) : null;\n \n $this->filesystem->put(\n $this->buildMappingFilePath($mapping),\n $this->buildMapping(\n $this->getDefaultStub(),\n $mapping,\n $model\n )\n );\n \n $this->composer->dumpAutoloads();\n }", "public function handle()\n {\n switch ($this->argument('type')) {\n case 'dns':\n $this->dnscheck->run($this->option('dry-run') ? true : false, $this->argument('domain'));\n break;\n case 'whois':\n $this->whoischeck->run($this->option('dry-run') ? true : false, $this->argument('domain'));\n break;\n }\n }", "public function handle()\n {\n $option = $this->argument('option');\n\n if (! in_array($option, ['expired', 'all'])) {\n return $this->error('Invalid option supplied to command...');\n }\n\n $this->comment('Beginning pruning process...');\n\n $this->comment($this->pruneDatabase($option) . ' deleted from database...');\n\n $this->comment($this->pruneFiles($option) . ' deleted from files...');\n\n $this->info('Nonces pruned successfully!');\n }", "public function handle()\n {\n $subscriptionUpdateService = new SubscriptionUpdateService();\n $subscriptionUpdateService->runUpdates();\n }", "public function handle()\n\t{\n\t\t\n\t\t$source_directory = $this->argument( 'source_directory' );\n\t\t$target_directory = $this->argument( 'target_directory' );\n\t\t$template = (string) $this->option( 'template' );\n\n\t\t$statik = new \\App\\Statik\\Statik;\n\n\t\t$statik->generateHTMLFiles( $this, $source_directory, $target_directory, $template ) && $this->info( \"\\e[1;32mDONE!\" );\n\n\t}", "public function handle()\n {\n if (!$this->argument('file')) {\n $this->info('Please specify file to call.');\n }\n\n $file = $this->argument('file');\n\n if (!$this->fileHandler->exists($file)) {\n $this->info('Wrong path or file not exist.');\n }\n\n $this->executeFile($file);\n }", "public function handle()\n {\n $user = $this->argument('user');\n $this->scanner->setUserName($user);\n $this->scanner->scanUser();\n }", "public function handle()\n {\n if ($this->argument('user')) {\n $userId = $this->argument('user');\n\n $this->info(\"Liquidate affiliate commission for user \" . $userId);\n\n $user = $this->userService->findById($userId);\n\n if ($user) {\n $this->walletService->liquidateUserBalance($user);\n } else {\n $this->error(\"User not found\");\n }\n\n $this->info(\"Done\");\n } else {\n $this->info(\"Liquidate all commissions\");\n\n $this->walletService->liquidateAllUsersBalance();\n\n $this->info(\"Done\");\n }\n }", "public function handle()\n {\n $action = $this->choice('what action do you have on mind', [\n 'add-relation', 'remove-columns', 'column-type', 'rename-column'\n ]);\n switch ($action) {\n case 'add-relation':\n $this->addRelation();\n break;\n\n case 'remove-columns':\n $this->removeColumns();\n break;\n case 'column-type':\n $this->columnType();\n break;\n case 'rename-column':\n $this->renameColumn();\n break;\n default:\n $this->error('Unsupported action requested...');\n }\n $this->info('Command executed successfully');\n }", "public function handle()\n {\n $arguments = $this->arguments();\n $storageDir = $arguments['storageDir'];\n $localStorageDir = $arguments['localStorageDir'];\n $url = $arguments['url'];\n $cmd = sprintf(\"./app/Console/Commands/ShellScripts/screen_shot.sh %s %s %s\", $storageDir, $localStorageDir, $url);\n\n while (true) {\n $result = shell_exec($cmd);\n print_r($result);\n sleep(3);\n }\n }", "public function handle()\n {\n $city = $this->argument('city');\n\n $weatherService = new CurrentWeatherService();\n try {\n $weather = $weatherService->getByCity($city);\n } catch (WeatherException $e) {\n $this->error($e->getMessage());\n return;\n }\n\n $this->info('Weather for city '.$city);\n dump($weather->toArray());\n }", "public function handle()\n {\n $this->getModels($this->argument('model'));\n $this->getLanguages($this->argument('locale'));\n $this->createMultiLanguageRecords();\n }", "public function handle()\n {\n $this->processOptions();\n\n echo json_encode( $this->dateTimeRange ) . \"\\n\";\n\n $this->dispatch( new ProcessNewActionsJob(\n $this->dateTimeRange ,\n str_random( 16 ),\n $this->option('runtime-threshold')\n ) );\n }", "public function handle()\n {\n $fightId = $this->argument('fight_id');\n $metricId = $this->argument('metric_id');\n //$strategyName = 'App\\\\'.$this->argument('metric_name');\n\n $metric = BossMetric::find($metricId);\n if ($metric === null) {\n $this->error(\"Error: no metric with id: $metricId found!\");\n return;\n }\n\n $fight = Fight::find($fightId);\n\n if ($fight === null) {\n $this->error(\"Error: no fight with id: $fightId found!\");\n return;\n }\n\n $strategy = $metric->getStrategy();\n $strategy->setFight($fight);\n $strategy->run();\n }", "public function handle()\n {\n\t\t$this->call('vendor:publish');\n\t\t$this->call('migrate');\n\t\t$this->call('db:seed');\n\t\t$this->call('factotum:storage');\n\t\t$this->call('factotum:storage');\n }", "public function handle()\n {\n $user_id = $this->argument('user') ?? null;\n\n if (is_null($user_id)) {\n $users = User::all();\n\n foreach ($users as $user) {\n $this->showUserBalance($user);\n }\n } else {\n $user = User::find($user_id);\n\n $this->showUserBalance($user);\n }\n }", "public function handle()\n {\n $this->capsuleService->getAll();\n $this->line('Command Worked');\n }", "public function handle()\n {\n $platform_wechat_id = $this->argument('id');\n $customer_id = $this->argument('customer_id');\n $this->info(\"Starting at \".date('Y-m-d H:i:s').\". Running initial for 【{$this->signature}】\");\n $this->getUserInfoList($platform_wechat_id,$customer_id);\n $this->info(\"End at \".date('Y-m-d H:i:s').\". over for 【{$this->signature}】\");\n }", "public function handle()\n {\n $this->publishAssets();\n $this->call('twill:flush-manifest');\n $this->call('view:clear');\n }", "public function handle()\n {\n \n $argument = $this->argument('data');\n \n $this->prepare( $argument );\n \n $this->make();\n \n $this->info( 'migration has been created : '. $this->fileName );\n \n }", "public function handle()\n {\n chdir(resource_path('assets/ts'));\n $path = $this->argument(\"path\");\n if(isset($path))\n {\n Logger::info('execute '.$path);\n Command::executeRaw('tsc', [\"-p\", $path]);\n }else\n Logger::info('execute tsc');\n Command::executeRaw('tsc');\n }", "public function handle()\n {\n $this->info('Starting date change command.');\n\n Word::where('language_id', 1)->update(array('created_at' => '1970-01-01 00:00:01'));\n Word::where('language_id', 2)->update(array('created_at' => '1970-01-01 00:00:01'));\n\n $this->info('Dates have been changed to 1970-01-01 00:00:01');\n }", "public function handle()\n {\n $this->info($this->slugger->encode($this->argument('id')));\n }", "public function handle()\n {\n $this->line(static::$logo);\n $this->line('Neat admin current version:' . Neat::version());\n\n $this->comment('');\n $this->comment('Available commands:');\n\n $this->listAvailableCommands();\n }", "public function handle()\n {\n $this->revisions->updateListFiles();\n }", "public function handle(): void\n {\n // Set argument\n $this->url = $this->argument(self::URL_ARGUMENT);\n\n // Handler takes care of computation\n (new CommandHandler($this))->compute();\n }", "public function handle()\n {\n try\n {\n $filename = $this->argument('filename');\n Excel::import(new ObjectsImport, $filename);\n\n $this->info('Data import is now completed');\n }\n catch(Exception $ex)\n {\n $this->error($ex->getMessage());\n }\n }", "public function handle() {\n $entity = $this->validateEntity($this->argument('entity'));\n $job = new DataProcessingJob($entity, str_random(16));\n $this->dispatch($job);\n }", "public function handle()\n {\n $isProductionMode = 'prod' == $this->argument('mode');\n\n if ($isProductionMode) {\n if (!$this->confirm('Are you sure to run in production mode? Running this command may cause critical issues?')) {\n exit(1);\n }\n }\n\n $this->_recalculate($isProductionMode);\n }", "public function handle()\n {\n if(!$this->verify()) {\n $rank = $this->createRankSuperAdmin();\n $user = $this->createUserSuperAdmin();\n $user->Ranks()->attach($rank);\n $this->line('Felicitaciones');\n } else {\n $this->error('No se puede ejecutar');\n }\n }", "public function handle()\n {\n // Get CLI Input\n $user_id = $this->option(\"uid\");\n\n // User Products\n ( new CommandManager() )->showUserProducts( $user_id );\n }", "public function handle()\n {\n $force = $this->option('force');\n\n if($this->option('without-bulk')){\n $this->withoutBulk = true;\n }\n\n if ($this->generateClass($force)){\n $this->info('Generating permissions for '.$this->modelBaseName.' finished');\n }\n }", "public function handle()\n {\n $tournaments = Tournament::all()->toArray();\n foreach ($tournaments as $tournament) {\n $slug = $this->tournamentRepoObj->generateSlug($tournament['name'].Carbon::createFromFormat('d/m/Y', $tournament['start_date'])->year,'');\n DB::table('tournaments')\n ->where('id', $tournament['id'])\n ->update([\n 'slug' => $slug\n ]);\n }\n $this->info('Script executed.');\n }", "public function handle()\n {\n $userId = $this->argument('user');\n\n /** @var User $user */\n $user = User::findOrFail($userId);\n\n // Get token.\n $info = (new Client())->auth();\n\n // Save to db.\n $user->access_token = $info['access_token'];\n $user->access_secret = $info['access_secret'];\n $user->save();\n\n $this->line(\"Saved access token and secret for user: {$user->email}\");\n }", "public function handle()\n {\n $m = new MemberFromText;\n $m->train();\n $id = $m->predict($this->argument('text'));\n dump(Miembro::find($id)->toArray());\n }", "public function handle()\n {\n $this->generator\n ->setConsole($this)\n ->run();\n }", "public function handle()\n {\n $this->createController();\n $this->createServiceDir();\n\n exit;\n $args = [\n '--provider' => TestProvider::class\n ];\n $className = $this->argument('className');\n if (!$className) {\n $className = 'MethodsList';\n }\n $className = ucwords($className);\n $this->call('vendor:publish', $args);\n $this->info('Display this on the screen ' . $className);\n }", "public function handle()\n {\n $this->createDirectories();\n\n $this->publishTests();\n\n $this->info('Authentication tests generated successfully.');\n }", "public function handle()\n {\n $this->setDbConnection(\n $this->input->getOption('database') ?: config('ghost-database.default_connection')\n );\n\n $native = $this->input->getOption('native-import') ?: config('ghost-database.use_native_importer');\n\n $snapshot = $this->import($native);\n\n $this->info(\"Snapshot `{$snapshot->name}` loaded!\");\n }", "public function handle()\n {\n $exec = $this->argument('exec');\n\n switch ($exec) {\n case 'download' :\n $this->download();\n break;\n\n case 'generate' :\n $this->generate();\n break;\n\n default :\n echo \"Choose 'download' or 'generate' for this command\";\n break;\n }\n }", "public function handle()\n {\n $this->call('ziggy:generate', ['path' => './resources/js/ziggy-admin.js', '--group' => 'admin']);\n $this->call('ziggy:generate', ['path' => './resources/js/ziggy-frontend.js', '--group' => 'frontend']);\n $this->call(TranslationsGenerateCommand::class);\n }", "public function handle()\n {\n $tenantName = $this->argument('tenant');\n\n $tenant = Tenant::where('name', $tenantName)->orWhere('subdomain', $tenantName)->first();\n\n if ($tenant) {\n $tenant->setActive();\n \\Artisan::call('tinker');\n } else {\n $this->error('Error: Tenant not found');\n }\n }", "public function handle()\n {\n try {\n if (!empty($userId = $this->argument('user'))) {\n $user = User::find($userId);\n } else {\n $user = User::inRandomOrder()->first();\n }\n\n if (empty($user)) {\n throw new \\Exception('User not found');\n }\n\n echo JWTAuth::fromUser($user);\n } catch (\\Exception $e) {\n echo $e->getMessage();\n }\n\n }", "public function handle()\n {\n $this->fetchAndSetToken();\n $imagesToDownload = $this->peekImages(WatchedApp::pluck('package_name'));\n $this->fetchImages($imagesToDownload);\n\n if ($this->option('dont-optimize')) {\n return;\n }\n\n $this->runOptimizeCommand();\n }", "public function handle()\n {\n $this->setCryptIVFromUrl($this->argument('url'));\n\n $participant = URLParser::parseByName('santa.index', $this->argument('url'))->participant;\n if($participant) {\n $draw = $participant->draw;\n } else {\n $draw = URLParser::parseByName('organizer.index', $this->argument('url'))->draw;\n }\n\n $this->table(\n ['ID', 'Name', 'Email'],\n $draw->participants()->get(['id', 'name', 'email'])->toArray()\n );\n }", "public function handle()\n {\n // if you are on the local environment\n if (!(app()->isLocal() || app()->runningUnitTests())) {\n $this->error('This command is only available on the local environment.');\n return;\n }\n\n $fqdn = $this->argument('fqdn');\n if ($tenant = Tenant::retrieveBy($fqdn)){\n $tenant->delete($fqdn);\n $this->info(\"Tenant {$fqdn} successfully deleted.\");\n }else {\n $this->error('This fqdn doesn\\'t exist.');\n }\n\n }", "public function handle()\n {\n $user_from = $this->option('from');\n $user_to = $this->option('to');\n $sum = $this->option('sum');\n\n CreateTransaction::dispatch($this->usersRepository->getByID($user_from), $this->usersRepository->getByID($user_to), $sum, true);\n $this->transactionsRepository->getAll()->each(function ($transaction){\n \tExecuteTransaction::dispatch($transaction);\n });\n }", "public function handle()\n {\n $this->warn('Starting Retrieve Data');\n\n PeopleService::retrieveData();\n\n $this->info('Retrieve Data Completed');\n }", "public function handle()\n {\n \n $period = $this->option('period');\n \n switch ($period) {\n\n case 'half_month':\n $this->info('Grabing Half Month Income...');\n $this->halfMonth();\n break;\n\n case 'monthly':\n $this->info('Grabing Monthly Income...');\n $this->monthly();\n break;\n \n default:\n $this->info('Grabing Daily Income...');\n $this->daily();\n break;\n\n }\n\n \n }", "public function handle()\n {\n $countryFiles = $this->getFiles();\n\n foreach ($countryFiles as $fileName) {\n $this->seed($fileName);\n }\n\n $this->info('End.');\n }", "public function fire()\n {\n $entityName = $this->argument('entityName');\n $startEntityId = $this->argument('startEntityId');\n $endEntityId = $this->argument('endEntityId');\n $depth = $this->argument('depth');\n\n $this->fixturePath = $this->option('outputPath');\n\n $this->info(\"Generating fixtures for $entityName in {$this->fixturePath}...\");\n \n $this->generateFixtures($entityName, $startEntityId, $endEntityId, $depth);\n }", "public function handle()\n {\n $check = PublishTraitsService::publishTraits();\n\n if ($check)\n {\n $this->info('All files have been published');\n }\n\n $this->info('Failed to publish');\n }", "public function handle()\n {\n $user = User::where('username', $this->argument('user'))\n ->orWhere('email', $this->argument('user'))\n ->first();\n\n if ($user != null) {\n $user->assign('admin');\n $this->line(\"{$user->email} was successfully made an admin.\");\n } else {\n $this->line(\"No user found where username or email is '{$this->argument('user')}'\");\n }\n }", "public function handle()\n {\n event( 'laraview:compile' );\n $this->checkForSelectedViewGeneration();\n\n app( RegisterBlueprint::class )\n ->console( $this )\n ->generate();\n }", "public function handle()\n {\n $project = Project::with(['team.admins', 'team.members'])->findOrFail($this->option('project-id'));\n $user = User::findOrFail($this->option('user-id'));\n if ($this->option('admin')) {\n $project->team->admins()->syncWithoutDetaching($user);\n } else {\n $project->team->members()->syncWithoutDetaching($user);\n }\n return Command::SUCCESS;\n }", "public function handle() {\n try {\n $this->roomService->loadRoomOccupations();\n Log::notice('untis:occupations executed successfully.');\n $this->line('Loaded room occupations from WebUntis.');\n } catch (Exception $e) {\n Log::error('Error loading room occupations.', ['exception' => $e]);\n $this->error('Error loading room occupations: ' . $e->getMessage());\n }\n }", "public function handle()\n {\n $this->loadIxList();\n $this->loadIxMembersList();\n $this->updateIxInfo();\n $this->updateIxMembersInfo();\n }", "public function handle()\n {\n $this->call('vendor:publish', [\n '--provider' => \"Qoraiche\\MailEclipse\\MailEclipseServiceProvider\",\n ]);\n }", "public function handle()\n\t{\n\t\tif ($this->option('dev')) {\n\t\t\tsystem('php '.base_path('.deploy/deploy-dev.php'));\n\t\t} else {\n\t\t\tsystem('php '.base_path('.deploy/deploy.php'));\n\t\t}\n\t}", "public function handle(Command $command);", "public function handle(Command $command);", "public function handle()\n {\n $date_from = $this->argument('date_from');\n\t\t$date_to = $this->argument('date_to');\n\t\tif(!$date_from) {\n\t\t\t$date_from = Carbon::today()->subDays(5);\n\t\t}\n\t\tif(!$date_to) {\n\t\t\t$date_to = Carbon::yesterday();\n\t\t}\n\t\tStats::computeMembers($this->argument('venue_id'), $date_from, $date_to);\n }", "public function handle()\n {\n switch ($this->argument('type')){\n case 'fih':\n $scrapper = new Scrappers\\FederationScrapper();\n $scrapper->get($this->option('level'));\n print $scrapper->message();\n break;\n }\n }", "public function handle()\n {\n Log::info(\"seed:dash Command is working fine!\");\n $this->info('Dashboard Database seeding completed successfully.');\n }", "public function handle()\n {\n $originalId = $this->argument('original_id');\n\n $status = true;\n if ($this->option('status') === 'false') {\n $status = false;\n }\n\n if ($video = Video::where('original_id', $originalId)->first()) {\n $video->dmca_claim = $status;\n $video->save();\n\n $this->info('Video\\'s dmca_claim set to: ' . json_encode($status));\n return ;\n }\n\n $this->error('No video found with original_id of: ' . $originalId);\n return;\n }", "public function handle()\n {\n $this->call('config:clear');\n\n $this->call('config:update');\n\n $this->info('Configuration cached successfully!');\n }", "public function handle()\n {\n //\n $modelName = $this->argument('model');\n $column = $this->argument('column');\n $this->generateMutation($modelName, $column);\n\n }", "public function handle()\n {\n $filePath = 'public/' . $this->argument('fileName');\n $count = $this->argument('count');\n \n $fileData = array_slice(file($filePath), 0, $count);\n $this->info(implode('', $fileData));\n }", "public function handle()\n {\n $email = $this->argument('email');\n\n Mail::to($email)->send(new SendMailable('Test Mail'));\n\n if (Mail::failures()) {\n $this->info('Email failed to send');\n } else {\n $this->info('Email successfully sent');\n }\n }", "public function handle()\n {\n $this->call('route:trans:clear');\n\n $this->cacheRoutesPerLocale();\n\n $this->info('Routes cached successfully for all locales!');\n }", "public function handle()\n {\n $this->info('Welcome to command for Bantenprov\\WilayahIndonesia package');\n }", "public function handle()\n {\n if($this->hasOption('no_dump') && $this->option('no_dump')){\n $this->composer_dump = false;\n }\n $this->readyDatas();\n $this->datas['startSymbol']='{{';\n $this->datas['endSymbol']='}}';\n $this->create();\n }", "public function handle()\n {\n $repository = new OglasiCrawlerRepository();\n $ads = $repository->getAds();\n $repository->saveAds($ads);\n\n echo 'Ads were successfully retrieved' . PHP_EOL;\n }", "public function handle()\n {\n $this->makeDir($this->basePath . $this->kebabPlural());\n\n $this->exportViews();\n\n $this->info('Resource views generated successfully.');\n }", "public function handle()\n {\n $movies = \\App\\Models\\Movie::whereNull('meta')->take(40)->orderBy('id')->get();\n $movies->each(function($movie){ sleep(1); $movie->getMeta(); });\n return Command::SUCCESS;\n }", "public function handle()\n {\n $this->packageGenerator->setConsole($this)\n ->setPackage($this->argument('package'))\n ->setType('shipping')\n ->setForce($this->option('force'))\n ->generate();\n }", "public function handle()\n {\n $test = $this->argument('test');\n\n $dir = config('speed-test.dir');\n\n $className = ucfirst(\\Str::camel($test));\n\n $namespace = config('speed-test.namespace');\n\n $class = class_entity($className)\n ->namespace($namespace);\n\n $class->method('speed1')\n ->line($this->option('line'))->doc(function ($doc) use ($className) {\n /** @var DocumentorEntity $doc */\n $doc->tagCustom('times', $this->option('times'));\n $doc->description($this->option('description') ?: \"{$className} Speed 1\");\n });\n\n if (! is_dir($dir)) {\n mkdir($dir, 0777, 1);\n }\n\n file_put_contents(\n $dir.'/'.$className.'.php',\n $class->wrap('php')\n );\n\n $this->info('Speed created!');\n\n return 0;\n }", "public function handle()\n {\n $message = $this->GenerateRandomUser($this->argument('count'));\n $this->info($message);\n }", "public function handle()\n {\n $host = Cache::get('executingHost', null);\n $this->info(\"Host: ${host}\");\n\n if ($host === null) {\n $this->info('実行するホストが選択されていません');\n return;\n }\n\n if (Schema::hasTable('companies') && Company::count() !== 0) {\n $this->info('マイグレーションが既に1回以上実行されています');\n return;\n }\n\n $should_execute = $host === $this->argument('executingHost');\n\n if ($should_execute) {\n Artisan::call('migrate:fresh', ['--seed' => true]);\n $this->info('マイグレーションが完了しました');\n\n Cache::forget('executingHost');\n } else {\n $this->info('別ホストにてマイグレーションが行われます');\n }\n }", "public function handle()\n {\n // Configuration...\n $this->callSilent('vendor:publish', ['--tag' => 'model-login-config']);\n\n // Migrations\n $this->callSilent('vendor:publish', ['--tag' => 'model-login-migrations']);\n\n $this->info('Model Login resources published.');\n }", "public function handle()\n {\n if ($this->validation()) {\n $money = $this->argument('money');\n Cache::increment('amount', $money);\n }\n }", "public function handle()\n {\n $this->info('Publishing stuff..');\n\n $this->publishFiles();\n\n $this->info('Setup complete. Enjoy!');\n }", "public function handle()\n {\n $this->publishConfig();\n $this->publishClassStub();\n $this->generateAndStoreKey();\n\n $this->info('Use the details below for your \"Lead delivery options\" in Google Ads.');\n $this->info('Webhook URL: ' . route('GoogleAdsLeadExtensionController@index'));\n $this->info('Key: ' . $this->generated_key);\n }", "public function handle()\n {\n $opts = $this->options();\n $args = $this->arguments();\n #print_r($opts);\n #print_r($args);\n\n # Redundant as argument validation handled by Laravel\n #\n if (!isset($args['destination'])) {\n printf(\"Usage: php artisan %s\\n\", $this->signature);\n exit(1);\n }\n\n # Default to normal message type\n #\n if (!isset($opts['type'])) {\n $opts['type'] = 'normal';\n }\n\n $uac = new UserApiController();\n\n if ($opts['type'] == 'normal') {\n if (!isset($opts['message'])) {\n printf(\"Usage: php artisan %s\\n\\n\", $this->signature);\n printf(\"ERROR: Message must be specified for type 'normal'\\n\");\n exit(1);\n }\n $result = $uac->sendSms(\n $args['destination'],\n $opts['message'],\n $opts['route']\n );\n }\n else if ($opts['type'] == 'otp') {\n $result = $uac->sendVerificationSms(\n $args['destination'],\n '<code>',\n '<name>',\n $opts['route'],\n '<appName>'\n );\n }\n\n if ($result === true) {\n printf(\"INFO: SMS message to %s sent successfully (%s)\\n\",\n $args['destination'], $opts['type']);\n }\n else {\n printf(\"INFO: SMS message to %s failed to send (%s)\\n\", \n $args['destination'], $opts['type']);\n printf(\"ERROR: %s\\n\", $result);\n }\n\n return;\n }" ]
[ "0.6469962", "0.6463639", "0.64271367", "0.635053", "0.63190264", "0.62747604", "0.6261977", "0.6261908", "0.6235821", "0.62248456", "0.62217945", "0.6214421", "0.6193356", "0.61916095", "0.6183878", "0.6177804", "0.61763877", "0.6172579", "0.61497146", "0.6148907", "0.61484164", "0.6146793", "0.6139144", "0.61347336", "0.6131662", "0.61164206", "0.61144686", "0.61109483", "0.61082935", "0.6105106", "0.6103338", "0.6102162", "0.61020017", "0.60962653", "0.6095482", "0.6091584", "0.60885274", "0.6083864", "0.6082142", "0.6077832", "0.60766655", "0.607472", "0.60739267", "0.607275", "0.60699606", "0.6069931", "0.6068753", "0.6067665", "0.6061175", "0.60599935", "0.6059836", "0.605693", "0.60499364", "0.60418284", "0.6039709", "0.6031963", "0.6031549", "0.6027515", "0.60255647", "0.60208166", "0.6018581", "0.60179937", "0.6014668", "0.60145515", "0.60141796", "0.6011772", "0.6008498", "0.6007883", "0.60072047", "0.6006732", "0.60039204", "0.6001778", "0.6000803", "0.59996396", "0.5999325", "0.5992452", "0.5987503", "0.5987503", "0.5987477", "0.5986996", "0.59853584", "0.5983282", "0.59804505", "0.5976757", "0.5976542", "0.5973796", "0.5969228", "0.5968169", "0.59655035", "0.59642595", "0.59635514", "0.59619296", "0.5960217", "0.5955025", "0.5954439", "0.59528315", "0.59513766", "0.5947869", "0.59456027", "0.5945575", "0.5945031" ]
0.0
-1
put your code here
private function iniciarFiltros($consultas = null) { $filtros = array(); $filtros['categoria'] = ''; $filtros['preco'] = ''; $filtros['estado'] = ''; if (is_array($consultas)){ $filtros = $consultas; } return $filtros; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function run()\n {\n //\n \n }", "public function run()\n\t{\n\t\t//\n\t}", "public function preExecute(){\n\n\t\n\t}", "function script()\n {\n }", "public function run()\n {\n \n }", "public function run()\n {\n \n }", "public function custom()\n\t{\n\t}", "public function run()\n {\n //\n }", "public function run()\n {\n //\n }", "public function run()\r\n {\r\n\r\n }", "public function run(){\n parent::run();\n //Do stuff...\n }", "function run() {\r\n $this->set_demopage();\r\n\r\n $options_def = array(\r\n __class__ => '', // code CSS. ATTENTION [ ] à la place des {}\r\n 'id' => ''\r\n );\r\n\r\n $options = $this->ctrl_options($options_def);\r\n\r\n // il suffit de charger le code dans le head\r\n $this->load_css_head($options[__class__]);\r\n\r\n // -- aucun code en retour\r\n return '';\r\n }", "public function run()\n {\n\n parent::run();\n\n }", "public function run()\n {\n\n }", "public function run()\n {\n\n }", "public function run()\n {\n\n }", "function execute()\r\n\t{\r\n\t\t\r\n\t}", "protected function doExecute()\n\t{\n\t\t// Your application routines go here.\n\t}", "function use_codepress()\n {\n }", "public function run()\n {\n // Put your code here;\n }", "function run()\r\n {\r\n }", "public function run()\n {\n }", "public function run()\n {\n }", "public function run()\n {\n }", "public function run()\n {\n }", "public function run() {\n }", "public static function run() {\n\t}", "public function onRun()\n {\n }", "public function run() {\n\t\t\\Yii::trace(__METHOD__.'()', 'sweelix.yii1.admin.core.widgets');\n\t\t$content = ob_get_contents();\n\t\tob_end_clean();\n\t\tif(\\Yii::app()->user->isGuest === true) {\n\t\t\techo $content;\n\t\t} else {\n\t\t\t$this->render('header');\n\t\t}\n\t}", "public function run() {\n }", "public function render_content() {\n\t}", "public function main()\r\n {\r\n \r\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "function render() ;", "function execute()\n {\n }", "public function run(): void\n {\n //\n }", "protected function main()\n /**/\n {\n parent::run();\n }", "public function execute()\n {\n //echo __('Hello Webkul Team.');\n $this->_view->loadLayout();\n $this->_view->renderLayout();\n }", "public function render()\n {\n //\n }", "public function run(){\n echo CHtml::closeTag( \"div\" );\n $this->registerScript();\n }", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "public function run();", "function __desctuct(){\r\n\t\t?>\r\n\r\n\t\t</body>\r\n\t\t</html>\r\n\t\t<?php\r\n\t}", "public function run(){}", "public function demo()\n {\n // xu ly logic\n }", "protected function render_content()\n {\n }", "protected function render_content()\n {\n }", "protected function render_content()\n {\n }", "protected function render_content()\n {\n }", "public function render(){\n\t\t\n\t}", "public static function main(){\n\t\t\t\n\t\t}", "public function render() {\r\n\t\t\r\n\t}", "public function main()\n\t{\n\t}", "function handle() ;", "public function execute() {\n\t}", "function preProcess()\n {\t\n parent::preProcess( );\n\t\t \n\t}", "public function run() {}", "public\n\n\tfunction generate_code()\n\t{\n\t\t$data[\"hitung\"] = $this->Madmin->buat_code();\n\t\t$this->load->view('admin/Generate_code', $data);\n\t}", "public function display_code() {\n\t\techo '<h1>Premise Demo Page</h1>\n\t\t<div class=\"span10\">';\n\n\n\t\t\t// test a form with all possible fields.\n\t\t\t// pass your own arguments if you'd like.\n\t\t\t// new PWP_Demo_Form();\n\n\t\t\t// Premise_test::fields();\n\t\t\t// Premise_test::fields_hooks();\n\t\t\t// Premise_test::fields_demo();\n\t\t\t// Premise_test::videos_embed();\n\t\t\t// Premise_test::fields_duplicate();\n\t\t\t// Premise_test::google_map();\n\t\t\t// Premise_test::grids();\n\n\t\techo '</div>';\n\t}", "function main()\r\n {\r\n $this->setOutput();\r\n }", "public function run()\n\n {\n DB::table('actives')->insert([\n 'script_tag' => 0,\n 'status' =>0\n \n ]);\n //\n }", "protected function _exec()\n {\n }", "public function run() {\n\n\t\t// generate random string md5(uniqid(rand(), true));\n\t\t$this->goneta();\n\t\t$this->pamparam();\n\t\t$this->insideOut();\n\t\t$this->morfoza();\n\t\t$this->basorelief();\n\t\t$this->acajouWasZuSagen();\n\t}", "protected function after_load(){\n\n\n }", "public function work()\n {\n }", "function run();", "function run();", "public function run() {\n\t\t// include other classes\n\t\trequire_once plugin_dir_path ( __FILE__ ) . 'class-top-ratter-render.php';\n\t\trequire_once plugin_dir_path ( __FILE__ ) . 'class-top-ratter-sso.php';\n\t\t\n\t\t// enque styles for this plugin\n\t\tadd_action ( 'wp_enqueue_scripts', array (\n\t\t\t\t$this,\n\t\t\t\t'register_plugin_styles' \n\t\t) );\n\t\t// enque jquery scripts for this plugin\n\t\tadd_action ( 'wp_enqueue_scripts', array (\n\t\t\t\t$this,\n\t\t\t\t'register_plugin_script' \n\t\t) );\n\t\t// add submit action form to redirect and catch from admin.php\n\t\tadd_action ( 'admin_post_tr_action', array (\n\t\t\t\t$this,\n\t\t\t\t'prefix_admin_tr_action' \n\t\t) );\n\t\t\n\t\t// check if plugin tables exist\n\t\t$this->table_check ();\n\t\t\n\t\t// instantiate the render class for shortcodes to work\n\t\t$shortcodes = new Top_Ratter_Render ();\n\t}", "function tap_run_page_handler() \n {\n include(\"/var/www/html/run/tap_run.php\");\n \n $params = cargaArray('Torneo Argentino de Programación', $form, '');\n \n include('body.php'); \n }", "function run() {\r\n $this->view->data=$this->model->run();\r\n }", "function custom_construction() {\r\n\t\r\n\t\r\n\t}", "public function run()\n {\n \\App\\Model\\TemplateLib::create([\n 'name' => 'FNK Test',\n 'stylesheet' => 'body {background:white};',\n 'javascript' => '',\n 'code_header' => $this->codeHeader,\n 'code_footer' => $this->codeFooter,\n 'code_index' => $this->codeIndex,\n 'code_search' => '<h1>saya di search</h1>',\n 'code_category' => '<h1>saya di category</h1>',\n 'code_page' => $this->codePage,\n 'code_post' => $this->codePost,\n 'code_about' => '<h1>saya di about</h1>',\n 'code_404' => '<h1>saya di 404</h1>',\n ]);\n }", "public function helper()\n\t{\n\t\n\t}", "public function drawContent()\n\t\t{\n\t\t}" ]
[ "0.60586566", "0.59289104", "0.5919654", "0.5899511", "0.5838488", "0.5838488", "0.58356965", "0.5814271", "0.5814271", "0.57796824", "0.5701954", "0.5700516", "0.5685669", "0.5684617", "0.5684617", "0.5684617", "0.5639208", "0.563027", "0.56278986", "0.56231225", "0.5620407", "0.56068903", "0.56068903", "0.56068903", "0.56016845", "0.5597219", "0.5595339", "0.5591545", "0.558057", "0.55636305", "0.55034596", "0.5487096", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.5477182", "0.54594034", "0.5446425", "0.5446197", "0.54451364", "0.54319674", "0.5426377", "0.54072845", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.5401934", "0.53981763", "0.5394762", "0.5392594", "0.5392164", "0.5391672", "0.5391672", "0.5391672", "0.5386191", "0.53823715", "0.5374112", "0.5373851", "0.5371084", "0.5369742", "0.53666246", "0.5365522", "0.5358571", "0.53542304", "0.5353158", "0.5345768", "0.5339915", "0.53389114", "0.53339213", "0.5332912", "0.5323722", "0.5323722", "0.5321411", "0.5318719", "0.53184503", "0.5300535", "0.5290181", "0.52723837", "0.52723306" ]
0.0
-1
$cat = new categorias();
public function index() { $anuncio = new anuncios(); //$usuario = new usuario(); // $pag = "inicial"; // $result = ""; // if (isset($_GET['pag']) && !empty($_GET['pag'])){ // $pag=$_GET['pag']; // } // if (isset($_GET['result']) && !empty($_GET['result'])){ // $result=$_GET['result']; // } $refat = 1; $qtdPag = 2; if (isset($_GET['refat']) && !empty($_GET['refat'])){ $refat = $_GET['refat']; } if (isset($_GET['filtros'])){ $filtros = $this->iniciarFiltros($_GET['filtros']); if (!empty($filtros['categoria'])){ $anuncio->setIDCategoria($filtros['categoria']); } if (!empty($filtros['preco'])){ $preco = explode("-", $filtros['preco']); //print_r($preco); $anuncio->setValor($preco); } if (!empty($filtros['estado'])){ $anuncio->setEstado($filtros['estado']); } } else { $filtros = $this->iniciarFiltros(); } //$filtros = array( // 'categoria' => '', // 'preco' => '', // 'estado' => '' //); //if (isset($_GET['filtros'])){ // $filtros = $_GET['filtros']; // if (!empty($filtros['categoria'])){ // $anuncio->setIDCategoria($filtros['categoria']); // } // if (!empty($filtros['preco'])){ // $preco = explode("-", $filtros['preco']); // //print_r($preco); // $anuncio->setValor($preco); // } // if (!empty($filtros['estado'])){ // $anuncio->setEstado($filtros['estado']); // } //} $result = $anuncio->selecionarALLAnuncios($refat, $qtdPag); if ($anuncio->numRows() == 1){ $result = array(); $result[] = $anuncio->result(); } $resultQTD = $anuncio->getQTDAnuncios(); $totAnuncios = $resultQTD['qtd']; //$categorias = $cat->selecionarAllCategorias(); //if ($cat->numRows() == 1){ // $categorias = array(); // $categorias[] = $cat->result(); //} //$usuario->selecionarALLUser(); //$totUsuarios = $usuario->numRows(); //$totalPag = ceil($totAnuncios / $qtdPag); $dados = $this->getTemplateDados(); $dados["refat"] = $refat; $dados["filtros"] = $filtros; $dados["result"] = $result; //$dados["categorias"] = $categorias; $dados["totAnuncios"] = $totAnuncios; //$dados["totUsuarios"] = $totUsuarios; $dados["totalPag"] = ceil($totAnuncios / $qtdPag); $this->loadTemplate("inicial", $dados); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function __construct() {\n\t\t$this -> modelo = new categoriaBss();\n\t}", "public function __construct()\n {\n $this->cate = Category::all();\n }", "public function __construct()\n {\n $this->readCategory = new ReadCategories();\n }", "public function _construct(Categoria $categoria){\n\n\t\t$this->categoria = $categoria;\n\t}", "function __construct(){\n \t$this->comentario = new Comentarios();\n\n }", "public function __construct(){\n $this->productos = new Producto();\n }", "function getCategorias(){\r\n $conector = new Conector();\r\n $banco = new BancoCategoria();\r\n return $banco->getCategorias($conector->getConexao());\r\n }", "public function __construct(){\r\n\t\tparent::__construct();\r\n\t\tif (!$this->session->userdata('logado')){\r\n\t\t\tredirect(base_url('admin/login'));\r\n\t\t}\r\n\t\t$this->load->model('categorias_model','modelcategorias');\r\n\t\t//guarda em uma variavel a lista de tipos\r\n\t\t//após carregar o model no construtor eu vou chamar um metodo do model carregado\r\n\t\t$this->categorias = $this->modelcategorias->listar_categorias();\r\n\t}", "public function categoria()\n {\n return $this->belongsTo(Categoria::class);\n }", "public function HM_CategoCuentas()\n {\n }", "public function __construct()\n {\n parent::__construct('BaseAta_program_category');\n }", "public function categoria()\r\n {\r\n return $this->belongsTo('App\\Categoria')->first();\r\n }", "public function createCategory();", "public function Nuevo(){\n $ca = new Categoria();\n \n if(isset($_REQUEST['id_categoria'])){\n $ca = $this->model->Obtener($_REQUEST['id_categoria']);\n }\n \n require_once 'view/header.php';\n require_once 'view/categoria/nuevo.php';\n require_once 'view/footer.php';\n }", "public function categorie()\n {\n return $this->belongsTo(\"App\\Categorie\");\n }", "public function run()\n {\n $cat = new Categorie();\n $cat->nom ='Santé';\n $cat->save();\n\n $cat = new Categorie();\n $cat->nom ='Commerce';\n $cat->save();\n\n $cat = new Categorie();\n $cat->nom ='Social';\n $cat->save();\n }", "function __construct()\n {\n parent::__construct();\n\t\t\t\t$this->load->model('Category');\n }", "public function newCategory(): CategoryInterface;", "public function categorie()\n {\n $data[\"categories\"]=$this->categories->list();\n $this->template_admin->displayad('categories' , $data);\n }", "public function categoria()\n {\n //return $this->belongsTo(Categoria::class, 'id_categoria');\n }", "public function categorie()\n {\n return $this->belongsTo(Categorie::class);\n }", "public function __construct() {\n parent::__construct();\n \n $query = \"SELECT * from categories\";\n // execute the SQL query in the database and return an array \n \n $this->query($query);\n }", "public function __construct()\n {\n $this->categories = new ArrayCollection();\n }", "public function __construct()\n {\n $this->categories = new ArrayCollection();\n }", "function ObtenerCategorias(){\n\n\t\tinclude_once(\"../Entidades/Categorias.php\");\n\t\t$OBJCategorias = new Categorias;\n\t\t$categorias\t= $OBJCategorias -> ObtenerCategoriasconSeccion();\n\n\t\t$privilegios = $_SESSION['privilegios'];\n\n\t\tinclude_once(\"../ModuloAdministrador/vistas/FormularioCategorias.php\");\n\t\t$OBJFormCategorias = new FormularioCategorias;\n\t\t$OBJFormCategorias -> MostrarFormularioCategorias($categorias,$privilegios);\n\n\n\t}", "public function getCategory() {}", "public function __construct()\n {\n $cats = get_categories();\n if(class_exists('Category'))\n {\n if( is_array($cats) && count($cats)>0 ){\n $idC = 0;\n foreach($cats as &$cat)\n {\n $category = new Category($cat->term_id, $cat->name, $cat->slug, $cat->parent);\n $this->lstCat[$idC] = $category->convertToArray(array('id', 'name', 'slug', 'parent'));\n $this->lstCat[$idC]['aff']=true;\n $idC++;\n }unset($cat);\n }\n }\n }", "public function run()\n {\n $category = new Category();\n $category -> name=\"Infantil\";\n $category ->save();\n\n $category1 = new Category();\n $category1 -> name=\"Regalo y Accesorios\";\n $category1 ->save();\n\n $category2 = new Category();\n $category2 -> name=\"Salud y belleza\";\n $category2 ->save();\n\n $category3 = new Category();\n $category3 -> name=\"Tiempo Libre\";\n $category3 ->save();\n\n $category4 = new Category();\n $category4 -> name=\"Vestuario y Calzado \";\n $category4 ->save();\n\n $category5 = new Category();\n $category5 -> name=\"Artesanias y Manualidades\";\n $category5 ->save();\n\n $category6 = new Category();\n $category6 -> name=\"Decohogar\";\n $category6 ->save();\n\n $category7 = new Category();\n $category7 -> name=\"Tecnologia\";\n $category7 ->save();\n }", "function __construct($nombre,$id_categoria,$id){\n $this->nombre= $nombre;\n $this->id_categoria=$id_categoria;\n $this->id=$id;\n }", "public function show($categoria)\n {\n\n }", "public function category(){\n\n Excel::import(new ComponentsImport,'/imports/categories.csv');\n $cats = array_values(array_unique(Cache::get('category')));\n for($i=0;$i<count($cats);$i++){\n $sub = new Category();\n $sub->name = $cats[$i];\n $sub->save();\n }\n }", "public function __construct()\n {\n $this->category = \\App\\Models\\Category::whereFeatured(true)->get();\n }", "public function getCategory();", "public function getCategory();", "public function run()\n {\n \t$categorias = [\n\t 'AGRICULTURA, PECUÁRIA, PRODUÇÃO FLORESTAL, PESCA E AQÜICULTURA',\n\t\t\t'INDÚSTRIAS EXTRATIVAS',\n\t\t\t'INDÚSTRIAS DE TRANSFORMAÇÃO',\n\t\t\t'ELETRICIDADE E GÁS',\n\t\t\t'ÁGUA, ESGOTO, ATIVIDADES DE GESTÃO DE RESÍDUOS E DESCONTAMINAÇÃO',\n\t\t\t'CONSTRUÇÃO',\n\t\t\t'COMÉRCIO; REPARAÇÃO DE VEÍCULOS AUTOMOTORES E MOTOCICLETAS',\n\t\t\t'TRANSPORTE, ARMAZENAGEM E CORREIO',\n\t\t\t'ALOJAMENTO E ALIMENTAÇÃO',\n\t\t\t'INFORMAÇÃO E COMUNICAÇÃO',\n\t\t\t'ATIVIDADES FINANCEIRAS, DE SEGUROS E SERVIÇOS RELACIONADOS',\n\t\t\t'ATIVIDADES IMOBILIÁRIAS',\n\t\t\t'ATIVIDADES PROFISSIONAIS, CIENTÍFICAS E TÉCNICAS',\n\t\t\t'ATIVIDADES ADMINISTRATIVAS E SERVIÇOS COMPLEMENTARES',\n\t\t\t'ADMINISTRAÇÃO PÚBLICA, DEFESA E SEGURIDADE SOCIAL',\n\t\t\t'EDUCAÇÃO',\n\t\t\t'SAÚDE HUMANA E SERVIÇOS SOCIAIS',\n\t\t\t'ARTES, CULTURA, ESPORTE E RECREAÇÃO',\n\t\t\t'OUTRAS ATIVIDADES DE SERVIÇOS',\n\t\t\t'SERVIÇOS DOMÉSTICOS',\n\t\t\t'ORGANISMOS INTERNACIONAIS E OUTRAS INSTITUIÇÕES EXTRATERRITORIAIS'\n\t\t];\n\n\t\tforeach ($categorias as $categoria) {\n\t\t\t$modelCateroria = new Categoria;\n\t\t\t$modelCateroria->nome = $categoria;\n\t\t\t$modelCateroria->save();\t\n\t\t}\n }", "public function categoria()\n {\n return $this->belongsTo(Categoria::class, 'fk_id_categoria');\n }", "function categories(){\n return $this->db->get($this->categorie)->result();\n }", "public function run()\n {\n factory(Categorias::class, 10)->create();\n }", "public function __construct()\n {\n // $this->categories = Category::orderBy('id','desc')->get();\n\n }", "public function __construct() {\n\t\tparent::__construct();\n\t\t$this->dados = $this->funcoes_gerais->getConstantes($this->dados);\n\n $this->load->model('produto_model', 'produto'); \n $this->load->model('categoria_model', 'categoria'); \n\t}", "public function get(){\n\n $tabla = \"categorias\";\n \n $respuesta = ModeloCategorias::get($tabla);\n \n return $respuesta; \n }", "public function run()\n {\n $categorie=new Categorie();\n $categorie->icon=\"tableaux.jpg\";\n $categorie->name=\"tableaux de peinture\";\n $categorie->save();\n\n $categorie=new Categorie();\n $categorie->icon=\"sculpture.jpg\";\n $categorie->name=\"sculpture\";\n $categorie->save();\n \n $categorie=new Categorie();\n $categorie->icon=\"dessin.jpg\";\n $categorie->name=\"dessin\";\n $categorie->save();\n\n\n $categorie=new Categorie();\n $categorie->icon=\"objets.jpg\";\n $categorie->name=\"objets d'arts\";\n $categorie->save();\n }", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function __construct(){\r\n\t\t\tparent::__construct();\r\n\t\t\t$this->categoryModel = $this->model('Category'); \r\n\t\t}", "public function run()\n {\n $categorie = config('database.categories');\n\n foreach ($categorie as $value) {\n $nuova_categoria = new Category();\n $nuova_categoria->name = $value['name'];\n $nuova_categoria->slug = Str::slug($value['slug']);\n //$nuovo_libro->fill($value);\n $nuova_categoria->save();\n }\n }", "public function model()\n {\n return Categories::class;\n }", "public function model()\n {\n return Categories::class;\n }", "public function ListarCategorias()\n{\n\tself::SetNames();\n\t$sql = \" select * from categorias\";\n\tforeach ($this->dbh->query($sql) as $row)\n\t{\n\t\t$this->p[] = $row;\n\t}\n\treturn $this->p;\n\t$this->dbh=null;\n}", "function __construct() {\n\t //llamo al contructor de Controller.php\n\t parent::__construct();\n\n\t //instancio el modelo\n $this->modelo(array('cortos','ediciones','categorias'));\n\n\n\t}", "public function __construct($categorie)\n {\n $query = new ParseQuery(\"TABLE_PRODUIT\");\n $query->equalTo(\"CATEGORIE\", $categorie);\n $query->notEqualTo(\"STOCK\", 0);\n $this->objet = $query->find();\n }", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function categories(){\n /* \n id_categoria_producto int NOT NULL AUTO_INCREMENT,\n\ttipo_producto varchar(20) NOT NULL ,\n\tcaracteristicas_producto varchar(100) ,\n CONSTRAINT pk_categoria_producto PRIMARY KEY ( id_categoria_producto )\n\n\n id_producto int NOT NULL AUTO_INCREMENT,\n\tt_cat_producto int NOT NULL ,\n\tnombre_producto varchar(50) NOT NULL ,\n\tfecha varchar(10) NOT NULL ,\n\tpeso varchar(10) NOT NULL ,\n\tCONSTRAINT pk_producto PRIMARY KEY ( id_producto )\n */ \n $sql = 'SELECT c.name_categoria,\n c.id,\n p.id,\n p.id_categoria,\n p.nombre_producto,\n p.peso\n FROM categoria AS c, producto AS p\n WHERE c.id = p.id_categoria';\n $categories = $this->db->query($sql)->fetchAll(PDO::FETCH_CLASS, 'Category');\n return $categories;\n }", "public function __construct() {\n parent::__construct();\n \n //llamo al helper url\n $this->load->helper(\"url\"); \n \n //llamo o incluyo el modelo\n $this->load->model(\"CategoriesModel\");\n \n //cargo la libreria de sesiones\n $this->load->library(\"session\");\n }", "function __construct(){\n //constructor vacio\n }", "public function categorias(){\n \n return $this->belongsTo(Categoria::class,'idCategoria');\n }", "public function run()\n {\n foreach (self::CATEGORIAS as $value) {\n Categoria::create([\n 'nombre' => $value\n ]);\n }\n }", "public function model()\n {\n return Category::class;\n }", "public function model()\n {\n return Category::class;\n }", "public function __construct(){\r\n $this->conexion = new Conexion();\r\n}", "function __construct(){\n $this->toko = new M_Toko();\n $this->produk = new M_Produk(); //variabel model merupakan objek baru yang dibuat dari class model\n }", "public function crear(){\n return view('categoria');\n }", "public function show(Categorias $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "function model()\n {\n return Category::class;\n }", "public function __construct() {\n $this->articleModel = $this->loadModel('Article');\n $this->categories = $this->articleModel->findAllCategories();\n }", "public function findCategories();", "public function getCategory()\n {\n }", "public function run()\n {\n\n $categorie = new Categorie();\n $categorie->name = 'Adventure';\n $categorie->save();\n\n $categorie = new Categorie();\n $categorie->name = 'Sci-Fi';\n $categorie->save();\n\n $categorie = new Categorie();\n $categorie->name = 'Drama';\n $categorie->save();\n\n $categorie = new Categorie();\n $categorie->name = 'Comedy';\n $categorie->save();\n\n $categorie = new Categorie();\n $categorie->name = 'Thriller';\n $categorie->save();\n }", "function categportal($cod,$desc,$tipo){\r\n\t\t$fCateg = new fachada_categportal();\r\n\t\t$oCateg = $fCateg->categportal($cod,$desc,$tipo);\r\n\t\treturn $oCateg;\r\n\t}", "public function getCategories(){\n return Category::get();\n }", "public function categoria()\n {\n\n $categoria = Categoria::all();\n $inmueble = Inmueble::all();\n // return $categoria;\n // return $inmueble;\n return view('reporte.categoria', compact('categoria', 'inmueble'));\n }", "public function __construct()\n {\n $this->model= new Estudiante;\n $this->curso= new Curso;\n $this->usuario= new Usuario;\n $this->centrointeres= new Centrointeres;\n $this->clase= new Clase;\n $this->grado = new Grado;\n $this->asistencia= new Asistencia;\n }", "public function __construct()\n {\n $categories = Category::all();\n \n view()->share('categories', $categories);\n \n }", "public function testSetCategorie() {\n\n $obj = new Materiels();\n\n $obj->setCategorie(\"categorie\");\n $this->assertEquals(\"categorie\", $obj->getCategorie());\n }", "public function run()\n {\n\n \t\n \tCategoria_doacao::create(['nome' => 'Animais']);\n \tCategoria_doacao::create(['nome' => 'Alimentos']);\n \tCategoria_doacao::create(['nome' => 'Remédios']);\n \tCategoria_doacao::create(['nome' => 'Objetos']);\n //factory(PET\\Models\\Categoria_doacao::class,3)->create();\n }", "public function run()\n {\n// $cat = new \\App\\Category();\n// $cat->nom = \"Films\";\n// $cat->save();\n//\n// $cat2 = new \\App\\Category();\n// $cat2->nom = \"Séries TV\";\n// $cat2->is_online = 1;\n// $cat2->save();\n//\n// $cat3 = new \\App\\Category();\n// $cat3->nom = \"Musique\";\n// $cat3->is_online = 1;\n// $cat3->save();\n//\n// $cat4 = new \\App\\Category();\n// $cat4->nom = \"Jeux-Vidéos\";\n// $cat4->is_online = 1;\n// $cat4->save();\n//\n// $cat5 = new \\App\\Category();\n// $cat5->nom = \"Sport\";\n// $cat5->save();\n\n $cat6 = new \\App\\Category();\n $cat6->nom = \"Autres\";\n $cat6->save();\n }", "public function __construct(){\n parent::__construct();\n $this->load->model(\"Catalogo_model\");\n }", "public function getCategoria()\n {\n return \"Cliente com Risco\";\n }", "public function catalogos() \n\t{\n\t}", "public function __construct(Category $categories)\n {\n $this->categories = $categories;\n }", "public function run()\n {\n $category = new Category();\n $category->name =\"Iphone\";\n $category->description =\"Sang chảnh thật sự\";\n $category->save();\n\n $category = new Category();\n $category->name =\"Ipad\";\n $category->description =\"Sự lựa chọn sáng suốt cho thằng nhiều tiền\";\n $category->save();\n\n $category = new Category();\n $category->name =\"MacBook\";\n $category->description =\"Theo dòng xu thế khoe\";\n $category->save();\n\n $category = new Category();\n $category->name =\"SamSung\";\n $category->description =\"Trải nghiệm những điều điên rồ nhất\";\n $category->save();\n\n $category = new Category();\n $category->name =\"Phụ kiện\";\n $category->description =\"Thay đổi bề ngoài thay đổi cái nhìn\";\n $category->save();\n }", "public static function lista_categorias($conexion) {\n //utilizado en el select tipo en registrar activo\n $lista_categorias = array();\n\n if (isset($conexion)) {\n try {\n $sql = \"select * from categoria\";\n $sentencia = $conexion->prepare($sql);\n $sentencia->execute();\n $resultado = $sentencia->fetchAll();\n\n if (count($resultado)) {\n foreach ($resultado as $fila) {\n $categoria = new Categoria();\n $categoria->setCodigo_tipo($fila['codigo_tipo']);\n $categoria->setNombre($fila['nombre']);\n\n $lista_categorias[] = $categoria;\n }\n }\n } catch (PDOException $exc) {\n print('ERROR' . $exc->getMessage());\n }\n }\n\n return $lista_categorias;//eviamos la lista de tipos\n }", "public function __construct()\n {\n $this->pelanggan = new PelangganModel();\n /* Catatan:\n Apa yang ada di dalam function construct ini nantinya bisa digunakan\n pada function di dalam class Product \n */\n }", "public function __construct() {\n\n $this->vista = new Vista();\n $this->usuario = new Usuario();\n $this->reserva = new Reserva();\n $this->instalacion = new Instalacion();\n $this->horario = new Horario();\n $this->rol = new Rol();\n $this->seguridad = new Seguridad();\n\n }", "public function run()\n {\n $category = new Category ();\n $category->category_name = 'appetizer';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'salad';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'pizza';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'fast food';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'breakfast';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'lunch & dinner';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'bread';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n\n $category = new Category ();\n $category->category_name = 'noodles';\n $category->image = '/image/category/cuisine-1.jpg';\n $category->save();\n }", "public function categoria(Categoria $categoria){\n // return $establecimientos=\n // $categoria->establecimientos;\n //return response()->json($categoria);\n // https://www.udemy.com/course/curso-laravel-crea-aplicaciones-y-sitios-web-con-php-y-mvc/learn/lecture/20333267#overview\n $establecimiento = Establecimiento::where('categoria_id', $categoria->id)->with('categoria')->take(3)->get();\n return response()->json($establecimiento);\n }", "public function run()\n {\n \t$categoria = [\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'postres',\n \t\t\t'descripcion'\t\t=>\t'gelatina, mazamorra'\n \t\t],\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'amburguesas',\n \t\t\t'descripcion'\t\t=>\t'clasica, monkey'\n \t\t],\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'antojitos',\n \t\t\t'descripcion'\t\t=>\t'mollejitas, salchipapas, salchipollo'\n \t\t],\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'gaseosas',\n \t\t\t'descripcion'\t\t=>\t'personal, familiar'\n \t\t],\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'jugos',\n \t\t\t'descripcion'\t\t=>\t'clasico, especial'\n \t\t],\n \t\t[\n \t\t\t'nombre'\t\t\t=>\t'helados',\n \t\t\t'descripcion'\t\t=>\t'artesanales'\n \t\t],\n [\n 'nombre' => 'parrillas',\n 'descripcion' => 'parrilladas, anticuchos'\n ],\n [\n 'nombre' => 'Mixturas',\n 'descripcion' => 'combinacios de platillos'\n ],\n [\n 'nombre' => 'Cremoladas',\n 'descripcion' => 'fruta'\n ],\n [\n 'nombre' => 'Combos',\n 'descripcion' => 'chico, mediano, grande'\n ],\n \t];\n //\n Categoria::insert($categoria);\n }", "public function categoriaJuego(){\n //relacion de uno a uno\n return $this->belongsTo(CategoriaJuego::class,'categoria_id');\n }", "public function run()\n {\n $category = new Category();\n $category->name = \"Terror\";\n $category->description = \"Matemáticas, en pocas palabras. \";\n $category->save();\n\n $category = new Category();\n $category->name = \"Romance\";\n $category->description = \"Muchos muchos besos.\";\n $category->save();\n\n $category = new Category();\n $category->name = \"Ciencia ficción\";\n $category->description = \"Aquí hay waifus. \";\n $category->save();\n }", "public function run(ModelPessoa $Pessoa)\n {\t\n \t\n \t$this->ObjCategoria = new ModelCategoria();\n\n \t$id_admin = $this->ObjCategoria->where(['descricao'=>'Admin'])->get('id')[0]['id'];\n \t$id_gerente = $this->ObjCategoria->where(['descricao'=>'Gerente'])->get('id')[0]['id'];\n \t$id_normal = $this->ObjCategoria->where(['descricao'=>'Normal'])->get('id')[0]['id'];\n\n $Pessoa->create([\n \t'nome' => 'Jorge da Silva',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Flavia Monteiro',\n 'email' => '[email protected]',\n 'id_categoria' => $id_gerente\n ]);\n $Pessoa->create([\n \t'nome' => 'Marcos Frota Ribeiro',\n 'email' => '[email protected]',\n 'id_categoria' => $id_gerente\n ]);\n $Pessoa->create([\n \t'nome' => 'Raphael Souza Santos',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Pedro Paulo Mota',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Winder Carvalho da Silva',\n 'email' => '[email protected]',\n 'id_categoria' => $id_normal\n ]);\n $Pessoa->create([\n \t'nome' => 'Maria da Penha Albuquerque',\n 'email' => '[email protected]',\n 'id_categoria' => $id_normal\n ]);\n $Pessoa->create([\n \t'nome' => 'Rafael Garcia Souza',\n 'email' => '[email protected]',\n 'id_categoria' => $id_normal\n ]);\n $Pessoa->create([\n \t'nome' => 'Tabata Costa',\n 'email' => '[email protected]',\n 'id_categoria' => $id_gerente\n ]);\n $Pessoa->create([\n \t'nome' => 'Ronil Camarote',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Joaquim Barbosa',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Eveline Maria Alcantra',\n 'email' => '[email protected]',\n 'id_categoria' => $id_gerente\n ]);\n $Pessoa->create([\n \t'nome' => 'João Paulo Vieira',\n 'email' => '[email protected]',\n 'id_categoria' => $id_admin\n ]);\n $Pessoa->create([\n \t'nome' => 'Carla Zamborlini',\n 'email' => '[email protected]',\n 'id_categoria' => $id_normal\n ]);\n }", "public function beneficiario(){\n\n $classname = 'bancfiles_n34_beneficiario';\n \n return new $classname;\n }", "function init_category($title) {\n $category = ORM::for_table('pw_category')->create();\n $category->cat_title = $title;\n $category->save();\n return $category;\n}", "public function __construct(){\n //Instanciando classes que serão utilizadas\n $this->retangulo = new Retangulo();\n }", "public function getCategorie()\n {\n return $this->categorie;\n }", "public function __construct() {\n $this->data['title'] = 'Category';\n }", "function set_categorie($categorie){\n if($categorie == \"vin\" || $categorie == \"eau\" || $categorie == \"jus\"){\n $this->categorie = $categorie;\n }else{\n $this->erreur(\"La categorie doit être : vin, eau ou jus. Or c'est : \".$categorie.\"<br>\");\n }\n }", "public function show(categorie $categorie)\n {\n //\n }" ]
[ "0.7355752", "0.71471715", "0.7066461", "0.70395994", "0.6849718", "0.6832938", "0.6807425", "0.67291015", "0.6685964", "0.66437125", "0.6627742", "0.66080296", "0.6585171", "0.6581592", "0.6548584", "0.6547962", "0.65357286", "0.6523251", "0.6510804", "0.64876366", "0.6486683", "0.648606", "0.6472153", "0.6472153", "0.6461606", "0.6450205", "0.6406265", "0.63909554", "0.6352263", "0.6345229", "0.63332045", "0.63322264", "0.6325324", "0.6325324", "0.63139856", "0.63111436", "0.63041806", "0.630257", "0.6290437", "0.6279477", "0.62620974", "0.6258462", "0.6248278", "0.6248278", "0.6247853", "0.6233352", "0.6230361", "0.6230361", "0.62124676", "0.6209623", "0.6195109", "0.61911297", "0.6185929", "0.61741066", "0.6172347", "0.6170954", "0.61519533", "0.6147303", "0.6147303", "0.6132016", "0.61310846", "0.61246246", "0.6110495", "0.6097592", "0.6097592", "0.6097592", "0.6097592", "0.60951567", "0.6086578", "0.6083962", "0.60701126", "0.60691637", "0.6058991", "0.6052423", "0.6034048", "0.60338086", "0.6031898", "0.60263735", "0.60164225", "0.6010669", "0.60054725", "0.6002892", "0.5996748", "0.59925216", "0.5978166", "0.5978147", "0.59778565", "0.5977321", "0.59720397", "0.59699976", "0.5966274", "0.5965788", "0.5955603", "0.5954868", "0.5952144", "0.59515834", "0.5946926", "0.5942202", "0.5939248", "0.5932893", "0.5921405" ]
0.0
-1
Run the database seeds.
public function run() { $userModel = new UserModel; $userModel->name = "Test"; $userModel->email = "[email protected]"; $userModel->password = Hash::make("prueba"); $userModel->api_token = Str::random(60);//hash('sha256', "prueba"); $userModel->save(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function run()\n {\n // $this->call(UserTableSeeder::class);\n // $this->call(PostTableSeeder::class);\n // $this->call(TagTableSeeder::class);\n // $this->call(PostTagTableSeeder::class);\n\n /*AB - use faker to populate table see file ModelFactory.php */\n factory(App\\Editeur::class, 40) ->create();\n factory(App\\Auteur::class, 40) ->create();\n factory(App\\Livre::class, 80) ->create();\n\n for ($i = 1; $i < 41; $i++) {\n $number = rand(2, 8);\n for ($j = 1; $j <= $number; $j++) {\n DB::table('auteur_livre')->insert([\n 'livre_id' => rand(1, 40),\n 'auteur_id' => $i\n ]);\n }\n }\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n // Let's truncate our existing records to start from scratch.\n Assignation::truncate();\n\n $faker = \\Faker\\Factory::create();\n \n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 40; $i++) {\n Assignation::create([\n 'ad_id' => $faker->numberBetween(1,20),\n 'buyer_id' => $faker->numberBetween(1,6),\n 'seller_id' => $faker->numberBetween(6,11),\n 'state' => NULL,\n ]);\n }\n\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n \t$faker = Faker::create();\n\n \tfor($i=0; $i<20; $i++) {\n \t\t$post = new Post;\n \t\t$post->title = $faker->sentence();\n \t\t$post->body = $faker->paragraph();\n \t\t$post->category_id = rand(1, 5);\n \t\t$post->save();\n \t}\n\n \t$list = ['General', 'Technology', 'News', 'Internet', 'Mobile'];\n \tforeach($list as $name) {\n \t\t$category = new Category;\n \t\t$category->name = $name;\n \t\t$category->save();\n \t}\n\n \tfor($i=0; $i<20; $i++) {\n \t\t$comment = new Comment;\n \t\t$comment->comment = $faker->paragraph();\n \t\t$comment->post_id = rand(1,20);\n \t\t$comment->save();\n \t}\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n $this->call(RoleTableSeeder::class);\n $this->call(UserTableSeeder::class);\n \n factory('App\\Cat', 5)->create();\n $tags = factory('App\\Tag', 8)->create();\n\n factory(Post::class, 15)->create()->each(function($post) use ($tags){\n $post->comments()->save(factory(Comment::class)->make());\n $post->tags()->attach( $tags->random(mt_rand(1,4))->pluck('id')->toArray() );\n });\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::table('post')->insert(\n [\n 'title' => 'Test Post1',\n 'desc' => str_random(100).\" post1\",\n 'alias' => 'test1',\n 'keywords' => 'test1',\n ]\n );\n DB::table('post')->insert(\n [\n 'title' => 'Test Post2',\n 'desc' => str_random(100).\" post2\",\n 'alias' => 'test2',\n 'keywords' => 'test2',\n ]\n );\n DB::table('post')->insert(\n [\n 'title' => 'Test Post3',\n 'desc' => str_random(100).\" post3\",\n 'alias' => 'test3',\n 'keywords' => 'test3',\n ]\n );\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n \t$faker = Factory::create();\n \t\n \tforeach ($this->departments as $key => $department) {\n \t\tDepartment::create([\n \t\t\t'name' => $department\n \t\t]);\n \t}\n \tforeach ($this->collections as $key => $collection) {\n \t\tCollection::create([\n \t\t\t'name' => $collection\n \t\t]);\n \t}\n \t\n \t\n \tfor ($i=0; $i < 40; $i++) {\n \t\tUser::create([\n \t\t\t'name' \t=>\t$faker->name,\n \t\t\t'email' \t=>\t$faker->email,\n \t\t\t'password' \t=>\tbcrypt('123456'),\n \t\t]);\n \t} \n \t\n \t\n \tforeach ($this->departments as $key => $department) {\n \t\t//echo ($key + 1) . PHP_EOL;\n \t\t\n \t\tfor ($i=0; $i < 10; $i++) { \n \t\t\techo $faker->name . PHP_EOL;\n\n \t\t\tArt::create([\n \t\t\t\t'name'\t\t\t=> $faker->sentence(2),\n \t\t\t\t'img'\t\t\t=> $this->filenames[$i],\n \t\t\t\t'medium'\t\t=> 'canvas',\n \t\t\t\t'department_id'\t=> $key + 1,\n \t\t\t\t'user_id'\t\t=> $this->userIndex,\n \t\t\t\t'dimension'\t\t=> '18.0 x 24.0',\n\t\t\t\t]);\n \t\t\t\t\n \t\t\t\t$this->userIndex ++;\n \t\t}\n \t}\n \t\n \tdd(\"END\");\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // $this->dataCategory();\n factory(App\\Model\\Category::class, 70)->create();\n factory(App\\Model\\Producer::class, rand(5,10))->create();\n factory(App\\Model\\Provider::class, rand(5,10))->create();\n factory(App\\Model\\Product::class, 100)->create();\n factory(App\\Model\\Album::class, 300)->create();\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n\n factory('App\\User', 10 )->create();\n\n $users= \\App\\User::all();\n $users->each(function($user){ factory('App\\Category', 1)->create(['user_id'=>$user->id]); });\n $users->each(function($user){ factory('App\\Tag', 3)->create(['user_id'=>$user->id]); });\n\n\n $users->each(function($user){\n factory('App\\Post', 10)->create([\n 'user_id'=>$user->id,\n 'category_id'=>rand(1,20)\n ]\n );\n });\n\n $posts= \\App\\Post::all();\n $posts->each(function ($post){\n\n $post->tags()->attach(array_unique([rand(1,20),rand(1,20),rand(1,20)]));\n });\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $types = factory(\\App\\Models\\Type::class, 5)->create();\n\n $cities = factory(\\App\\Models\\City::class, 10)->create();\n\n $cities->each(function ($city) {\n $districts = factory(\\App\\Models\\District::class, rand(2, 5))->create([\n 'city_id' => $city->id,\n ]);\n\n $districts->each(function ($district) {\n $properties = factory(\\App\\Models\\Property::class, rand(2, 5))->create([\n 'type_id' => rand(1, 5),\n 'district_id' => $district->id\n ]);\n\n $properties->each(function ($property) {\n $galleries = factory(\\App\\Models\\Gallery::class, rand(3, 10))->create([\n 'property_id' => $property->id\n ]);\n });\n });\n });\n }", "public function run()\n {\n $this->call(UsersTableSeeder::class);\n\n $categories = factory(App\\Models\\Category::class, 10)->create();\n\n $categories->each(function ($category) {\n $category\n ->posts()\n ->saveMany(\n factory(App\\Models\\Post::class, 3)->make()\n );\n });\n }", "public function run()\n {\n $this->call(CategoriesTableSeeder::class);\n\n $users = factory(App\\User::class, 5)->create();\n $recipes = factory(App\\Recipe::class, 30)->create();\n $preparations = factory(App\\Preparation::class, 70)->create();\n $photos = factory(App\\Photo::class, 90)->create();\n $comments = factory(App\\Comment::class, 200)->create();\n $flavours = factory(App\\Flavour::class, 25)->create();\n $flavour_recipe = factory(App\\FlavourRecipe::class, 50)->create();\n $tags = factory(App\\Tag::class, 25)->create();\n $recipe_tag = factory(App\\RecipeTag::class, 50)->create();\n $ingredients = factory(App\\Ingredient::class, 25)->create();\n $ingredient_preparation = factory(App\\IngredientPreparation::class, 300)->create();\n \n \n \n DB::table('users')->insert(['name' => 'SimpleUtilisateur', 'email' => '[email protected]', 'password' => bcrypt('SimpleMotDePasse')]);\n \n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n // Sample::truncate();\n // TestItem::truncate();\n // UOM::truncate();\n Role::truncate();\n User::truncate();\n\n // factory(Role::class, 4)->create();\n Role::create([\n 'name'=> 'Director',\n 'description'=> 'Director type'\n ]);\n\n Role::create([\n 'name'=> 'Admin',\n 'description'=> 'Admin type'\n ]);\n Role::create([\n 'name'=> 'Employee',\n 'description'=> 'Employee type'\n ]);\n Role::create([\n 'name'=> 'Technician',\n 'description'=> 'Technician type'\n ]);\n \n factory(User::class, 20)->create()->each(\n function ($user){\n $roles = \\App\\Role::all()->random(mt_rand(1, 2))->pluck('id');\n $user->roles()->attach($roles);\n }\n );\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n UsersLevel::create([\n 'name' => 'Administrator'\n ]);\n\n UsersLevel::create([\n 'name' => 'User'\n ]);\n\n User::create([\n 'username' => 'admin',\n 'password' => bcrypt('admin123'),\n 'level_id' => 1,\n 'fullname' => \"Super Admin\",\n 'email'=> \"[email protected]\"\n ]);\n\n\n \\App\\CategoryPosts::create([\n 'name' =>'Paket Trip'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' =>'Destinasi Kuliner'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' => 'Event'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' => 'Profil'\n ]);\n }", "public function run()\n {\n DB::table('users')->insert([\n 'name' => 'Admin',\n 'email' => '[email protected]',\n 'avatar' => \"avatar\",\n 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi',\n ]);\n $this->call(CategorySeeder::class);\n // \\App\\Models\\Admin::factory(1)->create();\n \\App\\Models\\User::factory(10)->create();\n // \\App\\Models\\Category::factory(50)->create();\n \\App\\Models\\PetComment::factory(50)->create();\n $pets = \\App\\Models\\Pet::factory(50)->create();\n foreach ($pets as $pet) {\n \\App\\Models\\PetTag::factory(1)->create(['pet_id' => $pet->id]);\n \\App\\Models\\PetPhotoUrl::factory(1)->create(['pet_id' => $pet->id]);\n \\App\\Models\\Order::factory(1)->create(['pet_id' => $pet->id]);\n };\n }", "public function run()\n { \n\n $this->call(RoleSeeder::class);\n \n $this->call(UserSeeder::class);\n\n Storage::deleteDirectory('socials-icon');\n Storage::makeDirectory('socials-icon');\n $socials = Social::factory(7)->create();\n\n Storage::deleteDirectory('countries-flag');\n Storage::deleteDirectory('countries-firm');\n Storage::makeDirectory('countries-flag');\n Storage::makeDirectory('countries-firm');\n $countries = Country::factory(18)->create();\n\n // Se llenan datos de la tabla muchos a muchos - social_country\n foreach ($countries as $country) {\n foreach ($socials as $social) {\n\n $country->socials()->attach($social->id, [\n 'link' => 'https://www.facebook.com/ministeriopalabrayespiritu/'\n ]);\n }\n }\n\n Person::factory(50)->create();\n\n Category::factory(7)->create();\n\n Video::factory(25)->create(); \n\n $this->call(PostSeeder::class);\n\n Storage::deleteDirectory('documents');\n Storage::makeDirectory('documents');\n Document::factory(25)->create();\n\n }", "public function run()\n {\n $faker = Faker::create('id_ID');\n /**\n * Generate fake author data\n */\n for ($i=1; $i<=50; $i++) { \n DB::table('author')->insert([\n 'name' => $faker->name\n ]);\n }\n /**\n * Generate fake publisher data\n */\n for ($i=1; $i<=50; $i++) { \n DB::table('publisher')->insert([\n 'name' => $faker->name\n ]);\n }\n /**\n * Seeding payment method\n */\n DB::table('payment')->insert([\n ['name' => 'Mandiri'],\n ['name' => 'BCA'],\n ['name' => 'BRI'],\n ['name' => 'BNI'],\n ['name' => 'Pos Indonesia'],\n ['name' => 'BTN'],\n ['name' => 'Indomaret'],\n ['name' => 'Alfamart'],\n ['name' => 'OVO'],\n ['name' => 'Cash On Delivery']\n ]);\n }", "public function run()\n {\n DatabaseSeeder::seedLearningStylesProbs();\n DatabaseSeeder::seedCampusProbs();\n DatabaseSeeder::seedGenderProbs();\n DatabaseSeeder::seedTypeStudentProbs();\n DatabaseSeeder::seedTypeProfessorProbs();\n DatabaseSeeder::seedNetworkProbs();\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n // MyList::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 3; $i++) {\n MyList::create([\n 'title' => 'List-'.($i+1),\n 'color' => $faker->sentence,\n 'icon' => $faker->randomDigitNotNull,\n 'index' => $faker->randomDigitNotNull,\n 'user_id' => 1,\n ]);\n }\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n Products::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few products in our database:\n for ($i = 0; $i < 50; $i++) {\n Products::create([\n 'name' => $faker->word,\n 'sku' => $faker->randomNumber(7, false),\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n User::create([\n 'name' => 'Pablo Rosales',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'status' => 1,\n 'role_id' => 1,\n 'movil' => 0\n ]);\n\n User::create([\n 'name' => 'Usuario Movil',\n 'email' => '[email protected]',\n 'password' => bcrypt('secret'),\n 'status' => 1,\n 'role_id' => 3,\n 'movil' => 1\n ]);\n\n Roles::create([\n 'name' => 'Administrador'\n ]);\n Roles::create([\n 'name' => 'Operaciones'\n ]);\n Roles::create([\n 'name' => 'Comercial'\n ]);\n Roles::create([\n 'name' => 'Aseguramiento'\n ]);\n Roles::create([\n 'name' => 'Facturación'\n ]);\n Roles::create([\n 'name' => 'Creditos y Cobros'\n ]);\n\n factory(App\\Customers::class, 100)->create();\n }", "public function run()\n {\n // php artisan db:seed --class=StoreTableSeeder\n\n foreach(range(1,20) as $i){\n $faker = Faker::create();\n Store::create([\n 'name' => $faker->name,\n 'desc' => $faker->text,\n 'tags' => $faker->word,\n 'address' => $faker->address,\n 'longitude' => $faker->longitude($min = -180, $max = 180),\n 'latitude' => $faker->latitude($min = -90, $max = 90),\n 'created_by' => '1'\n ]);\n }\n\n }", "public function run()\n {\n DB::table('users')->insert([\n 'name'=>\"test\",\n 'password' => Hash::make('123'),\n 'email'=>'[email protected]'\n ]);\n DB::table('tags')->insert(['name'=>'tags']);\n $this->call(UserSeed::class);\n $this->call(CategoriesSeed::class);\n $this->call(TopicsSeed::class);\n $this->call(CommentariesSeed::class);\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n echo 'seeding permission...', PHP_EOL;\n $permissions = [\n 'role-list',\n 'role-create',\n 'role-edit',\n 'role-delete',\n 'formation-list',\n 'formation-create',\n 'formation-edit',\n 'formation-delete',\n 'user-list',\n 'user-create',\n 'user-edit',\n 'user-delete'\n ];\n foreach ($permissions as $permission) {\n Permission::create(['name' => $permission]);\n }\n echo 'seeding users...', PHP_EOL;\n\n $user= User::create(\n [\n 'name' => 'Mr. admin',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'remember_token' => null,\n ]\n );\n echo 'Create Roles...', PHP_EOL;\n Role::create(['name' => 'former']);\n Role::create(['name' => 'learner']);\n Role::create(['name' => 'admin']);\n Role::create(['name' => 'manager']);\n Role::create(['name' => 'user']);\n\n echo 'seeding Role User...', PHP_EOL;\n $user->assignRole('admin');\n $role = $user->assignRole('admin');\n $role->givepermissionTo(Permission::all());\n\n \\DB::table('languages')->insert(['name' => 'English', 'code' => 'en']);\n \\DB::table('languages')->insert(['name' => 'Français', 'code' => 'fr']);\n }", "public function run()\n {\n $this->call(UsersTableSeeder::class);\n $this->call(PermissionsSeeder::class);\n $this->call(RolesSeeder::class);\n $this->call(ThemeSeeder::class);\n\n //\n\n DB::table('paypal_info')->insert([\n 'client_id' => '',\n 'client_secret' => '',\n 'currency' => '',\n ]);\n DB::table('contact_us')->insert([\n 'content' => '',\n ]);\n DB::table('setting')->insert([\n 'site_name' => ' ',\n ]);\n DB::table('terms_and_conditions')->insert(['terms_and_condition' => 'text']);\n }", "public function run()\n {\n $this->call([\n UserSeeder::class,\n ]);\n\n User::factory(20)->create();\n Author::factory(20)->create();\n Book::factory(60)->create();\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(UserSeeder::class);\n $this->call(RolePermissionSeeder::class);\n $this->call(AppmodeSeeder::class);\n\n // \\App\\Models\\Appmode::factory(3)->create();\n \\App\\Models\\Doctor::factory(100)->create();\n \\App\\Models\\Unit::factory(50)->create();\n \\App\\Models\\Broker::factory(100)->create();\n \\App\\Models\\Patient::factory(100)->create();\n \\App\\Models\\Expence::factory(100)->create();\n \\App\\Models\\Testcategory::factory(100)->create();\n \\App\\Models\\Test::factory(50)->create();\n \\App\\Models\\Parameter::factory(50)->create();\n \\App\\Models\\Sale::factory(50)->create();\n \\App\\Models\\SaleItem::factory(100)->create();\n \\App\\Models\\Goption::factory(1)->create();\n \\App\\Models\\Pararesult::factory(50)->create();\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // DB::table('roles')->insert(\n // [\n // ['name' => 'admin', 'description' => 'Administrator'],\n // ['name' => 'student', 'description' => 'Student'],\n // ['name' => 'lab_tech', 'description' => 'Lab Tech'],\n // ['name' => 'it_staff', 'description' => 'IT Staff Member'],\n // ['name' => 'it_manager', 'description' => 'IT Manager'],\n // ['name' => 'lab_manager', 'description' => 'Lab Manager'],\n // ]\n // );\n\n // DB::table('users')->insert(\n // [\n // 'username' => 'admin', \n // 'password' => Hash::make('password'), \n // 'active' => 1,\n // 'name' => 'Administrator',\n // 'email' => '[email protected]',\n // 'role_id' => \\App\\Role::where('name', 'admin')->first()->id\n // ]\n // );\n\n DB::table('status')->insert([\n // ['name' => 'Active'],\n // ['name' => 'Cancel'],\n // ['name' => 'Disable'],\n // ['name' => 'Open'],\n // ['name' => 'Closed'],\n // ['name' => 'Resolved'],\n ['name' => 'Used'],\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n factory(User::class)->create([\n 'name' => 'Qwerty',\n 'email' => '[email protected]',\n 'password' => bcrypt('secretpassw'),\n ]);\n\n factory(User::class, 59)->create([\n 'password' => bcrypt('secretpassw'),\n ]);\n\n for ($i = 1; $i < 11; $i++) {\n factory(Category::class)->create([\n 'name' => 'Category ' . $i,\n ]);\n }\n\n for ($i = 1; $i < 101; $i++) {\n factory(Product::class)->create([\n 'name' => 'Product ' . $i,\n ]);\n }\n }", "public function run()\n {\n\n \t// Making main admin role\n \tDB::table('roles')->insert([\n 'name' => 'Admin',\n ]);\n\n // Making main category\n \tDB::table('categories')->insert([\n 'name' => 'Other',\n ]);\n\n \t// Making main admin account for testing\n \tDB::table('users')->insert([\n 'name' \t\t=> 'Admin',\n 'email' \t=> '[email protected]',\n 'password' => bcrypt('12345'),\n 'role_id' => 1,\n 'created_at' => date('Y-m-d H:i:s' ,time()),\n 'updated_at' => date('Y-m-d H:i:s' ,time())\n ]);\n\n \t// Making random users and posts\n factory(App\\User::class, 10)->create();\n factory(App\\Post::class, 35)->create();\n }", "public function run()\n {\n $faker = Faker::create();\n\n \\DB::table('positions')->insert(array (\n 'codigo' => strtoupper($faker->randomLetter).$faker->postcode,\n 'nombre' => 'Chef',\n 'salario' => '15000.00'\n ));\n\n\t\t \\DB::table('positions')->insert(array (\n 'codigo' => strtoupper($faker->randomLetter).$faker->postcode,\n 'nombre' => 'Mesonero',\n 'salario' => '12000.00'\n ));\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker = \\Faker\\Factory::create();\n\n foreach (range(1,5) as $index) {\n Lista::create([\n 'name' => $faker->sentence(2),\n 'description' => $faker->sentence(10), \n ]);\n } \n\n foreach (range(1,20) as $index) {\n $n = $faker->sentence(2);\n \tTarea::create([\n \t\t'name' => $n,\n \t\t'description' => $faker->sentence(10),\n 'lista_id' => $faker->numberBetween(1,5),\n 'slug' => Str::slug($n),\n \t\t]);\n } \n }", "public function run()\n {\n $faker = Faker::create('lt_LT');\n\n DB::table('users')->insert([\n 'name' => 'user',\n 'email' => '[email protected]',\n 'password' => Hash::make('123')\n ]);\n DB::table('users')->insert([\n 'name' => 'user2',\n 'email' => '[email protected]',\n 'password' => Hash::make('123')\n ]);\n\n foreach (range(1,100) as $val)\n DB::table('authors')->insert([\n 'name' => $faker->firstName(),\n 'surname' => $faker->lastName(),\n \n ]);\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(UsersTableSeeder::class);\n\n // DB::table('users')->insert([\n // 'name' => 'User1',\n // 'email' => '[email protected]',\n // 'password' => bcrypt('password'),\n // ]);\n\n\n $faker = Faker::create();\n \n foreach (range(1,10) as $index){\n DB::table('companies')->insert([\n 'name' => $faker->company(),\n 'email' => $faker->email(10).'@gmail.com',\n 'logo' => $faker->image($dir = '/tmp', $width = 640, $height = 480),\n 'webiste' => $faker->domainName(),\n \n ]);\n }\n \n \n foreach (range(1,10) as $index){\n DB::table('employees')->insert([\n 'first_name' => $faker->firstName(),\n 'last_name' => $faker->lastName(),\n 'company' => $faker->company(),\n 'email' => $faker->str_random(10).'@gmail.com',\n 'phone' => $faker->e164PhoneNumber(),\n \n ]);\n }\n\n\n\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n Flight::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 100; $i++) {\n\n\n Flight::create([\n 'flightNumber' => $faker->randomNumber(5),\n 'depAirport' => $faker->city,\n 'destAirport' => $faker->city,\n 'reservedWeight' => $faker->numberBetween(1000 - 10000),\n 'deptTime' => $faker->dateTime('now'),\n 'arrivalTime' => $faker->dateTime('now'),\n 'reservedVolume' => $faker->numberBetween(1000 - 10000),\n 'airlineName' => $faker->colorName,\n ]);\n }\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->truncteTables([\n 'users',\n 'products'\n ]);\n\n $this->call(UsersSeeder::class);\n $this->call(ProductsSeeder::class);\n\n }", "public function run()\n {\n /**\n * Dummy seeds\n */\n DB::table('metas')->truncate();\n $faker = Faker::create();\n\n for ($i=0; $i < 10; $i++) { \n DB::table('metas')->insert([\n 'id_rel' => $faker->randomNumber(),\n 'titulo' => $faker->sentence,\n 'descricao' => $faker->paragraph,\n 'justificativa' => $faker->paragraph,\n 'valor_inicial' => $faker->numberBetween(0,100),\n 'valor_atual' => $faker->numberBetween(0,100),\n 'valor_final' => $faker->numberBetween(0,10),\n 'regras' => json_encode([$i => [\"values\" => $faker->words(3)]]),\n 'types' => json_encode([$i => [\"values\" => $faker->words(2)]]),\n 'categorias' => json_encode([$i => [\"values\" => $faker->words(4)]]),\n 'tags' => json_encode([$i => [\"values\" => $faker->words(5)]]),\n 'active' => true,\n ]);\n }\n\n\n }", "public function run()\n {\n // $this->call(UserTableSeeder::class);\n\n $faker = Faker::create();\n\n $lessonIds = Lesson::lists('id')->all(); // An array of ID's in that table [1, 2, 3, 4, 5, 7]\n $tagIds = Tag::lists('id')->all();\n\n foreach(range(1, 30) as $index)\n {\n // a real lesson id\n // a real tag id\n DB::table('lesson_tag')->insert([\n 'lesson_id' => $faker->randomElement($lessonIds),\n 'tag_id' => $faker->randomElement($tagIds),\n ]);\n }\n }", "public function run()\n {\n $this->call(CategoriasTableSeeder::class);\n $this->call(UfsTableSeeder::class);\n $this->call(UsersTableSeeder::class);\n $this->call(UserTiposTableSeeder::class);\n factory(App\\User::class, 2)->create();\n/* factory(App\\Models\\Categoria::class, 20)->create();*/\n/* factory(App\\Models\\Anuncio::class, 50)->create();*/\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n Language::truncate();\n Reason::truncate();\n Report::truncate();\n Category::truncate();\n Position::truncate();\n\n $languageQuantity = 10;\n $reasonQuantity = 10;\n $reportQuantity = 10;\n $categoryQuantity = 10;\n $positionQuantity = 10;\n\n factory(Language::class,$languageQuantity)->create();\n factory(Reason::class,$reasonQuantity)->create();\n \n factory(Report::class,$reportQuantity)->create();\n \n factory(Category::class,$categoryQuantity)->create();\n \n factory(Position::class,$positionQuantity)->create();\n\n }", "public function run()\n {\n // \\DB::statement('SET_FOREIGN_KEY_CHECKS=0');\n \\DB::table('users')->truncate();\n \\DB::table('posts')->truncate();\n // \\DB::table('category')->truncate();\n \\DB::table('photos')->truncate();\n \\DB::table('comments')->truncate();\n \\DB::table('comment_replies')->truncate();\n\n \\App\\Models\\User::factory()->times(10)->hasPosts(1)->create();\n \\App\\Models\\Role::factory()->times(10)->create();\n \\App\\Models\\Category::factory()->times(10)->create();\n \\App\\Models\\Comment::factory()->times(10)->hasReplies(1)->create();\n \\App\\Models\\Photo::factory()->times(10)->create();\n\n \n // \\App\\Models\\User::factory(10)->create([\n // 'role_id'=>2,\n // 'is_active'=>1\n // ]);\n\n // factory(App\\Models\\Post::class, 10)->create();\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n $this->call([\n ArticleSeeder::class, \n TagSeeder::class,\n Arttagrel::class\n ]);\n // \\App\\Models\\User::factory(10)->create();\n \\App\\Models\\Article::factory()->count(7)->create();\n \\App\\Models\\Tag::factory()->count(15)->create(); \n \\App\\Models\\Arttagrel::factory()->count(15)->create(); \n }", "public function run()\n {\n $this->call(ArticulosTableSeeder::class);\n /*DB::table('articulos')->insert([\n 'titulo' => str_random(50),\n 'cuerpo' => str_random(200),\n ]);*/\n }", "public function run()\n {\n $this->call(CategoryTableSeeder::class);\n $this->call(ProductTableSeeder::class);\n\n \t\t\n\t\t\tDB::table('users')->insert([\n 'first_name' => 'Ignacio',\n 'last_name' => 'Garcia',\n 'email' => '[email protected]',\n 'password' => bcrypt('123456'),\n 'role' => '1',\n 'avatar' => 'CGnABxNYYn8N23RWlvTTP6C2nRjOLTf8IJcbLqRP.jpeg',\n ]);\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(RoleSeeder::class);\n $this->call(UserSeeder::class);\n\n Medicamento::factory(50)->create();\n Reporte::factory(5)->create();\n Cliente::factory(200)->create();\n Asigna_valor::factory(200)->create();\n Carga::factory(200)->create();\n }", "public function run()\n {\n $this->call([\n RoleSeeder::class,\n TicketSeeder::class\n ]);\n\n DB::table('departments')->insert([\n 'abbr' => 'IT',\n 'name' => 'Information Technologies',\n 'created_at' => Carbon::now(),\n 'updated_at' => Carbon::now(),\n ]);\n\n DB::table('users')->insert([\n 'name' => 'admin',\n 'email' => '[email protected]',\n 'email_verified_at' => Carbon::now(),\n 'password' => Hash::make('admin'),\n 'department_id' => 1,\n 'avatar' => 'default.png',\n 'created_at' => Carbon::now(),\n 'updated_at' => Carbon::now(),\n ]);\n\n DB::table('role_user')->insert([\n 'role_id' => 1,\n 'user_id' => 1\n ]);\n }", "public function run()\n {\n \\App\\Models\\Article::factory(20)->create();\n \\App\\Models\\Category::factory(5)->create();\n \\App\\Models\\Comment::factory(40)->create();\n\n \\App\\Models\\User::create([\n \"name\"=>\"Alice\",\n \"email\"=>'[email protected]',\n 'password' => Hash::make('password'),\n ]);\n \\App\\Models\\User::create([\n \"name\"=>\"Bob\",\n \"email\"=>'[email protected]',\n 'password' => Hash::make('password'),\n ]);\n }", "public function run()\n {\n /** \n * Note: You must add these lines to your .env file for this Seeder to work (replace the values, obviously):\n SEEDER_USER_FIRST_NAME = 'Firstname'\n SEEDER_USER_LAST_NAME = 'Lastname'\n\t\tSEEDER_USER_DISPLAY_NAME = 'Firstname Lastname'\n\t\tSEEDER_USER_EMAIL = [email protected]\n SEEDER_USER_PASSWORD = yourpassword\n */\n\t\tDB::table('users')->insert([\n 'user_first_name' => env('SEEDER_USER_FIRST_NAME'),\n 'user_last_name' => env('SEEDER_USER_LAST_NAME'),\n 'user_name' => env('SEEDER_USER_DISPLAY_NAME'),\n\t\t\t'user_email' => env('SEEDER_USER_EMAIL'),\n 'user_status' => 1,\n \t'password' => Hash::make((env('SEEDER_USER_PASSWORD'))),\n 'permission_fk' => 1,\n 'created_at' => Carbon::now()->format('Y-m-d H:i:s'),\n 'updated_at' => Carbon::now()->format('Y-m-d H:i:s')\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class,3)->create()->each(\n \tfunction($user)\n \t{\n \t\t$user->questions()\n \t\t->saveMany(\n \t\t\tfactory(App\\Question::class, rand(2,6))->make()\n \t\t)\n ->each(function ($q) {\n $q->answers()->saveMany(factory(App\\Answer::class, rand(1,5))->make());\n })\n \t}\n );\n }\n}", "public function run()\n {\n $faker = Faker::create();\n\n // $this->call(UsersTableSeeder::class);\n\n DB::table('posts')->insert([\n 'id'=>str_random(1),\n 'user_id'=> str_random(1),\n 'title' => $faker->name,\n 'body' => $faker->safeEmail,\n 'created_at' => date('Y-m-d H:i:s'),\n 'updated_at' => date('Y-m-d H:i:s'),\n ]);\n }", "public function run()\n\t{\n\t\tDB::table(self::TABLE_NAME)->delete();\n\n\t\tforeach (seed(self::TABLE_NAME) as $row)\n\t\t\t$records[] = [\n\t\t\t\t'id'\t\t\t\t=> $row->id,\n\t\t\t\t'created_at'\t\t=> $row->created_at ?? Carbon::now(),\n\t\t\t\t'updated_at'\t\t=> $row->updated_at ?? Carbon::now(),\n\n\t\t\t\t'sport_id'\t\t\t=> $row->sport_id,\n\t\t\t\t'gender_id'\t\t\t=> $row->gender_id,\n\t\t\t\t'tournamenttype_id'\t=> $row->tournamenttype_id ?? null,\n\n\t\t\t\t'name'\t\t\t\t=> $row->name,\n\t\t\t\t'external_id'\t\t=> $row->external_id ?? null,\n\t\t\t\t'is_top'\t\t\t=> $row->is_top ?? null,\n\t\t\t\t'logo'\t\t\t\t=> $row->logo ?? null,\n\t\t\t\t'position'\t\t\t=> $row->position ?? null,\n\t\t\t];\n\n\t\tinsert(self::TABLE_NAME, $records ?? []);\n\t}", "public function run()\n\t{\n\t\tDB::table('libros')->truncate();\n\n\t\t$faker = Faker\\Factory::create();\n\n\t\tfor ($i=0; $i < 10; $i++) { \n\t\t\tLibro::create([\n\n\t\t\t\t'titulo'\t\t=> $faker->text(40),\n\t\t\t\t'isbn'\t\t\t=> $faker->numberBetween(100,999),\n\t\t\t\t'precio'\t\t=> $faker->randomFloat(2,3,150),\n\t\t\t\t'publicado'\t\t=> $faker->numberBetween(0,1),\n\t\t\t\t'descripcion'\t=> $faker->text(400),\n\t\t\t\t'autor_id'\t\t=> $faker->numberBetween(1,3),\n\t\t\t\t'categoria_id'\t=> $faker->numberBetween(1,3)\n\n\t\t\t]);\n\t\t}\n\n\t\t// Uncomment the below to run the seeder\n\t\t// DB::table('libros')->insert($libros);\n\t}", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class, 10)->create()->each(function ($user) {\n // Seed the relation with 5 purchases\n // $videos = factory(App\\Video::class, 5)->make();\n // $user->videos()->saveMany($videos);\n // $user->videos()->each(function ($video){\n // \t$video->videometa()->save(factory(App\\VideoMeta::class)->make());\n // \t// :( \n // });\n factory(App\\User::class, 10)->create()->each(function ($user) {\n\t\t\t factory(App\\Video::class, 5)->create(['user_id' => $user->id])->each(function ($video) {\n\t\t\t \tfactory(App\\VideoMeta::class, 1)->create(['video_id' => $video->id]);\n\t\t\t // $video->videometa()->save(factory(App\\VideoMeta::class)->create(['video_id' => $video->id]));\n\t\t\t });\n\t\t\t});\n\n });\n }", "public function run()\n {\n // for($i=1;$i<11;$i++){\n // DB::table('post')->insert(\n // ['title' => 'Title'.$i,\n // 'post' => 'Post'.$i,\n // 'slug' => 'Slug'.$i]\n // );\n // }\n $faker = Faker\\Factory::create();\n \n for($i=1;$i<20;$i++){\n $dname = $faker->name;\n DB::table('post')->insert(\n ['title' => $dname,\n 'post' => $faker->text($maxNbChars = 200),\n 'slug' => str_slug($dname)]\n );\n }\n }", "public function run()\n {\n $this->call([\n CountryTableSeeder::class,\n ProvinceTableSeeder::class,\n TagTableSeeder::class\n ]);\n\n User::factory()->count(10)->create();\n Category::factory()->count(5)->create();\n Product::factory()->count(20)->create();\n Section::factory()->count(5)->create();\n Bundle::factory()->count(20)->create();\n\n $bundles = Bundle::all();\n // populate bundle-product table (morph many-to-many)\n Product::all()->each(function ($product) use ($bundles) {\n $product->bundles()->attach(\n $bundles->random(2)->pluck('id')->toArray(),\n ['default_quantity' => rand(1, 10)]\n );\n });\n // populate bundle-tags table (morph many-to-many)\n Tag::all()->each(function ($tag) use ($bundles) {\n $tag->bundles()->attach(\n $bundles->random(2)->pluck('id')->toArray()\n );\n });\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n Contract::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 50; $i++) {\n Contract::create([\n 'serialnumbers' => $faker->numberBetween($min = 1000000, $max = 2000000),\n 'address' => $faker->address,\n 'landholder' => $faker->lastName,\n 'renter' => $faker->lastName,\n 'price' => $faker->numberBetween($min = 10000, $max = 50000),\n 'rent_start' => $faker->date($format = 'Y-m-d', $max = 'now'),\n 'rent_end' => $faker->date($format = 'Y-m-d', $max = 'now'),\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker=Faker\\Factory::create();\n\n for($i=0;$i<100;$i++){\n \tApp\\Blog::create([\n \t\t'title' => $faker->catchPhrase,\n 'description' => $faker->text,\n 'showns' =>true\n \t\t]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0'); // TO PREVENT CHECKS FOR foreien key in seeding\n\n User::truncate();\n Category::truncate();\n Product::truncate();\n Transaction::truncate();\n\n DB::table('category_product')->truncate();\n\n User::flushEventListeners();\n Category::flushEventListeners();\n Product::flushEventListeners();\n Transaction::flushEventListeners();\n\n $usersQuantities = 1000;\n $categoriesQuantities = 30;\n $productsQuantities = 1000;\n $transactionsQuantities = 1000;\n\n factory(User::class, $usersQuantities)->create();\n factory(Category::class, $categoriesQuantities)->create();\n\n factory(Product::class, $productsQuantities)->create()->each(\n function ($product) {\n $categories = Category::all()->random(mt_rand(1, 5))->pluck('id');\n $product->categories()->attach($categories);\n });\n\n factory(Transaction::class, $transactionsQuantities)->create();\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n $this->call(PermissionsTableSeeder::class);\n $this->call(UsersTableSeeder::class);\n\n $this->call(BusinessTableSeeder::class);\n $this->call(PrinterTableSeeder::class);\n factory(App\\Tag::class,10)->create();\n factory(App\\Category::class,10)->create();\n factory(App\\Subcategory::class,50)->create();\n factory(App\\Provider::class,10)->create();\n factory(App\\Product::class,24)->create()->each(function($product){\n\n $product->images()->saveMany(factory(App\\Image::class, 4)->make());\n\n });\n\n\n factory(App\\Client::class,10)->create();\n }", "public function run()\n {\n Article::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 50; $i++) {\n Article::create([\n 'name' => $faker->sentence,\n 'sku' => $faker->paragraph,\n 'price' => $faker->number,\n ]);\n }\n }", "public function run()\n {\n Storage::deleteDirectory('public/products');\n Storage::makeDirectory('public/products');\n\n $this->call(UserSeeder::class);\n Category::factory(4)->create();\n $this->call(ProductSeeder::class);\n Order::factory(4)->create();\n Order_Detail::factory(4)->create();\n Size::factory(100)->create();\n }", "public function run()\n {\n $this->call(RolSeeder::class);\n\n $this->call(UserSeeder::class);\n Category::factory(4)->create();\n Doctor::factory(25)->create();\n Patient::factory(50)->create();\n Status::factory(3)->create();\n Appointment::factory(100)->create();\n }", "public function run()\n\t{\n\t\t\n\t\tDB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n\t\t$faker = \\Faker\\Factory::create();\n\n\t\tTodolist::truncate();\n\n\t\tforeach(range(1, 50) as $index)\n\t\t{\n\n\t\t\t$user = User::create([\n\t\t\t\t'name' => $faker->name,\n\t\t\t\t'email' => $faker->email,\n\t\t\t\t'password' => 'password',\n\t\t\t\t'confirmation_code' => mt_rand(0, 9),\n\t\t\t\t'confirmation' => rand(0,1) == 1\n\t\t\t]);\n\n\t\t\t$list = Todolist::create([\n\t\t\t\t'name' => $faker->sentence(2),\n\t\t\t\t'description' => $faker->sentence(4),\n\t\t\t]);\n\n\t\t\t// BUILD SOME TASKS FOR EACH LIST ITEM\n\t\t\tforeach(range(1, 10) as $index) \n\t\t\t{\n\t\t\t\t$task = new Task;\n\t\t\t\t$task->name = $faker->sentence(2);\n\t\t\t\t$task->description = $faker->sentence(4);\n\t\t\t\t$list->tasks()->save($task);\n\t\t\t}\n\n\t\t}\n\n\t\tDB::statement('SET FOREIGN_KEY_CHECKS = 1'); \n\n\t}", "public function run()\n {\n Campus::truncate();\n Canteen::truncate();\n Dorm::truncate();\n\n $faker = Faker\\Factory::create();\n $schools = School::all();\n foreach ($schools as $school) {\n \tforeach (range(1, 2) as $index) {\n\t \t$campus = Campus::create([\n\t \t\t'school_id' => $school->id,\n\t \t\t'name' => $faker->word . '校区',\n\t \t\t]);\n\n \t$campus->canteens()->saveMany(factory(Canteen::class, mt_rand(2,3))->make());\n $campus->dorms()->saveMany(factory(Dorm::class, mt_rand(2,3))->make());\n\n }\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::table('users')->insert([\n 'name' => 'admin',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'seq_q'=>'1',\n 'seq_a'=>'admin'\n ]);\n\n // DB::table('bloods')->insert([\n // ['name' => 'A+'],\n // ['name' => 'A-'],\n // ['name' => 'B+'],\n // ['name' => 'B-'],\n // ['name' => 'AB+'],\n // ['name' => 'AB-'],\n // ['name' => 'O+'],\n // ['name' => 'O-'],\n // ]);\n\n \n }", "public function run()\n {\n // $this->call(UserTableSeeder::class);\n \\App\\User::create([\n 'name'=>'PAPE SAMBA NDOUR',\n 'email'=>'[email protected]',\n 'password'=>bcrypt('Admin1122'),\n ]);\n\n $faker = Faker::create();\n\n for ($i = 0; $i < 100 ; $i++)\n {\n $firstName = $faker->firstName;\n $lastName = $faker->lastName;\n $niveau = \\App\\Niveau::inRandomOrder()->first();\n \\App\\Etudiant::create([\n 'prenom'=>$firstName,\n 'nom'=>$lastName,\n 'niveau_id'=>$niveau->id\n ]);\n }\n\n\n }", "public function run()\n {\n //\n DB::table('foods')->delete();\n\n Foods::create(array(\n 'name' => 'Chicken Wing',\n 'author' => 'Bambang',\n 'overview' => 'a deep-fried chicken wing, not in spicy sauce'\n ));\n\n Foods::create(array(\n 'name' => 'Beef ribs',\n 'author' => 'Frank',\n 'overview' => 'Slow baked beef ribs rubbed in spices'\n ));\n\n Foods::create(array(\n 'name' => 'Ice cream',\n 'author' => 'Lou',\n 'overview' => ' A sweetened frozen food typically eaten as a snack or dessert.'\n ));\n\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n News::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 10; $i++) {\n News::create([\n 'title' => $faker->sentence,\n 'summary' => $faker->sentence,\n 'content' => $faker->paragraph,\n 'imagePath' => '/img/exclamation_mark.png'\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class, 3)->create();\n factory(App\\Models\\Category::class, 3)\n ->create()\n ->each(function ($u) {\n $u->courses()->saveMany(factory(App\\Models\\Course::class,3)->make())->each(function ($c){\n $c->exams()->saveMany(factory(\\App\\Models\\Exam::class,3)->make())->each(function ($e){\n $e->questions()->saveMany(factory(\\App\\Models\\Question::class,4)->make())->each(function ($q){\n $q->answers()->saveMany(factory(\\App\\Models\\Answer::class,4)->make())->each(function ($a){\n $a->correctAnswer()->save(factory(\\App\\Models\\Correct_answer::class)->make());\n });\n });\n });\n });\n\n });\n\n }", "public function run()\n {\n \\DB::table('employees')->delete();\n\n $faker = \\Faker\\Factory::create('ja_JP');\n\n $role_id = ['1','2','3'];\n\n for ($i = 0; $i < 10; $i++) {\n \\App\\Models\\Employee::create([\n 'last_name' =>$faker->lastName() ,\n 'first_name' => $faker->firstName(),\n 'mail' => $faker->email(),\n 'password' => Hash::make( \"password.$i\"),\n 'birthday' => $faker->date($format='Y-m-d',$max='now'),\n 'role_id' => $faker->randomElement($role_id)\n ]);\n }\n }", "public function run()\n {\n\n DB::table('clients')->delete();\n DB::table('trips')->delete();\n error_log('empty tables done.');\n\n $random_cities = City::inRandomOrder()->select('ar_name')->limit(5)->get();\n $GLOBALS[\"random_cities\"] = $random_cities->pluck('ar_name')->toArray();\n\n $random_airlines = Airline::inRandomOrder()->select('code')->limit(5)->get();\n $GLOBALS[\"random_airlines\"] = $random_airlines->pluck('code')->toArray();\n\n factory(App\\Client::class, 5)->create();\n error_log('Client seed done.');\n\n\n factory(App\\Trip::class, 50)->create();\n error_log('Trip seed done.');\n\n\n factory(App\\Quicksearch::class, 10)->create();\n error_log('Quicksearch seed done.');\n }", "public function run()\n {\n // Admins\n User::factory()->create([\n 'name' => 'Zaiman Noris',\n 'username' => 'rognales',\n 'email' => '[email protected]',\n 'active' => true,\n ]);\n\n User::factory()->create([\n 'name' => 'Affiq Rashid',\n 'username' => 'affiqr',\n 'email' => '[email protected]',\n 'active' => true,\n ]);\n\n // Only seed test data in non-prod\n if (! app()->isProduction()) {\n Member::factory()->count(1000)->create();\n Staff::factory()->count(1000)->create();\n\n Participant::factory()\n ->addSpouse()\n ->addChildren()\n ->addInfant()\n ->addOthers()\n ->count(500)\n ->hasUploads(2)\n ->create();\n }\n }", "public function run()\n {\n $this->call([\n RoleSeeder::class,\n UserSeeder::class,\n ]);\n\n \\App\\Models\\Category::factory(4)->create();\n \\App\\Models\\View::factory(6)->create();\n \\App\\Models\\Room::factory(8)->create();\n \n $rooms = \\App\\Models\\Room::all();\n // \\App\\Models\\User::all()->each(function ($user) use ($rooms) { \n // $user->rooms()->attach(\n // $rooms->random(rand(1, \\App\\Models\\Room::max('id')))->pluck('id')->toArray()\n // ); \n // });\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n Employee::factory()->create(['email' => '[email protected]']);\n Brand::factory()->count(3)->create();\n $this->call([\n TagSeeder::class,\n AttributeSeeder::class,\n AttributeValueSeeder::class,\n ProductSeeder::class,\n ]);\n }", "public function run()\n {\n $this->call(RolesTableSeeder::class); // crée les rôles\n $this->call(PermissionsTableSeeder::class); // crée les permissions\n\n factory(Employee::class,3)->create();\n factory(Provider::class,1)->create();\n\n $user = User::create([\n 'name'=>'Alioune Bada Ndoye',\n 'email'=>'[email protected]',\n 'phone'=>'773012470',\n 'password'=>bcrypt('123'),\n ]);\n Employee::create([\n 'job'=>'Informaticien',\n 'user_id'=>User::where('email','[email protected]')->first()->id,\n 'point_id'=>Point::find(1)->id,\n ]);\n $user->assignRole('admin');\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n factory(User::class, 1)\n \t->create(['email' => '[email protected]']);\n\n factory(Category::class, 5)->create();\n }", "public function run()\n {\n //$this->call(UsersTableSeeder::class);\n $this->call(rootSeed::class);\n factory(App\\Models\\Egresado::class,'hombre',15)->create();\n factory(App\\Models\\Egresado::class,'mujer',15)->create();\n factory(App\\Models\\Administrador::class,5)->create();\n factory(App\\Models\\Notificacion::class,'post',10)->create();\n factory(App\\Models\\Notificacion::class,'mensaje',5)->create();\n factory(App\\Models\\Egresado::class,'bajaM',5)->create();\n factory(App\\Models\\Egresado::class,'bajaF',5)->create();\n factory(App\\Models\\Egresado::class,'suscritam',5)->create();\n factory(App\\Models\\Egresado::class,'suscritaf',5)->create();\n }", "public function run()\n {\n \n User::factory(1)->create([\n 'rol'=>'EPS'\n ]);\n Person::factory(10)->create();\n $this->call(EPSSeeder::class);\n $this->call(OfficialSeeder::class);\n $this->call(VVCSeeder::class);\n $this->call(VaccineSeeder::class);\n }", "public function run()\n {\n // $faker=Faker::create();\n // foreach(range(1,100) as $index)\n // {\n // DB::table('products')->insert([\n // 'name' => $faker->name,\n // 'price' => rand(10,100000)/100\n // ]);\n // }\n }", "public function run()\n {\n $this->call([\n LanguagesTableSeeder::class,\n ListingAvailabilitiesTableSeeder::class,\n ListingTypesTableSeeder::class,\n RoomTypesTableSeeder::class,\n AmenitiesTableSeeder::class,\n UsersTableSeeder::class,\n UserLanguagesTableSeeder::class,\n ListingsTableSeeder::class,\n WishlistsTableSeeder::class,\n StaysTableSeeder::class,\n GuestsTableSeeder::class,\n TripsTableSeeder::class,\n ReviewsTableSeeder::class,\n RatingsTableSeeder::class,\n PopularDestinationsTableSeeder::class,\n ImagesTableSeeder::class,\n ]);\n\n // factory(App\\User::class, 5)->states('host')->create();\n // factory(App\\User::class, 10)->states('hostee')->create();\n\n // factory(App\\User::class, 10)->create();\n // factory(App\\Models\\Listing::class, 30)->create();\n }", "public function run()\n {\n Schema::disableForeignKeyConstraints();\n Grade::truncate();\n Schema::enableForeignKeyConstraints();\n\n $faker = \\Faker\\Factory::create();\n\n for ($i = 0; $i < 10; $i++) {\n Grade::create([\n 'letter' => $faker->randomElement(['а', 'б', 'в']),\n 'school_id' => $faker->unique()->numberBetween(1, School::count()),\n 'level' => 1\n ]);\n }\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n factory(App\\User::class,5)->create();//5 User created\n factory(App\\Model\\Genre::class,5)->create();//5 genres\n factory(App\\Model\\Film::class,6)->create();//6 films\n factory(App\\Model\\Comment::class, 20)->create();// 20 comments\n }", "public function run()\n {\n\n $this->call(UserSeeder::class);\n factory(Empresa::class,10)->create();\n factory(Empleado::class,50)->create();\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n User::create([\n 'name' => 'jose luis',\n 'email' => '[email protected]',\n 'password' => bcrypt('xxxxxx'),\n 'role' => 'admin',\n ]);\n\n Category::create([\n 'name' => 'inpods',\n 'description' => 'auriculares inalambricos que funcionan con blouthue genial'\n ]);\n\n Category::create([\n 'name' => 'other',\n 'description' => 'otra cosa diferente a un inpods'\n ]);\n\n\n /* Create 10 products */\n Product::factory(10)->create();\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Russell'\n ]);\n\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Bitfumes'\n ]);\n\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Paul'\n ]);\n }", "public function run()\n {\n $user_ids = [1,2,3];\n $faker = app(\\Faker\\Generator::class);\n $posts = factory(\\App\\Post::class)->times(50)->make()->each(function($post) use ($user_ids,$faker){\n $post->user_id = $faker->randomElement($user_ids);\n });\n \\App\\Post::insert($posts->toArray());\n }", "public function run()\n {\n // Vaciar la tabla.\n Favorite::truncate();\n $faker = \\Faker\\Factory::create();\n // Crear artículos ficticios en la tabla\n\n // factory(App\\Models\\User::class, 2)->create()->each(function ($user) {\n // $user->users()->saveMany(factory(App\\Models\\User::class, 25)->make());\n //});\n }", "public function run()\n\t{\n\t\t$this->call(ProductsTableSeeder::class);\n\t\t$this->call(CategoriesTableSeeder::class);\n\t\t$this->call(BrandsTableSeeder::class);\n\t\t$this->call(ColorsTableSeeder::class);\n\n\t\t$products = \\App\\Product::all();\n \t$categories = \\App\\Category::all();\n \t$brands = \\App\\Brand::all();\n \t$colors = \\App\\Color::all();\n\n\t\tforeach ($products as $product) {\n\t\t\t$product->colors()->sync($colors->random(3));\n\n\t\t\t$product->category()->associate($categories->random(1)->first());\n\t\t\t$product->brand()->associate($brands->random(1)->first());\n\n\t\t\t$product->save();\n\t\t}\n\n\t\t// for ($i = 0; $i < count($products); $i++) {\n\t\t// \t$cat = $categories[rand(0,5)];\n\t\t// \t$bra = $brands[rand(0,7)];\n\t\t// \t$cat->products()->save($products[$i]);\n\t\t// \t$bra->products()->save($products[$i]);\n\t\t// }\n\n\t\t// $products = factory(App\\Product::class)->times(20)->create();\n\t\t// $categories = factory(App\\Category::class)->times(6)->create();\n\t\t// $brands = factory(App\\Brand::class)->times(8)->create();\n\t\t// $colors = factory(App\\Color::class)->times(15)->create();\n\t}", "public function run()\n {\n /*$this->call(UsersTableSeeder::class);\n $this->call(GroupsTableSeeder::class);\n $this->call(TopicsTableSeeder::class);\n $this->call(CommentsTableSeeder::class);*/\n DB::table('users')->insert([\n 'name' => 'pkw',\n 'email' => '[email protected]',\n 'password' => bcrypt('secret'),\n 'type' => '1'\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker = Faker::create();\n foreach (range(1,200) as $index) {\n DB::table('users')->insert([\n 'name' => $faker->name,\n 'email' => $faker->email,\n 'phone' => $faker->randomDigitNotNull,\n 'address'=> $faker->streetAddress,\n 'password' => bcrypt('secret'),\n ]);\n }\n }", "public function run()\n {\n $this->call(UsersSeeder::class);\n User::factory(2)->create();\n Company::factory(2)->create();\n\n }", "public function run()\n {\n echo PHP_EOL , 'seeding roles...';\n\n Role::create(\n [\n 'name' => 'Admin',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Principal',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Teacher',\n 'deletable' => false,\n ]\n );\n\n Role::create(\n [\n 'name' => 'Student',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Parents',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Accountant',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Librarian',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Receptionist',\n 'deletable' => false,\n ]\n );\n\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // $this->call(QuestionTableSeed::class);\n\n $this->call([\n QuestionTableSeed::class,\n AlternativeTableSeed::class,\n ScheduleActionTableSeeder::class,\n UserTableSeeder::class,\n CompanyClassificationTableSeed::class,\n ]);\n // DB::table('clients')->insert([\n // 'name' => 'Empresa-02',\n // 'email' => '[email protected]',\n // 'password' => bcrypt('07.052.477/0001-60'),\n // ]);\n }", "public function run()\n {\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 5; $i++) {\n Runner::create([\n 'external_id' => $faker->uuid,\n 'name' => $faker->name,\n 'race_id' =>rand(1,5),\n 'age' => rand(30, 45),\n 'sex' => $faker->randomElement(['male', 'female']),\n 'color' => $faker->randomElement(['#ecbcb4', '#d1a3a4']),\n ]);\n }\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n\n User::factory()->create([\n 'name' => 'Carlos',\n 'email' => '[email protected]',\n 'email_verified_at' => now(),\n 'password' => bcrypt('123456'), // password\n 'remember_token' => Str::random(10),\n ]);\n \n $this->call([PostsTableSeeder::class]);\n $this->call([TagTableSeeder::class]);\n\n }", "public function run()\n {\n $this->call(AlumnoSeeder::class);\n //Alumnos::factory()->count(30)->create();\n //DB::table('alumnos')->insert([\n // 'dni_al' => '13189079',\n // 'nom_al' => 'Jose',\n // 'ape_al' => 'Araujo',\n // 'rep_al' => 'Principal',\n // 'esp_al' => 'Tecnologia',\n // 'lnac_al' => 'Valencia'\n //]);\n }", "public function run()\n {\n Eloquent::unguard();\n\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n\n // $this->call([\n // CountriesTableSeeder::class,\n // ]);\n\n factory(App\\User::class, 100)->create();\n factory(App\\Type::class, 10)->create();\n factory(App\\Item::class, 100)->create();\n factory(App\\Order::class, 1000)->create();\n\n $items = App\\Item::all();\n\n App\\Order::all()->each(function($order) use ($items) {\n\n $n = rand(1, 10);\n\n $order->items()->attach(\n $items->random($n)->pluck('id')->toArray()\n , ['quantity' => $n]);\n\n $order->total = $order->items->sum(function($item) {\n return $item->price * $item->pivot->quantity;\n });\n\n $order->save();\n\n });\n\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'izzanni',\n \n ]\n );\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'aina',\n\n ]\n );\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'sab',\n\n ]\n );\n }", "public function run()\n {\n\n factory('App\\Models\\Pessoa', 60)->create();\n factory('App\\Models\\Profissional', 10)->create();\n factory('App\\Models\\Paciente', 50)->create();\n $this->call(UsersTableSeeder::class);\n $this->call(ProcedimentoTableSeeder::class);\n // $this->call(PessoaTableSeeder::class);\n // $this->call(ProfissionalTableSeeder::class);\n // $this->call(PacienteTableSeeder::class);\n // $this->call(AgendaProfissionalTableSeeder::class);\n }", "public function run()\n {\n //Acá se define lo que el seeder va a hacer.\n //insert() para insertar datos.\n //Array asociativo. La llave es el nombre de la columna.\n// DB::table('users')->insert([\n// //Para un solo usuario.\n// 'name' => 'Pedrito Perez',\n// 'email' => '[email protected]',\n// 'password' => bcrypt('123456')\n// ]);//Se indica el nombre de la tabla.\n\n //Crea 50 usuarios (sin probar)\n// factory(App\\User::class, 50)->create()->each(function($u) {\n// $u->posts()->save(factory(App\\Post::class)->make());\n// });\n\n factory(App\\User::class, 10)->create(); //Así se ejecuta el model factory creado en ModelFactory.php\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n //nhập liệu mẫu cho bảng users\n DB::table('users')->insert([\n \t['id'=>'1001', 'name'=>'Phan Thị Hiền', 'email'=>'[email protected]', 'password'=>'123456', 'isadmin'=>1],\n \t['id'=>'1002', 'name'=>'Phan Thị Hà', 'email'=>'[email protected]', 'password'=>'111111', 'isadmin'=>0]\n ]);\n\n\n //nhập liệu mẫu cho bảng suppliers\n DB::table('suppliers')->insert([\n \t['name'=>'FPT', 'address'=>'151 Hùng Vương, TP. Đà Nẵng', 'phonenum'=>'0971455395'],\n \t['name'=>'Điện Máy Xanh', 'address'=>'169 Phan Châu Trinh, TP. Đà Nẵng', 'phonenum'=>'0379456011']\n ]);\n\n\n //Bảng phiếu bảo hành\n }", "public function run()\n {\n \t// DB::table('categories')->truncate();\n // factory(App\\Models\\Category::class, 10)->create();\n Schema::disableForeignKeyConstraints();\n Category::truncate();\n $faker = Faker\\Factory::create();\n\n $categories = ['SAMSUNG','NOKIA','APPLE','BLACK BERRY'];\n foreach ($categories as $key => $value) {\n Category::create([\n 'name'=>$value,\n 'description'=> 'This is '.$value,\n 'markup'=> rand(10,100),\n 'category_id'=> null,\n 'UUID' => $faker->uuid,\n ]);\n }\n }" ]
[ "0.8013876", "0.79804534", "0.7976992", "0.79542726", "0.79511505", "0.7949612", "0.794459", "0.7942486", "0.7938189", "0.79368967", "0.79337025", "0.78924936", "0.78811055", "0.78790957", "0.78787595", "0.787547", "0.7871811", "0.78701615", "0.7851422", "0.7850352", "0.7841468", "0.7834583", "0.7827792", "0.7819104", "0.78088796", "0.7802872", "0.7802348", "0.78006834", "0.77989215", "0.7795819", "0.77903426", "0.77884805", "0.77862066", "0.7778816", "0.7777486", "0.7765202", "0.7762492", "0.77623445", "0.77621746", "0.7761383", "0.77606887", "0.77596676", "0.7757001", "0.7753607", "0.7749522", "0.7749292", "0.77466977", "0.7729947", "0.77289546", "0.772796", "0.77167094", "0.7714503", "0.77140456", "0.77132195", "0.771243", "0.77122366", "0.7711113", "0.77109736", "0.7710777", "0.7710086", "0.7705484", "0.770464", "0.7704354", "0.7704061", "0.77027386", "0.77020216", "0.77008796", "0.7698617", "0.76985973", "0.76973504", "0.7696405", "0.7694293", "0.7692694", "0.7691264", "0.7690576", "0.76882726", "0.7687433", "0.7686844", "0.7686498", "0.7685065", "0.7683827", "0.7679184", "0.7678287", "0.76776296", "0.76767945", "0.76726556", "0.76708084", "0.76690495", "0.766872", "0.76686716", "0.7666299", "0.76625943", "0.7662227", "0.76613766", "0.7659881", "0.7656644", "0.76539344", "0.76535016", "0.7652375", "0.7652313", "0.7652022" ]
0.0
-1
Method to getting routes
public static function getRoutes(): array { return self::$routes; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function getRoutes();", "public static function getRoutes();", "public function getRoutes() {}", "public function getRoutes();", "public function getRoutes();", "public function getSystemRoutes();", "public function getRoutes() : array;", "public function getRoutes() : array;", "private function getRoute(){\n\t}", "public function getRoute();", "public static function routes()\n {\n return self::$routes;\n }", "private function getRoutes()\r\n\t{\r\n\t\t$this->info('Loading Api routes...');\r\n\r\n\t\tif (config('openapischemas.router') === 'laravel') {\r\n\t\t\treturn Route::getRoutes();\r\n\t\t} else {\r\n\t\t\treturn app('Dingo\\Api\\Routing\\Router')->getRoutes()[config('openapischemas.routes_prefix')];\r\n\t\t}\r\n\t}", "public function getRoutes() {\n \treturn $this->routes;\n }", "static function routes() {\n return self::$_routes;\n }", "public function getRoutes() {\n return array();\n }", "public static function get_all_route()\n {\n return include BASE_PATH . 'routes'. DIRECTORY_SEPARATOR . 'web.php';\n }", "public function getRoute()\n {\n }", "public static function getRoutes() {\n return self::$instance->getRouteList();\n }", "public static function getRoutes()\n {\n return self::$routes;\n }", "public static function getRoutes()\n {\n return self::$routes;\n }", "public function get_route()\n {\n }", "public function getRoutes ()\n {\n return $this->routes;\n }", "public function routes()\r\n {\r\n return $this->routes;\r\n }", "public function getListRoutes()\r\n {\r\n $result = array();\r\n \r\n if (count( $this->routes ))\r\n {\r\n foreach ( $this->routes as $act )\r\n {\r\n \r\n $route_str = '';\r\n if (isset( $this->default_params['url_prefix'] ) && ! empty( $this->default_params['url_prefix'] ))\r\n {\r\n $route_str = $this->default_params['url_prefix'];\r\n }\r\n \r\n if (is_array( $act['type'] ))\r\n {\r\n $route_str = implode( '|', $act['type'] ) . ' ' . $route_str;\r\n }\r\n else\r\n {\r\n $route_str = $act['type'] . ' ' . $route_str;\r\n }\r\n $route_str .= $act['route'];\r\n \r\n if (isset( $act['params']['ajax'] ) && (bool) ($act['params']['ajax']))\r\n {\r\n $route_str .= ' [ajax]';\r\n }\r\n \r\n $action_str = '';\r\n if (isset( $act['params']['namespace'] ) && ! empty( $act['params']['namespace'] ))\r\n {\r\n $action_str = (string) $act['params']['namespace'];\r\n }\r\n else\r\n {\r\n if (isset( $this->default_params['namespace'] ) && ! empty( $this->default_params['namespace'] ))\r\n {\r\n $action_str = $this->default_params['namespace'];\r\n }\r\n }\r\n $action_str .= '\\\\';\r\n \r\n if (isset( $act['params']['controller'] ))\r\n {\r\n $action_str .= (string) $act['params']['controller'];\r\n }\r\n else\r\n {\r\n if (isset( $this->default_params['controller'] ) && ! empty( $this->default_params['controller'] ))\r\n {\r\n $action_str .= $this->default_params['controller'];\r\n }\r\n }\r\n $action_str .= '->' . (string) $act['params']['action'];\r\n \r\n $kbps = $this->default_params['kbps'];\r\n if( isset( $act['params']['kbps'] ) ){\r\n \t$kbps = $act['params']['kbps'];\r\n }\r\n $ttl = $this->default_params['ttl'];\r\n if( isset( $act['params']['ttl'] ) ){\r\n \t$ttl = $act['params']['ttl'];\r\n }\r\n \r\n $route = new \\stdclass();\r\n $route->pattern = $route_str;\r\n $route->handler = $action_str;\r\n $route->ttl = $ttl;\r\n $route->kbps = $kbps;\r\n $result[] = $route;\r\n }\r\n }\r\n \r\n return $result;\r\n }", "abstract public function getRoute();", "function getRoutes() {\n return $this->routes;\n }", "function getRoutes()\n {\n return $this->_routes;\n }", "public function getRoutes(){\n return $this->routes;\n }", "public function getRoutes()\n\t{\n\t\treturn $this->routes;\n\t}", "public function getRoutes()\n\t{\n\t\treturn $this->routes;\n\t}", "public function getRoutes()\n\t{\n\t\treturn $this->routes;\n\t}", "public static function routes(): void\n {\n //\n }", "static public function routes()\n\t{\n\t\tglobal $core;\n\t\tstatic $constructed;\n\n\t\tif (!$constructed)\n\t\t{\n\t\t\t$constructed = true;\n\n\t\t\tself::$routes += $core->configs->fuse('routes', array(__CLASS__, 'routes_constructor'));\n\t\t}\n\n\t\treturn self::$routes;\n\t}", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes()\n {\n return $this->routes;\n }", "public function getRoutes() {\n\t\treturn $this->routes;\n\t}", "public function getRoutes()\n {\n return Controllers\\RoutesController::getInstance();\n }", "private function load_routes() {\n\n // 1. plugins routes\n foreach($this->context->plugins() as $plugin) {\n \n if(false === $plugin->is_type('IRoutesPlugin')) continue;\n\n foreach($plugin->routes() as $route_value) {\n $this->routes[]= $route_value;\n }\n }\n\n // 2. config.xml routes\n $config_routes= $this->context->config()->routes();\n // XXX: review, maybe Route[] should be returned by configurator?\n foreach( $config_routes as $r ) {\n // xxx. requirements\n $this->routes[]= new Route( \n (string)trim($r['name']), // name\n (string)trim($r['value']), // definition\n $this->context->config()->route_defaults($r) // array with defaults\n );\n }\n\n // Medick::dump($this->routes);\n\n // xxx: throw exception if 0 routes?\n }", "protected function routes()\n {\n if ($this->app->routesAreCached()) {\n return;\n }\n\n\n /**\n * Porteiro; Routes\n */\n $this->loadRoutesForRiCa(__DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'routes');\n }", "public function getRoutes() {\r\n\t\treturn array_merge($this->getFunctionRoutes(), $this->getClassRoutes());\r\n\t}", "public function getRoutes() {\n\t\treturn $this->_routes;\n\t}", "function add_listing_routes()\n {\n $this->add_route('GET', '/routes', function(){\n print \"<h1>Routes</h1>\";\n foreach($this->routes as $method => $routes) {\n print \"<h3>\".$method.\"</h3>\";\n print \"<ul>\";\n foreach ($routes as $route) {\n print \"<li>\".$route->path.\"</li>\";\n }\n print \"</ul>\";\n }\n });\n }", "public static function routes()\n {\n if (!static::$initialized) {\n static::_loadRoutes();\n }\n\n return static::$_collection->routes();\n }", "public function getRoutes(): array\r\n {\r\n return $this->routes;\r\n }", "public function getRoutes(): array\r\n {\r\n return $this->routes;\r\n }", "public function getRoutes() {\n\n\t\treturn $this->_routes;\n\t}", "public static function getRoutes(): array\n {\n require(root_path('routes.php'));\n return self::$called;\n }", "public function getRoutes() {\n return $this->routes;\n }", "public function getRoutes() {\n return $this->routes;\n }", "public function getRoutes() {\n return $this->routes;\n }", "public static function routes()\r\n {\r\n return [\r\n [\"uri\" => \"/\", \"action\" => \"get\", \"uses\" => \"IndexController@index\"],\r\n [\"uri\" => \"/\", \"action\" => \"post\", \"uses\" => \"IndexController@handle\"],\r\n [\"uri\" => \"/api\", \"action\" => \"get\", \"uses\" => \"APIController@handle\"],\r\n ];\r\n }", "public function routes()\n {\n register_rest_route('can', '/donation-forms', [\n 'methods' => 'GET',\n 'callback' => [\n $this, 'fundraisingPages'\n ],\n ]);\n\n register_rest_route('can', '/forms', [\n 'methods' => 'GET',\n 'callback' => [\n $this, 'forms'\n ],\n ]);\n\n register_rest_route('can', '/petitions', [\n 'methods' => 'GET',\n 'callback' => [\n $this, 'petitions'\n ],\n ]);\n\n register_rest_route('can', '/person/add', [\n 'methods' => 'GET',\n 'callback' => [\n $this, 'addPerson'\n ],\n ]);\n }", "public static function getRoutes()\n {\n $routes = new \\FreeFW\\Router\\RouteCollection();\n $paths = [];\n $paths[] = __DIR__ . '/../resource/routes/restful/routes.php';\n foreach ($paths as $onePath) {\n $apiRoutes = @include($onePath);\n if (is_array($apiRoutes)) {\n foreach ($apiRoutes as $routeId => $apiRoute) {\n $myRoute = new \\FreeFW\\Router\\Route();\n $myRoute\n ->setId($routeId)\n ->setMethod($apiRoute[\\FreeFW\\Router\\Route::ROUTE_METHOD])\n ->setUrl($apiRoute[\\FreeFW\\Router\\Route::ROUTE_URL])\n ->setController($apiRoute[\\FreeFW\\Router\\Route::ROUTE_CONTROLLER])\n ->setFunction($apiRoute[\\FreeFW\\Router\\Route::ROUTE_FUNCTION])\n ;\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_ROLE, $apiRoute)) {\n $myRoute->setRole($apiRoute[\\FreeFW\\Router\\Route::ROUTE_ROLE]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_AUTH, $apiRoute)) {\n $myRoute->setAuth($apiRoute[\\FreeFW\\Router\\Route::ROUTE_AUTH]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_INCLUDE, $apiRoute)) {\n $myRoute->setInclude($apiRoute[\\FreeFW\\Router\\Route::ROUTE_INCLUDE]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_MODEL, $apiRoute)) {\n $myRoute->setDefaultModel($apiRoute[\\FreeFW\\Router\\Route::ROUTE_MODEL]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_COLLECTION, $apiRoute)) {\n $myRoute->setCollection($apiRoute[\\FreeFW\\Router\\Route::ROUTE_COLLECTION]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_COMMENT, $apiRoute)) {\n $myRoute->setComment($apiRoute[\\FreeFW\\Router\\Route::ROUTE_COMMENT]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_PARAMETERS, $apiRoute)) {\n $myRoute->setParameters($apiRoute[\\FreeFW\\Router\\Route::ROUTE_PARAMETERS]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_RESULTS, $apiRoute)) {\n $myRoute->setResponses($apiRoute[\\FreeFW\\Router\\Route::ROUTE_RESULTS]);\n }\n if (array_key_exists(\\FreeFW\\Router\\Route::ROUTE_SCOPE, $apiRoute)) {\n $myRoute->setScope($apiRoute[\\FreeFW\\Router\\Route::ROUTE_SCOPE]);\n }\n $routes->addRoute($myRoute);\n }\n }\n }\n return $routes;\n }", "public function getRoutes() {\n\t\treturn array_values($this->routes);\n\t}", "public function get_router();", "public function getRoutes()\n\t{\n\t\t$routes = array();\n\t\tarray_push($routes, CoreControllerObject::buildAction('/login', __CLASS__, CoreControllerObject::MATCH_TYPE_STRING));\n\t\treturn $routes;\n\t}", "abstract protected function getListRoute() : string;", "public function get_routes($route_namespace = '')\n {\n }", "public static function getRoutes()\n {\n $a = array();\n $router = ROUTER::init();\n foreach ($router->assigns as $ass)\n {\n if (isset($ass['module']) and isset($ass['action']))\n {\n $a[] = array('route' => $ass['route'], 'execute' => $router->current_dir . '/' . $ass['module'] . '/' . $ass['action'] . '.action.php');\n }\n elseif (isset($ass['function']))\n {\n $a[] = array('route' => $ass['route'], 'function' => $ass['function']);\n }\n else\n {\n /*do nothing*/;\n }\n }\n return $a;\n }", "public function all() {\n return $this->provider->getRoutesByNames(NULL);\n }", "public function getRouteCollection()\n {\n\n // retrieve the registered handlers\n $handlers = $this->handlerManager->getHandler();\n\n // prepare the collection with the available routes and initialize the route counter\n $routes = new RouteCollection();\n $counter = 0;\n\n // iterate over the available handlers and prepare the routes\n foreach ($handlers as $urlPattern => $handler) {\n $pattern = str_replace('/*', \"/{placeholder_$counter}\", $urlPattern);\n $route = new Route($pattern, array(\n $handler\n ), array(\n \"{placeholder_$counter}\" => '.*'\n ));\n $routes->add($counter ++, $route);\n }\n\n // return the collection with the routes\n return $routes;\n }", "public function getRoutes()\r\n {\r\n $collection = $this->router->getRouteCollection();\r\n return $collection->all();\r\n }", "public function get_routes() {\n\t\t$endpoints = array(\n\t\t\t// Meta endpoints\n\t\t\t'/' => array( array( $this, 'get_index' ), self::READABLE ),\n\t\t);\n\n\t\t$endpoints = apply_filters( 'json_endpoints', $endpoints );\n\n\t\t// Normalise the endpoints\n\t\tforeach ( $endpoints as $route => &$handlers ) {\n\t\t\tif ( count( $handlers ) <= 2 && isset( $handlers[1] ) && ! is_array( $handlers[1] ) ) {\n\t\t\t\t$handlers = array( $handlers );\n\t\t\t}\n\t\t}\n\t\treturn $endpoints;\n\t}", "public function getRoutes(): array\n\t{\n\t\treturn $this->_routes;\n\t}", "public function getRouteList() {\n return $this->routes;\n }", "public static function getRoute()\n {\n global $req;\n\n $route = [];\n $uri = trim($req->getPathInfo(), '/');\n $uri = explode('/', $uri);\n\n $route['base'] = $uri[0];\n $route['section'] = empty($uri[1]) ? '' : $uri[1];\n $route['action'] = empty($uri[2]) ? '' : $uri[2];\n $route['page'] = $uri[count($uri)-1];\n\n return $route;\n }", "private function getRoute() {\n $path = $_SERVER['PATH_INFO'];\n\n $parts = explode('/', trim($path, '/'));\n $action = array_shift($parts);\n $this->uri_params = $parts;\n\n if (!$action) $action = 'index';\n $action .= 'Action';\n return array($this, $action);\n }", "protected function getRoutes()\n {\n $resultRoutes = [];\n $apiPrefix = $this->helper->getApiPrefix();\n $apiPrefixLength = strlen($apiPrefix);\n \n foreach (Route::getRoutes() as $route) {\n \n $path = $route->uri();\n if (substr($path, 0, $apiPrefixLength) !== $apiPrefix) {\n $this->info('Omiting ' . $path);\n \n continue;\n }\n \n $routeFolder = $this->helper->getRouteFolder($route);\n if (!isset($resultRoutes[$routeFolder])) {\n $resultRoutes[$routeFolder] = [];\n }\n \n $resultRoutes[$routeFolder][] = $route;\n }\n \n return $resultRoutes;\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }", "public function register_routes()\n {\n }" ]
[ "0.89827555", "0.89827555", "0.8940723", "0.88976496", "0.88976496", "0.82338977", "0.80864215", "0.80864215", "0.8054139", "0.80221915", "0.7906448", "0.78893286", "0.7841919", "0.78195333", "0.7798217", "0.77733254", "0.77685624", "0.7750177", "0.7709069", "0.7709069", "0.7685746", "0.76755494", "0.7674881", "0.7655562", "0.7623275", "0.76090807", "0.76048875", "0.7596426", "0.7592537", "0.7592537", "0.7592537", "0.75652254", "0.7556799", "0.75147784", "0.75147784", "0.75147784", "0.75147784", "0.75147784", "0.75147784", "0.7513561", "0.75079006", "0.75020564", "0.7491384", "0.7465802", "0.74387693", "0.74373126", "0.74346733", "0.7391472", "0.7391472", "0.738951", "0.73871225", "0.7368799", "0.7368799", "0.7368799", "0.735732", "0.73518294", "0.7350348", "0.7328213", "0.7298329", "0.727983", "0.7265862", "0.72606456", "0.725598", "0.72306746", "0.7225923", "0.7213841", "0.71994674", "0.7197227", "0.7192483", "0.71901006", "0.718303", "0.71612805", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746", "0.71573746" ]
0.71972483
67
Create the model in the database.
public static function create(array $attributes = []) { $model = new static($attributes); $model->setIncrementing(false)->save(); return $model; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function createModel()\n {\n $this->call('make:model', array_filter([\n 'name' => $this->getNameInput(),\n '--factory' => $this->option('factory'),\n '--migration' => $this->option('migration'),\n ]));\n }", "public function createModel()\n {\n }", "protected function createModel()\n {\n $model = $this->info['model'];\n\n $modelName = basename(str_replace('\\\\', '/', $model));\n\n // make it singular\n $modelName = Str::singular($modelName);\n\n $this->info['modelName'] = $modelName;\n\n $modelOptions = [\n 'model' => $this->info['model'],\n '--module' => $this->moduleName,\n ];\n $options = $this->setOptions([\n 'index',\n 'unique',\n 'data',\n 'uploads',\n 'float',\n 'bool',\n 'int',\n 'data',\n 'parent'\n ]);\n\n $this->call('engez:model', array_merge($modelOptions, $options));\n }", "public function createModel()\n\t{\n\t\treturn $this->getModelConfiguration()->createModel();\n\t}", "private function create()\n {\n if ($this->isRequired()) {\n $db = Database::getDatabaseConnection();\n $db->exec($this->getDropQuery());\n $db->exec($this->getCreateQuery());\n $this->populate($db);\n }\n }", "public function create(Model $model);", "public function create(): Model;", "protected function createModel()\n {\n $this->call('wizard:model', [\n 'name' => $this->argument('name'),\n ]);\n }", "public function model() {\n require_once \"../app/models/model.php\";\n $this->model = new Model($this->db);\n }", "private function createDatabase()\n {\n // get entity manager\n $em = $this->modelManager;\n\n // get our schema tool\n $tool = new SchemaTool( $em );\n\n // ...\n $classes = array_map(\n function( $model ) use ( $em ) {\n return $em->getClassMetadata( $model );\n },\n $this->models\n );\n\n // remove them\n $tool->createSchema( $classes );\n }", "public function run()\n {\n //\n\t\tfactory(App\\Models\\KModel::class,5)->create();\n }", "private function make_db() {\n ee()->load->dbforge();\n $fields = array(\n 'id' => array('type' => 'varchar', 'constraint' => '32'),\n 'access' => array('type' => 'integer', 'constraint' => '10', 'unsigned' => true),\n 'data' => array('type' => 'text')\n );\n ee()->dbforge->add_field($fields);\n ee()->dbforge->add_key('id', true);\n ee()->dbforge->create_table($this->table_name);\n\n return true;\n }", "public function create($modelData);", "public function creating($model)\n\t{\n\t}", "public function createModel() {\n return null;\n }", "protected function createNew() {\n $this->db->insert($this->tableName, $this->mapToDatabase());\n $this->id = $this->db->insert_id();\n }", "protected function makeModel()\n {\n return factory(Employee::class)->create();\n }", "public function create()\n {\n return $this->modelManager->instance($this->model);\n }", "public function create() {\n\t\t$model = new $this->model_class;\n\t\t$model->status = 3;\n\t\t$model->author_id = Session::get('wildfire_user_cookie');\n\t\t$model->url = time();\n\t\tif(Request::get(\"title\")) $model->title = Request::get(\"title\");\n\t\telse $model->title = \"Enter Your Title Here\";\n\t\t$this->redirect_to(\"/admin/content/edit/\".$model->save()->id.\"/\");\n\t}", "public function run()\n {\n BudgetsModel::create(['total_budget_soles' => '0', 'total_budget_dollar' => '0','representative_id' => '1']);\n }", "public function run()\n {\n HouseTypeModel::create(['name' => 'Villa']);\n HouseTypeModel::create(['name' => 'Flat']);\n HouseTypeModel::create(['name' => 'Twin House']);\n \n }", "public function run()\n {\n \t\tDB::table('models')->insert($models);\n }", "public function run()\n {\n $this->cleanDatabase();\n\n factory(User::class, 50)->create();\n factory(Document::class, 30)->create();\n }", "public function create()\n {\n //\n// $this->store();\n\n }", "public function setupModel() {\n\t\tswitch ($this->dbType()) {\n\t\tcase self::DB_TYPE_MYSQL: default:\n\t\t\ttry {\n\t\t\t\t$theSql = $this->getTableDefSql(self::TABLE_Permissions);\n\t\t\t\t$this->execDML($theSql);\n\t\t\t\t$this->debugLog($this->getRes('install/msg_create_table_x_success/'.$this->tnPermissions));\n\t\t\t} catch (PDOException $pdoe){\n\t\t\t\tthrow new DbException($pdoe,$theSql);\n\t\t\t}\n\t\t\tbreak;\n\t\t}\n\t}", "public function run()\n {\n \\App\\Models\\Category::factory(10)->create();\n \\App\\Models\\Country::factory(10)->create();\n \\App\\Models\\User::factory(10)->create();\n \\App\\Models\\Opportunity::factory(10)->create();\n \\App\\Models\\OpportunityDetail::factory(10)->create();\n \n \\App\\Models\\Question::factory(10)->create();\n \\App\\Models\\Comment::factory(10)->create();\n \n }", "public function create($data) : Model\n {\n return $this->getModel()->create($data);\n }", "public function createModel(PayModel $model);", "protected function makeModel()\n {\n new MakeModel($this, $this->files);\n }", "private function createModel()\n {\n $class = get_class($this->data);\n\n $this->name = strtolower(class_basename($class));\n\n $result = $this->callEvent($class, [$class => $this->data]);\n\n if ($result instanceof $this->data) {\n $this->data = $result;\n }\n\n $this->makePaginator();\n }", "function create()\n {\n $this->_getConnection();\n $this->preSave();\n $req = 'INSERT INTO `'.$this->_con->pfx.$this->_table.'` SET'.\"\\n\";\n $fields = array();\n $assoc = array();\n foreach ($this->_cols as $col=>$val) {\n $field = new $val['type']();\n if ($col == 'id') {\n continue;\n } elseif ($field->type == 'manytomany') {\n // If is a defined array, we need to associate.\n if (is_array($this->$col)) {\n $assoc[$val['model']] = $this->$col;\n }\n continue;\n }\n $fields[] = '`'.$col.'` = \\''.$this->_con->esc($this->$col).'\\'';\n }\n $req .= implode(','.\"\\n\", $fields);\n if (!$this->_con->execute($req)) {\n throw new Exception($this->_con->error());\n }\n if (false === ($id=$this->_con->getLastID())) {\n throw new Exception($this->_con->error());\n }\n $this->_data['id'] = $id;\n foreach ($assoc as $model=>$ids) {\n $this->batchAssoc($model, $ids);\n }\n return true;\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n ModelHasRole::truncate();\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n\n $model=new ModelHasRole;\n $model->role_id ='1';\n $model->model_type ='App\\User';\n $model->model_id ='1';\n $model->save();\n }", "public function run()\n {\n // DB::table('employee')->insert([\n // 'employee_name' => Str::random(10),\n // 'employee_email' => Str::random(10).'@gmail.com',\n // ]);\n\n\n\n\t factory(App\\employee_model::class, 100000)->create();\n\n\n }", "public function create()\n {\n //\n }", "public function create()\n {\n //\n }", "public function create()\n {\n //\n }", "public function create()\n {\n //\n }", "public function run()\n {\n $this->save('Lino', 'Banfi', 1936);\n $this->save('Alberto', 'Sordi', 1920);\n $this->save('Diego', 'Abatantuono', 1955);\n factory(Actor::class, 100)->create();\n }", "public function run()\n {\n \\App\\Models\\User::factory(5)->create();\n Category::factory(5)-> create();\n Address::factory(5)-> create();\n Ad::factory(15)-> create();\n }", "private function createModel($table){\n\n // Filtering file name\n $fileName = $this::cleanToName($table[\"name\"]) . '.php';\n \n // Prepare the Class scheme inside the model\n $contents = '<?php echo \"Hello World\"; ?>';\n\n // Return a boolean to process completed\n return Storage::disk('models')->put($this->appNamePath.'/'.$fileName, $contents);\n\n }", "public function createDatabase()\n {\n /** @var \\Shopware\\Components\\Model\\ModelManager $em */\n $em = $this->get('models');\n $tool = new \\Doctrine\\ORM\\Tools\\SchemaTool($em);\n\n $classes = [\n $em->getClassMetadata('Shopware\\CustomModels\\CustomSort\\ArticleSort'),\n ];\n\n try {\n $tool->createSchema($classes);\n } catch (\\Doctrine\\ORM\\Tools\\ToolsException $e) {\n //\n }\n }", "protected function createDatabaseStructure() {}", "public function create()\n {\n parent::create();\n\n $sheet = $this->add_sheet();\n\n $this->add_table($sheet, $this->database, $this->generate_table());\n }", "public function create() {\n\t\t$columns = implode(', ', array_keys($this->params));\n\t\t$bindings = substr(str_repeat(', ?', count($this->params)), 2);\n\t\t$sql = 'INSERT INTO ' . static::$table . ' (' . $columns . ') VALUES (' . $bindings . ');';\n\t\t$query = DBH()->prepare($sql);\n\t\t$query->execute(array_values($this->params));\n\t}", "public function create() {\n //\n }", "public function create()\n {\n //este deriva a un formulario, el cual debe tomar todos\n //los parametros del bache (nombre, fecha_y_hora, ubicacion, object_state_id (recuperarlo y pasarlo), estado(mostrar opciones y tomar el elegido)) y luego de todo esto llama a store para ser almacenado en la base de datos\n\n }", "public function createModel()\n\t{\n\t\t$class = '\\\\'.ltrim($this->model, '\\\\');\n\t\treturn new $class;\n\t}", "public function create_a_record()\n {\n // Add a record\n factory(Email::class, 1)->create();\n\n $this->assertCount(1, Email::all());\n }", "public function create()\n {\n // I skip using this create function because I use a modal form for inserting data using modal in index view via index function.\n }", "public function run()\n {\n factory(App\\bread_model_class::class, 20)->create();\n }", "function create($model)\n {\n }", "public function create_record() {\n $class = get_called_class();\n\n if ($this->does_exist()) {\n return false;\n }\n\n $db = DB::connect();\n\n $attributes = '';\n $values = '';\n\n // Loop through all the attributes to get the attributes and values\n foreach (get_object_vars($this) as $key => $value) {\n // We dont add the id of the object, as it is autoincremented\n if ($value == null) {\n continue;\n }\n\n $attributes = $attributes . \" $key,\";\n\n // We cannot add an object to sql statemnt. if the value is an object, get the id of it\n if (gettype($value) == 'object') {\n $value = $value->id;\n } elseif (gettype($value) === 'string') {\n $value = \"'\" . $value . \"'\";\n }\n\n $values = $values . \" $value,\";\n\n }\n\n // Delete the last comma\n $attributes = substr_replace($attributes, \" \", -1);\n $values = substr_replace($values, \" \", -1);\n\n $sql = $db->prepare(\"INSERT INTO \" . $class . \" (\" . $attributes . \") VALUES (\" . $values . \")\");\n $sql->execute();\n\n return true;\n }", "public function create()\n {\n //TODO\n }", "public function run()\n {\n \\App\\Models\\Location::factory(5)->create();\n \\App\\Models\\University::factory(5)->create();\n \\App\\Models\\Major::factory(10)->create();\n \\App\\Models\\Alternative::factory(10)->create(); \n }", "public function create() {\n\t\t\t//\n\t\t}", "public function run()\n {\n Model::unguard();\n\n factory(ProductCategory::class, 3)->create();\n factory(SubProduct::class, 3)->create();\n\n }", "public function create()\n\t\t{\n\t\t\t//\n\t\t}", "public function create()\n\t\t{\n\t\t\t//\n\t\t}", "public function create()\n {\n }", "public function create()\n {\n }", "public function create()\n\t{\n\t\treturn $this->_adapter->createTable($this->_identifier, $this->_info, $this->_options);\n\t}", "public function run()\n {\n factory(Brackets\\AdminAuth\\Models\\AdminUser::class, 10)->create();\n factory(App\\Models\\Brand::class, 50)->create();\n factory(App\\Models\\Product::class, 100)->create();\n }", "function createModel($name, array $conf);", "public function createModel()\n {\n return \\Model::factory(Group::class)->create();\n }", "public function create()\n {}", "public function run()\n {\n factory(Manufacturer::class, DatabaseSeeder::AMOUNT['DEFAULT'])->create();\n }", "public function create()\n {\n \n //\n }", "public function run()\n {\n tbl_company::create([\n 'name' => 'company',\n 'email' => '[email protected]',\n 'phone' =>'09-111111111',\n 'address'=>'yangon',\n 'ref_initials'=>'ADM',\n ]);\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n Supplier::factory(100)->create();\n ProductType::create(['name' => 'default']);\n Product::factory(100)->create();\n Order::factory(200)->create();\n Purchase::factory(200)->create();\n ItemListing::factory(500)->create();\n }", "public function run()\n {\n factory(Manteau::class, 1)->create()->each(function ($manteau) {\n $manteau->save();\n });\n }", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function run()\n {\n\t\tfactory(App\\Model\\Movie::class, 50)->create();\n }", "static function Create() \n\t{\n if (NULL == self::$userModel) {\n self::$userModel = new UserModel();\n }\n return self::$userModel;\n }", "public function create()\n {\n //\n }", "public function create()\n {\n //\n\t\t\n }", "public function run()\n {\n factory(App\\UserModel::class, 13)->create()->each(function ($u) {\n $u->employee()->save(factory(App\\Employee::class)->make());\n });\n }", "public function run()\n {\n \\App\\Models\\User::factory(1)->create();\n\n \\App\\Models\\Customer::factory(10)->create();\n \\App\\Models\\Supplier::factory(10)->create();\n\n foreach ($this->measurements as $measurement)\n {\n \\App\\Models\\Measurement::create($measurement);\n }\n foreach ($this->products as $product)\n {\n \\App\\Models\\Product::create($product);\n }\n }", "public function create()\n {\n\n \n \n }", "public function create()\r\n {\r\n \r\n }", "public function creating(Model $model): void\n {\n $model->setAttribute($model->getKeyName(), Uuid::uuid4());\n }", "public function create()\n\t{\n\t\t\n\t\t//\n\t}", "public function run()\n {\n $vehicleMake = new VehicleMake();\n $vehicleMake->name = 'Dodge';\n $vehicleMake->save();\n $vehicleMake = new VehicleMake();\n $vehicleMake->name = 'Toyota';\n $vehicleMake->save();\n }", "public function create()\n {\n //\n \n }", "public function run()\n {\n $this->clearDatabase();\n factory(Lesson::class, 60)->create();\n factory(Tag::class, 60)->create();\n factory(LessonTag::class, 30)->create();\n factory(User::class, 1)->create();\n }", "protected function create() {\n $this->db->insertRow($this->table_name, $this->update);\n storeDbMsg($this->db,\"New \" . $this->form_ID . \" successfully created!\");\n }", "public function create()\n\t{\n\t\t//\n\n\t\t\n\n\t}", "public function run()\n {\n \\App\\Models\\Batiment::factory(1)->create();\n \\App\\Models\\Formation::factory(6)->create();\n \\App\\Models\\Typeformation::factory(10)->create();\n \\App\\Models\\Eleve::factory(50)->create();\n }", "public function create() {\r\n //\r\n }", "public function create($data)\n\t{\n\t\t$model = $this->model->create($data);\n\n\t\treturn $model;\n\t}", "public function run()\n {\n \\App\\ClassModel::create([\n \"class\" => '1'\n ]);\n\n \n User::create([\n \"class_id\" => 1,\n \"nis\" => '2103191001',\n \"school\" => 'smkn 1 sby',\n \"name\" => 'rizky putra ramadan',\n \"class_code\" => 'A',\n \"img\" => '',\n \"email\" => '[email protected]',\n \"age\" => '18',\n \"address\" => 'perum taman sidorejo n 18',\n \"gender\" => 'l',\n \"password\" => bcrypt('123456'),\n \"api_token\" => bcrypt('[email protected]'),\n ]);\n\n\n }" ]
[ "0.75028384", "0.73765373", "0.7356433", "0.7300028", "0.7273249", "0.71556956", "0.7092834", "0.6936727", "0.687057", "0.67442924", "0.6715221", "0.6711533", "0.6658346", "0.6653956", "0.66530025", "0.6641033", "0.6615102", "0.66089195", "0.65785074", "0.6577915", "0.65736187", "0.6565954", "0.6550933", "0.65484077", "0.65267026", "0.6491741", "0.6483987", "0.64750373", "0.64736366", "0.64718163", "0.64554393", "0.64522415", "0.6437909", "0.64350265", "0.64350265", "0.64350265", "0.64350265", "0.6428827", "0.6428586", "0.6428467", "0.6427767", "0.6426524", "0.6416126", "0.64149964", "0.64134806", "0.6409802", "0.63912624", "0.638133", "0.63763577", "0.6358017", "0.6342668", "0.63366073", "0.6335429", "0.63324296", "0.6332344", "0.63320726", "0.63315135", "0.63315135", "0.6330174", "0.6330174", "0.63152635", "0.6314727", "0.631392", "0.6311293", "0.6309987", "0.6308632", "0.63082165", "0.6307531", "0.63055426", "0.62935394", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.6291431", "0.62839174", "0.62836814", "0.62803763", "0.62752396", "0.62713015", "0.62702554", "0.62693995", "0.62623894", "0.6255498", "0.62548345", "0.62545294", "0.6254275", "0.6249512", "0.62441057", "0.62390894", "0.623872", "0.62251955", "0.62168473", "0.6216058" ]
0.0
-1
Custom accessor for the model's id.
public function getIdAttribute($value) { // If we don't have a value for 'id', we will use the Cassandra '_id' value. // This allows us to work with models in a more sql-like way. if (!$value and array_key_exists('_id', $this->attributes)) { $value = $this->attributes['_id']; } return $value; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_id() {\n return $this->get_mapped_property('id');\n }", "public function id()\n {\n return $this->identity['modelId'];\n }", "public function getID()\n { return $this->get('id'); }", "function get_id()\n {\n return $this->id;\n }", "function get_id() {\n\t\treturn $this->id;\n\t}", "function get_id() {\n\t\treturn $this->id;\n\n\t}", "function get_id()\r\n {\r\n return $this->id;\r\n }", "public function get_id();", "public function get_id();", "function get_id() {\n return $this->id;\n }", "public function get_id() {\n return $this->id;\n }", "public function get_id() {\n return $this->id;\n }", "public function get_id() {\n return $this->id;\n }", "protected function getId()\n {\n return $this->id;\n }", "public function getId(): mixed;", "function id() {\n $function = 'get' . get_class($this) . 'Id';\n return $this->$function();\n }", "public function get_id()\n {\n return $this->id;\n }", "public function get_id()\n {\n return $this->id;\n }", "public function get_id()\n {\n return $this->id;\n }", "public function id()\n\t{\n\t\treturn $this->get($this->meta()->primary_key);\n\t}", "function getId() {\n\t\treturn $this->getData('id');\n\t}", "function getId() {\n\t\treturn $this->getData('id');\n\t}", "function get_id()\n\t{\n\t\treturn $this->id;\n\t}", "public function getId()\n { // getter ID\n return $this->id;\n }", "public function getIdProperty();", "public function get_id () {\r\n\t\treturn $this->id;\r\n\t}", "protected function getID() {\n return $this->id;\n }", "public function getId() ;", "public function get_id() {\r\n\t\treturn ($this->id);\r\n\t}", "public function get_id() {\r\n\t\treturn ($this->id);\r\n\t}", "public function get_id(){\n return $this->id;\n }", "public function get_id() {\n\t\treturn $this->id;\n\t}", "public function get_id() {\n\t\treturn $this->id;\n\t}", "public function get_id() {\n\t\treturn $this->id;\n\t}", "public function get_id() {\n\t\treturn $this->id;\n\t}", "function get_id(){\n return $this -> id;\n }", "function get_id(){\n return $this -> id;\n }", "function getID() {\n return $this->id;\n }", "function getID() {\n return $this->id;\n }", "public function get_id(){\n\t\treturn $this->id;\n\t}", "public function getId() {}", "public function getId() {}", "public function getId()\n {\n return $this->getValue('id');\n }", "public function getId()\n {\n return $this -> id;\n }", "function getID() {\n\t\treturn $this->id;\n\t}", "public function getID();", "public function getID();", "public function getID();", "function getId() {\n\t\treturn $this->id;\n\t}", "public function getId ()\n {\n return $this->id;\n }", "public function getId()\n {\n return $this->__get(\"id\");\n }", "public function getId()\n {\n return $this->__get(\"id\");\n }", "public function getId()\n {\n return $this->__get(\"id\");\n }", "public function get_id() {\n return $this->id;\n }", "public function id() {\n return $this->id;\n }", "function get_id() {\n\t\treturn $this->get_data( 'id' );\n\t}", "public function getId()\n {\n return $this->id->getId();\n }", "public function id()\n {\n return $this->id;\n }", "public function id()\n {\n return $this->id;\n }", "public function id()\n {\n return $this->id;\n }", "public function id()\n {\n return $this->id;\n }", "public function id() {\n return $this->entity->id();\n }", "function getId(){\n\t\t\treturn $this->$id;\n\t\t}", "function getId()\n {\n return $this->id;\n }", "function getId()\n {\n return $this->id;\n }", "function getId()\n {\n return $this->id;\n }", "function getId() {\n return $this->id;\n }", "function getId() {\n return $this->id;\n }", "public function getID() {\n return $this->id;\n }", "public function getId() {\n return $this->id;\n }", "public function getId() {\n return $this->id;\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getId()\n {\n return $this->get(self::_ID);\n }", "public function getid()\n {\n return $this->id;\n }", "public function getid()\n {\n return $this->id;\n }", "function getId() {\n return $this->id;\n }", "public function getId()\n { return $this->getAttribute('id'); }", "public function getId() {\n return @$this->attributes['id'];\n }", "public function getId() {\n return @$this->attributes['id'];\n }", "public function getId()\n {\n return $this->id;\n }", "public function getId()\n {\n return $this->id;\n }", "public function getId()\n {\n return $this->id;\n }", "public function get_id()\n {\n return $this->_id;\n }", "public function get_id() {\n\n\t\treturn $this->id;\n\t}" ]
[ "0.8053578", "0.79505634", "0.7894473", "0.7810139", "0.78074324", "0.77630454", "0.77574366", "0.77447784", "0.77447784", "0.77375656", "0.7731761", "0.7731761", "0.7731761", "0.7713473", "0.7705437", "0.77017826", "0.76997644", "0.76997644", "0.76997644", "0.7691832", "0.76875526", "0.76875526", "0.7686729", "0.76772183", "0.7664646", "0.7638397", "0.7631012", "0.7616116", "0.7603868", "0.7603868", "0.76030165", "0.7596106", "0.7596106", "0.7596106", "0.7596106", "0.7587573", "0.7587573", "0.7583378", "0.7583378", "0.7581149", "0.7573398", "0.7573398", "0.7571575", "0.7565957", "0.75573045", "0.755287", "0.755287", "0.755287", "0.754337", "0.75391465", "0.7538814", "0.7538814", "0.7538814", "0.7534535", "0.7532643", "0.753111", "0.7526973", "0.75198853", "0.75198853", "0.75198853", "0.75198853", "0.7518604", "0.75149524", "0.7510539", "0.7510539", "0.7510539", "0.75024337", "0.75024337", "0.74922293", "0.7490758", "0.7490758", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7490424", "0.7489156", "0.7489156", "0.7489156", "0.7489156", "0.7488221", "0.7488221", "0.74881953", "0.74857384", "0.7484722", "0.7484722", "0.74832904", "0.74832904", "0.74832904", "0.74789995", "0.7478955" ]
0.0
-1
Get the table qualified key name.
public function getQualifiedKeyName() { return $this->getKeyName(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getQualifiedKeyName()\n {\n return $this->getTable().'.'.$this->getKeyName();\n }", "public function getTableKeyName()\n\t{\n\t\treturn \"id\".$this->getTableName();\n\t}", "public function getTableKeyName()\r\n\t{\r\n\t\treturn \"id\".$this->getTableName();\r\n\t}", "public function getQualifiedKeyName();", "public function getKeyName();", "public function getKeyName();", "public function getKeyName();", "public function getKeyName()\n {\n return $this->keyName ?: 'id';\n }", "public function getKeyName()\n {\n return $this->keyName ?: 'id';\n }", "public function getKeyName()\n {\n return isset($this->primaryKey) ? $this->primaryKey : static::$defaultPrimaryKey;\n }", "protected function associated_key()\n {\n return $this->model->table() . '.' . $this->model->key();\n }", "public function getKeyField()\n {\n $class = get_class($this);\n $parts = explode('\\\\', $class);\n $name = $parts[count($parts)-1];\n return strtolower($name) . '_id';\n }", "protected abstract function getKeyName();", "public function getKeyName(): string\n {\n return 'id';\n }", "public function getQualifiedFirstKeyName()\n {\n return $this->throughChild->qualifyColumn($this->firstKey);\n }", "protected function getPrimaryKeyName(): string\n {\n return $this->query->getModel()->getKeyName();\n }", "public function getKeyName()\n {\n return $this->primaryKey;\n }", "public function getKeyName()\n {\n return $this->primaryKey;\n }", "public function getQualifiedFarKeyName()\n {\n return $this->getQualifiedForeignKeyName();\n }", "public function getQualifiedParentKeyName()\n {\n return $this->parent->qualifyColumn($this->localKey);\n }", "private function getTableCacheKey(){\n return $this->dataCacheKeyPrefix .'.' . strtoupper($this->table);\n }", "public function getModelKeyName()\n {\n // Create an instance of the model to get primary key name\n // I couldn't find a better solution \n $model = $this->getModel();\n $model = new $model;\n return $model->getKeyName();\n }", "public function qualifyKey(string $key){\n\t\treturn $this->getTable().'.'.$key;\n\t}", "protected function getPrimaryKeyColumnName()\n {\n return ColumnKeys::PATH;\n }", "public function getForeignKey()\n {\n $keyName = $this->getKeyName();\n\n if ($keyName[0] != '_') {\n $keyName = '_' . $keyName;\n }\n\n return Str::snake(class_basename($this)) . $keyName;\n }", "public function get_key ()\n {\n $_key = $this->key;\n\n if ( ! empty( $_key ) && is_array( $_key ) )\n {\n $_key = join( ':', $_key );\n }\n\n return sanitise_key( $_key );\n }", "public static function keyPrefix()\n {\n return Inflector::camel2id(StringHelper::basename(get_called_class()), '_');\n }", "public function getKeyName()\n {\n return 'uuid';\n }", "public function getSearchKeyName(): string\n {\n return $this->getKeyName();\n }", "public function getQualifiedFirstLocalKeyName(): string\n {\n return $this->through_parents->last()->getQualifiedKeyName();\n }", "protected function primaryKeyName($table) {\n $table = $this->connection->prefixTables('{' . $table . '}');\n return $this->connection->query('SELECT name FROM sys.key_constraints WHERE parent_object_id = OBJECT_ID(:table) AND type = :type', [\n ':table' => $table,\n ':type' => 'PK',\n ])->fetchField();\n }", "public function getKeyName()\n {\n if (!$this->primaryKey) {\n if ($key = $this->getPrimaryFromFields()) {\n $this->primaryKey = $key;\n } else {\n $this->primaryKey = 'id';\n }\n }\n\n return $this->primaryKey;\n }", "public function getKey()\n {\n return $this->__key;\n }", "public function getKey()\n {\n return $this->__get(\"key\");\n }", "function getKeyName() {\n\t\treturn (string)$this->keypair->keyName;\n\t}", "public static function primaryKey() {\n return (new static)->getKeyName();\n }", "abstract public static function get_column_key(): string;", "protected abstract function getPrimaryKeyName();", "protected function getLookupTableKey()\n\t{\n\t\t$key = $this->getValueObject()->getKey();\n\t\t$name = $this->getName();\n\n\t\tif($key != '' && $name != '')\n\t\t{\n\t\t\treturn md5($this->getValueObject()->getKey() . $this->getName());\n\t\t}\n\n\t\tthrow new \\RedisTools\\Exception(\"Could not generate key for lookup table because key '$key' and/or name '$name' are empty.\");\n\t}", "public function getLocalKeyName()\n {\n return $this->localKey;\n }", "public function getKey()\n {\n return $this->getAttribute($this->getKeyName());\n }", "public function getKey()\n {\n return $this->getAttribute($this->getKeyName());\n }", "public function getRouteKeyName()\n {\n return $this->getKeyName();\n }", "public static function getNameKey()\n {\n return self::getRepo()->getNameKey();\n }", "public function getKey(): string\n {\n return $this->key;\n }", "public function getIdentifier() : string {\r\n return $this->table;\r\n }", "private function userKeyName()\n {\n $userModel = config('follow.user');\n\n return (new $userModel)->getKeyName();\n }", "public function getOtherKey()\n {\n return $this->table . '.' . $this->otherKey;\n }", "public function getKey()\n {\n return isset($this->key) ? $this->key : '';\n }", "public function getKey()\n {\n return isset($this->key) ? $this->key : '';\n }", "public function getKey(): string\n {\n return $this->resque->getKey(self::KEY . $this->statistic);\n }", "public function getTableName(): string\n {\n return $this->tableNames[0];\n }", "public function getKey() {\n return sprintf('%d:%d', $this->row, $this->column);\n }", "public function getForeignKey()\n {\n return $this->getTableSingular().'_'.$this->getKeyName();\n }", "public function getKey() {\n\t\treturn $this -> key;\n\t}", "protected function getTableName(): string {\n return self::TABLE_NAME;\n }", "public function getForeignPartitionKeyName()\n {\n return $this->foreignKey[0];\n }", "public function getKey()\n {\n return $this->getInternalKey();\n }", "public static function tablename() {\n return self::TABLE;\n }", "protected function getTableName () {\n $class = explode('\\\\', get_class($this));\n\n return strtolower(end($class));\n }", "protected function getKeyTableConstraintNameKeyword()\n\t{\n\t\t$constraint = $this->getConstraint();\n\n\t\tif ($constraint instanceof PrimaryKeyTableConstraint)\n\t\t{\n\t\t\t$table = $this->getTable();\n\t\t\tforeach ($constraint->getColumns() as $column)\n\t\t\t{\n\t\t\t\tif (!($column instanceof ColumnDescriptionInterface))\n\t\t\t\t\t$column = $table->getColumns()->get($column);\n\t\t\t\tif ($column->has(K::COLUMN_FLAGS))\n\t\t\t\t{\n\t\t\t\t\tif ($column->get(K::COLUMN_FLAGS) &\n\t\t\t\t\t\tK::COLUMN_FLAG_AUTO_INCREMENT)\n\t\t\t\t\t\treturn 'unique';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn parent::getKeyTableConstraintNameKeyword();\n\t}", "public function getKey()\n {\n return $this->get(self::KEY);\n }", "public function getKey()\n {\n return $this->get(self::KEY);\n }", "protected function _getKeyClassName() {}", "protected function _getKeyClassName() {}", "public function key()\n\t{\n\t\treturn $this->datasource->key();\n\t}", "private static function getFullyQualifiedTableName() {\n $database_name = static::getDatabaseName();\n $table_name = static::getTableName();\n return static::genFullyQualifiedTableName($database_name, $table_name);\n }", "public function getKey() : string\n {\n return $this->key;\n }", "public function getQualifiedOwnerKeyName()\n {\n return $this->related->qualifyColumn($this->ownerKey);\n }", "public static function getTableName()\n {\n return _DB_PREFIX_ . self::$definition['table'];\n }", "public function getTableName() {\n\t\treturn $this -> _name;\n\t}", "public function getKey()\n {\n return $this->getId();\n }", "public function getKey()\n {\n if (is_null($this->key)) {\n /** @psalm-var ?string $data */\n $data = $this->raw(self::FIELD_KEY);\n if (is_null($data)) {\n return null;\n }\n $this->key = (string) $data;\n }\n\n return $this->key;\n }", "public function getKey()\n {\n if (is_null($this->key)) {\n /** @psalm-var ?string $data */\n $data = $this->raw(self::FIELD_KEY);\n if (is_null($data)) {\n return null;\n }\n $this->key = (string) $data;\n }\n\n return $this->key;\n }", "public function getKey()\n {\n if (is_null($this->key)) {\n /** @psalm-var ?string $data */\n $data = $this->raw(self::FIELD_KEY);\n if (is_null($data)) {\n return null;\n }\n $this->key = (string) $data;\n }\n\n return $this->key;\n }", "public function getKey()\n {\n return $this->id;\n }", "public function getQualifiedForeignKeyName(): string\n {\n return $this->related->getQualifiedKeyName();\n }", "public function getExistenceCompareKey()\n {\n return $this->getQualifiedForeignKeyName();\n }", "protected function getTableName()\n {\n return $this->database->getPrefix() . $this->table;\n }", "public function getTableName()\n {\n return $this->__get(\"table_name\");\n }", "public function getKey()\n {\n return $this->object->getKey();\n }", "public function getKey()\n {\n return $this->object->getKey();\n }", "public function getKey(): string;", "public function getKey(): string;", "protected function getKey()\n {\n return self::$lockPrefix . $this->name;\n }", "public static function getPkColumnName()\n {\n $modelClass = self::getClass();\n\n return implode('__', $modelClass::getScheme()->getPkColumnNames());\n }", "public function getScoutKey()\n {\n return $this->getKey();\n }", "public function getTableName() : string\n {\n if ($this->tableName !== null) {\n return $this->tableName;\n }\n\n return $this->reflectionClass->getShortName();\n }", "protected function userKeyName()\n {\n $userModel = config('blockable.user');\n\n return (new $userModel)->getKeyName();\n }", "protected function getInstanceIdentifierName(): string\n\t{\n\t\treturn (string) $this->getKeyName();\n\t}", "private function getPropertyName(): string\n {\n $name = $this->foreignKey->getLocalTableName();\n if ($this->hasLocalUniqueIndex()) {\n $name = TDBMDaoGenerator::toSingular($name);\n }\n return TDBMDaoGenerator::toCamelCase($name);\n }", "public function table_name ()\n {\n return $this->app->table_names->entries;\n }", "public function getTableName()\n\t{\n\t\treturn $this->getPrefix().$this->tableName;\n\t}", "public function get_table_name()\n {\n return $this->prefix . $this->table;\n }", "public function key(): string\n {\n return parent::key().':'.$this->tag();\n }", "public function getTableName() {\n return $this->mapping['table'];\n }", "final public function key(): string\n {\n $this->sort();\n\n return (string) key($this->index);\n }", "public function getKey(): string\n {\n if ($this->key) {\n return $this->key;\n }\n\n // If the user has set a custom key.\n if ($this->config->has('key')) {\n $key = Key::validate($this->config->get('key'), 'field');\n\n $this->key = $key;\n\n return $key;\n }\n\n // For fields which doesn't require name attribute use label instead.\n if (\n !$this->config->has('name') &&\n in_array($this->getType(), ['accordion', 'message', 'tab'])\n ) {\n $key = $this->config->get('label');\n } else {\n $key = $this->config->get('name');\n }\n\n $key = sprintf('%s_%s', $this->parentKey, Key::sanitize($key));\n\n $this->key = $key;\n\n return $key;\n }", "public function generateCacheKey()\n {\n $key = array(\n 'connection' => $this->connection->info()['name'],\n 'wheres' => $this->wheres,\n 'columns' => $this->columns,\n 'groups' => $this->groups,\n 'orders' => $this->orders,\n 'offset' => $this->offset,\n 'limit' => $this->limit,\n 'aggregate' => $this->aggregate,\n );\n\n return md5(serialize(array_values($key)));\n }", "public function getKey()\n {\n return $this->key;\n }" ]
[ "0.82437223", "0.7845539", "0.78281224", "0.75498474", "0.749619", "0.749619", "0.749619", "0.7448933", "0.7448933", "0.7405522", "0.7359289", "0.72581494", "0.7206322", "0.720019", "0.7191427", "0.717617", "0.7169424", "0.7169424", "0.71456957", "0.7088998", "0.7030091", "0.6999792", "0.69947696", "0.699139", "0.69887877", "0.6973382", "0.69563663", "0.6955599", "0.6954964", "0.69416547", "0.6886813", "0.6851945", "0.6845329", "0.6836412", "0.6820561", "0.6819564", "0.67883337", "0.6783843", "0.67819804", "0.6777555", "0.6765954", "0.6765954", "0.6762271", "0.67598486", "0.67482895", "0.6730726", "0.67262435", "0.67201656", "0.67153823", "0.67153823", "0.6709546", "0.6699185", "0.6698935", "0.6652897", "0.66436636", "0.6641285", "0.6637945", "0.6634479", "0.663136", "0.6612988", "0.66126615", "0.6604741", "0.6604741", "0.65789723", "0.65789723", "0.6571023", "0.6568063", "0.65622216", "0.6558076", "0.65559596", "0.6555582", "0.6545523", "0.6545148", "0.6545148", "0.6545148", "0.6536147", "0.6535494", "0.65354455", "0.6530097", "0.6524807", "0.6500725", "0.6500725", "0.6498664", "0.6498664", "0.6480449", "0.6475891", "0.64756936", "0.6472477", "0.6468505", "0.6468487", "0.64660454", "0.64651394", "0.64632857", "0.6462145", "0.64567226", "0.6455731", "0.6455375", "0.64506316", "0.64488876", "0.6447826" ]
0.8038287
1
Get the format for database stored dates.
public function getDateFormat() { return $this->dateFormat ?: 'Y-m-d H:i:s'; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function dateFormatDatabase()\n {\n return $this->dateFormat('mysql');\n }", "public function getUsingFormatDefault(){\n\t\t$config = CoreConfig::readAppConfig();\n\t\t$format = strtolower($config->application->dbdate);\n\t\t$dateFormat = new DateFormat($format, $this);\n\t\treturn $dateFormat->getDate();\n\t}", "public static function checkfront_date_format() {\n return (string)static::config()->get('checkfront_date_format');\n }", "public function getDateFormat()\n {\n return $this->dateFormats;\n }", "public function getMySQLFormat()\r\n\t{\r\n\t\treturn $this->format('Y-m-d');\r\n\t}", "protected function getStorageFormat()\n {\n return \\Gems_Tracker::DB_DATETIME_FORMAT;\n }", "public static function getDateFormats()\n {\n return array( 'm/d/y' => 'mm/dd/yy', 'd/m/y' => 'dd/mm/yy' );\n }", "public function getDateFormat()\n\t{\n\t\treturn $this->date_format;\n\t}", "public function getDateFormatter();", "private function format()\n {\n return config('app.locale') != 'en' ? 'd/m/Y' : 'm/d/Y';\n }", "public function getDateFormat()\n\t{\n\t\treturn isset($this->config['date-format']) ? $this->config['date-format'] : NULL;\n\t}", "function getDefaultFormat() {\n return MYSQL_DATETIME_FORMAT;\n }", "public function getDateFormat()\n\t{\n\t\treturn $this->adapter->getDateFormat();\n\t}", "public function getDateFormat()\n {\n return Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);\n }", "public function dateFormat();", "protected function getDateFormat()\n {\n return \\MUtil_Model_Bridge_FormBridge::getFixedOption('datetime', 'dateFormat');\n }", "public function dateTimeFormat();", "public function getDatetimeFormat()\n\t{\n\t\treturn $this->datetime_format;\n\t}", "protected function dateFormat($format)\n {\n return config(\"date_formats.$format\");\n }", "public function getDateFormat()\n {\n return $this->dateFormat;\n }", "public function getDateFormat()\n {\n return $this->dateFormat;\n }", "public function getDateFormat()\n {\n return $this->dateFormat;\n }", "public function getTimeDateFormat()\n {\n return $this->dateTimeFormat;\n }", "public function getDateFormatted()\n\t{\n\t\t$dateKey = self::arrayKeyExistsNc('date', $this->dimensions);\n\t\t$date = $this->dimensions[$dateKey];\n\n\t\tif ($date == '00000000') {\n\t\t\t$date = '19000101';\n\t\t}\n\n\t\t$hour = '00';\n\t\tif ($hourKey = self::arrayKeyExistsNc('hour', $this->dimensions)) {\n\t\t\t$hour = $this->dimensions[$hourKey];\n\t\t}\n\t\t$result = substr($date, 0, 4) . '-' . substr($date, 4, 2) . '-' . substr($date, 6, 2) . ' ' . $hour . ':00:00';\n\n\t\treturn $result;\n\t}", "public function getDateFormat()\n {\n return $this->decorated->getDateFormat();\n }", "public function getDefaultStringFormat()\n {\n if (null !== $this->defaultStringFormat) {\n return $this->defaultStringFormat;\n }\n\n return $this->database->getDefaultStringFormat();\n }", "public function getDateFormat()\n {\n return $this->_localeDate->getDateFormat(\\IntlDateFormatter::SHORT);\n }", "public function getDateFormat()\n {\n return $this->_localeDate->getDateFormat(\\IntlDateFormatter::SHORT);\n }", "public function getDateFormat()\n {\n return 'Y-m-d H:i:s.u0';\n }", "public function getDateFormat()\n {\n return 'Y-m-d';\n }", "public function getDateFormat()\n {\n return 'Y-m-d H:i:sP';\n }", "public function getDateFormat()\n {\n return $this->_localeDate->getDateFormatWithLongYear();\n }", "public function getDateFormat(){\n\t\t$this->_dateFormat = $date;\n\t}", "public static function dbDateFormat(string $date): string\n\t{\n\t\t$date = str_replace('/', '-', $date);\n\t\treturn strtotime($date) ?\n\t\t\tdate('Y-m-d', strtotime($date)) :\n\t\t\t'';\n\t}", "function get_date_format ()\r\n {\r\n return $_SESSION[\"date_format\"];\r\n }", "public function getDateTimeFormat()\n {\n $value = $this->_config->get('dataprocessing/general/date_time_format');\n\n if ($value === null) {\n $value = 'Y.m.d H:i:s';\n }\n\n return $value;\n }", "protected function getDateFormat()\n {\n return 'Y-m-d H:i:s';\n }", "public function delegateGetDateFormatSql(string $field, string $format) : string;", "public function getDateFormat()\n {\n return 'Y-m-d H:i:s.uO';\n }", "public function getDateFormat()\n {\n return 'Y-m-d H:i:s.uO';\n }", "public function getFormat() {}", "public function getFormat() {}", "public function getFormat() {}", "function carton_date_format() {\n\treturn apply_filters( 'carton_date_format', get_option( 'date_format' ) );\n}", "function get_short_date_format() {\n\t\tstatic $site_short_date_format = FALSE;\n\n\t\tif( !$site_short_date_format ) {\n\t\t\t$site_short_date_format = $this->getConfig( 'site_short_date_format', '%d %b %Y' );\n\t\t}\n\n\t\treturn $site_short_date_format;\n\t}", "function dayNumberFormat() {\n\t\tif (func_num_args()) {\n\t\t\t$this->_dayNumberFormat = trim(func_get_arg(0));\n\t\t}\n\t\telse return $this->_dayNumberFormat;\n\t}", "function get_long_date_format() {\n\t\tstatic $site_long_date_format = FALSE;\n\n\t\tif( !$site_long_date_format ) {\n\t\t\t$site_long_date_format = $this->getConfig( 'site_long_date_format', '%A %d of %B, %Y' );\n\t\t}\n\n\t\treturn $site_long_date_format;\n\t}", "public function toDatabase()\n {\n return $this->format(Config::get('settings.database_datetime_format'));\n }", "public function getTimeFormat()\n\t{\n\t\treturn isset($this->config['time-format']) ? $this->config['time-format'] : NULL;\n\t}", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public function getFormat();", "public static function dbDateFormat($timestamp)\n\t{\n\t\treturn strftime(\"%Y-%m-%d %H:%M:%S\",$timestamp);\n\t}", "public static function getDateFormat()\n {\n return self::$settings[0];\n }", "public function format() {\n return $this->format;\n }", "public function getFormat(): string\n {\n if ($this->format === null) {\n $this->format = self::$default_format;\n }\n return $this->format;\n }", "private function convert_date_db_format($date)\n {\n $str_date = strtotime($date);\n $db_date = date('Y-m-d', $str_date);\n return $db_date;\n }", "protected function getFormattedDate()\n\t{\n\t\t$value = $this->getValue();\n\t\t$defaultText = $this->getDefaultText();\n\t\tif(empty($value) && !empty($defaultText))\n\t\t\treturn $this->getDefaultText();\n\n\t\t$app = $this->getApplication()->getGlobalization();\n\n\t\t//initialized the default class wide formatter\n\t\tif(self::$formatter===null)\n\t\t\tself::$formatter = new DateFormat($app->getCulture());\n\n\t\t$culture = $this->getCulture();\n\n\t\t//return the specific cultural formatted date time\n\t\tif(strlen($culture) && $app->getCulture() !== $culture)\n\t\t{\n\t\t\t$formatter = new DateFormat($culture);\n\t\t\treturn $formatter->format($value,\n\t\t\t\t\t\t\t\t\t $this->getPattern(),\n\t\t\t\t\t\t\t\t\t $this->getCharset());\n\t\t}\n\t\t//return the application wide culture formatted date time.\n\t\t$result = self::$formatter->format($value,\n\t\t\t\t\t\t\t\t\t\t$this->getPattern(),\n\t\t\t\t\t\t\t\t\t\t$this->getCharset());\n\t\treturn $result;\n\t}", "public function format($format) {\n \t$spf = str_replace(array(\"d\",\"m\",\"Y\"),array(\"%3$02d\",\"%2$02d\",\"%1$04d\"),$format);\n \t\treturn sprintf($spf, $this->dt[0], $this->dt[1], $this->dt[2]);\n\t}", "public function getDateFormat(): string\n {\n return 'Y-m-d H:i:s';\n }", "public function getDateTimeFormat() {\n return Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);\n }", "public function format()\n {\n return sprintf('%d-%02d-%02d', $this->getYear(), $this->getMonth(), $this->getDay());\n }", "public static function getDateFormats() {\n $settings = self::getSettings();\n \n $dateformats = array();\n $dateformats[$settings->language] = json_decode($settings->dateformat, true);\n \n $translations = self::getTranslations();\n foreach($translations as $language => $df) {\n $dateformats[$language] = $df;\n }\n return $dateformats;\n }", "function get_long_datetime_format() {\n\t\tstatic $long_datetime_format = FALSE;\n\n\t\tif( !$long_datetime_format ) {\n\t\t\t$long_datetime_format = $this->getConfig( 'site_long_datetime_format', '%A %d of %B, %Y (%H:%M:%S %Z)' );\n\t\t}\n\n\t\treturn $long_datetime_format;\n\t}", "private function changeDateFormat($val,$format){\n \n if($val != \"\" && count($this->dbConfigs) > 0){\n switch ($this->dbConfigs['driver']){\n case \"mysql\":\n if($format == \"date\"){\n $val = date(\"Y-m-d\", strtotime($val));\n }\n elseif($format == \"datetime\"){\n $val = date(\"Y-m-d H:i:s\", strtotime($val));\n }\n break;\n case \"sqlsrv\":\n if($format == \"date\"){\n $val = date(\"Y-m-d\",strtotime($val));\n }\n elseif($format == \"datetime\"){\n $val = date(\"Y-m-d H:i:s\",strtotime($val));\n }\n break;\n }\n return $val;\n }\n }", "public function getFormat()\n {\n\n return $this->format;\n }", "public static function getFormat(): string;", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getFormat()\n {\n return $this->format;\n }", "public function getDateFormated(){\n\t\treturn date(\"d/m/Y à\\s H:i\", strtotime($this->data));\n\t}", "function datum($db_date) {\r\n return strftime('%d.%m.%Y', strtotime($db_date));\r\n }", "public function getDateFormat($type = null);", "protected function getFormat()\n {\n return $this->format;\n }", "public function getDateFormat($type = \\IntlDateFormatter::SHORT);", "public function getDateTimeFormat();", "public function getDateTimeFormat()\n\t{\n\t\treturn $this->adapter->getDateTimeFormat();\n\t}", "public function getFormattedCreateDate();", "public function getFormat()\n {\n return $this->_format;\n }", "function format_data_in($string_date)\n{\n // $formatted_date = \"DATE_FORMAT($db_date_column, '%a, %e %b %Y ')\";\n $temp = strtotime($string_date);\n $date = date('Y-m-d', $temp);\n $date = DateTime::createFromFormat('D, j M Y', $temp)->format('Y-m-d');\n print_r($date);\n return $date;\n}", "public function getFormat()\n\t{\n\t\treturn $this->format; \n\n\t}", "public function getFormat() {\n return $this->format;\n }", "public function getDatepickerJsFormat(): string\n {\n Craft::$app->getDeprecator()->log('craft.i18n.getDatepickerJsFormat()', 'craft.i18n.getDatepickerJsFormat() has been deprecated. Use craft.app.locale.getDateFormat(\\'short\\', \\'jui\\') instead.');\n\n return Craft::$app->getLocale()->getDateFormat(Locale::LENGTH_SHORT, Locale::FORMAT_JUI);\n }", "public static function getFormats()\n {\n return self::$formats;\n }", "public function getPattern()\n {\n// if ($this->getOption('pattern')) {\n// return $this->getOption('pattern');\n// }\n\n $pattern = $this->formatter->getPattern();\n\n // set right order with respect to locale (e.g.: de_DE=dd.MM.yy; en_US=M/d/yy)\n // lookup various formats at http://userguide.icu-project.org/formatparse/datetime\n if (preg_match('/^([yMd]+).+([yMd]+).+([yMd]+)$/', $pattern)) {\n return preg_replace(array('/y+/', '/M+/', '/d+/'), array('{{ year }}', '{{ month }}', '{{ day }}'), $pattern);\n }\n\n // default fallback\n return '{{ year }}-{{ month }}-{{ day }}';\n }", "public static function dateDB(){\n\t\t$day = date('d');\n\t\t$month = date('m');\n\t\t$year = date('Y');\n\n\t\t$date = $year.\"-\".$month.\"-\".$day;\n\n\t\treturn ($date);\n\t}", "function get_short_datetime_format() {\n\t\tstatic $short_datetime_format = FALSE;\n\n\t\tif( !$short_datetime_format ) {\n\t\t\t$short_datetime_format = $this->getConfig( 'site_short_datetime_format', '%a %d of %b, %Y (%H:%M %Z)' );\n\t\t}\n\n\t\treturn $short_datetime_format;\n\t}", "public static function formats()\n {\n return self::$formats;\n }", "abstract public function getFormat();", "public function defaultFormat()\n\t{\n\t\treturn $this->format();\n\t}" ]
[ "0.8030322", "0.7574994", "0.75672007", "0.7521427", "0.7472087", "0.7320047", "0.71765167", "0.71708924", "0.7152467", "0.713681", "0.7085439", "0.7046457", "0.7040294", "0.70217115", "0.7017073", "0.7005491", "0.70021707", "0.6784641", "0.67625755", "0.6751547", "0.6751547", "0.6751547", "0.6715347", "0.6686196", "0.6679391", "0.6628417", "0.66150606", "0.66150606", "0.6609144", "0.66001654", "0.6589", "0.6584989", "0.6582528", "0.65730405", "0.6567353", "0.65629375", "0.65612674", "0.65583897", "0.65535516", "0.65535516", "0.6534703", "0.6534703", "0.6534703", "0.6488379", "0.6464792", "0.64647084", "0.64615667", "0.6443017", "0.64370775", "0.6431775", "0.6431775", "0.6431775", "0.6431775", "0.6431775", "0.6431775", "0.63896084", "0.6387895", "0.63543636", "0.6339507", "0.6335276", "0.6321897", "0.6321796", "0.6311706", "0.6302492", "0.6284223", "0.6276213", "0.6266679", "0.62617284", "0.62478983", "0.6238297", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.6228955", "0.62264127", "0.6226113", "0.6218103", "0.6207155", "0.6199987", "0.6195328", "0.6192836", "0.61881816", "0.6184265", "0.6173562", "0.61687595", "0.6162969", "0.6160974", "0.6155125", "0.6152512", "0.61209667", "0.61167234", "0.6108424", "0.6104485", "0.61012423" ]
0.68108684
17
Get a fresh timestamp for the model.
public function freshTimestamp() { return Carbon::now()->timestamp; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function freshTimestamp()\n {\n return Date::now();\n }", "private function _timestamp()\n \t{\n \t\t$this->updated_at = time();\n \t\tif (!$this->exists) $this->created_at = $this->updated_at;\n \t}", "public function timestamp() {\n\t\t$this->updated_at = new \\DateTime;\n\n\t\tif ( ! $this->exists) $this->created_at = $this->updated_at;\n\t}", "function getTimestamp() {\n return $this->time_stamp;\n }", "public function getTimestamp()\n { return $this->get('timestamp'); }", "public static function timestamp() {}", "public function freshTimestampString()\n {\n if(!is_null($this->dateFormat)){\n return date($this->dateFormat);\n }\n return time();\n }", "function getTimestamp() {\r\r\n\t\treturn $this->timestamp;\r\r\n\t}", "public function timestamp();", "public function getTimestamp() { \n\t\tif ($this->change) {\n\t\t\t$this->_calc();\n\t\t}\n\t\t\n\t\treturn $this->timestamp; \n\t}", "public function getTimestamp();", "public function getTimestamp();", "public function getTimestamp();", "public function getTimestamp()\n {\n }", "public function freshTimestampString()\n {\n return $this->fromDateTime($this->freshTimestamp());\n }", "public static function getTimestamp(){\r\n\t\treturn time();\r\n\t}", "public function timestampableOnPrePersist()\n {\n return $this->fulfillUTCNow();\n }", "public function getTimestamp()\n {\n return time();\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\r\n {\r\n return $this->_timestamp;\r\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public static function timestamp(){\n $timestamp = time();\n return $timestamp;\n }", "public function getTimestamp() {\n return $this->timestamp;\n }", "public function getTimestamp() {\n return $this->timestamp;\n }", "private static function generate_timestamp() {\n return time();\n }", "public function getTimestamp() {\n\n return $this->timestamp;\n }", "private static function generate_timestamp()\n {\n return time();\n }", "public function getTimestamp()\n {\n return $this->_timestamp;\n }", "protected static function getTimestamp()\n\t{\n\t\treturn date(\"Y-m-d H:00:00\");\n\t}", "public function getTimestamp(){\n\t\treturn $this->_timestamp;\n\t}", "public function getTimeStamp() {\n return $this->timestamp;\n }", "public function getTimestamp() \n\t{\n\t\treturn $this->timestamp;\n\t}", "public function getTimestamp()\n\t{\n\t\treturn $this->_timestamp;\n\t}", "public function getTimestamp()\n {\n return $this->proxyBase->timestamp;\n }", "protected function getTimestamp()\r\n {\r\n return gmdate(\"Y-m-d\\TH:i:s.\\\\0\\\\0\\\\0\\\\Z\", time());\r\n }", "public function getTimestamp()\n\t{\n\t\treturn $this->getValue('timestamp');\n\t}", "public function timestampableOnPreUpdate()\n {\n return $this->fulfillUTCNow();\n }", "public function getTimestamp()\n\t\t\t{\n\t\t\t\treturn $this->timestamp;\n\t\t\t}", "public function getTimestamp()\n {\n return (int) floor(microtime(true) / $this->keyRegeneration);\n }", "abstract public function getTstamp();", "public function populateTimestamp()\n {\n $this->exists = true;\n $this->timestamp = 1;\n }", "public static function get_timestamp() {\n\t\treturn floor(microtime(true)/self::keyRegeneration);\n\t}", "public function getUpdatedAtTimestamp()\n {\n $date = $this->getUpdatedAt();\n if ($date) {\n return Varien_Date::toTimestamp($date);\n }\n return null;\n }", "public function getTimeStamp()\n\t{\n\t\treturn $this->_current_timestamp;\n\t}", "public static function timestamp() {\n return time(); \n }", "public function getTstamp()\n {\n return $this->tstamp;\n }", "public function getLatestTimestamp()\n {\n return DB::table('product_models')->orderBy('updated', 'desc')->value('updated');\n }", "function save_timestamp() {\n\t\t$this->timestamp = date('Y-m-d', time());\n\t}", "public function getStamp()\n {\n $this->_init();\n return $this->_list_cache->getStamp();\n }", "public static function curTimestamp()\n {\n return date_timestamp_get(new DateTime());\n }", "private function getTimestamp() {\n\t$dateTime = new DateTime('now', new DateTimeZone(self::TIME_ZONE));\n\treturn $dateTime->format(self::DATE_FORMAT);\n }", "public function getTimestamp()\n {\n $timestamp = $this->getData('timestamp');\n $attributeCodeThis = $this->getData('attribute_code');\n $attributeCodeObj = $this->getAttributeObject()->getAttributeCode();\n if (is_null($timestamp) || $attributeCodeThis != $attributeCodeObj) {\n $value = $this->getValue();\n if ($value) {\n if (is_numeric($value)) {\n $timestamp = $value;\n } else {\n $timestamp = strtotime($value);\n }\n } else {\n $timestamp = false;\n }\n $this->setData('timestamp', $timestamp);\n $this->setData('attribute_code', $attributeCodeObj);\n }\n return $timestamp;\n }", "public function getTstamp() {\n\t\treturn $this->tstamp;\n\t}", "public function timestamp() {\n return strtotime($this->updated_at);\n }", "public function getTimeStamp() {\n\t\treturn $this->timeStamp;\n\t}", "private static function timeStamp() {\n return date(\"Y-m-d H:i:s\");\n }", "public function refreshTimestamp();", "public function getTimestamp()\n {\n return strtotime($this->getValue());\n }", "public function getCreatedAtTimestamp()\n {\n $date = $this->getCreatedAt();\n if ($date) {\n return Varien_Date::toTimestamp($date);\n }\n return null;\n }", "function get_unix_time()\n {\n return $this->timestamp;\n }", "public function getTimestamp(): int;", "public function getTimestamp(): int;", "public function getTimestamp() : float\n {\n return $this->timestamp;\n }", "function __construct(){\r\n $this->timestamp = time();\r\n }", "public function cached_timestamp()\n\t{\n\t\t$query = $this->_EE->db->get_where('dd_settings', array('key' => 'last_saved'));\n\t\treturn ($query->num_rows() > 0) ? $query->row()->value : 0 ;\n\t}", "public function getTimestamp()\n {\n return $this->baseEvent->getTimestamp();\n }", "public function GetAsTimestamp(){\r\n\t\t\t$timestamp = null;\r\n\t\t\tif( $this->year !== null && $this->month !== null && $this->day !== null ){\r\n\t\t\t\t$timestamp = strtotime( $this->year . '/' . $this->month . '/' . $this->day . ' ' . $this->hours . ':' . $this->minutes . ':' . $this->seconds );\r\n\t\t\t}\r\n\t\t\treturn $timestamp;\r\n\t\t}", "function set_date_to_now()\n {\n $this->timestamp=time();\n }", "public static function now() {\n return new LusiTime( mktime()); }", "public function copiesUpdatedAt()\n {\n return Copy::lastUpdate()->toDateTimeString();\n }", "function timestamp(){\r\n\t\t$timestamp = round(microtime(1) * 1000);\r\n\r\n\t\treturn $timestamp;\r\n\t}", "protected function getTimeStamp() {\n return time().' ('.strftime( '%Y.%m.%d %H:%I:%S', time() ).')';\n }", "public function getTimestamp(): int|null\n {\n if (!$this->hasTimestamp()) {\n $this->setTimestamp($this->getDefaultTimestamp());\n }\n return $this->timestamp;\n }", "public function getUpdatedAt()\n {\n return $this->sys->getUpdatedAt();\n }", "public function getStamp()\n {\n return pack('Nn', time(), mt_rand());\n }", "function getTime()\n {\n return date('Y-m-d H:i:s', $this->model->getTime());\n }", "static public function timestamp()\r\n {\r\n $output = date('Y-m-d H:i:s', time());\r\n return $output;\r\n }", "protected function getTimeStamp(){\n\t\t$result = $this->getFile()->getProperty('tstamp');\n\t\tif ($this->processedFile) {\n\t\t\t$result = $this->processedFile->getProperty('tstamp');\n\t\t}\n\t\treturn $result;\n\t}", "public function getTimestamp()\n {\n return $this->readOneof(3);\n }", "function timeStamp()\n {\n return date(\"YmdHis\");\n }", "protected function createTokenTimestamp(): int\n {\n return time();\n }", "public function getTimeStamp() : float\n {\n return $this->timeStamp;\n \n }", "public function setTimeStamp()\n\t{\n\t\t$this->_current_timestamp = time();\n\t}", "private static function timestamp(){\n date_default_timezone_set('Africa/Nairobi');\n $time = time();\n return date(\"Y-m-d G:i:s\", $time);\n }", "function timeStamp( $returnNow = false )\r\n {\r\n if ( $returnNow == true )\r\n return mktime();\r\n else\r\n return $this->hour() * 3600 + $this->minute() * 60 + $this->second();\r\n }", "public function getUpdatedAtAttribute()\n {\n return strtotime($this->attributes['updated_at']);\n }", "private function getTimestamp()\n {\n $originalTime = microtime(true);\n $micro = sprintf(\"%06d\", ($originalTime - floor($originalTime)) * 1000000);\n $date = new DateTime(date('Y-m-d H:i:s.'.$micro, $originalTime));\n\n return $date->format($this->config['dateFormat']);\n }", "public function nowMutable(): \\DateTime;", "public function getVersionCreateTime()\n {\n return $this->version_create_time;\n }", "public function getUpdatedAt();" ]
[ "0.77480716", "0.74730635", "0.741787", "0.69703996", "0.6961526", "0.6960642", "0.694699", "0.69048434", "0.68742687", "0.6872147", "0.68649566", "0.68649566", "0.68649566", "0.6842163", "0.68233126", "0.6806291", "0.6789799", "0.67573124", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6732114", "0.6728029", "0.67253304", "0.6721028", "0.67086065", "0.67086065", "0.67069566", "0.6689828", "0.66838866", "0.66791284", "0.66720814", "0.66682523", "0.66404516", "0.66306156", "0.65942127", "0.659101", "0.6582698", "0.6574006", "0.65718186", "0.65714175", "0.65563375", "0.655507", "0.65128803", "0.6502199", "0.6496584", "0.6495001", "0.6494935", "0.64900744", "0.64714026", "0.64526653", "0.6449907", "0.64299715", "0.64259374", "0.6425521", "0.64054644", "0.63906753", "0.6373168", "0.63570344", "0.6336363", "0.6325082", "0.6315505", "0.62744415", "0.62617755", "0.62617755", "0.62401694", "0.62375057", "0.6215919", "0.6212106", "0.6211497", "0.6207021", "0.61666626", "0.61622894", "0.61556447", "0.6152664", "0.61526257", "0.6109924", "0.61097336", "0.6095436", "0.6093501", "0.6093132", "0.6080348", "0.6079768", "0.60780764", "0.60627276", "0.6047264", "0.60464066", "0.6026494", "0.59949654", "0.59883314", "0.5975414", "0.59695673", "0.59599656" ]
0.76497746
1
Get the table associated with the model.
public function getTable() { return $this->collection ?: parent::getTable(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function table($model)\n\t{\n\t\tif ($meta = Jelly_Meta::get($model))\n\t\t{\n\t\t\treturn $meta->table;\n\t\t}\n\t\t\n\t\treturn $model;\n\t}", "public static function getTable()\n {\n return (new static)->model->getTable();\n }", "public function getTable($model=null) {\n\t\tif (is_null($model)) {\n\t\t\t$model = $this->model;\n\t\t}\n\t\treturn $model::getTableName();\n\t}", "public function getTable() { return $this->table->getTable(); }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n return $this->table;\n }", "public function getTable() {\n\n return $this->table;\n\n }", "public function getTable() {\n return $this->table;\n }", "public function getTable() {\n return $this->table;\n }", "public function get_table()\n\t{\n\t\treturn $this->_table;\n\t}", "protected function getTable()\n {\n return $this->table;\n }", "protected static function getTable()\n {\n if (static::$TABLE === null) {\n throw new NotImplementedException(_s('Missing table definition in Model ').get_called_class());\n }\n\n return static::$TABLE;\n }", "public function getTable() {\n return $this->_table;\n }", "public function getTable() {\n return $this->_table;\n }", "public function getTable()\n\t{\n\t\treturn $this->table;\n\t}", "public function getTable() {\n\t\treturn $this->_table;\n\t}", "public function getTable() {\n\t\treturn $this->_table;\n\t}", "public function getTable() {\n\t\treturn $this->_table;\n\t}", "public static function getTableName()\n {\n return ((new self)->getTable());\n }", "public final function getTable()\n {\n if ($this->_table === null)\n $this->_table = $this->getParentObject()->getTable();\n \n return $this->_table;\n }", "public function getTable() { return( $this->_table ); }", "public function Table()\n {\n return $this->table;\n }", "private function getTable()\n\t{\n\t\treturn $this->_table;\n\t}", "public function getTable()\n {\n if (isset($this->table)) {\n return $this->table;\n }\n return str_replace('\\\\', '', Str::snake(Str::singular(class_basename($this))));\n }", "public function getTable()\n {\n if (! isset($this->table)) {\n return str_replace('\\\\', '', Str::snake(Str::plural(class_basename($this))));\n }\n\n return $this->table;\n }", "public function getTable()\n {\n if (! isset($this->table)) {\n return str_replace(\n '\\\\',\n '',\n Str::snake(Str::plural(class_basename(self::class)))\n );\n }\n\n return $this->table;\n }", "public function table()\n {\n return $this->table;\n }", "protected function getDoctrineTable()\n {\n return Doctrine::getTable($this->getOption('model'));\n }", "public function getTable()\n\t{\n\t\treturn empty($this->table) ? $this->table = Db_Inflector::pluralize($this->getSingular()) : $this->table;\n\t}", "function diy_get_model_table($model, $find = false) {\n\t\t$model = diy_get_model($model, $find);\n\t\t\n\t\treturn $model->getTable();\n\t}", "protected function table()\n {\n return $this->connection->table($this->table);\n }", "public static function getTableName()\n\t{\n\t\t//called from users, keyword self:: returns model\n\t\t// return self::$table;\n\t\t//called from users, keyword static:: returns users\n\t\treturn static::$table;\n\t}", "protected function table()\n {\n return $this->conn->table($this->table);\n }", "public function getTableSingular()\n {\n if (($table = Str::snake(class_basename($this))) == 'model' && $this->table) {\n $table = Str::singular($this->table);\n }\n\n return $table;\n }", "public static function getTableName()\n {\n $type = static::getType();\n return $type::getTableName();\n }", "public function getTable()\n {\n if (isset($this->table)) {\n return $this->table;\n }\n\n return str_replace('\\\\', '', Str::snake(Str::plural(class_basename($this))));\n }", "public function getTable()\n {\n return $this->_from[0]['table'];\n }", "public function getTable(): string\n {\n return $this->_table;\n }", "public function tableName()\n {\n return $this->table;\n }", "protected function table()\n\t{\n\t\treturn $this->connection->table($this->table);\n\t}", "public function getTable()\n\t{\n\t\treturn $this->connection->table(self::TABLE_NAME);\n\t}", "private function _table() {\n if ($this->table == NULL) {\n $this->load->helper('inflector');\n $class = preg_replace('#((_m|_model)$|$(m_))?#', '', strtolower(get_class($this)));\n $this->table = plural(strtolower($class));\n }\n return $this->table;\n }", "public static function getTableName() {\n return self::$tableName;\n }", "public function getTable(): string\n {\n return $this->table;\n }", "public function getTable(): string\n {\n return $this->table;\n }", "public function getTable()\r\n\t{\r\n\t\tif ($this->_table===null) {\r\n\t\t\t$this->_table=new $this->_tableClass;\r\n\t\t}\r\n\t\treturn $this->_table;\r\n\t}", "public static function table()\n\t{\n\t\treturn self::em()->getRepository(static::class)->getMetadata()->getTable();\n\t}", "public function getTable()\n\t{\n\t\tif (isset($this->table)) return $this->table;\n\n\t\treturn $this->table = str_replace('\\\\', '', snake_case(str_plural(class_basename($this))));\n\t}", "public function getTable() {\n if ( isset( $this->table ) ) {\n return $this->table;\n }\n\n $table = str_replace( '\\\\', '', snake_case( str_plural( class_basename( $this ) ) ) );\n\n return $this->getConnection()->db->prefix . $table ;\n }", "public function table() \n {\n return $this->model->table?? '';\n }", "public function table() {\n\t\treturn static::$table ?: strtolower(Str::plural(class_basename($this)));\n\t}", "public function tableName()\n\t{\n\t\treturn '{{'.$this->getTableName().'}}';\n\t}", "public function getTableName();", "public function getTableName();", "public function get_table()\n {\n $this->process_frequency_table();\n return $this->table;\n }", "final public static function tableName()\n {\n return (new static)->table;\n }", "public function getCurrentTable()\n {\n return $this->table;\n }", "public function getTable()\n {\n if ($this->_table == null) {\n $this->_table = new Zend_Db_Table($this->_tableName);\n }\n\n return $this->_table;\n }", "public function getTable();", "public function getTable();", "public function getTable();", "public function getTable();", "public function getTable();", "public function getTable();", "public function getTable();", "public function getTableName() ;", "public function table()\n {\n return $this->morphTo();\n }", "public function getTableName() {}", "public function getTableName() {}", "public function _tablename() {\n if (isset($this->_table) && !isNull($this->_table)) {\n return $this->_table;\n } else {\n return camel_case_to_underscore(get_class($this));\n }\n }", "public function getTable(): Table\n {\n $options = [];\n $options['CakephpFixtureFactoriesListeningModelEvents'] = $this->getListeningModelEvents() ?? [];\n $options['CakephpFixtureFactoriesListeningBehaviors'] = $this->getListeningBehaviors() ?? [];\n try {\n $table = FactoryTableRegistry::getTableLocator()->get($this->rootTableRegistryName, $options);\n } catch (\\RuntimeException $exception) {\n FactoryTableRegistry::getTableLocator()->clear();\n $table = FactoryTableRegistry::getTableLocator()->get($this->rootTableRegistryName, $options);\n }\n return $table;\n }", "public static function getTableName()\n {\n return self::getConfig()->get('scheme/tableName');\n }", "public function getTableName(){\r\n\t\treturn strtolower(get_class($this));\r\n\t}", "public function getTable(): Table;", "public function getTable() {\n\t\tif (!is_object($this->obj) && class_exists($this->obj) && \\System\\Library\\StdLib::is_interface_of($this->obj, \"\\Library\\Database\\LinqObject\")) {\n\t\t\t$o = $this->obj;\n\t\t\treturn \"`\".$o::getTable(true).\"`\";\n\t\t} else {\n\t\t\treturn \"`\".$this->name.\"`\";\n\t\t}\n\t}", "function getTableName() {\n return $this->tableName;\n }", "public function getTableName()\n {\n return $this->tableName;\n }", "public function getTableName()\n {\n return $this->tableName;\n }", "public function getTableName()\n {\n return $this->tableName;\n }", "public function getTableName()\n {\n return $this->tableName;\n }", "public function tableName() \n {\n return $this->tableName;\n }", "public function getTableName()\n {\n return $this->tableName;\n }", "public static function getTableName()\n {\n return self::getDatabaseName() . '.' . self::NAME;\n }", "public function getTableName()\r\n {\r\n return $this->tableName;\r\n }", "public function get_table_name(){\n return $this->table_name();\n }", "public function getTableName()\n {\n return $this->_tableName;\n }", "public static function tablename() {\n return self::TABLE;\n }", "public function tableName()\r\n {\r\n return get_class($this);\r\n }", "public function getTable()\n {\n return $this->parentTable;\n }", "protected function table(): string\n {\n return $this->tableName;\n }", "public function getTableName(){\n\t\treturn $this->tableName;\n\t}", "public function get_table_name() {\n return $this->table_name;\n }", "public function getTableName(){\n return $this->tableName;\n }" ]
[ "0.8350472", "0.82914054", "0.81865674", "0.80120784", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.7979905", "0.79534376", "0.7951164", "0.7951164", "0.794834", "0.792621", "0.7918211", "0.78920466", "0.78920466", "0.78905135", "0.786364", "0.786364", "0.786364", "0.78487587", "0.78002995", "0.7792518", "0.77822614", "0.7781665", "0.77716595", "0.7770237", "0.7756184", "0.77559644", "0.7723586", "0.7688756", "0.7681836", "0.7657621", "0.7650283", "0.76469505", "0.7638122", "0.7633846", "0.7630221", "0.7615345", "0.76052165", "0.7577155", "0.75763214", "0.75715125", "0.7569244", "0.75573903", "0.7552866", "0.7552866", "0.7543131", "0.7524", "0.7523672", "0.75184655", "0.7487715", "0.74814105", "0.74776006", "0.74530417", "0.74530417", "0.743905", "0.7428386", "0.74211055", "0.7404156", "0.73848885", "0.73848885", "0.73848885", "0.73848885", "0.73848885", "0.73848885", "0.73848885", "0.7381945", "0.7378927", "0.73757416", "0.73757416", "0.73584455", "0.73503256", "0.73450637", "0.733828", "0.73242486", "0.7318145", "0.7314976", "0.73025435", "0.73025435", "0.73025435", "0.73025435", "0.7294724", "0.72809917", "0.7272718", "0.7270793", "0.72657275", "0.72436136", "0.7241392", "0.7234856", "0.7222512", "0.72155267", "0.7200644", "0.7189185", "0.71886075" ]
0.0
-1
Get an attribute from the model.
public function getAttribute($key) { // Check if the key is an array dot notation. if (str_contains($key, '.') and array_has($this->attributes, $key)) { return $this->getAttributeValue($key); } $camelKey = camel_case($key); // If the "attribute" exists as a method on the model, it may be an // embedded model. If so, we need to return the result before it // is handled by the parent method. if (method_exists($this, $camelKey)) { $method = new ReflectionMethod(get_called_class(), $camelKey); } return parent::getAttribute($key); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getAttribute($Model, $attribute_name) {\n extract($this->settings[$Model->alias]);\n\n return ($Model->{$with}->Attribute->find(\n 'first',\n array(\n 'fields' => array(\n 'Datatype.name',\n 'Datatype.table',\n 'Datatype.validation_proc',\n 'Datatype.format',\n 'Attribute.name',\n 'Attribute.id'\n ),\n 'conditions' => array(\n 'Attribute.name' => $attribute_name,\n ),\n 'recursive' => 0\n )\n )\n );\n }", "public function get($attribute);", "function getAttributeById($Model, $attribute_id) {\n extract($this->settings[$Model->alias]);\n\n return ($Model->{$with}->Attribute->find(\n 'first',\n array(\n 'fields' => array(\n 'Datatype.name',\n 'Datatype.table',\n 'Datatype.validation_proc',\n 'Datatype.format',\n 'Attribute.name'\n ),\n 'conditions' => array(\n 'Attribute.id' => $attribute_id,\n ),\n 'recursive' => 0\n )\n )\n );\n }", "public function __get($attribute)\n {\n if ( isset($this->attributes[$attribute]) ) return $this->attributes[$attribute];\n }", "public function getAttribute($key)\n {\n $inAttributes = array_key_exists($key, $this->attributes);\n\n // If the key references an attribute, we can just go ahead and return the\n // plain attribute value from the model. This allows every attribute to\n // be dynamically accessed through the __get method without accessors.\n if ($inAttributes || $this->hasGetMutator($key)) {\n return $this->getAttributeValue($key);\n }\n }", "public function getAttribute()\n {\n return $this->attribute;\n }", "public function getAttribute()\n {\n return $this->attribute;\n }", "function __get($attribute)\n {\n if(method_exists($this,$attribute)){\n return $this->{$attribute}();\n }\n return $this->model->{$attribute};\n }", "public function get_attribute($field){\n\t\treturn $this->{$field};\n\t}", "public function __get($attribute)\n {\n return array_get($this->attributes, $attribute);\n }", "public function getAttribute($attribute)\n {\n return $this->{$attribute};\n }", "public function get($attributeName);", "public function __get($attribute) {\n return $this->getAttribute($attribute);\n }", "public function __get($attr)\n {\n if (isset($this->{$attr})) {\n return $this->{$attr};\n } elseif (method_exists($this, 'get'.camel_case($attr).'Attribute')) {\n $methodName = camel_case('get_'.$attr.'Attribute');\n\n return $this->$methodName();\n }\n }", "function get_attribute($attribute)\n\t{\n\t\t$attribute = $this->db->getAttribute(constant(\"PDO::\".$attribute.\"\"));\n\n\t\treturn $attribute;\n\t}", "public function getAttribute($name)\n\t{\n\t\tif(property_exists($this,$name))\n\t\t\treturn $this->$name;\n\t\telseif(isset($this->_attributes[$name])) {\n\t\t\treturn $this->_attributes[$name];\n\t\t}\n\t}", "public function getAttribute($attribute)\n {\n return $this->attributes[$attribute];\n }", "public function getAttributeModel()\n {\n $attribute = $this->getData('attribute_model');\n if (is_null($attribute)) {\n Mage::throwException(Mage::helper('catalog')->__('The attribute model is not defined'));\n }\n return $attribute;\n }", "public function __get($attr)\n {\n return $this->get($attr);\n }", "public function readAttribute($attribute) {}", "public function __GET($attr){\n\n\t\t return $this->$attr;\n\t\t}", "public function getAttribute($name) {\n\t\tif (property_exists($this, $name))\n\t\t\treturn $this->$name;\n\t\telse if ($this->hasAttribute($name))\n\t\t\treturn $this->_attributes[$name];\n\t}", "public function get($attr) {\n return array_key_exists($attr, $this->_private_attributes) ? $this->_private_attributes[$attr] : null;\n }", "public function get($attr) {\n if (!isset($this->attrs[$attr])) {\n return null;\n }\n return $this->attrs[$attr];\n }", "public function getAttribute($name) {\n\t\tif (isset ( $this->$name ))\treturn $this->$name;\n\t}", "public function getValue(Model $model, Request $request)\n {\n return optional($model)->getAttribute($this->attribute);\n }", "public function getAttribute(string $attribute): string;", "public function get_attribute($key) {\n\t\treturn array_get($this->attributes, $key);\n\t}", "public function get($attr = null);", "public function getAttribute($type)\n {\n return $this->attributes[$type];\n }", "public function getAttribute($key)\n {\n // Before Event\n if (($attr = $this->fireEvent('model.beforeGetAttribute', [$key], true)) !== null) {\n return $attr;\n }\n\n $value = $this->getAttributeFromArray($key);\n\n // If the attribute has a get mutator, we will call that then return what\n // it returns as the value, which is useful for transforming values on\n // retrieval from the model to a form that is more useful for usage.\n if ($this->hasGetMutator($key)) {\n return $this->mutateAttribute($key, $value);\n }\n\n // After Event\n if (($_attr = $this->fireEvent('model.getAttribute', [$key, $attr], true)) !== null) {\n return $_attr;\n }\n\n return $value;\n }", "public function getAttribute(): string\n {\n return $this->attribute;\n }", "function get_attribute( $key ) {\n\t\treturn isset( $this->attributes[$key] ) ? $this->attributes[$key] : null;\n\t}", "public function get_attribute($name)\n {\n }", "public static function getAttributeById($id) {\n $model = self::_getDataType();\n return parent::getModelById($id);\n }", "public function __get($name)\n {\n return $this->attributes[$name];\n }", "public function getAttribute($name)\n {\n if (in_array($name, static::$fields)) {\n return $this->attributes[$name];\n }\n }", "public function __get($name)\n\t{\n\t\tif(array_key_exists($name, $this->_attributes))\n\t\t\treturn $this->_attributes[$name];\n\t\telse\n\t\t\treturn parent::__get($name);\n\t}", "public function __get($key)\n {\n // is the requested keyiable in the fields array?\n if(isset($this->fields[$key]))\n {\n // if so, find out what it's database column name is\n $db_column_name = $this->fields[$key]['name'];\n // return $this->attributes->string1 (or text3, decimal5 etc.)\n if(isset($this->attributes[$db_column_name]))\n return $this->attributes[$db_column_name];\n \n // otherwise, check if its in the attributes as named (such as $this->id)\n }elseif(isset($this->attributes[$key])){\n return $this->attributes[$key];\n }\n\n return parent::__get($key);\n }", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getIdentifyingAttribute();", "public function getAttribute($name)\r\n\t{\r\n\t\treturn $this->__get($name);\r\n\t}", "public function readAttribute($attribute){\n\t\t#if[compile-time]\n\t\tCoreType::assertString($attribute);\n\t\t#endif\n\t\t$this->_connect();\n\t\treturn $this->$attribute;\n\t}", "public function getAttribute()\r\n {\r\n return $this->getElement()->getEntityAttribute();\r\n }", "public function __get($attribute)\n {\n if(property_exists($this, $attribute)) {\n return $this->{$attribute};\n }\n return null;\n }", "public function __get($name) {\n\t\tif ($this->hasAttribute($name))\n\t\t\treturn $this->_attributes[$name];\n\t\telse\n\t\t\treturn parent::__get($name);\n\t}", "public function getAttribute($key)\n {\n return $this->attributes[$key];\n }", "public function __get($key)\n {\n return $this->attributes[$key];\n }", "public function getAttribute($attribute)\n {\n }", "public function getValue(string $attr)\n {\n $this->checkAttribute($attr);\n return $this->attributes[$attr];\n }", "public function __get($attribute) {\n\t\tif (array_key_exists($attribute, $this->_data)) {\n\t\t\treturn $this->_data[$attribute];\n\t\t}\n\n\t\tthrow new Exception(\"unknown attribute {$attribute}\");\n\t}", "public function get($name): Attribute {\n $name = str_replace([\"-\", \" \"], \"_\", strtolower($name));\n if (isset($this->attributes[$name])) {\n return $this->attributes[$name];\n }\n\n return new Attribute($name);\n }", "public function __get($attribute)\r\n\t{\r\n\t\tif (isset($this->{\"_\".$attribute}))\r\n\t\t{\r\n\t\t\treturn $this->{\"_\".$attribute};\r\n\t\t}\r\n\t\telse\r\n\t\t{\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "public function __get(string $attribute)\n {\n $getter = 'get' . ucfirst(preg_replace_callback('/_[a-zA-Z0-9]/', function ($matches) {\n $str = '';\n\n foreach ($matches as $match) {\n $str .= ucfirst(str_replace('_', '', $match));\n }\n\n return $str;\n }, $attribute));\n\n if (!method_exists($this, $getter)) {\n return null;\n }\n\n return $this->$getter();\n }", "public function __get($attribute)\n\t{\n\t\tif (isset($this->{\"_\".$attribute}))\n\t\t{\n\t\t\treturn $this->{\"_\".$attribute};\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t}", "public function __get($attribute)\n {\n if (!isset($this->{$attribute})) {\n Error::set(Error::ERROR_INVALID_PROPERTY, [$attribute], Error::ERROR);\n }\n return $this->{$attribute};\n }", "public function attr($attribute) {\n if (array_key_exists($attribute, $this->attributes)) {\n return $this->attributes[$attribute];\n } else {\n return 'PopShops API Error: Invalid attribute passed to ' . get_class($this) . '->attr: ' . $attribute;\n }\n }", "public function get_attribute($key, $defaut = NULL);", "public function getAttribute($key)\n\t{\n\t\t$value = null;\n\t\tif (array_key_exists($key, $this->attributes)) {\n\t\t\tif (array_key_exists($key, $this->attributes)) {\n\t\t\t\t$value = $this->attributes[$key];\n\t\t\t}\n\t\t}\n\t\treturn $value;\n\t}", "private function getAttributeValue($attribute)\n {\n return array_key_exists($attribute, $this->data) ? $this->data[$attribute] : null;\n }", "public function attribute(string $name) {\n\t\treturn $this->m_attributes[$name] ?? null;\n\t}", "public function getAttribute($key);", "public function __get($name)\n\t{\n\t\t// return custom field value\n\t\tif ($this->isCustomField($name)) {\n\t\t\treturn $this->getCustomFieldModel($name)->value;\n\t\t}\n\t\t\n\t\t// return model attribute\n\t\treturn $this->getAttribute($name);\n\t}", "public function getAttribute($name);", "public function getAttribute($attribute)\r\n\t{\r\n\t\t\r\n\t}", "public function getAttribute($attribute) {\n\t\tif (!$this->attributes) {\n\t\t\t$this->attributes = tx_newspaper::selectOneRow(\n\t\t\t\t'*', tx_newspaper::getTable($this), $this->getCondition()\n\t\t\t);\n\t\t\t$this->setUid($this->attributes['uid']);\n\t\t}\n\n \t\tif (!array_key_exists($attribute, $this->attributes)) {\n \tthrow new tx_newspaper_WrongAttributeException($attribute);\n \t\t}\n \t\treturn $this->attributes[$attribute];\n \t}", "public function getAttribute($attributeName) {\n\t\tif (!$this->attributeExists($attributeName)) {\n\t\t\tthrow new CException(\"Unable to resolve attribute '{$attributeName}'!\");\n\t\t}\n\t\treturn $this->_attributes[$attributeName];\n\t}", "public function __get($atrib){\n\t\treturn $this->$atrib;\n\t}", "public function __get($attribute)\r\n {\r\n if ($attribute == 'tag') {\r\n return $this->attributes[0];\r\n }\r\n return array_key_exists($attribute, $this->attributes) ? $this->attributes[$attribute] : null;\r\n }", "public function getAttributeToEditProperty()\n {\n return Attribute::find($this->editAttributeId);\n }", "public function offsetGet($key)\n {\n return $this->attributes[$key];\n }", "public function getAttribute($name)\n {\n $user = $this->getUserRecord();\n if($user === false)\n return false;\n\n if(isset($user[$name]))\n return $user[$name];\n return false;\n }", "public function getAttribute($attribute)\n\t{\n\t\tif(isset($this->attributes[$attribute]))\n\t\t\treturn $this->attributes[$attribute];\n\n\t\treturn null;\n\t}", "public function __get($attr) {\n if ($this->isMeta($attr)) {\n return isset($this->meta()->$attr) ? $this->meta()->$attr : null;\n } else {\n return parent::__get($attr);\n }\n }", "public function getAttribute($key)\n {\n if (! $key) {\n return;\n }\n\n if ( array_key_exists($key, $this->attributes) ) {\n return $this->getAttributeValue($key);\n }\n\n if (method_exists(self::class, $key)) {\n return;\n }\n\n return;\n }", "public function getAttr(string $key) {\n return (array_key_exists($key, $this->attributes) ? $this->attributes[$key] : null);\n }", "public function __get( string$attribute )\n\t{\n\t\t$getter= \"__get__$attribute\";\n\t\t\n\t\tif( is_callable( [ $this, $getter ] ) )\n\t\t\treturn $this->$getter();\n\t\telse\n\t\tif( get_parent_class( self::class ) && is_callable( [ $this, parent::__get, ] ) )\n\t\t\treturn parent::__get( $attribute );\n\t\telse\n\t\t\treturn null;\n\t}", "public function getAttr(): string\r\n {\r\n return $this->attr;\r\n }", "public function get($atributo) {\r\n\t\t\treturn $this->$atributo;\r\n\t\t}", "public function __get($attr)\n\t{\n\t\t$functionName = \"get\".$attr;\n\t\treturn $this->$functionName();\n\t}", "public function __attribute($name)\n {\n return $this->__attributes[$name];\n }", "protected function valueFromModel($name)\n {\n if (! $this->model) {\n return null;\n }\n\n return $this->model->getAttribute($name);\n }", "public function attr($key) {\n\t\treturn isset($this->attributes[$key]) ? $this->attributes[$key] : null;\n\t}", "public function getAttribute($name)\n {\n return (isset($this->_attributes[$name])) ? $this->_attributes[$name] : NULL;\n }", "public function getAttribute(string $name);", "public function offsetGet($key)\n {\n return $this->attributes->get($key);\n }", "public function getAttribute($key)\n {\n $value = $this->getAttributeValue($key);\n\n // First we will check for the presence of a mutator for the set operation\n // which simply lets the developers tweak the attribute as it is set.\n if ($this->hasGetMutator($key)) {\n $method = 'get' . Str::studly($key) . 'Attribute';\n\n return $this->{$method}($value);\n }\n\n return $value;\n }", "public function getAttribute($key)\n {\n return $this->getAttributeValue($key);\n }", "public function getAttribute($key)\n {\n if (array_key_exists($key,$this->_attributes)) {\n return $this->_attributes[$key];\n }\n return false;\n }", "function __get($attributeAskedFor) {\n echo \"Asked for \" . $attributeAskedFor . \"<br>\";\n return $this->$attributeAskedFor;\n }", "public function __get($name)\n\t{\n\t\tif (isset($this->_attributes[$name]))\n\t\t\treturn $this->_attributes[$name];\n\t\treturn null;\n\t}", "public function getValue($attribute = 'id')\n {\n \n $sticky_id = $this->getID();\n\n $query = \"SELECT *\n FROM stickies\n WHERE id = $sticky_id\";\n\n $result = DB::mysqli()->query($query);\n\n $content = mysqli_fetch_assoc($result);\n\n \n return $content[$attribute];\n }", "public function __get($name)\n\t{\n\t\tif (isset($this->attributes[$name])) {\n\t\t\treturn $this->attributes[$name];\n\t\t} \n\t\treturn null;\n\t\t\n\t}", "public function __get($key)\n {\n return $this->getAttribute($key);\n }", "public function read_attribute($attribute)\n\t\t{\n\t\t\tif(!isset($this->matchcode[$attribute]) )\n\t\t\t{\n\t\t\t\terror_log(__FILE__.' name '.$attribute.' not defined in matchcode array');die();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif($this->matchcode[$attribute][1] == 'A' || $this->matchcode[$attribute][1] == 'R')\n\t\t\t\t{\n\t\t\t\t\t$var = $this->matchcode[$attribute][0];\n\t\t\t\t\treturn $this->$var;\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\terror_log(__FILE__.' name '.$attribute.' not readable');die();\n\t\t\t\t}\n\t\t\t}\n\t\t}", "private function getAttribute($attribute)\n\t{\n\t\treturn isset($this->_data->{$attribute}) ? $this->_data->{$attribute} : '';\n\t}", "public function getAttribute($attribute)\n {\n //Check this attribute is support\n if (isset($this->input_map[$attribute])) {\n return $this->input_map[$attribute];\n } else {\n throw new AttributeInvalidException('Attribute not supported by this library');\n }\n }" ]
[ "0.77164817", "0.76396805", "0.72757095", "0.7252043", "0.7242902", "0.7114332", "0.7114332", "0.7092426", "0.7091105", "0.70902133", "0.70625067", "0.7053173", "0.69878286", "0.6947082", "0.6927802", "0.69177794", "0.6907083", "0.68946326", "0.6887901", "0.68747336", "0.6872205", "0.6865076", "0.6833253", "0.68310994", "0.67484516", "0.67287385", "0.6704061", "0.66889936", "0.66880465", "0.66850096", "0.6684412", "0.667089", "0.6611101", "0.66108376", "0.6596239", "0.6588259", "0.6574445", "0.65722513", "0.65705234", "0.6561153", "0.6561153", "0.6561153", "0.6561153", "0.65565866", "0.6555537", "0.6543032", "0.6534873", "0.65343356", "0.65155405", "0.6514613", "0.65100044", "0.64954084", "0.6486935", "0.64805996", "0.64587975", "0.64439714", "0.64267045", "0.6415862", "0.6414301", "0.6404888", "0.63991886", "0.63962674", "0.6390081", "0.6389218", "0.63827205", "0.6364632", "0.6354517", "0.63539517", "0.6348027", "0.6345373", "0.63337636", "0.6331652", "0.6330256", "0.6330038", "0.63211954", "0.63093245", "0.6302239", "0.6301669", "0.630015", "0.62890524", "0.6285575", "0.6285508", "0.6284997", "0.62645173", "0.62639445", "0.6249631", "0.62430334", "0.62336135", "0.6230752", "0.62192756", "0.62184584", "0.62063694", "0.6205154", "0.61832696", "0.61801976", "0.6175135", "0.6168213", "0.6166016", "0.61574244", "0.6157287" ]
0.6714693
26
Set a given attribute on the model.
public function setAttribute($key, $value) { // Convert _id to ObjectID. if ($key == '_id' and is_string($value)) { $builder = $this->newBaseQueryBuilder(); $value = $builder->convertKey($value); } elseif (str_contains($key, '.')) { if (in_array($key, $this->getDates()) && $value) { $value = $this->fromDateTime($value); } array_set($this->attributes, $key, $value); return; } parent::setAttribute($key, $value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __set($attribute, $param) {\n $this->$attribute = $param;\n }", "public function __set($attribute, $value){\n\t\t$this->$attribute = $value;\n\t}", "public function setAttribute(string $attribute, string $value);", "public function __set($attribute, $value) {\n $this->setAttribute($attribute, $value);\n }", "public function setAttribute($attribute, $value)\n {\n }", "function set($attr, $value)\r\n\t{\r\n\t\t$this->$attr = $value;\r\n\t}", "public function __SET($attr, $value){ //Establece valor y atributo\n\n\t\t\t$this->$attr=$value;\n\t\t}", "public function setAttr($attribute, $value) {\n $this->attributes[$attribute] = $value;\n }", "public function setAttribute($attribute, $value)\r\n\t{\r\n\t\t\r\n\t}", "public function set($attribute, $value)\n {\n $this->attributes[$attribute] = $value;\n }", "function setAttribute ($attribute, $value) {\n return $this->dbH->setAttribute($attribute, $value);\n }", "public function __set($attribute, $value)\n {\n $this->set($attribute, $value);\n }", "public function __set($attr, $value)\n\t{\n\t\t$this->$attr = $value;\n\t}", "public function __set($attribute, $value) {\n\t\tif (strpos($attribute, '_') === 0) {\n\t\t\t$this->{$attribute} = $value;\n\t\t\treturn;\n\t\t}\n\n\t\t$this->setData($attribute, $value);\n\t}", "public function setAttribute($attribute, $value) {\n\t\tif (!$this->attributes) {\n\t\t\t$this->attributes = tx_newspaper::selectOneRow(\n\t\t\t\t\t'*', tx_newspaper::getTable($this), $this->condition\n\t\t\t);\n\t\t}\n\t\t\n\t\t$this->attributes[$attribute] = $value;\n\t}", "public function __set($attribute, $value)\n {\n array_set($this->attributes, $attribute, $value);\n }", "public function __set($atrib, $value){\n\t\t$this->$atrib = $value;\n\t}", "public function set_attribute($name, $value)\n {\n }", "public function set_attribute( $attribute_name = '', $value = null ) {\n\t\t\n\t\t$this->attributes[$attribute_name] = $value;\n\t\t\n\t}", "public function setAttribute($attribute, $value)\n {\n array_set($this->attributes, $attribute, $value);\n\n $this->update();\n }", "public function setAttribute($attribute, $value)\n {\n $this->attributes[$attribute] = $value;\n\n return $this;\n\n }", "protected function setAttribute($dataArray, $attribute)\n {\n if (isset($dataArray[$attribute])) {\n if (in_array($attribute, self::$validAttributes)) {\n $this->$attribute = $dataArray[$attribute];\n }\n }\n }", "public function __set($name, $value)\n { \n //set the attribute with the value\n $this->$name = $value;\n }", "public function __set($attribute, $value)\n {\n // If we are locked tell them\n if ($this->isLocked) {\n\n throw new \\IllegalAccessException('The entity ' . get_called_class() . ' is in a locked state');\n }\n\n // If we do not have this property we should tell them\n if (!property_exists($this, $attribute)) {\n\n throw new \\IllegalArgumentException('There is no attribute called ' . $attribute);\n }\n\n // Still here? Set it then\n $this->$attribute = $value;\n }", "public function set_attribute($key, $value) {\n\t\t$this->attributes[$key] = $value;\n\t}", "public function setAttribute($key, $value);", "public function setAttribute($key, $value);", "function set_attr($attr=array()) {\n $this->other_attr = $attr;\n }", "public function setAttribute($attribute, $value) {\n parent::setAttribute($attribute, $value);\n\n return $this;\n }", "public function __set($attri, $value) {\n if (in_array($attri, self::DYN_ATTRIBUTES)) {\n $this->{$attri} = $value;\n }\n }", "abstract public function setAttribute($key, $value);", "public function setAttribute($name, $value);", "public function set($model, $attribute, $groups)\n {\n \n }", "function __set($attr_name, $value) {\n // in $attr_name, replace _ with \" \"\n $attr_name = str_replace('_', ' ', $attr_name);\n $attr_name = ucwords($attr_name);\n $attr_name = str_replace(' ', '', $attr_name);\n $function = \"set$attr_name\";\n //var_dump($function);\n $this->$function($value);\n }", "function __set($attributeToChange, $newValueToAssign) {\n //check that name is valid class attribute\n switch($attributeToChange) {\n case \"name\":\n $this->name = $newValueToAssign;\n break;\n case \"favoriteFood\":\n $this->favoriteFood = $newValueToAssign;\n break;\n case \"sound\":\n $this->sound = $newValueToAssign;\n break;\n default:\n echo $attributeToChange . \" was not found <br>\";\n }\n echo \"Set \" . $attributeToChange . \" to \" . $newValueToAssign . \"<br>\";\n }", "public function __SET($att, $valor){\r\n $this->$att = $valor;\r\n}", "public function setAttribute($key, $value)\n {\n // Before Event\n if (($_value = $this->fireEvent('model.beforeSetAttribute', [$key, $value], true)) !== null) {\n $value = $_value;\n }\n\n // First we will check for the presence of a mutator for the set operation\n // which simply lets the developers tweak the attribute as it is set on\n // the model, such as \"json_encoding\" an listing of data for storage.\n if ($this->hasSetMutator($key)) {\n $method = 'set'.Str::studly($key).'Attribute';\n // If we return the returned value of the mutator call straight away, that will disable the firing of \n // 'model.setAttribute' event, and then no third party plugins will be able to implement any kind of \n // post processing logic when an attribute is set with explicit mutators. Returning from the mutator \n // call will also break method chaining as intended by returning `$this` at the end of this method.\n $this->{$method}($value);\n }\n else {\n $this->attributes[$key] = $value;\n }\n\n // After Event\n $this->fireEvent('model.setAttribute', [$key, $value]);\n\n return $this;\n }", "public function __set(string $attribute, $value)\n {\n $setter = 'set' . ucfirst(preg_replace_callback('/_[a-zA-Z0-9]/', function ($matches) {\n $str = '';\n\n foreach ($matches as $match) {\n $str .= ucfirst(str_replace('_', '', $match));\n }\n\n return $str;\n }, $attribute));\n\n if (!method_exists($this, $setter)) {\n return null;\n }\n\n return $this->$setter($value);\n }", "public function setAttributeModel($attribute)\n {\n $this->setRequestVar($attribute->getAttributeCode());\n $this->setData('attribute_model', $attribute);\n return $this;\n }", "public function setAttribute($attribute, $value) {\n #Seems a bit too straightforward, no?\n $this->attributes[$attribute] = $value;\n return true;\n }", "public function setIdentifyingAttribute($string);", "public function writeAttribute($attribute, $value){\n\t\t#if[compile-time]\n\t\tCoreType::assertString($attribute);\n\t\t#endif\n\t\t$this->_connect();\n\t\t$this->$attribute = $value;\n\t}", "public function writeAttribute($attribute, $value) {}", "public function setAttributeName(?string $value): void {\n $this->getBackingStore()->set('attributeName', $value);\n }", "public function define_attribute($attribute,$value)\n\t\t{\n\t\t\tif(!isset($this->matchcode[$attribute]))\n\t\t\t{\n\t\t\t\terror_log(__FILE__.' name '.$attribute.' not defined in matchcode array');die();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tif($this->matchcode[$attribute][1] == 'A' || $this->matchcode[$attribute][1] == 'W')\n\t\t\t\t{\n\t\t\t\t\t$var = $this->matchcode[$attribute][0];\n\t\t\t\t\t$this->$var = $value;\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\terror_log(__FILE__.' name '.$attribute.' no write access');die();\n\t\t\t\t}\n\t\t\t}\n\t\t}", "public function __set($name, $value)\n\t{\n\t\t$this->attributes[$name] = $value;\n\t\t\n\t}", "public function setAttribute($key, $value)\n {\n // First we will check for the presence of a mutator for\n // the set operation which simply lets the developers\n // tweak the attribute as it is set on the model.\n if ($this->hasSetMutator($key)) {\n $method = 'set' . studly_case($key) . 'Attribute';\n\n return $this->{$method}($value);\n }\n\n // TODO: handle dates\n\n // TODO: handle casts/datatypes\n\n $this->attributes[$key] = $value;\n }", "public function setAttribute($attribute, $value)\n\t{\n\t\t$this->attributes[$attribute] = $value;\n\n\t\t$this->pdo->setAttribute($attribute, $value);\n\n\t\treturn $this;\n\t}", "public function __set( $name, $value )\n\t{\n\t\t$this->attributes[$name] = $value;\n\t}", "public function __set($name, $value)\n {\n $this->attributes[$name] = $value;\n }", "public function __set($attrib, $value) {\r\n if (in_array($attrib, $this->commonAttribs)) {\r\n $this->$attrib = $value;\r\n }\r\n }", "public function __set($attrib, $value) {\r\n if (in_array($attrib, $this->commonAttribs)) {\r\n $this->$attrib = $value;\r\n }\r\n }", "public function setAttribute($attribute, $value)\n {\n $this->attributes[$attribute] = $value;\n\n return $this;\n }", "public function _set($key, $value){\r\n\t\t$this->_attributes[$key] = $value;\r\n\t}", "public function setValue(string $attr, $value)\n {\n $this->checkAttribute($attr);\n $this->attributes[$attr] = $value;\n }", "public function setAttribute($attr_name, $attr_value)\n {\n $this->attributes[$attr_name] = $attr_value;\n return $this;\n }", "public function setAttribute(String $attr, $value) {\n return $this->attributes->set($attr, $value);\n }", "public function setAttribute(string $attribute, $value): self\n {\n $this->attributes[ $attribute ] = $value;\n\n return $this;\n }", "public function __set($name, $value)\n {\n $this->_attributes[$name] = $value;\n }", "public function setAttribute($key, $value = null);", "public function setAttribute($name, $value)\n {\n if (in_array($name, static::$fields)) {\n $this->attributes[$name] = $value;\n }\n }", "public function setAttributeValue( Inx_Api_Recipient_Attribute $oAttr, $mNewValue, Inx_Api_IndexSelection $oSelection=null );", "public function offsetSet($attribute, $value)\n {\n $this->attributeList[$attribute] = $value;\n }", "public function setAttribute($attribute, $value)\n {\n //Check this attribute is support\n if (isset($this->input_map[$attribute])) {\n $this->input_map[$attribute] = $value;\n\n return $value;\n } else {\n throw new AttributeInvalidException('Attribute not supported by this library');\n }\n }", "public function setViaTableAttributesValue($value);", "public function __set($name, $value ) {\r\n \r\n // first check whether the given name is valid attribute or not\r\n // for that we are gonna use a switch statement\r\n switch($name) {\r\n \r\n case \"username\" :\r\n $this -> first_name = $value;\r\n break;\r\n default : return \"Invalid\"; // when the passes attribute doesnt exist\r\n }\r\n }", "public function __set($name, $value)\n {\n if ($this->hasAttribute($name)) {\n $this->_attributes[$name] = $value;\n } else {\n parent::__set($name, $value);\n }\n }", "public function __set($name, $value)\n\t{\n\t\tswitch($name) {\n\t\t\tcase 'USER_GROUP_ID':\n\t\t\t\t//if the id isn't null, you shouldn't update it!\n\t\t\t\tif( !is_null($this->USER_GROUP_ID) ) {\n\t\t\t\t\tthrow new Exception('Cannot update USER_GROUP_ID!');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\t\t\t\n\t\t//set the attribute with the value\n\t\t$this->$name = $value;\n\t}", "public function assignAttribute($attribute, $data)\n {\n return $this->attributes()->save(\n Attribute::whereName($attribute)->firstOrFail(),\n ['data' => $data]\n );\n }", "public function attribute(string $attribute): self\n {\n $this->attribute = $attribute;\n\n return $this;\n }", "public function __set($key, $value)\n {\n $this->attributes[$key] = $value;\n }", "public function set($attribute, $value = null)\n {\n parent::set($attribute, $value);\n \n return $this;\n }", "public function setAttr($attr) {\n\t\t$this->attr = $attr;\n\t\treturn $this;\n\t}", "protected function setAttribute(string $attribute, $value)\n {\n $this->$attribute = $value;\n\n return $this;\n }", "public function attribute(string $attribute) : self\n {\n $this->attribute = $attribute;\n\n return $this;\n }", "public function setAttribute($name, $value)\n\t{\n\t\t// If value is valid timestamp and the underlying column type is datetime, convert to datetime object\n\t\tif (DateTimeHelper::isValidTimeStamp($value))\n\t\t{\n\t\t\t$table = blx()->db->schema->getTable(\"{{{$this->getTableName()}}}\");\n\t\t\t$column = $table->getColumn($name);\n\t\t\tif ($column->dbType == ColumnType::DateTime)\n\t\t\t{\n\t\t\t\t$dt = new DateTime('@'.$value);\n\t\t\t\t$value = $dt;\n\t\t\t}\n\t\t}\n\n\t\tif (property_exists($this, $name))\n\t\t{\n\t\t\t$this->$name = $value;\n\t\t}\n\t\telse if (isset($this->getMetaData()->columns[$name]))\n\t\t{\n\t\t\t$this->_attributes[$name] = $value;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}", "public function setAttribute($key, $value)\n {\n $this->attributes[$key] = $value;\n }", "public function setAttribute($attribute, $value)\n {\n $this->_options[$attribute] = $value;\n return true;\n }", "public function setAttribute ($name, $value)\n {\n\n $this->attributes[$name] = $value;\n\n }", "public function __set($atributo, $valor) {\n\t\t\t// $this->modelo = $valor;\n\t\t\t$this->$atributo = $valor;\n\t\t}", "public function setAttribute($name, $value)\n {\n $this->attributes[$name] = $value;\n }", "public function setAttribute($name, $value)\n {\n $this->attributes[$name] = $value;\n }", "public function setAttribute($name, $value)\n {\n $this->attributes[$name] = $value;\n }", "public function attribute($name, $value){\n $this->_attributes[$name] = $value;\n return $this;\n }", "public function __set($name, $value) {\n\t\t$this->setAttribute($name, $value);\n\t}", "public function onUnsafeAttribute($name, $value)\n {\n $this->$name = $value;\n }", "public function setAttribute($key, $value)\n {\n // First we will check for the presence of a mutator for the set operation\n // which simply lets the developers tweak the attribute as it is set on\n // the model, such as \"json_encoding\" an listing of data for storage.\n if ($this->hasSetMutator($key)) {\n $method = 'set'.Str::studly($key).'Attribute';\n\n return $this->{$method}($value);\n }\n\n if ($this->isJsonCastable($key) && ! is_null($value)) {\n $value = $this->castAttributeAsJson($key, $value);\n }\n\n // If this attribute contains a JSON ->, we'll set the proper value in the\n // attribute's underlying array. This takes care of properly nesting an\n // attribute in the array's value in the case of deeply nested items.\n if (Str::contains($key, '->')) {\n return $this->fillJsonAttribute($key, $value);\n }\n\n $this->attributes[$key] = $value;\n\n return $this;\n }", "public function setAttribute ($key, $value) {\n return parent::setAttribute(camel_case($key), $value);\n }", "public function setAttributeMetadata($attributeName, $definition){\n\t\tActiveRecordMetaData::setAttributeMetadata($this->_source, $this->_schema, $attributeName, $definition);\n\t}", "public function setAttribute($key, $value)\n {\n // First we will check for the presence of a mutator for the set operation\n // which simply lets the developers tweak the attribute as it is set.\n if ($this->hasSetMutator($key)) {\n $method = 'set' . Str::studly($key) . 'Attribute';\n\n return $this->{$method}($value);\n }\n\n // If an attribute is listed as a \"date\", we'll convert it from a DateTime\n // instance into a form proper for storage on the database tables using\n // the connection grammar's date format. We will auto set the values.\n if ($value && in_array($key, $this->getDates())) {\n $value = $this->asDateTime($value);\n }\n\n // If an attribute is listed as media, we'll convert it to the correct\n // media object.\n if (in_array($key, $this->media)) {\n $value = new Media($value);\n }\n\n $this->attributes[$key] = $value;\n\n return $this;\n }", "public function setAttributes();", "public function __set($attr, $value)\n {\n return $this->set($attr, $value);\n\n return null;\n }", "public function setAttribute($key, $value)\n {\n //The type of a value used in the app may be different then how it is \n //stored in the database. Therefore, mutate it to a value to be stored\n //in the database.\n $value = $this->encodeAttributeValue($key,$value);\n\n return parent::setAttribute($key, $value);\n }", "public function setAttribute($attribute, $value)\n {\n // Give mutator priority over custom casts\n if ($this->hasSetMutator($attribute)) {\n $method = 'set' . studly_case($attribute) . 'Attribute';\n\n return $this->{$method}($value);\n }\n\n if (array_key_exists($attribute, $this->filterCustomCasts())) {\n /** @var $customCastObject CustomCastBase */\n $customCastObject = $this->getCustomCastObject($attribute);\n\n $this->attributes[$attribute] = $customCastObject->setAttribute($value);\n\n return $this;\n }\n\n parent::setAttribute($attribute, $value);\n }", "public function __set($name, $value)\n\t{\n\t\tswitch($name) {\n\t\t\tcase 'APPLICANTS_FAMILY_DATA_SIBLINGS_ID':\n\t\t\t\t//if the id isn't null, you shouldn't update it!\n\t\t\t\tif( !is_null($this->APPLICANTS_FAMILY_DATA_SIBLINGS_ID) ) {\n\t\t\t\t\tthrow new Exception('Cannot update APPLICANTS_FAMILY_DATA_SIBLINGS_ID!');\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t}\n\t\t\t\n\t\t//set the attribute with the value\n\t\t$this->$name = $value;\n\t}", "public function set($attr, $value) {\n return array_key_exists($attr, $this->_private_attributes) ? $this->_private_attributes[$attr] = $value : false;\n }", "public function setAttribute($type, $value)\n {\n $this->attributes[$type] = $value;\n }", "abstract public function writeAttribute($name, $value);", "public function setAttribute($name, $value) {\n\t\tif (property_exists($this, $name))\n\t\t\t$this->$name = $value;\n\t\telse\n\t\t\t$this->_attributes[$name] = $value;\n\t\treturn true;\n\t}", "public function setAttribute($name, $value)\r\n\t{\r\n\t\treturn $this->__set($name, $value);\r\n\t}", "public function setAttribute($attribute, $value)\n {\n $this->options[$attribute] = $value;\n\n return true;\n }" ]
[ "0.76862323", "0.7663895", "0.7509411", "0.7432366", "0.74173576", "0.7377658", "0.73572356", "0.7339858", "0.7298222", "0.7247126", "0.7244083", "0.7210965", "0.7206639", "0.7200511", "0.7169823", "0.7151366", "0.6981272", "0.6944375", "0.69323546", "0.6908821", "0.6845614", "0.68092847", "0.6779865", "0.67470306", "0.67430675", "0.6717675", "0.6717675", "0.67009366", "0.6673244", "0.6636301", "0.6609482", "0.6591332", "0.65761495", "0.65700305", "0.6539604", "0.6521993", "0.6518836", "0.6477977", "0.64678305", "0.6445005", "0.6436279", "0.6430088", "0.6420415", "0.64017504", "0.6396762", "0.63964385", "0.6379713", "0.63781464", "0.6369329", "0.63493854", "0.6349245", "0.6349245", "0.6342825", "0.6341871", "0.6339584", "0.63042384", "0.6297194", "0.6295515", "0.6289071", "0.6278926", "0.6275474", "0.62737364", "0.62691224", "0.62600243", "0.62590533", "0.6241856", "0.6238441", "0.62357545", "0.6234088", "0.6220482", "0.62185603", "0.61991996", "0.61932856", "0.61930716", "0.6188934", "0.61806417", "0.6173147", "0.6148511", "0.6144943", "0.61331356", "0.6110919", "0.6110919", "0.6110919", "0.6104895", "0.60853195", "0.60832834", "0.60562265", "0.60552156", "0.60494167", "0.60482347", "0.6045298", "0.60390157", "0.6025012", "0.6018069", "0.6017651", "0.6008482", "0.5993203", "0.59858996", "0.5983539", "0.5983265", "0.5973465" ]
0.0
-1
Get a new query builder instance for the connection.
protected function newBaseQueryBuilder() { $connection = $this->getConnection(); return new QueryBuilder($connection, $connection->getPostProcessor()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function newQuery(): Builder\n {\n return new static($this->connection);\n }", "public function newQuery() {\n return new Builder($this->connection);\n }", "public function newQuery()\n {\n return new Builder($this->connection, $this->processor);\n }", "public function newQuery()\n {\n return new Builder($this->connection, $this->grammar, $this->processor);\n }", "public function newQueryBuilder()\n {\n return new Builder($this->config);\n }", "public function query()\n\t{\n\t\treturn new Builder(\n\t\t\t$this, $this->getQueryGrammar(), $this->getPostProcessor()\n\t\t);\n\t}", "public function newQuery()\n {\n $builder = new Builder($this->newBaseQueryBuilder());\n\n $builder->setModel($this);\n\n return $builder;\n }", "public function newQuery()\n {\n $datasource = $this->getDatasource();\n\n $query = new Builder($datasource, $datasource->getPostProcessor());\n\n return $query->setModel($this);\n }", "public function createQueryBuilder ()\r\n {\r\n return new QueryBuilder($this);\r\n }", "public function query()\n {\n return new QueryBuilder(\n $this, $this->getQueryGrammar(), $this->getPostProcessor()\n );\n }", "public function query()\n {\n return new QueryBuilder(\n $this, $this->getQueryGrammar(), $this->getPostProcessor()\n );\n }", "public static function query()\n {\n QueryBuilder::$dataSource = true;\n\n return new QueryBuilder();\n }", "public static function create()\n {\n return new QueryConfigurationBuilder();\n }", "protected function newBaseQueryBuilder()\n {\n $conn = $this->getConnection();\n\n $grammar = $conn->getQueryGrammar();\n\n $builder = new Builder($conn, $grammar, $conn->getPostProcessor());\n\n if (isset($this->rememberFor)) {\n $builder->remember($this->rememberFor);\n }\n\n if (isset($this->rememberCacheTag)) {\n $builder->cacheTags($this->rememberCacheTag);\n }\n\n //if (isset($this->rememberCachePrefix)) {\n //ToDo: see if using server_hostname or whatever speeds this up\n $tenant = app(\\Hyn\\Tenancy\\Environment::class)->tenant();\n if(isset($tenant->id)){\n $set_tenant = $tenant->id;\n }else{\n $set_tenant = \"default\";\n }\n $builder->prefix($set_tenant);\n //}\n\n if (isset($this->rememberCacheDriver)) {\n $builder->cacheDriver($this->rememberCacheDriver);\n }\n\n return $builder;\n }", "protected function createQueryBuilder()\n {\n $builder = new QueryBuilder();\n return $builder;\n }", "public function createQueryBuilder()\n {\n return new QueryBuilder($this->db);\n }", "protected function newBaseQueryBuilder() {\n\n\n\t\t\t$connection = $this->getConnection();\n\n\n\t\t\t// we resolve instance here using service container\n\t\t\treturn app(\\MehrIt\\LaraDbExt\\Query\\Builder::class, [\n\t\t\t\t'connection' => $connection,\n\t\t\t]);\n\t\t}", "public function query()\n {\n return new \\Rubberband\\Elastic\\Laravel\\Query\\Builder($this);\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n $builder = in_array(self::class, config('autocache.models'))\n ? \\LaravelAutoCache\\Builder::class\n : \\Illuminate\\Database\\Query\\Builder::class;\n\n return new $builder($connection, $connection->getQueryGrammar(), $connection->getPostProcessor());\n }", "public function getBuilder()\n {\n $builder = new Query\\Builder($this->getKeys());\n $builder->setVisitors([\n new Visitors\\EqVisitor($builder),\n new Visitors\\NotEqVisitor($builder),\n new Visitors\\GtVisitor($builder),\n new Visitors\\GteVisitor($builder),\n new Visitors\\LtVisitor($builder),\n new Visitors\\LteVisitor($builder),\n new Visitors\\CtVisitor($builder),\n new Visitors\\SwVisitor($builder),\n new Visitors\\EwVisitor($builder),\n new Visitors\\AndVisitor($builder),\n new Visitors\\OrVisitor($builder),\n new Visitors\\NotInVisitor($builder),\n new Visitors\\InVisitor($builder),\n new Visitors\\NullVisitor($builder),\n new Visitors\\NotNullVisitor($builder),\n ]);\n\n return $builder;\n }", "protected function newBaseQueryBuilder()\n {\n $conn = $this->getConnection();\n\n $grammar = $conn->getQueryGrammar();\n\n return new QueryBuilder($conn, $grammar, $conn->getPostProcessor());\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return $connection->query();\n }", "public function newQuery()\n {\n $builder = $this->newAlfrescoBuilder($this->getConnection());\n $builder->setModel($this);\n return $builder;\n }", "protected function retrieveOrCreateQueryInstance()\n {\n return $this->queryBuilder ?? $this->queryBuilder = new $this->model();\n }", "public function createQueryBuilder()\n {\n return new Query\\QueryBuilder($this);\n }", "public function getQuery(): Builder;", "public function newQuery()\n {\n return new self($this->connection, $this->processor);\n }", "protected function newBaseQueryBuilder()\n {\n return $this->getConnection()->query();\n }", "private function createQueryBuilder(): QueryBuilder\n {\n $queryBuilder = new QueryBuilder();\n $queryBuilder->table(($this->model)::TABLE);\n $this->applyCriteria($queryBuilder);\n $this->applyQueryBuilderUses($queryBuilder);\n return $queryBuilder;\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection,\n $connection->getQueryGrammar(),\n $connection->getPostProcessor()\n );\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "protected function query() {\n\t\treturn new Query($this);\n\t}", "public function getQueryInstance()\n {\n return $this->queryBuilder;\n }", "public function queryBuilder()\n\t{\n\t\treturn \\ORM::for_table($this->table);\n\t}", "public static function query()\n {\n return (new static)->newQuery();\n }", "public static function query()\n {\n return (new static)->newQuery();\n }", "public function queryBuilder();", "public function queryBuilder();", "protected function query(): Builder\n {\n $query = $this->make()->newQuery();\n\n // Loads the active model if set, for use in getOne(), update(), delete(), etc.\n if ($this->activeModelInstance) {\n $query->where(\n $this->activeModelInstance->getKeyName(),\n $this->activeModelInstance->getKey()\n );\n }\n\n return $query;\n }", "protected function newBaseQueryBuilder() {\n\n $connection = $this->getConnection();\n\n return new Builder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "public function newQuery()\n {\n return new self($this->connection, $this->grammar, $this->getProcessor());\n }", "public function getQuery() : QueryBuilder\n {\n return $this->query;\n }", "public function getQueryBuilder(): QueryBuilder\n {\n if (! $this->tableName) {\n throw new \\Madj2k\\SoapApi\\Exception(\n 'No tableName set',\n 1690524569\n );\n }\n\n if (! $this->queryBuilder instanceof \\TYPO3\\CMS\\Core\\Database\\Query\\QueryBuilder) {\n\n /** @var \\TYPO3\\CMS\\Core\\Database\\ConnectionPool $connectionPool */\n $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);\n\n /** @var \\TYPO3\\CMS\\Core\\Database\\Query\\QueryBuilder $queryBuilder */\n $this->queryBuilder = $connectionPool->getQueryBuilderForTable($this->tableName);\n $this->queryBuilder->getRestrictions()->removeAll();\n }\n\n return $this->queryBuilder;\n }", "public function getBuiltQb()\n {\n $qb = clone $this->qb;\n\n $this->setSelectFrom($qb);\n $this->setJoins($qb);\n $this->setWhere($qb);\n $this->setOrderBy($qb);\n $this->setLimit($qb);\n\n return $qb;\n }", "public function query(): QueryBuilder;", "public function createQueryBuilder(): QueryBuilder\n {\n return new QueryBuilder($this->db, [\n 'separator' => \"\\n\"\n ]);\n }", "public function query()\n {\n return new SingleStoreBuilder($this);\n }", "protected function newBuilder(): Builder\n {\n return $this->builder = $this->game_play->newQuery();\n }", "public function getQueryBuilder(){\n return $this->getDatabaseConnection()->createQueryBuilder();\n }", "public static function query()\n {\n // Create a new model instance for the query to ensure\n // that the model's initialize() method gets called.\n // Otherwise, the property definitions will be incomplete.\n $model = new static();\n\n return new Query($model);\n }", "public function query()\n {\n // Provide this objects MySQL connection\n return new Query($this->mysql, $this->parent);\n }", "public function query(): AppointmentQueryBuilder\n {\n return new AppointmentQueryBuilder($this->client);\n }", "public function getQueryBuilder() {\n return $this->queryBuilder;\n }", "public function build()\n {\n return new QueryConfiguration(\n $this->drawCall,\n $this->start,\n $this->length,\n $this->searchValue,\n $this->searchRegex,\n $this->columSearches,\n $this->columnOrders\n );\n }", "public static function getQueryBuilder()\n {\n return self::getLink()->createQueryBuilder();\n }", "public function getQueryBuilder(): SQLQueryBuilder;", "public function newEloquentBuilder($query)\n {\n return new QueryBuilder($query);\n }", "public function query(): Query\n {\n return new Query($this->getWebservice(), $this);\n }", "protected function newBaseQueryBuilder(): QueryBuilderMutator\n {\n $conn = $this->getConnection();\n $grammar = $conn->getQueryGrammar();\n $builder = new QueryBuilderMutator($conn, $grammar, $conn->getPostProcessor());\n if (!isset($this->_service_channel)) {\n throw new Exception(\"Model does not contain service channel\");\n }\n $builder->model=$this->toArray();\n $builder->_service_channel = $this->_service_channel;\n $builder->service_connection = new OutboundStream();\n return $builder;\n }", "protected function getQueryBuilder($reset = true, $open = false)\n {\n $connection = $this->getConnection($reset, $open);\n \\Yii::$container->set('db', $connection);\n return new QueryBuilder($connection);\n }", "public function createQuery()\n {\n $query = &atknew(\"atk.db.atk{$this->m_current_clusternode->m_type}query\");\n $query->m_db = $this;\n return $query;\n }", "abstract protected function initQueryBuilder(): Builder;", "public function build()\n {\n $query = $this->qb;\n if ($this->getWhereExpression()) {\n $query->where($this->getWhereExpression());\n }\n foreach ($this->getWhereParameters() as $key => $param) {\n $query->setParameter($key, $param, is_array($param) ? Connection::PARAM_STR_ARRAY : null);\n }\n\n return $query;\n }", "public function newQuery()\n {\n return $this->registerGlobalScopes($this->newQueryWithoutScopes());\n }", "public function newQueryWithoutScopes()\n {\n $builder = $this->newBuilder();\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n return $builder->setModel($this);\n }", "protected function createQuery()\n {\n return \\PropelQuery::from($this->class);\n }", "public static function createQuery()\n\t{\n\t\treturn new ActiveQuery(['modelClass' => get_called_class()]);\n\t}", "public function query(): ?Builder;", "public function newEloquentBuilder($query);", "public function createQueryBuilder($databaseConnection){\n return $databaseConnection->getQueryBuilder();\n }", "public function getQueryBuilder();", "public function getQueryBuilder();", "public function query()\n {\n if ($model = $this->model) {\n return new $model();\n }\n }", "public function newQueryWithoutScopes(): Builder\n {\n return $this->newModelQuery();\n }", "public function newEloquentBuilder($query) {\n\n\t\t\t// we resolve instance here using service container\n\t\t\t$ret = app(\\MehrIt\\LaraDbExt\\Eloquent\\Builder::class, [\n\t\t\t\t'query' => $query,\n\t\t\t]);\n\n\n\t\t\treturn $ret;\n\t\t}", "public function newEloquentBuilder($query)\n {\n return new Builder($query);\n }", "public function newEloquentBuilder($query)\n {\n return new Builder($query);\n }", "public function newEloquentBuilder($query)\n {\n return new Builder($query);\n }", "public function newEloquentBuilder($query)\n {\n return new Builder($query);\n }", "public function newEloquentBuilder($query)\n {\n return new Builder($query);\n }", "public function getDocumentBuilder()\n {\n return Document::query()\n ->where(function($query) {\n return $query->whereRaw($this->getExpandedQuery());\n });\n }", "public function newQueryWithoutScopes()\n {\n $builder = $this->newEloquentBuilder($this->newBaseQueryBuilder());\n\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n\n return $builder->setModel($this)\n //->setfillableColumns($this->fillable)\n ->with($this->with)\n ->withCount($this->withCount);\n }", "public function toBase() : QueryBuilder\n {\n return $this->applyScopes()->getQuery();\n }", "public function build(): ShiftQuery\n {\n return CoreHelper::clone($this->instance);\n }", "public function createQuery(): QueryInterface\n {\n /** @var QueryInterface $query */\n $query = $this->objectManager->get(QueryInterface::class);\n $query->setConfiguration($this->getConfiguration());\n\n return $query;\n }", "public function newQuery($excludeDeleted = true)\n {\n $builder = new EloquentQueryBuilder($this->newBaseQueryBuilder());\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n $builder->setModel($this)->with($this->with);\n\n if ($excludeDeleted and $this->softDelete) {\n $builder->whereNull($this->getQualifiedDeletedAtColumn());\n }\n\n return $builder;\n }", "public function builder()\n {\n return new Builder($this);\n }", "protected function _getQuery()\n {\n return $this->_queryFactory->get();\n }", "private function getInitialisedQueryBuilder()\n\t{\n\t\t$qb = $this->em->createQueryBuilder()\n\t\t\t->add(\"select\", \"r\")\n\t\t\t->add(\"from\", \"RecruiterRecruitBundle:Recruit r\")\n\t\t;\n\t\t\n\t\treturn $qb;\n\t}", "public function getQueryBuilder()\n {\n if (null === $this->queryBuilder) {\n\n $queryBuilder = $this->generator->list->query_builder;\n\n if ( null !== $this->generator->list->query_builder\n && false !== $this->generator->list->query_builder\n && method_exists($this->getRepository(), $queryBuilder)) {\n $this->queryBuilder = $this->getRepository()->$queryBuilder();\n } else {\n $this->queryBuilder = $this->getRepository()->createQueryBuilder('e');\n }\n\n foreach ($this->sort as $field => $order) {\n $this->queryBuilder->addOrderBy('e.' . $field, $order);\n }\n\n $this->processFilters();\n\n }\n return $this->queryBuilder;\n }", "public function getQueryBuilder()\n {\n return $this->qb;\n }", "public function getQueryBuilder()\n {\n return $this->qb;\n }", "protected function createCommandBuilder()\n {\n return new CFirebirdCommandBuilder($this);\n }", "public function createQuery()\n {\n $query = $this->persistenceManager->createQueryForType($this->objectType);\n if ($this->defaultOrderings !== []) {\n $query->setOrderings($this->defaultOrderings);\n }\n if ($this->defaultQuerySettings !== null) {\n $query->setQuerySettings(clone $this->defaultQuerySettings);\n }\n return $query;\n }", "public function query(): TagQueryBuilder\n {\n return new TagQueryBuilder($this->client);\n }", "public function getCollectionQuery(): Builder;", "public function db_builder() {\n\t\treturn $this->_db_builder;\n\t}", "protected function getQueryBuilder()\n {\n if (!$this->getOption('query_builder')) {\n return null;\n }\n\n if (!$this->queryBuilder) {\n $qb = $this->getOption('query_builder');\n\n if ($qb instanceof \\Closure) {\n $class = $this->getOption('class');\n $em = $this->getOption('em');\n $qb = $qb($em->getRepository($class));\n\n if (!$qb instanceof QueryBuilder) {\n throw new InvalidOptionsException(\n 'The closure in the option \"query_builder\" should return a QueryBuilder instance',\n array('query_builder'));\n }\n }\n\n $this->queryBuilder = $qb;\n }\n\n return $this->queryBuilder;\n }", "public function getResultQueryBuilder()\n {\n $qb = clone $this->queryBuilder;\n $this->_addSearch($qb);\n\n return $qb;\n }" ]
[ "0.8587647", "0.8416317", "0.83990955", "0.82954884", "0.8069311", "0.79089075", "0.78973097", "0.78703505", "0.78694636", "0.78647316", "0.78647316", "0.78541964", "0.78433806", "0.78215426", "0.779711", "0.7793786", "0.7725204", "0.7708242", "0.7701215", "0.76308465", "0.7613234", "0.7561306", "0.75576746", "0.7557445", "0.7515659", "0.7514547", "0.75138366", "0.7493375", "0.7486111", "0.74858785", "0.7476432", "0.7476432", "0.7450568", "0.7449578", "0.73840094", "0.7380778", "0.7380778", "0.7373987", "0.7373987", "0.7364316", "0.73595726", "0.7324977", "0.72514", "0.72446275", "0.7196166", "0.71767867", "0.71341586", "0.7127826", "0.7113846", "0.7074343", "0.7037406", "0.69995606", "0.6993659", "0.69756025", "0.6972172", "0.6959803", "0.69115317", "0.69028187", "0.6900923", "0.6886269", "0.6874321", "0.6851328", "0.6842736", "0.6803889", "0.6792722", "0.67084545", "0.6700097", "0.66895854", "0.6688354", "0.66860634", "0.66785663", "0.66772485", "0.66772485", "0.66543096", "0.6653932", "0.6635301", "0.66337484", "0.66337484", "0.66337484", "0.66337484", "0.66337484", "0.6621506", "0.66198516", "0.66064095", "0.659471", "0.6588562", "0.6576954", "0.65762025", "0.6529959", "0.6523614", "0.64884114", "0.6475606", "0.6475606", "0.6466748", "0.6452017", "0.64448446", "0.6440766", "0.64252776", "0.6420553", "0.64162505" ]
0.7611428
21
Convert a DateTime to a storable UTCDateTime object.
public function fromDateTime($value) { // If the value is already a UTCDateTime instance, we don't need to parse it. if ($value instanceof Timestamp) { return $value; } // Let Eloquent convert the value to a DateTime instance. if (!$value instanceof DateTime) { $value = parent::asDateTime($value); } return new Timestamp($value->timestamp); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function dateToUTC(\\DateTime $dateTime)\n {\n return (clone $dateTime)->setTimezone(new \\DateTimeZone('UTC'));\n }", "public function convertFromUserTimezonetoUTC($datetime,$user) {\n\n //$user_tz = 'America/New_York';\n $user_tz = $user->getPreferences()->getTimezone();\n\n //echo \"input datetime=\".$datetime->format('Y-m-d H:i').\"<br>\";\n $datetimeTz = new \\DateTime($datetime->format('Y-m-d H:i'), new \\DateTimeZone($user_tz) );\n $datetimeUTC = $datetimeTz->setTimeZone(new \\DateTimeZone('UTC'));\n //echo \"output datetime=\".$datetimeUTC->format('Y-m-d H:i').\"<br>\";\n\n return $datetimeUTC;\n }", "public function fromDateTime($value)\n {\n // ensure that if the datetime or carbon object we were given contained a timezone, we convert to the app timezone (instead of stripping it) before outputting a storable string\n if ($value) {\n return $this->asDateTime($value)->setTimeZone(config('app.timezone'))->format($this->getDateFormat());\n }\n\n return $value;\n }", "static function getDateTimeUTCTimestamp()\n {\n isset(self::$_data[self::KEY_PHP_DATETIME_UTC_TIMESTAMP]) || self::$_data[self::KEY_PHP_DATETIME_UTC_TIMESTAMP] = new \\DateTime(NULL, new \\DateTimeZone(\"UTC\"));\n return clone self::$_data[self::KEY_PHP_DATETIME_UTC_TIMESTAMP];\n }", "public function utcdate($datetime)\n {\n return R::isodatetime(strtotime($datetime) - date('Z'));\n }", "protected static function convertDateTime(DateTime $datetime)\n {\n static $useFromMutable;\n\n if (null === $useFromMutable) {\n $useFromMutable = method_exists(new DateTimeImmutable(), 'createFromMutable');\n }\n\n if ($useFromMutable) {\n return DateTimeImmutable::createFromMutable($datetime);\n }\n\n return new DateTimeImmutable($datetime->format(self::DATE_LOCALE), $datetime->getTimeZone());\n }", "public function utcDateTime()\n\t{\n\t\treturn new \\DateTime('now', new \\DateTimezone('UTC'));\n\t}", "public static function to_server_datetime( $datetime, $format = 'Y-m-d H:i:s' )\n {\n if( is_null( $datetime ) || !is_string( $datetime ) ) return $datetime;\n\n $datetime_obj = self::get_datetime_object( $datetime );\n $datetime_obj->setTimeZone( self::get_timezone_object( true ) );\n return $datetime_obj->format( $format );\n }", "public static function get_datetime_object( $datetime = NULL, $server = false )\n {\n return new \\DateTime( $datetime, self::get_timezone_object( $server ) );\n }", "public function toDateTime() : \\DateTime\n {\n return new \\DateTime($this->format('Y-m-d H:i:s.u'), $this->getTimezone());\n }", "private function createQVariantDateTime(\\DateTime $dt)\n {\n // properties. Instead, convert everything to UTC so we send absolute\n // timestamps irrespective of actual timezone.\n if ($this->protocol->isLegacy()) {\n $dt = clone $dt;\n $dt->setTimeZone(new \\DateTimeZone('UTC'));\n }\n\n // legacy protocol uses limited QTime while newer datagram protocol uses proper QDateTime\n return new QVariant($dt, $this->protocol->isLegacy() ? Types::TYPE_QTIME : Types::TYPE_QDATETIME);\n }", "public function toDateTime()\n {\n $dateTime = new DateTime('', $this->getTimezone());\n $dateTime->setTimestamp(parent::getTimestamp());\n\n return $dateTime;\n }", "public function setByDateTime(\\DateTime $dateTime) {}", "public function toDateTime() : DateTimeInterface\n {\n if (!is_int($this->y) || !is_int($this->m) || !is_int($this->d)) {\n throw new \\LogicException('DateTime can not be created from incompletely populated DateTimeData.');\n }\n\n $datetime = new DateTime();\n $datetime->setTimezone($this->timezone);\n $datetime->setDate($this->y, $this->m, $this->d);\n $datetime->setTime(0, 0, 0);\n\n if (is_int($this->h) && is_int($this->i) && is_int($this->s)) {\n $datetime->setTime($this->h, $this->i, $this->s);\n }\n\n return $datetime;\n }", "private function createUTCDateTime($date)\n {\n $dateTime = new \\DateTime($date);\n $dateTime->setTimezone(new \\DateTimeZone('UTC'));\n\n return $dateTime;\n }", "public static function from_server_datetime( $datetime, $format = 'Y-m-d H:i:s' )\n {\n if( is_null( $datetime ) || !is_string( $datetime ) ) return $datetime;\n\n $datetime_obj = self::get_datetime_object( $datetime, true ); // server's timezone\n $datetime_obj->setTimeZone( self::get_timezone_object() );\n return $datetime_obj->format( $format );\n }", "public function SetFromDateTime( DateTime $date_time ){\r\n\t\t\t$this->SetFromTimestamp( $date_time->format( 'U' ) );\r\n\t\t}", "public function toDateTime(): \\DateTime\n {\n return \\DateTime::createFromImmutable($this->value);\n }", "public static function convertToDateTime($value)\n {\n if ($value instanceof \\DateTime) {\n return $value;\n }\n\n if (substr($value, -1) == 'Z') {\n $value = substr($value, 0, strlen($value) - 1);\n }\n\n return new \\DateTime($value, new \\DateTimeZone('UTC'));\n }", "public function toDateTime(): \\DateTime\n {\n return new \\DateTime($this->getTimestamp());\n }", "public function setDateTime(?DateTime $value): void {\n $this->getBackingStore()->set('dateTime', $value);\n }", "public function GetAsDateTime(){\r\n\t\t\treturn new DateTime( $this->GetAsMySQLDateTime() );\r\n\t\t}", "public function getDatetimeObject($datetime = null)\n {\n if ($datetime instanceof DateTimeInterface) {\n return $datetime;\n }\n\n if (is_integer($datetime)) {\n $datetime = date('Y-m-d H:i:s', $datetime);\n }\n\n return new DateTime($datetime);\n }", "function convertDateTimeToUsersTimeZone(\n $strDateTime, \n $user_id,\n $unixTimeStamp = false){\n\n $origPhpTimeZone = date_default_timezone_get();\n date_default_timezone_set('GMT');\n $dateTime = new DateTime($strDateTime);\n $strTimeZone = \n $this->controller->User->getTimeZone($user_id);\n //$this->log(\"New time zone: \" . $strTimeZone . \"\\n\" , LOG_DEBUG);\n $dateTimeZone = new DateTimeZone($strTimeZone);\n $dateTime->setTimezone($dateTimeZone);\n //$unixTimeStamp = $dateTime->format('U');\n // DB stores times as GMT, format like \"2008-05-06 03:35:01\"\n $dbFormatTimeStamp = $dateTime->format(MYSQL_DATETIME_FORMAT);\n /**$this->log(\"DT from DB (GMT): \" . $strDateTime .\n \". Applying time zone: \" . $dateTimeZone->getName() .\n \". Time w/ time zone applied, in DB format: \" . \n $dbFormatTimeStamp .\n \". Time w/ time zone applied, in U format: \" . \n strtotime($dbFormatTimeStamp) .\n \"\\n\" , LOG_DEBUG);*/\n if ($unixTimeStamp === true){\n $dbFormatTimeStamp = strtotime($dbFormatTimeStamp);\n }\n\n // set back to ini, just to be safe\n date_default_timezone_set($origPhpTimeZone);\n \n return $dbFormatTimeStamp;\n }", "public function reverseTransform($datetime)\n {\n // datetime optional\n if (!$datetime) {\n return null;\n }\n\n return date_create_from_format('d/m/Y H:i', $datetime, new \\DateTimeZone('Europe/Paris'));\n }", "public function convertToUtc(): self\n {\n if ($this->value->getTimezone()->getName() !== 'UTC') {\n return new self(value: $this->value->setTimezone(new DateTimeZone('UTC')));\n }\n\n return $this;\n }", "function toUTC()\r\n {\r\n if($this->tz->getOffset($this) > 0) {\r\n $this->subtrairSegundos(intval($this->tz->getOffset($this) / 1000));\r\n } else {\r\n $this->adSegundos(intval(abs($this->tz->getOffset($this)) / 1000));\r\n }\r\n $this->tz = new Date_TimeZone('UTC');\r\n }", "protected function asDateTime($value)\n {\n // Convert UTCDateTime instances.\n if ($value instanceof Timestamp) {\n return Carbon::createFromTimestamp($value->time());\n }\n\n return parent::asDateTime($value);\n }", "function convertTimeToUTCzone($str, $userTimezone, $format = 'Y-m-d H:i:s') {\n\n $new_str = new DateTime($str, new DateTimeZone($userTimezone));\n\n $new_str->setTimeZone(new DateTimeZone('UTC'));\n\n return $new_str->format( $format);\n}", "public function getDateTime(): ?DateTime {\n $val = $this->getBackingStore()->get('dateTime');\n if (is_null($val) || $val instanceof DateTime) {\n return $val;\n }\n throw new \\UnexpectedValueException(\"Invalid type found in backing store for 'dateTime'\");\n }", "static function toHTTPDate(\\DateTime $dateTime) {\n\n // We need to clone it, as we don't want to affect the existing\n // DateTime.\n $dateTime = clone $dateTime;\n $dateTime->setTimeZone(new \\DateTimeZone('GMT'));\n return $dateTime->format('D, d M Y H:i:s \\G\\M\\T');\n\n }", "public static function convertToEdmDateTime($value)\n {\n if (empty($value)) {\n return $value;\n }\n\n if (is_string($value)) {\n $value = self::convertToDateTime($value);\n }\n\n Validate::isDate($value, 'value');\n\n $cloned = clone $value;\n $cloned->setTimezone(new \\DateTimeZone('UTC'));\n\n return str_replace('+0000', 'Z', $cloned->format(\\DateTime::ISO8601));\n }", "public function testDateTimeConvertsToPHPValue(): void\n {\n $date = $this->type->convertToPHPValue('1985-09-01 00:00:00', $this->platform);\n self::assertInstanceOf(DateTime::class, $date);\n self::assertEquals('1985-09-01 00:00:00', $date->format('Y-m-d H:i:s'));\n }", "public static function msTimetamp2MongoDate($millsecond)\n {\n return new UTCDateTime($millsecond);\n }", "public function convertDateTime(\\DateTime $oDateTime)\n {\n return $oDateTime->getTimestamp();\n }", "public static function fromLdapDateTime($date, $asUtc = true)\n {\n $datepart = array();\n if (!preg_match('/^(\\d{4})/', $date, $datepart)) {\n throw new \\InvalidArgumentException('Invalid date format found');\n }\n\n if ($datepart[1] < 4) {\n throw new \\InvalidArgumentException('Invalid date format found (too short)');\n }\n\n $time = array(\n // The year is mandatory!\n 'year' => $datepart[1],\n 'month' => 1,\n 'day' => 1,\n 'hour' => 0,\n 'minute' => 0,\n 'second' => 0,\n 'offdir' => '+',\n 'offsethours' => 0,\n 'offsetminutes' => 0\n );\n\n $length = strlen($date);\n\n // Check for month.\n if ($length >= 6) {\n $month = substr($date, 4, 2);\n if ($month < 1 || $month > 12) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid month)');\n }\n $time['month'] = $month;\n }\n\n // Check for day\n if ($length >= 8) {\n $day = substr($date, 6, 2);\n if ($day < 1 || $day > 31) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid day)');\n }\n $time['day'] = $day;\n }\n\n // Check for Hour\n if ($length >= 10) {\n $hour = substr($date, 8, 2);\n if ($hour < 0 || $hour > 23) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid hour)');\n }\n $time['hour'] = $hour;\n }\n\n // Check for minute\n if ($length >= 12) {\n $minute = substr($date, 10, 2);\n if ($minute < 0 || $minute > 59) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid minute)');\n }\n $time['minute'] = $minute;\n }\n\n // Check for seconds\n if ($length >= 14) {\n $second = substr($date, 12, 2);\n if ($second < 0 || $second > 59) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid second)');\n }\n $time['second'] = $second;\n }\n\n // Set Offset\n $offsetRegEx = '/([Z\\-\\+])(\\d{2}\\'?){0,1}(\\d{2}\\'?){0,1}$/';\n $off = array();\n if (preg_match($offsetRegEx, $date, $off)) {\n $offset = $off[1];\n if ($offset == '+' || $offset == '-') {\n $time['offdir'] = $offset;\n // we have an offset, so lets calculate it.\n if (isset($off[2])) {\n $offsetHours = substr($off[2], 0, 2);\n if ($offsetHours < 0 || $offsetHours > 12) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid offset hour)');\n }\n $time['offsethours'] = $offsetHours;\n }\n if (isset($off[3])) {\n $offsetMinutes = substr($off[3], 0, 2);\n if ($offsetMinutes < 0 || $offsetMinutes > 59) {\n throw new \\InvalidArgumentException('Invalid date format found (invalid offset minute)');\n }\n $time['offsetminutes'] = $offsetMinutes;\n }\n }\n }\n\n // Raw-Data is present, so lets create a DateTimeDecorator-Object from it.\n $offset = $time['offdir']\n . str_pad($time['offsethours'], 2, '0', STR_PAD_LEFT)\n . str_pad($time['offsetminutes'], 2, '0', STR_PAD_LEFT);\n $timestring = $time['year'] . '-'\n . str_pad($time['month'], 2, '0', STR_PAD_LEFT) . '-'\n . str_pad($time['day'], 2, '0', STR_PAD_LEFT) . ' '\n . str_pad($time['hour'], 2, '0', STR_PAD_LEFT) . ':'\n . str_pad($time['minute'], 2, '0', STR_PAD_LEFT) . ':'\n . str_pad($time['second'], 2, '0', STR_PAD_LEFT)\n . $time['offdir']\n . str_pad($time['offsethours'], 2, '0', STR_PAD_LEFT)\n . str_pad($time['offsetminutes'], 2, '0', STR_PAD_LEFT);\n $date = new DateTimeDecorator($timestring);\n if ($asUtc) {\n $date->setTimezone(new \\DateTimeZone('UTC'));\n }\n return $date;\n }", "public static function dateTimeNoMicroseconds(string $datetime): ?DateTime {\n // If the format is Y-m-d\\TH:i:s.u\\Z, the length will be 27 characters and\n // the last eight should be striped to remove microseconds.\n if (strlen($datetime) == 27) {\n $datetime = substr($datetime, 0, -8) . 'Z';\n }\n try {\n $object = new DateTime($datetime);\n }\n catch (Exception $e) {\n $object = NULL;\n }\n return $object;\n }", "function from(\\DateTime $date)\n{\n $newDate = \\DateTime::createFromFormat(\n \\DateTime::RFC2822,\n $date->format(\\DateTime::RFC2822)\n );\n\n return $newDate->modify('+1000000000 seconds');\n}", "public static function dateTimeToSQLTimestamp($dateTime)\n {\n $dateTime->setTimezone(new DateTimeZone(\"UTC\"));\n return $dateTime->format('Y-m-d H:i:s');\n }", "function GmtTimeToLocalTime($time) {\n date_default_timezone_set('UTC');\n $new_date = new DateTime($time);\n $new_date->setTimeZone(new DateTimeZone('Europe/Berlin'));\n return $new_date->format(\"d.m.Y H:i:s\");\n}", "protected function escapeDateTime(DateTime $value)\n {\n $value->setTimezone(new DateTimeZone('UTC'));\n return $this->escapeString($value->format('Y-m-d\\TH:i:s.u\\Z'));\n }", "protected function asDateTime($value)\n {\n\n $value = \\App\\Http\\Controllers\\Base::ConvertTimezone($value);\n\n return $value;\n\n }", "public function toDateTime(&$value = false)\n {\n try{\n $value = (\\DateTime)$value;\n }\n catch(\\Exception $e){\n $value = new \\DateTime('0');\n }\n }", "function convert_to_datetime($dateTime, $format = 'Y-m-d H:i:s')\n {\n if ($time = strtotime($dateTime)) {\n $date_time = date($format, $time);\n\n return $date_time;\n }\n\n return false;\n }", "public function getUtc($withZone = TRUE)\r\n {\r\n $withZone = $withZone ? '\\Z' : '';\r\n return date(\"Y-m-d\\TH:i:s\" . $withZone, $this->getTimestampUnix());\r\n }", "public function convertLocalizedDateToUtc($date);", "public function getUtcTimezone()\r\n {\r\n $utcDate = (new \\DateTime($this->toDb()))->setTimezone(new \\DateTimeZone('UTC'));\r\n return $utcDate->format(\\Type\\DateTime::MASK_TIMESTAMP_UTC);\r\n }", "protected function asDateTime($value)\n {\n if ($user = auth()->user()) {\n return (parent::asDateTime($value))->timezone($user->timezone);\n }\n\n if ($guestTimezone = request()->cookie('guest-timezone')) {\n return (parent::asDateTime($value))->timezone($guestTimezone);\n }\n\n return parent::asDateTime($value);\n }", "public function fulfillUTCNow()\n {\n static $utctz;\n if (!$utctz) {\n $utctz = new \\DateTimeZone('UTC');\n }\n\n $now = new \\DateTime('now', $utctz);\n\n if (!$this->utc_created) {\n $this->utc_created = $now;\n };\n $this->utc_updated = $now;\n\n return $this;\n }", "public static function getUtcTimeZone()\n {\n return new \\DateTimeZone('UTC');\n }", "static public function fromDatetime($datetime) {\r\n\t\tif ($datetime === null) return null;\r\n\t\telse return \\strtotime($datetime);\r\n\t}", "final public static function asUtcSql($date)\n {\n if (!empty($date)) {\n if ($date instanceof \\DateTimeInterface) {\n return $date->setTimezone(self::tzUtc())->format('Y-m-d H:i:s');\n } else {\n return self::asDateTime($date)->format('Y-m-d H:i:s');\n }\n } else {\n return null;\n }\n }", "public function toISOLocalDateTime() : string\n {\n if ($this->timezoneIsLocal) {\n return $this->format('Y-m-d H:i:s');\n }\n return $this->cloneToMutable()->setTimezone(static::$timezoneLocal)->format('Y-m-d H:i:s');\n }", "protected function _getUTCDate($time = null) {\n\t\tif ($time instanceof DateTime) {\n\t\t\t$result = clone $time;\n\t\t} elseif (is_int($time)) {\n\t\t\t$result = new DateTime(date('Y-m-d H:i:s', $time));\n\t\t} else {\n\t\t\t$result = new DateTime($time);\n\t\t}\n\t\t$result->setTimeZone(new DateTimeZone('UTC'));\n\t\treturn $result;\n\t}", "function converToTz($time=\"\",$toTz='',$fromTz='')\n\n\t{\n\n\t\t$date = new DateTime($time, new DateTimeZone($fromTz));\n\n\t\t$date->setTimezone(new DateTimeZone($toTz));\n\n\t\t$time= $date->format('Y-m-d H:i:s');\n\n\t\treturn $time;\n\n\t}", "protected function asDateTime($value)\n {\n\n $value = \\App\\Http\\Controllers\\Base::ConvertTimezone($value);\n\n return $value;\n\n }", "protected function _convertToDateTime($value = '')\n {\n \tif ($value === '') {\n \t\treturn false;\n \t}\n\n \tif ($value instanceof DateTime) {\n \t\treturn $value;\n \t}\n\n \tif (@strtotime($value) !== false) {\n\t \ttry {\n\t \t\tif (substr($value, -1) == 'Z') {\n\t \t\t\t$value = substr($value, 0, strlen($value) - 1);\n\t \t\t}\n\t \t\treturn new DateTime($value, new DateTimeZone('UTC'));\n\t \t}\n\t \tcatch (Exception $ex) {\n\t \t\treturn false;\n\t \t}\n\t }\n\n \treturn false;\n }", "public function datetime_to_date($datetime) {\r\n\t\t\r\n\t}", "public function dateTimeFromSql($dateTime)\n\t{\n\t\t$tz = 'UTC';\n\t\treturn \\DateTime::createFromFormat(self::DATETIMEFORMAT_SQL, $dateTime, new \\DateTimeZone($tz));\n\t}", "public function utcDate($scope, $date, $includeTime = false, $format = null);", "public function getFinalInvoicedate($dt)\n {\n return (new Options)->ConvertOneTzToAnotherTz($dt, 'UTC', $_SESSION['usrTZ'],'MDY');\n }", "function utc_date_time($date, $time, $timezone)\n{\n return Carbon::parse($date . ' ' . $time, $timezone)->timezone('utc');\n}", "private function modifyDate(\\DateTime $dateTime)\n {\n $dateTime->setTime(0, 0, 0);\n\n return $dateTime;\n }", "final public static function asDateTime($input, $tz = 'UTC')\n {\n $zone = self::getTimeZone($tz);\n if ($input instanceof \\DateTimeImmutable) {\n return $input->setTimezone($zone);\n } elseif ($input instanceof \\DateTime) {\n return self::cloneDateTime($input)->setTimezone($zone);\n } else {\n /** @noinspection PhpUnhandledExceptionInspection */\n return (new \\DateTimeImmutable($input, $zone))->setTimezone($zone);\n }\n }", "public static function convertUserTimezoneToUtc0($date)\n {\n if ($date === null) {\n return null;\n }\n $user = \\Auth::user();\n return Carbon::createFromFormat('Y-m-d H:i:s', $date, $user->timezone)->setTimezone('utc')->toDateTimeString();\n }", "public static function getDateTime($datetime = null)\n {\n if ($datetime instanceof \\DateTime) {\n return clone $datetime;\n }\n if ($datetime instanceof \\DateTimeImmutable) {\n return new \\DateTime($datetime->format(\\DateTime::ATOM));\n }\n if (\\is_string($datetime)) {\n if (\\is_numeric($datetime)) {\n /*\n check if datetime is an int of the the form YYYYMMDD or YYYYMMDDHHMMSS\n Debug::_log('datetime', $datetime)\n */\n $isTs = !preg_match('/^(19|20)\\d{2}(0[1-9]|1[0-2])[0-3][0-9](([01]\\d|2[0-3])\\d[0-5]\\d[0-5]\\d)?$/', $datetime);\n if ($isTs) {\n $datetime = '@'.$datetime;\n }\n }\n Debug::_log('datetime', $datetime);\n return new \\DateTime($datetime);\n }\n if (\\is_int($datetime) || \\is_float($datetime)) {\n $dateTime = new \\DateTime();\n $dateTime->setTimestamp($datetime);\n return $dateTime;\n }\n return new \\DateTime();\n }", "public static function convertUtc0ToUserTimezone($date)\n {\n if ($date === null) {\n return null;\n }\n $user = \\Auth::user();\n return Carbon::createFromFormat('Y-m-d H:i:s', $date, 'utc')->setTimezone($user->timezone)->toDateTimeString();\n }", "public static function toLdapDateTime($date, $asUtc = true)\n {\n if (!($date instanceof \\DateTime) && !($date instanceof DateTimeDecorator)) {\n if (is_int($date)) {\n $date = new DateTimeDecorator('@' . $date);\n $date->setTimezone(new \\DateTimeZone(date_default_timezone_get()));\n } elseif (is_string($date) || $date instanceof \\DateTime) {\n $date = new DateTimeDecorator($date);\n } else {\n throw new Exception('Parameter $date is not of the expected type');\n }\n }\n if (true === $asUtc) {\n $date->setTimezone(new \\DateTimeZone('UTC'));\n }\n\n return $date; // DateTimeDecorator has __toString magic method\n }", "public function hydrate($value, array $data = null)\n {\n if (null !== $value) {\n if (!$value instanceof \\DateTime) {\n throw new \\InvalidArgumentException('Objeto DateTime Esperado');\n }\n // alterar fuso horário para o fuso horário do servidor\n $timezone = new \\DateTimeZone(date_default_timezone_get());\n $value->setTimezone($timezone);\n }\n\n return $value;\n }", "public function setDateTime(DateTimeInterface $dateTime)\n {\n $this->clearCachedValueIf($this->getCachedValue() != $dateTime->format(DateTime::RFC2822));\n if ($dateTime instanceof DateTime) {\n $immutable = new DateTimeImmutable('@'.$dateTime->getTimestamp());\n $dateTime = $immutable->setTimezone($dateTime->getTimezone());\n }\n $this->dateTime = $dateTime;\n }", "public static function getDateTime($value)\n {\n $dateTime = parent::getDateTime($value);\n\n return $dateTime instanceof DateTimeImmutable\n ? $dateTime\n : DateTimeImmutable::createFromMutable($dateTime);\n }", "public function convert_to_iso_8601($datetime) {\n if(empty($datetime)) \n $datetime = time();\n else\n $datetime = strtotime($datetime);\n if($this->is_valid_date($datetime))\n return date('c',$datetime);\n return date('c',0);\n }", "public function setToDateTime(Carbon $toDateTime): void\n {\n $this->toDateTime = $toDateTime;\n }", "public function toDateTimeImmutable(): DateTimeImmutable\n {\n return $this->value;\n }", "public function getAsDateTime() {}", "function set_datetime($date)\n{\n return date(\"Y-m-d H:i:s\", strtotime($date));\n}", "public function getUTCDateTime($date, $format = \"Ymd\\THis\\Z\") {\n \n return gmdate($format, strtotime($date));\n\n }", "public function cloneCorrectTimezone(\\DateTimeZone $fromZone, ?\\DateTimeZone $toZone = null) : \\DateTime /*self invariant - PHP8:static*/\n {\n // Return type has to be \\DateTime because last method used\n // is setTimezone().\n\n if ($this->frozen) {\n throw new \\RuntimeException(get_class($this) . ' is read-only, frozen.');\n }\n $class = get_class($this);\n /**\n * Create instance using original ($fromZone) timezone\n * and then set timezone (internally changing it's time parts).\n *\n * And use separate algo for other classes than Time.\n *\n * @see TimeLocal::cloneCorrectTimezone()\n * Would err on setting timezone to $fromZone.\n * @see TimeImmutable::setTimezone()\n * Would do one more construction than necessary.\n */\n $moved = (new Time($this->format('Y-m-d H:i:s.u'), $fromZone))\n ->setTimezone($toZone ?? static::$timezoneLocal);\n if ($class == Time::class) {\n return $moved;\n }\n return new static($moved->format('Y-m-d H:i:s.u'), $toZone);\n }", "public static function foFromMySQLDateTime($sDateTime): cDate {\n return cDate::foFromString(explode(\" \", $sDateTime)[0]);\n }", "static function fromDatetime($datetime) {\n\t\tif (!preg_match(\"/^(\\d{4})-?(\\d{2})-?(\\d{2})T?(\\d{2}):?(\\d{2}):?(\\d{2})(.?)$/\", $datetime, $a)) {\n\t\t\treturn NULL;\n\t\t}\n\t\t\n\t\t$obj = new Date();\n\t\t$obj->setDate($a[1], $a[2], $a[3]);\n\t\t$obj->setTime($a[4], $a[5], $a[6]);\n\t\t\n\t\treturn $obj;\n\t}", "public function serverDateTime()\n\t{\n\t\treturn new \\DateTime('now', new \\DateTimezone(date_default_timezone_get()));\n\t}", "public function createDateTime(string $value): DateTime\n {\n return (new DateTime($value))->setTimezone($this->getDateTimeZone());\n }", "public function getPhpDatetime()\r\n {\r\n return new \\DateTime($this->format(self::MASK_TIMESTAMP_DB) . '.000000 UTC');\r\n }", "final public function getDatetime() : DateTimeUTC\n {\n $timestampLength = self::TOTAL_CHARS_LENGTH - self::RANDOM_CHARS_LENGTH;\n $baseTimestamp = (string)hexdec(substr((string)$this->hex, 0, $timestampLength));\n \n $seconds = (int)substr($baseTimestamp, 0, - 3);\n \n return DateTimeUTC::fromTimestamp($seconds);\n }", "public function setDateTime($value) {\n\t\t$this->datetime = $value;\n\t}", "public function getReviewedDateTime(): ?DateTime {\n $val = $this->getBackingStore()->get('reviewedDateTime');\n if (is_null($val) || $val instanceof DateTime) {\n return $val;\n }\n throw new \\UnexpectedValueException(\"Invalid type found in backing store for 'reviewedDateTime'\");\n }", "function toUtc($value, $timezone = null) {\n return !empty($value) ? Carbon::parse($value, $timezone)->setTimezone('UTC') : $value;\n }", "public function __construct(DateTime $dateTime, $homeTeam, $awayTeam, $shortTime){\n //correctly\n $this->dateTime = $dateTime->setTimezone(new \\DateTimeZone(\"UTC\"));\n $this->homeTeam=$homeTeam;\n $this->awayTeam=$awayTeam;\n $this->shortTime=$shortTime;\n }", "public function setLastSyncDateTime(?DateTime $value): void {\n $this->getBackingStore()->set('lastSyncDateTime', $value);\n }", "protected function asDateTime($value)\n {\n try {\n return parent::asDateTime($value);\n } catch (InvalidArgumentException $e) {\n return parent::asDateTime(new DateTimeImmutable($value));\n }\n }", "public function getDateTime(): \\DateTime\n {\n return $this->julianDayToDatetime($this->value);\n }", "public function setIssueDateTime(?DateTime $value): void {\n $this->getBackingStore()->set('issueDateTime', $value);\n }", "protected static function adjustDateTime($datetime, $precision, $end = false)\n {\n switch ($precision) {\n case 'year':\n return $end\n ? $datetime->setDate($datetime->format('Y'), 12, 31)->setTime(23, 59, 59, 999999)\n : $datetime->setDate($datetime->format('Y'), 1, 1)->setTime(0, 0, 0, 0);\n case 'month':\n return $end\n ? $datetime->setDate($datetime->format('Y'), $datetime->format('n'), $datetime->format('t'))\n ->setTime(23, 59, 59, 999999)\n : $datetime->setDate($datetime->format('Y'), $datetime->format('n'), 1)\n ->setTime(0, 0, 0, 0);\n case 'day':\n return $end\n ? $datetime->setTime(23, 59, 59, 999999)\n : $datetime->setTime(0, 0, 0, 0);\n case 'hour':\n return $end\n ? $datetime->setTime($datetime->format('G'), 59, 59, 999999)\n : $datetime->setTime($datetime->format('G'), 0, 0, 0);\n case 'minute':\n return $end\n ? $datetime->setTime($datetime->format('G'), $datetime->format('i'), 59, 999999)\n : $datetime->setTime($datetime->format('G'), $datetime->format('i'), 0, 0);\n default:\n return $datetime;\n }\n }", "private function convertToUtc(string $timestamp): string\n {\n $datetime = new \\DateTime($timestamp, new \\DateTimeZone('Asia/Kuala_Lumpur'));\n $datetime->setTimeZone(new \\DateTimeZone('UTC'));\n\n return $datetime->format('Y-m-d H:i:s');\n }", "static public function mysqlTZToPHPTZ($datetime)\n\t{\n\t\t$Driver = QuickBooks_Driver_Singleton::getInstance();\n\t\t\t\n\t\t$sql = \" SELECT UTC_TIME() AS theUtcTime, CURTIME() AS theCurTime \";\n\t\t$res = $Driver->query($sql, $errnum, $errmsg);\n\t\t\t\n\t\tif (!$res)\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\t\n\t\tif (!($arr = $Driver->fetch($res)))\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\t\n\t\t// get the time bits: \n\t\t$utcTime = explode(\":\", $arr['theUtcTime']); \n\t\t$curTime = explode(\":\", $arr['theCurTime']); \n\t\t\n\t\t// create unix timestamps for each\n\t\t// since we're calculating a relative time only: \n\t\t$utc_t = mktime($utcTime[0], $utcTime[1], $utcTime[2]); \n\t\t$cur_t = mktime($curTime[0], $curTime[1], $curTime[2]); \n\t\t\t\n\t\t$mysqlOffset = ($cur_t - $utc_t);\n\t\t\t\n\t\t$phpOffset = (int) date('Z');\n\t\t\t\n\t\t//mail(\"[email protected]\",\"Offsets\",\"MysqlOffset: \".($mysqlOffset).\"\\n\\n\\nPHPOffset: \".$phpOffset);\n\t\t\t\n\t\t$timezoneDiff = $mysqlOffset - $phpOffset;\n\t\t\t\n\t\t$tempTime = explode(\" \", $datetime);\n\t\t\t\n\t\tif (count($tempTime) != 2)//Improper input\n\t\t{\n\t\t\treturn FALSE;\n\t\t}\n\t\t\t\n\t\t$mysqlTime = explode(\":\", $tempTime[1]);\n\t\t\t\n\t\t$mysql_t = mktime($mysqlTime[0], $mysqlTime[1], $mysqlTime[2]);\n\t\t\t\n\t\t$newMysqlTime = $mysql_t - $timezoneDiff;\n\t\t\t\n\t\t//mail(\"[email protected]\",\"TimeZone Diff\",\"TimeZone Diff: \".($timezoneDiff));\n\t\t\t\n\t\treturn $tempTime[0].\" \".date(\"H:i:s\", $newMysqlTime);\n\t\t\n\t}", "public function newUtcMysqlDateString() {\n return self::dateTimeToMysqlDateString(self::newUtcDateTime());\n }", "public static function asDate($date)\n {\n return new \\DateTime($date, new \\DateTimeZone('UTC'));\n }", "protected function asDateTime($value)\n {\n return $value;\n }", "function toDateTime ($timestamp)\n\t{\n\t\treturn date('Y-m-d h:i:s', $timestamp);\n\t}", "protected function asDateTime($value)\n {\n // If this value is already a Carbon instance, we shall just return it as is.\n // This prevents us having to re-instantiate a Carbon instance when we know\n // it already is one, which wouldn't be fulfilled by the DateTime check.\n if ($value instanceof \\Carbon\\Carbon) {\n return $value;\n }\n\n // If the value is already a DateTime instance, we will just skip the rest of\n // these checks since they will be a waste of time, and hinder performance\n // when checking the field. We will just return the DateTime right away.\n if ($value instanceof DateTimeInterface) {\n return new \\Carbon\\Carbon(\n $value->format('Y-m-d H:i:s.u'), $value->getTimezone()\n );\n }\n\n // If this value is an integer, we will assume it is a UNIX timestamp's value\n // and format a Carbon object from this timestamp. This allows flexibility\n // when defining your date fields as they might be UNIX timestamps here.\n if (is_numeric($value)) {\n return \\Carbon\\Carbon::createFromTimestamp($value);\n }\n\n // If the value is in simply year, month, day format, we will instantiate the\n // Carbon instances from that format. Again, this provides for simple date\n // fields on the database, while still supporting Carbonized conversion.\n if ($this->isStandardDateFormat($value)) {\n return \\Carbon\\Carbon::createFromFormat('Y-m-d', $value)->startOfDay();\n }\n\n // Finally, we will just assume this date is in the format used by default on\n // the database connection and use that format to create the Carbon object\n // that is returned back out to the developers after we convert it here.\n\n// return \\Carbon\\Carbon::createFromFormat(\n// $this->getDateFormat(), $value\n// );\n\n try{\n return \\Carbon\\Carbon::createFromFormat(\n 'Y-m-d H:i:s', $value\n );\n }\n catch(\\Exception $e){\n return \\Carbon\\Carbon::createFromFormat(\n 'Y-m-d H:i:se', $value\n );\n }\n }" ]
[ "0.6910591", "0.60874796", "0.6073676", "0.60513127", "0.6008658", "0.5777059", "0.57535815", "0.5712304", "0.57007563", "0.56607574", "0.56308347", "0.5531322", "0.5436431", "0.5433232", "0.53906256", "0.5370014", "0.5357331", "0.53539264", "0.53218454", "0.5265373", "0.52517205", "0.52252275", "0.5205912", "0.5172954", "0.5150856", "0.5148983", "0.50564843", "0.5047558", "0.5046375", "0.5033646", "0.5008974", "0.5007816", "0.49803734", "0.49378803", "0.49254173", "0.49179563", "0.49104705", "0.48892218", "0.48839247", "0.4858701", "0.48481303", "0.48297718", "0.48250353", "0.48218316", "0.48034477", "0.48025137", "0.4787485", "0.4785158", "0.4784691", "0.47569922", "0.47532168", "0.47447535", "0.47433043", "0.4743165", "0.47375733", "0.4730441", "0.47274515", "0.47270373", "0.4725607", "0.47078612", "0.47027072", "0.46954405", "0.46943298", "0.4688902", "0.46732277", "0.46626726", "0.4661612", "0.4658103", "0.465401", "0.46531102", "0.46514848", "0.46491316", "0.4644025", "0.46428218", "0.46427217", "0.46402737", "0.4628217", "0.46240076", "0.46202976", "0.46113712", "0.46112302", "0.46111912", "0.46005604", "0.45829096", "0.45648718", "0.45552552", "0.45533466", "0.45520934", "0.45454505", "0.45447072", "0.45361233", "0.4523551", "0.45203918", "0.4503994", "0.44910198", "0.44792423", "0.4477457", "0.4475655", "0.44738021", "0.4472384" ]
0.6142845
1
Convert the model's attributes to an array.
public function attributesToArray() { $attributes = parent::attributesToArray(); // Convert dot-notation dates. foreach ($this->getDates() as $key) { if (str_contains($key, '.') and array_has($attributes, $key)) { array_set($attributes, $key, (string)$this->asDateTime(array_get($attributes, $key))); } } return $attributes; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function attributesToArray()\n {\n $attributes = $this->getArrayableAttributes();\n\n return $attributes;\n }", "public function attributesToArray()\n {\n $attributes = $this->attributes;\n\n $mutatedAttributes = $this->getMutatedAttributes();\n\n // We want to spin through all the mutated attributes for this model and call\n // the mutator for the attribute. We cache off every mutated attributes so\n // we don't have to constantly check on attributes that actually change.\n foreach ($mutatedAttributes as $key) {\n if (!array_key_exists($key, $attributes)) {\n continue;\n }\n\n $attributes[$key] = $this->mutateAttributeForArray(\n $key, $attributes[$key]\n );\n }\n\n // Here we will grab all of the appended, calculated attributes to this model\n // as these attributes are not really in the attributes array, but are run\n // when we need to array or JSON the model for convenience to the coder.\n foreach ($this->getArrayableAppends() as $key) {\n $attributes[$key] = $this->mutateAttributeForArray($key, null);\n }\n\n return $attributes;\n }", "public function toArray()\n {\n return $this->attributesToArray();\n }", "public function toArray()\n {\n return $this->attributesToArray();\n }", "public function toArray(): array {\n return $this->attributes()->toArray();\n }", "public function toArray(): array\n {\n $data = $this->model->toArray();\n\n /**\n * Model's toArray method gives us raw entity data.\n * Here we replace some special attributes with human readable values.\n */\n foreach ($data as $key => $value) {\n $data[$key] = $this->getDisplayValue($key, $value);\n }\n\n return $data;\n }", "public function toArray()\n {\n return $this->attributes;\n }", "public function toArray()\n {\n return $this->attributes;\n }", "public function toArray()\n {\n return $this->attributes;\n }", "public function toArray()\n {\n return $this->attributes;\n }", "public function to_array() {\n\n $array = array();\n\n foreach ($this->collection as $model) {\n $model_to_array = $model->to_array($this->options);\n\n foreach ($model_to_array as &$attribute) {\n if ($attribute instanceof ModelCollection) {\n $attribute = $attribute->to_array($this->options);\n }\n }\n\n $array[] = $model_to_array;\n }\n\n return $array;\n }", "public function toArray()\n {\n return $this->getAttributes();\n }", "public function attributesToArray()\n {\n return Helper::toCamelCase($this->attributes());\n }", "public function toArray()\n {\n $attributes = $this->attributesToArray();\n\n return $attributes;\n }", "public function getAttributesAsArray()\n {\n $attributes = explode(',', $this->attributes);\n\n if ($attributes === false) {\n return [];\n }\n\n return $attributes;\n }", "public function attributesToArray()\n {\n $attributes = parent::attributesToArray();\n\n foreach ($attributes as $key => $value) {\n $attributes[$key] = $value instanceof ValueObject ? $this->fromValueObjectToArray($key, $value) : $value;\n }\n\n return $attributes;\n }", "protected function getArrayableAttributes()\n {\n return $this->attributes;\n }", "protected function getArrayableAttributes()\n {\n return $this->attributes;\n }", "public function toAPIArray()\n\t{\n\t\t$out = array();\n\n\t\tforeach($this as $i => $v)\n\t\t{\n\t\t\tif (method_exists($v, 'toApiArray'))\n\t\t\t{\n\t\t\t\t$out[$i] = $v->toApiArray();\n\t\t\t} else {\n\t\t\t\t$out[$i] = $v->attributes;\n\t\t\t}\n\t\t}\n\n\t\treturn $out;\n\t}", "public function toArray()\r\n\t{\r\n\t\t$attributes = parent::toArray();\r\n\r\n\t\tif (! $this->autoTranslations) return $attributes;\r\n\r\n\t\tforeach ($this->translatableAttributes as $field) {\r\n\t\t\t$attributes[$field] = $this->getTranslation($field);\r\n\t\t}\r\n\r\n\t\treturn $attributes;\r\n\t}", "public function toArray()\n {\n $attributes = $this->getConfiguredAttributes();\n\n $values = [];\n\n foreach (explode(',', $attributes) as $attribute) {\n $values[$attribute] = str_replace(' ','', $attribute);\n }\n\n return $values;\n }", "public function toArray()\n {\n return array_map(function ($attribute) {\n if ($attribute instanceof \\DateTimeInterface) {\n return $attribute->format('Y-m-d H:i:s.u');\n } \n elseif ($attribute instanceof \\JsonSerializable) {\n return $attribute->jsonSerialize();\n } \n elseif (is_iterable($attribute)) {\n return (array) $attribute;\n }\n return $attribute;\n }, $this->attributes);\n }", "public function to_array() {\n\t\t$attributes = array();\n\n\t\t// First we need to gather all of the regular attributes. If the attribute\n\t\t// exists in the array of \"hidden\" attributes, it will not be added to\n\t\t// the array so we can easily exclude things like passwords, etc.\n\t\tforeach (array_keys($this->attributes) as $attribute) {\n\t\t\tif ( ! in_array($attribute, static::$hidden)) {\n\t\t\t\t$attributes[$attribute] = $this->$attribute;\n\t\t\t}\n\t\t}\n\n\t\tforeach ($this->relationships as $name => $models) {\n\t\t\t// If the relationship is not a \"to-many\" relationship, we can just\n\t\t\t// to_array the related model and add it as an attribute to the\n\t\t\t// array of existing regular attributes we gathered.\n\t\t\tif ($models instanceof Model) {\n\t\t\t\t$attributes[$name] = $models->to_array();\n\t\t\t}\n\n\t\t\t// If the relationship is a \"to-many\" relationship we need to spin\n\t\t\t// through each of the related models and add each one with the\n\t\t\t// to_array method, keying them both by name and ID.\n\t\t\telseif (is_array($models)) {\n\t\t\t\t$attributes[$name] = array();\n\n\t\t\t\tforeach ($models as $id => $model) {\n\t\t\t\t\t$attributes[$name][$id] = $model->to_array();\n\t\t\t\t}\n\t\t\t}\n\t\t\telseif (is_null($models)) {\n\t\t\t\t$attributes[$name] = $models;\n\t\t\t}\n\t\t}\n\n\t\treturn $attributes;\n\t}", "public function attributesToArray()\n {\n $attributes = $this->getArrayableAttributes();\n $mutatedAttributes = $this->getMutatedAttributes();\n\n foreach ($mutatedAttributes as $key)\n {\n if (!array_key_exists($key, $attributes))\n continue;\n\n $attributes[$key] = $this->mutateAttributeForArray(\n $key,\n $attributes[$key]\n );\n }\n\n foreach ($this->casts as $key => $value)\n {\n if (!array_key_exists($key, $attributes) ||\n in_array($key, $mutatedAttributes))\n {\n continue;\n }\n\n $attributes[$key] = $this->castAttribute(\n $key,\n $attributes[$key]\n );\n }\n\n foreach ($this->getArrayableAppends() as $key)\n $attributes[$key] = $this->mutateAttributeForArray($key, null);\n\n return $attributes;\n }", "public function toArray() {\n\t\treturn $this->tblAttributes;\n\t}", "public function toArray()\n {\n $attributes = $this->attributes;\n\n // If an attribute is a date, we will cast it to a string after converting it\n // to a DateTime / Carbon instance. This is so we will get some consistent\n // formatting while accessing attributes vs. arraying / JSONing a model.\n foreach ($this->getDates() as $key) {\n if (! isset($attributes[$key])) {\n continue;\n }\n\n if ($attributes[$key] instanceof DateTime) {\n $attributes[$key] = $attributes[$key]->format('Y-m-d\\TH:i:s\\Z');\n }\n }\n\n return $attributes;\n }", "protected function getArrayableAttributes()\n {\n return $this->getArrayableItems($this->attributes);\n }", "public function toArray()\n {\n //Skip modified attributes and get raw data in admin\n if (Admin::isAdmin()) {\n return array_merge(parent::attributesToArray(), $this->relationsToArray());\n }\n\n return array_merge($this->attributesToArray(), $this->relationsToArray());\n }", "public function toArray(): array\n {\n $attributes = collect($this->attributes);\n $relations = collect($this->relations)->map(function ($relation) {\n if (!$relation instanceof Arrayable) {\n return $relation;\n }\n\n return $relation->toArray();\n });\n return $attributes->merge($relations)->sortKeys()->toArray();\n }", "public function toArray()\n\t{\n\t\t$defaults = $this->reflectionClass->getDefaultProperties();\n\t\t$return = array();\n\t\t\n\t\tforeach($defaults as $var => $val)\n\t\t{\n\t\t\tif($this->$var instanceof Model)\n\t\t\t{\n\t\t\t\t$return[$var] = $this->$var->toArray();\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$return[$var] = $this->$var;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $return;\n\t}", "public abstract function toArray($model);", "public function toArray(): array\n {\n $attributes = get_object_vars($this);\n\n unset($attributes['originals']);\n\n return $attributes;\n }", "public function toArray()\n {\n $data = [];\n\n foreach (get_object_vars($this) as $attribute => $value) {\n if ($attribute != 'resource' and !empty($value)) {\n $data[$attribute] = $value;\n }\n }\n\n return $data;\n }", "public function toArray()\n {\n return array_merge($this->attributesToArray(), $this->relationsToArray());\n }", "public function toArray()\n {\n return array_merge($this->attributesToArray(), $this->relationsToArray());\n }", "public function toArray()\n {\n return array_merge($this->attributesToArray(), $this->relationsToArray());\n }", "public function toArray()\n {\n $returnArr = [];\n\n $this->attributes->each(function($attribute) use (&$returnArr){\n /* @var ConfigurationAttribute $attribute **/\n $returnArr[$attribute->getName()] = $attribute->getValue();\n });\n\n return $returnArr;\n }", "public function toArray()\n {\n $attributes = parent::toArray();\n \n foreach ($this->getTranslatableAttributes() as $name) {\n $attributes[$name] = $this->getTranslation($name, app()->getLocale());\n }\n \n return $attributes;\n }", "public function toArray()\n {\n $array = array_values($this->getModels());\n return $array;\n }", "public function getAttributes() {\n return $this->attributes->getArray();\n }", "public function toArray(): array\n {\n return [\n $this->attribute->getName(),\n $this->name,\n ];\n }", "public function getAttributes(): array\n {\n // Collects a list of usable Attributes from the Value Object.\n $fields = $this->filterSystemControlFields(\n \\get_object_vars($this)\n );\n\n foreach ($fields as $name => $value) {\n if ($value instanceof AbstractValueObject || $value instanceof EntityCollection) {\n unset($fields[$name]);\n }\n }\n\n // Converts all objects into primitives.\n return $this->convertIntoPrimitiveValues($fields);\n }", "public function attributesToArray()\n {\n $attributes = parent::attributesToArray(); // call the parent method\n\n foreach ($this->encryptable as $key) {\n if (isset($attributes[$key])) {\n $attributes[$key] = Crypt::decrypt($attributes[$key]);\n }\n }\n\n return $attributes;\n }", "public function getAll()\n {\n $valueArray = [];\n\n foreach(self::$validAttributes as $attribute) {\n $valueArray[$attribute] = $this->$attribute;\n }\n\n return $valueArray;\n }", "public function toArray() {\n $attrs = $this->_private_attributes;\n $result = array();\n foreach ($attrs as $key => $attr) {\n if (method_exists($this, \"get\" . underscore_to_camel_case($key, true))) {\n eval('$result[\"' . $key . '\"] = $this->get' . underscore_to_camel_case($key, true) . '();');\n } else {\n $result[$key] = $attr;\n }\n }\n return $result;\n }", "public function toArray()\n {\n\n $attributes = parent::toArray();\n $attributes['size'] = $this->getSize();\n return $attributes;\n }", "public function __toArray(array $arrAttributes = array()) {\n if (empty($arrAttributes)) {\n return $this->data;\n }\n\n $arrRes = array();\n foreach ($arrAttributes as $attribute) {\n if (isset($this->valid($attribute))) {\n $arrRes[$attribute] = $this->data[$attribute];\n } else {\n $arrRes[$attribute] = null;\n }\n }\n return $arrRes;\n }", "protected function attributes(): array\n {\n try {\n $attributes = [];\n $i = 0;\n foreach (static::$db_columns as $column) {\n $attributes[$column] = $this->$column;\n $i++;\n }\n return $attributes;\n } catch (Exception $e) {\n die(\"Error \" . $e);\n }\n }", "public function toArray()\n {\n return $this->cast('array');\n }", "private function to_array() {\n\t\t$values = array(\n\t\t\t'id' => $this -> id,\n\t\t\t'name' => $this -> name);\n\t\treturn $values;\n\t}", "function asArray(){\n\t\t\t$array = $this->toArray( $this );\n\t\t\treturn $array;\n\t\t}", "public function getAttributes() : array\n {\n\n return $this->attributes;\n }", "public function toArray()\n {\n $output = [];\n\n foreach ($this->models as $model) {\n $output[] = $model->toArray();\n }\n\n return $output;\n }", "public function getAttributes()\n {\n return $this->where('isRelation', false)->pluck('attribute')->toArray();\n }", "public function toArray()\n {\n return $this->transform();\n }", "protected function getAttributes()\n {\n return [];\n }", "public function toArray()\n {\n // build the list of properties to retrieve\n $properties = array_keys(static::$properties);\n\n // remove any hidden properties\n $hide = (property_exists($this, 'hidden')) ? static::$hidden : [];\n $properties = array_diff($properties, $hide);\n\n // add any appended properties\n $append = (property_exists($this, 'appended')) ? static::$appended : [];\n $properties = array_merge($properties, $append);\n\n // get the values for the properties\n $result = $this->get($properties);\n\n foreach ($result as $k => &$value) {\n // convert any models to arrays\n if ($value instanceof self) {\n $value = $value->toArray();\n }\n }\n\n // DEPRECATED\n // apply the transformation hook\n if (method_exists($this, 'toArrayHook')) {\n $this->toArrayHook($result, [], [], []);\n }\n\n return $result;\n }", "public function getAttributes(): array {\n return $this->attributes;\n }", "public function getAttributes(): array\n {\n return $this->_attributes;\n }", "public function toArray()\n {\n return (array)$this->properties;\n }", "public function getAttributes(): array\n {\n return $this->attributes;\n }", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function getAttributes(): array;", "public function attributes(): array\n {\n return [\n //\n ];\n }", "public function attributes(): array\n {\n return [\n //\n ];\n }", "public function getArrayableAttributes()\n {\n $attributes = parent::getArrayableAttributes();\n\n foreach ($attributes as $key => $attribute) {\n if ($this->encryptable($key)) {\n $attributes[$key] = $this->decryptAttribute($attribute);\n }\n }\n\n return $attributes;\n }", "public function toArray()\n {\n $values = [];\n\n foreach ($this->_allowedProperties as $key) {\n $methodName = 'get' . ucfirst($key);\n\n if (method_exists($this, $methodName)) {\n $values[$key] = $this->$methodName();\n } elseif (array_key_exists($key, $this->_properties)) {\n $values[$key] = $this->_properties[$key];\n }\n\n if (!empty($values[$key]) && ($values[$key] instanceof ModelAbstract || $values[$key] instanceof ModelRowsetAbstract)) {\n $values[$key] = $values[$key]->toArray();\n }\n }\n\n return $values;\n }", "public function toArray(): array\n\t{\n\t\treturn array_map([$this, 'toArrayValue'], get_object_vars($this));\n\t}", "public function toArray()\n {\n $a = parent::toArray();\n\n if ($this->shouldReturnIdAsToken()) {\n $unique_column = $this->getUniqueTokenColumn();\n\n unset($a[$unique_column]);\n $a['id'] = $this->getAttribute($unique_column);\n }\n\n return $a;\n }", "public function toArray(): array\n {\n // Collects a list of usable Attributes from the Value Object.\n $fields = $this->filterSystemControlFields(\n \\get_object_vars($this)\n );\n\n // Converts all objects into primitives.\n return $this->convertIntoPrimitiveValues($fields);\n }", "public function to_array()\n\t{\n\t\treturn $this->getArrayCopy();\n\t}", "protected function attributes()\n {\n return [];\n }", "public function toArray()\n {\n $data = array();\n\n collect($this->touchedBySetter)\n ->each(function ($property) use (&$data): void {\n $data[$property] = $this->{$property};\n });\n\n return $data;\n }", "public function getAttributes()\n {\n return array();\n }", "public function getAttributes()\n {\n return array();\n }", "public function getAttributes()\n {\n return array();\n }", "public function getAttributes()\n {\n return array();\n }", "public function transformData($model)\n {\n return $model->toArray();\n }", "public function to_array()\n\t{\n\t\treturn array(\n\t\t\t'id'\t\t=> $this->get_id(),\n\t\t\t'label'\t\t=> $this->get_label()\n\t\t);\n\t}", "public function attributes()\n {\n return [];\n }", "public function attributes()\n {\n return [];\n }", "public function attributes()\n {\n return [];\n }", "public function toArray()\n {\n $a = parent::toArray();\n return $a;\n }", "function to_array() \n {\n $d = array();\n $d[\"vocab\"] = $this->vocab;\n $d[\"meta_name\"] = $this->meta_name;\n $d[\"text\"] = $this->text;\n $d[\"lang\"] = $this->lang;\n foreach($this->attrs as $key => $value) {\n $d[$key] = $value;\n }\n return $d;\n }", "public function toArray()\n {\n $params = array();\n\n //prepare an array of scalar properties\n $this->prepareParams($this->_request, $params);\n\n return $params;\n }", "public function toArray(): array\n {\n return (array) $this->result();\n }", "public function getAttributes()\n {\n return array_merge(\n $this->attributes,\n [\n 'args' => $this->args(),\n 'type' => $this->type(),\n 'resolve' => $this->getResolver(),\n ]\n );\n }", "public function __toArray()\n {\n return $this->toArray();\n }", "public function jsonSerialize(): array\n {\n return $this->getAttributes();\n }", "public function to_array()\n {\n }", "public function to_array()\n {\n }", "public function to_array()\n {\n }", "public function to_array()\n {\n }", "public function to_array()\n {\n }", "public function to_array()\n {\n }", "private function arrayify(): array\n {\n return $this->toArray();\n }", "public function toArray()\n {\n $_data = array();\n \n foreach ($this->_data as $key=>$val) {\n $_data[$key] = method_exists($val, 'toArray') ? $val->toArray() : $val;\n }\n \n return $_data;\n }", "public function getAttributes()\n {\n $array = [];\n\n if ($this->getValueSet() === null) {\n return $array;\n }\n\n foreach ($this->getValueSet()->getValues() as $value) {\n $array[$value->getAttribute()->getName()] = $value;\n }\n\n return $array;\n }" ]
[ "0.80435574", "0.80193996", "0.7896826", "0.7896826", "0.7860819", "0.7804151", "0.7775569", "0.7775569", "0.7775569", "0.7775569", "0.7734442", "0.7717223", "0.77098906", "0.769397", "0.7691251", "0.7639573", "0.7617775", "0.7617775", "0.7614778", "0.7531077", "0.75191176", "0.746094", "0.7456107", "0.74325", "0.74169075", "0.7411053", "0.7395643", "0.73151034", "0.73007417", "0.72531456", "0.7247248", "0.72449285", "0.7241508", "0.7221266", "0.7221266", "0.7221266", "0.7213649", "0.7211811", "0.7191373", "0.71518534", "0.7150286", "0.7148219", "0.71361846", "0.7119751", "0.7112438", "0.7101355", "0.7055474", "0.7030048", "0.7014181", "0.701114", "0.699136", "0.69865406", "0.6981113", "0.69475555", "0.69428456", "0.69242054", "0.69230527", "0.6918895", "0.69119406", "0.6902335", "0.6895571", "0.68944037", "0.68944037", "0.68944037", "0.68944037", "0.68831855", "0.68831855", "0.6874088", "0.68649185", "0.6853391", "0.6845162", "0.6828112", "0.6826177", "0.68018603", "0.68016005", "0.68013906", "0.68013906", "0.68013906", "0.68013906", "0.6790036", "0.6784722", "0.67788965", "0.67788965", "0.67788965", "0.6778521", "0.6774025", "0.67714006", "0.6769247", "0.6766981", "0.6759699", "0.67579544", "0.6757066", "0.6757066", "0.6757066", "0.6756243", "0.6756243", "0.6755354", "0.67547566", "0.67431104", "0.67400295" ]
0.68487644
70
Return a timestamp as DateTime object.
protected function asDateTime($value) { // Convert UTCDateTime instances. if ($value instanceof Timestamp) { return Carbon::createFromTimestamp($value->time()); } return parent::asDateTime($value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function toDateTime(): \\DateTime\n {\n return new \\DateTime($this->getTimestamp());\n }", "function toDateTime ($timestamp)\n\t{\n\t\treturn date('Y-m-d h:i:s', $timestamp);\n\t}", "static public function toDatetime($timestamp) {\r\n\t\tif ($timestamp === null) return null;\r\n\t\telse return \\date('Y-m-d H:i:s', $timestamp);\r\n\t}", "public function getTimestamp();", "public function getTimestamp();", "public function getTimestamp();", "public static function ToDateTime($Timestamp = '') {\n if ($Timestamp == '')\n $Timestamp = time();\n return date('Y-m-d H:i:s', $Timestamp);\n }", "public function GetAsTimestamp(){\r\n\t\t\t$timestamp = null;\r\n\t\t\tif( $this->year !== null && $this->month !== null && $this->day !== null ){\r\n\t\t\t\t$timestamp = strtotime( $this->year . '/' . $this->month . '/' . $this->day . ' ' . $this->hours . ':' . $this->minutes . ':' . $this->seconds );\r\n\t\t\t}\r\n\t\t\treturn $timestamp;\r\n\t\t}", "public static function timestampToDateTime($timestamp) {\n\t\treturn date(self::MYSQL_DATETIME_FORMAT, $timestamp);\n\t}", "public function getAsDateTime() {}", "public function getTimestamp() :? DateTime\n {\n return $this->timestamp;\n }", "public static function getDatetimeFromTimestamp($timestamp)\n {\n return date(\"Y-m-d H:i:s\", $timestamp);\n }", "private function getTimestamp()\n {\n $originalTime = microtime(true);\n $micro = sprintf(\"%06d\", ($originalTime - floor($originalTime)) * 1000000);\n $date = new DateTime(date('Y-m-d H:i:s.'.$micro, $originalTime));\n\n return $date->format($this->config['dateFormat']);\n }", "public function timestampToDate()\n {\n $tmp = new DateTime();\n return $tmp->setTimestamp( $this->timestamp );\n }", "private function getTimestamp() {\n\t$dateTime = new DateTime('now', new DateTimeZone(self::TIME_ZONE));\n\treturn $dateTime->format(self::DATE_FORMAT);\n }", "public function GetAsDateTime(){\r\n\t\t\treturn new DateTime( $this->GetAsMySQLDateTime() );\r\n\t\t}", "public static function makeDatetime($timestamp=0) {\n // If there is no parameter, return current time\n\n // current time\n $datetime = date('Ymd-His');\n return $datetime;\n\n }", "public function toDateTime()\n {\n $dateTime = new DateTime('', $this->getTimezone());\n $dateTime->setTimestamp(parent::getTimestamp());\n\n return $dateTime;\n }", "public static function getDateTimeFromTimestamp($stamp)\n {\n $date = new \\DateTime;\n $date->setTimestamp($stamp);\n return $date;\n }", "public function getPhpDatetime()\r\n {\r\n return new \\DateTime($this->format(self::MASK_TIMESTAMP_DB) . '.000000 UTC');\r\n }", "function getDateTime(){\r\n return date('jS F Y\\, g:ia',$this->timestamp);\r\n }", "public function getTimestamp()\n {\n return strtotime($this->getValue());\n }", "public static function getTimestamp(){\r\n\t\treturn time();\r\n\t}", "final public function getDatetime() : DateTimeUTC\n {\n $timestampLength = self::TOTAL_CHARS_LENGTH - self::RANDOM_CHARS_LENGTH;\n $baseTimestamp = (string)hexdec(substr((string)$this->hex, 0, $timestampLength));\n \n $seconds = (int)substr($baseTimestamp, 0, - 3);\n \n return DateTimeUTC::fromTimestamp($seconds);\n }", "public function getTimestamp()\n {\n return time();\n }", "protected static function getTimestamp()\n\t{\n\t\treturn date(\"Y-m-d H:00:00\");\n\t}", "public function getTimestamp()\n\t{\n\t\treturn $this->getValue('timestamp');\n\t}", "public static function timestamp() {}", "public static function curTimestamp()\n {\n return date_timestamp_get(new DateTime());\n }", "static public function timestamp()\r\n {\r\n $output = date('Y-m-d H:i:s', time());\r\n return $output;\r\n }", "public function getTimeStamp() {\n return $this->timestamp;\n }", "public function toDateTime() : \\DateTime\n {\n return new \\DateTime($this->format('Y-m-d H:i:s.u'), $this->getTimezone());\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public function timestamp();", "public function getTimestamp()\n {\n }", "public static function getDateTime () {\n if (!self::$dateTime) {\n self::$dateTime = \"now\";\n }\n \n $ts = strtotime(self::$dateTime);\n $format = 'Y-m-d G:i:s';\n $dateTime = date($format, $ts);\n return $dateTime;\n }", "public function getDateTime(): \\DateTime\n {\n return $this->julianDayToDatetime($this->value);\n }", "public function getCommentTimestamp(): \\DateTime {\n\t\treturn ($this->commentTimestamp);\n\t}", "public function getTimestamp() {\n return $this->timestamp;\n }", "public function getTimestamp() {\n return $this->timestamp;\n }", "function ts2dt($timestamp) {\n $pieces = explode(\"_\",$timestamp);\n $date = new DateTime();\n $date->setDate($pieces[0],$pieces[1],$pieces[2]);\n $date->setTime($pieces[3],$pieces[4],$pieces[5]);\n return $date;\n}", "public function getTimestamp()\n { return $this->get('timestamp'); }", "protected function getTimestamp()\r\n {\r\n return gmdate(\"Y-m-d\\TH:i:s.\\\\0\\\\0\\\\0\\\\Z\", time());\r\n }", "public static function timestamp(){\n $timestamp = time();\n return $timestamp;\n }", "public function getTimestamp()\n {\n return $this->_timestamp;\n }", "public function _getTimestamp()\n {\n $DateTime = new DateTime($this->_getDatePublish());\n return $DateTime->getTimestamp();\n }", "public function getTimestamp()\n {\n $timestamp = $this->getData('timestamp');\n $attributeCodeThis = $this->getData('attribute_code');\n $attributeCodeObj = $this->getAttributeObject()->getAttributeCode();\n if (is_null($timestamp) || $attributeCodeThis != $attributeCodeObj) {\n $value = $this->getValue();\n if ($value) {\n if (is_numeric($value)) {\n $timestamp = $value;\n } else {\n $timestamp = strtotime($value);\n }\n } else {\n $timestamp = false;\n }\n $this->setData('timestamp', $timestamp);\n $this->setData('attribute_code', $attributeCodeObj);\n }\n return $timestamp;\n }", "function now() {\n return new DateTime();\n}", "public function getTimestamp()\r\n {\r\n return $this->_timestamp;\r\n }", "public static function toDateTime($ts){\n return date('d.m.Y H:i:s',$ts); \n }", "function getTimestamp() {\n return $this->time_stamp;\n }", "public function getTimestamp() \n\t{\n\t\treturn $this->timestamp;\n\t}", "public static function timestamp() {\n return time(); \n }", "public function getTimestamp(): int;", "public function getTimestamp(): int;", "public function getTimestamp() : float\n {\n return $this->timestamp;\n }", "public function getTimestamp()\n\t{\n\t\treturn $this->_timestamp;\n\t}", "public static function database_datetime($unix_timestamp = NULL)\n\t{\n\t\tif (is_null($unix_timestamp)) {\n\t\t\t$unix_timestamp = time();\n\t\t}\n\n\t\treturn date('Y-m-d H:i:s', $unix_timestamp);\n\t}", "public function getDatetime();", "public static function datetime()\n {\n return date('Y-m-d H:i:s');\n }", "public function getTimestamp() {\n\n return $this->timestamp;\n }", "function getDatestamp()\n{\n $d = new DateTime();\n return $d->getTimestamp() . \"\";\n}", "public static function timestamp($time=false) {\n\t\tglobal $db; //TODO: REMOVE GLOBAL REFERENCE\n\t\treturn pudl::convert_tz(\n\t\t\tself::from_unixtime($time !== false ? $time : $db->time()),\n\t\t\tnew pudlGlobal('time_zone'),\n\t\t\t'UTC'\n\t\t);\n\t}", "public function getTimestamp()\n {\n return $this->timestamp;\n }", "public static function getNow(): \\DateTime\n {\n // NOTE that new \\DateTime('@timestamp') does NOT work - @see comment in normalizeDateTimeSingle()\n // So we create a date string with timezone information first, and a \\DateTime in the current server timezone then.\n return new \\DateTime(date('Y-m-d\\TH:i:sP', (int)$GLOBALS['SIM_ACCESS_TIME']), self::getTimeZone());\n }", "private static function timestamp(){\n date_default_timezone_set('Africa/Nairobi');\n $time = time();\n return date(\"Y-m-d G:i:s\", $time);\n }", "public static function createDateTimeFromTimestamp(int $timestamp, DateTimeZone $timezone = null): DateTime\n\t{\n\t\t$time = new DateTime(date(self::ISO8601_WITHOUT_TIMEZONE, $timestamp));\n\t\tif ($timezone !== null) {\n\t\t\t$time->setTimezone($timezone);\n\t\t}\n\n\t\treturn $time;\n\t}", "public function getTimestamp()\n {\n if (empty($this->timezone)) {\n $this->timezone = 'UTC';\n }\n $utcOffset = self::extractUtcOffset($this->timezone);\n if ($utcOffset !== false) {\n return (int)($this->timestamp - $utcOffset * 3600);\n }\n // The following code seems clunky - I thought the DateTime php class would allow to return timestamps\n // after applying the timezone offset. Instead, the underlying timestamp is not changed.\n // I decided to get the date without the timezone information, and create the timestamp from the truncated string.\n // Unit tests pass (@see Date.test.php) but I'm pretty sure this is not the right way to do it\n date_default_timezone_set($this->timezone);\n $dtzone = timezone_open('UTC');\n $time = date('r', $this->timestamp);\n $dtime = date_create($time);\n\n date_timezone_set($dtime, $dtzone);\n $dateWithTimezone = date_format($dtime, 'r');\n $dateWithoutTimezone = substr($dateWithTimezone, 0, -6);\n $timestamp = strtotime($dateWithoutTimezone);\n date_default_timezone_set('UTC');\n\n return (int) $timestamp;\n }", "public function valueOf()\n {\n return $this->getPreciseTimestamp(3);\n }", "public function getTimestamp()\n\t\t\t{\n\t\t\t\treturn $this->timestamp;\n\t\t\t}", "function getTimestamp() {\r\r\n\t\treturn $this->timestamp;\r\r\n\t}", "private static function timeStamp() {\n return date(\"Y-m-d H:i:s\");\n }", "public function getDateTime()\n {\n return $this->dateTime;\n }", "public function getDateTime()\n {\n return $this->dateTime;\n }", "public function getTimestamp()\n {\n return $this->readOneof(3);\n }", "static public function fromTimestamp($timestamp){\n\t\treturn self::getDatefromTimestamp($timestamp);\n\t}", "public function toDateTime(): \\DateTime\n {\n return \\DateTime::createFromImmutable($this->value);\n }", "public function timestamp() {\n return strtotime($this->updated_at);\n }", "public function get() {\n\t\treturn (new \\DateTime)->getTimestamp()*1000;\n\t}", "public function getTimestamp(){\n\t\treturn $this->_timestamp;\n\t}", "public function getTimeStamp() {\n\t\treturn $this->timeStamp;\n\t}", "public static function asTimestamp($timestamp)\n {\n // Return numerics as is\n if (is_numeric($timestamp)) {\n return $timestamp;\n }\n\n // Convert datetime & return on success\n if (($ts = strtotime($timestamp)) !== false) {\n return $ts;\n }\n\n throw new \\InvalidArgumentException(\n 'No valid datetime or timestamp format: '.$timestamp\n );\n }", "public function getDateTime() {\n\t\treturn $this->datetime;\n\t}", "protected function getTimeStamp() {\n return time().' ('.strftime( '%Y.%m.%d %H:%I:%S', time() ).')';\n }", "function util_datetime()\n{\n\t\treturn date(\"Y-m-d H:i:s\");\n}", "public function getDatetime()\n {\n return $this->datetime;\n }", "public function getDatetime()\n {\n return $this->datetime;\n }", "public function getDatetime()\n {\n return $this->datetime;\n }", "public static function ToTimestamp($DateTime = '') {\n if (preg_match('/^(\\d{4})-(\\d{2})-(\\d{2})(?:\\s{1}(\\d{2}):(\\d{2})(?::(\\d{2}))?)?$/', $DateTime, $Matches)) {\n $Year = $Matches[1];\n $Month = $Matches[2];\n $Day = $Matches[3];\n $Hour = ArrayValue(4, $Matches, 0);\n $Minute = ArrayValue(5, $Matches, 0);\n $Second = ArrayValue(6, $Matches, 0);\n return mktime($Hour, $Minute, $Second, $Month, $Day, $Year);\n } elseif (preg_match('/^(\\d{4})-(\\d{2})-(\\d{2})$/', $DateTime, $Matches)) {\n $Year = $Matches[1];\n $Month = $Matches[2];\n $Day = $Matches[3];\n return mktime(0, 0, 0, $Month, $Day, $Year);\n // } elseif ($DateTime == '') {\n // return time();\n } else {\n return FALSE;\n }\n }", "public function getCurrentTime()\n {\n return new \\DateTime();\n }", "public function getDateTime()\n {\n return $this->dateTime;\n }" ]
[ "0.76835024", "0.7448873", "0.73546666", "0.72295785", "0.72295785", "0.72295785", "0.7214386", "0.7100498", "0.70536214", "0.7036492", "0.7027717", "0.70233095", "0.69102836", "0.6893533", "0.68725014", "0.68636024", "0.68205947", "0.6819901", "0.68080074", "0.6775771", "0.6734081", "0.666944", "0.6669037", "0.6650025", "0.66055995", "0.6588561", "0.6559003", "0.6546332", "0.65409994", "0.6532119", "0.65114087", "0.6511257", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.6503597", "0.64998674", "0.64964414", "0.6492396", "0.6487407", "0.64857733", "0.6467271", "0.6467271", "0.6460912", "0.64518344", "0.6442667", "0.6433699", "0.64153165", "0.64057004", "0.63942426", "0.6390542", "0.63847804", "0.63828886", "0.63742125", "0.63641393", "0.6352986", "0.6339467", "0.6339467", "0.6324498", "0.6316361", "0.63154435", "0.62947834", "0.62923646", "0.6285477", "0.6278745", "0.6277675", "0.62630004", "0.6260246", "0.6243327", "0.6241409", "0.62313783", "0.62302864", "0.6220865", "0.62098455", "0.6209082", "0.6201835", "0.6201835", "0.61935776", "0.6193535", "0.6155408", "0.61444134", "0.61393595", "0.6137215", "0.6135595", "0.61328197", "0.6127591", "0.6124541", "0.61213523", "0.6115984", "0.6115984", "0.6115984", "0.6115922", "0.6111976", "0.61085725" ]
0.0
-1
Get the casts array.
public function getCasts() { return $this->casts; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getCasts()\n {\n return is_array($this->casts) ? array_merge($this->casts, ['translations' => 'array']) : ['translations' => 'array'];\n }", "public function getCasts()\n {\n $this->casts = array_merge($this->casts, [$this->getKeyName() => 'string']);\n\n return parent::getCasts();\n }", "public function getCastings()\n {\n return [];\n }", "function getCasts() {\n\t\tglobal $conf;\n\n\t\tif ($conf['show_system'])\n\t\t\t$where = '';\n\t\telse\n\t\t\t$where = \"\n\t\t\t\tAND n1.nspname NOT LIKE 'pg\\\\\\\\_%'\n\t\t\t\tAND n2.nspname NOT LIKE 'pg\\\\\\\\_%'\n\t\t\t\tAND n3.nspname NOT LIKE 'pg\\\\\\\\_%'\n\t\t\t\";\n\n\t\t$sql = \"\n\t\t\tSELECT\n\t\t\t\tc.castsource::pg_catalog.regtype AS castsource,\n\t\t\t\tc.casttarget::pg_catalog.regtype AS casttarget,\n\t\t\t\tCASE WHEN c.castfunc=0 THEN NULL\n\t\t\t\tELSE c.castfunc::pg_catalog.regprocedure END AS castfunc,\n\t\t\t\tc.castcontext,\n\t\t\t\tobj_description(c.oid, 'pg_cast') as castcomment\n\t\t\tFROM\n\t\t\t\t(pg_catalog.pg_cast c LEFT JOIN pg_catalog.pg_proc p ON c.castfunc=p.oid JOIN pg_catalog.pg_namespace n3 ON p.pronamespace=n3.oid),\n\t\t\t\tpg_catalog.pg_type t1,\n\t\t\t\tpg_catalog.pg_type t2,\n\t\t\t\tpg_catalog.pg_namespace n1,\n\t\t\t\tpg_catalog.pg_namespace n2\n\t\t\tWHERE\n\t\t\t\tc.castsource=t1.oid\n\t\t\t\tAND c.casttarget=t2.oid\n\t\t\t\tAND t1.typnamespace=n1.oid\n\t\t\t\tAND t2.typnamespace=n2.oid\n\t\t\t\t{$where}\n\t\t\tORDER BY 1, 2\n\t\t\";\n\n\t\treturn $this->selectSet($sql);\n\t}", "public function get(): array\n {\n return [\n 'type' => 'cast',\n 'left' => $this->leftOperand,\n 'right' => $this->rightOperand->get(),\n 'file' => $this->file,\n 'line' => $this->line,\n 'char' => $this->char,\n ];\n }", "protected function filterCustomCasts()\n {\n $customCasts = [];\n foreach ($this->casts as $attribute => $castClass) {\n if (is_subclass_of($castClass, CustomCastBase::class)) {\n $customCasts[$attribute] = $castClass;\n }\n }\n\n return $customCasts;\n }", "protected function createCast(array $cast) {\n $cast_list = array();\n foreach ($cast as $person) {\n $cast_list[] = new CastMember($this->connection, $person);\n }\n return $cast_list;\n }", "protected function outCast(array $arryFetch): array\n {\n return array_map(\n function ($fetch) {\n return $this->outCastOne($fetch);\n },\n $arryFetch\n );\n }", "protected function castRules()\n {\n return [\n 'student_id' => '!name:id|type:int',\n 'tutor' => function (Student $student) {\n return $student->tutor ? $student->tutor()->cast() : [];\n },\n 'firstname' => 'first_name',\n 'lastname' => 'last_name',\n 'email',\n 'student_number',\n ];\n }", "public function getAsArray();", "private static function _fetchMany($statement, &$castTable) {\n\n $a = [];\n $plan = null;\n\n /*\n * First row extracted will be creating casting plan\n */\n if($row = self::fetchRow($statement)) {\n $plan = self::_prepareCasting($row, $castTable);\n self::_castingByPlan($row, $plan);\n $a[] = $row;\n }\n /*\n * Rest rows will be casted according the plan\n */\n while ($row = self::fetchRow($statement)) {\n\n $i = 0;\n\n foreach ($row as &$value) {\n\n if($value !== null) {\n\n switch ($plan[$i]) {\n\n case 5: break;\n case 1: $value = (int) $value; break;\n case 2: $value = (int) $value === 1 ? true : false; break;\n case 3: $value = (float) $value; break;\n case 4: $value = json_decode($value); break;\n default: break;\n\n }\n\n }\n\n $i++;\n\n }\n\n $a[] = $row;\n\n }\n\n return $a;\n\n }", "public static function cast($collection)\n {\n return [\n Caster::PREFIX_VIRTUAL.'all' => $collection->all(),\n ];\n }", "public function toArray()\n {\n return $this->cast('array');\n }", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function getCastedFields()\n {\n return $this->castedFields;\n }", "#[@test]\n public function arrayCast() {\n $this->assertSourcecodeEquals(\n '$s= (array)$num;',\n $this->emit('$s= (array)$num;')\n );\n }", "public function getAsArray(): array {\n\t\t$result = [];\n\t\tforeach ( self::FIELD_MAPPING as $field => $_ ) {\n\t\t\t$result[$field] = $this->$field;\n\t\t}\n\t\treturn $result;\n\t}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "function toArray() ;", "function toArray() ;", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "abstract public function to_array();", "public function asArray(): array\n {\n return [\n 'table' => $this->table,\n 'type' => $this->type,\n 'on' => $this->on,\n ];\n }", "public function AsArray();", "public function toArray()\r\n {\r\n \treturn array(\r\n \t\t'guid'\t=> $this->guid,\r\n \t\t'pollGuid'\t=> $this->pollGuid,\r\n \t\t'text' => $this->text,\r\n \t\t'hits' => $this->hits\r\n \t);\r\n }", "private static function _prepareCasting(array &$row, &$castTable) {\n\n $castingPlan = [];\n $i = 0;\n\n foreach ($row as $name => $value) {\n\n if(isset($castTable[$name])) {\n\n $cast = $castTable[$name];\n\n if (($cast & self::T_NULL) !== 0)\n $cast = $cast ^ self::T_NULL;\n\n switch ($cast) {\n\n case static::T_INT :\n $castingPlan[$i] = 1;\n break;\n\n case static::T_BOOL:\n $castingPlan[$i] = 2;\n break;\n\n case static::T_FLOAT:\n $castingPlan[$i] = 3;\n break;\n\n case static::T_ARRAY:\n $castingPlan[$i] = 4;\n break;\n\n default:\n $castingPlan[$i] = 5;\n break;\n\n }\n\n } else\n $castingPlan[$i] = 5;\n\n $i++;\n\n }\n\n return $castingPlan;\n\n }", "public function getTypes(): array;", "public function getTypes(): array;", "public function toArray()\n {\n $events = [];\n $hydrator = new ReflectionHydrator();\n foreach ($this->events as $key => $event) {\n $events[$key] = $hydrator->extract($event);\n }\n\n return $events;\n }", "public function toArray() {\n\t\treturn array(\n\t\t\tself::FIELD_CODI_ESPECTACLE=>$this->getCodiEspectacle(),\n\t\t\tself::FIELD_DATA=>$this->getData(),\n\t\t\tself::FIELD_HORA=>$this->getHora());\n\t}", "public function toArray() : array;", "public function toArray() : array;", "public function toArray() : array;", "public function toArray() : array;", "public function toArray() : array;", "public function toArray() : array;", "public function toArray(): array\n {\n $values = array();\n foreach ($this->getAllFieldsAliases() as $name) {\n $field = $this->{'field' . \\ucfirst($name)};\n $values[$name] = $field['value'];\n }\n\n return $values;\n }", "public function toArray()\n {\n $data = parent::toArray();\n if (isset($this->type)) {\n $data['type'] = $this->type;\n }\n return $data;\n }", "private function toArray()\n {\n \treturn array(\n \t\t'Locus'\t\t\t\t=> $this->getLoucs(),\n \t\t'Length'\t\t\t=> $this->getLength(),\n \t\t'Strandedness'\t\t=> $this->getStrandedness(),\n \t\t'mulType'\t\t\t=> $this->getMulType(),\n \t\t'Topology'\t\t\t=> $this->getTopology(),\n \t\t'PriAccession'\t\t=> $this->getPriAccession(),\n \t\t'AccessionVersion'\t=> $this->getAccessionVersion(),\n \t\t'OtherSeqIds'\t\t=> $this->getOtherSeqIds(),\n \t\t'Organism'\t\t\t=> $this->getOrganism(),\n \t\t'Taxonomy'\t\t\t=> $this->getTaxonomy(),\n \t\t'Source'\t\t\t=> $this->getSource(),\n \t\t'Refferences'\t\t=> $this->getRefs(),\n \t\t'Comment'\t\t\t=> $this->getComment(),\n \t\t'Features'\t\t\t=> $this->getFeatures(),\n \t\t'Sequence'\t\t\t=> $this->getSequence()\n \t);\n }", "abstract protected function toArray();" ]
[ "0.80621815", "0.73730725", "0.72783834", "0.69045466", "0.68094766", "0.6522334", "0.64197433", "0.6062292", "0.5985838", "0.5969224", "0.59595346", "0.5919312", "0.58852863", "0.5857307", "0.5857307", "0.5857307", "0.5857307", "0.5857307", "0.5857307", "0.58405375", "0.58217144", "0.5744266", "0.5719278", "0.5719278", "0.5719278", "0.5719278", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57182556", "0.57181966", "0.57181966", "0.5682695", "0.5682695", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.5662278", "0.56591237", "0.5656075", "0.56438416", "0.56369424", "0.5619003", "0.56189895", "0.56189895", "0.55787873", "0.5568783", "0.55618006", "0.55618006", "0.55618006", "0.55618006", "0.55618006", "0.55618006", "0.55384564", "0.5528433", "0.5520891", "0.5512849" ]
0.7578519
2
Remove one or more fields.
public function drop($columns) { if (!is_array($columns)) { $columns = [$columns]; } // Unset attributes foreach ($columns as $column) { $this->__unset($column); } // Perform unset only on current document return $this->newQuery()->where($this->getKeyName(), $this->getKey())->unset($columns); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function formRemoveFields($fields = array()) {\r\n $this->fieldsRemove = $fields;\r\n return $this;\r\n }", "static function &removeFields(&$fields,$removes){\r\n\t\t foreach($removes as $erase) {\r\n\t\t\t\t\t\t $fields->removeByName($erase);\r\n\t\t\t\t\t\t\t\t\t\t } \r\n\t\t\t\t\t return $fields;\r\n\t\t\t\t\t }", "protected function unsetFields()\n {\n }", "public function remove_form_field()\n\t{\n\t\t//Get logged in session admin id\n\t\t$user_id \t\t\t\t\t\t= ($this->session->userdata('user_id_hotcargo')) ? $this->session->userdata('user_id_hotcargo') : 1;\n\t\t$setting_data \t\t\t\t\t= $this->myaccount_model->get_account_data($user_id);\n\t\t$data['data']['setting_data'] \t= $setting_data;\n\t\t$data['data']['settings'] \t\t= $this->sitesetting_model->get_settings();\n\t\t$data['data']['dealer_id'] \t\t= $user_id;\n\t\t\n\t\t//getting all admin data \n\t\t$data['myaccount_data'] \t\t\t= $this->myaccount_model->get_account_data($user_id);\n\t\t\n\t\t\n\t\t//Get requested id to remove\n\t\t$field_id \t\t\t\t\t= $this->input->get('form_id');\n\t\t\n\t\t//deleting query\n\t\t$this->mongo_db->where(array('field_name' => $field_id));\n\t\tif($this->mongo_db->delete('form_fields'))\n\t\t\techo 1;\n\t\telse\n\t\t\techo 0;\n\t}", "function delete_field($field)\n {\n }", "protected function unsetFields()\n\t{\n unset(\n $this['headshot_id'], $this['created_at'],\n $this['updated_at'], $this['slug']\n );\n\t}", "public function removeFields($field_names){\n\t\tforeach($field_names as $field_name){\n\t\t\tif(isset($this->Fields[$field_name])){\n\t\t\t\tunset($this->Fields[$field_name]);\n\t\t\t}\n\t\t}\n\t}", "public function unset($fields): self\n\t{\n\t\tif (isset($fields) && is_string($fields) && $fields != '')\n\t\t{\n\t\t\t$this->push_update_method('$unset', [$fields => 1]);\n\t\t}\n\t\telseif (isset($fields) && is_array($fields) && !empty($fields))\n\t\t{\n\t\t\tforeach ($fields as $field)\n\t\t\t{\n\t\t\t\tif (is_string($field) && $field != '')\n\t\t\t\t{\n\t\t\t\t\t$this->push_update_method('$unset', [$field => 1]);\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$this->error('Each field name in list must not be an empty string', __METHOD__);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->error('Specify 1 valid argument', __METHOD__);\n\t\t}\n\t\t\n\t\treturn $this;\n\t}", "static public function remove_meta_fields( $fields ) {\n //unset( $fields['_project_images'] );\n //unset( $fields['_client_name'] );\n //unset( $fields['_project_url'] );\n unset( $fields['_project_date'] );\n\n return $fields;\n }", "public function removeField($field_name){\n\t\tif(isset($this->Fields[$field_name])){\n\t\t\tunset($this->Fields[$field_name]);\n\t\t}\n\t}", "public function deleteField($fieldName) {}", "public function removeField($index) {\n\t\t$this->fields[$index] = null;\n\t}", "public function removeField($index) {\n\t\t$this->fields[$index] = null;\n\t}", "public function removeField( $field ) {\r\n if ( isset($this->fields[$field]) ) {\r\n unset($this->fields[$field]);\r\n }\r\n\r\n }", "function do_delete(){\n\t\t// remove from fieldset:\n\t\t$fieldset = jcf_fieldsets_get( $this->fieldset_id );\n\t\tif( isset($fieldset['fields'][$this->id]) )\n\t\t\tunset($fieldset['fields'][$this->id]);\n\t\tjcf_fieldsets_update( $this->fieldset_id, $fieldset );\n\t\t\n\t\t// remove from fields array\n\t\tjcf_field_settings_update($this->id, NULL);\n\t}", "public function removeFields(array $fields)\n\t{\n\t\tforeach ($fields as $field) $this->removeField($field);\n\n\t\treturn $this;\n\t}", "protected function removeFields(array $fields, array &$entity)\n {\n foreach ($fields as $field)\n {\n unset($entity[$field]);\n }\n }", "function updateCMSFields($fields) {\n\t\t$fields->removeByName('UnsubscribedRecords');\n\t\t$fields->removeByName('BlacklistedEmail');\n\t}", "public function delete($fields) {\n $idField = FieldService::instance()->getFieldByName($fields, \"id\");\n $this->db->delete($this->tableName, array('id' => $idField->value));\n \n $relationsFields = FieldService::instance()->getAllRelationsFields($fields);\n $childFields = FieldService::instance()->getAllChildFields($fields);\n \n if(count($relationsFields) > 0) {\n //delete relations too..\n $this->deleteRelationsFields($idField->value);\n }\n \n if(count($childFields) > 0) {\n //delete child relations too..\n $this->deleteChildRelationFields($idField->value);\n }\n\n $fileService = FileService::instance();\n \n //delete upload files too..\n $uploadFilesIds = array();\n foreach (FieldService::instance()->getAllUploadFields($fields) as $field) {\n if($field->value) {\n $uploadFilesIds[] = $field->value;\n }\n }\n $fileService->deleteFileUploads($uploadFilesIds);\n \n // delete uploads files too\n foreach (FieldService::instance()->getAllUploadsFields($fields) as $field) {\n \n $whereData = array('typeid' => $idField->value, \"typename\" => $this->typeName, \"fieldname\" => $field->name);\n //first get all files that needs to be removed.\n $relations = $this->db->get_where(getFileUploadsRelationsTablename(), $whereData)->result();\n \n $fileids = UtilityService::instance()->getPropertyArray($relations, \"fileuploadid\");\n $this->db->delete(getFileUploadsRelationsTablename(), array('typeid' => $idField->value, \"typename\" => $this->typeName));\n \n $fileService->deleteFileUploads($fileids);\n }\n }", "function website_remove($fields){\n\n\tif(isset($fields['url']))\n\tunset($fields['url']);\n\n\treturn $fields;\n}", "function hankart_remove_fields( $woo_checkout_fields_array ) {\n\t// unset( $woo_checkout_fields_array['billing']['billing_first_name'] );\n\t// unset( $woo_checkout_fields_array['billing']['billing_last_name'] );\n\t// unset( $woo_checkout_fields_array['billing']['billing_phone'] );\n\t// unset( $woo_checkout_fields_array['billing']['billing_email'] );\n\t// unset( $woo_checkout_fields_array['order']['order_comments'] );\n\t// and to remove the fields below\n\tunset( $woo_checkout_fields_array['billing']['billing_company'] );\n\treturn $woo_checkout_fields_array;\n}", "public function remove()\n {\n $arg = func_get_args();\n\n foreach ($this->group as $form) {\n if (! is_object($form)) {\n $form = new $form();\n }\n\n if (method_exists($form, 'delete')) {\n $form->delete(...$arg);\n }\n }\n }", "public function removeField(string $name): void\n {\n $card = $this->getCardFor($name);\n\n if (null === $card) {\n return;\n }\n\n $group = $this->getGroup($card);\n foreach ($group->fields as $i => $field) {\n if (isset($field->id) && $field->id === $name) {\n unset($group->fields[$i]);\n }\n }\n }", "function meal_checkout_remove_fields( $fields ) {\n unset( $fields['billing']['billing_company'] );\n unset( $fields['billing']['billing_country'] );\n unset( $fields['billing']['billing_address_1'] );\n unset( $fields['billing']['billing_address_2'] );\n unset( $fields['billing']['billing_city'] );\n unset( $fields['billing']['billing_state'] );\n unset( $fields['billing']['billing_postcode'] ); \n\n // remove the shippig fields below\n unset( $fields['shipping']['shipping_first_name'] ); \n unset( $fields['shipping']['shipping_last_name'] ); \n unset( $fields['shipping']['shipping_company'] ); \n unset( $fields['shipping']['shipping_country'] ); \n unset( $fields['shipping']['shipping_address_1'] ); \n unset( $fields['shipping']['shipping_address_2'] ); \n unset( $fields['shipping']['shipping_city'] ); \n unset( $fields['shipping']['shipping_state'] ); \n unset( $fields['shipping']['shipping_postcode'] ); \n\n // remove order comments field\n unset( $woo_checkout_fields_array['order']['order_comments'] );\n\n \n \n return $fields;\n}", "public function field_delete_field($field_name) {\n field_delete_field($field_name);\n field_purge_batch();\n }", "public function unsetFieldFlags($flags) {}", "public function remove(array $fields)\n {\n if (isset($fields['rm_content_types'])) {\n foreach ($fields['rm_content_types'] as $id) {\n $type = Table\\ContentTypes::findById((int)$id);\n if (isset($type->id)) {\n $type->delete();\n }\n }\n }\n }", "private function removeField(string $parent, array &$content) {\n $path = preg_replace('/(\\d+)([.*\\d+])/x', '$1.fields$2', $parent);\n\n //$element = Arr::get($content['questions'], $path);\n\n Arr::forget($content[$this->configuration['fields_key']], $path);\n\n // remove fields index if it is empty\n /*$parentElement = Arr::get($content['questions'], $element['parent']);\n if (isset($parentElement['fields']) && empty($parentElement['fields'])) {\n $children = preg_replace('/([.]\\d+$)/', '', $path);\n Arr::forget($content['questions'], $children);\n }*/\n }", "public function delete_fields($fieldid){\n $this->db->where('form_fields_id',$fieldid);\n $this->db->delete('form_fields');\n }", "function DeleteNotOrdinaryFields($fields = array()){\n if ($this->nonordinary) {\n foreach ($this->form_fields as $sectionname => $section) {\n foreach ($section as $number => $field) {\n switch ($field[\"control\"]) {\n case \"dbcombobox\":\n case \"dbcheckboxgroup\":\n case \"checkboxgroup\":\n case \"dbtreecombobox\":\n if ($field[\"multiple\"])\n EditPageHelper::DeleteDBMultipleField($field, $fields, $this);\n break;\n case \"autocomplete\":\n \tif ($field[\"field_table\"]!=\"\")\n EditPageHelper::DeleteAutocompleteField($field, $fields, $this);break;\n default:\n \t$this->DeleteCustomNotOrdinaryField($field, $fields);\n break;\n }\n\n }\n }\n }\n }", "public function removeSettingFields( $sFieldID1, $sFieldID2=null, $_and_more ) {\n foreach( func_get_args() as $_sFieldID ) { \n $this->oForm->removeField( $_sFieldID ); \n }\n }", "public function remove_field( $id ) {\n\n\t\t$fields = $this->options;\n\n\t\tif ( isset( $fields[ $id ] ) ) {\n\t\t\tunset( $fields[ $id ] );\n\t\t}\n\n\t\t$this->options = $fields;\n\n\t}", "function removeField($name) {\n $this->body->removeField($name);\n return $this;\n }", "public function dropField( $table, $field );", "public function deleteField($fieldName, $reset = true) {}", "public function __unset($field) {\n\t\t$this->offsetUnset($field);\n\t}", "function remove_website_field($fields) {\n unset($fields['url']);\n return $fields;\n}", "public function removeField($value) {\n return $this->setProperty('removeField', $value);\n }", "function bt_custom_shipping_fields( $fields = array() ) {\n unset($fields['shipping_company']);\n // unset($fields['shipping_address_1']);\n // unset($fields['shipping_address_2']);\n // unset($fields['shipping_state']);\n // unset($fields['shipping_city']);\n // unset($fields['shipping_phone']);\n // unset($fields['shipping_postcode']);\n // unset($fields['shipping_country']);\n return $fields;\n}", "public function remove_field(form_item $field) {\n foreach($this->_fields as $key=>$f) {\n if ($f == $field) {\n unset($this->_fields[$key]);\n return;\n }\n }\n }", "public function pop($fields = ''): self\n\t{\n\t\treturn $this->_pop($fields, 1, __METHOD__);\n\t}", "public function __unset($key) {\n unset($this->_fields[$key]);\n unset($this->_fieldBoosts[$key]);\n }", "public function removeField($field)\n {\n if (is_string($field)) {\n $field = $this->getField($field);\n }\n\n $pos = $this->getFieldPosition($field);\n if (false === $pos) {\n throw new EngineException(\n sprintf('No field named %s found in entity %s.', $field->getName(), $this->getName())\n );\n }\n\n unset($this->fields[$pos]);\n unset($this->fieldsByName[$field->getName()]);\n unset($this->fieldsByLowercaseName[strtolower($field->getName())]);\n// unset($this->fieldsByPhpName[$field->getName()]);\n\n $this->adjustFieldPositions();\n // @FIXME: also remove indexes and validators on this field?\n }", "public function removeField($fieldName)\n {\n unset($this->fields[$fieldName]);\n }", "public function clear() {\n foreach ($this->Fields as $key => $item) {\n $this->$key = null;\n }\n }", "public function deleteCustomFields(array $documentFields = array())\n {\n # DELETE /accounts/{accountId}/envelopes/{envelopeId}/documents/{documentId}/fields\n }", "function acf_delete_field($id = 0)\n{\n}", "function woo_remove_fields( $woo_checkout_fields_array ) {\n // unset( $woo_checkout_fields_array['billing']['billing_first_name'] );\n // unset( $woo_checkout_fields_array['billing']['billing_last_name'] );\n // unset( $woo_checkout_fields_array['billing']['billing_phone'] );\n // unset( $woo_checkout_fields_array['billing']['billing_email'] );\n // unset( $woo_checkout_fields_array['order']['order_comments'] ); // remove order notes\n \n // and to remove the billing fields below\n unset( $woo_checkout_fields_array['billing']['billing_company'] ); // remove company field\n unset( $woo_checkout_fields_array['billing']['billing_country'] );\n unset( $woo_checkout_fields_array['billing']['billing_address_1'] );\n unset( $woo_checkout_fields_array['billing']['billing_address_2'] );\n unset( $woo_checkout_fields_array['billing']['billing_city'] );\n unset( $woo_checkout_fields_array['billing']['billing_state'] ); // remove state field\n unset( $woo_checkout_fields_array['billing']['billing_postcode'] ); // remove zip code field\n \n return $woo_checkout_fields_array;\n}", "public function cleanseFields() {\n $this->dictionary->remove('nospam');\n $this->dictionary->remove('blank');\n $submitVar = $this->controller->getProperty('submitVar');\n if (!empty($submitVar)) {\n $this->dictionary->remove($submitVar);\n }\n }", "public function deleteAllFields()\n\t{\n\t\t//todo: delete từng field và remove trong cache\n\t\t$cmd = self::getDb()->createCommand(\"DELETE FROM tbl_cms_post_field WHERE post_id=:pid\");\n\t\t$cmd->bindValue(\":pid\", $this->id);\n\t\treturn (bool)$cmd->execute();\n\t}", "function delete_profile_field()\n {\n if ( ! Session::access('can_admin_members'))\n {\n return Cp::unauthorizedAccess();\n }\n\n if ( ! $m_field_id = Request::input('m_field_id'))\n {\n return false;\n }\n\n $query = DB::table('member_fields')\n ->where('m_field_id', $m_field_id)\n ->select('m_field_name', 'm_field_label', 'm_field_id')\n ->first();\n\n if (!$query) {\n return false;\n }\n\n // Drop Column\n Schema::table('member_data', function($table) use ($query)\n {\n $table->dropColumn('m_field_'.$query->m_field_name);\n });\n\n DB::table('member_fields')->where('m_field_id', $query->m_field_id)->delete();\n\n Cp::log(__('members.profile_field_deleted').'&nbsp;'.$query->m_field_label);\n\n return $this->custom_profile_fields();\n }", "function bt_remove_order_notes( $fields ) {\n unset($fields['order']['order_comments']);\n return $fields;\n}", "public function clearFields()\r\n {\r\n $this->fields = array();\r\n\r\n return $this;\r\n }", "public function delete()\n\t{\n\t\tforeach( \\IPS\\Db::i()->select( '*', 'form_fields', array( 'field_type=?', 'Upload' ) ) AS $field )\n\t\t{\n\t\t\ttry\n\t\t\t{\n\t\t\t\tforeach( \\IPS\\Db::i()->select( '*', 'form_values', array( \"value_value<>? OR value_value IS NOT NULL\", '' ) ) as $cfield )\n\t\t\t\t{\n\t\t\t\t\t\\IPS\\File::get( 'core_FileField', $cfield[ 'value_value' ] )->delete();\n\t\t\t\t}\n\t\t\t}\n\t\t\tcatch( \\Exception $e ){}\n\t\t}\n\t}", "protected function removeColumns()\n {\n $table = $this->ask('Enter the name of desired table');\n $this->checkInput($table);\n $columns = $this->ask('Enter your desired columns separated by space');\n $this->checkInput($columns);\n $separatedColumns = explode(' ', $columns);\n $this->service->removeColumns($table, $separatedColumns);\n }", "protected function removeUnWantedfields(&$data) {\n unset($data['uuid']);\n unset($data['langcode']);\n unset($data['dependencies']);\n unset($data['id']);\n }", "public function removeIgnored($fields){\n\t\tforeach($this->ignoreFields as $ignore){\n\t\t\tif(($key = array_search($ignore, $fields)) !== false){\n\t\t\t\tunset($fields[$key]);\n\t\t\t}\n\t\t}\n\t\treturn $fields;\n\t}", "public function fieldsFilter($fields)\n {\n foreach ($fields as $k => $f) {\n if (!$this->isFieldExist($k)) {\n unset($fields[$k]);\n }\n }\n return $fields;\n }", "public function __unset(string $field): void\n\t{\n\t\t$this->unsetValue($field);\n\t}", "public function clear(array $fieldsToClear = null){\n if($fieldsToClear===null){ \n $fieldsToClear = array_keys($this->currentRowToArray());\n }\n foreach($fieldsToClear as $field){\n $this->$field=null;\n }\n return $this;\n }", "function bt_custom_billing_fields( $fields = array() ) {\n unset($fields['billing_company']);\n // unset($fields['billing_address_1']);\n // unset($fields['billing_address_2']);\n // unset($fields['billing_state']);\n // unset($fields['billing_city']);\n // unset($fields['billing_phone']);\n // unset($fields['billing_postcode']);\n // unset($fields['billing_country']);\n return $fields;\n}", "public function remove(UpdateFieldInterface $field)\n {\n $this->remove[] = $field;\n }", "public function pushRemoveFromCart($fields)\n {\n $this->pushCartAction('remove', 'removeFromCart', $fields);\n }", "public static function eraseUserFields($ID)\n\t{\n\t\tif(!is_int($ID))\n\t\t{\n\t\t\t$ID = (int)$ID;\n\t\t}\n\n\t\tif($ID <= 0)\n\t\t{\n\t\t\treturn;\n\t\t}\n\n\t\t/** @var \\CAllUserTypeManager $USER_FIELD_MANAGER */\n\t\tglobal $USER_FIELD_MANAGER;\n\t\t$entityID = self::prepareUserFieldEntityID($ID);\n\t\t$manager = new \\CCrmFields($USER_FIELD_MANAGER, $entityID);\n\t\tforeach($manager->GetFields() as $field)\n\t\t{\n\t\t\t$manager->DeleteField($field['ID']);\n\t\t}\n\n\t\t//region Clear components cache\n\t\t/** \\CCacheManager $CACHE_MANAGER */\n\t\tglobal $CACHE_MANAGER;\n\t\t$CACHE_MANAGER->ClearByTag('crm_fields_list_'.$entityID);\n\t\t//endregion\n\t}", "private function unsetProperties(){\n //Human::log(\"--------------------------------------------------- unset initial properties for \".$this->modelName);\n foreach($this->fields() as $f){\n \n $fieldName=$f->name;\n \n unset($this->$fieldName);\n /*\n if(gettype($this->$fieldName)==\"object\"){\n Human::log(\"FIELD now $fieldName is \". get_class($this->$fieldName)); \n }else{\n Human::log(\"FIELD now $fieldName is \". gettype($this->$fieldName)); \n }\n\t \n\t */\n } \n }", "public function testRemoveField()\n\t{\n\t\t$this->instance->removeField('content');\n\n\t\t$this->instance->bind($this->getTestData());\n\n\t\t$this->assertNull($this->instance->content);\n\t}", "public function destroy( $value = NULL, $field = 'id' );", "function acf_remove_local_field($key = '')\n{\n}", "public function delete( $value = NULL, $field = 'id' );", "public function removeColumn($aField) {\r\n foreach ($this -> mCols as $key => $col) {\r\n if ($key == $aField) {\r\n unset($this -> mCols[$key]);\r\n }\r\n }\r\n }", "function offsetUnset($key)\n\t{\n\t\tif (isset($this->fields[$key]))\n\t\t\tunset($this->fields[$key]);\n\t}", "public function destroy(Request $request)\n {\n $Input = $request->all();\n $pagesIDs = $Input['fieldsIDs'];\n $fieldsIdArray = explode(',', $pagesIDs);\n\n\n\n\n foreach ($fieldsIdArray as $key => $fieldId)\n {\n\n $subFields = Fields::where('group_id', $fieldId)->first();\n\n if($subFields)\n {\n if($subFields->id)\n {\n return redirect()->route('fields.index')->with('delete_message',\"You can not delete this group, It's contain some fields\");\n }\n }\n\n Fields::find($fieldId)->delete();\n\n // Store in audit\n $auditData = array();\n $auditData['user_id'] = \\Auth::user()->id;\n $auditData['section'] = 'formFields';\n $auditData['action'] = 'formFields.delete';\n $auditData['time_stamp'] = time();\n $auditData['device_id'] = \\Request::ip();\n $auditData['device_type'] = 'web';\n auditTrackRecord($auditData);\n }\n return redirect()->route('fields.index')->with('flash_message','Field deleted successfully');\n }", "public function removeFieldSet($index) {\n\t\t$this->fieldsets[$index] = null;\n\t}", "function modify_user_meta($profile_fields) {\n\n // Add new fields\n $profile_fields['facebook_id'] = 'Facebook Profile ID';\n $profile_fields['twitter_username'] = 'Twitter @usename';\n\n // Remove old fields\n unset($profile_fields['aim']);\n unset($profile_fields['yim']);\n //not working unset($profile_fields['url']);\n unset($profile_fields['jabber']);\n\n return $profile_fields;\n}", "public function remove();", "public function remove();", "public function remove();", "public function remove();", "public function delete_field_group($field_group)\n {\n }", "public function remove() {\n\n // Updates DB (data & metadata)\n $this->attributes->removeAll($this->get(\"id\"));\n $this->db->delete(XCMS_Tables::TABLE_USERS, array(\n \"id\" => $this->get(\"id\")\n ));\n\n }", "public function delete_reviews($fields = NULL)\n\t{\n\t\t$this->db->delete('reviews', $fields);\n\t\tvar_dump($this->db->last_query());\n\t}", "public function Delete($fields, $type)\n {\n $object = $this->getObject($type, $fields);\n $this->_proxyObject->DeleteObject($object);\n $this->_proxyObject->SaveChanges();\n }", "protected function deleteFromStructure(array &$dataStructure, array $fieldsToBeRemoved)\n {\n\n foreach ($fieldsToBeRemoved as $sheetName => $sheetFields) {\n\n $fieldsInSheet = GeneralUtility::trimExplode(',', $sheetFields, true);\n \n foreach ($fieldsInSheet as $fieldName) {\n unset($dataStructure['sheets'][$sheetName]['ROOT']['el']['settings.' . $fieldName]);\n }\n }\n unset($dataStructure['sheets']['theme']);\n }", "public function remove_all_cat_field()\n\t{\n\t\t//Get logged in session admin id\n\t\t$user_id \t\t\t\t\t\t= ($this->session->userdata('user_id_hotcargo')) ? $this->session->userdata('user_id_hotcargo') : 1;\n\t\t$setting_data \t\t\t\t\t= $this->myaccount_model->get_account_data($user_id);\n\t\t$data['data']['setting_data'] \t= $setting_data;\n\t\t$data['data']['settings'] \t\t= $this->sitesetting_model->get_settings();\n\t\t$data['data']['dealer_id'] \t\t= $user_id;\n\t\t\n\t\t//getting all admin data \n\t\t$data['myaccount_data'] \t\t\t= $this->myaccount_model->get_account_data($user_id);\n\t\t\n\t\t\n\t\t//Get requested form type from url segment position 3\n\t\t$field_id \t\t\t\t\t= $this->uri->segment(3);\n\t\t\n\t\t//deleting query\n\t\t$this->mongo_db->where(array('form_type' => $field_id));\n\t\tif($this->mongo_db->delete_all('form_fields'))\n\t\t\t$this->session->set_flashdata('flash_message', 'info_deleted');\n\t\telse\n\t\t\t$this->session->set_flashdata('flash_message', 'info_delete_failed');\n\t\t\t\n\t\tredirect('control/data-forms');\n\t}", "function acf_delete_field_group($id = 0)\n{\n}", "public function drop($columns) {\n if (!is_array($columns))\n $columns = array($columns);\n\n $fields = array();\n\n foreach ($columns as $column) {\n $fields[$column] = 1;\n }\n\n $query = array('$unset' => $fields);\n\n return $this->performUpdate($query);\n }", "public static function delete($field_id, $field_type)\n\t{\n\t\tswitch (SQL_DBAL)\n\t\t{\n\t\t\tcase 'mysql' :\n\t\t\tcase 'mysqli' :\n\t\t\t\t$method = 'drop_column_mysql';\n\t\t\tbreak;\n\n\t\t\tcase 'pgsql' :\n\t\t\t\t$method = 'drop_column_pgsql';\n\t\t\tbreak;\n\n\t\t\tcase 'sqlite' :\n\t\t\t\t$method = 'drop_column_sqlite';\n\t\t\tbreak;\n\t\t}\n\n\t\t// Nom de la table\n\t\tswitch ($field_type)\n\t\t{\n\t\t\tcase PROFIL_FIELDS_CONTACT :\n\t\t\t\t$tablename = 'users_contact';\n\t\t\t\t$sql_field_name = 'contact_';\n\t\t\tbreak;\n\t\t\t\n\t\t\tcase PROFIL_FIELDS_PERSONAL :\n\t\t\t\t$tablename = 'users_personal';\n\t\t\t\t$sql_field_name = 'personal_';\n\t\t\tbreak;\n\t\t\t\n\t\t\tdefault :\n\t\t\t\ttrigger_error('Profil_fields->create() :: Mauvais parametre pour le type de profil : ' . $field_type, FSB_ERROR);\n\t\t\tbreak;\n\t\t}\n\t\tself::$method(SQL_PREFIX . $tablename, $sql_field_name . $field_id);\n\t\t\n\t\t// On supprime le champ de la table profil_fields\n\t\t$sql = 'DELETE FROM ' . SQL_PREFIX . 'profil_fields\n\t\t\t\tWHERE pf_id = ' . $field_id;\n\t\tFsb::$db->query($sql);\n\t}", "function delete_field($selector, $post_id = \\false)\n{\n}", "public function removeField( $name )\n {\n if( $name instanceof WebLab_Data_Field ) {\n $field = $name;\n $name = $field->getAlias();\n if( empty( $name ) ) {\n $name = $field->getName();\n }\n }\n unset( $this->_fields[ $name ] );\n\n return $this;\n }", "public function remove(...$items);", "public function dropFieldsFromDatabase($tablename, $fields){\r\n\t\t$_tableName = $this->_connection->getTablename($tablename);\r\n\t\t$isExist = $this->fetchTableName($_tableName);\r\n\r\n\t\t$ColumnSuccess = [];\r\n\t\t$ColumnErrors = [];\r\n\r\n\t\tif($isExist){\r\n\t\t\tforeach ($fields as $key => $field) {\r\n\t\t\t\tif(isset($field['name']) && !empty($field['name'])){\r\n\t\t\t\t\t$isColumnExist = $this->fetchColumnName($_tableName, $field['name']);\r\n\t\t\t\t\tif($isColumnExist){\r\n\r\n\t\t\t\t\t\ttry {\r\n\t\t\t\t\t\t\t$connection = $this->_connection->getConnection()->getConnection();\r\n\t\t\t\t\t\t\t$connection->exec(\"ALTER TABLE `\".$_tableName.\"` DROP `\".$field['name'].\"`;\");\r\n\r\n\t\t\t\t\t\t\t$ColumnSuccess[] = \"Column \".$field['name'].\" dropped successfully\";\r\n\t\t\t\t\t\t} catch (\\PDOException $pe) {\r\n\t\t\t\t\t\t\t$ColumnErrors[] = 'Cannot drop column ' . $field['name'] . ' - ' . $pe->getMessage();\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse {\r\n\t\t\t\t\t\t$ColumnErrors[] = $field['name'] . ' does not exist from the database';\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\t$ColumnErrors[] = $field['name'] . ' is required';\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tthrow new \\Exception(\"Database table name \".$_tableName.\" does not exist\");\r\n\t\t}\r\n\t\treturn [\r\n\t\t\t\"column_success\" => $ColumnSuccess,\r\n\t\t\t\"column_errors\" => $ColumnErrors\r\n\t\t];\r\n\t}", "public function removeValidation() {\n\n\t\t$fields = $this->getFields();\n\n\t\tforeach ($fields as $field) {\n\t\t\t$field->clearValidationRules();\n\t\t}\n\t}", "function sql_exclude_field_list($mysqli,$table,$remove){\n\n\t/* Here field names are bookended by || to avoid partial string matches. This will ensure only the field desired is removed, and fields which contain the desired field's string will not. i.e. Removing 'fiction' will not also remove 'non-fiction.' */\n\n\t/* Build list of fields to remove. */\n\n\t/* Add pipes to beginning of string. */\n\t$remove = \"||\" . $remove;\n\n\t/* Iterate through string and add pipes to each side of commas if commas exist. */\n\tif (strpos($remove,\",\")){\n\t\t$remove = str_replace(\",\" , \"||,||\",$remove);\n\t}\n\n\t/* Add last set of pipies to list fo fields to remove. */\n\t$remove .= \"||\";\n\n\t/* Build SQL for query. */\n\t$sqlFields = \"SELECT * FROM \" . $table;\n\n\t/* Run query. */\n\t$queryFields = $mysqli->query($sqlFields);\n\t\tif(!$queryFields){\n\t\t\texit(\"Bad SQL for Field Name query. Error: \" . $mysqli->error);\n\t\t}\n\n\t/* Fetch result row. */\n\t$resultFields = $queryFields->fetch_fields();\n\t\tif(!$resultFields){\n\t\t\texit(\"Fetch Fields failed. Error: \" . $mysqli->error);\n\t\t}\n\n\t/* set variable to return from function. */\n\t$return = \"\";\n\n\t/* Iterate over result set to pull field names. */\n\tforeach($resultFields as $value){\n\t\t/* Bookend each field name for uniqueness. */\n\t\t$needle = \"||\" . $value->name . \"||\";\n\n\t\t/* Search for fields to remove. */\n\t\tif( strpos($remove,$needle) === false ){\n\t\t\t/* If strpos returns false we continue. */\n\t\t\t$return .= $value->name . \",\";\n\t\t}\n\t/* End of foreach loop. */\n\t}\n\n\t/* Strip off last comma. */\n\t$return = rtrim($return,\",\");\n\n/* Return list of fields minus those specified to remove. */\nreturn($return);\n/* End of sql_exclude_field_list function. */\t\n}", "public function ajax_delete_field() {\n global $wpdb;\n\n if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'swpm_form_builder_delete_field') {\n $form_id = absint($_REQUEST['form']);\n $field_id = absint($_REQUEST['field']);\n\n check_ajax_referer('delete-field-' . $form_id, 'nonce');\n\n $field_key = $wpdb->get_var($wpdb->prepare(\"SELECT field_key FROM $this->field_table_name WHERE field_id=%d\", $field_id));\n if (SwpmFbUtils::is_mandatory_field($field_key)) {\n die('0'); // don't delete required fields\n }\n if (isset($_REQUEST['child_ids'])) {\n foreach ($_REQUEST['child_ids'] as $children) {\n $parent = absint($_REQUEST['parent_id']);\n\n // Update each child item with the new parent ID\n $wpdb->update($this->field_table_name, array('field_parent' => $parent), array('field_id' => $children));\n }\n }\n\n // Delete the field\n $wpdb->query($wpdb->prepare(\"DELETE FROM $this->field_table_name WHERE field_id = %d\", $field_id));\n }\n\n die(1);\n }", "public function omit(string ...$fields): static\n {\n return $this->withPropertyItem('opts', new FieldsOption($fields, true /* negate */));\n }", "function remove_custom_field_data($field_id, array $contact)\n{\n if (isset($contact['custom_fields'])) {\n foreach ($contact['custom_fields'] as $key => $value) {\n if ($value['id'] == $field_id) {\n unset($contact['custom_fields'][$key]);\n }\n }\n }\n\n return $contact;\n}", "function acf_delete_value($post_id, $field)\n{\n}", "public function unset_profile_fields()\n\t{\n\t\tif (! $this->settings['fields'] || empty($_POST['fields']) ) { return false; }\n\n\t\t$all_fields = array_merge($this->settings['profile_fields'], $this->settings['pass_fields']);\n\n\t\tforeach ( $all_fields as $key ) {\n\t\t\tif (! empty($this->settings['fields'][$key]) ) {\n\t\t\t\tunset( $_POST['fields'][$this->settings['fields'][$key]['key']] );\n\t\t\t}\n\t\t}\n\n\t\tif ( empty($_POST['fields']) ) {\n\t\t\tunset($_POST['fields']);\n\t\t}\n\t}", "public function clearState()\n {\n $this->fields = array();\n }", "public function testDeleteDocumentFields()\n {\n $remoteDataFolder = self::$baseRemoteFolderPath . \"/DocumentElements/Fields\";\n $localFileName = \"test_multi_pages.docx\";\n $remoteFileName = \"TestDeleteSectionParagraphFields.docx\";\n\n $this->uploadFile(\n realpath(__DIR__ . '/../../..') . \"/TestData/\" . \"Common/\" . $localFileName,\n $remoteDataFolder . \"/\" . $remoteFileName\n );\n\n $request = new DeleteFieldsRequest(\n $remoteFileName,\n \"\",\n $remoteDataFolder,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL,\n NULL\n );\n\n Assert::assertNull($this->words->deleteFields($request));\n }", "public function resetFields()\n {\n $this->name = '';\n \n }" ]
[ "0.7206288", "0.70566547", "0.70518494", "0.6859074", "0.6745248", "0.6723343", "0.667243", "0.66479975", "0.661762", "0.6593525", "0.65853405", "0.65788656", "0.65788656", "0.65733606", "0.65034086", "0.6496035", "0.6487437", "0.64839476", "0.64668447", "0.6447074", "0.6401455", "0.6371309", "0.6368339", "0.63599706", "0.6358608", "0.634896", "0.6346696", "0.62744755", "0.62714744", "0.62502444", "0.6226811", "0.62125266", "0.620803", "0.6158855", "0.6155429", "0.61224896", "0.61070704", "0.60745263", "0.6058616", "0.60560125", "0.60307753", "0.5973169", "0.59724736", "0.59645575", "0.59608716", "0.5950133", "0.5933864", "0.59325165", "0.59271765", "0.59214234", "0.5910474", "0.5908585", "0.59052503", "0.59006923", "0.58872676", "0.5882981", "0.587857", "0.58750093", "0.5874839", "0.58609927", "0.5853096", "0.5850023", "0.5846823", "0.5841045", "0.5830393", "0.58292866", "0.5827964", "0.58079535", "0.5805075", "0.57785916", "0.57714427", "0.5768383", "0.5755021", "0.5746716", "0.5739543", "0.5739543", "0.5739543", "0.5739543", "0.5738894", "0.57298577", "0.5696983", "0.5676648", "0.56681615", "0.5654691", "0.56507456", "0.5648887", "0.5640397", "0.5639895", "0.5610097", "0.560523", "0.56016934", "0.5597418", "0.55919653", "0.5590517", "0.5582662", "0.558113", "0.5580797", "0.557613", "0.5573007", "0.5562804", "0.5558624" ]
0.0
-1
Append one or more values to an array.
public function push() { if ($parameters = func_get_args()) { $unique = false; if (count($parameters) == 3) { list($column, $values, $unique) = $parameters; } else { list($column, $values) = $parameters; } // Do batch push by default. if (!is_array($values)) { $values = [$values]; } $query = $this->setKeysForSaveQuery($this->newQuery()); $this->pushAttributeValues($column, $values, $unique); return $query->push($column, $values, $unique); } return parent::push(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function append($values);", "public function push(...$values);", "public function push(...$values);", "public function add(array $values = []): void\n {\n \t$this->values = array_replace($this->values, $values);\n\t}", "private function append($value)\n {\n \t$this->values[] = $value;\n }", "public function add_value($value){\n if ($value !== null){\n if (!is_array($this->value)){ //if the value is not an array, turn in into an array containing the former $value and new $value\n if ($this->value !== $value){ //if not a duplicate\n $arr = array();\n array_push($arr, $value, $this->value);\n\n $this->value = $arr; //set $this->value to the newly formed array\n }\n\n } else {\n array_push($this->value, $value);\n }\n }\n }", "public function append($value) {\n\t\tif (is_array($value)) {\n\t\t\tforeach ($value as $v) {\n\t\t\t\t$this->append($v);\n\t\t\t}\n\t\t} else {\n\t\t\tarray_push($this->_value, $value);\n\t\t}\n\n\t\treturn $this;\n\t}", "public function add_values($values){\n foreach($values as $value){\n $this->add_value($value);\n }\n }", "public function append(iterable $values): self\n {\n foreach ($values as $value) {\n $this->add($value);\n }\n\n return $this;\n }", "function extend_array()\n\t{\n\t\t$args = func_get_args();\n\t\t$extended = array();\n\n\t\tif ( is_array( $args ) && count( $args ) )\n\t\t{\n\t\t\tforeach ( $args as $array )\n\t\t\t{\n\t\t\t\tif ( ! is_array( $array ) )\tcontinue;\n\t\t\t\t$extended = array_merge( $extended, $array );\n\t\t\t}\n\t\t}\n\n\t\treturn $extended;\n\t}", "abstract public function append($keyOrArray, $value = null): self;", "public function arrayAppendAll($path, $values, $createParents = false) {\n $this->commands[] = array(\n 'opcode' => COUCHBASE_SDCMD_ARRAY_ADD_LAST,\n 'path' => $path,\n 'value' => $values,\n 'createParents' => $createParents,\n 'removeBrackets' => true,\n );\n return $this;\n }", "public function addData(array $arr);", "function array_add($array, $key, $value)\n {\n return Arr::add($array, $key, $value);\n }", "function array_add($array, $key, $value)\n {\n return Arr::add($array, $key, $value);\n }", "public function appends($values)\n\t{\n\t\t$this->appends = $values;\n\t\treturn $this;\n\t}", "public function add_values($values) : void\n {\n foreach($values as $value){\n $this -> add_value($value);\n }\n }", "public static function add(array &$array, mixed $key, ...$values): void\n {\n $countValues = count($values);\n\n if ($countValues === 0) {\n throw new ArgumentCountError(\n 'Method `Collection::add()` expected three or more arguments'\n );\n }\n $value = array_pop($values);\n\n while (true) {\n if (!array_key_exists($key, $array)) {\n $array[$key] = [];\n } elseif (!is_array($array[$key])) {\n throw new InvalidArgumentException(\n '`Collection` can\\'t change element with key `' . $key . '`, is not an array'\n );\n }\n if (count($values)) {\n $array = &$array[$key];\n $key = array_shift($values);\n } else {\n $array[$key][] = $value;\n return;\n }\n }\n }", "final protected function appendValues(array $values)\n {\n if ($this->isUsingPlaceholders()) {\n $values = array_values($values);\n } else {\n foreach ($values as $key => $value) {\n if (is_string($key)) {\n $safeKey = $this->convertToParameterName($key, $value);\n if ($key !== $safeKey) {\n unset($values[$key]);\n $values[$safeKey] = $value;\n }\n }\n }\n }\n $this->values = array_merge($this->values, $values);\n return $this;\n }", "public function add(array $data)\n {\n $this->data = array_merge($this->data, $data);\n }", "function array_add(array &$array, $key, $value) {\n $target = array_get($array, $key, array());\n\n if ( ! is_array($target)) {\n $target = array($target);\n }\n\n $target[] = $value;\n array_set($array, $key, $target);\n\n return $array;\n }", "function array_add(array $array, string $key, $value):array\n\t{\n\t\tif (is_null(get($array, $key)))\n\t\t{\n\t\t\tset($array, $key, $value);\n\t\t}\n\n\t\treturn $array;\n\t}", "public function addArray($element){\n array_push($this->array,$element);\n }", "public function array_add($array, $key, $value)\n {\n return Arr::add($array, $key, $value);\n }", "public function add_value($value) : void\n {\n if(!($this -> $value === $value || in_array($value, $this -> value))){\n if(gettype($this -> value) === \"string\"){\n $this -> value = [$this -> value];\n }\n array_push($this -> value, $value);\n }\n }", "public function add_data(array $data)\n\t{\n\t\t$ar = func_get_args();\n\t\tforeach ( $ar as $d ){\n\t\t\tif ( is_array($d) ){\n $this->data = $this->has_data() ? array_merge($this->data,$d) : $d;\n\t\t\t}\n\t\t}\n\t\treturn $this;\n\t}", "public function add(array $elements);", "function array_add($array, $key, $value)\n\t{\n\t\tif ( ! isset($array[$key])) $array[$key] = $value;\n\n\t\treturn $array;\n\t}", "public function append(...$items): self;", "public function append($elements)\n\t{\n\t\tif (is_array($elements))\n\t\t{\n\t\t\t$this->elements = array_merge($this->elements, $elements);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->elements = array_merge($this->elements, array($elements));\n\t\t}\n\t}", "function _handle_array_var_append($key, $val, &$vars)\n{\n $val2 = mixed();\n\n foreach ($val as $key2 => $val2) {\n if (!is_string($key2)) {\n $key2 = strval($key2);\n }\n\n if (is_array($val2)) {\n _handle_array_var_append($key . '[' . $key2 . ']', $val2, $vars);\n } else {\n if (get_magic_quotes_gpc()) {\n $val2 = stripslashes($val2);\n }\n\n $vars[$key . '[' . $key2 . ']'] = $val2;\n }\n }\n}", "public function arrayAppend($path, $value, $createParents = false) {\n $this->commands[] = array(\n 'opcode' => COUCHBASE_SDCMD_ARRAY_ADD_LAST,\n 'path' => $path,\n 'value' => $value,\n 'createParents' => $createParents,\n );\n return $this;\n }", "function array_merge() {\n\t\t$args = func_get_args();\n\t\tforeach ($args as $k=>$value) {\n\t\t\tif (!is_array($value)) $value=array();\n\t\t\t$args[$k]=$value;\n\t\t}\n\t\treturn call_user_func_array(\"array_merge\", $args);\n\t}", "public function addToInsertSQLArray();", "function array_push_ex(array &$arr1,$arr2) {\n foreach ($arr2 as $key => $value) {\n $arr2[$key] = ($value);\n }\n array_push($arr1,$arr2);\n}", "public function setValues($values = array(), $append = false) {\n\t\tif ($append) {\n\t\t\tforeach ($values as $key => $value) {\n\t\t\t\tif (isset($this->values[$key]) && is_string($this->values[$key])) {\n\t\t\t\t\t$this->values[$key] .= $value;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$this->values[$key] = $value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t$this->values = array_merge($this->values, $values);\n\t\t}\n\t\treturn $this;\n\t}", "public function addValues($value) {\n return $this->_add(2, $value);\n }", "public function append($elements)\n\t{\n\t\tif (is_array($elements)) {\n\t\t\t$this->_elements = array_unique(array_merge($this->_elements, $elements));\n\t\t}\n\t\telse {\n\t\t\t$this->_elements = array_unique(array_merge($this->_elements, array($elements)));\n\t\t}\n\t}", "function array_append( $dest, $source ) {\r\n $n = count( $dest );\r\n $n1 = count( $source );\r\n for ( $index=$n; $index<$n+$n1; $index++ ) {\r\n $dest[$index] = $source[$index-$n];\r\n }\r\n return $dest;\r\n}", "function _add_array($array = array(), $keys, $value)\n{\n\t// while fn needs to go deeper into array\n\tif(count($keys) > 1)\n\t{\n\t\t// get current key\n\t\treset($keys);\n\t\t$key = $keys[key($keys)];\n\t\t// remove current key from keys\n\t\tunset($keys[key($keys)]);\n\t\t// if key exists merge\n\t\tif( isset($array[$key]) )\n\t\t{\n\t\t\t$array[$key] = _add_array($array[$key], $keys, $value);\n\t\t}\n\t\t// if key does not exists add\n\t\telse\n\t\t{\n\t\t\t$array[$key] = false;\n\t\t\t$array[$key] = _add_array($array[$key], $keys, $value);\t\n\t\t}\n\t}\n\t// if right depth in array is reached\n\telse\n\t{\n\t\t// get current key\n\t\t$key = $keys[key($keys)];\n\t\t// if key exists merge\n\t\tif( isset($array[$key]) && is_array($array[$key]) )\n\t\t{\n\t\t\t$array[$key] = array_merge($array[$key], (array) $value);\t\t\n\t\t}\n\t\t// if key does not exists add\n\t\telse\n\t\t{\n\t\t\t$array[$key] = $value;\t\t\t\n\t\t}\n\t}\n\t// return new array\n\treturn $array;\n}", "public function append($items);", "public function add(array $entry);", "static public function array_merge()\r\n\t{\r\n\t\t$args \t\t= func_get_args();\r\n\t\t$results\t= array();\r\n\t\tforeach($args as $array) {\r\n\t\t\tforeach($array as $key => $value) {\r\n\t\t\t\t$results[$key] = $value;\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn $results;\r\n\t}", "public static function arr(array $value1, array $_ = null)\n {\n $ret = [];\n $args = func_get_args();\n foreach ($args as $arg) {\n if (!is_array($arg)) {\n throw new \\InvalidArgumentException(\"All parameters must be of type array.\");\n }\n\n $tmp = call_user_func_array('static::val', $arg);\n $ret[] = (is_array($tmp)) ? $tmp : [$tmp];\n }\n\n return (count($ret) > 1) ? $ret : $ret[0];\n }", "public function multipleAdd(array $users);", "public static function completeArray($array, $count, $value = null) {\n if(!is_array($array)) {\n $array = array($array);\n }\n for($i=count($array); $i<$count; $i++) {\n $array[] = $value;\n }\n return $array;\n }", "public function additional(array $data);", "public function values() {\n\t\t// Get arguments :\n\t\t$args = func_get_args();\n\t\t\n\t\t// Add values :\n\t\tif (is_array($args[0])) {\n\t\t\tif ( ! is_array(reset($args[0]))) {\n\t\t\t\t// Deal with normal case : ->values(array(val1, val2, ...), array(val1, val2, ...), ...)\n\t\t\t\tforeach($args as $values_array)\n\t\t\t\t\t$this->push(new \\Glue\\DB\\Fragment_Item_Values($values_array));\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Array of arrays given, call this function recursively for each of them :\n\t\t\t\tforeach($args[0] as $arg)\n\t\t\t\t\t$this->values($arg);\n\t\t\t}\n\t\t}\n\t\telse\n\t\t\t// List of values given, call this function recursively with the same values as an array :\n\t\t\t$this->values($args);\n\t\n\t\treturn $this;\n\t}", "public function append($value)\n {\n $this->items[] = $value;\n }", "public function testAppending()\n {\n $data = new ArrayObject(\n array(\n 'foo' => 'bar'\n )\n );\n\n $data->append('baz');\n }", "static public function addAll($values, $returnString = false)\n {\n if (!is_array($values)) {\n $values = func_get_args();\n }\n $augend = array_shift($values);\n foreach ($values as $addend) {\n $augend = static::add($augend, $addend, $returnString);\n }\n\n return $augend;\n }", "final public function add_data($data = array())\n\t{\n\t\t$data = !is_array($data) ? (array)$data: $data;\n\t\t$this->data = array_merge($this->data, $data);\n\t}", "public function appendData($name, array $data) {\n $this->data[$name] = array_merge($this->data[$name], $data);\n }", "public function append(string $name, array $data): void;", "public function addArray( array $list ) {\n\t\t$this->add( new EchoArrayList( $list ) );\n\t}", "public function appendRepeatedField($value)\n {\n return $this->append(self::REPEATED_FIELD, $value);\n }", "public function appendData($key, $value)\n {\n if (!is_array($data = $this->getDataSetDefault($key, array()))) {\n $data = array($data);\n }\n if (is_array($value)) {\n $data = array_merge($data, array_values($value));\n } else {\n $data[] = $value;\n }\n $this->setData($key, $data);\n return $this;\n }", "public function append(array $injectors)\n {\n $this->injectors = $injectors + $this->injectors;\n }", "public function pushArray(array $bits)\n {\n $cnt = count($bits);\n $this->size += $cnt;\n $i = 0;\n foreach ($bits as $b) {\n $this->setFast($this->size - $cnt + ($i++), $b);\n }\n }", "function add_array($array, $args)\n{\n\t// loop through args to add\n\tforeach($args as $key => $value)\n\t{\n\t\t// get array depth by exploding by /\n\t\t$key = explode('/', $key);\n\t\t// add to array using fn _add_array\n\t\t$array = _add_array($array, $key, $value);\n\t}\n\t// return new array\n\treturn $array;\n}", "function array_add($array, $key, $value)\n{\n if (!isset($array[$key])) {\n $array[$key] = $value;\n }\n\n return $array;\n}", "public function append($key, $value) {}", "public function addData(array $data)\n {\n $this->data = array_merge($this->data, $data);\n return $this;\n }", "public function append($value, $key = null) \n {\n $key ? $this->pushKey($key, $value) : $this->push($value);\n }", "function add($key,$value = false) {\n\t\tif(is_array($key))\n\t\t\t$this->_output = array_merge($key, $this->_output);\n\t\telseif(array_key_exists($key,$this->_output)) {\n\t\t\tif(!is_array($this->_output[$key]))\n\t\t\t\t$this->_output[$key] = array($this->_output[$key]);\n\t\t\t\n\t\t\tif(is_array($value))\n\t\t\t\t$this->_output[$key] = array_merge($this->_output[$key],$value);\n\t\t\telse\n\t\t\t\t$this->_output[$key][] = $value;\n\t\t}\n\t\telse\n\t\t\t$this->_output[$key] = $value;\n\t}", "public function append($key, $value = null);", "public function append(mixed $value) {\n $this->items[] = $value;\n return $this;\n }", "function append($value = \\null)\n {\n }", "function add(array &$array, $value, $index = 0)\n{\n global $size;\n\n $inputSize = count($array);\n\n if ($inputSize >= $size) {\n resize($array);\n }\n\n $array[$index] = $value;\n\n return ++$index;\n}", "public static function addIfNotEmpty($key, $value, array &$array = null)\n {\n if (!is_null($array)) {\n Validate::isArray($array, 'array');\n }\n\n if (!empty($value)) {\n $array[$key] = $value;\n }\n }", "public function addDataEntry(array $data)\n {\n //According to this SO post\n //http://stackoverflow.com/questions/559844/whats-better-to-use-in-php-array-value-or-array-pusharray-value\n //array[] is more efficient that array_push\n $this->data[] = $data;\n }", "public function addItems(array $items)\n {\n // array += array save key ordering instead of array_merge func\n $this->items += $items;\n }", "public static function array_push(&$array, $key, $var=null) {\n if(func_num_args() === 3) {\n if(is_array($key)) {\n while(count($key) >= 2) {\n $k = array_shift($key);\n if(!array_key_exists($k, $array)) {\n $array[$k] = [];\n }\n $array = &$array[$k];\n }\n $key = reset($key);\n }\n if(array_key_exists($key, $array)) {\n $array[$key][] = $var;\n } else {\n $array[$key] = [$var];\n }\n } else {\n $array[] = $key;\n }\n }", "public function concatArrays($array1, $array2, ...$arrays): static;", "public function add(string $key, $val, array &$array): void\n {\n $keys = explode('.', $key);\n $context = &$array;\n foreach ($keys as $ikey) {\n $context = &$context[$ikey];\n }\n\n if (empty($context)) {\n $context = $val;\n return;\n }\n\n if (!is_array($context)) {\n $context = [$context];\n }\n\n if (!is_array($val)) {\n $val = [$val];\n }\n\n $context = array_merge($context, $val);\n }", "public function merge(array $values)\n {\n $this->values = array_replace($this->values, $values);\n }", "public function testAppendArray() {\n\t\t\t$arr = [\"Hairy\", \"Bees\"];\n\t\t\t$builder = new StringBuilder();\n\t\t\t$builder->append($arr, \"Help\");\n\n\t\t\t$this->assertEquals(\"HairyBeesHelp\", $builder->__toString());\n\t\t\tunset($builder, $arr);\n\t\t}", "protected function getArrayableAppends()\n {\n $defaults = ['settings'];\n\n if (!count($this->appends)) {\n return $defaults;\n }\n\n return array_merge($defaults, $this->appends);\n }", "public function append(array $data)\n {\n static::appendContents($this->getPathname(), $data);\n\n return $this;\n }", "public function push( $key, $value )\n\t{\n\t\t$array = $this->get( $key );\n\t\t$array[] = $value;\n\t\t$this->set( $key, $array );\n\t}", "public static function add(array $element){\n array_push(self::$data, $element);\n }", "private function addToBindings($value)\n {\n if (is_array($value)){\n $this->bindings = array_merge($this->bindings , array_values($value));\n }\n else{\n $this->bindings[] = $value;\n }\n }", "public function setValues($values = []);", "public static function rpush($key, ...$value)\n {\n return parent::rpush($key, ...$value);\n }", "public function setValues(array $values);", "function assign_vars_array($name, $value)\n\t{\n\t\t$this->_vars[$name][] = $value;\n\t}", "function append($node) {\n\t\tif (!is_array($node)) {\n\t\t\t$this->child[]=$node;\n\t\t} else if (is_array($node)) {\n\t\t\tfor ($childIdx=0; $childIdx<count($node); $childIdx++)\n\t\t\t\t$this->child[]=$node[$childIdx];\n\t\t}\n\t}", "public function push($value): void\n {\n $values = $this->get();\n array_push($values, $value);\n $this->set($values);\n }", "public function addValues(\\google\\protobuf\\Value $value){\n return $this->_add(1, $value);\n }", "public function push($x, $y, $value)\n {\n $this->data[] = array(\n 'x' => $x,\n 'y' => $y,\n 'value' => $value,\n );\n }", "public static function add($array, $key, $value)\n {\n if (is_null(static::get($array, $key)))\n {\n static::set($array, $key, $value);\n }\n\n return $array;\n }", "public function appends(...$appends)\n {\n $this->appends = Arr::flatten($appends);\n\n return $this;\n }", "public static function add(...$data)\n {\n if (empty($data)) {\n return [];\n }\n $return = array_shift($data);\n $from = static::getShallowType($return);\n foreach ($data as $datum) {\n $to = static::getShallowType($datum);\n if ($from === 'boolean') {\n $return = $datum;\n } elseif ($from !== 'array' && $to === 'boolean') {\n $return = $datum === false ? false : $return;\n } elseif ($from === 'number' && $to === 'number') {\n $return = (float) $return + (float) $datum;\n } elseif (in_array($from, ['string', 'number']) && in_array($to, ['string', 'number'])) {\n $return .= $datum;\n } elseif ($from === 'array' && $to === 'array' || $to === 'object') {\n foreach ((array) $datum as $key => $value) {\n if (is_int($key)) {\n $return[] = $value;\n } else {\n $newValue = isset($return[$key]) ? static::add($return[$key], $value) : $value;\n $return[$key] = $newValue;\n }\n }\n } elseif ($from === 'object' && $to === 'array') {\n foreach ($datum as $key => $value) {\n if (!is_int($key)) {\n $propertyExists = property_exists(get_class($return), $key);\n $newValue = $propertyExists ? static::add($return->$key, $value) : $value;\n $return->$key = $newValue;\n }\n }\n } elseif ($from === 'array') {\n $return[] = $datum;\n } else {\n $return = $datum;\n }\n }\n return $return;\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }", "public function setAdditionalData(?array $value): void {\n $this->getBackingStore()->set('additionalData', $value);\n }" ]
[ "0.75174165", "0.71313965", "0.71313965", "0.6812274", "0.6532124", "0.65275925", "0.64708793", "0.64456934", "0.63363415", "0.63139564", "0.6301323", "0.6235956", "0.62041926", "0.61938953", "0.61938953", "0.6147429", "0.61129546", "0.6018835", "0.60182816", "0.60082424", "0.5987974", "0.59748864", "0.5966115", "0.5950228", "0.5843957", "0.58341527", "0.58333725", "0.5793172", "0.5769518", "0.57663715", "0.5758441", "0.5733152", "0.57295054", "0.5694757", "0.56780076", "0.5653549", "0.56486124", "0.56420237", "0.56363714", "0.55910957", "0.5573281", "0.5538088", "0.5536774", "0.5528862", "0.5515998", "0.54977345", "0.54957634", "0.5485849", "0.54765016", "0.54702365", "0.54595584", "0.5439667", "0.5432999", "0.5432072", "0.5407727", "0.54044163", "0.53976977", "0.53924745", "0.5389044", "0.5384544", "0.5374855", "0.53720677", "0.53660446", "0.5361548", "0.5335373", "0.5333982", "0.53312355", "0.53227544", "0.531753", "0.52989835", "0.5296858", "0.5291096", "0.52885205", "0.5280349", "0.5276171", "0.5261905", "0.52543426", "0.52499205", "0.52448905", "0.5244266", "0.5234798", "0.51985174", "0.51847595", "0.51805246", "0.51788795", "0.51742315", "0.5170555", "0.51676214", "0.516191", "0.51618016", "0.5158621", "0.51574236", "0.5152948", "0.514974", "0.514974", "0.514974", "0.514974", "0.514974", "0.514974", "0.514974", "0.514974" ]
0.0
-1
Append one or more values to the underlying attribute value and sync with original.
protected function pushAttributeValues($column, array $values, $unique = false) { $current = $this->getAttributeFromArray($column) ?: []; foreach ($values as $value) { // Don't add duplicate values when we only want unique values. if ($unique and in_array($value, $current)) { continue; } array_push($current, $value); } $this->attributes[$column] = $current; $this->syncOriginalAttribute($column); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function copyAttributesToValues()\n\t{\n\t\tforeach( $this->values as $field=>$value )\n\t\t{\n\t\t\t$this->values[$field] = $this->$field ;\n\t\t}\n\t}", "public function append($values);", "private function append($value)\n {\n \t$this->values[] = $value;\n }", "public function append(iterable $values): self\n {\n foreach ($values as $value) {\n $this->add($value);\n }\n\n return $this;\n }", "public function setValues($values = array(), $append = false) {\n\t\tif ($append) {\n\t\t\tforeach ($values as $key => $value) {\n\t\t\t\tif (isset($this->values[$key]) && is_string($this->values[$key])) {\n\t\t\t\t\t$this->values[$key] .= $value;\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$this->values[$key] = $value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t$this->values = array_merge($this->values, $values);\n\t\t}\n\t\treturn $this;\n\t}", "final protected function appendValues(array $values)\n {\n if ($this->isUsingPlaceholders()) {\n $values = array_values($values);\n } else {\n foreach ($values as $key => $value) {\n if (is_string($key)) {\n $safeKey = $this->convertToParameterName($key, $value);\n if ($key !== $safeKey) {\n unset($values[$key]);\n $values[$safeKey] = $value;\n }\n }\n }\n }\n $this->values = array_merge($this->values, $values);\n return $this;\n }", "public function appends($values)\n\t{\n\t\t$this->appends = $values;\n\t\treturn $this;\n\t}", "public function append($value) {\n $this->_value = $this->_value . $value;\n $this->countLength();\n \n return $this;\n }", "protected function mergeTranslationsWithAttributes()\n\t{\n\t\t$this->attributes = array_merge($this->attributes, $this->translatedAttributes);\n\t}", "public function set()\n {\n $args = func_get_args();\n\n if ( count($args) == 2 )\n {\n $this->attributes[$args[0]] = $args[1];\n }\n elseif ( count($args) == 1 && is_array($args[0]) ) \n {\n $this->attributes = ( array_merge($this->attributes, $args[0]) );\n }\n\n return $this;\n }", "public function attributes(array $values): static\n {\n $new = clone $this;\n $new->attributes = $values;\n\n return $new;\n }", "public function appendAttribute($key, $value = null, $seperater = null);", "function concat_attr() {\n $str = \"\";\n if ($this->other_attr != NULL) {\n foreach($this->other_attr as $field => $value) {\n $str .= $field.'=\"'.$value.'\" ';\n }\n }\n return $str;\n }", "public function add(array $values = []): void\n {\n \t$this->values = array_replace($this->values, $values);\n\t}", "function set_attr($attr=array()) {\n $this->other_attr = $attr;\n }", "public function addAttribute($name, $value);", "function insert_attr($key, $value) {\n $this->other_attr[$key] = $value;\n }", "public function append($value) {\n\t\tif (is_array($value)) {\n\t\t\tforeach ($value as $v) {\n\t\t\t\t$this->append($v);\n\t\t\t}\n\t\t} else {\n\t\t\tarray_push($this->_value, $value);\n\t\t}\n\n\t\treturn $this;\n\t}", "public function push(...$values)\n {\n parent::push(...$values);\n $this->performHook('modified');\n return $this;\n }", "public function appendValue($value) {\n $this->current->value($value);\n }", "public function updateAttributes(&$attributes)\n {\n if ($validator = $this->getValidator()) {\n \n if ($extra = $validator->getAttributesForField($this->owner)) {\n $attributes = array_merge($attributes, $extra);\n }\n \n }\n }", "public function setAttributesByRef (&$attributes)\n {\n\n foreach ($attributes as $key => &$value)\n {\n\n $this->attributes[$key] =& $value;\n\n }\n\n }", "private function setAttributeFieldValue()\n {\n // Get all our attribute objects\n $proxiedAttrs = $this->getAttributes();\n \n $data = [];\n foreach ($proxiedAttrs as $attrObjArr) {\n foreach ($attrObjArr as $attrObj) {\n $dataKey = $attrObj->getFieldName();\n $dataVal = $this->getRequest()->postVar($dataKey);\n $data[$dataKey] = $dataVal;\n }\n }\n \n $json = $this->dbObject('AttributeData')->toJson($data);\n $this->setField('AttributeData', $json);\n }", "public function append(mixed $value) {\n $this->items[] = $value;\n return $this;\n }", "public function setOldAttributes($values)\n {\n $this->_oldAttributes = $values;\n }", "private function appendOldAttributes(array $attributes)\n {\n // Get a current collection\n $collection = $this->sessionBag->get(self::PARAM_STORAGE_KEY);\n\n // Merge new attributes with collection\n $collection = array_merge($collection, $attributes);\n\n // Override old collection with a new one\n $this->sessionBag->set(self::PARAM_STORAGE_KEY, $collection);\n }", "public function att($attribute, $value = '', $concat = false)\r\n {\r\n if (is_array($attribute)) {\r\n foreach ($attribute as $key => $value) {\r\n $this->attributes[$key] = $value;\r\n } \r\n } elseif ($concat && !empty($this->attributes[$attribute])) { \r\n $this->attributes[$attribute] .= ($concat === true ? ' ' : $concat) . $value;\r\n } else {\r\n $this->attributes[$attribute] = $value;\r\n }\r\n return $this;\r\n }", "public function appendAttribute(string $name, $value, $option = \\true)\n {\n if (is_array($value)) {\n $prev = isset($this->attrs[$name]) ? (array) $this->attrs[$name] : [];\n $this->attrs[$name] = $value + $prev;\n } elseif ((string) $value === '') {\n $tmp =& $this->attrs[$name];\n // appending empty value? -> ignore, but ensure it exists\n } elseif (!isset($this->attrs[$name]) || is_array($this->attrs[$name])) {\n // needs array\n $this->attrs[$name][$value] = $option;\n } else {\n $this->attrs[$name] = [$this->attrs[$name] => \\true, $value => $option];\n }\n return $this;\n }", "public function setRawAttributes($attributes) {\n $regex_attributes = \"/(?P<key>[a-z0-9-]+)=?(?P<value> [a-z0-9-]+)?,?/ix\";\n $attrib = array();\n if($attributes != '') {\n $parts = array();\n $result = preg_match_all($regex_attributes, $attributes, $parts);\n if(!$result) {\n $this->attributes = $attrib;\n return $this;\n }\n $keys = $parts['key'];\n $values = $parts['value'];\n $allowed_keys = $this->getAllowedAttributes();\n $allowed_values = $this->getAllowedAttributeValues();\n foreach ($keys as $index => $key) {\n $key = strtolower($key);\n // The key is in the allowed_keys array\n if(in_array($key, $allowed_keys)) {\n $value = strtolower($values[$index]);\n if(array_key_exists($key, $allowed_values)) {\n // For this key exists a allowed values array\n if(in_array($value, $allowed_values[$key])) {\n // Otherwise we check if the value is in the array\n $attrib[$key][] = $value; \n } else {\n // OK, we found a key wich is not allowed\n $allowedValues = implode(', ', $allowed_values[$key]);\n throw new Exception(\"$this->class: '$value' not allowed for attribute '$key'! Allowed values are: $allowedValues\");\n } \n } else {\n // For this key, no array with allowed values exist. we just save the key and asume any value is allowed\n $attrib[$key][] = $value;\n //throw new Exception(\"$this->class: '$value' not allowed for attribute '$key'! Allowed values are: $allowedValues\");\n }\n } else {\n $keyIsAllowed = false;\n foreach($allowed_values as $otherKey => $otherValues) {\n if(in_array($key, $otherValues)) {\n $attrib[$otherKey][] = $key;\n $keyIsAllowed = true;\n }\n }\n if(!$keyIsAllowed) {\n throw new Exception(sprintf(\"%s: '%s' not allowed as attribute!\", $this->class, $key));\n }\n }\n }\n }\n $this->attributes = $attrib;\n return $this;\n }", "public function addAttribute(string $name, $value): self;", "public function append($items)\n\t{\n\t\tforeach( (array) $items as $key => $item ) \n\t\t{\n\t\t\tarray_push($this->attributes, $item);\n\t\t}\n\n\t\treturn $this;\n\t}", "abstract public function &setRawAdditionalProperties($value);", "public function __set($name,$value)\n\t{\n\t\tif(in_array($name,$this->config_other_attributes))\n\t\t\t$this->list_other_attributes[$name]=$value;\n\t\telse \n\t\t\tparent::__set($name,$value);\n\t}", "public static function mergeAttr(){\n\t\t$all_attr = func_get_args();\n\t\t$all_attr = array_filter($all_attr);\n\t\tforeach($all_attr as $x=>$attr){\n\t\t\tif(is_string($attr))parse_str($attr, $all_attr[$x]);\n\t\t}\n\t\treturn call_user_func_array('array_replace', $all_attr);\n\t}", "public function add_value($value){\n if ($value !== null){\n if (!is_array($this->value)){ //if the value is not an array, turn in into an array containing the former $value and new $value\n if ($this->value !== $value){ //if not a duplicate\n $arr = array();\n array_push($arr, $value, $this->value);\n\n $this->value = $arr; //set $this->value to the newly formed array\n }\n\n } else {\n array_push($this->value, $value);\n }\n }\n }", "private function appendAttributes(array $attrs): void\n {\n foreach ($attrs as $key => $value) {\n $this->appendAttribute($key, $value);\n }\n }", "public function setValues($values) {\n\t\t$this->attributes['values'] = $values;\n\t\t$this->values = $values;\n\t\treturn $this;\n\t}", "public function addAttribute($name, $value)\n {\n if (is_scalar($value)) {\n $value = explode(' ', (string) $value);\n }\n $name = htmlspecialchars($name, ENT_QUOTES);\n if (false==$this->hasAttribute($name)) {\n $this->attributes[$name] = array();\n }\n foreach ($value as $v) {\n if (!in_array($v, $this->attributes[$name])) {\n $this->attributes[$name][] = $v;\n }\n }\n }", "public function append($value)\n {\n return $this->add($value);\n }", "public function add_values($values){\n foreach($values as $value){\n $this->add_value($value);\n }\n }", "public function attributeValueLists()\r\n {\r\n throw new NotSupportedException('attributeValueLists Method should be overidded');\r\n }", "public function setAttributes(/*Vector<IAttribute>*/ $value) /*: this*/ {\n $this->attributes = $value;\n return $this;\n }", "public function set_attributes( $attributes = array(), $override = true ) {\n\t\n\t\tif ( true == $override ) {\n\t\t\t$this->attributes = array_merge( $this->attributes, $attributes );\n\t\t}\n\t\telse {\n\t\t\t$this->attributes = array_merge( $attributes, $this->attributes );\n\t\t}\n\t\n\t}", "public function addValue($value);", "public function addAttributes($arrAttributes) {\n foreach ($arrAttributes as $key => $val) {\n $this->attributes[$key] = $val;\n }\n }", "public function syncOriginalAttributes($attributes): Model\n {\n $attributes = is_array($attributes) ? $attributes : func_get_args();\n\n $modelAttributes = $this->getAttributes();\n\n foreach ($attributes as $attribute) {\n $this->original[$attribute] = $modelAttributes[$attribute];\n }\n\n return $this;\n }", "abstract public function writeAttribute($name, $value);", "public function setRawAttributes(array $attributes, $sync = false)\n\t{\n\t\tforeach ($attributes as $index => $attribute)\n\t\t{\n\t\t\t$attributes[$index] = utf8_encode($attribute);\n\t\t}\n\t\treturn parent::setRawAttributes($attributes, $sync);\n\t}", "function SetValuePrepend( $k, $v ) { $this->_values[$k] = $v . $this->_values[$k]; }", "public function setAll(array $values): self {\n $this->record = array_merge($this->record, $values);\n return $this;\n }", "public function add_value($value) : void\n {\n if(!($this -> $value === $value || in_array($value, $this -> value))){\n if(gettype($this -> value) === \"string\"){\n $this -> value = [$this -> value];\n }\n array_push($this -> value, $value);\n }\n }", "function addAttribute($name, $value) {\n $this->_attributes[$name] = $value;\n }", "public function setAppend($append);", "protected function applyValueToOptions()\n {\n $value = Collection::make($this->value);\n\n if ( ! $this->hasAttribute('multiple'))\n $value = $value->take(1);\n\n return $this->setNewChildren(\n static::applyValueToElements($value, $this->getChildren())\n );\n }", "public function applyOptions(): void\n {\n if ($this->hasEndpoint()) {\n $this->withOptions(['endpoint' => $this->endpoint]);\n }\n\n $this->setProp('value', $this->attribute);\n $this->setProp('entities', $this->options(), false);\n }", "public function add_attrib($key, $val)\n {\n $this->_attribs = array_merge(array($key => $val), $this->_attribs);\n }", "final public function sync() {\n\t\t$this->original = $this->attributes;\n\n\t\treturn true;\n\t}", "public function append($key, $value) {}", "public function __SET($attr, $value){ //Establece valor y atributo\n\n\t\t\t$this->$attr=$value;\n\t\t}", "public function testChangeAttributeUseFillMethod()\n {\n // set value\n $this->post->tags = 'value1';\n $this->post->save();\n\n // change value\n $this->post->fill([\n 'tags' => $newValue = 'value2'\n ]);\n\n $this->post->save();\n\n // equals\n $this->assertEquals($this->post->tags, $newValue);\n }", "public function setRawAttributes(array $attributes, $sync = false)\n {\n // merge dynamic properties to the base attributes\n if ($sync) {\n $attributes = array_merge($this->attributes, $attributes);\n }\n\n $this->attributes = $attributes;\n\n if ($sync) {\n $this->syncOriginal();\n }\n\n return $this;\n }", "public function fill(array $attributes = []);", "public function forceValue($values = array())\n\t{\n\t\treturn $this->setTags($values);\n\t}", "function add( $value ) {\n\t\t$this->source .= $value;\n\t\treturn $this;\n\t}", "public function setAttrs(array $value): self\n {\n $this->attrs = $value;\n\n return $this;\n }", "public function addAttrVal(string $key, $newValues) {\n $key = $this->filterAttrKey($key);\n $keyType = self::getType($key);\n\n $curVal = ($this->getAttr($key) ?: '');\n $curValues = $this->processValues($key, $curVal);\n $newValues = $this->processValues($key, $newValues);\n\n $attributeValue = null;\n\n if ($keyType == self::ATTR_TYPE_DICT) {\n $curValues = array_replace($curValues, $newValues);\n $styleParts = [];\n\n foreach ($curValues as $sKey => $sValue) {\n $styleParts[] = $sKey . ': ' . $sValue;\n }\n\n $attributeValue = join('; ', $styleParts);\n }\n else {\n $toValues = array_unique(array_merge($curValues, $newValues));\n $attributeValue = join(' ', $toValues);\n }\n\n $this->attributes[$key] = $attributeValue;\n\n return $this;\n }", "public function setAttributes(array $attributes, $merge = false);", "public function set_raw($tag, $value, $append = false)\n {\n $index = $append ? count($this->raw[$tag]) : 0;\n $this->raw[$tag][$index] = (array)$value;\n }", "public function attributeValues()\n {\n return $this->morphMany(AttributeValue::class, 'attributable')\n ->with('attribute');\n }", "public function append($value)\n {\n $this->items[] = $value;\n }", "function AddAttribute() {\n $db = Core::GetDB();\n\n $id = Core::GetFromPOST('id');\n $attrs = Core::GetFromPOST('attrs');\n\n $attrs = fix_attrs($attrs);\n\n foreach ($attrs AS $attr) {\n $attr = explode(':', $attr);\n\n if (count($attr) == 3) {\n if (empty($attr) === false) {\n $db->Query(\"DELETE FROM data_xml_attributes WHERE data_xml_item_id = $id AND attr_name='{$attr[0]}' LIMIT 1\");\n $db->Query(\"INSERT INTO data_xml_attributes (data_xml_item_id, attr_name, attr_value, attr_type) VALUES ($id, '{$attr[0]}', '{$attr[1]}', '{$attr[2]}')\");\n }\n }\n }\n}", "public function setAttributes($values, $safeOnly = true)\n\t{\n\t\tparent::setAttributes($values, $safeOnly);\n\n\t\t// Looking only for file attributes (and fix null error on fly)\n\t\tif ( is_array($values) )\n\t\t{\n\t\t\t$attributes = array_flip($safeOnly ? $this->safeAttributes() : $this->attributes());\n\n\t\t\t$class = StringHelper::basename(get_called_class());\n\n\t\t\tforeach ($values as $name => $value)\n\t\t\t{\n\t\t\t\tif ( isset( $attributes[$name] ) )\n\t\t\t\t{\n\t\t\t\t\tif ( isset($_FILES[$class]['name'][$name]) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$uploadedFile = UploadedFile::getInstance($this, $name);\n\n\t\t\t\t\t\tif ( $uploadedFile )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->$name = $uploadedFile;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telseif ( ! $this->isNewRecord )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->$name = $this->oldAttributes[$name];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function setAttributes($values, $safeOnly = true)\n\t{\n\t\tparent::setAttributes($values, $safeOnly);\n\n\t\t// Looking only for file attributes (and fix null error on fly)\n\t\tif ( is_array($values) )\n\t\t{\n\t\t\t$attributes = array_flip($safeOnly ? $this->safeAttributes() : $this->attributes());\n\n\t\t\t$class = StringHelper::basename(get_called_class());\n\n\t\t\tforeach ($values as $name => $value)\n\t\t\t{\n\t\t\t\tif ( isset( $attributes[$name] ) )\n\t\t\t\t{\n\t\t\t\t\tif ( isset($_FILES[$class]['name'][$name]) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$uploadedFile = UploadedFile::getInstance($this, $name);\n\n\t\t\t\t\t\tif ( $uploadedFile )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->$name = $uploadedFile;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telseif ( ! $this->isNewRecord )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->$name = $this->oldAttributes[$name];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "public function add_attr_value()\n\t{\n\t\t\t$rest_id=$this->session->userdata('user_rest_uns');\n\t\t\t$att_name=$this->input->post('att_name');\n\t\t\t$att_value=$this->input->post('att_value');\n\t\t\t$att_price=$this->input->post('att_price');\n\t\t\t$insert_name=$this->db->insert('food_att_value',array(\"f_att_v_name\"=>$att_name,\"rest_id\"=>$rest_id));\n\t\t\t$insert_pro_id = $this->db->insert_id();\n\t\t\t///////////////////////////////////////\n\t\t\tif($insert_name)\n\t\t\t{\n\t\t\t\tfor($p=0;$p<count($att_value);$p++)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$items=array(\n\t\t\t\t\t\t\t\t'f_att_vit_name'=>$att_value[$p],\n\t\t\t\t\t\t\t\t'f_att_vit_price'=>$att_price[$p],\n\t\t\t\t\t\t\t\t'f_att_v_id'=>$insert_pro_id,\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t$in=$this->db->insert('f_att_v_item',$items);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif($in)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}", "public function setAttributes($values)\n {\n if (!empty($values)) {\n foreach ($values as $name => $value) {\n $this->setAttribute($name, $value);\n }\n }\n }", "public function add_values($values) : void\n {\n foreach($values as $value){\n $this -> add_value($value);\n }\n }", "public function addValues($value) {\n return $this->_add(2, $value);\n }", "public function appendToAttribute($attr, $str) {\n\tforeach ($this->_elArray as $el) {\n\t\t$attrValue = $el->getAttribute($attr);\n\n\t\tif($el->hasAttribute($attr)) {\n\t\t\t$attrValue = $attrValue . $str;\n\t\t}\n\t\telse {\n\t\t\t$attrValue = $str;\n\t\t}\n\n\t\t$el->setAttribute($attr, $attrValue);\n\t}\n}", "public function attr(string $key, $values = true, $override = false) {\n if ($values === true) {\n return $this->setAttr($key);\n }\n\n if ($values === false) {\n return $this->delAttr($key);\n }\n\n if (! $override && self::getType($key) != self::ATTR_TYPE_NORMAL) {\n return $this->addAttrVal($key, $values);\n }\n\n return $this->setAttr($key, $values);\n }", "public function attr()\n {\n $args = func_get_args();\n\n if (isset($args[0]) && is_array($args[0])) {\n $this->attributes = $args[0];\n return $this;\n } elseif (isset($args[0]) && isset($args[1])) {\n $this->attributes[$args[0]] = $args[1];\n return $this;\n } elseif (isset($args[0])) {\n return isset($this->attributes[$args[0]]) ? $this->attributes[$args[0]] : null;\n }\n\n return $this->attributes;\n }", "public function addAttributes($attributes)\n {\n $this->_attributes = array_unique(\n array_merge(\n $this->_attributes,\n array_keys($attributes)\n )\n );\n }", "public function __clone()\n {\n $this->attribute = clone $this->attribute;\n $this->value = null;\n\n if ($this->isMultilingual()) {\n $this->attribute->delete(['unique', 'uniques']);\n\n $options = [];\n if (is_array($this->multilingual)) {\n $options = $this->multilingual;\n } elseif (true === $this->multilingual) {\n $options = $this->rules->getAttribute(null);\n// Translation input is not required\n unset($options['notnull']);\n } elseif (1 === $this->multilingual) {\n $options = $this->rules->getAttribute(null);\n } elseif (!is_numeric($this->multilingual)) {\n $options = ['rules' => $this->multilingual];\n }\n\n $this->setRule($options);\n }\n }", "public function modifyValue($value, array $arguments);", "public function append($key, $value = null);", "protected function extend_attributes(&$attrs, $params, $name, $title, $value, $policy) {\r\n\t\tparent::extend_attributes($attrs, $params, $name, $title, $value, $policy);\r\n\t\t$attrs['checked'] = $value ? 'checked' : false;\t\t\r\n\t}", "public function addValues(\\google\\protobuf\\Value $value){\n return $this->_add(1, $value);\n }", "public function set($values, $alias = FALSE, $original = FALSE)\n\t{\n\t\t$meta = $this->meta();\n\t\t\n\t\t// Accept set('name', 'value');\n\t\tif (!is_array($values))\n\t\t{\n\t\t\t$values = array($values => $alias);\n\t\t\t$alias = FALSE;\n\t\t}\n\t\t\n\t\t// Determine where to write the data to, changed or original\n\t\tif ($original)\n\t\t{\n\t\t\t$data_location =& $this->_original;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$data_location =& $this->_changed;\n\t\t}\n\n\t\t// Why this way? Because it allows the model to have \n\t\t// multiple fields that are based on the same column\n\t\tforeach($values as $key => $value)\n\t\t{\n\t\t\t// Key is coming from a with statement\n\t\t\tif (substr($key, 0, 1) === ':')\n\t\t\t{\n\t\t\t\t$targets = explode(':', ltrim($key, ':'), 2);\n\t\t\t\t\n\t\t\t\t// Alias as it comes back in, which allows people to use with()\n\t\t\t\t// with alaised field names\n\t\t\t\t$relationship = $this->field(array_shift($targets), TRUE);\n\t\t\t\t\t\t\t\t\n\t\t\t\tif (!array_key_exists($relationship, $this->_with_values))\n\t\t\t\t{\n\t\t\t\t\t$this->_with_values[$relationship] = array();\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$this->_with_values[$relationship][implode(':', $targets)] = $value;\n\t\t\t}\n\t\t\t// Key is coming from a database result\n\t\t\telse if ($alias === TRUE && !empty($meta->columns[$key]))\n\t\t\t{\n\t\t\t\t// Contains an array of fields that the column is mapped to\n\t\t\t\t// This allows multiple fields to get data from the same column\n\t\t\t\tforeach ($meta->columns[$key] as $field)\n\t\t\t\t{\n\t\t\t\t\t$data_location[$field] = $meta->fields[$field]->set($value);\n\t\t\t\t\t\n\t\t\t\t\t// Invalidate the cache\n\t\t\t\t\tif (array_key_exists($field, $this->_retrieved))\n\t\t\t\t\t{\n\t\t\t\t\t\tunset($this->_retrieved[$field]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Standard setting of a field \n\t\t\telse if ($alias === FALSE && $field = $this->field($key))\n\t {\n\t\t\t\t$value = $field->set($value);\n\t\t\t\t\n\t\t\t\t// Ensure value has actually changed\n\t\t\t\tif ($field->in_db && $value == $this->_original[$field->name])\n\t\t\t\t{\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$data_location[$field->name] = $value;\n\n\t\t\t\t// Invalidate the cache\n\t\t\t\tif (array_key_exists($field->name, $this->_retrieved))\n\t\t\t\t{\n\t\t\t\t\tunset($this->_retrieved[$field->name]);\n\t\t\t\t}\n \t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->_unmapped[$key] = $value;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $this;\n\t}", "function append($value = \\null)\n {\n }", "protected function extend_attributes(&$attrs, $params, $name, $title, $value, $policy) {\r\n\t\tparent::extend_attributes($attrs, $params, $name, $title, $value, $policy);\r\n\t\t$attrs['name'] = $name;\r\n\t\t$attrs['rows'] = Arr::get_item($params, 'rows', 5);\r\n\t\t$attrs['cols'] = Arr::get_item($params, 'cols', 10);\t\r\n\t}", "public function setValue($values)\n {\n if (! is_array($values)) {\n $values = [$values];\n }\n\n if (count($values) === 0 || is_null(reset($values))) {\n return;\n }\n\n $this->type = Xml::attributeType(reset($values));\n $this->value = [];\n\n foreach ($values as $value) {\n if ('DATE' === $this->type && ! Date::isEmpty($value)) {\n $value = Date::format($value);\n }\n\n $this->value[] = $value;\n }\n }", "public function fill(array $attributes, $raw = false) {\n\t\tforeach ($attributes as $key => $value) {\n\t\t\t// If the \"raw\" flag is set, it means that we'll just load every value from\n\t\t\t// the array directly into the attributes, without any accessibility or\n\t\t\t// mutators being accounted for. What you pass in is what you get.\n\t\t\tif ($raw) {\n\t\t\t\t$this->set_attribute($key, $value);\n\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If the \"accessible\" property is an array, the developer is limiting the\n\t\t\t// attributes that may be mass assigned, and we need to verify that the\n\t\t\t// current attribute is included in that list of allowed attributes.\n\t\t\tif (is_array(static::$accessible)) {\n\t\t\t\tif (in_array($key, static::$accessible)) {\n\t\t\t\t\t$this->$key = $value;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// If the \"accessible\" property is not an array, no attributes have been\n\t\t\t\t// white-listed and we are free to set the value of the attribute to\n\t\t\t\t// the value that has been passed into the method without a check.\n\n\t\t\t\t$this->$key = $value;\n\t\t\t}\n\t\t}\n\n\t\t// If the original attribute values have not been set, we will set\n\t\t// them to the values passed to this method allowing us to easily\n\t\t// check if the model has changed since hydration.\n\t\tif (count($this->original) === 0) {\n\t\t\t$this->original = $this->attributes;\n\t\t}\n\n\t\treturn $this;\n\t}", "public function extend($value)\n {\n $this->attributes['extend'] = $value;\n\n return $this;\n }", "public function concat($value) {\n \n return $this->append($value);\n }", "public function values() {\n\t\t// Get arguments :\n\t\t$args = func_get_args();\n\t\t\n\t\t// Add values :\n\t\tif (is_array($args[0])) {\n\t\t\tif ( ! is_array(reset($args[0]))) {\n\t\t\t\t// Deal with normal case : ->values(array(val1, val2, ...), array(val1, val2, ...), ...)\n\t\t\t\tforeach($args as $values_array)\n\t\t\t\t\t$this->push(new \\Glue\\DB\\Fragment_Item_Values($values_array));\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Array of arrays given, call this function recursively for each of them :\n\t\t\t\tforeach($args[0] as $arg)\n\t\t\t\t\t$this->values($arg);\n\t\t\t}\n\t\t}\n\t\telse\n\t\t\t// List of values given, call this function recursively with the same values as an array :\n\t\t\t$this->values($args);\n\t\n\t\treturn $this;\n\t}", "public function withAttribute($name, $value)\n {\n }", "public function withAttribute($name, $value)\n {\n }", "public function setValues($values = []);", "private function entityInAttributeValueState() {\n $entity = $this->entity();\n\n // If nothing is returned, append a U+0026 AMPERSAND character to the\n // current attribute's value. Otherwise, emit the character token that\n // was returned.\n $char = (!$entity)\n ? '&'\n : $entity;\n\n $last = count($this->token['attr']) - 1;\n $this->token['attr'][$last]['value'] .= $char;\n }", "public function onUnsafeAttribute($name, $value)\n {\n $this->$name = $value;\n }", "private function entityInAttributeValueState()\n {\n $entity = $this->entity();\n\n // If nothing is returned, append a U+0026 AMPERSAND character to the\n // current attribute's value. Otherwise, emit the character token that\n // was returned.\n $char = (!$entity)\n ? '&'\n : $entity;\n\n $last = count($this->token['attr']) - 1;\n $this->token['attr'][$last]['value'] .= $char;\n }" ]
[ "0.6015629", "0.6002492", "0.59121734", "0.5886015", "0.5836978", "0.57276404", "0.5637385", "0.5635981", "0.5596031", "0.55570227", "0.55560374", "0.55548453", "0.545192", "0.5414248", "0.54037654", "0.5392897", "0.5391196", "0.5383029", "0.5378316", "0.53772247", "0.53713393", "0.53335154", "0.53205705", "0.5293647", "0.5269417", "0.524621", "0.52433825", "0.52160466", "0.52057666", "0.5190356", "0.5138507", "0.51353204", "0.5114836", "0.5106978", "0.5102667", "0.5096052", "0.5092355", "0.50784135", "0.5076744", "0.5070208", "0.5055909", "0.5027003", "0.50212014", "0.501621", "0.50147706", "0.50140077", "0.50082356", "0.5006395", "0.5002228", "0.49987", "0.4995145", "0.49910408", "0.49787247", "0.49640673", "0.49615777", "0.49601966", "0.4958757", "0.49518836", "0.49453458", "0.4934919", "0.4925468", "0.49230775", "0.4922043", "0.49213442", "0.49162808", "0.49136096", "0.49065888", "0.48972365", "0.48891407", "0.48838985", "0.48800278", "0.48729387", "0.48729387", "0.48718607", "0.48686442", "0.4863255", "0.48573166", "0.48443246", "0.48363748", "0.48339364", "0.48291817", "0.4828469", "0.4825048", "0.48169592", "0.4811471", "0.47972348", "0.479575", "0.4793741", "0.478827", "0.47799674", "0.47781903", "0.4768014", "0.4764341", "0.47641814", "0.4762804", "0.4762804", "0.47622705", "0.47582355", "0.4758193", "0.47538367" ]
0.52252215
27
Get an attribute from the $attributes array.
protected function getAttributeFromArray($key) { // Support keys in dot notation. if (str_contains($key, '.')) { $attributes = array_dot($this->attributes); if (array_key_exists($key, $attributes)) { return $attributes[$key]; } } return parent::getAttributeFromArray($key); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __get($attribute)\n {\n return array_get($this->attributes, $attribute);\n }", "public function __get($attribute)\n {\n if ( isset($this->attributes[$attribute]) ) return $this->attributes[$attribute];\n }", "public function get($attribute);", "public function getAttribute($attribute)\n {\n return $this->attributes[$attribute];\n }", "public function getAttribute($attributeName) {\n\t\tif (!$this->attributeExists($attributeName)) {\n\t\t\tthrow new CException(\"Unable to resolve attribute '{$attributeName}'!\");\n\t\t}\n\t\treturn $this->_attributes[$attributeName];\n\t}", "public function attr($attribute) {\n if (array_key_exists($attribute, $this->attributes)) {\n return $this->attributes[$attribute];\n } else {\n return 'PopShops API Error: Invalid attribute passed to ' . get_class($this) . '->attr: ' . $attribute;\n }\n }", "public function getAttribute($attribute)\n {\n }", "public function getAttribute($attribute)\n {\n return $this->{$attribute};\n }", "public function get_attribute($key) {\n\t\treturn array_get($this->attributes, $key);\n\t}", "public function get($name): Attribute {\n $name = str_replace([\"-\", \" \"], \"_\", strtolower($name));\n if (isset($this->attributes[$name])) {\n return $this->attributes[$name];\n }\n\n return new Attribute($name);\n }", "public function attribute(string $name) {\n\t\treturn $this->m_attributes[$name] ?? null;\n\t}", "public function getAttribute(string $attribute): string;", "public function getAttribute($attribute)\r\n\t{\r\n\t\t\r\n\t}", "public function __get($name)\n\t{\n\t\tif(array_key_exists($name, $this->_attributes))\n\t\t\treturn $this->_attributes[$name];\n\t\telse\n\t\t\treturn parent::__get($name);\n\t}", "public function getAttributeByName($attributeName);", "public function getAttribute($name)\n {\n if (in_array($name, static::$fields)) {\n return $this->attributes[$name];\n }\n }", "public function readAttribute($attribute) {}", "public function attr()\n {\n $args = func_get_args();\n\n if (isset($args[0]) && is_array($args[0])) {\n $this->attributes = $args[0];\n return $this;\n } elseif (isset($args[0]) && isset($args[1])) {\n $this->attributes[$args[0]] = $args[1];\n return $this;\n } elseif (isset($args[0])) {\n return isset($this->attributes[$args[0]]) ? $this->attributes[$args[0]] : null;\n }\n\n return $this->attributes;\n }", "public function getAttribute($attribute) {\n\t\tif (!$this->attributes) {\n\t\t\t$this->attributes = tx_newspaper::selectOneRow(\n\t\t\t\t'*', tx_newspaper::getTable($this), $this->getCondition()\n\t\t\t);\n\t\t\t$this->setUid($this->attributes['uid']);\n\t\t}\n\n \t\tif (!array_key_exists($attribute, $this->attributes)) {\n \tthrow new tx_newspaper_WrongAttributeException($attribute);\n \t\t}\n \t\treturn $this->attributes[$attribute];\n \t}", "public function get($attributeName);", "public function getAttribute($type)\n {\n return $this->attributes[$type];\n }", "public function getAttributesByKey($attributes)\n {\n // Get key value.\n $key = $this->getKey();\n\n if ($key !== null && isset($attributes[$key])) {\n return $attributes[$key];\n }\n\n return $attributes;\n }", "public function __attribute($name)\n {\n return $this->__attributes[$name];\n }", "protected function getAttribute(array &$query)\n {\n // Get the attribute to query\n $attribute = array_shift($query);\n\n // Check to see if we received an array\n // of arrays and work from there\n if(is_array($attribute)) {\n $tmp = array_shift($attribute);\n $query = $attribute;\n $attribute = $tmp;\n }\n\n return $attribute;\n }", "public function attr() {\n\t\treturn utils::attr($this->attr, func_get_args());\n\t}", "public function getAttribute($name);", "public function getAttribute()\n {\n return $this->attribute;\n }", "public function getAttribute()\n {\n return $this->attribute;\n }", "public function getAttribute($attribute)\n {\n //Check this attribute is support\n if (isset($this->input_map[$attribute])) {\n return $this->input_map[$attribute];\n } else {\n throw new AttributeInvalidException('Attribute not supported by this library');\n }\n }", "public function __get($name) {\n\t\tif ($this->hasAttribute($name))\n\t\t\treturn $this->_attributes[$name];\n\t\telse\n\t\t\treturn parent::__get($name);\n\t}", "public function getAttribute(string $name);", "public function __get($attribute)\r\n {\r\n if ($attribute == 'tag') {\r\n return $this->attributes[0];\r\n }\r\n return array_key_exists($attribute, $this->attributes) ? $this->attributes[$attribute] : null;\r\n }", "public function getAttribute($attribute)\n\t{\n\t\tif(isset($this->attributes[$attribute]))\n\t\t\treturn $this->attributes[$attribute];\n\n\t\treturn null;\n\t}", "public function getAttribute($name)\n {\n return (isset($this->_attributes[$name])) ? $this->_attributes[$name] : NULL;\n }", "public function __get($name)\n {\n return $this->attributes[$name];\n }", "function get_atribute_by_attribute($attr_name,$attr_value,$exactly,$name_attr)\n {\n return $this->get_attribute_by_attribute($attr_name,$attr_value,$exactly,$name_attr);\n }", "public function getAttribute($name) {\n\t\tif (property_exists($this, $name))\n\t\t\treturn $this->$name;\n\t\telse if ($this->hasAttribute($name))\n\t\t\treturn $this->_attributes[$name];\n\t}", "public function __get($attribute) {\n return $this->getAttribute($attribute);\n }", "protected function getAttributeFromArray($key)\n {\n if (array_key_exists($key, $this->attributes)) {\n return $this->attributes[$key];\n }\n }", "protected function getAttributeFromArray($key)\n {\n if (array_key_exists($key, $this->attributes)) {\n return $this->attributes[$key];\n }\n }", "protected function getAttributeFromArray($key)\n {\n if (array_key_exists($key, $this->attributes)) {\n return $this->attributes[$key];\n }\n }", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "public function getAttribute($attribute) {\n\t\tif (!isset($this->{$attribute})) {\n\t\t\treturn null;\n\t\t}\n\t\treturn $this->{$attribute};\n\t}", "function get_attribute($attribute)\n\t{\n\t\t$attribute = $this->db->getAttribute(constant(\"PDO::\".$attribute.\"\"));\n\n\t\treturn $attribute;\n\t}", "public function get_attribute($name)\n {\n }", "private function getAttributeValue($attribute)\n {\n return array_key_exists($attribute, $this->data) ? $this->data[$attribute] : null;\n }", "public function getAttribute($key)\n {\n return $this->attributes[$key];\n }", "public function getCustomAttributesAttribute()\n {\n return $this->custom_attributes()->get();\n }", "public function offsetGet($key)\n {\n return $this->attributes[$key];\n }", "function getAttributeValue($name) {\n if(array_key_exists($name, $this->_attributes)) {\n return $this->_attributes[$name];\n } else {\n return null;\n }\n }", "public function offsetGet($attribute)\n {\n return (\n $this->offsetExists($attribute) ?\n $this->attributeList[$attribute] :\n null\n );\n }", "public function getAttribute($attribute)\n {\n $attributes = $this->xml_value_[0][\"attributes\"];\n return $attributes[$attribute];\n }", "public function get($attr) {\n return array_key_exists($attr, $this->_private_attributes) ? $this->_private_attributes[$attr] : null;\n }", "public function getAttribute($key);", "public function getAttribute($name)\n\t{\n\t\tif(property_exists($this,$name))\n\t\t\treturn $this->$name;\n\t\telseif(isset($this->_attributes[$name])) {\n\t\t\treturn $this->_attributes[$name];\n\t\t}\n\t}", "public function getAttribute($attributeName)\n {\n return $this->attributes->getStructAttributeByName($attributeName);\n }", "public function getAttribute($attr_name)\n {\n return false === $this->hasAttribute($attr_name) ? null : $this->attributes[$attr_name];\n }", "public function getAttribute($name)\n {\n return isset($this->attributes[$name]) ? $this->attributes[$name] : null;\n }", "protected function getAttributeFromArray($key)\n {\n if (array_key_exists($key, $this->attributes))\n return $this->attributes[$key];\n else\n return null;\n }", "public function getAttribute($name)\r\n\t{\r\n\t\treturn $this->__get($name);\r\n\t}", "public function getAttr(string $key) {\n return (array_key_exists($key, $this->attributes) ? $this->attributes[$key] : null);\n }", "function get_attribute( $key ) {\n\t\treturn isset( $this->attributes[$key] ) ? $this->attributes[$key] : null;\n\t}", "public function attr($key) {\n\t\treturn isset($this->attributes[$key]) ? $this->attributes[$key] : null;\n\t}", "public function get($name)\n {\n if (array_key_exists($name, $this->attributes)) {\n return $this->attributes[$name];\n }\n\n throw new LogicException(\n sprintf(\n 'Attribute %s does not exist.',\n json_encode($name)\n )\n );\n }", "public function getAttribute($name) {\n\t\tif (isset ( $this->$name ))\treturn $this->$name;\n\t}", "public function getAttrib() {\n return $this->attrib;\n }", "public function findByAttributes(array $attributes)\n {\n return $this\n ->model\n ->where($attributes)\n ->first();\n }", "#[\\ReturnTypeWillChange]\n public function offsetGet($offset)\n {\n return $this->attributes[$offset];\n }", "public function __get($attribute) {\n\t\tif (array_key_exists($attribute, $this->_data)) {\n\t\t\treturn $this->_data[$attribute];\n\t\t}\n\n\t\tthrow new Exception(\"unknown attribute {$attribute}\");\n\t}", "public function __get($name)\n\t{\n\t\tif (isset($this->_attributes[$name]))\n\t\t\treturn $this->_attributes[$name];\n\t\treturn null;\n\t}", "public function getAttribute($key)\n\t{\n\t\t$value = null;\n\t\tif (array_key_exists($key, $this->attributes)) {\n\t\t\tif (array_key_exists($key, $this->attributes)) {\n\t\t\t\t$value = $this->attributes[$key];\n\t\t\t}\n\t\t}\n\t\treturn $value;\n\t}", "public function get($attr) {\n if (!isset($this->attrs[$attr])) {\n return null;\n }\n return $this->attrs[$attr];\n }", "public function getIdentifyingAttribute();", "public function readAttribute($attribute){\n\t\t#if[compile-time]\n\t\tCoreType::assertString($attribute);\n\t\t#endif\n\t\t$this->_connect();\n\t\treturn $this->$attribute;\n\t}", "public function offsetGet($key)\n {\n return $this->attributes->get($key);\n }", "public function __get($attribute)\r\n\t{\r\n\t\tif (isset($this->{\"_\".$attribute}))\r\n\t\t{\r\n\t\t\treturn $this->{\"_\".$attribute};\r\n\t\t}\r\n\t\telse\r\n\t\t{\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "public function get($attr = null);", "public function getAttribute($name)\n {\n return isset($this->attributes[$name]) ? $this->attributes[$name] : false;\n }", "function getAttribute($Model, $attribute_name) {\n extract($this->settings[$Model->alias]);\n\n return ($Model->{$with}->Attribute->find(\n 'first',\n array(\n 'fields' => array(\n 'Datatype.name',\n 'Datatype.table',\n 'Datatype.validation_proc',\n 'Datatype.format',\n 'Attribute.name',\n 'Attribute.id'\n ),\n 'conditions' => array(\n 'Attribute.name' => $attribute_name,\n ),\n 'recursive' => 0\n )\n )\n );\n }", "public function __get($name)\n\t{\n\t\tif (isset($this->attributes[$name])) {\n\t\t\treturn $this->attributes[$name];\n\t\t} \n\t\treturn null;\n\t\t\n\t}", "public function getAttribute($name)\n {\n SERVICES_HYPERESTRAIER_DEBUG && Services_HyperEstraier_Utility::checkTypes(\n array($name, 'string')\n );\n return (isset($this->_attrs[$name])) ? $this->_attrs[$name] : null;\n }", "public function getAttribute($attribute, $defaultValue = null)\n {\n return array_get($this->attributes, $attribute, $defaultValue);\n }", "public function getAttribute(): string\n {\n return $this->attribute;\n }", "public function __get($key)\n {\n return $this->attributes[$key];\n }", "private function attr($name)\n {\n if (!$this->attrs) {\n $this->attrs = $this->metadata['attrs'];\n }\n\n try {\n return $this->attrs->get($name);\n } catch (InvalidAttrException $e) {\n return null;\n }\n }", "public function __get(string $name)\n {\n if (array_key_exists($name, $this->attributes)) {\n return $this->attributes[$name];\n }\n \n return null;\n }", "public function __get($attribute)\n\t{\n\t\tif (isset($this->{\"_\".$attribute}))\n\t\t{\n\t\t\treturn $this->{\"_\".$attribute};\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t}", "public function getAttribute($key)\n {\n if (array_key_exists($key,$this->_attributes)) {\n return $this->_attributes[$key];\n }\n return false;\n }", "public function get_attribute($field){\n\t\treturn $this->{$field};\n\t}", "public function getByAttributesFirst(array $attributes)\n {\n return $this->user->where($attributes)->first();\n }", "public function getAttribute($key)\n\t{\n\t\treturn (($this->_attributes !== NULL && array_key_exists($key, $this->_attributes))? $this->_attributes[$key] : NULL);\n\t}", "public function __get($attr)\n {\n return $this->get($attr);\n }", "abstract public function getAttribute($key);", "public function __GET($attr){\n\n\t\t return $this->$attr;\n\t\t}", "public function getAttribute($key)\n {\n $inAttributes = array_key_exists($key, $this->attributes);\n\n // If the key references an attribute, we can just go ahead and return the\n // plain attribute value from the model. This allows every attribute to\n // be dynamically accessed through the __get method without accessors.\n if ($inAttributes || $this->hasGetMutator($key)) {\n return $this->getAttributeValue($key);\n }\n }", "public function __get($name)\n {\n if (isset($this->_attributes[$name]) || array_key_exists($name, $this->_attributes)) {\n return $this->_attributes[$name];\n } elseif ($this->hasAttribute($name)) {\n return null;\n } else {\n return parent::__get($name);\n }\n }", "public function getAttribute($key)\n {\n if (! $key) {\n return;\n }\n\n if ( array_key_exists($key, $this->attributes) ) {\n return $this->getAttributeValue($key);\n }\n\n if (method_exists(self::class, $key)) {\n return;\n }\n\n return;\n }", "public function attribute($id, $name)\n\t{\n\t\treturn $this->connection()->get(\"element/$id/attribute/$name\");\n\t}", "private function getAttribute($attribute, $property = NULL, $callback = NULL) {\n\t\t$attributes = array_map(function($attributes) use ($attribute, $callback) {\n\t\t\t$value = isset($attributes[$attribute]) ? $attributes[$attribute] : NULL;\n\n\t\t\tif (is_callable($callback))\n\t\t\t\t$value = call_user_func($callback, $value);\n\n\t\t\treturn $value;\n\t\t}, (array) $this);\n\n\t\tif (isset($property))\n\t\t\treturn isset($attributes[$property]) ? $attributes[$property] : NULL;\n\n\t\treturn $attributes;\n\t}" ]
[ "0.7249001", "0.6876551", "0.68435717", "0.6758423", "0.6732529", "0.6692673", "0.66780263", "0.6600658", "0.6541203", "0.65339506", "0.6531003", "0.64952105", "0.6488064", "0.645791", "0.64455426", "0.6426532", "0.6419961", "0.63889235", "0.63680303", "0.6357846", "0.634977", "0.6319701", "0.6309409", "0.63028395", "0.62983567", "0.6297203", "0.6287498", "0.6287498", "0.62874204", "0.62863094", "0.62700456", "0.6246344", "0.6246056", "0.62447244", "0.62341595", "0.6233403", "0.6222977", "0.62100804", "0.6207651", "0.6207651", "0.6207651", "0.6206606", "0.6206606", "0.6206606", "0.6206606", "0.6183346", "0.615734", "0.61569065", "0.61559784", "0.6153474", "0.61461043", "0.61370236", "0.613068", "0.61286354", "0.6124964", "0.61220986", "0.6112513", "0.61101735", "0.6097368", "0.60908395", "0.6083645", "0.60669065", "0.60568", "0.6055108", "0.6042106", "0.60293007", "0.6024836", "0.6004023", "0.60026556", "0.5997057", "0.59896874", "0.5978055", "0.59776556", "0.59676564", "0.5957693", "0.594468", "0.5943688", "0.59428173", "0.59417117", "0.5935967", "0.59342796", "0.5929366", "0.5925077", "0.5914191", "0.59035677", "0.58990866", "0.5894723", "0.5891913", "0.5890898", "0.5885728", "0.5883663", "0.58691716", "0.5861431", "0.58594215", "0.5852766", "0.5851906", "0.5851774", "0.58506215", "0.58344275", "0.5827452", "0.5813139" ]
0.0
-1
Remove one or more values from an array.
public function pull($column, $values) { // Do batch pull by default. if (!is_array($values)) { $values = [$values]; } $query = $this->setKeysForSaveQuery($this->newQuery()); $this->pullAttributeValues($column, $values); return $query->pull($column, $values); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function array_remove($array, $val){\n $vals = func_get_args(); $vals = array_shift($vals);\n return array_diff($array, array($val));\n}", "static public function arrRmByVal($arr,$value=''){\n $arr = is_array($arr)?$arr:array();\n foreach ($arr as $k=>$v)\n {\n if ($v == $value)\n unset($arr[$k]);\n }\n return $arr;\n }", "function removeItemsByValue(&$array,$itemsToRemove) {\r\n\t\tforeach($array as $key => $value) {\r\n\t\t\tif(in_array($value,$itemsToRemove)) unset($array[$key]);\r\n\t\t}\r\n\t}", "public function removeAll(array $elements);", "static function remove(&$array,$value = false,$strict = false){\n\t\tif(!is_array($array)){\n\t\t\tthrow new \\Exception('Parameter must be an array');\n\t\t}\n\t\t$existingKey = array_search($value,$array);\n\t\twhile($existingKey !== false){\n\t\t\tunset($array[$existingKey]);\n\t\t\t$existingKey = array_search($value,$array,$strict);\n\t\t}\n\t\treturn $array;\n\t}", "function arrayRemove($array, $values, $reorder=false) {\n $values = (array)$values;\n foreach($values as $value) {\n while(false !== ($loc = array_search($value, $array))) unset($array[$loc]);\n }\n return ($reorder ? array_values($array) : $array);\n}", "function array_forget(&$array, $keys)\n {\n Arr::forget($array, $keys);\n }", "function array_forget(&$array, $keys)\n {\n Arr::forget($array, $keys);\n }", "protected function array_remove($arr, $value) {\n\t\treturn array_values(array_diff($arr, array($value)));\n\t}", "function destroyer($arr, $valsToRemove) {\n\n $ret = array();\n foreach($arr as $v) {\n if(array_search($v, $valsToRemove) === false)\n $ret[] = $v;\n }\n return $ret;\n}", "public function array_remove(&$array, $value)\n {\n return array_filter($array, function($a) use($value) {\n return $a !== $value;\n });\n }", "function array_forget(&$array, $keys)\n {\n return Arr::forget($array, $keys);\n }", "function array_remove($value, array $array, bool $removeFirstOnly = false): array\n {\n return Arr::remove($value, $array, $removeFirstOnly);\n }", "function elimina($array,$valore){\n\t\t// verifico che il valore sia compreso nell'array\n\t\tif(in_array($valore,$array)){\n\t\t\t$chiave=array_search($valore,$array);\n\t\t\t// rimuovo il valore passando ad unset la chiave recuperata usando array_search\n\t\t\tunset($array[$chiave]); \n\t\t\t\n\t\t\t// restituisco l'array dopo averlo re-indicizzato\n\t\t\treturn array_values($array);\n\t\t}else{\n\t\t\t// se non trovo corrispondenze restituisco l'array così com'è\n\t\t\treturn $array;\n\t }\n\t}", "private static function removeFromArray($value, array $array): array {\n\t\t$tmpNew = [];\n\t\t$i = 0;\n\n\t\t// Process for each array item. Construct new array without the searched value\n\t\tforeach($array as $itemValue) {\n\t\t\tif($value != $itemValue) {\n\t\t\t\t$tmpNew[$i] = $itemValue;\n\t\t\t\t$i++;\n\t\t\t}\n\t\t}\n\n\t\treturn $tmpNew;\n\t}", "function remove_values(array $hand, string $val):array {\n return array_values(array_filter($hand, function ($el) use ($val) {return $el[0] !== $val;}));\n}", "function delete_array($array)\n{\n\t// get arguments\n\t$args = func_get_args();\n\t// unset first arg, b/c it is the array\n\tunset($args[0]);\n\t// if args = array in array, turn into just array\n\tif(isset($args[1]) && is_array($args[1]))\n\t{\n\t\t$args = $args[1];\n\t}\n\t// remove specified fields from array\n\t$array = _delete_array($array, $args);\n\t// remove empty elements from array\n\t$array = empty_array($array);\n\t// return array\n\treturn $array;\n}", "function ArrayRemoveEmpty($arr)\r\n{\r\n $arr = array_filter($arr);\r\n return $arr;\r\n}", "function array_remove(array &$array, callable $pred)\n{\n $i = array_index_of($array, $pred);\n if (null === $i) {\n return null;\n }\n\n $v = $array[$i];\n if (is_numeric_array($array)) {\n array_splice($array, $i, 1);\n } else {\n unset($array[$i]);\n }\n\n return $v;\n}", "final public function remove(...$values):Main\\Map\n {\n $this->checkAllowed('remove');\n $return = $this->onPrepareThis('remove');\n $data =& $return->arr();\n $data = Base\\Arrs::valuesStrip($return->prepareValues(...$values),$data,$this->isSensitive());\n\n return $return->checkAfter();\n }", "public static function removeValueFromArray($array, $arrayValue) {\n\t\treturn array_diff($array, [$arrayValue]);\n\t}", "public function scrubArray(array $data) : array;", "function purge($arr){\n\treturn array_map(function($r){ return array_map(function($c){ return is_array($c)?false:$c;}, $r);}, $arr);\n}", "function array_remove($element, $array) {\n $index = array_search($element, $array);\n array_splice($array, $index, 1);\n return $array;\n }", "public abstract function retain_array(Array $array);", "public function remove(array $values, string|array $remove) : array\n\t{\n\t\treturn array_diff($values, App::array($remove));\n\t}", "function without(array $items, ...$value)\n{\n $filtered = array_filter($items, function ($item) use ($value) {\n return !in_array($item, $value);\n });\n // Сбрасываем ключи\n return array_values($filtered);\n}", "protected function clearArray($value)\n\t{\n\t\treturn array_values(array_unique(array_map('intval', $value)));\n\t}", "public static function removedFromArray($old_array, $new_array) {\r\n\r\n/*\tThis function returns those values that exist in the old \r\n\tarray, but are no longer found in the new one. Those \r\n\tvalues have essentially been \"removed\" to the old array. */\r\n\r\n $removed = array_diff($old_array, $new_array);\r\n return $removed;\r\n \r\n}", "function arrayClean(&$array) {\n\tif (!is_array($array)) return null;\n\treturn array_filter($array, create_function('$o', 'return !empty($o);'));\n}", "static public function deleteFromArray($needle, &$array) {\n foreach ($array as $key => $value) {\n if ($value == $needle) {\n unset($array[$key]);\n return;\n }\n }\n }", "function array_delete($array, $element) {\n return array_diff($array, [$element]);\n}", "function unsetByValue(array $array, $value):array\n{\n if (($key = array_search($value, $array)) !== false) {\n unset($array[$key]);\n }\n\n return $array;\n}", "public static function clean(array $array): array\n {\n return array_values(array_filter($array));\n }", "function skudo_remove_item_by_value($array, $val = '') {\n\tif (empty($array) || !is_array($array)) return false;\n\tif (!in_array($val, $array)) return $array;\n\n\tforeach($array as $key => $value) {\n\t\tif ($value == $val) unset($array[$key]);\n\t}\n\n\treturn array_values($array);\n}", "public static function removeValue(&$array, $value)\n {\n $result = [];\n if (is_array($array)) {\n foreach ($array as $key => $val) {\n if ($val === $value) {\n $result[$key] = $val;\n unset($array[$key]);\n }\n }\n }\n\n return $result;\n }", "public static function clearEmptyValues($array) {\r\n\r\n/*\tThis function unsets any empty values in an associate array\r\n\tand returns the array back. This is useful, perhaps, if we \r\n\texpect some $_POST values are unset and we need to clear \r\n\tthose empty values out of the array. */\r\n\r\n foreach ($array as $key => $value) {\r\n \tif ($value == \"\") { unset($array[$key]); }\r\n }\r\n \r\n return $array;\r\n \r\n}", "private function removeFromArray(array &$array, array $path): void\n {\n $previous = null;\n $tmp = &$array;\n\n foreach ($path as $node) {\n $previous = &$tmp;\n $tmp = &$tmp[$node];\n }\n\n if (null !== $previous && true === isset($node)) {\n unset($previous[$node]);\n }\n }", "public function removeAll () {\n\t\t$this->exchangeArray(array());\n\t}", "public function removeMultiValue($strName, $value)\r\n {\r\n // TODO: remove the value from the multi-value array\r\n }", "function remove_item_by_value($array, $val = '', $preserve_keys = true) {\n\tif (empty($array) || !is_array($array)) return false;\n\tif (!in_array($val, $array)) return $array;\n\n\tforeach($array as $key => $value) {\n\t\tif ($value == $val) unset($array[$key]);\n\t}\n\n\treturn ($preserve_keys === true) ? $array : array_values($array);\n}", "public static function except( $array, $keys )\n {\n static::forget( $array, $keys );\n\n return $array;\n }", "public static function except($array, $keys)\n {\n static::forget($array, $keys);\n\n return $array;\n }", "public static function clean($array) {\n\t\t\treturn array_filter($array, function($item) {\n\t\t\t\treturn !empty($item);\n\t\t\t});\n\t\t}", "function cleanArray($array) {\n\t foreach ($array as $index => $value) {\n\t if(is_array($array[$index])) $array[$index] = $this->cleanArray($array[$index]);\n\t if (empty($value)) unset($array[$index]);\n\t\t if (count($array[$index]) == 0) unset($array[$index]);\n\t }\n\t return $array;\n\t}", "public static function except( $array, array $keys ): array {\n\t\t\treturn static::forget( $array, $keys );\n\t\t}", "function filterValuesArray(array $values) {\n $res = array();\n foreach ($values as $v) {\n if (is_scalar(($v))) $res[] = $v;\n }\n $res = array_intersect($res, array_keys($this->getValueList()));\n return $res;\n }", "public function removeTrue(array &$array)\n {\n $array = array_filter($array,\n function ($value) {\n return $value !== true;\n });\n }", "function remove_array($array_name){\n $removed = 0;\n $ret = array();\n $set = $this->get_settings();\n\n //get line numbers of current settings\n if( strpos($array_name, '[') === false ){\n //only the array name was passed, without []\n $config_value = $array_name;\n }else{\n $config_value = substr($array_name, 0, strpos($array_name, '[') ); //this is the value of $key without [n]. this is used for the array name when writing it back\n }\n exec( $set['CMD_GREP'].' -n \"'.$config_value.'\" '.$this->_settings_file.' | '.$set['CMD_CUT'].' -d: -f1', $ret); // $ret[] will contain line number with current settings\n\n //loop over returned values and remove the lines\n for( $x = count($ret)-1 ; $x >= 0 ; --$x ){ //go backwards or line numbers need to be adjusted\n exec( $set['CMD_SED'].' \"'.$ret[$x].'d\" '.$this->_settings_file.' > '.$this->_settings_file.'.back');\n// exec('sed -e :a -e \\'/^\\n*$/{$d;N;};/\\n$/ba\\' '.$this->_settings_file.'.back');\n exec('mv '.$this->_settings_file.'.back '.$this->_settings_file.'');\n ++$removed;\n }\n\n return $removed;\n}", "public function myRevert(array $array);", "private function removeElementsFromArray($array, $remove){\n $result = array();\n for($i=0; $i < count($array); $i++){\n for($j=0; $j < count($remove); $j++ ){ \n if($array[$i] == $remove[$j]){ \n $array[$i] = false;\n }\n }\n }\n \n for($i=0; $i < count($array); $i++){\n if($array[$i] != false){\n array_push($result, $array[$i]);\n }\n }\n \n return $result;\n }", "public function removeAll()\n\t{\n\t\t$this->clear();\n\n\t\t$this->values = array();\n\t}", "public function removeFalse(array &$array)\n {\n $array = array_filter($array,\n function ($value) {\n return $value !== false;\n });\n }", "function array_pop(&$array)\n{\n}", "private function arrayClean($array)\n {\n foreach ($array as $key=>$value) {\n if(is_array($value))\n $this->arrayClean($value);\n else if($value!==null)\n unset($value);\n }\n }", "function array_except($array, $keys)\n {\n return Arr::except($array, $keys);\n }", "function array_except($array, $keys)\n {\n return Arr::except($array, $keys);\n }", "public function removeValuesFromOutputArray(){\n\t\ttry{\n\t\t\t$this->filteredOutput = array();\n\t\t} catch (Exception $e) {\n\t\t\terror_log($e->getMessage(),3,\"/var/tmp/error.log\");\n\t\t\terror_log(\"\\n\");\n\t\t}\n\t}", "function AlertsArrayRemoveEmpty($arr)\r\n{\r\n if (isset($arr)):\r\n if (!is_array($arr)) {\r\n echo \"Make sure the parameter is an array \";\r\n } else {\r\n $arr = array_filter($arr);\r\n }\r\n\r\n return $arr;\r\n endif;\r\n}", "function unsetArray($array){\n\n foreach($array as $subKey => $subArray ){\n if($subArray['item_id'] == $_GET['delete']){\n //echo $subKey['item_id'];\n //echo $_GET['delete'];\n unset($array[$subKey]);\n }\n }\n return $array;\n }", "public function remove(...$items);", "public function unsetValues($keys);", "public function cleanValues($values) {\n\t\tforeach($values as $key => $val) {\n\t\t\tif( empty($val) ) {\n\t\t\t\tunset($values[$key]);\n\t\t\t}\n\t\t}\n\t\treturn $values;\n\t}", "public function cleanValues($values) {\n\t\tforeach($values as $key => $val) {\n\t\t\tif( empty($val) ) {\n\t\t\t\tunset($values[$key]);\n\t\t\t}\n\t\t}\n\t\treturn $values;\n\t}", "public function notIn(array $values);", "public function retainAll(array $elements);", "public static function arrayRemoveElements($arr, $attr, $val) {\n $new_array = array();\n foreach ($arr as $e) {\n if ($e->$attr != $val) {\n array_push($new_array, $e);\n }\n }\n return $new_array;\n }", "function array_remove_keys($array, $keys = array()) {\n // doing anything else.\n if(empty($array) || (! is_array($array))) {\n return $array;\n }\n\n // If $keys is a comma-separated list, convert to an array.\n if(is_string($keys)) {\n $keys = explode(',', $keys);\n }\n\n // At this point if $keys is not an array, we can't do anything with it.\n if(! is_array($keys)) {\n return $array;\n }\n\n // array_diff_key() expected an associative array.\n $assocKeys = array();\n foreach($keys as $key) {\n $assocKeys[$key] = true;\n }\n\n return array_diff_key($array, $assocKeys);\n }", "public function removerFinal(array &$array)\n\t{\n\t\treturn array_pop($array);\n\t}", "public /*void*/ function offsetUnset(/*scalar*/ $offset){}", "public function testWithout() {\n\t\t$array = array(1, 2, 3, 4, 5);\n\t\t$result = _::without($array, 6);\n\t\t$this->assertInternalType('array', $result);\n\t\t$this->assertCount(5, $result);\n\t\t$this->assertEquals(1, $result[0]);\n\t\t$this->assertEquals(2, $result[1]);\n\t\t$this->assertEquals(3, $result[2]);\n\t\t$this->assertEquals(4, $result[3]);\n\t\t$this->assertEquals(5, $result[4]);\n\n\t\t// test removing a single element\n\t\t$result = _::without($array, 3);\n\t\t$this->assertInternalType('array', $result);\n\t\t$this->assertCount(4, $result);\n\t\t$this->assertEquals(1, $result[0]);\n\t\t$this->assertEquals(2, $result[1]);\n\t\t$this->assertEquals(4, $result[3]);\n\t\t$this->assertEquals(5, $result[4]);\n\n\t\t// test removing multiple elements\n\t\t$result = _::without($array, 1, 2, 3);\n\t\t$this->assertInternalType('array', $result);\n\t\t$this->assertCount(2, $result);\n\t\t$this->assertEquals(4, $result[3]);\n\t\t$this->assertEquals(5, $result[4]);\n\n\t\t// test removing all elements\n\t\t$result = _::without($array, 1, 2, 3, 4, 5);\n\t\t$this->assertInternalType('array', $result);\n\t\t$this->assertCount(0, $result);\n\t}", "function array_remove(array &$array, $keys) {\n $original = &$array;\n\n if ( ! is_array($keys)) {\n $keys = array($keys);\n }\n\n foreach ((array) $keys as $key) {\n $parts = explode('.', $key);\n\n while (count($parts) > 1) {\n $part = array_shift($parts);\n\n if (isset($array[$part]) && is_array($array[$part])) {\n $array = &$array[$part];\n }\n }\n\n unset($array[array_shift($parts)]);\n\n $array = &$original;\n }\n }", "function array_remove(array &$arr, $key) {\n if (isset($arr[$key])) {\n $val = $arr[$key];\n unset($arr[$key]);\n return $val;\n }\n\n return NULL;\n}", "public function offsetUnset($offset);", "public function offsetUnset($offset);", "public static function unsetFromArray($keys, array &$arr)\n {\n $keys = self::makeArray($keys);\n foreach($keys as $key)\n {\n if (array_key_exists($key, $arr))\n unset($arr[$key]);\n }\n }", "function cleanArray($array)\r\n\t{\r\n\t\tif (is_array($array))\r\n\t\t{\r\n\t\t\tforeach ($array as $key => $sub_array)\r\n\t\t\t{\r\n\t\t\t\t$result = $this->cleanArray($sub_array);\r\n\t\t\t\tif ($result === false)\r\n\t\t\t\t{\r\n\t\t\t\t\tunset($array[$key]);\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t$array[$key] = $result;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\r\n\t\tif (empty($array))\r\n\t\t{\r\n\t\t\t//return false;\r\n\t\t}\r\n\t\r\n\t\treturn $array;\r\n\t\r\n\t}", "public function removeAll();", "public function removeAll();", "function del_empty($arr)\n{\n\tforeach ($arr as $key => $value)\n\t{\n\t\tif (trim(strval($value))!='')\n\t\t\t$rzygi[$key] = $value;\n\t}\n\treturn $rzygi;\n}", "public function offsetUnset($offset) {}", "public function offsetUnset($offset) {}", "public function offsetUnset($offset) {}", "public function offsetUnset($offset) {}", "public function offsetUnset($offset) {}", "static function array_clean($array) {\n\t\treturn array_diff($array,array(null,'',\"\\n\",\"\\s\",\"\\r\",\"\\r\\n\",\"\\n\\r\"));\n\t}", "function ss_remove_empty_element_array($arr) { \n\tforeach($arr as $key => $val) {\n\t\tif (is_array($val)){\n ss_remove_empty_element_array($val);\n } else {\n if (trim($val) == \"\") unset($arr[$key]);\n }\n }\n return $arr;\n}", "public static function array_cleanup( $array, $toDelete )\n {\n foreach($toDelete as $del){\n $cloneArray = $array;\n foreach( $cloneArray as $key => $value )\n {\n if($del === $key)\n unset( $array[ $key ] );\n }\n }\n return $array;\n }", "public function removed() {\n return array_diff($this->in, $this->out);\n }", "function array_suck($array){\n\treturn array_map(\"reset\", $array);\n}", "public function undelete(array $ids);", "abstract public function removeAll();", "protected function filter(array $values) {\n return $values;\n }", "function remove_empty_arrays($array)\n{\n foreach ($array as $key => &$value) {\n if (is_array($value)) {\n if (isEmpty($value)) {\n unset($array[$key]);\n } //isEmpty($value)\n } //is_array($value)\n } //$array as $key => &$value\n unset($value);\n return $array;\n}", "public function array_except($array, $keys)\n {\n return Arr::except($array, $keys);\n }", "public static function forget(&$array, $keys)\n {\n $original =& $array;\n\n foreach ( (array)$keys as $key ) {\n $parts = explode('.', $key);\n\n while ( count($parts) > 1 ) {\n $part = array_shift($parts);\n\n if ( isset($array[ $part ]) and is_array($array[ $part ]) ) {\n $array =& $array[ $part ];\n }\n\n unset($array[ array_shift($parts) ]);\n\n $array =& $original;\n }\n }\n }", "protected function clean(Array $data)\n {\n foreach ($data as $key => $value) {\n // If the input data has a value that isn't in the whiteList, remove it from the array\n if (!array_key_exists($key, $this->whiteList)) {\n unset($data[$key]);\n }\n }\n return $data;\n }", "function array_forget(&$array, $key)\n\t{\n\t\t$keys = explode('.', $key);\n\n\t\twhile (count($keys) > 1)\n\t\t{\n\t\t\t$key = array_shift($keys);\n\n\t\t\tif ( ! isset($array[$key]) || ! is_array($array[$key]))\n\t\t\t{\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$array =& $array[$key];\n\t\t}\n\n\t\tunset($array[array_shift($keys)]);\n\t}", "public function offsetUnset($index);", "function arrayShift($array) {\n\n unset($array[0]);\n return $array;\n}", "private function sanitizeArray(array $values): array\n {\n return array_map([\n $this,\n 'sanitizeValue',\n ], $values);\n }" ]
[ "0.76267767", "0.7407613", "0.6931302", "0.6908935", "0.6901586", "0.6889811", "0.6874403", "0.6874403", "0.68693304", "0.6858404", "0.6812407", "0.6803804", "0.67568094", "0.6697336", "0.66936666", "0.66862833", "0.66629887", "0.654789", "0.6505426", "0.64560986", "0.6414868", "0.64049745", "0.63681126", "0.63420224", "0.6333322", "0.63042057", "0.62721914", "0.6270498", "0.6267228", "0.6245422", "0.62350386", "0.62296593", "0.622745", "0.62247515", "0.62013245", "0.6134057", "0.61340106", "0.6122055", "0.6090023", "0.6086087", "0.6081934", "0.6050754", "0.6048982", "0.6021043", "0.5995698", "0.5983557", "0.5970944", "0.59650564", "0.5946252", "0.5941522", "0.59208095", "0.59107715", "0.5908255", "0.58650166", "0.5862995", "0.585793", "0.585793", "0.5850735", "0.5849484", "0.58444405", "0.58202946", "0.58103406", "0.5801897", "0.5801897", "0.57955873", "0.57677484", "0.5750657", "0.5741186", "0.57316446", "0.5714496", "0.571231", "0.5692153", "0.5691087", "0.56404126", "0.56404126", "0.5624607", "0.56154764", "0.56060547", "0.56060547", "0.55901533", "0.55861574", "0.55861574", "0.55861574", "0.55853015", "0.55853015", "0.55798876", "0.55775356", "0.55741394", "0.55651486", "0.5563879", "0.5558906", "0.5546391", "0.5544954", "0.5544411", "0.55398643", "0.5532036", "0.5529288", "0.55194783", "0.55145335", "0.55131626", "0.551027" ]
0.0
-1
Remove one or more values to the underlying attribute value and sync with original.
protected function pullAttributeValues($column, array $values) { $current = $this->getAttributeFromArray($column) ?: []; foreach ($values as $value) { $keys = array_keys($current, $value); foreach ($keys as $key) { unset($current[$key]); } } $this->attributes[$column] = array_values($current); $this->syncOriginalAttribute($column); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRemoveOriginalValue();", "public function unsetAllAttributeValue()\n {\n foreach ($this->attributes as $key=>$val) {\n $this->$key = null;\n }\n }", "public function unset()\n {\n unset($this->value);\n }", "public function removeAllAttributes()\n {\n $this->attr = [];\n }", "public function unset(): void\n\t{\n\t\t$this->_value = $this->_allowNull ? null : self::setType('', gettype($this->_value));\n\t}", "public function removeAttributes()\n\t{\n\t\tforeach ($this->argsArray(func_get_args()) as $a) {\n\t\t\t$this->removed_attrs[] = $a;\n\t\t}\n\t}", "public function clearAttributes ()\n {\n\n $this->attributes = null;\n $this->attributes = array();\n\n }", "public function removeValue($element);", "public function removeAll()\n\t{\n\t\t$this->clear();\n\n\t\t$this->values = array();\n\t}", "abstract public function removeAttribute($name, $domain = '');", "abstract protected function reset_values();", "public function unsetProperty()\n\t{\n\t\t$this -> tableName = '';\n\t\t$this -> databaseName = '';\n\t\t$this -> arrNewData = array();\n\t\t$this -> arrOldData = array();\n\t}", "public function __unset($name)\n {\n // Dont' allow to unset attributes Ruts\n }", "public function markUnchanged();", "public function __unset($name)\n\t{\n\t\tif(isset($this->_attributes[$name]))\n\t\t\tunset($this->_attributes[$name]);\n\t\telse\n\t\t\tparent::__unset($name);\n\t}", "private function changelog_unset_unneeded_values () {\n\t\t# remove ip address fields\n\t\tif($this->object_type == \"ip_addr\") {\n\t\t\tunset(\t$this->object_new['subnet'],\n\t\t\t\t\t$this->object_new['type'],\n\t\t\t\t\t$this->object_new['section'],\n\t\t\t\t\t$this->object_new['ip_addr_old'],\n\t\t\t\t\t$this->object_new['nostrict'],\n\t\t\t\t\t$this->object_new['start'],\n\t\t\t\t\t$this->object_new['stop'],\n\t\t\t\t\t$this->object_new['ip'],\n\t\t\t\t\t$this->object_new['subnetvlan'],\n\t\t\t\t\t$this->object_new['addressId']\n\t\t\t\t\t);\n\t\t\tunset(\t$this->object_old['subnet'],\n\t\t\t\t\t$this->object_old['type'],\n\t\t\t\t\t$this->object_old['section'],\n\t\t\t\t\t$this->object_old['ip_addr_old'],\n\t\t\t\t\t$this->object_old['nostrict'],\n\t\t\t\t\t$this->object_old['start'],\n\t\t\t\t\t$this->object_old['stop'],\n\t\t\t\t\t$this->object_old['ip'],\n\t\t\t\t\t$this->object_old['subnetvlan'],\n\t\t\t\t\t$this->object_old['addressId']\n\t\t\t\t\t);\n # remove mac\n if ($this->object_action==\"add\") {\n unset ($this->object_new['mac_old'], $this->object_new['addressId']);\n }\n\t\t\t# reformat ip\n\t\t\tif (isset($this->object_old['ip_addr']))\t{ $this->object_old['ip_addr'] = $this->Subnets->transform_address ($this->object_old['ip_addr'],\"dotted\"); }\n\t\t\tif (isset($this->object_new['ip_addr']))\t{ $this->object_new['ip_addr'] = $this->Subnets->transform_address ($this->object_new['ip_addr'],\"dotted\"); }\n\n\t\t}\n\t\t# remove subnet fields\n\t\telseif($this->object_type == \"subnet\")\t{\n\t\t\t// remove unneeded values\n\t\t\tunset(\t$this->object_new['subnetId'],\n\t\t\t\t\t$this->object_new['location'],\n\t\t\t\t\t$this->object_new['vrfIdOld'],\n\t\t\t\t\t$this->object_new['permissions'],\n\t\t\t\t\t$this->object_new['state'],\n\t\t\t\t\t$this->object_new['sectionId'],\n\t\t\t\t\t$this->object_new['ip']\n\t\t\t\t);\n\t\t\tunset(\t$this->object_old['subnetId'],\n\t\t\t\t\t$this->object_old['location'],\n\t\t\t\t\t$this->object_old['vrfIdOld'],\n\t\t\t\t\t$this->object_old['permissions'],\n\t\t\t\t\t$this->object_old['state'],\n\t\t\t\t\t$this->object_old['sectionId'],\n\t\t\t\t\t$this->object_old['ip']\n\t\t\t\t);\n\n\t\t\t# if section does not change\n\t\t\tif($this->object_new['sectionId']==$this->object_new['sectionIdNew']) {\n\t\t\t\tunset(\t$this->object_new['sectionIdNew'],\n\t\t\t\t\t\t$this->object_new['sectionId'],\n\t\t\t\t\t\t$this->object_old['sectionId']);\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$this->object_old['sectionIdNew'] = $this->object_old['sectionId'];\n\t\t\t}\n\n\t\t\t//transform subnet to IP address format\n\t\t\tif(strlen($this->object_new['subnet'])>0) \t{ $this->object_new['subnet'] = $this->Subnets->transform_address ($this->object_new['subnet'], \"dotted\");}\n\t\t\tif(strlen($this->object_old['subnet'])>0) \t{ $this->object_old['subnet'] = $this->Subnets->transform_address ($this->object_old['subnet'], \"dotted\");}\n\n\t\t\t//remove subnet/mask for folders\n\t\t\tif (@$this->object_new['isFolder']==\"1\")\t{ unset($this->object_new['subnet'], $this->object_new['mask']); }\n\t\t\tif (@$this->object_old['isFolder']==\"1\")\t{ unset($this->object_old['subnet'], $this->object_old['mask']); }\n\t\t}\n\t\t# remove order fields\n\t\telseif($this->object_type == \"section\") {\n\t\t\tunset($this->object_old['order']);\n\t\t}\n\n\t\t# common\n\t\tunset($this->object_new['action']);\n\t\tunset($this->object_new['editDate'], $this->object_old['editDate']);\n\t\tunset($this->object_new['csrf_cookie']);\n\t}", "public function removeMultiValue($strName, $value)\r\n {\r\n // TODO: remove the value from the multi-value array\r\n }", "public function clearValues() {\n $this->checkNotStopped();\n $this->values = array();\n return $this;\n }", "protected function setDifferencesFromData()\n {\n $prev = false;\n\n foreach ($this->Data as $key => $value) {\n if ($prev === false) {\n unset($this->Data[$key]);\n } else {\n $this->Data[$key] = ($value - $prev);\n }\n\n $prev = $value;\n }\n }", "public function testImmutable(): void\n {\n //Value is empty\n $this->category->setCustomAttribute('custom_layout_update', false);\n $this->category->setOrigData('custom_layout_update', null);\n $this->attribute->beforeSave($this->category);\n\n //New value\n $this->category->setCustomAttribute('custom_layout_update', 'test');\n $this->category->setOrigData('custom_layout_update', null);\n $caughtException = false;\n try {\n $this->attribute->beforeSave($this->category);\n } catch (LocalizedException $exception) {\n $caughtException = true;\n }\n $this->assertTrue($caughtException);\n $this->category->setCustomAttribute('custom_layout_update', 'testNew');\n $this->category->setOrigData('custom_layout_update', 'test');\n $caughtException = false;\n try {\n $this->attribute->beforeSave($this->category);\n } catch (LocalizedException $exception) {\n $caughtException = true;\n }\n $this->assertTrue($caughtException);\n\n //Removing a value\n $this->category->setCustomAttribute('custom_layout_update', '');\n $this->category->setOrigData('custom_layout_update', 'test');\n $this->attribute->beforeSave($this->category);\n $this->assertNull($this->category->getCustomAttribute('custom_layout_update')->getValue());\n\n //Using old stored value\n //Saving old value 1st\n $this->recreateCategory();\n $this->category->setOrigData('custom_layout_update', 'test');\n $this->category->setData('custom_layout_update', 'test');\n $this->category->save();\n $this->recreateCategory();\n $this->category = $this->categoryFactory->create(['data' => $this->category->getData()]);\n\n //Trying the same value.\n $this->category->setData('custom_layout_update', 'test');\n $this->attribute->beforeSave($this->category);\n //Trying new value\n $this->category->setData('custom_layout_update', 'test2');\n $caughtException = false;\n try {\n $this->attribute->beforeSave($this->category);\n } catch (LocalizedException $exception) {\n $caughtException = true;\n }\n $this->assertTrue($caughtException);\n //Empty value\n $this->category->setData('custom_layout_update', null);\n $this->attribute->beforeSave($this->category);\n }", "function clear()\n \t{\n \t\tforeach ($this as &$value) \n \t\t $value = null;\n \t}", "public function __unset( string $name ) {\n\t\t$this->data = array_diff_key( $this->data, [ $name => $this->data[ $name ] ] );\n\t}", "protected function _purgeValue($value) {}", "public function clear() {\n $this->_attributes = [];\n return $this;\n }", "public function __unset($name) {\n\t\tif ($this->hasAttribute($name))\n\t\t\tunset($this->_attributes[$name]);\n\t\telse\n\t\t\tparent::__unset($name);\n\t}", "abstract protected function _restoreStandardValues();", "public function unpopulate();", "final public function purge($key) {\n\t\tunset($this->original[$key]);\n\n\t\tunset($this->attributes[$key]);\n\t}", "public function testRemoveValue()\n {\n $value = new \\stdClass();\n $this->generator->registerValue($value);\n $this->generator->removeValue($value);\n\n $registeredValues = iterator_to_array($this->generator->getWeightedValues());\n $this->assertEquals(0, count($registeredValues));\n }", "public function clean() {\n\t\tif ($this->_value) {\n\t\t\tforeach ($this->_value as $key => $value) {\n\t\t\t\tif (empty($value) && $value !== 0) {\n\t\t\t\t\tunset($this->_value[$key]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $this;\n\t}", "public function remove($value);", "public function beforeSave() {\r\n $data = $this->getData();\r\n\r\n if ($this->element) {\r\n $default = $this->element->getProperties();\r\n foreach ($data as $k => $prop) {\r\n if (array_key_exists($prop['name'],$default)) {\r\n if ($prop['value'] == $default[$prop['name']]) {\r\n unset($data[$k]);\r\n }\r\n }\r\n }\r\n }\r\n\r\n $this->setProperty('data', $data);\r\n\r\n return parent::beforeSave();\r\n }", "public function removeAttribute($attribute)\n {\n array_forget($this->attributes, $attribute);\n\n $this->update();\n }", "public function cleanUp()\n {\n $this->_value = null;\n }", "public function __clone()\n {\n $this->attribute = clone $this->attribute;\n $this->value = null;\n\n if ($this->isMultilingual()) {\n $this->attribute->delete(['unique', 'uniques']);\n\n $options = [];\n if (is_array($this->multilingual)) {\n $options = $this->multilingual;\n } elseif (true === $this->multilingual) {\n $options = $this->rules->getAttribute(null);\n// Translation input is not required\n unset($options['notnull']);\n } elseif (1 === $this->multilingual) {\n $options = $this->rules->getAttribute(null);\n } elseif (!is_numeric($this->multilingual)) {\n $options = ['rules' => $this->multilingual];\n }\n\n $this->setRule($options);\n }\n }", "public function unsetAttributeSet($index)\n {\n unset($this->attributeSet[$index]);\n }", "public function clearAttribs()\n {\n $this->attribs = [];\n return $this;\n }", "public function __unset($name)\n {\n if (array_key_exists($name, $this->_attributes)) {\n unset($this->_attributes[$name]);\n }\n }", "public function unsetValue($key);", "public function __unset($key)\n {\n unset($this->attributes[$key]);\n }", "public function __unset($key)\n {\n unset($this->attributes[$key]);\n }", "public function __unset($key)\n {\n unset($this->attributes[$key]);\n }", "public function __unset($key)\n {\n unset($this->attributes[$key]);\n }", "public function __unset($key)\n {\n unset($this->attributes[$key]);\n }", "public function removeAll () {\n\t\t$this->exchangeArray(array());\n\t}", "public function resetAttributeEdit()\n {\n $this->attributeCreateGroupId = null;\n $this->editAttributeId = null;\n $this->refreshGroups();\n }", "public function offsetUnset($key)\n {\n $this->attributes->forget($key);\n }", "private function unsetAll() {\n $ref = new ReflectionClass( $this );\n foreach ( $ref->getProperties() as $key => $value ) {\n $value = $value->getName();\n if ( in_array($value, array('_mysqlCharset', '_mysqlEngine', '_arraySplitChar', '_dbObject', '_singletonThis', '_dbConfig', '_lastQuery')) ) {\n continue;\n }\n\n $this->$value = NULL;\n }\n\n return $this;\n }", "function setRemoved( $value )\n {\n $this->Removed = $value;\n }", "public function unsetStringValue(): void\n {\n $this->stringValue = [];\n }", "public function unsetNumberValue(): void\n {\n $this->numberValue = [];\n }", "public function setOldAttributes($values)\n {\n $this->_oldAttributes = $values;\n }", "public function clearValues()\n {\n $this->_clearValues();\n\n return $this;\n }", "public function removeAttribute($name)\n {\n unset($this->attributes[$name]);\n }", "public function __destruct() {\n\t\t\tparent::__destruct();\n\t\t\tunset($this->value);\n\t\t}", "public function resetValue(){\n\t\t$this->_checked = array();\n\t\treturn $this ; //parent::resetValue();\n\t}", "function clearAttributes()\n {\n $this->arrRelations = array();\n return true;\n }", "public function unsetAttributes($names=null)\n {\n if($names===null)\n $names=$this->attributeLabels();\n foreach($names as $key => $name)\n $this->$key=null;\n }", "private function removeAttribute( $attr )\n {\n if (isset($this->attributeTypes[$attr]) || array_key_exists($attr, $this->attributeTypes))\n unset( $this->attributeTypes[$attr] ); // forma de remover un valor de un array...\n }", "public function __unset($name)\n\t{\n\t\tif ($field = $this->field($name, TRUE))\n\t\t{\n\t\t\t// We don't want to unset the keys, because \n\t\t\t// they are assumed to exist. Just set them back to defaults\n\t\t\t$this->_original[$field] = $this->meta()->defaults[$field];\n\t\t\t\n\t\t\t// Ensure changed and retrieved data is cleared\n\t\t\t// This effectively clears the cache and any changes\n\t\t\tif (array_key_exists($name, $this->_changed))\n\t\t\t{\n\t\t\t\tunset($this->_changed[$name]);\n\t\t\t}\n\t\t\t\n\t\t\tif (array_key_exists($name, $this->_retrieved))\n\t\t\t{\n\t\t\t\tunset($this->_retrieved[$name]);\n\t\t\t}\n\t\t}\n\t\t\n\t\t// This doesn't matter\n\t\tif (array_key_exists($name, $this->_unmapped))\n\t\t{\n\t\t\tunset($this->_unmapped[$name]);\n\t\t}\n\t}", "public function clearModified()\n\t{\n\t\t$this->_modified = array();\n\t}", "protected function clean() {\n if (isset($this->_value)) {\n $this->clearValue = floatval($this->_value);\n if ($this->clearValue === 0 && $this->_value !== 0) {\n $this->bTypeMissmatch = true;\n }\n } else {\n $this->clearValue = null;\n }\n \n return $this;\n }", "final public function remove(...$values):Main\\Map\n {\n $this->checkAllowed('remove');\n $return = $this->onPrepareThis('remove');\n $data =& $return->arr();\n $data = Base\\Arrs::valuesStrip($return->prepareValues(...$values),$data,$this->isSensitive());\n\n return $return->checkAfter();\n }", "public function clear()\n\t{\n\t\t$this->attrs = array();\n\t\treturn $this;\n\t}", "public function remove($name)\n {\n unset($this->values[$name]);\n\t}", "public function getUnchangedAttributes()\n {\n $output = array();\n\n foreach ($this->attributes as $name => $value) {\n if (!$this->hasChanged($name)) {\n $output[$name] = $value;\n }\n }\n\n return $output;\n }", "public function unsetAttributeValue(Model $product, Model $attributeInstance, $locale = null)\n {\n\n $attributeValues = AttributeValue::where('product_id', '=', $product->id)\n ->where('attribute_id', '=', $attributeInstance->id);\n\n // Delete Value locales\n if ($locale) {\n return AttributeValueTranslation::whereIn('translatable_id', array_pluck($attributeValues->get(), 'id'))\n ->where('locale', '=', $locale)\n ->delete();\n }\n\n // Delete Value\n return $attributeValues->delete();\n }", "public function remove_attribute(string $attribute){\n foreach($this -> attributes as $key => $value){\n if($value -> get_name() === $attribute){\n array_splice($this -> attributes, $key, 1);\n }\n }\n }", "public function remove_attribute($name)\n {\n }", "public function offsetUnset($key)\n\t{\n\t\tunset($this->attributes[$key]);\n\t}", "public function setUnmodified()\n {\n\t$this->modified= false;\n }", "public function reset()\n {\n $this->setData(array());\n $this->setOrigData();\n $this->_attributes = null;\n return $this;\n }", "public function withoutValue();", "public function copyAttributesToValues()\n\t{\n\t\tforeach( $this->values as $field=>$value )\n\t\t{\n\t\t\t$this->values[$field] = $this->$field ;\n\t\t}\n\t}", "public function clearEntity() {\n foreach ($this->entity as $key => &$entity)\n $this->entity[$key]['value'] = \"\";\n }", "public function resetValues(){\n $this->categoryFingerprints = null;\n //$this->threshold=35;\n\n }", "public function testRemoveOnNotExistingKeyWithValues()\n {\n $this->filter->value('test')->remove();\n\n $result = $this->filter->filter(['test2' => 'test']);\n\n $this->assertEquals(['test2' => 'test'], $result);\n }", "public function unsetSelectionUidValues(): void\n {\n $this->selectionUidValues = [];\n }", "public function offsetUnset($key)\n {\n unset($this->attributes[$key]);\n }", "public function remove($key)\r\n {\r\n unset($this->attributes[$key]);\r\n }", "public function removeAttribute(AttributeValueInterface $attribute);", "public function reset()\n {\n $this->values[self::_DIAMOND] = null;\n $this->values[self::_GUILDPOINT] = null;\n $this->values[self::_DPS] = null;\n $this->values[self::_OLD_DPS] = null;\n $this->values[self::_OLD_SUMMARY] = null;\n }", "public function reset()\n {\n $this->values[self::NAME] = null;\n $this->values[self::VALUE] = array();\n $this->values[self::OPTIONS] = null;\n $this->values[self::RESERVED_RANGE] = array();\n $this->values[self::RESERVED_NAME] = array();\n }", "public function removeAttribute($name) {\n\t\tif( isset($this->attributes[$name]) ) {\n\t\t\tunset($this->attributes[$name]);\n\t\t}\n\t\treturn $this;\n\t}", "static public function arrRmByVal($arr,$value=''){\n $arr = is_array($arr)?$arr:array();\n foreach ($arr as $k=>$v)\n {\n if ($v == $value)\n unset($arr[$k]);\n }\n return $arr;\n }", "public function unsetValue(&$node, $name, $asNode = false) {\n\t\tif ($asNode) {\n\t\t\t$domElement= $this->getChildNode($node, $name);\n\t\t\tif (!is_null($domElement)) {\n\t\t\t\t$node->removeChild($domElement);\n\t\t\t}\n\t\t} else {\n\t\t\t$node->removeAttribute($name);\n\t\t}\n\t}", "protected function unsetFields()\n\t{\n unset(\n $this['headshot_id'], $this['created_at'],\n $this['updated_at'], $this['slug']\n );\n\t}", "public function remove(mixed $value) {\n $this->items = array_filter($this->items, function ($var) use ($value) {\n return $var !== $value;\n });\n return $this;\n }", "public function afterSave()\r\n\t{\r\n\t\tif(count($this->serialAttributes)) {\r\n\t\t\tforeach($this->serialAttributes as $attribute) {\r\n\t\t\t\t$_att = $this->owner->$attribute;\r\n\t\t\t\tif(!empty($_att)\r\n\t\t\t\t && is_scalar($_att)) {\r\n\t\t\t\t\t$a = @unserialize($_att);\r\n\t\t\t\t\tif($a !== false) {\r\n\t\t\t\t\t\t$this->owner->$attribute = $a;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t$this->owner->$attribute = null;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\t\t\t\r\n\t\t}\r\n\t}", "public function cleanCopy();", "function clean() {\n\t\t$now = time();\n\t\tforeach($this->_cache as $key => $value) {\n\t\t\t// retain PRIVATE values\n\t\t\tif($value[1] == self::CACHE_PRIVATE) continue;\n\t\t\t// remove all other special values\n\t\t\tif($value[1] < 0) unset($this->_cache[$key]);\n\t\t\t// check timestamp for all positive values\n\t\t\tif($value[1] > 0 && $value[1] < $now) unset($this->_cache[$key]);\n\t\t}\n\t}", "public function reset() {\n $this->_values = array();\n return $this;\n }", "public function syncOriginalAttributes($attributes): Model\n {\n $attributes = is_array($attributes) ? $attributes : func_get_args();\n\n $modelAttributes = $this->getAttributes();\n\n foreach ($attributes as $attribute) {\n $this->original[$attribute] = $modelAttributes[$attribute];\n }\n\n return $this;\n }", "public function tear_down() {\n\t\tforeach ( static::$original_options as $option => $original_value ) {\n\t\t\tupdate_option( $option, $original_value );\n\t\t}\n\n\t\tparent::tear_down();\n\t}", "public function erase($data) {\n\t\tif ($this->_value) {\n\t\t\tforeach ($this->_value as $key => $value) {\n\t\t\t\tif ($value === $data) {\n\t\t\t\t\tunset($this->_value[$key]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $this;\n\t}", "abstract protected function propertyUnset($name);", "public function offsetUnset($offset)\n {\n unset($this->attributes[$offset]);\n }", "protected function _resetModifiedAttributesFlags() {\n\t\t$this->_modifiedAttributes = array();\n\t}", "public function unsetAll() {\n\t\tparent::unsetAll();\n\t}", "public function testMutableLoaderSetUnsetImmutable()\n {\n $immutable = $this->_mutableLoader->getImmutable();\n\n $this->_mutableLoader->setImmutable(!$immutable);\n $this->assertSame(!$immutable, $this->_mutableLoader->getImmutable());\n\n $this->_mutableLoader->setImmutable($immutable);\n $this->assertSame($immutable, $this->_mutableLoader->getImmutable());\n }" ]
[ "0.7013358", "0.6906962", "0.64505005", "0.6376942", "0.6218269", "0.6208184", "0.60579854", "0.5994707", "0.58820826", "0.58058906", "0.57008076", "0.5692144", "0.56817675", "0.5672253", "0.56201285", "0.56190056", "0.5601707", "0.55816555", "0.55816543", "0.5580539", "0.5578809", "0.5574769", "0.55682826", "0.55616575", "0.55525404", "0.55398786", "0.55343413", "0.55086315", "0.5497229", "0.5493828", "0.54844856", "0.5477594", "0.545344", "0.545027", "0.5440059", "0.5439185", "0.5437112", "0.5411059", "0.54010624", "0.5397109", "0.5397109", "0.5397109", "0.5397109", "0.5397109", "0.53818715", "0.5370425", "0.5366378", "0.535483", "0.535222", "0.53473574", "0.53452975", "0.5338825", "0.53331095", "0.5327624", "0.5325266", "0.5323639", "0.53223985", "0.5313304", "0.53119177", "0.53118515", "0.5299982", "0.52933764", "0.5293275", "0.52836674", "0.5258367", "0.5253826", "0.5252138", "0.5241552", "0.52321386", "0.5232006", "0.523194", "0.5231398", "0.5229991", "0.52292866", "0.5223324", "0.52220726", "0.52208763", "0.52191454", "0.52190465", "0.521504", "0.5211479", "0.5205938", "0.52018356", "0.5199269", "0.51922095", "0.5191672", "0.5184635", "0.5183805", "0.517991", "0.51787823", "0.5177549", "0.51703835", "0.5161924", "0.51539266", "0.51531786", "0.51417124", "0.5137416", "0.51371014", "0.51346546", "0.513075" ]
0.51722705
91
Create a new Eloquent query builder for the model.
public function newEloquentBuilder($query) { return new Builder($query); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function query(): Builder\n {\n $query = $this->make()->newQuery();\n\n // Loads the active model if set, for use in getOne(), update(), delete(), etc.\n if ($this->activeModelInstance) {\n $query->where(\n $this->activeModelInstance->getKeyName(),\n $this->activeModelInstance->getKey()\n );\n }\n\n return $query;\n }", "private function createQueryBuilder(): QueryBuilder\n {\n $queryBuilder = new QueryBuilder();\n $queryBuilder->table(($this->model)::TABLE);\n $this->applyCriteria($queryBuilder);\n $this->applyQueryBuilderUses($queryBuilder);\n return $queryBuilder;\n }", "public function newQuery(): Builder\n {\n return new static($this->connection);\n }", "public function query()\n {\n return new \\Rubberband\\Elastic\\Laravel\\Query\\Builder($this);\n }", "public function queryBuilder();", "public function queryBuilder();", "public function createQueryBuilder ()\r\n {\r\n return new QueryBuilder($this);\r\n }", "public function newQuery()\n {\n $builder = new Builder($this->newBaseQueryBuilder());\n\n $builder->setModel($this);\n\n return $builder;\n }", "public function newQuery()\n {\n return new Builder($this->connection, $this->processor);\n }", "public function newQuery() {\n return new Builder($this->connection);\n }", "public function newQuery()\n {\n $datasource = $this->getDatasource();\n\n $query = new Builder($datasource, $datasource->getPostProcessor());\n\n return $query->setModel($this);\n }", "public function queryBuilder()\n\t{\n\t\treturn \\ORM::for_table($this->table);\n\t}", "public function newEloquentBuilder($query);", "public function createQueryBuilder()\n {\n return new QueryBuilder($this->db);\n }", "protected function createQueryBuilder()\n {\n $builder = new QueryBuilder();\n return $builder;\n }", "public function query()\n {\n return new QueryBuilder(\n $this, $this->getQueryGrammar(), $this->getPostProcessor()\n );\n }", "public function query()\n {\n return new QueryBuilder(\n $this, $this->getQueryGrammar(), $this->getPostProcessor()\n );\n }", "public static function query()\n {\n QueryBuilder::$dataSource = true;\n\n return new QueryBuilder();\n }", "public function query()\n\t{\n\t\treturn new Builder(\n\t\t\t$this, $this->getQueryGrammar(), $this->getPostProcessor()\n\t\t);\n\t}", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n $builder = in_array(self::class, config('autocache.models'))\n ? \\LaravelAutoCache\\Builder::class\n : \\Illuminate\\Database\\Query\\Builder::class;\n\n return new $builder($connection, $connection->getQueryGrammar(), $connection->getPostProcessor());\n }", "public function newQueryWithoutScopes()\n {\n $builder = $this->newEloquentBuilder($this->newBaseQueryBuilder());\n\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n\n return $builder->setModel($this)\n //->setfillableColumns($this->fillable)\n ->with($this->with)\n ->withCount($this->withCount);\n }", "public function newQuery()\n {\n return new Builder($this->connection, $this->grammar, $this->processor);\n }", "public static function query()\n {\n // Create a new model instance for the query to ensure\n // that the model's initialize() method gets called.\n // Otherwise, the property definitions will be incomplete.\n $model = new static();\n\n return new Query($model);\n }", "public function newQueryWithoutScopes(): Builder\n {\n return $this->newModelQuery();\n }", "public function newEloquentBuilder($query)\n {\n return new QueryBuilder($query);\n }", "public function createQueryBuilder()\n {\n return new Query\\QueryBuilder($this);\n }", "public static function createQuery()\n\t{\n\t\treturn new ActiveQuery(['modelClass' => get_called_class()]);\n\t}", "public function query()\n {\n if ($model = $this->model) {\n return new $model();\n }\n }", "protected function query() {\n\t\treturn new Query($this);\n\t}", "public function newQueryBuilder()\n {\n return new Builder($this->config);\n }", "public static function create()\n {\n return new QueryConfigurationBuilder();\n }", "public function getQuery(): Builder;", "public function query(string $model): EloquentBuilder\n {\n $entity = str_replace(':', '\\\\Model\\\\', '\\\\' . $model);\n /** @var Model $entity */\n $entity = new $entity();\n\n return $entity->newQuery();\n }", "protected function retrieveOrCreateQueryInstance()\n {\n return $this->queryBuilder ?? $this->queryBuilder = new $this->model();\n }", "public function query(): QueryBuilder;", "public function newModelQuery();", "protected function createQuery()\n {\n return \\PropelQuery::from($this->class);\n }", "public function createQueryBuilder(): QueryBuilder\n {\n return new QueryBuilder($this->db, [\n 'separator' => \"\\n\"\n ]);\n }", "public function getBuilder()\n {\n $builder = new Query\\Builder($this->getKeys());\n $builder->setVisitors([\n new Visitors\\EqVisitor($builder),\n new Visitors\\NotEqVisitor($builder),\n new Visitors\\GtVisitor($builder),\n new Visitors\\GteVisitor($builder),\n new Visitors\\LtVisitor($builder),\n new Visitors\\LteVisitor($builder),\n new Visitors\\CtVisitor($builder),\n new Visitors\\SwVisitor($builder),\n new Visitors\\EwVisitor($builder),\n new Visitors\\AndVisitor($builder),\n new Visitors\\OrVisitor($builder),\n new Visitors\\NotInVisitor($builder),\n new Visitors\\InVisitor($builder),\n new Visitors\\NullVisitor($builder),\n new Visitors\\NotNullVisitor($builder),\n ]);\n\n return $builder;\n }", "public function build()\n {\n $query = $this->qb;\n if ($this->getWhereExpression()) {\n $query->where($this->getWhereExpression());\n }\n foreach ($this->getWhereParameters() as $key => $param) {\n $query->setParameter($key, $param, is_array($param) ? Connection::PARAM_STR_ARRAY : null);\n }\n\n return $query;\n }", "public function newQuery()\n {\n $builder = $this->newAlfrescoBuilder($this->getConnection());\n $builder->setModel($this);\n return $builder;\n }", "public function getCollectionQuery(): Builder;", "public static function query()\n {\n return (new static)->newQuery();\n }", "public static function query()\n {\n return (new static)->newQuery();\n }", "public function newModelQuery()\n {\n if (!$this->hasVersionJoin($builder = parent::newModelQuery(), $this->getVersionTable())) {\n $builder\n ->join(\n $this->getVersionTable(),\n function ($join) {\n $join->on($this->getQualifiedKeyName(), '=', $this->getQualifiedVersionTableForeignKeyName())\n ->on($this->getQualifiedVersionTableKeyName(), '=', $this->getQualifiedVersionKeyName());\n }\n )\n ->select(\n $this->defaultVersionSelect()\n );\n }\n\n return $builder;\n }", "protected function newBaseQueryBuilder()\n {\n $conn = $this->getConnection();\n\n $grammar = $conn->getQueryGrammar();\n\n $builder = new Builder($conn, $grammar, $conn->getPostProcessor());\n\n if (isset($this->rememberFor)) {\n $builder->remember($this->rememberFor);\n }\n\n if (isset($this->rememberCacheTag)) {\n $builder->cacheTags($this->rememberCacheTag);\n }\n\n //if (isset($this->rememberCachePrefix)) {\n //ToDo: see if using server_hostname or whatever speeds this up\n $tenant = app(\\Hyn\\Tenancy\\Environment::class)->tenant();\n if(isset($tenant->id)){\n $set_tenant = $tenant->id;\n }else{\n $set_tenant = \"default\";\n }\n $builder->prefix($set_tenant);\n //}\n\n if (isset($this->rememberCacheDriver)) {\n $builder->cacheDriver($this->rememberCacheDriver);\n }\n\n return $builder;\n }", "public function getSearchableEntitiesQuery(): \\Illuminate\\Database\\Eloquent\\Builder\n {\n return (new static())->orderBy($this->getKeyName());\n }", "public function query()\n {\n return new SingleStoreBuilder($this);\n }", "public function newEloquentBuilder($query) {\n\n\t\t\t// we resolve instance here using service container\n\t\t\t$ret = app(\\MehrIt\\LaraDbExt\\Eloquent\\Builder::class, [\n\t\t\t\t'query' => $query,\n\t\t\t]);\n\n\n\t\t\treturn $ret;\n\t\t}", "public function newEloquentBuilder($query)\n {\n $query->setModel($this);\n return new EloquentBuilder($query);\n }", "public function newQueryWithoutScopes()\n {\n $builder = $this->newBuilder();\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n return $builder->setModel($this);\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder($connection, $connection->getPostProcessor());\n }", "protected function newBaseQueryBuilder() {\n\n\n\t\t\t$connection = $this->getConnection();\n\n\n\t\t\t// we resolve instance here using service container\n\t\t\treturn app(\\MehrIt\\LaraDbExt\\Query\\Builder::class, [\n\t\t\t\t'connection' => $connection,\n\t\t\t]);\n\t\t}", "public function newQuery()\n {\n return new self($this->connection, $this->processor);\n }", "public function toBase() : QueryBuilder\n {\n return $this->applyScopes()->getQuery();\n }", "protected function newBaseQueryBuilder()\n {\n $conn = $this->getConnection();\n\n $grammar = $conn->getQueryGrammar();\n\n return new QueryBuilder($conn, $grammar, $conn->getPostProcessor());\n }", "protected function newBaseQueryBuilder()\n {\n return $this->getConnection()->query();\n }", "protected function baseQuery()\n {\n $model = $this->getModelNamespace();\n return App::make($model);\n }", "public function query(): AppointmentQueryBuilder\n {\n return new AppointmentQueryBuilder($this->client);\n }", "public function getQuery() : QueryBuilder\n {\n return $this->query;\n }", "public function newEloquentBuilder($query)\n {\n return new SoukaiBuilder($query);\n }", "public function getQueryBuilder();", "public function getQueryBuilder();", "public function newQuery($excludeDeleted = true)\n {\n $builder = new EloquentQueryBuilder($this->newBaseQueryBuilder());\n\n // Once we have the query builders, we will set the model instances so the\n // builder can easily access any information it may need from the model\n // while it is constructing and executing various queries against it.\n $builder->setModel($this)->with($this->with);\n\n if ($excludeDeleted and $this->softDelete) {\n $builder->whereNull($this->getQualifiedDeletedAtColumn());\n }\n\n return $builder;\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return new QueryBuilder(\n $connection,\n $connection->getQueryGrammar(),\n $connection->getPostProcessor()\n );\n }", "public function newEloquentBuilder($query)\n {\n\n $company = Company::getCurrent();\n\n if (auth()->guard('super-admin')->check() || ! isset($company->id)) {\n return new \\Illuminate\\Database\\Eloquent\\Builder($query);\n } else {\n return new \\Illuminate\\Database\\Eloquent\\Builder($query->where('cart_rules' . '.company_id', $company->id));\n }\n }", "protected function newBaseQueryBuilder()\n {\n $connection = $this->getConnection();\n\n return $connection->query();\n }", "public function newQuery()\n {\n return new self($this->connection, $this->grammar, $this->getProcessor());\n }", "public function build()\n {\n if (empty($this->tables)) {\n throw new \\InvalidArgumentException('Please define your tables first using the tables() method');\n }\n\n if (empty($this->fields)) {\n throw new \\InvalidArgumentException('Please define your fields first using the fields() method');\n }\n\n $tables = $this->getTableCollection();\n $usedTables = new TableCollection();\n\n $fields = $this->getFieldCollection();\n $columns = $this->columns ? $this->columns : array('*');\n\n $this->criteria->build(\n $this->builder,\n $tables,\n $usedTables,\n $fields,\n $columns\n );\n\n return $this->builder;\n }", "public function getDocumentBuilder()\n {\n return Document::query()\n ->where(function($query) {\n return $query->whereRaw($this->getExpandedQuery());\n });\n }", "public function newQuery()\n {\n return $this->model->newQueryWithoutScopes();\n }", "public function newEloquentBuilder($query)\n {\n return new StateBuilder($query);\n }", "public function newEloquentBuilder($query)\n {\n return new UserQuery($query);\n }", "protected function newBaseQueryBuilder() {\n\n $connection = $this->getConnection();\n\n return new Builder(\n $connection, $connection->getQueryGrammar(), $connection->getPostProcessor()\n );\n }", "public function getBuiltQb()\n {\n $qb = clone $this->qb;\n\n $this->setSelectFrom($qb);\n $this->setJoins($qb);\n $this->setWhere($qb);\n $this->setOrderBy($qb);\n $this->setLimit($qb);\n\n return $qb;\n }", "public function query(Floor $model): \\Illuminate\\Database\\Eloquent\\Builder\n {\n return $model->newQuery()\n ->with('manager')\n ->select('floors.*');\n }", "public function newEloquentBuilder($query)\n {\n return new DocumentQueryBuilder($query, $this->section);\n }", "public function getQueryBuilder(){\n return $this->getDatabaseConnection()->createQueryBuilder();\n }", "protected static function buildSelectionQuery() \n {\n return Query::select()->\n from(self::getTableName());\n }", "public function createQuery() {}", "public function createQuery() {}", "public function createQuery() {}", "public function createQuery() {}", "public static function get(): ModelSelectQuery\n {\n return container_resolve(ModelSelectQuery::class, [static::class]);\n }", "public function newEloquentBuilder($query)\n {\n return new BuilderEloquentEncrypt($query);\n }", "public function builder()\n {\n return new Builder($this);\n }", "protected function getTableQuery(): Builder\n {\n return parent::getTableQuery()->withoutDrafts();\n }", "public function newQuery()\n {\n $query = parent::newQuery();\n\n if ($this->usesTimestamps()) {\n $table = $this->getTable();\n $columns = ['*'];\n foreach ($this->getDates() as $dateColumn) {\n $columns[] = DB::raw(\"CONCAT($table.$dateColumn) AS $dateColumn\");\n }\n $query->addSelect($columns);\n }\n\n return $query;\n }", "protected function createCommandBuilder()\n\t{\n\t\treturn new CSqliteCommandBuilder($this);\n\t}", "public function createQuery()\n {\n $query = $this->persistenceManager->createQueryForType($this->objectType);\n if ($this->defaultOrderings !== []) {\n $query->setOrderings($this->defaultOrderings);\n }\n if ($this->defaultQuerySettings !== null) {\n $query->setQuerySettings(clone $this->defaultQuerySettings);\n }\n return $query;\n }", "public static function query()\n {\n $query = DB::table('LENDER as l')\n ->leftJoin('LENDER_TYPE as lt', 'l.LENDER_TYPE', 'lt.LENDER_TYPE')\n ->where('l.BRANCH_ID', 'IHTVN1')\n ->where('l.LENDER_DATE','>=','20190101')\n ->orderBy('l.LENDER_NO', 'desc');\n return $query;\n }", "protected function model()\n {\n $model = new $this->className;\n foreach ($this->conditions as $cond) {\n if (is_array($cond)) {\n if (count($cond) === 3) {\n // Convert to whereIn()\n if ($cond[1] === 'in') {\n $model = $model->whereIn($cond[0], $cond[2]);\n }\n // Typical 3 params where()\n else {\n $model = $model->where($cond[0], $cond[1], $cond[2]);\n }\n }\n elseif (count($cond) === 2) {\n // Typical 2 params where()\n $model = $model->where($cond[0], $cond[1]);\n }\n else {\n throw new \\Exception('Invalid number of parameters.');\n }\n }\n }\n $this->model = $model;\n return $this->model;\n }", "public function getQuery(): Query\n {\n $foreignModel = $this->foreignModel;\n $query = new Query(new $foreignModel());\n $this->initQuery($query);\n\n return $query;\n }", "public function getQueryBuilder(): SQLQueryBuilder;" ]
[ "0.7812014", "0.7673778", "0.76477104", "0.7640991", "0.7629449", "0.7629449", "0.7478559", "0.74548477", "0.74538374", "0.74299806", "0.74263126", "0.74049604", "0.73872346", "0.735143", "0.73255193", "0.7297392", "0.7297392", "0.72944134", "0.7292928", "0.7287084", "0.72831506", "0.7236373", "0.7232058", "0.7226704", "0.7217036", "0.72145647", "0.7175533", "0.7120499", "0.70934445", "0.709144", "0.7028931", "0.7003401", "0.69870406", "0.69555765", "0.69484574", "0.69465256", "0.6928136", "0.6860416", "0.6852525", "0.68336594", "0.68136764", "0.676553", "0.6762773", "0.6762773", "0.6750605", "0.6715652", "0.6696235", "0.6695941", "0.66796386", "0.6676985", "0.6672229", "0.6663264", "0.66552883", "0.6644996", "0.66389304", "0.6588428", "0.65723246", "0.6568371", "0.6557948", "0.6533522", "0.6532578", "0.65324026", "0.65324026", "0.6514605", "0.6475701", "0.6475701", "0.64631265", "0.6445439", "0.644488", "0.6440908", "0.64363396", "0.6384549", "0.6370298", "0.6365495", "0.63636816", "0.6362702", "0.6345072", "0.63258487", "0.63184154", "0.63157755", "0.62992513", "0.6296896", "0.6296896", "0.6296896", "0.62958544", "0.6280329", "0.6269973", "0.6261327", "0.6257992", "0.625479", "0.6253638", "0.62493795", "0.6247737", "0.6245249", "0.62441283", "0.62368053" ]
0.68896335
41
Handle dynamic method calls into the method.
public function __call($method, $parameters) { // Unset method if ($method == 'unset') { return call_user_func_array([$this, 'drop'], $parameters); } return parent::__call($method, $parameters); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function __call($method ,$params)\n {\n return self::handleCall($method ,$params);\n }", "abstract public function processMethod (ReflectionMethod $met, $className);", "public function processApi(){\r\n\t\t\t$service = explode(\"/\", $_GET['x']);\r\n\t\t\t$this->entity = ucfirst($service[0]);\r\n\t\t\t$this->methode = $service[1];\r\n\t\t\t$func = $this->methode.$this->entity;\r\n\t\t\t$this->addLog('--'.$this->methode.$this->entity);\r\n\t\t\tif((int)method_exists($this,$func) > 0)\r\n\t\t\t\t$this->$func();\r\n\t\t\telse\r\n\t\t\t\t$this->response('',404); // If the method not exist with in this class \"Page not found\".\r\n\t\t\t\t\r\n\t\t}", "public function processApi() {\n\n $func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['rquest'])));\n\n if ((int) method_exists($this, $func) > 0) {\n $this->$func();\n } else {\n $this->response('Method not Found', 404); // If the method not exist with in this class, response would be \"Page not found\".*/\n\t}\n\n }", "protected function handleMethod()\n {\n try {\n parent::$method = new ReflectionMethod(parent::$view->name, Request::$method);\n } catch(Exception $e) {\n self::jump(405);\n }\n }", "function processMethods( &$method, $key )\r\n{\r\n $method = $method->name;\r\n}", "public function handle($key,$method,$args){\n\n $instance = $this->with($key);\n\n $args = (!is_array($args)) ? Array() : array_values($args);\n switch (count($args)) {\n case 0:\n return $instance->$method();\n case 1:\n return $instance->$method($args[0]);\n case 2:\n return $instance->$method($args[0], $args[1]);\n case 3:\n return $instance->$method($args[0], $args[1], $args[2]);\n case 4:\n return $instance->$method($args[0], $args[1], $args[2], $args[3]);\n default:\n return call_user_func_array(array($instance, $method), $args);\n }//switch\n\n }", "protected function handle() {\n\t\t\t$arrHandlers = array(\n\t\t\t\t'latest'\t\t=> 'GetLatest',\n\t\t\t\t'filter'\t\t=> 'GetFiltered',\n\t\t\t\t'my'\t\t\t=> 'GetMine',\n\t\t\t\t\n\t\t\t\t'add'\t\t\t=> 'DoAdd',\n\t\t\t\t'delete'\t\t=> 'DoDelete'\n\t\t\t);\n\t\t\t\n\t\t\t$strSegment = str_replace('.' . $this->strFormat, '', $this->objUrl->getSegment(2));\n\t\t\tif (!empty($arrHandlers[$strSegment])) {\n\t\t\t\t$strMethod = $this->strMethodPrefix . $arrHandlers[$strSegment];\n\t\t\t\t$this->$strMethod();\n\t\t\t} else {\n\t\t\t\tparent::handle();\n\t\t\t}\n\t\t}", "private function _callControllerMethod()\n\t{\n\t\t$length=count($this->_url);\n\t\t//Make sure the method we are calling exists\n\t\tif($length>1){\n\t\t\tif (!method_exists($this->_controller, $this->_url[1])) {\n\t\t\t\t$this->_error();\n\t\t\t}\n\t\t}\t\n\t\t\n\t\t//Determine what to load\n\t\tswitch($length){\n\t\t\tcase 5:\n\t\t\t\t//Controoller->Method(param1,param2,param3)\n\t\t\t\t$this->_controller->{$this->_url[1]}($this->_url[2],$this->_url[3],$this->_url[4]);\n\t\t\t\tbreak;\n\t\t\tcase 4:\n\t\t\t\t//Controoller->Method(param1,param2)\n\t\t\t\t$this->_controller->{$this->_url[1]}($this->_url[2],$this->_url[3]);\n\t\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\t\t//Controoller->Method(param1)\n\t\t\t\t$this->_controller->{$this->_url[1]}($this->_url[2]);\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\t//Controoller->Method()\n\t\t\t\t$this->_controller->{$this->_url[1]}();\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$this->_controller->index();\n\t\t\t\tbreak;\t\t\t\t\n\t\t\t\n\t\t}\t\t\n\t\t// calling methods\n\t\t\n\t\t\n\t\t\t\n\t}", "public function processApi() {\n if (isset($_REQUEST['x']) && $_REQUEST['x'] != \"\") {\n $func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['x'])));\n if ((int)method_exists($this, $func) > 0) {\n $this->$func();\n } else {\n echo 'method not exist';\n exit;\n }\n } else {\n echo 'method not exist';\n exit;\n }\n }", "public function processApi() {\n $func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['request'])));\n if ((int) method_exists($this, $func) > 0)\n $this->$func();\n else\n $this->response('', 404); // If the method not exist with in this class, response would be \"Page not found\".\n }", "public function processApi(){\n\t\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['value'])));\n\t\t\tif((int)method_exists($this,$func) > 0)\n\t\t\t\t$this->$func();\n\t\t\telse\n\t\t\t\t$this->response('',404);\t\t\t\t// If the method not exist with in this class, response would be \"Page not found\".\n\t\t}", "public function __call($method, $args);", "public function callReflectHandler($msg) {\n \n // Check on valid params\n if (0 == strlen($msg->getMethod())) {\n throw new IllegalArgumentException('No method name passed.');\n }\n\n // Create message from request data\n $class= XPClass::forName($this->package.'.'.ucfirst($msg->getHandlerClass()).'Handler');\n\n // Check if method can be handled\n if (!$class->hasMethod($msg->getMethod())) {\n throw new IllegalArgumentException(\n $class->getName().' cannot handle method '.$msg->getMethod()\n );\n }\n\n with ($method= $class->getMethod($msg->getMethod())); {\n\n // Check if this method is a webmethod\n if (!$method->hasAnnotation('webmethod')) {\n throw new IllegalAccessException('Cannot access non-web method '.$msg->getMethod());\n }\n \n // Create instance and invoke method\n $inst= $class->newInstance();\n if ($this->cat && is('util.log.Traceable', $inst)) $inst->setTrace($this->cat);\n return $method->invoke($inst, $msg->getData());\n }\n }", "public function __call($method, $parameters);", "public function __call($method, $arguments) {}", "public function __call($method, $arguments) {}", "private function _callControllerMethod()\r\n {\r\n \r\n \r\n $length = count($this->_url);\r\n if($length > 1)\r\n {\r\n if(!method_exists($this->_controller, $this->_url[1]))\r\n {\r\n $this->_error();\r\n }\r\n }\r\n switch ($length) {\r\n case 5:\r\n //controller->method(param1,param2,param3)\r\n $this->_controller->{$this->_url[1]}($this->_url[2],$this->_url[3],$this->_url[4]);\r\n break;\r\n case 4:\r\n //controller->method(param1,param2)\r\n $this->_controller->{$this->_url[1]}($this->_url[2],$this->_url[3]);\r\n\r\n break;\r\n case 3:\r\n //controller->method(param1)\r\n $this->_controller->{$this->_url[1]}($this->_url[2]);\r\n\r\n break;\r\n case 2:\r\n\r\n //controller->method(param1,param2,param3)\r\n $this->_controller->{$this->_url[1]}();\r\n break;\r\n \r\n default:\r\n $this->_controller->index();\r\n break;\r\n }\r\n\r\n }", "public function processApi()\n {\n $data = array('404'=>'requested method not available');\n $func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['mode'])));\n if((int)method_exists($this,$func) > 0)\n $this->$func();\n else\n $this->response($this->json($data),'404');\n // If the method not exist with in this class, response would be \"Page not found\".\n }", "private function _callControllerMethod()\n {\n $length = count($this->_url);\n\n // Make sure the method we are calling exists\n if ($length > 1) {\n if (!method_exists($this->_controller, $this->_url[1])) {\n //! error\n }\n }\n //var_dump($this->_controller);\n // Determine what to load\n switch ($length) {\n /*case 3:\n //Controller->Method(Param1, Param2)\n $this->_controller->{$this->_url[1]}($this->_url[2]);\n break;\n*/\n case 2:\n //Controller->Method(Param1, Param2)\n //$this->_controller->{$this->_url[1]}();\n $this->_controller->index($this->_url[1]);\n break;\n\n default:\n $this->_controller->index();\n break;\n }\n }", "private function _callToDefault()\n {\n foreach (get_class_methods($this) as $method) {\n try {\n $that = new ReflectionMethod($this, $method);\n } catch (ReflectionException $exception) {\n break;\n }\n if (\n $that->isProtected()\n && !array_key_exists($method, $this->query())\n ) {\n $this->{$method}($this->builder);\n }\n }\n }", "public function processApi()\n {\n\n $func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['x'])));\n if ((int) method_exists($this, $func) > 0) {\n $this->$func();\n }\n else {\n $this->response('', 404);\n }\n }", "public function processApi(){\n\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['rquest'])));\n\t\tif((int)method_exists($this,$func) > 0)\n\t\t\t$this->$func();\n\t\telse\n\t\t\t$this->response('',404);\t// If the method not exist with in this class, response would be \"Page not found\".\n\t}", "abstract protected function setMethod();", "public function processApi()\n {\n $func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['mode'])));\n if((int)method_exists($this,$func) > 0)\n {\n $this->$func();\n } \n else\n {\n $data = array('code' => \"404\", 'status' => \"failure\", \"msg\" => \"requested method not available\", \"data\" => array());\n $this->response($this->json($data)); \n }\n \n // If the method not exist with in this class, response would be \"Page not found\".\n }", "public function processApi(){\n\t\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['x'])));\n//echo $func;\t\n\t\t\tif((int)method_exists($this,$func) > 0)\n\t\t\t\t$this->$func();\n\t\t\telse\n\t\t\t\t$this->response('',404); // If the method not exist with in this class \"Page not found\".\n\t\t}", "public function processApi(){\n\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['x'])));\n\tif((int)method_exists($this,$func) > 0)\n\t\t$this->$func();\n\telse\n\t\t$this->response('',404); // If the method not exist with in this class \"Page not found\".\n}", "public function __call($method, array $arguments) {}", "public function processApi(){\n $func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['rquest'])));\n if((int)method_exists($this,$func) > 0)\n $this->$func();\n else\n $this->response('',404);\t\t\t\t// If the method not exist with in this class, response would be \"Page not found\".\n }", "public function processApi(){\n\t\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['rquest'])));\n\t\t\tif((int)method_exists($this,$func) > 0)\n\t\t\t\t$this->$func();\n\t\t\telse\n\t\t\t\t$this->response('',404);\t\t\t\t// If the method not exist with in this class, response would be \"Page not found\".\n\t\t}", "public function getMethod() {}", "public function getMethod() {}", "public function getMethod() {}", "public function getMethod() {}", "public function processApi() {\n\t\t$func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['rquest'])));\n\t\tif ((int) method_exists($this, $func) > 0)\n\t\t\t$this -> $func();\n\t\telse\n\t\t\t$this -> response('', 404);\n\t\t// If the method not exist with in this class, response would be \"Page not found\".\n\t}", "public function processApi() {\n\t\t$func = strtolower(trim(str_replace(\"/\", \"\", $_REQUEST['rquest'])));\n\t\tif ((int) method_exists($this, $func) > 0)\n\t\t\t$this -> $func();\n\t\telse\n\t\t\t$this -> response('', 404);\n\t\t// If the method not exist with in this class, response would be \"Page not found\".\n\t}", "private function callControllerMethod() {\r\n\t\ttry {\r\n\t\t\t\r\n\t\t\tif (isset($this->url[1])) {\r\n\t\t\t\tif (method_exists($this->controller, $this->url[1])) {\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t$parameters = array();\r\n\t\t\t\t\tfor ($i = 2; $i < count($this->url); $i++)\r\n\t\t\t\t\t\tarray_push($parameters, $this->url[$i]);\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t$countParam = count($parameters);\r\n\t\t\t\t\t\r\n\t\t\t\t\tif ($countParam == 0)\r\n\t\t\t\t\t\t$this->controller->{$this->url[1]}();\r\n\t\t\t\t\telse if ($countParam == 1)\r\n\t\t\t\t\t\t$this->controller->{$this->url[1]}($parameters[0]);\r\n\t\t\t\t\telse\r\n\t\t\t\t\t\t$this->controller->{$this->url[1]}($parameters);\r\n\t\t\t\t\t\t\r\n\t\t\t\t} else { //Method not found.\r\n\t\t\t\t\t$this->error();\r\n\t\t\t\t}\r\n\t\t\t\r\n\t\t\t} else { //No method is specified.\r\n\t\t\t\t$this->controller->index(); \r\n\t\t\t}\r\n\t\t\t\t\t\r\n\t\t} catch (QueryException $e) {\r\n\t\t\t$this->error($e->getMessage() . \" ( \" . $e->getFile() . \": line \" . $e->getLine() . \")\");\r\n\t\t\t\r\n\t\t} catch (Exception $e) {\r\n\t\t\t$msg = $e->getMessage();\r\n\t\t\tif ($msg == \"\")\r\n\t\t\t\t$msg = \"An error occuring during execution\";\r\n\t\t\t\r\n\t\t\t$this->error($msg . \" ( \" . $e->getFile() . \": line \" . $e->getLine() . \")\");\r\n\t\t}\r\n\t}", "public function processApi(){\n\t\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['x'])));\n\t\t\tif((int)method_exists($this,$func) > 0) {\n $this->$func();\n }\n\t\t\telse {\n $this->response('',404); // If the method not exist with in this class \"Page not found\". \n }\n\t\t\t\t\n\t\t}", "function getMethod()\r\n {\r\n }", "protected abstract function internalCall($params, $requestMethod = 'GET');", "public function handleWebhook()\n {\n $payload = (array) json_decode(Request::getContent(), true);\n \n $method = 'handle'.studly_case(str_replace('.', '_', $payload['type']));\n \n if (method_exists($this, $method)) {\n return $this->{$method}($payload);\n }\n else {\n return $this->missingMethod();\n }\n }", "public function __callIntern($methodName);", "public function __call(string $method, array $parameters);", "public function processApi(){\n\t\t$words = explode(\"/\",$_REQUEST['rquest']);\n\t\t$func = strtolower(trim(str_replace(\"/\",\"\",$words[0])));\n\t\t\n \t\tif(strcmp(\"services\",$func) == 0)\n\t\t\t$this->$func($words[1],$words[2]);\t// you can set as many levels as you want\n\t\telse\n\t\t\t$this->response('',404);\t// response would be \"Page not found\"\n\t}", "public function __call($method, $arguments);", "function invoke($method) {\r\n $this->_invoker->invoke($method);\r\n }", "public function processApi() {\n $func = strtolower(trim(str_replace(\"/\",\"\",$_REQUEST['x'])));\n if((int)method_exists($this, $func) > 0)\n $this->$func();\n else\n $this->response('',404);\n }", "public function processApi(){\n\t\tif(isset($_REQUEST['x']) && $_REQUEST['x']!=\"\"){\n\t\t\t$func = strtolower(trim(str_replace(\"/\",\"\", $_REQUEST['x'])));\n\t\t\tif((int)method_exists($this,$func) > 0) {\n\t\t\t\t$this->$func();\n\t\t\t} else {\n\t\t\t\techo 'processApi - method not exist';\n\t\t\t\texit;\n\t\t\t}\n\t\t} else {\n\t\t\techo 'processApi - method not exist';\n\t\t\texit;\n\t\t}\n\t}", "protected function invokeParserMethod()\n\t{\n\t\t$http_method = ucfirst(strtolower($this->request->getMethod()));\n\t\t$method = \"parse{$http_method}Response\";\n\t\t\n\t\tif (method_exists($this, $method)) {\n\t\t\treturn $this->{$method}();\n\t\t}\n\t}", "public function call($method, $params = array());", "protected function callCommandMethod() {}", "public function getMethod();", "public function getMethod();", "public function getMethod();", "public function getMethod();", "public function getMethod();", "public function getMethod();", "public function getMethod();", "public function __call(string $method, array $args): mixed;", "public function getMethod()\n {\n }", "private static function callMethod($calledMethod)\n {\n $classMethodArray = explode(\"@\",$calledMethod);\n $class = $classMethodArray[0];\n $method = $classMethodArray[1];\n $controller = new $class;\n if(self::$parameters) {\n $controller->$method(self::$parameters);\n } else {\n $controller->$method(); \n }\n }", "private function invoke( $request ) {\n\t\t// if the method requested is available\n\t\tif ( isset( $this->method_map[$request->method] ) ) {\n\t\t\ttry {\n\t\t\t\t// reflect the global function or method\n\t\t\t\t$name = $this->method_map[$request->method];\n\t\t\t\tif ( is_array( $name ) ) {\n\t\t\t\t\t$reflection = new ReflectionMethod ( $name[0], $name[1] );\n\t\t\t\t\t$object = is_object( $name[0] ) ? $name[0] : null;\n\t\t\t\t} elseif ( strpos( $name, '::' ) ) {\n\t\t\t\t\tlist( $class, $method ) = explode( '::', $name, 2 );\n\t\t\t\t\t$reflection = new ReflectionMethod ( $class, $method );\n\t\t\t\t\t$object = null;\n\t\t\t\t} else {\n\t\t\t\t\t$reflection = new ReflectionFunction ( $name );\n\t\t\t\t\t$object = false;\n\t\t\t\t}\n\n\t\t\t\t// check the parameters in the reflection against what was sent in the request\n\t\t\t\t$params = $this->checkParams( $reflection->getParameters(), $request->params );\n\n\t\t\t\tif ( $object === false )\n\t\t\t\t\t$result = $reflection->invokeArgs( $params );\n\t\t\t\telse\n\t\t\t\t\t$result = $reflection->invokeArgs( $object, $params );\n\n\t\t\t\t// return the result as an invoked call\n\t\t\t\treturn (object) array( 'result' => $result );\n\t\t\t} catch ( Exception $e ) {\n\t\t\t\t// if anything abnormal happened, capture the error code thrown\n\t\t\t\t$error = $e->getMessage();\n\t\t\t}\n\t\t}\n\t\t// by this point, all we have is errors\n\t\treturn jsonrpc2::error( isset($error) ? $error : -32601 );\n\t}", "protected function callActionMethod() {}", "function __call($fn, $param){\n //if method exists\n \n $run = apply_filters(\"WXP.{$this->handle}.{$fn}.allow\", true, $this, $param);\n \n if($run !== false){\n \n //give an error if the method does not exist, and \n //method call is allowed\n \n if(!method_exists($this->object, $fn)){\n throw new \\BadMethodCallException(\"Call to undefined method {$this->handle}::{$fn}\");\n }\n \n //if method does exist do .before action\n \n do_action(\"WXP.{$this->handle}.{$fn}.before\", $this, $param);\n \n //now call method and apply filters to the result\n \n $result = call_user_func_array(array($this->object, $fn), $param);\n \n $result = apply_filters(\"WXP.{$this->handle}.{$fn}.result\", $result, $this, $param);\n \n //finally do .after action, (passing the result and object)\n \n do_action(\"WXP.{$this->handle}.{$fn}.after\", $result, $this, $param);\n \n //return result\n \n return $result;\n } else {\n //use filter to determine what is returned when \n //run call for this object is disallowed, by default null is\n //returned; but this might cause an error if a different\n //value (like an object) is expected\n \n return apply_filters(\"WXP.{$this->handle}.{$fn}.disallow.return\", null, $this, $param);\n }\n \n }", "function __call($method, $arguments)\r\n\t{\r\n\t\t// List of watched method names\r\n\t\t$watched_methods = array('get_by_related_', 'get_by_related', 'get_by_', '_related_', '_related');\r\n\r\n\t\tforeach ($watched_methods as $watched_method)\r\n\t\t{\r\n\t\t\t// See if called method is a watched method\r\n\t\t\tif (strpos($method, $watched_method) !== FALSE)\r\n\t\t\t{\r\n\t\t\t\t$pieces = explode($watched_method, $method);\r\n\r\n\t\t\t\tif ( ! empty($pieces[0]) && ! empty($pieces[1]))\r\n\t\t\t\t{\r\n\t\t\t\t\t// Watched method is in the middle\r\n\t\t\t\t\treturn $this->{'_' . trim($watched_method, '_')}($pieces[0], array_merge(array($pieces[1]), $arguments));\r\n\t\t\t\t}\r\n\t\t\t\telse\r\n\t\t\t\t{\r\n\t\t\t\t\t// Watched method is a prefix or suffix\r\n\t\t\t\t\treturn $this->{'_' . trim($watched_method, '_')}(str_replace($watched_method, '', $method), $arguments);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}", "protected function callHandlers()\n {\n // Iterate handlers and run them\n foreach ($this->handlers as $i => $handler) {\n // Create handler params array with first parameter pointing to this query object\n $params = array(& $this);\n\n // Combine params with existing ones in one array\n $params = array_merge($params, $this->params[$i]);\n\n // Execute handler\n call_user_func_array($handler, $params);\n }\n }", "private function veriFyMethodOnUrl()\n {\n if ($this->urlParameters && array_key_exists(1, $this->urlParameters)) {\n $this->method = $this->urlParameters[1];\n $nameAndAliases = $this->urlParameters;\n array_shift($nameAndAliases);\n $nameAndAliases = implode('/', $nameAndAliases);\n $this->methodNameAliases = $nameAndAliases;\n }\n }", "public function get_method()\n {\n }", "public function invoke_method() {\n\t\t$this->logger->debug('Incoming soap request, methodname=' . $this->methodname . ' methodURI=' . $this->methodURI . ' SOAPAction=' . $this->SOAPAction);\n\n\t\tif ($this->wsdl) {\n\t\t\tif ($this->opData = $this->wsdl->getOperationData($this->methodname)) {\n\t\t\t} elseif ($this->opData = $this->wsdl->getOperationDataForSoapAction($this->SOAPAction)) {\n\t\t\t\t// Note: hopefully this case will only be used for doc/lit, since rpc services should have wrapper element\n\t\t\t\t$this->methodname = $this->opData['name'];\n\t\t\t} else {\n\t\t\t\t$this->logger->debug('No WSDL for operation=' . $this->methodname);\n\t\t\t\t$this->fault('SOAP-ENV:Client', \"Operation '\" . $this->methodname . \"' is not defined in the WSDL for this service\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t} else {\n\t\t\t$this->logger->debug('No WSDL to validate method');\n\t\t}\n\n\t\t$class = '';\n\t\t$method = '';\n\t\tforeach($this->webMethods as $webmethod)\n\t\t{\n\t\t\tif($webmethod->getMethod() == $this->methodname)\n\t\t\t{\n\t\t\t\t$this->logger->debug(\"setting method to \".$this->methodname);\n\t\t\t\t$this->logger->debug(\"Setting class to \".$webmethod->getClass());\n\t\t\t\t$method = $this->methodname;\n\t\t\t\t$class = $webmethod->getClass();\n\t\t\t}\n\t\t}\n\n\t\t// does method exist?\n\t\tif ($class == '') {\n\t\t\tif (!function_exists($this->methodname)) {\n\t\t\t\t$this->logger->debug(\"Function '$this->methodname' not found!\");\n\t\t\t\t$this->result = 'fault: method not found';\n\t\t\t\t$this->fault('SOAP-ENV:Client',\"method '$this->methodname' not defined in service\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t} else {\n\t\t\t$method_to_compare = $method;\n\t\t\tif (!in_array($method_to_compare, get_class_methods($class))) {\n\t\t\t\t$this->logger->debug(\"Method '$this->methodname' not found in class '$class'!\");\n\t\t\t\t$this->result = 'fault: method not found';\n\t\t\t\t$this->fault('SOAP-ENV:Client',\"method '$this->methodname' not defined in service\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t// evaluate message, getting back parameters\n\t\t// verify that request parameters match the method's signature\n\t\tif(! $this->verify_method($this->methodname,$this->methodparams)){\n\t\t\t// debug\n\t\t\t$this->logger->debug('ERROR: request not verified against method signature');\n\t\t\t$this->result = 'fault: request failed validation against method signature';\n\t\t\t// return fault\n\t\t\t$this->fault('SOAP-ENV:Client',\"Operation '$this->methodname' not defined in service.\");\n\t\t\treturn;\n\t\t}\n\n\t\t// if there are parameters to pass\n\t\t$this->logger->debug('Parsed method params:'.print_r($this->methodparams,true));\n\t\t$this->logger->debug(\"Calling '$this->methodname'\");\n\n\t\t\t\t$instance = new $class ();\n\t\t\t\t$call_arg = array(&$instance, $method);\n\n\t\t\tif (is_array($this->methodparams)) {\n\t\t\t\t$this->methodreturn = call_user_func_array($call_arg, array_values($this->methodparams));\n\t\t\t} else {\n\t\t\t\t$this->methodreturn = call_user_func_array($call_arg, array());\n\t\t\t} \n\t\t$this->logger->debug(\"Called method $this->methodname, received data of type \".gettype($this->methodreturn));\n\t\t$this->logger->debug('Methodreturn:'.print_r($this->methodreturn,true));\n\t}", "protected function handle()\n {\n $prefix = $this->restful ? \\Phork::router()->getMethod() : $this->prefix;\n $segment = str_replace('.'.$this->format, '', $this->router->getSegment($this->segment));\n \n if (method_exists($this, $method = $prefix.ucfirst($segment))) {\n call_user_func_array(array($this, $method), array_slice(\\Phork::router()->getSegments(), $this->segment + 1));\n } else {\n throw new \\ApiException(\\Phork::language()->translate('Invalid API method'), 400);\n }\n }", "public function processApi(){\n\t\t\t$func = explode('/', trim($_SERVER['PATH_INFO'],'/'))[0];\n\n\t\t\t$good = false;\n\t\t\tforeach ($this->AUTHORIZED_FUNCTION as $authorizedFunc){\n\t\t\t\tif($authorizedFunc == $func){\n\t\t\t\t\t$good = true;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(! $good) $this->response('', 404);\n\n\t\t\tif((int)method_exists($this,$func) > 0)\n\t\t\t\t$this->$func();\n\t\t\telse\n\t\t\t\t$this->sendMessage('', 404);\n\t\t}", "public static function invoke() {\n\t\tswitch ($_SERVER['REQUEST_METHOD']) {\n\t\t\tcase 'POST': \n\t\t\t\tstatic::post();\n\t\t\t\tbreak;\n\t\t\tcase 'PUT':\n\t\t\t\tstatic::put();\n\t\t\t\tbreak;\n\t\t\tcase 'DELETE':\n\t\t\t\tstatic::delete();\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tstatic::get();\n\t\t\t\tbreak;\n\t\t}\n\t}", "function callByFiled($method = NULL, $value = NULL)\n {\n if (($field = str_replace(\"findallby\", \"\", strtolower($method))) != strtolower($method)) {\n return $this->findAll(\"$field = '$value'\");\n }\n else if (($field = str_replace(\"findby\", \"\", strtolower($method))) != strtolower($method)) {\n $data = $this->find(\"$field = '$value'\");\n return $data;\n }\n else if (($field = str_replace(\"deleteby\", \"\", strtolower($method))) != strtolower($method)) {\n $data = $this->delete(\"$field = '$value'\");\n return $data;\n }\n else {\n show_debug(\" Model: Invalid call of $method\", \"1+2\");\n }\n }", "public function invoke();", "public function call()\n {\n foreach (config('lucy.crud') as $type) {\n if ($this->builder->getAttribute($type)) {\n $method = 'call'.ucfirst(strtolower($type));\n\n $this->{$method}();\n }\n }\n }", "private function _handleMethod($serverRequest) {\n\t\t$this->_verifyAllowedMethod($serverRequest->getMethod());\n\t\t\n\t\tswitch ($serverRequest->getMethod()) {\n\t\t\tcase 'GET':\n\t\t\t\treturn $this->_get($serverRequest);\n\t\t\tcase 'HEAD':\n\t\t\t\treturn $this->_head($serverRequest);\n\t\t\tcase 'POST':\n\t\t\t\treturn $this->_post($serverRequest);\n\t\t\tcase 'PUT':\n\t\t\t\treturn $this->_put($serverRequest);\n\t\t\tcase 'DELETE':\n\t\t\t\treturn $this->_delete();\n\t\t\tcase 'OPTIONS':\n\t\t\t\treturn $this->_options($serverRequest);\n\t\t\tdefault:\n\t\t\t\treturn new Response(501);\n\t\t}\n\t}", "public function get_method();", "function __call($method, $args=[])\n {\n \tcall_user_func_array($this->container[$method], $args);\n }", "public function __invoke();", "public function __invoke();", "public function __invoke();", "public function __invoke();", "function __call($name, $arguments) {\r\n\t\t// Not found in our collection\r\n\t\tif (empty($this->methodCollection[$name])) {\r\n\t\t\treturn parent::__call($name, $arguments);\r\n\t\t}\r\n\t\t// We call the method found in one of the helpers\r\n\t\treturn call_user_func_array(array(&$this->{$this->methodCollection[$name]}, $name), $arguments);\r\n\t}", "public function __call($method, $message)\n {\n }", "abstract public function __invoke(): void;", "public function __call(string $method, array $arguments)\n {\n // handle calls to property binding and extraction\n if (method_exists($this->propertyHandler, $method)) {\n return $this->propertyHandler->$method(...$arguments);\n }\n // handle dynamic calls to relations\n if (schema(static::class)->relations()->exists($method)) {\n return $this->relationHandler->handle($method);\n }\n }", "protected function invokeHandler(TaskHandlerInterface $handler, $method) {\n\t\t\n\t\t$params = array();\n\t\t$reflection = new ReflectionMethod($handler, $method);\n\t\t\n\t\tforeach($reflection->getParameters() as $i => $param) {\n\t\t\t\n\t\t\t$name = $param->getName();\n\t\t\t\n\t\t\tif ($this->request->hasArg($name)) {\n\t\t\t\t$params[$name] = $this->request->getArg($name);\n\t\t\t} else if ($this->request->hasArg($i)) {\n\t\t\t\t$params[$name] = $this->request->getArg($i);\n\t\t\t} else if ($param->isDefaultValueAvailable()) {\n\t\t\t\t$params[$name] = $param->getDefaultValue();\n\t\t\t} else {\n\t\t\t\tthrow new Exception(\"Missing parameter '$name'.\");\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $reflection->invokeArgs($handler, $params);\n\t}", "protected function executeDynamicMethod($methodNamePattern, array $arguments = array())\n {\n $methodName = str_replace('<EntityName>', $this->entity['name'], $methodNamePattern);\n if (!is_callable(array($this, $methodName))) {\n $methodName = str_replace('<EntityName>', '', $methodNamePattern);\n }\n\n return call_user_func_array(array($this, $methodName), $arguments);\n }", "public function __call(string $method, $arguments = null) {}", "public function __call(string $method, $arguments = null) {}", "private function handleCall() { //$this->request\n $err = FALSE;\n // route call to method\n $this->logToFile($this->request['action']);\n switch($this->request['action']) {\n // Edit form submitted\n case \"edit\":\n // TODO: improve error handling\n try {\n $this->logToFile(\"case: edit\");\n $this->edit($this->request['filename']);\n //$this->save();\n } catch (Exception $e) {\n $err = \"Something went wrong: \";\n $err .= $e.getMessage();\n }\n break;\n }\n // TODO: set error var in response in case of exception / error\n // send JSON response\n if($err !== FALSE) {\n $this->request['error_msg'] = $err;\n }\n $this->giveJSONResponse($this->request);\n }", "protected function __callHook($method, array & $arguments)\n { }", "protected function _callSmartyMethods()\n\t{\n foreach ($this->_smartyMethods as $methodName => $call) {\n\t\t\tforeach ($call as $args) {\n\t\t\t\t$this->_setSmartyMethod($methodName, $args);\n\t\t\t}\n }\n\t\tunset($this->_smartyMethods);\n\t}", "function execute(){\n $method = strtolower( $this->getRequest()->getMethod() );\n\n if( !method_exists( $this, $method ) )\n throw new RoutingException( \"Controller not implement {$method} method.\" );\n\n $result = call_user_func_array( array( $this, $method ), func_get_args() );\n\n if( is_array($result) ){\n $this->assignParams( $result );\n }\n }", "protected abstract function performImpl();", "abstract protected function handle();", "public function processApi(){\n\t\t\t$piece = explode(\"/\", $_SERVER['REQUEST_URI']); \n\t\t\t$func = end($piece);\n\t\t\tif((int)method_exists($this,$func) > 0){\n\t\t\t\t$con = mysqli_connect(\"localhost\",\"root\",\"\",\"playlist\"); \n\t\t\t\t// Check connection\n\t\t\t\tif (mysqli_connect_errno()){\n\t\t\t\t echo \"Failed to connect to MySQL: \" . mysqli_connect_error();\n\t\t\t\t }\n\t\t\t\t\t\n\t\t\t\t$this->$func($con); \n\t\t\t}else\n\t\t\t\t$this->response('',404);// If the method not exist with in this class, response would be \"Page not found\".\n\t\t}", "public function call($method, array $arguments = []);", "public function __call($method, $args)\n\t{\n\t\t// etc ...\n\t\tswitch ($method)\n\t\t{\n\t\t\tcase 'get':\n\t\t}\n\n\t\tswitch (count($args))\n\t\t{\n\t\t\tcase 0: return $this->$method();\n\t\t\tcase 1: return $this->$method($args[0]);\n\t\t\tcase 2: return $this->$method($args[0], $args[1]);\n\t\t\tcase 3: return $this->$method($args[0], $args[1], $args[2]);\n\t\t\tcase 4: return $this->$method($args[0], $args[1], $args[2], $args[3]);\n\t\t\tdefault: throw new Exception('Too Many Arguments');\n\t\t}\n\t}", "abstract public function runTarget($method, &$params);", "private function invoke() {\n global $user;\n $req =& $this->request;\n try {\n\n if ($req) {\n if (isset($req->uri) && preg_match(\"/^([^\\?]*)(\\?(.*))?$/\", $req->uri, $match)) {\n $this->q = $match[1];\n parse_str($match[3], $_GET);\n }\n }\n \n if (isset($req) && !is_object($req))\n throw new Exception(\"Invalid Request.\", -32600);\n \n \n if (!preg_match(\"/^(?:(\\D\\w*)[\\.\\/])?(\\D\\w*)\\/?(.*)$/\", $this->q, $match))\n throw new Exception(\"Invalid Request.\", -32600);\n \n list(, $c, $m, $a) = $match;\n \n\t\t\n\t\t//if (!$c)\n\t\t//\t$c = jsonrpc_load_class_by_method($m, TRUE);\n \n\n\t\t\n \n if (!($c && class_exists($c, FALSE))) {\n $c = jsonrpc_load_class($c, $m, TRUE);\n }\n \n if (isset($a) && is_string($a) && FALSE !== strpos($a, ','))\n $a = explode(',', $a);\n if (isset($_GET['id']))\n $req->id = $_GET['id'];\n $is_super = $user->uid == 1;\n if ($user->uid == 0 && $_SERVER['REMOTE_ADDR'] == '127.0.0.1' && !isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {\n $is_super = TRUE;\n $user->uid = 1;\n }\n \n //echo $c;\n \n if (!method_exists($c, $m))\n throw new Exception('Method does not exists.', -32601);\n if (variable_get('site_offline', 0) && !$is_super)\n throw new Exception('Site if offline');\n $refl = new ReflectionMethod($c, $m);\n \n\t//$args = array();\n \n if (!isset($req->params)) {\n if ($a)\n $args = $a;\n elseif (isset($_GET['params']))\n $args = explode(',', $_GET['params']);\n elseif (isset($_GET['param']))\n $args = explode(',', $_GET['param']);\n }\n else\n $args = $req->params;\n \n //if(!is_array($args))\n \t\n\n\t//var_dump(count($args) <= $refl->getNumberOfParameters());\n\n //if ($refl->getNumberOfRequiredParameters() <= 1 && is_array($args) && count($args) > $refl->getNumberOfParameters() )\n \n //if($refl->getNumberOfRequiredParameters\n \n $np = $refl->getNumberOfParameters();\n $nr = $refl->getNumberOfRequiredParameters();\n\n\t\t//if ($np == 1 && count($args)\n//var_dump($args);\n//die;\n \n \n \n if ($nr <= 1 && !(is_array($args) && count($args) == $np && $np > 1 ) && isset($req->params))\n $args = array($args);\n\n\n//var_dump($args);\n\n switch (TRUE) {\n case $refl->isStatic():\n $req->result = call_user_func_array(array($c, $m), $args);\n break;\n case $refl->isPublic():\n $inst = $this->instance($c);\n $req->result = call_user_func_array(array($inst, $m), $args);\n break;\n case $refl->isProtected() && $is_super:\n $refl->setAccessible(TRUE);\n $req->result = $refl->invokeArgs(new $c, $args);\n break;\n default:\n throw new Exception(\"Method not found or permission denied on launching $c::$m.\");\n }\n } catch (Exception $e) {\n if (!is_object($req))\n $req = $this->request = (object)NULL;\n $data = isset($e->data) ? $e->data : get_class($e);\n $req->error = array('code' => $e->getCode(), 'message' => $e->getMessage(), 'data' => $data);\n }\n }" ]
[ "0.68813044", "0.6676862", "0.655433", "0.6430796", "0.6419365", "0.6365306", "0.6359675", "0.62991583", "0.62668097", "0.6236771", "0.6185147", "0.61783755", "0.6162561", "0.6157863", "0.6151238", "0.61504745", "0.61504745", "0.6139119", "0.611883", "0.61138344", "0.61032194", "0.609843", "0.6093612", "0.6079684", "0.60677457", "0.60573417", "0.6048223", "0.6046224", "0.603954", "0.6033539", "0.6029386", "0.6029386", "0.6029386", "0.6029386", "0.6025036", "0.6025036", "0.60146725", "0.60111266", "0.59971833", "0.5983501", "0.59827846", "0.59642947", "0.5949984", "0.59469885", "0.594655", "0.5944126", "0.594016", "0.5914103", "0.5904479", "0.59022206", "0.5889105", "0.5879845", "0.5879845", "0.5879845", "0.5879845", "0.5879845", "0.5879845", "0.5879845", "0.5862478", "0.5858245", "0.5791345", "0.5774369", "0.5766742", "0.57639", "0.57605714", "0.57570344", "0.5749202", "0.5721683", "0.571492", "0.5706637", "0.56977373", "0.5688726", "0.5681069", "0.5670423", "0.5660111", "0.5657711", "0.565661", "0.5656497", "0.56378555", "0.56378555", "0.56378555", "0.56378555", "0.56373864", "0.56329495", "0.562992", "0.5624717", "0.5622803", "0.5617774", "0.5610514", "0.5610514", "0.5603941", "0.55933565", "0.55835444", "0.5583278", "0.557052", "0.55703634", "0.5567096", "0.555915", "0.55528235", "0.55475587", "0.55444086" ]
0.0
-1
Create or Update the model in the database.
public function updateOrCreate(array $primaryKeys = [], $values = []) { $instance = $this->where($primaryKeys)->first(); $instance->fill($values)->save(); return $instance; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function save() {\r\n if ($this->model->getId()) {\r\n return $this->model->update();\r\n }\r\n return $this->create();\r\n }", "public function testUpdate()\n {\n $model = $this->makeFactory();\n $model->save();\n\n $newModel = $this->makeFactory();\n\n $this->json('PUT', static::ROUTE . '/' . $model->id, $newModel->toArray(), [\n 'Authorization' => 'Token ' . self::getToken()\n ])\n ->seeStatusCode(JsonResponse::HTTP_OK) \n ->seeJson($newModel->toArray());\n }", "public function save()\n {\n if ($this->id === null) {\n $this->insert();\n } else {\n $this->update();\n }\n }", "public function store()\n {\n if (!$this->id) { // Insert\n $this->insertObject();\n } else { // Update\n $this->updateObject();\n }\n }", "abstract protected function updateModel();", "public function save(){\n return isset($this->id) ? $this->update() : $this->create();\n \n }", "public function actionCreate() {\n $this->actionUpdate();\n }", "public function save(){\r\n\t \t\treturn isset($this->id) ? $this->update() : $this->create();\r\n\t\t}", "public function save() {\n return $this->{static::$primaryKey} === null? $this->create() : $this->update();\n }", "protected function update() {\n if ($this->_isLoaded()) {\n $this->db->where('id', $this->id);\n $this->db->update($this->tableName, $this->mapToDatabase());\n } else {\n throw new Exception(\"Model is not loaded\");\n }\n }", "public function save()\n {\n $this->checkForNecessaryProperties();\n\n $this->update($this->getCurrentId(), $this->data);\n }", "public function save(){\r\n return isset($this->id) ? $this->update() : $this->create();\r\n }", "public function save()\n {\n // that is already in this database using the current IDs in this \"where\"\n // clause to only update this model. Otherwise, we'll just insert them.\n if ($this->exists) {\n $saved = $this->newBuilder()->where('_id', $this->convertToMongoId($this->attributes['_id']))->update($this->attributes);\n }\n // If the model is brand new, we'll insert it into our database and set the\n // ID attribute on the model to the value of the newly inserted row's ID\n // which is typically an auto-increment value managed by the database.\n else {\n $saved = $this->newBuilder()->insert($this->attributes);\n }\n\n // TODO: fill() attributes will new or updated values.\n\n return $saved;\n }", "function create_or_update($name,$data) {\n return $this->save($name,$data);\n }", "public function save()\n {\n if ($this->id) {\n $this->update();\n } else {\n $this->id = $this->insert();\n }\n }", "public function save() {\n return isset($this->id) ? $this->update() : $this->create();\n }", "function update(){\n\t\t$this->model->update();\n\t}", "public function save() {\n\n return isset($this->id) ? $this->update() : $this->create();\n }", "public function store()\n {\n if( $this->isPersistent() )\n {\n $this->update();\n }\n else\n {\n $this->insert();\n }\n }", "public function save(){\n\t\treturn isset($this->id)?$this->update():$this->create();\t\n\t}", "public function save() {\n\t\treturn isset($this->id) ? $this->update() : $this->create();\n\t}", "public function save() {\n\t\treturn isset($this->id) ? $this->update() : $this->create();\n\t}", "public function save()\n {\n $this->_validateModifiable();\n\n if($this->isNew())\n {\n $this->_getDataSource()->create($this);\n }\n else\n {\n $this->_getDataSource()->update($this);\n }\n\n $this->_saveRelations();\n $this->_setNew(false);\n }", "public function save(){\n\t\t// If primary key is set in model, run an update instead.\n\t\t$primaryKey = $this->getPrimaryKey();\n\t\tif(isset($this->{$primaryKey})){\n\t\t\treturn $this->update();\n\t\t}\n\t\t$this->beforeSave();\n\t\t$tableName = $this->tableName();\n\t\t$fields = $this->fields();\n\t\t// Remove fields set as ignored by rules validation.\n\t\t$fields = $this->removeIgnored($fields);\n\t\t// Create PDO placeholders.\n\t\t$params = array_map(fn($name) => ':'.$name, $fields);\n\t\t// Populate statement by imploding the arrays.\n\t\t$statement = $this->db->prepare('INSERT INTO ' . $tableName . ' ( ' . implode(', ', $fields) . ') VALUES (' . implode(', ', $params) . ')');\n\t\t// Bind values to placeholders.\n\t\tforeach($fields as $field){\n\t\t\t$this->binder($statement, ':' . $field, $this->{$field});\n\t\t}\n\t\tif($statement->execute()){\n\t\t\t$this->afterSave();\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "public function save(){\r\n\t\tif ($this->new){\r\n\t\t\treturn $this->insert();\r\n\t\t} else {\r\n\t\t\treturn $this->update();\r\n\t\t}\r\n\t}", "public function save() {\n if ($this->loaded) {\n return $this->update();\n }else{\n return $this->create();\n }\n }", "public function save()\n\t{\n\t\tself::$db->model = $this;\n\t\t$boolean = $this->validate();\n\t\tif($boolean){\n\t\t\treturn self::$db->saveNow();\n\t\t}\n\t}", "public function actionCreate()\n\t{\n $this->actionUpdate();\n\t}", "public static function save()\n\t{\n//\t\t{\n//\t\t\techo static::$error;\n//\t\t\treturn false;\n//\t\t}\n\n\t\t$instance = static::$_instance[static::_getTable()];\n\t\t$columns = DB::getColumnListing(static::$_table);\n\n\t\tif (@$instance->id)\n\t\t{\n\t\t\tDB::where($instance->id);\n\n\t\t\tif (in_array('updated', $columns))\n\t\t\t\t$instance->updated = date('Y-m-d H:i:s');\n\n\t\t\tif (in_array('updater', $columns))\n\t\t\t\t$instance->updater = (int)Auth::identity()->id;\n\n\t\t\tDB::table(static::$_table)->update($instance);\n\t\t}\n\t\telse\n\t\t{\n\t\t\tif (in_array('ordering', $columns))\n\t\t\t\t$instance->ordering = DB::table(static::$_table)->getNewOrdering();\n\n\t\t\tif (in_array('created', $columns))\n\t\t\t\t$instance->created = date('Y-m-d H:i:s');\n\n\t\t\tif (in_array('creator', $columns))\n\t\t\t\t$instance->creator = (int)Auth::identity()->id;\n\n\t\t\tDB::table(static::$_table)->insert($instance);\n\t\t\t$instance->id = DB::getLastInsertId();\n\t\t}\n\n\t\treturn true;\n\t}", "protected function create() {\n $this->db->insertRow($this->table_name, $this->update);\n storeDbMsg($this->db,\"New \" . $this->form_ID . \" successfully created!\");\n }", "public function save(){\n if($this->id == 0) {\n // Object is new and needs to be created\n return $this->insert();\n }\n }", "function save(){\n if( !$this->validate() ){\n return false;\n }\n \n if($this->id){\n return $this->update();\n } else {\n return $this->create();\n }\n }", "public function save()\n\t{\n\t\t$this->copyAttributesToValues() ;\n\t\tif( $this->factory )\n\t\t{\n\t\t\tswitch( $this->todo )\n\t\t\t{\n\t\t\t\tcase 1: // Insert\n\t\t\t\t\tif( $this->factory->insertObjectIntoDB( $this ) ) $this->state = \"inserted\" ;\n\t\t\t\t\telse $this->state = \"dberror\" ;\n\t\t\t\t\tbreak ;\n\t\t\t\tcase 2: // update\n\t\t\t\t\tif( $this->factory->updateObjectIntoDB( $this ) ) $this->state = \"updated\" ;\n\t\t\t\t\telse $this->state = \"dberror\" ;\n\t\t\t\t\tbreak ;\n\t\t\t\tcase 3: // delete\n\t\t\t\t\tif( $this->factory->deleteObjectIntoDB( $this ) ) $this->state = \"deleted\" ;\n\t\t\t\t\telse $this->state = \"dberror\" ;\n\t\t\t\t\tbreak ;\n\t\t\t}\n\t\t}\n\t}", "public function save(){\n // if(isset($this->id)){$this->update();} else {$this->create();}\n return isset($this->id)? $this->update(): $this->create() ;\n\n }", "public function db_update() {}", "public function Create($params = array()) \n { \n $this->Update($params); \n }", "public function Create($params = array()) \n { \n $this->Update($params); \n }", "public function createOrUpdate(array $data, $model=null);", "public function save()\n {\n //set some parameters\n $indexField = [ $this->indexField => $this->data[$this->indexField] ?? '' ];\n $columns = [];\n\n foreach ($this->editSettings as $k => $v) {\n $columns[$k] = $this->data[$k];\n }\n\n $class = $this->classPathBase::updateOrCreate($indexField, $columns);\n }", "public function save() : bool {\n\t\t// Check if record is new\n\t\t$isNew = isset($this->{$this->primaryKey}) && $this->{$this->primaryKey} ? false : true;\n\n\t\tif ($isNew) {\n\t\t\t// Insert\n\t\t\t$this->database->query('INSERT INTO ' . $this->tableNamePrefixed, $this->getValuesForDatabase());\n\t\t\tif ($this->database->getInsertId()) {\n\t\t\t\t$this->{$this->primaryKey} = $this->database->getInsertId();\n\t\t\t}\n\t\t} else {\n\t\t\t// Update\n\t\t\t$this->database->query(\n\t\t\t\t'UPDATE ' . $this->tableNamePrefixed . ' SET',\n\t\t\t\t$this->getValuesForDatabase(),\n\t\t\t\t'WHERE ' . $this->primaryKey . ' = ?', $this->{$this->primaryKey}\n\t\t\t);\n\t\t}\n\n\t\treturn true;\n\t}", "public function save(): void\n {\n $this->em->persist($this->model);\n $this->em->flush();\n }", "public function save() : bool {\n $this->getForm();\n $model = (array) $this;\n unset($model['id']);\n\n $colNames = implode(', ', array_keys($model));\n $colValues = ':' . str_replace(', ', ', :', $colNames);\n $arrBind = array_combine(explode(', ', $colValues), array_values($model));\n\n try {\n $db = new DbConnection();\n $db = $db->connect();\n $statement = $db->prepare(\"INSERT INTO \" . static::tableName() . \" (\" . $colNames . \")\n VALUES (\" . $colValues . \")\");\n\n foreach ($arrBind as $key => &$value) {\n $statement->bindParam($key, $value);\n }\n\n $result = $statement->execute();\n $db = null;\n } catch (PDOException $e) {\n $result = false;\n $e->getMessage(); // Only in dev mode\n }\n return $result;\n }", "public function update()\n\t{\n\t\t$this->getModel()->update($this);\n\t}", "public function update(){\n\t\t$this->beforeSave();\n\t\t$tableName = $this->tableName();\n\t\t$fields = $this->fields();\n\t\t// Remove fields set as ignored by rules validation.\n\t\t$fields = $this->removeIgnored($fields);\n\t\t// Create PDO placeholders.\n\t\t$params = implode(', ', array_map(fn($name) => $name . ' = :' . $name, $fields));\n\t\t$primaryKey = $this->getPrimaryKey();\n\t\t$where = $primaryKey . ' = :' . $primaryKey;\n\t\t$statement = $this->db->prepare('UPDATE ' . $tableName . ' SET ' . $params . ' WHERE ' . $where);\n\t\t// Bind values to placeholders.\n\t\tforeach($fields as $field){\n\t\t\t$this->binder($statement, ':' . $field, $this->{$field});\n\t\t}\n\t\t$statement->bindValue(':' . $primaryKey, $this->{$primaryKey});\n\t\tif($statement->execute()){\n\t\t\t$this->afterSave();\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "public function save()\n {\n // If the model already exists in the database we can just update our record\n // that is already in this database using the current IDs in this \"where\"\n // clause to only update this model. Otherwise, we'll just insert them.\n if ($this->exists) {\n $saved = $this->isDirty() ? $this->performUpdate() : true;\n }\n\n // If the model is brand new, we'll insert it into our database and set the\n // ID attribute on the model to the value of the newly inserted row's ID\n // which is typically an auto-increment value managed by the database.\n else {\n $saved = $this->performInsert();\n }\n\n // If the model is successfully saved, we need to do a few more things once\n // that is done. We will call the \"saved\" method here to run any actions\n // we need to happen after a model gets successfully saved right here.\n if ($saved) {\n $this->syncOriginal();\n }\n\n return $saved;\n }", "public function save() \n\t{\n\t\tif (isset($this->id)) {\t\n\t\t\n\t\t\t// Return update when id exists\n\t\t\treturn $this->update();\n\t\t\t\n\t\t} else {\n\t\t\n\t\t\t// Return insert when id does not exists\n\t\t\treturn $this->insert();\n\t\t}\n\t}", "public function save()\n {\n $primary = $this->primary_key;\n $id = null;\n\n try {\n \n /** Verifica os campos obrigatórios */\n if ( !$this->required() ) {\n throw new \\Exception('Preencha os campos necessários.');\n }\n\n $date_now = (new \\DateTime())->format('Y-m-d H:i:s');\n\n /** Se for um update */\n if ( !empty($this->data->$primary) ) {\n $this->data->updated_at = $date_now;\n $id = $this->data->$primary;\n $this->update($this->safe(), [\"{$this->primary_key}=\" => $id]);\n }\n\n /** Se for um create */\n if ( empty($this->data->$primary) ) {\n $this->data->created_at = $date_now;\n $this->data->updated_at = $date_now;\n $id = $this->create($this->safe());\n }\n\n if ( !$id ) {\n return false;\n }\n\n $this->data = $this->findByPrimaryKey($id);\n return true;\n\n } catch(\\Exception $exception) {\n $this->fail = $exception;\n return false;\n }\n }", "public function save() {\n if ($this->id) {\n return $this->update();\n } else {\n return $this->insert();\n }\n }", "public function createModel()\n {\n }", "public function create(): Model;", "public function save() {\n $db = Db::instance();\n $db_properties = array(\n 'action' => $this->action,\n 'url_mod' => $this->url_mod,\n 'description' => $this->description,\n 'target_id' => $this->target_id,\n 'target_name' => $this->target_name,\n 'creator_id' => $this->creator_id,\n 'creator_username' => $this->creator_username\n );\n $db->store($this, __CLASS__, self::DB_TABLE, $db_properties);\n }", "private function create()\n {\n if ($this->isRequired()) {\n $db = Database::getDatabaseConnection();\n $db->exec($this->getDropQuery());\n $db->exec($this->getCreateQuery());\n $this->populate($db);\n }\n }", "public function updateRecord() {\n $model = self::model()->findByAttributes(array('id_customer' => $this->id_customer, 'id_supplier' => $this->id_supplier));\n\n //model is new, so create a copy with the keys set\n if (null === $model) {\n //we don't use clone $this as it can leave off behaviors and events\n $model = new self;\n $model->id_customer = $this->id_customer;\n $model->id_supplier = $this->id_supplier;\n }\n $model->save(false);\n return $model;\n }", "public function create() {\n\t\t$model = new $this->model_class;\n\t\t$model->status = 3;\n\t\t$model->author_id = Session::get('wildfire_user_cookie');\n\t\t$model->url = time();\n\t\tif(Request::get(\"title\")) $model->title = Request::get(\"title\");\n\t\telse $model->title = \"Enter Your Title Here\";\n\t\t$this->redirect_to(\"/admin/content/edit/\".$model->save()->id.\"/\");\n\t}", "public function save() {\n if(!isset($this->id)) {\n $this->insert();\n } else {\n foreach ($this->fillable as $key => $value) {\n $data[$key] = $this->$key;\n }\n $qb = $this::set($data);\n $qb->where(['id' => $this->id])->make();\n return true;\n }\n }", "public function save(){\n\n if (!$this->preSave()) {\n return FALSE;\n }\n\n $reference = $this->_getReference();\n $pk = $this->_getPK();\n\n $data = get_object_vars($this);\n\n if (empty($pk) && $pk !== NULL) {\n throw new \\Exception('Model PK is empty!');\n }\n\n if (is_array($pk)) {\n $pkv = [];\n $_pkv = [];\n $insert = TRUE;\n foreach ($pk as $c) {\n if (!empty($data[$c])) {\n $pkv[] = $data[$c];\n $_pkv[$c] = $data[$c];\n // unset($data[$c]);\n $insert = FALSE;\n }\n }\n\n if (!$insert) {\n $insert = is_null(self::getWhere($_pkv));\n }\n\n\n } else {\n $pkv = !empty($data[$pk]) ? $data[$pk] : NULL;\n $_pkv = [$pk => $pkv];\n\n // Se for AUTO INCREMENT remove dos campos a serem INSERIDOS/ALTERADOS\n if (self::_isPkAi())\n unset($data[$pk]);\n\n $insert = empty($pkv);\n }\n\n unset($data['__error']);\n\n foreach ($data as $key => $value) {\n if (strpos($key, '_') === 0)\n unset($data[$key]);\n }\n\n if ($insert) {\n\n if (array_key_exists('created', $data))\n $data['created'] = Date('Y-m-d H:i:s');\n\n if (array_key_exists('updated', $data))\n unset($data['updated']);\n\n\n $res = self::$connection->insert($reference, $data)->execute();\n\n if ($res && $pk !== NULL && !is_array($pk))\n $this->{'set'.$pk}(self::$connection->lastInsertId());\n\n } else {\n\n if (array_key_exists('updated', $data))\n $data['updated'] = Date('Y-m-d H:i:s');\n\n if (array_key_exists('created', $data))\n unset($data['created']);\n\n $res = self::$connection->update($reference, $data, $_pkv)->execute();\n\n }\n\n if ($res)\n $this->refresh();\n\n $this->afterSave($res);\n\n return $res;\n\n }", "public function create(Model $model);", "function addUpdate() {\n\t\tif ($this->id) $this->update();\n\t\telse $this->insert();\n\t}", "protected function saveUpdate()\n {\n }", "public function update(){\n if(empty($this->attributes)){\n return;\n }\n if ($this->isAutoInc) {\n $fieldsList = \" SET \";\n foreach ($this->attributes as $column => $value) {\n $fieldsList.=$column.\"=\".'\\''.$value.'\\''.\", \";\n }\n $fieldsList = str_last_replace(\", \", \"\", $fieldsList);\n $sqlQuery = \"UPDATE \".$this->table.$fieldsList.\" WHERE \".$this->idName.\"=\".$this->attributes[$this->idName];\n\n Db::instance()->execute($sqlQuery,$this->attributes);\n }\n }", "protected function createNew() {\n $this->db->insert($this->tableName, $this->mapToDatabase());\n $this->id = $this->db->insert_id();\n }", "public function save()\n\t{\n\t\t$status = $this->validated ? TRUE : $this->valid();\n\n\t\tif ($status === TRUE)\n\t\t{\n\t\t\tif ($this->data['id']) // Do an update\n\t\t\t\treturn count($this->db->update($this->table_name, $this->data, array('id' => $this->data['id'])));\n\t\t\telse // Do an insert\n\t\t\t{\n\t\t\t\t$id = $this->db->insert($this->table_name, $this->data)->insert_id();\n\t\t\t\treturn ($this->data['id'] = $id);\n\t\t\t}\n\t\t}\n\n\t\tthrow new Kohana_User_Exception('auto_modeler.validation_error', $status);\n\t}", "public function save()\n {\n $this->hasTableName();\n $pk = $this->pk;\n $condition = \"\";\n if ($this->isNew) {\n $sql = \"INSERT INTO \" . $this->table_name . \" SET \";\n $update = '';\n } else {\n if (!isset($this->$pk))\n throw new Exception('Update em objeto sem chave definida', 403);\n\n $sql = \"UPDATE \" . $this->table_name . \" SET \";\n $update = \" WHERE `\" . $this->pk . \"` = '\" . $this->$pk . \"'\";\n }\n foreach ($this->rules() as $key => $validation) {\n if ($this->validateField($key, $validation) && isset($this->$key) && $this->$key != \"\") {\n $sql .= \" `\" . $key . \"` = '\" . $this->$key . \"',\";\n $condition .= \" `\" . $key . \"` = '\" . $this->$key . \"' AND\";\n }\n }\n if (!$this->getErrors()) {\n $sql = substr($sql, 0, -1) . $update;\n if (Database::dbactionf($sql)) {\n if ($this->isNew) {\n $this->$pk = Database::lastID();\n $this->persisted();\n }\n return true;\n }\n }\n return false;\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n ModelHasRole::truncate();\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n\n $model=new ModelHasRole;\n $model->role_id ='1';\n $model->model_type ='App\\User';\n $model->model_id ='1';\n $model->save();\n }", "public function save()\n\t{\n\t\tif( $this->isExist )\n\t\t{\n\t\t\treturn $this->update();\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn $this->insert();\n\t\t}\n\t}", "function save() {\n\n\t\t// calls generic ORM save (insert or update)\n\t\tparent::save();\n\n\t}", "public function model() {\n require_once \"../app/models/model.php\";\n $this->model = new Model($this->db);\n }", "public function save(){\n\n\t\t$this->_connect();\n\t\t$exists = $this->_exists();\n\n\t\tif($exists==false){\n\t\t\t$this->_operationMade = self::OP_CREATE;\n\t\t} else {\n\t\t\t$this->_operationMade = self::OP_UPDATE;\n\t\t}\n\n\t\t// Run Validation Callbacks Before\n\t\t$this->_errorMessages = array();\n\t\tif(self::$_disableEvents==false){\n\t\t\tif($this->_callEvent('beforeValidation')===false){\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tif(!$exists){\n\t\t\t\tif($this->_callEvent('beforeValidationOnCreate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif($this->_callEvent('beforeValidationOnUpdate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t//Generadores\n\t\t$className = get_class($this);\n\t\t$generator = null;\n\t\tif(EntityManager::hasGenerator($className)){\n\t\t\t$generator = EntityManager::getEntityGenerator($className);\n\t\t\t$generator->setIdentifier($this);\n\t\t}\n\n\t\t//LLaves foráneas virtuales\n\t\tif(EntityManager::hasForeignKeys($className)){\n\t\t\t$foreignKeys = EntityManager::getForeignKeys($className);\n\t\t\t$error = false;\n\t\t\tforeach($foreignKeys as $indexKey => $keyDescription){\n\t\t\t\t$entity = EntityManager::getEntityInstance($indexKey, false);\n\t\t\t\t$field = $keyDescription['fi'];\n\t\t\t\tif($this->$field==''){\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t$conditions = $keyDescription['rf'].' = \\''.$this->$field.'\\'';\n\t\t\t\tif(isset($keyDescription['op']['conditions'])){\n\t\t\t\t\t$conditions.= ' AND '.$keyDescription['op']['conditions'];\n\t\t\t\t}\n\t\t\t\t$rowcount = $entity->count($conditions);\n\t\t\t\tif($rowcount==0){\n\t\t\t\t\tif(isset($keyDescription['op']['message'])){\n\t\t\t\t\t\t$userMessage = $keyDescription['op']['message'];\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$userMessage = 'El valor de \"'.$keyDescription['fi'].'\" no existe en la tabla referencia';\n\t\t\t\t\t}\n\t\t\t\t\t$message = new ActiveRecordMessage($userMessage, $keyDescription['fi'], 'ConstraintViolation');\n\t\t\t\t\t$this->appendMessage($message);\n\t\t\t\t\t$error = true;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif($error==true){\n\t\t\t\t$this->_callEvent('onValidationFails');\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\t$notNull = $this->_getNotNullAttributes();\n\t\t$at = $this->_getDatesAtAttributes();\n\t\t$in = $this->_getDatesInAttributes();\n\t\tif(is_array($notNull)){\n\t\t\t$error = false;\n\t\t\t$numFields = count($notNull);\n\t\t\tfor($i=0;$i<$numFields;++$i){\n\t\t\t\t$field = $notNull[$i];\n\t\t\t\tif($this->$field===null||$this->$field===''){\n\t\t\t\t\tif(!$exists&&$field=='id'){\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif(!$exists){\n\t\t\t\t\t\tif(isset($at[$field])){\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif(isset($in[$field])){\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$field = str_replace('_id', '', $field);\n\t\t\t\t\t$message = new ActiveRecordMessage(\"El campo $field no puede ser nulo ''\", $field, 'PresenceOf');\n\t\t\t\t\t$this->appendMessage($message);\n\t\t\t\t\t$error = true;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif($error==true){\n\t\t\t\t$this->_callEvent('onValidationFails');\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\t// Run Validation\n\t\tif($this->_callEvent('validation')===false){\n\t\t\t$this->_callEvent('onValidationFails');\n\t\t\treturn false;\n\t\t}\n\n\t\tif(self::$_disableEvents==false){\n\t\t\t// Run Validation Callbacks After\n\t\t\tif(!$exists){\n\t\t\t\tif($this->_callEvent('afterValidationOnCreate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif($this->_callEvent('afterValidationOnUpdate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif($this->_callEvent('afterValidation')===false){\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Run Before Callbacks\n\t\t\tif($this->_callEvent('beforeSave')===false){\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tif($exists){\n\t\t\t\tif($this->_callEvent('beforeUpdate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif($this->_callEvent('beforeCreate')===false){\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif($this->_schema){\n\t\t\t$table = $this->_schema.'.'.$this->_source;\n\t\t} else {\n\t\t\t$table = $this->_source;\n\t\t}\n\n\t\t$magicQuotesRuntime = get_magic_quotes_runtime();\n\t\t$dataType = $this->_getDataTypes();\n\t\t$primaryKeys = $this->_getPrimaryKeyAttributes();\n\t\t$dataTypeNumeric = $this->_getDataTypesNumeric();\n\t\tif($exists){\n\t\t\tif(self::$_dynamicUpdate==false){\n\t\t\t\t$fields = array();\n\t\t\t\t$values = array();\n\t\t\t\t$nonPrimary = $this->_getNonPrimaryKeyAttributes();\n\t\t\t\tforeach($nonPrimary as $np){\n\t\t\t\t\tif(isset($in[$np])){\n\t\t\t\t\t\t$this->$np = Date::now();\n\t\t\t\t\t}\n\t\t\t\t\t$fields[] = $np;\n\t\t\t\t\tif(is_object($this->$np)&&($this->$np instanceof DbRawValue)){\n\t\t\t\t\t\t$values[] = $this->$np->getValue();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif($this->$np===''||$this->$np===null){\n\t\t\t\t\t\t\t$values[] = 'NULL';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif(!isset($dataTypeNumeric[$np])){\n\t\t\t\t\t\t\t\tif($dataType[$np]=='date'){\n\t\t\t\t\t\t\t\t\t$values[] = $this->_db->getDateUsingFormat($this->$np);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t$values[] = '\\''.addslashes($this->$np).'\\'';\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t$values[] = '\\''.addslashes($this->$np).'\\'';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$conditions = array();\n\t\t\t\tforeach($primaryKeys as $field){\n\t\t\t\t\t$conditions[] = $field.' = \\''.$this->field.'\\'';\n\t\t\t\t}\n\t\t\t\t$pkCondition = join(' AND ', $conditions);\n\t\t\t\t$existRecord = clone $this;\n\t\t\t\t$record = $existRecord->findFirst($pkCondition);\n\t\t\t\t$fields = array();\n\t\t\t\t$values = array();\n\t\t\t\t$nonPrimary = $this->_getNonPrimaryKeyAttributes();\n\t\t\t\tforeach($nonPrimary as $np){\n\t\t\t\t\tif(isset($in[$np])){\n\t\t\t\t\t\t$this->$np = $this->_db->getCurrentDate();\n\t\t\t\t\t}\n\t\t\t\t\tif(is_object($this->$np)){\n\t\t\t\t\t\tif($this->$np instanceof DbRawValue){\n\t\t\t\t\t\t\t$value = $this->$np->getValue();\n\t\t\t\t\t\t\tif($record->$np!=$value){\n\t\t\t\t\t\t\t\t$fields[] = $np;\n\t\t\t\t\t\t\t\t$values[] = $values;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthrow new ActiveRecordException('El objeto instancia de \"'.get_class($this->$field).'\" en el campo \"'.$field.'\" es muy complejo, debe realizarle un \"cast\" a un tipo de dato escalar antes de almacenarlo');\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif($this->$np===''||$this->$np===null){\n\t\t\t\t\t\t\tif($record->$np!==''&&$record->$np!==null){\n\t\t\t\t\t\t\t\t$fields[] = $np;\n\t\t\t\t\t\t\t\t$values[] = 'NULL';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif(!isset($dataTypeNumeric[$np])){\n\t\t\t\t\t\t\t\tif($dataType[$np]=='date'){\n\t\t\t\t\t\t\t\t\t$value = $this->_db->getDateUsingFormat($this->$np);\n\t\t\t\t\t\t\t\t\tif($record->$np!=$value){\n\t\t\t\t\t\t\t\t\t\t$fields[] = $np;\n\t\t\t\t\t\t\t\t\t\t$values[] = $value;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tif($record->$np!=$this->$np){\n\t\t\t\t\t\t\t\t\t\t$fields[] = $np;\n\t\t\t\t\t\t\t\t\t\t$values[] = \"'\".addslashes($this->$np).\"'\";\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t$success = $this->_db->update($table, $fields, $values, $this->_wherePk);\n\t\t} else {\n\t\t\t$fields = array();\n\t\t\t$values = array();\n\t\t\t$attributes = $this->getAttributes();\n\t\t\tforeach($attributes as $field){\n\t\t\t\tif($field!='id'){\n\t\t\t\t\tif(isset($at[$field])){\n\t\t\t\t\t\tif($this->$field==null||$this->$field===\"\"){\n\t\t\t\t\t\t\t$this->$field = $this->_db->getCurrentDate();\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif(isset($in[$field])){\n\t\t\t\t\t\t\t$this->$field = new DbRawValue('NULL');\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$fields[] = $field;\n\t\t\t\t\tif(is_object($this->$field)){\n\t\t\t\t\t\tif($this->$field instanceof DbRawValue){\n\t\t\t\t\t\t\t$values[] = $this->$field->getValue();\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthrow new ActiveRecordException('El objeto instancia de \"'.get_class($this->$field).'\" en el campo \"'.$field.'\" es muy complejo, debe realizarle un \"cast\" a un tipo de dato escalar antes de almacenarlo');\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif(isset($dataTypeNumeric[$field])||$this->$field=='NULL'){\n\t\t\t\t\t\t\tif($this->$field===''||$this->$field===null){\n\t\t\t\t\t\t\t\t$values[] = 'NULL';\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t$values[] = addslashes($this->$field);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif($dataType[$field]=='date'){\n\t\t\t\t\t\t\t\tif($this->$field===null||$this->$field===''){\n\t\t\t\t\t\t\t\t\t$values[] = 'NULL';\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t$values[] = $this->_db->getDateUsingFormat(addslashes($this->$field));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tif($this->$field===null||$this->$field===''){\n\t\t\t\t\t\t\t\t\t$values[] = 'NULL';\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tif($magicQuotesRuntime==true){\n\t\t\t\t\t\t\t\t\t\t$values[] = \"'\".$this->$field.\"'\";\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t$values[] = \"'\".addslashes($this->$field).\"'\";\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t$sequenceName = '';\n\t\t\tif($generator===null){\n\t\t\t\tif(count($primaryKeys)==1){\n\t\t\t\t\t// Hay que buscar la columna identidad aqui!\n\t\t\t\t\tif(!isset($this->id)||!$this->id){\n\t\t\t\t\t\tif(method_exists($this, 'sequenceName')){\n\t\t\t\t\t\t\t$sequenceName = $this->sequenceName();\n\t\t\t\t\t\t}\n\t\t\t\t\t\t$identityValue = $this->_db->getRequiredSequence($this->_source, $primaryKeys[0], $sequenceName);\n\t\t\t\t\t\tif($identityValue!==false){\n\t\t\t\t\t\t\t$fields[] = 'id';\n\t\t\t\t\t\t\t$values[] = $identityValue;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif(isset($this->id)){\n\t\t\t\t\t\t\t$fields[] = 'id';\n\t\t\t\t\t\t\t$values[] = $this->id;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t$success = $this->_db->insert($table, $values, $fields);\n\t\t}\n\t\tif($this->_db->isUnderTransaction()==false){\n\t\t\tif($this->_db->getHaveAutoCommit()==true){\n\t\t\t\t$this->_db->commit();\n\t\t\t}\n\t\t}\n\t\tif($success){\n\t\t\tif($exists==true){\n\t\t\t\t$this->_callEvent('afterUpdate');\n\t\t\t} else {\n\t\t\t\tif($generator===null){\n\t\t\t\t\tif(count($primaryKeys)==1){\n\t\t\t\t\t\tif(isset($dataTypeNumeric[$primaryKeys[0]])){\n\t\t\t\t\t\t $lastId = $this->_db->lastInsertId($table, $primaryKeys[0], $sequenceName);\n\t\t\t\t\t\t if($lastId>0){\n\t\t\t\t\t\t\t $this->{$primaryKeys[0]} = $lastId;\n\t\t\t\t\t\t\t\t$this->findFirst($lastId);\n\t\t\t\t\t\t }\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t//Actualiza el consecutivo para algunos generadores\n\t\t\t\t\t$generator->updateConsecutive($this);\n\t\t\t\t}\n\t\t\t\t$this->_callEvent('afterCreate');\n\t\t\t}\n\t\t\t$this->_callEvent('afterSave');\n\t\t\treturn $success;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "public function save()\n {\n if ($this->_state == 0) {\n // Insert\n $result = static::getLink()->insert(Structure::getTable($this)->getFullTableName(), $this->getColumns(), $this->getColumns(true));\n\n // Primary Key\n $this->_id = static::getLink()->lastInsertId();\n\n /** @var Column $primaryKey */\n $primaryKey = Structure::getTablePrimaryKey($this);\n\n if ($primaryKey->autoIncrement) {\n $this->{$primaryKey->getPropertyField()} = $this->_id;\n }\n\n $this->_state = 1;\n } else {\n // Update\n $result = static::getLink()->update(Structure::getTable($this)->getFullTableName(), $this->getColumns(), $this->getPrimaryKey(),\n array_merge($this->getColumns(true), $this->getPrimaryKey(true)));\n }\n\n return $result;\n }", "public function save() {\n\t\tif ( ! $this->dirty()) return true;\n\n\t\tif (static::$timestamps) {\n\t\t\t$this->timestamp();\n\t\t}\n\n\t\t$this->fire_event('saving');\n\n\t\t// If the model exists, we only need to update it in the database, and the update\n\t\t// will be considered successful if there is one affected row returned from the\n\t\t// fluent query instance. We'll set the where condition automatically.\n\t\tif ($this->exists) {\n\t\t\t$query = $this->query()->where(static::$key, '=', $this->get_key());\n\n\t\t\t$result = $query->update($this->get_dirty()) === 1;\n\n\t\t\tif ($result) $this->fire_event('updated');\n\t\t}\n\n\t\t// If the model does not exist, we will insert the record and retrieve the last\n\t\t// insert ID that is associated with the model. If the ID returned is numeric\n\t\t// then we can consider the insert successful.\n\t\telse {\n\t\t\t$id = $this->query()->insert_get_id($this->attributes, $this->key());\n\n\t\t\t$this->set_key($id);\n\n\t\t\t$this->exists = $result = is_numeric($this->get_key());\n\n\t\t\tif ($result) $this->fire_event('created');\n\t\t}\n\n\t\t// After the model has been \"saved\", we will set the original attributes to\n\t\t// match the current attributes so the model will not be viewed as being\n\t\t// dirty and subsequent calls won't hit the database.\n\t\t$this->original = $this->attributes;\n\n\t\tif ($result) {\n\t\t\t$this->fire_event('saved');\n\t\t}\n\n\t\treturn $result;\n\t}", "public function save(){\n\t\t$db = static::getDatabaseConnection();\n\t\t//Find the columns from the model\n\t\t$columns = static::$columns;\n\n\t\t//because ID is AI we dont want to put a value in it\n\t\tunset($columns[array_search('id', $columns)]);\n\t\t//Same with timestamp\n\t\tunset($columns[array_search('timestamp', $columns)]);\n\n\t\t//Create an insert query which gets linked to the database\n\t\t$query = \"INSERT INTO \" . static::$tableName . \" (\". implode(\",\", $columns) . \") VALUES (\";\n\n\t\t//create a variable called insesrtcols. This is where we put the values\n\t\t$insertcols = [];\n\t\t//For each of the columns in the columns array, add that column into the insert cols array, and seperate it with a :\n\t\tforeach ($columns as $column) {\n\t\t\tarray_push($insertcols, \":\" . $column);\n\t\t}\n\t\t//turn the insertcols array into 1 string and put a , between each entry\n\t\t$query .= implode(\",\", $insertcols);\n\t\t//close the query\n\t\t$query .= \")\";\n\n\t\t//Prepare the query\n\t\t$statement = $db->prepare($query);\n\n\t\t//Foreach of the columns run this function\n\t\tforeach ($columns as $column) {\n\t\t\t//Attach the value to each of the columns\n\t\t\t//Hash the password\n\t\t\tif($column === 'password'){\n\t\t\t\t$this->$column = password_hash($this->$column, PASSWORD_DEFAULT);\n\t\t\t}\n\t\t\t$statement->bindValue(\":\" . $column , $this->$column);\n\t\t}\n\n\t\t//Run the query\n\t\t$statement->execute();\n\n\t\t//Get the id of the query which was just added\n\t\t$this->id = $db->lastInsertID();\n\t}", "public function save() {\r\n\t return isset($this->userid) ? $this->update() : $this->create();\r\n\t}", "public function create($modelData);", "public function createModel()\n\t{\n\t\treturn $this->getModelConfiguration()->createModel();\n\t}", "private function saveDb()\n\t{\n\t\t//format our sql statements w/ the valid fields\n\t\t$fields = array();\n\t\t\n\t\t//loop thru all our dirty fields.\n\t\tforeach ($this->dirtyFields AS $key => $foo)\n\t\t{\n\t\t\t//get our value.\n\t\t\tif (isset($this->data[$key]) && $key != 'id')\n\t\t\t{\n\t\t\t\t$val = $this->data[$key];\n\n\t\t\t\t//slashes replacement..\n\t\t\t\t$val = str_replace(\"\\\\\\\\\", \"\\\\\", $val);\n\t\t\t\t$val = str_replace(\"\\'\", \"'\", $val);\n\t\t\t\t$val = str_replace(\"\\\\\\\"\", \"\\\"\", $val);\n\n\t\t\t\t//add it if we have it...\n\t\t\t\t$fields[] = \"`$key` = '\" . addslashes($val) . \"'\";\n\t\t\t}\n\t\t}\n\t\t\n\t\t//update if we have an id....\n\t\tif (count($fields))\n\t\t{\n\t\t\t//now make our array\n\t\t\t$sqlFields = implode(\",\\n\", $fields) . \"\\n\";\n\t\t\t\n\t\t\t//update it?\n\t\t\tif ($this->id)\n\t\t\t{\n\t\t\t\t$sql = \"UPDATE $this->tableName SET\\n\";\n\t\t\t\t$sql .= $sqlFields;\n\t\t\t\t$sql .= \"WHERE id = '$this->id'\\n\";\n\t\t\t\t$sql .= \"LIMIT 1\";\n\n\t\t\t\tdb()->execute($sql);\n\t\t\t}\n\t\t\t//otherwise insert it...\n\t\t\telse\n\t\t\t{\n\t\t\t\t$sql = \"INSERT INTO $this->tableName SET\\n\";\n\t\t\t\t$sql .= $sqlFields;\n\n\t\t\t\t$this->id = db()->insert($sql);\n\t\t\t}\n\t\t}\n\t}", "protected function loadUpdate() {\r\n $this->update = new \\App\\Table\\UpdateTable(App::getInstance()->getDb());\r\n }", "public function save() {\n $db = Db::instance();\n // omit id and any timestamps\n $db_properties = array(\n 'username' => $this->username,\n 'password_hash' => $this->password_hash,\n 'email' => $this->email,\n 'first_name' => $this->first_name,\n 'last_name' => $this->last_name,\n 'user_type' => $this->user_type,\n 'bio' => $this->bio,\n 'creation_date' => $this->creation_date,\n 'gender' => $this->gender,\n 'color' => $this->color\n );\n $db->store($this, __CLASS__, self::DB_TABLE, $db_properties);\n }", "public function update() {\n // Get the values that are currently in the database\n $curr_vals = $this->read_single();\n\n // Set the values that will be added to the table\n foreach ($curr_vals as $key => $value) {\n // Convert key from the Database's capitalization to\n // this model's attribute capitalization style (all lowercase)\n $local_key = strtolower($key);\n // If user didn't specify property\n if (($this->attr[$local_key] === \"\") || ($this->attr[$local_key] === null)){\n // Then use the value that's already in the database\n $this->attr[$local_key] = $curr_vals[$key];\n }\n }\n\n // Create query\n $query = \"UPDATE \" . $this->table .\n \" SET = \" .\n \" WHERE MID = :mid AND Spot = :spot \";\n\n // Prepare statement\n $stmt = $this->conn->prepare($query);\n\n // Clean the data (reduce malicious SQL injection, etc.)\n foreach ($this->attr as $key => $value) {\n $this->attr[$key] = htmlspecialchars(strip_tags($value));\n }\n \n // Bind the data to a variable for an SQL attribute\n foreach ($this->attr as $key => $value) {\n $stmt->bindValue((\":\" . $key), $value);\n }\n\n // Execute the prepared statement and check for errors in running it\n return $this->runPrepStmtChkErr($stmt);\n }", "private function create()\n {\n return $this->db->putUser($this->getDefaultAttributes());\n }", "public function saveToDb()\n\t{\n\t\t$this->addDocument();\n\t\tparent::saveToDb();\n\t}", "public function run()\n\t{\n Model::unguard();\n\n $sktms = (object) [\n (object) [\n 'user_id' => '1',\n 'siswa_id' => '1',\n 'master_sktm_id' => '1',\n 'no_sktm' => '1',\n 'nilai' => '1'\n\n ],\n (object) [\n 'user_id' => '2',\n 'siswa_id' => '2',\n 'master_sktm_id' => '2',\n 'no_sktm' => '2',\n 'nilai' => '2'\n ]\n ];\n\n foreach ($sktms as $sktm) {\n $model = Sktm::updateOrCreate(\n [\n 'user_id' => $sktm->user_id,\n 'master_sktm_id' => $sktm->master_sktm_id,\n 'siswa_id' => $sktm->siswa_id,\n 'no_sktm' => $sktm->no_sktm,\n 'nilai' => $sktm->nilai,\n ]\n );\n $model->save();\n }\n\t}", "public function update($model) :bool;", "public function updateDB()\n {\n\n }", "public function run()\n {\n \t\tDB::table('models')->insert($models);\n }", "public function save() {\r\n $dateNow = date('Y-m-d H:i:s', time());\r\n $this->id = (int) $this->id;\r\n \r\n if (!empty($this->id)) {\r\n //update case\r\n if ($this->_update()) {\r\n return true;\r\n }\r\n }\r\n else {\r\n //Insert case\r\n if ($this->_insert()) {\r\n return true;\r\n }\r\n }\r\n }", "public function orm2()\n {\n// $student->name = 'orm';\n// $student->age = 18;\n// $bool = $student->save();\n// dd($bool);\n\n// $student = Student::find(1007);\n// dd($student->created_at);\n\n// $student = Student::create(['name' => 'lll', 'age' => 99]);\n// dd($student);\n //firstOrCreate 以属性查找,没有则新建记录\n //firstOrNew 以属性查找,没有则新建对象,需要自己保存记录\n }", "public function save(){\n $tableName = $this->tableName();\n $attributes = $this->attributes();\n $params = array_map(fn($attr) => \":$attr\", $attributes);\n $statement = self::prepare(\"INSERT INTO $tableName (\".implode(',', $attributes).\") \n VALUES (\".implode(',', $params).\")\");\n \n foreach($attributes as $attribute){\n $statement->bindValue(\":$attribute\", $this->{$attribute});\n }\n \n $statement->execute();\n return true;\n }", "public function create($data) : Model\n {\n return $this->getModel()->create($data);\n }", "public function save($update = true) {}", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();", "public function save();" ]
[ "0.68632555", "0.6751543", "0.65724623", "0.65267664", "0.64498085", "0.64472497", "0.6422789", "0.63727397", "0.63679844", "0.6356913", "0.6337472", "0.63374543", "0.63222146", "0.63199204", "0.6308122", "0.62962866", "0.628792", "0.62776804", "0.62393934", "0.6238909", "0.623488", "0.623488", "0.62191993", "0.6211508", "0.6208367", "0.62024605", "0.6192089", "0.6148632", "0.61393017", "0.612703", "0.61269593", "0.6115577", "0.60932845", "0.6081485", "0.60766125", "0.6069236", "0.6069236", "0.6011284", "0.6010056", "0.6005907", "0.6004989", "0.597699", "0.5976718", "0.59695196", "0.596561", "0.5935834", "0.59343106", "0.59295774", "0.59123605", "0.5908755", "0.5895855", "0.589551", "0.58780557", "0.58744526", "0.58660793", "0.58656967", "0.5865448", "0.58592016", "0.5854533", "0.58544856", "0.58468986", "0.58404934", "0.5835767", "0.58272386", "0.5826693", "0.58249676", "0.581979", "0.581609", "0.5809838", "0.57840204", "0.57795715", "0.57781506", "0.576141", "0.5754536", "0.575217", "0.5732165", "0.5731254", "0.5713294", "0.5706166", "0.5701304", "0.57011724", "0.56994075", "0.5696256", "0.5684315", "0.56753606", "0.5670195", "0.5666848", "0.5662786", "0.5662025", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265", "0.5659265" ]
0.0
-1
Get the parent relation.
public function getParentRelation() { return $this->parentRelation; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function parent()\n {\n return $this->hasOne($this,'id', 'parent_id');\n }", "public function getRelationParentId();", "public function parent(){\n return $this->where('id', $this->parent_id)->first();\n }", "protected function get_parent()\r\n {\r\n return $this->parent;\r\n }", "function get_parent() {\n return $this->get_mapped_property('parent');\n }", "public function parent() {\n return $this->belongsTo(self::class, 'parent_id');\n }", "public function get_parent() {\n\t\treturn $this->parent();\n\t}", "public function parent()\n {\n return $this->belongsTo(self::class, 'parent_id');\n }", "public function parent()\n {\n return $this->belongsTo(self::class, 'parent_id');\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n }", "public function getParent() {\n return $this->parent;\n }", "public function parent()\n {\n return $this->belongsToOne(static::class, 'parent_id');\n }", "public function parent(): HasOne\n {\n return $this->hasOne(Category::class, 'id', 'parent_id');\n }", "public function getParent() {\n return $this->__parent;\n }", "public function parent() {\n\t\treturn $this->hasOne(Forum::getSectionClass(), \"parent_id\");\n\t}", "public function getParent()\n\t{\n\t\treturn $this->parent;\n\t}", "public function getParent()\n\t{\n\t\treturn $this->parent;\n\t}", "public function parent() : HasOne\n {\n return $this->hasOne('App\\Category', 'parent_id');\n }", "public function parent()\n {\n return $this->belongsTo(self::class);\n }", "public function getParent() {\n\t\treturn $this->parent;\n\t}", "public function getParent() {\n\t\treturn $this->parent;\n\t}", "public function getParent() {\n\t\t\treturn $this->parent;\n\t\t}", "public function parent() {\n\n return $this->hasOne('Topic', 'topic_id', 'parent_topic_id');\n\n }", "final public function getParent()\n\t{\n\t\treturn $this->parent;\n\t}", "public function parent()\n {\n if ($this->parent_id == null) {\n return null;\n }\n return $this->hasOne(Config::get('guardian.role'), 'id', 'parent_id');\n }", "public function parentRecord()\r\n {\r\n return $this->_parent;\r\n }", "public function getParent() {\n\t\treturn $this->_parent;\n\t}", "public function getParent()\n {\n if (! $this->parentrecord) {\n list($this->parentrecord, $unused) = self::getParentAndChild($this->flatpath);\n }\n return $this->parentrecord;\n }", "public function parent() {\n return $this->parent;\n }", "public function getParent()\n {\n return $this->parent;\n\n }", "public function parent()\r\n\t{\r\n\t\treturn $this->parent;\r\n\t}", "public function getParent()\n {\n return $this->hasOne(Taxonomy::className(), ['id' => 'parent_id']);\n }", "public function getRelationParentRealId();", "public function parent()\n {\n return $this->belongsTo(config('rbac.models.role'),'parent_id');\n }", "function getParent () {\r\n\t\treturn $this->_parent;\r\n\t}", "function getParent () {\r\n\t\treturn $this->_parent;\r\n\t}", "public function getParentID()\n {\n return $this->parent_id;\n }", "public function getParent()\n {\n return $this->hasOne(Pages::className(), ['id' => 'parent_id']);\n }", "public function parent()\n {\n return $this->belongsTo('App\\Models\\Category', 'parent_id', 'id');\n }", "public function parent(): \\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\n {\n return $this->belongsTo('App\\Models\\Category', 'parent_id');\n }", "public function getParent(){\n\t\treturn $this->father;\n\t}", "function get_parent()\r\n {\r\n return $this->parent;\r\n }", "function get_parent()\r\n {\r\n return $this->parent;\r\n }", "public function getParent(){\n return $this->_parent;\n }", "public function getParent()\n {\n return $this->hasOne(CommentBlog::className(), ['id' => 'parentId']);\n }", "public function Parent()\n\t{\n\t\treturn Category::findOrFail($this->category_id);\n\t}", "public function getParentId()\n {\n return $this->parent_id;\n }", "public function getParentId()\n {\n return $this->parent_id;\n }", "public function getIdParent()\n {\n return $this->id_parent;\n }", "public function parent()\n {\n return $this->belongsTo(Category::class, 'parent_id', 'id');\n }", "public function parent()\n {\n return $this->belongsTo(static::class, 'parent_id');\n }", "public function parent()\n {\n if ( !$this->loaded )\n $this->reload();\n\n if ($this->is_root())\n return NULL;\n\n if ( ! in_array('parent', $this->_objects) )\n {\n $sql = \"SELECT * FROM $this->_table_name\n WHERE \n $this->primary_column = $this->parent_key\n ORDER BY \". $this->_sorting[0] .\" \". $this->_sorting[1] .\"\n \";\n\n $result = $this->_db->query($sql);\n\n $this->_objects['parent'] = $this->factory_set($result)[0];\n }\n\n return $this->_objects['parent'];\n }", "public function getParentIdentifier()\n {\n return $this->parent;\n }", "public function getParentId()\n\t{\n\t\treturn $this->parent_id;\n\t}", "public function parent()\n {\n return $this->belongsTo('App\\Category', 'parent_id');\n }", "public function parent()\n {\n return $this->belongsTo('Amerhendy\\Employment\\App\\Models\\Base\\Menu', 'parent_id');\n }", "public function parent(){\n return $this->belongsTo(self::class, 'parent_id');\n }", "public function parent(): BelongsTo\n\t{\n\t\treturn $this->belongsTo('App\\Models\\Album', 'parent_id', 'id');\n\t}", "public function getParent_id() {\n\t\treturn $this->parent_id;\n\t}", "public function parent(): BelongsTo\n\t{\n\t\treturn $this->belongsTo('App\\Models\\BaseAlbumImpl', 'parent_id', 'id');\n\t}", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function getParent();", "public function parent()\n {\n return $this->belongsTo(EmailProxy::modelClass(), 'parent_id');\n }", "public function parent(): BelongsTo\n {\n return $this->belongsTo(static::class, $this->parent);\n }", "final public function getParent() {\n\t\treturn $this->_parentNode;\n\t}", "public function getParent() {}", "public function getParent() {}", "public function getParent() {}", "public function getParent() {}", "public function getParent() {}" ]
[ "0.8066419", "0.78975856", "0.7741461", "0.7730668", "0.77237266", "0.7598691", "0.75645393", "0.75500625", "0.75500625", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7547722", "0.7519645", "0.74949586", "0.74929285", "0.74826276", "0.7473205", "0.745124", "0.745124", "0.7447436", "0.7446491", "0.74450284", "0.74450284", "0.7425631", "0.7420482", "0.73977405", "0.73975635", "0.739509", "0.7382591", "0.7374977", "0.73747", "0.7346513", "0.7321807", "0.7317908", "0.7317408", "0.7284197", "0.72697645", "0.72697645", "0.72526425", "0.72504807", "0.7248793", "0.724303", "0.7234403", "0.722172", "0.722172", "0.7219448", "0.7217061", "0.72140825", "0.7195938", "0.7195938", "0.71411204", "0.71382517", "0.7137441", "0.713075", "0.7123634", "0.7122152", "0.71215755", "0.71153325", "0.7090802", "0.7089839", "0.7088931", "0.70748967", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7059913", "0.7049342", "0.7043751", "0.70402825", "0.7033324", "0.7033324", "0.7033324", "0.7033324", "0.7033324" ]
0.8587196
0
Determine if the new and old values for a given key are numerically equivalent.
protected function originalIsNumericallyEquivalent($key) { $current = $this->attributes[$key]; $original = $this->original[$key]; // Date comparison. if (in_array($key, $this->getDates())) { $current = $current instanceof Timestamp ? $this->asDateTime($current) : $current; $original = $original instanceof Timestamp ? $this->asDateTime($original) : $original; return $current == $original; } return parent::originalIsNumericallyEquivalent($key); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function originalIsNumericallyEquivalent($key)\n {\n $current = $this->attributes[$key];\n\n $original = $this->original[$key];\n\n return is_numeric($current) && is_numeric($original) && strcmp((string) $current, (string) $original) === 0;\n }", "protected function compare($new, $old)\n {\n $numeric = is_numeric($new) && is_numeric($old);\n if ($numeric) {\n // numeric, compare loosely\n return $new == $old;\n } else {\n // non-numeric, compare strictly\n return $new === $old;\n }\n }", "public function testUpdateValuesContainNumbers(): void { }", "public function isNumeric()\n {\n if ($this->isEmpty()) {\n return false;\n }\n\n foreach ($this->getKeys() as $key) {\n if (!is_int($key)) {\n return false;\n }\n }\n\n return true;\n }", "private function isChangedElement(array $old, array $new): bool\n\t{\n\t\t$checkedFields = [\n\t\t\t'STORE_FROM' => 'intval',\n\t\t\t'STORE_TO' => 'intval',\n\t\t\t'ELEMENT_ID' => 'intval',\n\t\t\t'AMOUNT' => 'floatval',\n\t\t\t'PURCHASING_PRICE' => 'floatval',\n\t\t\t'BASE_PRICE' => 'floatval',\n\t\t\t'BASE_PRICE_EXTRA' => 'floatval',\n\t\t\t'BASE_PRICE_EXTRA_RATE' => 'strval',\n\t\t\t'COMMENT' => 'strval',\n\t\t];\n\n\t\tforeach ($checkedFields as $name => $typeCallback)\n\t\t{\n\t\t\t$oldValue = call_user_func($typeCallback, $old[$name] ?? null);\n\t\t\t$newValue = call_user_func($typeCallback, $new[$name] ?? null);\n\n\t\t\tif ($oldValue !== $newValue)\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}", "public function isEqual(string $key, $val) : bool;", "public static function compareParams(array $oldParams, array $newParams): bool\n\t{\n\t\t// todo: or compare just file ids?\n\t\tunset(\n\t\t\t$oldParams['valueBefore'], $newParams['valueBefore'],\n\t\t\t$oldParams['type'], $newParams['type']\n\t\t);\n\n\t\treturn $oldParams === $newParams;\n\t}", "public static function compareParams(array $oldParams, array $newParams): bool\n\t{\n\t\treturn $oldParams === $newParams;\n\t}", "function record_event_equal($old_data,$new_data) {\n\t\tforeach(array_reverse($old_data) as $i => $data) {\n\t\t\tif($data[\"record\"] == $new_data[\"record\"] && $data[\"event\"] == $new_data[\"event\"]) {\n\t\t\t\tif($data[\"field_name\"] == $new_data[\"field_name\"] && $data[\"value\"] == $new_data[\"value\"]) {return true;}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}", "public function compareDataTo($key, BL_CustomGrid_Object $object)\n {\n $value = $this->getData($key);\n $otherValue = $object->getData($key);\n return ($value > $otherValue ? 1: ($value < $otherValue ? -1 : 0));\n }", "function accept()\n {\n return is_numeric($this->key());\n }", "public function compareIntDataTo($key, BL_CustomGrid_Object $object)\n {\n $value = (int) $this->getData($key);\n $otherValue = (int) $object->getData($key);\n return ($value > $otherValue ? 1: ($value < $otherValue ? -1 : 0));\n }", "function _are_attrs_modified($old_slice, $new_slice) {\n return $old_slice['index'] != $new_slice['index'];\n }", "private function isInverseMatch(): bool\n {\n return is_int($this->min) and is_int($this->max) and ($this->min > $this->max);\n }", "protected function willChange($key)\n {\n return null !== $this->getCurrent($key);\n }", "public function getValueCompare();", "public function testIsNumeric() {\n $this->assertTrue(Hash::isNumeric(array('123', 456)));\n $this->assertTrue(Hash::isNumeric(array('foo' => 123, 'number' => '456')));\n\n $this->assertFalse(Hash::isNumeric(array('foo', 'bar')));\n $this->assertFalse(Hash::isNumeric(array('foo' => 'bar', 'number' => '123')));\n $this->assertFalse(Hash::isNumeric(array('bar', '123')));\n $this->assertFalse(Hash::isNumeric(array(null)));\n $this->assertFalse(Hash::isNumeric(array(true)));\n $this->assertFalse(Hash::isNumeric(array(false)));\n $this->assertFalse(Hash::isNumeric(array(array())));\n $this->assertFalse(Hash::isNumeric(array(new stdClass())));\n }", "public function testAssertEqualsWithDelta() {\n\t\t$this->assertEqualsWithDelta( 2.3, 2.5, 0.5 );\n\t}", "function d2d_public_key_eql($key1, $key2) {\n\t$key1 = d2d_clean_public_key($key1);\n\t$key2 = d2d_clean_public_key($key2);\n\treturn $key1 === $key2;\n}", "private function checkNumberField ($attribute)\n {\n $currentValue = $this->model->getAttribute($attribute);\n $originalValue = $this->model->getOriginal($attribute);\n\n if ( !( is_numeric($currentValue) || is_numeric($originalValue) ) ) return true;\n\n if ( round($currentValue, 2) == round($originalValue, 2) ) return false;\n\n return true;\n }", "function compare_array_item($setting, $existing) {\r\n\t$existing = (array)$existing;\r\n\tunset($setting['site_id']);\r\n\tunset($setting['_id']);\r\n\tunset($existing['_id']);\r\n\tunset($existing['site_id']);\r\n\tforeach($setting as $key => $value) {\r\n\t\tif(!is_array($setting[$key])) {\r\n\t\t\tif($setting[$key] != $existing[$key]){\r\n\t\t\t\techo \"setting key {$key} value {$value} differs from {$existing[$key]} - \";\r\n\t\t\t\t// print_r($setting);\r\n\t\t\t\tprint_r($existing);\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t}\r\n\t\tif(is_array($setting[$key])) {\r\n\t\t\t$diff = array();\r\n\t\t\t$diff = array_diff_assoc($setting[$key], (array)$existing[$key]);\r\n\t\t\tif(!empty($diff)) {\r\n\t\t\t\techo \"setting subkey {$key} differs diff count \". count($diff).\"\\n\";\r\n\t\t\t\t// print_r($diff);\r\n\t\t\t\t// print_r($setting);\r\n\t\t\t\t// print_r($existing);\r\n\t\t\t\treturn true;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn false;\r\n}", "public function testKeyCasting()\n {\n $arr = [];\n $arr[] = 'a';\n $arr[\"1\"] = 'b';\n $arr[\"01\"] = 'c';\n $arr[true] = 'd';\n $arr[0.5] = 'e';\n $arr[false] = 'f';\n $arr[null] = 'g';\n\n // Which keys will have $arr\n //$this->assertEquals(?, array_keys($arr));\n\n // Which values will have $arr\n //$this->assertEquals(?, array_values($arr));\n }", "public function hasOldPrice(){\n return $this->_has(17);\n }", "public function checkDiff()\n {\n if ($this->tokensOriginal !== $this->tokensMutated) {\n return true;\n }\n\n return false;\n }", "final protected function shouldHaveNumericalKeys ($value) {\n\t\t$arguments = func_get_args();\n\t\tforeach ($arguments as $argument) {\n\t\t\tif (!is_array($argument)) {\n\t\t\t\treturn $this->fail();\n\t\t\t} else {\n\n\t\t\t\t// Fail if incorrect key found\n\t\t\t\tforeach (array_keys($argument) as $key) {\n\t\t\t\t\tif (!is_int($key)) {\n\t\t\t\t\t\treturn $this->fail();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\treturn $this->pass();\n\t}", "private function save_plus_minus_votes()\n {\n $result = true;\n foreach ($this->votes_plus as $vote) {\n if (! empty( $vote)) {\n if (! $this->save_one_vote( $vote, 1,0) ) {\n $result = false;\n }\n }\n }\n foreach ($this->votes_minus as $vote) {\n if (! empty( $vote)) {\n if (! $this->save_one_vote( $vote, 0,1)) {\n $result = false;\n };\n }\n }\n return $result;\n }", "public function isSameScoreDifference() {\n \n if (false === isset($this->intRealHomeScore) || false === isset($this->intBetHomeScore)) {\n throw new \\BadMethodCallException(\"Real and bet results must be set\");\n }\n \n return $this->intRealHomeScore - $this->intRealAwayScore === $this->intBetHomeScore - $this->intBetAwayScore;\n }", "protected function isEqual($key, $value1, $value2) {\n\t\tif($key) {} // intentional to avoid unused argument notice\n\t\t// $key intentionally not used here, but may be used by descending classes\n\t\treturn $value1 === $value2; \t\n\t}", "function SetupKeyValues($key) {\n\t\t$sKeyFld = $key;\n\t\tif (!is_numeric($sKeyFld))\n\t\t\treturn FALSE;\n\t\t$this->product_id->CurrentValue = $sKeyFld;\n\t\treturn TRUE;\n\t}", "public function renameNx(string $key, string $newKey): bool\n {\n return $this->redis->renameNx($key, $newKey);\n }", "function check_update($current, $new) {\n\tif (!isset($current) || !isset($new) ||\n\t !isset($current['version']) || !isset($new['version']) ||\n\t !isset($new['platform'])) {\n\t\treturn false;\n\t}\n\n\tif ($new['platform'] == \"4100\") {\n\t\tif (strlen($current['version']) != 21 ||\n\t\t strlen($new['version']) != 21 ||\n\t\t strpos($current['version'], '-2Ct-uc-') != 11 ||\n\t\t strpos($new['version'], '-2Ct-uc-') != 11) {\n\t\t\treturn false;\n\t\t}\n\t\t$curver = str_replace(array(\".\", \"-2Ct-uc-\"), \"\", $current['version']);\n\t\t$newver = str_replace(array(\".\", \"-2Ct-uc-\"), \"\", $new['version']);\n\t} elseif ($new['platform'] == \"6100\") {\n\t\tif (strlen($current['version']) != 18 ||\n\t\t strlen($new['version']) != 18 ||\n\t\t strpos($current['version'], 't-uc-') != 11 ||\n\t\t strpos($new['version'], 't-uc-') != 11) {\n\t\t\treturn false;\n\t\t}\n\t\t$curver = str_replace(array(\".\", \"t-uc-\"), \"\", $current['version']);\n\t\t$newver = str_replace(array(\".\", \"t-uc-\"), \"\", $new['version']);\n\t} else {\n\t\treturn ($current['version'] != $new['version']);\n\t}\n\n\treturn (intval($newver) > intval($curver));\n}", "function DiferentKeys($keys_home, $keys_sync) {\r\n \tif (count($keys_home) != count($keys_sync)) {\r\n \treturn true;\r\n }\r\n\r\n for ($i = 0; $i < count($keys_home); $i++) {\r\n \tif ($keys_home[$i] != $keys_sync[$i]) {\r\n \treturn true;\r\n }\r\n }\r\n\r\n return false;\r\n }", "public function existing_instance_is_different($inst_id, $nom_intern, $values, $status = 'O', &$difference, &$attr_difference) {\n\t\t// -2 status is different\n\t\t// -3 nom_intern is different\n\t\t// -4 some value is different\n\t\t// -5 some value not exists in current instance\n\t\t// 0 same!\n\t\tif (!$this->exist_instance($inst_id))\n\t\t\treturn -1;\n\n\t\t$current_inst = $this->get_instance($inst_id);\n\t\tif ($status != $current_inst['status']) {\n\t\t\t$difference = -1;\n\t\t\treturn true;\n\t\t}\n\n\t\tif ($nom_intern != $current_inst['key_fields']) {\n\t\t\t$difference = -2;\n\t\t\treturn true;\n\t\t}\n\n\t\t$existing_attributes = array();\n\t\tforeach ($current_inst['values'] as $row) {\n\t\t\t$existing_attributes[] = $row['name'];\n\t\t\tif (array_key_exists($row['name'], $values)) {\n\t\t\t\tif (!empty($row['text_val']) && $values[$row['name']] != $row['text_val']) {\n\t\t\t\t\t$difference = -4;\n\t\t\t\t\t$attr_difference = $row['name'];\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tif (!empty($row['num_val']) && $values[$row['name']] != $row['num_val']) {\n\t\t\t\t\t$difference = -4;\n\t\t\t\t\t$attr_difference = $row['name'];\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tif (!empty($row['date_val']) && $values[$row['name']] != $row['date_val']) {\n\t\t\t\t\t$difference = -4;\n\t\t\t\t\t$attr_difference = $row['name'];\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tforeach ($values as $key => $val) {\n\t\t\tif (!in_array($key, $existing_attributes)) {\n\t\t\t\t$difference = -5;\n\t\t\t\t$attr_difference = $key;\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\n\n\t\t$difference = 0;\n\t\treturn false;\n\t}", "private function isNumeric()\n {\n foreach (array_keys($this->options) as $key) {\n if (!is_int($key)) {\n return false;\n }\n }\n\n return true;\n }", "public function isValidKey($key) {\n\t\treturn is_int($key);\n\t}", "abstract function isStoreOutdated(string $storeKey): bool;", "private function numeric($map)\n\t{\n\t\tif(is_array($map[\"values\"]))\n\t\t{\n\t\t\t$valid = true;\n\t\t\t$filter_vals = array_filter($map[\"values\"], \"is_numeric\");\n\t\t\t$valid = (count($filter_vals) == count($map[\"values\"]));\n\t\t}\n\t\telse \n\t\t{\n\t\t\t$valid = is_numeric($map[\"values\"]);\n\t\t}\n\t\t\n\t\tif(!$valid)\n\t\t{\n\t\t\t$this->errors[$map[\"id\"]] = $map[\"error\"];\n\t\t}\n\t\treturn $valid;\n\t}", "public static function is_numeric_array_key($input)\n {\n }", "public function testIntegerKey()\n {\n $arr = [];\n $arr[] = 'a';\n $arr[] = 'b';\n $arr[] = 'c';\n\n // Which index will have 'c'?\n //$this->assertEquals(?, array_key_last($arr));\n\n $arr[10] = 'd';\n $arr[] = 'e';\n\n // Which index will have 'e'?\n //$this->assertEquals(?, array_key_last($arr));\n\n $arr['string'] = 'f';\n $arr[] = 'h';\n\n // Which index will have 'h'?\n //$this->assertEquals(?, array_key_last($arr));\n }", "static function is_numeric($array){\n\t\tforeach($array as $k=>$v){\n\t\t\tif(!is_int($k)){\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}", "public function update($key, $newvars, $oldvars)\n {\n $ts = microtime(true);\n\n if ($newvars !== $oldvars || $ts - $this->changed > $this->lifetime / 3) {\n $data = serialize(array('changed' => time(), 'ip' => $this->ip, 'vars' => $newvars));\n $result = $this->memcache->set($key, $data, MEMCACHE_COMPRESSED, $this->lifetime + 60);\n\n if ($this->debug) {\n $this->debug('set', $key, $data, $result);\n }\n\n return $result;\n }\n\n return true;\n }", "protected function _hasTierPriceChanged(Mage_Catalog_Model_Product $product)\n\t{\n\t\t$orig = $product->getOrigData('tier_price');\n\t\t$new = $product->getData('tier_price');\n\t\t\n\t\tif (count($orig) != count($new)) return true;\n\n\t\tif (is_array($new))\n\t\t{\n\t\t\tforeach ($new as $i => $tier)\n\t\t\t{\n\t\t\t\tif ($tier['website_id'] != $orig[$i]['website_id']) return true;\n\n\t\t\t\tif ($tier['price_qty'] != $orig[$i]['price_qty']) return true;\n\n\t\t\t\tif ($tier['price'] != $orig[$i]['price']) return true;\n\n\t\t\t\tif (isset($tier['delete']) && $tier['delete']) return true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}", "public function hasChanges(Tracker_Artifact_ChangesetValue $old_value, $new_value) { \n return false; \n }", "public function hasDifference() {return !!$this->_calculateDifference();}", "function c_text_to_num($key) \r\n {\r\n\r\n\t\t// Example \r\n \t$data = array(\r\n \t\t\"off\" => 0,\r\n \t\t\"on\" => 1\r\n \t);\r\n \t\r\n \t$result = $data[$key];\r\n \r\n \tif(is_null($result))\r\n \t{\r\n \t\treturn false;\r\n \t}\r\n \telse \r\n \t{\r\n \t\treturn $result;\t\r\n \t}\r\n\r\n }", "public function calc($key);", "protected function is_a_numeric_post_field( $key ) {\n\t\treturn in_array( $key, array( 'ID', 'post_author', 'post_parent', 'menu_order', 'comment_count' ) );\n\t}", "function is_fraction($x) {\n global $Fractions;\n foreach($Fractions as $key => $val) {\n //echo $x . \" \" . $key . \" \" . $val . \"<br />\";\n \n if($x == $key) {\n //echo $x . \" \" . $key . \" \" . $val . \"<br />\";\n return true;\n }\n }\n return false;\n}", "public function hasChanged() {\n\t\treturn trim( $this->fileSize ) != trim( $this->currentSize );\n\t}", "protected function _key($cikey, &$actualKey)\n {\n foreach($this->_keyValPairs as $key => $value)\n {\n if(strcasecmp($key, $cikey) == 0)\n {\n $actualKey = $key;\n return true;\n }\n }\n\n return false;\n }", "public function hasNewPrice(){\n return $this->_has(16);\n }", "public function isk_compare($a, $b) {\n\t\t/*\n\t\t * cast to int since it might be misbehaving with float\n\t\t *\n\t\t */\n\t\t$t1 = $a ['total'];\n\t\t$t2 = $b ['total'];\n\t\t\n\t\treturn $t2 - $t1;\n\t\t// return $t2 - $t1;\n\t}", "public function hasFixedValue();", "public function isKeyModified(string $key)\n\t{\n\t\tif(((array_key_exists($key, $this->keyModified))))\n\t\t{\n\t\t\treturn $this->keyModified[$key]; \n\n\t\t}\n\t\treturn null; \n\n\t}", "public function isKeyModified(string $key)\n\t{\n\t\tif(((array_key_exists($key, $this->keyModified))))\n\t\t{\n\t\t\treturn $this->keyModified[$key]; \n\n\t\t}\n\t\treturn null; \n\n\t}", "public function isKeyModified(string $key)\n\t{\n\t\tif(((array_key_exists($key, $this->keyModified))))\n\t\t{\n\t\t\treturn $this->keyModified[$key]; \n\n\t\t}\n\t\treturn null; \n\n\t}", "public function isKeyModified(string $key)\n\t{\n\t\tif(((array_key_exists($key, $this->keyModified))))\n\t\t{\n\t\t\treturn $this->keyModified[$key]; \n\n\t\t}\n\t\treturn null; \n\n\t}", "public function hasChanges(Tracker_Artifact_ChangesetValue $old_value, $new_value) {\n // Submitted On is never updated\n return false;\n }", "protected function compareNumeric( IDBColumnDefinition $other ) {\n\n\t\t$definitionResults = array();\n\t\t$canUpdateColumn = DBTableDefinition::SAFE_UPDATE_TRUE;\n\n\t\tforeach ( self::$columnDefinitions as $definition ) {\n\n\t\t\t$ownValue = $this->columnSchema[ $definition ];\n\t\t\t$otherValue = $other->getValue( $definition );\n\n\n\t\t\t$canUpdateDefinition = DBTableDefinition::SAFE_UPDATE_UNKNOWN; //TODO: for each definition, check if there's any other definition that might prohibit a safe update (e.g. auto_increment only works on primary key)\n\n\t\t\tif ( $canUpdateDefinition === DBTableDefinition::SAFE_UPDATE_UNKNOWN && $canUpdateColumn == DBTableDefinition::SAFE_UPDATE_TRUE ) { // we don't want to revert from \"false\" to \"unknown\"\n\t\t\t\t$canUpdateColumn = DBTableDefinition::SAFE_UPDATE_UNKNOWN;\n\t\t\t}\n\n\t\t\tif ( $canUpdateDefinition === DBTableDefinition::SAFE_UPDATE_FALSE ) {\n\t\t\t\t$canUpdateColumn = DBTableDefinition::SAFE_UPDATE_FALSE;\n\t\t\t}\n\n\t\t\t$definitionResults[ $definition ] = array(\n\t\t\t\tDBTableDefinition::RESULT_EQUALS => $ownValue === $otherValue,\n\t\t\t\tDBTableDefinition::RESULT_CAN_UPDATE => $canUpdateDefinition,\n\t\t\t\tDBTableDefinition::RESULT_EXPECTED => $ownValue,\n\t\t\t\tDBTableDefinition::RESULT_ACTUAL => $otherValue\n\t\t\t);\n\t\t}\n\n\t\treturn array(\n\t\t\tDBTableDefinition::RESULT_SUMMARY => array(\n\t\t\t\tDBTableDefinition::RESULT_CAN_UPDATE => $canUpdateColumn\n\t\t\t),\n\t\t\tDBTableDefinition::PROPERTIES => $definitionResults\n\t\t);\n\t}", "public function isValid(string $key) : bool;", "public function calculateValuation(): bool\n {\n return 0;\n }", "function is_float_problem() {\n $num1 = 2009010200.01;\n $num2 = 2009010200.02;\n\n return ((string)$num1 === (string)$num2 or $num1 === $num2 or $num2 <= (string)$num1);\n}", "public function testSetAndRetrieveInteger(): void\n {\n $key = \"A test key\";\n $expected = 27;\n $this->testNotStrict->set($key, $expected);\n $actual = $this->testNotStrict->get($key);\n $this->assertEquals($expected, $actual);\n }", "public function has_changes() {\n\t\t\t$properties = array_keys(get_object_vars($this));\n\t\t\t$order = SalesOrderEdit::load($this->sessionid, $this->orderno);\n\n\t\t\tforeach ($properties as $property) {\n\t\t\t\tif ($this->$property != $order->$property) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t}", "public static function calculateChangedValues(array $old, $new, $keys): array\n {\n $result = [];\n foreach ($keys as $key) {\n $oldValue = empty($old[$key]) ? '' : $old[$key];\n $newValue = empty($new[$key]) ? '' : $new[$key];\n if ($oldValue != $newValue) {\n $result[$key] = ['old' => $oldValue, 'new' => $newValue];\n }\n }\n return $result;\n }", "public function renameKey($oldKey, $newKey, $domain = self::DEFAULT_DOMAIN)\n {\n /** @var Translation[] $translationValues */\n $translationValues = $this->findBy(\n [\n 'key' => $oldKey,\n 'domain' => $domain\n ]\n );\n $result = false;\n foreach ($translationValues as $translationValue) {\n $translationValue->setKey($newKey);\n $this->getEntityManager()->persist($translationValue);\n $result = true;\n }\n\n return $result;\n }", "public function validate()\n {\n return $_POST['formkey'] === $this->oldFormkey;\n }", "public function changedAndEnabled($key)\n {\n $changed = $this->hasChanged($key);\n\n return ($changed && $this->$key === true);\n }", "public function calculateEquityValue(): bool\n {\n return true;\n }", "public function isSameTendency() {\n \n if (false === isset($this->intRealHomeScore) || false === isset($this->intBetHomeScore)) {\n throw new \\BadMethodCallException(\"Real and bet results must be set\");\n }\n \n return \n ($this->intRealHomeScore < $this->intRealAwayScore && $this->intBetHomeScore < $this->intBetAwayScore) \n || ($this->intRealHomeScore > $this->intRealAwayScore && $this->intBetHomeScore > $this->intBetAwayScore) \n || ($this->intRealHomeScore === $this->intRealAwayScore && $this->intBetHomeScore === $this->intBetAwayScore);\n }", "function cp_arrayIsSame($array1, $array2,$keys){\r\n\r\n foreach($keys as $key){\r\n if($array1[$key] != $array2[$key]){\r\n return false;\r\n }\r\n }\r\n\r\n return true;\r\n}", "function _fourD_analysis_validate_decimal_old( $d ) {\n \n if( is_numeric($d) ){\n \n $min = 0.0;\n $max = 1.0;\n $epsilon = 1e-11; // extra bit to satisfy equality check of a 1e-10 decimal precision\n \n if( $d > $min + $epsilon && $d < $max - $epsilon ){\n return true;\n }\n }\n return false;\n}", "function compareByRecentIncrement ($a, $b) {\n\t\t\t\treturn $b[\"tracking\"][0][\"increment\"] - $a[\"tracking\"][0][\"increment\"];\n\t\t\t}", "function df_is_int($v):bool {return is_numeric($v) && ($v == (int)$v);}", "public function testAssertNotEqualsWithDelta() {\n\t\tself::assertNotEqualsWithDelta( 2.3, 3.5, 0.5 );\n\t}", "protected function checkOffset($key){\r\n if(isset($this->_registry[$key]))\r\n return true;\r\n\r\n return false;\r\n }", "protected final function _isValidFloat($key,$value){\n\n if(!is_numeric($value)){\n return $this->setError($key,\"`{$key}` must be numeric\");\n }//if\n\n if(!$this->_isBetweenMinAndMax($key,$value)){\n return false;\n }//if\n\n return true;\n\n }", "function d2d_check_convert_int(&$x) {\n $y = intval($x);\n if ($x != strval($y)) {\n return FALSE;\n }\n else {\n $x = $y;\n return TRUE;\n }\n}", "protected final function _isValidInt($key,$value){\n\n if(!is_numeric($value) || strpos($value,'.') !== false){\n return $this->setError($key,\"`{$key}` must be a integer\");\n }//if\n\n if(!$this->_isBetweenMinAndMax($key,$value)){\n return false;\n }//if\n\n return true;\n\n }", "function _is_geometry_modified($old_slice, $new_slice) {\n $old_nodes_ids = array_keys($old_slice['nodes']);\n $new_nodes_ids = array_keys($new_slice['nodes']);\n if ($old_nodes_ids != $new_nodes_ids)\n return true;\n\n foreach ($new_slice['nodes'] as $node) {\n if (isset($node['action']))\n return true;\n }\n\n return false;\n }", "private function compareConfiguration($existingConfiguration, $newConfiguration)\n {\n $overrides = [];\n \n foreach ($newConfiguration as $key => $value) {\n if (array_key_exists($key, $existingConfiguration) && $value !== $existingConfiguration[$key]) {\n $overrides[$key] = [\n 'current' => $existingConfiguration[$key],\n 'afterUpdate' => $this->cleanValue($value)\n ];\n }\n }\n \n if (count($overrides)) {\n $this->addError('Several values would be overridden. Check Details for a complete list.', $overrides);\n return false;\n }\n \n return true;\n }", "function key_compare_func($a, $b) {\n if ($a === $b) {\n return 0;\n }\n return ($a > $b) ? 1 : -1;\n}", "function wppb_check_serial_number_fix($newvalue, $oldvalue){\r\n\r\n\tif ( $newvalue == $oldvalue )\r\n\t\twppb_check_serial_number( $oldvalue, $newvalue );\r\n\r\n\treturn $newvalue;\r\n}", "function is_numerically_indexed_array( $arr ){\n\t\t\n\t\tforeach($arr as $key=>$val){\n\t\t\tif( !is_numeric($key) ){\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn true;\n\t}", "public function testKeyValueEquality()\n {\n $comparison = $this->parser->parse(\n 'benchmark: \"Foobar\"'\n );\n\n $this->assertEquals(\n new Comparison('$eq', 'benchmark', 'Foobar'),\n $comparison\n );\n }", "function checkKey($keyValue,$keyArray,$deckArray) {\r\n // Count how many of each card are in our key array\r\n $valueCount = array_count_values($keyArray);\r\n if (array_key_exists($keyValue, $valueCount) == true) {\r\n $keyCount = $valueCount [$keyValue];\r\n $maxInDeck = $deckArray [$keyValue] [3];\r\n if ($keyCount > $maxInDeck) {\r\n return -1;\r\n }\r\n else {\r\n return 1;\r\n }\r\n }\r\n Else {\r\n return 2;\r\n }\r\n }", "public function notEqual($num)\n {\n $num = $this->format($num);\n\n return $this->value != $num;\n }", "protected function isUnchanged() {}", "protected static function sortByKeyNumericCallback($a, $b)\n {\n // temp. setting elements with key and zero values, if missing in child array\n if (! array_key_exists(self::$sortKey, $a) || is_null($a[self::$sortKey])) {\n $a[self::$sortKey] = 0;\n }\n if (! array_key_exists(self::$sortKey, $b) || is_null($b[self::$sortKey])) {\n $b[self::$sortKey] = 0;\n }\n\n // sort order ascending\n if (self::$sortOrder == 'asc') {\n // return 0 if equals\n if ($a[self::$sortKey] == $b[self::$sortKey]) {\n return 0;\n // -1 if less, or 1 if greater\n // @TODO : using Php 7+'s new operators ??\n } else {\n return ((float) $b[self::$sortKey]) < ((float) $a[self::$sortKey]) ? 1 : - 1;\n }\n } elseif (self::$sortOrder == 'desc') { // or sort order descending\n // return 0 if equals\n if ($a[self::$sortKey] == $b[self::$sortKey]) {\n return 0;\n // 1 if less, or -1 if greater\n } else {\n return ((float) $b[self::$sortKey]) > ((float) $a[self::$sortKey]) ? 1 : - 1;\n }\n }\n }", "public function changed() {\n\t\t\tif (!$this->original_data) {\n\t\t\t\tthrow new Exception('call exists() before calling changed()');\n\t\t\t}\n\t\t\t\n\t\t\tif ($this->last_change != $this->original_last_change ||\n\t\t\t $this->last_change_reason != $this->original_last_change_reason ||\n\t\t\t $this->lanes_affected != $this->original_lanes_affected ||\n\t\t\t $this->traffic_impact != $this->original_traffic_impact ||\n\t\t\t $this->reason != $this->original_reason) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\treturn false;\n\t\t}", "private static function _update_item_meta($item_id, $meta_key, $meta_value, $unique, $prev_value='')\n\t{\n\t\t$meta_key = is_string($meta_key) ? trim($meta_key) : $meta_key; //field key: e.g 'matric_no'\n\t\t$meta_value = is_string($meta_value) ? trim($meta_value) : $meta_value; //field value\n\t\t$prev_value = isset($prev_value) ? $prev_value : '';\n\t\t$prev_value = is_string($prev_value) ? trim($prev_value) : $prev_value;\n\t\t\n\t\t//if( empty($meta_key) || empty($meta_value))\n\t\tif( empty($meta_key) || $meta_value == '' )\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t\n\t\t// Compare existing value to new value if no prev value given and the key exists only once.\n\t\tif ( empty($prev_value) )\n\t\t{\n\t\t\t$old_value = ItemManager::get_item_data($item_id, $meta_key);\n\t\t\tif ( count($old_value) == 1 ) \n\t\t\t{ \n\t\t /*\n\t\t\t\tif(is_array($old_value))\n\t\t\t\t{\n\t\t\t\t\tif( isset($old_value['meta_value']) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$old_value = $old_value['meta_value'];\n\t\t\t\t\t}\n\t\t\t\t\telseif( isset($old_value[0]) )\n\t\t\t\t\t{\n\t\t\t\t\t\t$old_value = $old_value[0];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$compare_value = $old_value;\n\t\t\t\t*/\n\t\t\t\t\n\t\t\t\t$compare_value = ( is_array($old_value) ? $old_value['meta_value'] : $old_value );\n\t\t\t\t\n\t\t\t\tif ( $compare_value === $meta_value ) //if key exists only once, then no need to duplicate same key with same value\n\t\t\t\t{\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// If meta doesn't exist, then and a new meta\n\t\tif ( ! ItemManager::item_meta_exists($item_id, $meta_key) )\n\t\t{\n\t\t\treturn self::_insert_item_meta($item_id, $meta_key, $meta_value, $unique);\n\t\t}\n\n\t\t$where_clause = array( 'item_id'=>$item_id, 'meta_key'=>$meta_key );\n\t\t\n\t\tif ( !empty( $prev_value ) ) \n\t\t{\n\t\t\t$prev_value = Util::is_scalar($prev_value) ? $prev_value : Util::stringify($prev_value);\n\t\t\t$where_clause['meta_value'] = $prev_value;\n\t\t}\n\t\t\n\t\t$meta_value = Util::is_scalar($meta_value) ? $meta_value : Util::stringify($meta_value);\n\t\treturn self::_get_db_object()->update_table_column(ItemManager::get_tables_prefix().\"item_meta\", 'meta_value', $meta_value, $where_clause);\n\t}", "private function changelog_calculate_edit_diff () {\n\t\t//old object - checkboxes that are not present, set them as 0\n\t\tforeach($this->object_old as $k=>$v) {\n\t\t\tif(!isset($this->object_new[$k]) && $v==\"1\") {\n\t\t\t\t$this->object_new[$k] = 0;\n\t\t\t}\n\t\t}\n\t\tforeach ($this->object_new as $k=>$v) {\n\t\t\tif(!isset($this->object_old[$k]) && $v==\"1\") {\n\t\t\t\t$this->object_old[$k] = 0;\n\t\t\t}\n\t\t}\n\t\t// ip address - old needs to be transformed to dotted format\n\t\t$this->object_old['ip_addr'] = $this->Subnets->transform_address($this->object_old['ip_addr'], \"dotted\");\n\t\t$this->object_new['ip_addr'] = $this->Subnets->transform_address($this->object_new['ip_addr'], \"dotted\");\n\n\t\t// check each value\n\t\tforeach($this->object_new as $k=>$v) {\n\t\t\t//change\n\t\t\tif($this->object_old[$k]!=$v && ($this->object_old[$k] != str_replace(\"\\'\", \"'\", $v)))\t{\n\t\t\t\t//empty\n\t\t\t\tif(strlen(@$this->object_old[$k])==0)\t{ $this->object_old[$k] = \"NULL\"; }\n\t\t\t\tif(strlen(@$v)==0)\t\t\t\t\t\t{ $v = \"NULL\"; }\n\n\t\t\t\t//tag change\n\t\t\t\tif($k == 'state') \t\t\t\t{ $v = $this->changelog_format_tag_diff ($k, $v); }\n\t\t\t\t//section change\n\t\t\t\telseif($k == 'sectionIdNew') \t{ $v = $this->changelog_format_section_diff ($k, $v); }\n\t\t\t\t//master subnet change\n\t\t\t\telseif($k == \"masterSubnetId\") \t{ $v = $this->changelog_format_master_subnet_diff ($k, $v); }\n\t\t\t\t//device change\n\t\t\t\telseif($k == 'switch') \t\t\t{ $v = $this->changelog_format_device_diff ($k, $v); }\n\t\t\t\t//vlan\n\t\t\t\telseif($k == 'vlanId') \t\t\t{ $v = $this->changelog_format_vlan_diff ($k, $v); }\n\t\t\t\t//vrf\n\t\t\t\telseif($k == 'vrfId') \t\t\t{ $v = $this->changelog_format_vrf_diff ($k, $v); }\n\t\t\t\t//master section change\n\t\t\t\telseif($k == 'masterSection') \t{ $v = $this->changelog_format_master_section_diff ($k, $v); }\n\t\t\t\t//permission change\n\t\t\t\telseif($k == \"permissions\") \t{ $v = $this->changelog_format_permission_diff ($k, $v); }\n\t\t\t\t// make booleans\n\t\t\t\t$v = $this->changelog_make_booleans ($k, $v);\n\t\t\t\t//set log\n\t\t\t\tif ($k!==\"id\")\n\t\t\t\t$log[\"$k\"] = $this->object_old[$k].\" => $v\";\n\t\t\t}\n\t\t}\n\t\t// result\n\t\treturn $log;\n\t}", "public function valid()\n {\n return $this->isCurrentKeyValid();\n }", "function d2d_check_key_pair($public_key, $private_key) {\n $data = 'just a simple encryption / decryption test.';\n if (!@openssl_public_encrypt($data, $crypted, $public_key)) {\n \treturn FALSE;\n }\n if (!@openssl_private_decrypt($crypted, $decrypted, $private_key)) {\n return FALSE;\n }\n return $decrypted === $data;\n}", "public function valid()\n {\n return $this->key() < $this->filesize;\n }", "public static function isNumericallyIndexed(array $values): bool\n {\n if (empty($values)) {\n return true;\n }\n\n reset($values);\n\n return is_int(key($values));\n }", "private static function unbaseX($key) {\n $int = 0;\n foreach (str_split(strrev($key)) as $i => $char) {\n $dec = array_search(ord($char), self::$chars62);\n $int = bcadd(bcmul($dec, bcpow(self::$range, $i)), $int);\n }\n return $int;\n }", "public function isFixedPointNumber(): bool;", "function check_vals($new, $old, $val, $data = [], $data_s = []) {\n\t$return = '';\n\tif(is_null($new)){\n\t\tif(is_array($data) && sizeof($data) > 0){\n\t\t\t$cond = array_search($old, $data);\n\t\t\tif($cond || (string)$cond == '0'){\n\t\t\t\t$return = $val;\n\t\t\t} else {\n\t\t\t\t$return = \"\";\n\t\t\t}\n\t\t} else {\n\t\t\tif($old){\n\t\t\t\t$return = $val;\n\t\t\t} else {\n\t\t\t\t$return = \"\";\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif(is_array($data) && sizeof($data) > 0){\n\t\t\tif(is_array($data_s) && sizeof($data_s) > 0){\n\t\t\t\t$temp = $data_s;\n\t\t\t} else {\n\t\t\t\t$temp = $data;\n\t\t\t}\n\t\t\t$cond = array_search($new, $temp);\n\t\t\tif($cond || (string)$cond == '0'){\n\t\t\t\t$return = $val;\n\t\t\t} else {\n\t\t\t\t$return = \"\";\n\t\t\t}\n\t\t} else {\n\t\t\tif($new){\n\t\t\t\t$return = $val;\n\t\t\t} else {\n\t\t\t\t$return = \"\";\n\t\t\t}\n\t\t}\n\t}\n\treturn $return;\n}", "public function is_exact()\r\n {\r\n // False otherwise.\r\n return ($this->start == $this->end);\r\n }" ]
[ "0.7283312", "0.60791534", "0.54558617", "0.5333096", "0.53295165", "0.52890915", "0.5142135", "0.51371664", "0.5067589", "0.50477076", "0.49775463", "0.49620834", "0.49551982", "0.49467552", "0.4941775", "0.4924749", "0.49034137", "0.48963267", "0.48748446", "0.486926", "0.48505148", "0.48436335", "0.48143485", "0.48064947", "0.48016685", "0.4797029", "0.4786312", "0.47791687", "0.4778154", "0.47498852", "0.47488657", "0.47335765", "0.4714363", "0.47119504", "0.47092015", "0.47073743", "0.47015744", "0.47006807", "0.46955332", "0.46819532", "0.46736065", "0.46643278", "0.46637172", "0.46578616", "0.4640054", "0.46376792", "0.46241382", "0.46035394", "0.45903125", "0.45814055", "0.4574221", "0.45593116", "0.45586473", "0.45521212", "0.45521212", "0.45521212", "0.45521212", "0.4546443", "0.4543434", "0.45407718", "0.45354238", "0.4530477", "0.45304012", "0.45302728", "0.4515352", "0.4503212", "0.4499892", "0.44978487", "0.44937253", "0.44919646", "0.4490548", "0.44882804", "0.44836962", "0.44816065", "0.44737795", "0.44595242", "0.44543532", "0.445226", "0.44382095", "0.4432979", "0.44286537", "0.44103098", "0.4402447", "0.43951482", "0.43919733", "0.43906435", "0.4386616", "0.4376274", "0.43691486", "0.43584278", "0.4358406", "0.43491533", "0.43445498", "0.43397754", "0.43375722", "0.4337318", "0.43372783", "0.43366802", "0.4333682", "0.43303105" ]
0.7721899
0
split paragraph into an array of strings on the ' '
function wordCount($paragraph) { $words = explode(" ", $paragraph); //initiate word counter $wordsCount = 0; //loop through words array foreach ($words as $word){ //if there word length is greater than 0 (not an empty space) if(strlen($word) > 0){ //increment the word counter $wordsCount++; } } return $wordsCount; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function splitPhrase(){\n $split = array();\n if(strpos($this->text, ' ')!= false){\n $split[0] = substr($this->text, 0, strpos($this->text, ' '));\n $split[1] = substr($this->text, strpos($this->text, ' '));\n }else{\n $split[0] = $this->text;\n $split[1] = \"\";\n }\n return $split;\n }", "function sentence_tokenize($text){\r\n\t\tif (preg_match_all('/[\"\\']*.+?([.?!\\n\\r]+[\"\\']*\\s+|$)/si', $text, $matches, PREG_SET_ORDER)){\r\n\t\t\t$rez = array();\r\n\t\t\tforeach ($matches as $match){\r\n\t\t\t\tarray_push($rez, trim($match[0]));\r\n\t\t\t}\r\n\t\t\treturn $rez;\r\n\t\t} else { \r\n\t\t\treturn array($text);\r\n\t\t}\r\n\t}", "public function breakIntoSentences(string $text): array\n\t{\n\t\treturn preg_split('/(?<=[.?!;:])\\s+/', $text, -1, PREG_SPLIT_NO_EMPTY);\n\t}", "public static function paragraphs( $text = '' ) {\n\t\tif ( empty( $text ) ) {\n\t\t\treturn array();\n\t\t}\n\t\t$paragraphs = array();\n\n\t\t$raw = preg_split( '/\\n/', self::normalize_newlines( $text ), null, PREG_SPLIT_NO_EMPTY );\n\t\tforeach ( $raw as $para ) {\n\t\t\t$para = preg_replace( '/(^\\s+|\\s+$)/', '', $para );\n\t\t\tif ( ! preg_match( '/[[:punct:]]$/', $para ) ) {\n\t\t\t\t$para .= '.';\n\t\t\t}\n\t\t\t$paragraphs[] = $para;\n\t\t}\n\n\t\treturn $paragraphs;\n\t}", "function pre_content($string){\n\n $t = explode(\" \",$string);\n for($j = 0;$j<35;$j++){\n $arr[$j] = $t[$j];\n }\n $text = implode(\" \", $arr);\n return $text;\n //unset($arr);\n}", "function text_to_paragraphs($str)\n{\n return str_replace('<p></p>', '', '<p>'\n . preg_replace('#([\\r\\n]\\s*?[\\r\\n]){2,}#', '</p>$0<p>', $str) . '</p>');\n}", "function _split_str_by_whitespace($text, $goal)\n {\n }", "protected function split_sentences($text)\n {\n $sentence_delimiters = '/[\\.\\!\\?\\,\\;\\:\\t\"\\(\\)\\']|\\s\\-\\s/';\n $matches = [];\n $matches = preg_split($sentence_delimiters, $text);\n return array_map(\"trim\", $matches);\n }", "public function format_text_to_array ($text){\n return preg_split('/\\s*\\R\\s*/', trim($text), NULL, PREG_SPLIT_NO_EMPTY);\n }", "protected function getParagraphs($text) {\n\t\t\n\t\t$return = array();\n\t\tpreg_match_all('#(.+?)(?:\\n\\n|$)#s', $text, $return);\n\t\treturn $return[1];\n\t}", "public function splitText($text)\n\t{\n\t\treturn preg_split('@([<\\[]\\/?[a-zA-Z0-9]+[\\]>])@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_OFFSET_CAPTURE);\n\t}", "function text_split($in) {\r\n\t$len = count($in);\r\n\t$a = substr($in,0,$len/2);\r\n\t$b = substr($in,0,(0-($len/2)));\r\n\treturn array($a,$b);\r\n}", "function w($elements)\n{\n return preg_split('~\\s+~', $elements, -1, PREG_SPLIT_NO_EMPTY);\n}", "function splitPhrase($texte){\r\n //le regex signifie tt ce qui commence par une lettre minuscule ou majuscule suivi\r\n //de tt autre caractere different de . ? et ! ou de . suivi de chiffre 0 ou plusieurs fois\r\n //termine par . ! ou ?\r\n $tableau = [];\r\n preg_match_all('#[A-Za-z]([^.!?]|[.][0-9])*[.!?]#',$texte,$texteCoup);\r\n $lesPhrases = $texteCoup[0];\r\n foreach($lesPhrases as $phrase){\r\n $phrase=trim($phrase);\r\n //les expessions qu'on doit remplacer\r\n $regex=['#[ ]+#', '#[ ]?[\\'][ ]?#', '#[ ]?[,]#', '#[ ]?[;][ ]?#', '#[(][ ]+#','#[ ]+[)]#',\r\n '#[ ]+[.]#', '#[ ][?]#', '#[ ][!]#'];\r\n //leurs remplacants\r\n $remplace=[' ', \"'\", \", \", \"; \",\"(\", \")\", \".\", \"?\", \"!\"];\r\n for($j=0;$j<laTaille($regex);$j++){\r\n $phrase = preg_replace($regex[$j],$remplace[$j],$phrase);\r\n }\r\n $phrase=ucfirst($phrase);\r\n if(laTaille($phrase)<=200){\r\n $tableau[]=$phrase;\r\n } \r\n }\r\n return $tableau;\r\n}", "public function splitLine() {\n $this->words = preg_split('/[\\' \\',\\t]+/', $this->line);\n }", "public static function paragraph()\n {\n for ($sentence_count = mt_rand(1, 4); $sentence_count; --$sentence_count)\n $paragraph[] = self::sentence();\n\n return implode($paragraph, ' ');\n }", "public function getParagraphs ($text){\r\n $mb_encoding = $this->encoding->getEncodingType();\r\n if ($this->encoding->useMB()) {\r\n $newline_pattern = '[\\n' . (string) 0xE2 . \r\n (string) 0x80 .\r\n (string) 0xA8 . \r\n (string) 0xE2 . \r\n (string) 0x80 . \r\n (string) 0xA9 . ']';\r\n //0x2028 codepoint is E2 80 A8 in UTF-8 \r\n //0x2029 codepoint is E2 80 A9 in UTF-8 \r\n if ($mb_encoding == 'UTF-8') {\r\n $paragraphs = mb_split ($newline_pattern,$text);\r\n $num_paragraphs = count($paragraphs) ;\r\n for ($i = 0; $i < $num_paragraphs; $i++) { \r\n //trim white space\r\n $paragraphs[$i] = preg_replace('/^\\p{Zs}+/u',\"\",$paragraphs[$i]);\r\n $paragraphs[$i] = preg_replace('/\\p{Zs}+$/u',\"\",$paragraphs[$i]);\r\n }\r\n } else {\r\n //we are in a horrible state of affairs with respect to PHP's mb regexp engine.\r\n $utf8_text = mb_convert_encoding($text,'UTF-8',$mb_encoding);\r\n $pargraphs = mb_split ($newline_pattern,$utf8_text);\r\n $num_paragraphs = count($paragraphs) ;\r\n for ($i = 0; $i < $num_paragraphs; $i++) {\r\n //trim white space\r\n $paragraphs[$i] = preg_replace('/^\\p{Zs}+/u',\"\",$paragraphs[$i]);\r\n $paragraphs[$i] = preg_replace('/\\p{Zs}+$/u',\"\",$paragraphs[$i]);\r\n //convert back to the user encoding\r\n $paragraphs[$i] = mb_convert_encoding($paragraphs[$i],$mb_encoding,'UTF-8');\r\n }\r\n }\r\n } else {\r\n $paragraphs = explode(\"\\n\",$text);\r\n $num_paragraphs = count($paragraphs) ;\r\n for ($i = 0; $i < $num_paragraphs; $i++) {\r\n $paragraphs[$i] = trim($paragraphs[$i]);\r\n }\r\n \r\n }\r\n return $paragraphs;\r\n }", "function separate($str)\n\t{\n\t\t$arr = array();\n\t\t$flag = 0;\n\t\tfor($i = 0; $i < strlen($str)-3; ++$i)\n\t\t{\n\t\t\tif(substr($str, $i, 5) == \"<br/>\")\n\t\t\t{\n\t\t\t\t//echo \"fuck\";\n\t\t\t\t$arrData1 = substr($str, 0, $i);\n\t\t\t\t$arrData2 = substr($str, $i + 5, strlen($str) - $i - 4);\n\t\t\t\tif($arrData2 == null)continue;\n\t\t\t\tarray_push($arr, $arrData1);\n\t\t\t\tarray_push($arr, $arrData2);\n\t\t\t\t$flag = 1;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\treturn ($flag ? $arr : $str);\n\t}", "function breakword($array)\n{\n$array = explode(\" \", $array);\n\nforeach($array as $word)\n{\n$wrap = 0; $i = 0;\nwhile($i < strlen($word)) {\nif($wrap >= 45) {\n$word = wordwrap($word, 45, \"<br/>\", true);\n$wrap = 0;\n}\n$i++; $wrap++;\n}\n$text[] = $word;\n}\n$array = implode(\" \", $text);\nreturn $array;\n}", "function split_lines( $text ) {\n\t\t$lines = preg_split( \"/(\\r\\n|\\n|\\r)/\", $text );\n\n\t\treturn $lines;\n\t}", "public static function split(string $text): array {\n return str_split($text);\n }", "function split_title_middle ( $title ) {\r\n//\r\n// $response[0] = substr( $title, 0, $middle);\r\n// $response[1] = substr( $title, $middle);\r\n $title = strip_tags( $title );\r\n $middle_length = floor( strlen( $title ) / 2 );\r\n\r\n $new_title = explode( '<br />', wordwrap( $title, $middle_length, '<br />') );\r\n\r\n if (isset( $new_title[2] ) ) {\r\n $new_title[1] .= ' ' . $new_title[2];\r\n unset( $new_title[2] );\r\n }\r\n\r\n return $new_title;\r\n}", "function analyse_content($content){\n $starting_content = array();\n $count=0;\n for($i=1;$i<count($content);$i++){\n if(!empty($content[$i]) && strlen($content[$i])>250){\n $paragraph = trim($content[$i]);\n $paragraph = str_ireplace(\"\\r\\n\",\"\", $paragraph);\n $starting_content[$count] = $paragraph;\n $count++;\n }\n if($count>=2)\n break;\n }\n return $starting_content;\n}", "public static function splitIntoWords($text)\n {\n // Prefix any sequence of capital letters with a space,\n // surround numbers with spaces,\n // and replace any sequence of non-letters with one space.\n $normalized = preg_replace(\n [\n '/\\p{Lu}+/u',\n '/\\p{N}+/u',\n '/[^\\p{L}\\p{N}]+/u',\n ],\n [\n ' \\0',\n ' \\0 ',\n ' ',\n ],\n $text\n );\n\n // Split into single words.\n return array_filter(explode(' ', $normalized));\n }", "public function getLineBreaks($text) {\r\n $mb_encoding = $this->encoding->getEncodingType();\r\n $use_mb = $this->encoding->useMB();\r\n if (!is_string($text)) { \r\n //make sure we have something\r\n if ($use_mb) {\r\n return array (mb_convert_encoding(\"\",$mb_encoding));\r\n }else {\r\n return array(\"\");\r\n }\r\n }\r\n //split up the paragaph along newlines\r\n $paragraphs = $this->getParagraphs($text);\r\n $text_lines = array();\r\n foreach ($paragraphs as $paragraph) {\r\n if ($use_mb) {\r\n $text_lines[] = mb_convert_encoding(\"\", $mb_encoding);\r\n } else {\r\n $text_lines[] = \"\";\r\n }\r\n switch ($this->algorithm) {\r\n case 'Knuth':\r\n $this->Knuth($paragraph,$text_lines);\r\n break;\r\n case 'Greedy':\r\n $this->Greedy($paragraph,$text_lines);\r\n break;\r\n default: //truncate\r\n $this->Truncate($paragraph,$text_lines);\r\n break;\r\n }\r\n }\r\n return $text_lines;\r\n }", "public function createSentencesListArray(string $text)\n {\n preg_match_all('#([\\p{L}|0-9].*?[.!?])(?!\\p{L}|[0-9])#ui', $text, $sentences);\n return $sentences[0];\n }", "function _split($lines) {\r\n if (!preg_match_all('/ ( [^\\S\\n]+ | [[:alnum:]]+ | . ) (?: (?!< \\n) [^\\S\\n])? /xs',\r\n implode(\"\\n\", $lines),\r\n $m)) {\r\n return array(array(''), array(''));\r\n }\r\n return array($m[0], $m[1]);\r\n }", "public static function sentences( $text, $preserve_punctuation = false ) {\n\t\tif ( empty( $text ) ) {\n\t\t\treturn array();\n\t\t}\n\t\t$raw = preg_split( '/([?.!]+)/', $text, null, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY );\n\t\t$len = count( $raw );\n\t\t$sentences = array();\n\n\t\tfor ( $i = 1; $i <= $len; $i += 2 ) {\n\t\t\t$current = $i - 1;\n\t\t\t$snt = isset( $raw[ $current ] ) ? $raw[ $current ] : false;\n\t\t\tif ( ! $snt ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t$snt = preg_replace( '/(^\\s+|\\s+$)/', '', $snt );\n\t\t\tif ( $preserve_punctuation ) {\n\t\t\t\t$snt .= $raw[ $i ];\n\t\t\t}\n\n\t\t\t$sentences[] = $snt;\n\t\t}\n\n\t\treturn $sentences;\n\t}", "public static function break_words($name) {\n return explode(' ', $name);\n }", "public function sentenceSplitting($text, $regex = \"[\\.\\!\\?\\;\\:\\t]\")\n {\n $trimmed = @mb_eregi_replace(\"\\s+\", \" \", trim($text));\n $sentences = array_filter(@mb_split($regex, $trimmed));\n return array_values($sentences);\n }", "function word_tokenize($sentence){\r\n\t\t$words = preg_split('/[\\'\\s\\r\\n\\t$]+/', $sentence);\r\n\t\t$rez = array();\r\n\t\tforeach($words as $word){\r\n\t\t\t$word = preg_replace('/(^[^a-z0-9]+|[^a-z0-9]$)/i','', $word);\r\n\t\t\t$word = strtolower($word);\r\n\t\t\tif (strlen($word)>0)\r\n\t\t\t\tarray_push($rez, $word);\r\n\t\t}\r\n\t\treturn $rez;\r\n\t}", "protected function getParagraphs()\n {\n $paragraph = array(0 => array());\n $pdx = 0; // paragraphs index\n foreach ($this->ordarr as $ord) {\n $paragraph[$pdx][] = $ord;\n if (isset(UniType::$uni[$ord]) && (UniType::$uni[$ord] == 'B')) {\n ++$pdx;\n $paragraph[$pdx] = array();\n }\n }\n return $paragraph;\n }", "function getTextArray($text)\n{\n\t$numWords = str_word_count($text, 0, '1234567890');\n\tif($numWords > 1) { $wordsArray = explode(' ', $text); } else { $wordsArray = array($text); $word = $text; }\n\treturn(array('words'=>$wordsArray, 'wordcount'=>$numWords, 'word'=>$word));\n}", "function & _split_words( & $string )\n {\n $string = preg_replace($this->_pattern, \"\", $string);\n $string = str_replace($this->_convert_str,\" \",$string);\n $content_array = explode(\" \",$string); \n $array_content = array_count_values($content_array);\n $_tmp = array();\n\n while ($word = each ($array_content))\n { \n if(strlen($word[0])>$this->_word_length)\n {\n $word[0] = strtolower($word[0]);\n if(!isset($this->bad_word_array[$word[0]]))\n { \n $_tmp[] = $word[0];\n }\n }\n }\n return $_tmp;\n }", "protected function paragraphs() {\n\t\t$this->text = str_replace(\"\\r\", '', $this->text);\n\t\t$this->text = preg_replace(';\\n{2,};s', \"\\n\\n\", $this->text);\n\n\t\t$paragraphs = t3lib_div::trimExplode(\"\\n\\n\", $this->text);\n\t\t$this->text = '<p>' . implode('</p><p>', $paragraphs) . '</p>';\n\t\tReturn $this;\n\t}", "function seenthis_titre_me($texte) {\n\t$titre = array_filter(array_map('trim',explode(\"\\n\", $texte)));\n\t$titre = join(' ', array_slice(array_filter(explode(' ',array_shift($titre))), 0,20));\n\treturn $titre;\n}", "function wp_html_split($input)\n {\n }", "function splitText($text, bool $first_half = true) {\n $middle = strrpos(substr($text, 0, floor(strlen($text) / 2)), ' ') + 1;\n $subText = null;\n\n if($first_half) {\n $subText = substr($text, 0, $middle);\n }\n else {\n $subText = substr($text, $middle);\n }\n\n return $subText;\n\n }", "function abstractFromParagraph($content)\n{\n $position = stripos ($content, \".\"); //find first dot position\n \n if($position) { //if there's a dot in our soruce text do\n $offset = $position + 1; //prepare offset\n $position2 = stripos ($content, \".\", $offset); //find second dot using offset\n $first_two = substr($content, 0, $position2); //put two first sentences under $first_two\n\n return $first_two . '.'; //add a dot\n }\n\n else { // if no dot return blank\n\t\treturn \"\";\t\n }\n\t\n}", "function arrayLetras($texto){\n $texto = strtolower($texto); \n return str_split($texto);\n}", "function strToArray(&$string, &$array){\r\n $array = explode(\"\\n\", $string);\r\n }", "private function nl2par($text)\n {\n if ($replaced = str_replace(\"\\n\", '\\\\par ', $text)) {\n return $replaced;\n } else {\n return $text;\n }\n }", "private function getWords(): array\n {\n return explode(\" \", parent::getValue());\n }", "public function createWordsListArray(string $text)\n {\n $text = mb_strtolower($text);\n $text = str_replace(\"\\r\\n\", \" \", $text);\n $text = preg_replace(\"/\\b\\S\\b/\", \"\", $text);\n $text = preg_replace(\"/[^'\\p{L} -]/u\", \"\", $text);\n $match_words = preg_split('/\\s+/', $text, -1, PREG_SPLIT_NO_EMPTY);\n foreach ($match_words as $key => $item) {\n $item = trim($item);\n if ($item == '' || mb_strlen($item) <= 1) {\n unset($match_words[$key]);\n }\n }\n\n return $match_words;\n }", "function split_content() {\n\tglobal $more;\n\t$more = true;\n\t$content = preg_split('/<span id=\"more-\\d+\"><\\/span>/i', get_the_content('more'));\n\tfor($c = 0, $csize = count($content); $c < $csize; $c++) {\n\t\t$content[$c] = apply_filters('the_content', $content[$c]);\n\t}\n\treturn $content;\n}", "function parrafo($text){\r\n return \"<p>$text</p>\";\r\n }", "function splitByWords($text, $splitLength = 200) {\r\n $wordArray = explode(' ', $text);\r\n\r\n // Too many words\r\n if (sizeof($wordArray) > $splitLength) {\r\n // Split words into two arrays\r\n $firstWordArray = array_slice($wordArray, 0, $splitLength);\r\n $lastWordArray = array_slice($wordArray, $splitLength + 1, sizeof($wordArray));\r\n\r\n // Turn array back into two split strings \r\n $firstString = implode(' ', $firstWordArray);\r\n $lastString = implode(' ', $lastWordArray);\r\n return array($firstString, $lastString);\r\n }\r\n // if our array is under the limit, just send it straight back\r\n return array($text);\r\n }", "public static function _split($input)\n {\n $plit = preg_split('#\\\\e[[][A-Za-z0-9];?[0-9]*m(*SKIP)(*F)|#u', $input, -1, PREG_SPLIT_NO_EMPTY);\n\n if (false === $plit) {\n return mb_str_split($input);\n }\n\n return $plit;\n }", "function processString($keywords)\n{\n $pattern=\"/[\\s]+/\";\n $keywords=trim($keywords);\n if (!isset($keywords)||empty($keywords)) {\n return null;\n }\n $separateWords=preg_split($pattern, $keywords);\n foreach ($separateWords as $word) {\n echo $word.\"<br>\";\n }\n return $separateWords;\n}", "protected function wp_html_split($input) { //+\n\treturn preg_split($this->get_html_split_regex(), $input, -1, PREG_SPLIT_DELIM_CAPTURE);\n}", "public function testWordsSplitByLetter()\n {\n $str = new Str($this->testString);\n $result = $str->words('/o/');\n $this->assertTrue(is_array($result));\n $this->assertTrue($result[0] === 'The quick br');\n }", "function spip2odt_reparagrapher($texte){\n\t// avant de reparagrapher, echappons les paragraphes dans les <draw:text-box><text:p>\n\t$split = preg_split(',(<draw:text-box[^<>]*>.*</draw:text-box>),Uims',$texte,null,PREG_SPLIT_DELIM_CAPTURE);\n\t//var_dump($split);die();\n\t$texte = array_shift($split);\n\t$texte_boxes=array();\n\twhile (count($split)){\n\t\t$i = \"@T@E@X@T@B@O@X@\".count($texte_boxes).\"@\";\n\t\t$texte_boxes[$i] = array_shift($split);\n\t\t$texte .= $i . array_shift($split);\n\t}\n\n\t// Ajouter un espace aux <p> et un \"STOP P\"\n\t// transformer aussi les </p> existants en <p>, nettoyes ensuite\n\t$texte = preg_replace(',</?text:p(\\s([^<>]*))?'.'>,iS', '<STOP P><text:p \\2>',$texte);\n\t$texte = preg_replace(',</?text:span(\\s([^<>]*))?'.'>,iS', '<STOP SPAN><text:span \\2>',$texte);\n\t\n\t// Fermer les span (y compris sur \"STOP P\")\n\t$texte = preg_replace(\n\t\t',(<text:span\\s.*)(</?(STOP SPAN|STOP P|'._TAG_OOO_BREAK_P.')[>[:space:]]),UimsS',\n\t\t\"\\\\1</text:span>\\\\2\", $texte);\n\n\t// Fermer les paragraphes (y compris sur \"STOP P\")\n\t$texte = preg_replace(\n\t\t',(<text:p\\s.*)(</?(STOP P|'._TAG_OOO_BREAK_P.')[>[:space:]]),UimsS',\n\t\t\"\\\\1</text:p>\\\\2\", $texte);\n\n\t// Supprimer les marqueurs \"STOP P\"\n\t$texte = str_replace('<STOP P>', '', $texte);\n\t// Supprimer les marqueurs \"STOP SPAN\"\n\t$texte = str_replace('<STOP SPAN>', '', $texte);\n\n\t// Reduire les blancs dans les <p>\n\t// Do not delete multibyte utf character just before </p> having last byte equal to whitespace \n\t$u = ($GLOBALS['meta']['charset']=='utf-8' && test_pcre_unicode()) ? 'u':'S';\n\t$texte = preg_replace(\n\t',(<text:p(\\s[^<>]*)?>)\\s*|\\s*(</text:p[>[:space:]]),'.$u.'i', '\\1\\3',\n\t\t$texte);\n\n\t// Supprimer les <p xx></p> vides\n\t$texte = preg_replace(',<text:p\\s[^<>]*></text:p>\\s*,iS', '',\n\t\t$texte);\n\t$texte = preg_replace(',<text:span\\s*>(.*)</text:span>,UiS', '\\\\1',\n\t\t$texte);\n\t\t\n\t// remettre les text-boxes\n\t$texte = str_replace(array_keys($texte_boxes),array_values($texte_boxes),$texte);\n\treturn $texte;\n}", "function punct_explode($string, $notags) {\n // Garde aussi les tags en une seule partie\n\n // Explode simple\n $array1 = explode(\"\\n\", $string);\n \n // Explode avec les tags\n $array2 = array();\n // Tags {}\n foreach ( $array1 as $text ) {\n // Tags de type {/...}\n $offset = 0;\n while ( preg_match(\"#{\\\\\\\\[^}]+}#\", $text, $tags, PREG_OFFSET_CAPTURE, $offset) ) {\n $tag = $tags[0];\n if ( $offset < $tag[1] ) {\n $array2[] = array(\"text\", substr($text, $offset, $tag[1] - $offset));\n }\n $array2[] = array(\"tag\", $tag[0]);\n $offset = $tag[1] + strlen($tag[0]);\n }\n if ( $offset < strlen($text) ) {\n $array2[] = array(\"text\", substr($text, $offset));\n }\n }\n \n $array1 = array();\n // Tags <>\n foreach ( $array2 as $data ) {\n if ( $data[0] == \"text\" ) {\n $offset = 0;\n while ( preg_match(\"#<[^>]+>#\", $data[1], $tags, PREG_OFFSET_CAPTURE, $offset) ) {\n $tag = $tags[0];\n if ( $offset < $tag[1] ) {\n $array1[] = array(\"text\", substr($data[1], $offset, $tag[1] - $offset));\n }\n $array1[] = array(\"tag\", $tag[0]);\n $offset = $tag[1] + strlen($tag[0]);\n }\n if ( $offset < strlen($data[1]) ) {\n $array1[] = array(\"text\", substr($data[1], $offset));\n }\n }\n else {\n $array1[] = $data;\n }\n }\n \n $final = array();\n // Ponctuation\n foreach ( $array1 as $data ) {\n if ( $data[0] == \"tag\" ) {\n if ( ! $notags ) {\n $final[] = $data[1];\n }\n }\n else {\n $final = array_merge($final, do_punct($data[1]));\n }\n }\n return $final;\n}", "function get_html_split_regex()\n {\n }", "function parsetext($string) {\n $pos = 0;\n //\t$pos = skip_white_space($string, $pos);\n // skip CDATA in feed_fix mode\n if ($this->feed_fix) {\n if (strpos($string, '<![CDATA[') === 0) {\n $pos = 9; // CDATA length\n $string = substr($string, 0, -3); // chop the last ]]>;\n }\n }\n\n $start = $pos;\n\n while ($pos < strlen($string)) {\n // Some HTML entities make us break, almost all but apostrophies\n if ($this->ent_breaks && $len_of_entity = $this->is_html_entity($string, $pos)) {\n $entity = substr($string, $pos, $len_of_entity);\n if (($this->is_white_space(@$string[$pos + $len_of_entity]) || $this->is_entity_breaker($entity)) && !$this->is_entity_letter($entity)) {\n tp_logger(\"entity ($entity) breaks\", 4);\n $this->tag_phrase($string, $start, $pos);\n $start = $pos + $len_of_entity;\n }\n // skip nbsp starting a phrase\n tp_logger(\"entity ($entity)\", 4);\n if ($entity === '&nbsp;' && $start === $pos) {\n $start = $pos + $len_of_entity;\n }\n //skip past entity\n $pos += $len_of_entity;\n }\n // we have a special case for <> tags which might have came to us (maybe in xml feeds) (we'll skip them...)\n elseif ($string[$pos] == '<') {\n $this->tag_phrase($string, $start, $pos);\n while ($string[$pos] != '>' && $pos < strlen($string))\n $pos++;\n $pos++;\n $start = $pos;\n } elseif ($string[$pos] == TP_GTXT_BRK || $string[$pos] == TP_GTXT_BRK_CLOSER) {\n// $logstr = str_replace(array(chr(1),chr(2),chr(3),chr(4)), array('[1]','[2]','[3]','[4]'), $string);\n// $closers = ($string[$pos] == TP_GTXT_BRK) ? '': 'closer';\n// tp_logger(\" $closers TEXT breaker $logstr start:$start pos:$pos gt:\" . $this->in_get_text, 3);\n $this->tag_phrase($string, $start, $pos);\n ($string[$pos] == TP_GTXT_BRK) ? $this->in_get_text += 1 : $this->in_get_text -= 1;\n $pos++;\n $start = $pos;\n // reset state based on string start, no need to flip\n //$this->in_get_text = ($pos == 1);\n //if (!$this->in_get_text) $this->in_get_text_inner = false;\n } elseif ($string[$pos] == TP_GTXT_IBRK || $string[$pos] == TP_GTXT_IBRK_CLOSER) {\n// $logstr = str_replace(array(chr(1),chr(2),chr(3),chr(4)), array('[1]','[2]','[3]','[4]'), $string);\n// $closers = ($string[$pos] == TP_GTXT_IBRK) ? '': 'closer';\n// tp_logger(\" $closers INNER text breaker $logstr start:$start pos:$pos gt:\" . $this->in_get_text_inner, 3);\n //tp_logger(\"inner text breaker $start $pos $string \" . (($this->in_get_text_inner) ? 'true' : 'false'), 5);\n $this->tag_phrase($string, $start, $pos);\n if ($this->in_get_text)\n ($string[$pos] == TP_GTXT_IBRK) ? $this->in_get_text_inner += 1 : $this->in_get_text_inner -= 1;\n $pos++;\n $start = $pos;\n //$this->in_get_text_inner = !$this->in_get_text_inner;\n }\n // will break translation unit when there's a breaker \",.[]()...\"\n elseif ($this->punct_breaks && $senb_len = $this->is_sentence_breaker($string[$pos], @$string[$pos + 1], @$string[$pos + 2])) {\n// logger (\"sentence breaker...\");\n $this->tag_phrase($string, $start, $pos);\n $pos += $senb_len;\n $start = $pos;\n }\n // Numbers also break, if they are followed by whitespace (or a sentence breaker) (don't break 42nd) // TODO: probably by breaking entities too...\n // also prefixed by whitespace?\n elseif ($this->num_breaks && $num_len = $this->is_number($string, $pos)) {\n// logger (\"numnum... $num_len\");\n // this is the case of B2 or B2,\n if (($start == $pos) || ($this->is_white_space($string[$pos - 1]) || ($this->is_sentence_breaker(@$string[$pos + $num_len - 1], @$string[$pos + $num_len], @$string[$pos + $num_len + 1]))) &&\n ($this->is_white_space(@$string[$pos + $num_len]) || $this->is_sentence_breaker(@$string[$pos + $num_len], @$string[$pos + $num_len + 1], @$string[$pos + $num_len + 2]))) {\n // we will now compensate on the number followed by breaker case, if we need to\n// logger (\"compensate part1?\");\n if (!(($start == $pos) || $this->is_white_space($string[$pos - 1]))) {\n// logger (\"compensate part2?\");\n if ($this->is_sentence_breaker($string[$pos + $num_len - 1], @$string[$pos + $num_len], @$string[$pos + $num_len + 1])) {\n// logger (\"compensate 3?\");\n $num_len--; //this makes the added number shorter by one, and the pos will be at a sentence breaker next so we don't have to compensate\n }\n $pos += $num_len;\n $num_len = 0; // we have already added this\n }\n $this->tag_phrase($string, $start, $pos);\n $start = $pos + $num_len /* +1 */;\n }\n $pos += $num_len/* + 1 */;\n// logger (\"numnumpos... $pos\");\n } else {\n // smarter marking of start location\n if ($start == $pos && $this->is_white_space($string[$pos]))\n $start++;\n $pos++;\n }\n }\n\n // the end is also some breaker\n if ($pos > $start) {\n $this->tag_phrase($string, $start, $pos);\n }\n }", "abstract protected function getTokenSeparators() : array;", "protected function splitContentInWords($content)\n {\n $words = preg_split('/((^\\p{P}+)|(\\p{P}*\\s+\\p{P}*)|(\\p{P}+$))/', $content, -1, PREG_SPLIT_NO_EMPTY);\n foreach($words as &$word) {\n $word = mb_strtolower($word);\n }\n return $words;\n }", "public function paragraphSpacingBeforeProvider()\n {\n return [[1]];\n }", "function mb_str_split($str){\n return preg_split('/(?<!^)(?!$)/u', $str );\n }", "function paragraph_trim($content, $limit = 500, $schr=\"\\n\", $scnt=2)\n{\n $post = 0;\n $trimmed = false;\n for($i = 1; $i <= $scnt; $i++) {\n\n if($tmp = strpos($content, $schr, $post+1)) {\n $post = $tmp;\n $trimmed = true;\n } else {\n $post = strlen($content) - 1;\n $trimmed = false;\n break;\n }\n\n }\n\n $content = substr($content, 0, $post);\n\n if(strlen($content) > $limit) {\n $content = substr($content, 0, $limit);\n $content = substr($content, 0, strrpos($content,' '));\n $trimmed = true;\n }\n\n if($trimmed) $content .= '...';\n\n return $content;\n\n}", "function splitonspace($data)\n{\n\t$u_data=preg_split(\"/ +/\",$data);\n\t$lname=array_pop($u_data);\n\n\t$fn=\"\";\n\tforeach ($u_data as $n => $v)\n\t{\n\t\t$fn=$v.\" \";\n\t}\n\n\t$dout=array(0=>$fn,1=>$lname);\n\treturn $dout;\n}", "public function DivideText($tx){\n\t\t\tglobal $morphy;\n\t\t\t$tx = mb_strtoupper($tx);\n\t\t\t\n\t\t\t//деление текста на слова\n\t\t\t$arr = explode(\" \", $tx);\n\t\t\t$flag=true;\n\t\t\twhile ($flag){\n\t\t\t\t$sch=0;\n\t\t\t\tforeach ($arr as &$mass){\n\t\t\t\t\t//$mass=trim($mass);\n\t\t\t\t\t$ch=substr($mass,strlen($mass)-1,1);\n\t\t\t\t\t\t\tif ($ch==\",\" or \n\t\t\t\t\t\t\t\t$ch==\";\" or \n\t\t\t\t\t\t\t\t$ch==\".\" or \n\t\t\t\t\t\t\t\t$ch==\"!\" or\n\t\t\t\t\t\t\t\t$ch==\"?\" or\n\t\t\t\t\t\t\t\t$ch==\":\"){\n\t\t\t\t\t\t\t\t\t$mass = substr($mass,0,strlen($mass)-1);\n\t\t\t\t\t\t\t\t\t$sch++;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ($sch==0)$flag=false;\n\t\t\t}\t\n\t\t\t\n\t\t\t//нормализация\n\t\t\t$a = $morphy->lemmatize($arr);\n\t\t\n\t\t\t//приведение к одномерному массиву\n\t\t\t$one[] = array();\n\t\t\t$i = 0;\n\t\t\tforeach($a as &$mass){\n\t\t\t\tforeach($mass as &$m){\n\t\t\t\t\t$m = mb_strtolower($m);\n\t\t\t\t\tif (strlen($m)>2){\n\t\t\t\t\t\t$one[$i] = $m;\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $one;\n\t\t}", "protected function separate_words($text, $min_word_return_size)\n {\n $splitter = '/[^a-zA-Z0-9_\\+\\-\\/]/';\n $words = [];\n $matches = [];\n $matches = preg_split($splitter, $text);\n foreach ($matches as $single_word) {\n $current_word = strtolower(trim($single_word));\n #leave numbers in phrase, but don't count as words, since they tend to invalidate scores of their phrases\n if (strlen($current_word) > $min_word_return_size && $current_word != '' && !is_numeric($current_word)) {\n $words[] = $current_word;\n }\n }\n return $words;\n }", "static public function formatParagraphs($str){\n\n if(trim($str)){\n // double line breaks to paragraphs\n $str = '<p>' . preg_replace('/(\\r\\n|\\n\\r|\\r|\\n){2,}/', '</p><p>', $str) . '</p>';\n\n // remaining single line breaks to <br> line breaks\n $str = nl2br($str);\n }\n\n return $str;\n }", "function add_paragraphs($str)\n{\n // Trim whitespace\n if (($str = trim($str)) === '') return '';\n\n // Standardize newlines\n $str = str_replace(array(\"\\r\\n\", \"\\r\"), \"\\n\", $str);\n\n // Trim whitespace on each line\n $str = preg_replace('~^[ \\t]+~m', '', $str);\n $str = preg_replace('~[ \\t]+$~m', '', $str);\n\n // The following regexes only need to be executed if the string contains html\n if ($html_found = (strpos($str, '<') !== FALSE)) {\n // Elements that should not be surrounded by p tags\n $no_p = '(?:p|div|article|header|aside|hgroup|canvas|output|progress|section|figcaption|audio|video|nav|figure|footer|video|details|main|menu|summary|h[1-6r]|ul|ol|li|blockquote|d[dlt]|pre|t[dhr]|t(?:able|body|foot|head)|c(?:aption|olgroup)|form|s(?:elect|tyle)|a(?:ddress|rea)|ma(?:p|th))';\n\n // Put at least two linebreaks before and after $no_p elements\n $str = preg_replace('~^<' . $no_p . '[^>]*+>~im', \"\\n$0\", $str);\n $str = preg_replace('~</' . $no_p . '\\s*+>$~im', \"$0\\n\", $str);\n }\n\n // Do the <p> magic!\n $str = '<p>' . trim($str) . '</p>';\n $str = preg_replace('~\\n{2,}~', \"</p>\\n\\n<p>\", $str);\n\n // The following regexes only need to be executed if the string contains html\n if ($html_found !== FALSE) {\n // Remove p tags around $no_p elements\n $str = preg_replace('~<p>(?=</?' . $no_p . '[^>]*+>)~i', '', $str);\n $str = preg_replace('~(</?' . $no_p . '[^>]*+>)</p>~i', '$1', $str);\n }\n\n // Convert single linebreaks to <br />\n $str = preg_replace('~(?<!\\n)\\n(?!\\n)~', \"<br>\\n\", $str);\n\n return $str;\n}", "public function testWordsSplitByLetterWithIgnore()\n {\n $str = new Str($this->testString);\n $result = $str->words('/o/', true);\n $this->assertTrue(is_array($result));\n $this->assertTrue($result[0] === 'The quick br');\n $this->assertTrue($result[5] === 'wball');\n }", "function explodeCaps(string $string):string\n{\n $pieces = preg_split('/(?=[A-Z])/',$string);\n return $pieces;\n}", "public static function words( $text = '' ) {\n\t\t$words = array();\n\n\t\tif ( empty( $text ) ) {\n\t\t\treturn $words;\n\t\t}\n\t\t$text = join( ' ', self::paragraphs( $text ) );\n\n\t\t$text = preg_replace( '/[^ [:alnum:]]/iu', '', self::lowercase( $text ) );\n\t\t$words = array_filter( explode( ' ', $text ) );\n\n\t\treturn $words;\n\t}", "protected function trimSpaces($text)\n {\n $lines = null;\n foreach (preg_split(\"/((\\r?\\n)|(\\r\\n?))/\", $text) as $line) {\n if (!empty($line)) {\n $lines .= $this->trimContent($line) . PHP_EOL;\n }\n }\n return $lines;\n }", "public static function explodeTextlines(\n string $input,\n int $flag = SELF::OMIT_EMPTY_LINES\n ): array {\n\n $out = explode(PHP_EOL, $input);\n if ($flag == self::KEEP_EMPTY_LINES) {\n return $out;\n }\n // Reject empty words\n foreach ($out as $pos => $word) {\n if (empty($word)) {\n unset($out[$pos]);\n }\n }\n return $out;\n }", "function ts_shortcode_empty_paragraph_fix($content)\r\n{\r\n $array = array(\r\n '<p>[' => '[',\r\n ']</p>' => ']',\r\n ']<br />' => ']'\r\n );\r\n $content = strtr($content, $array);\r\n return $content;\r\n}", "public function splitTitle()\n {\n $bits = explode(' ' . $this->host . ' ' , $this->windowInfo);\n\n return $bits;\n\n }", "function shortcode_empty_paragraph_fix($content) { \n\n\t\t $array = array (\n\t\t '<p>[' => '[',\n\t\t ']</p>' => ']',\n\t\t ']<br />' => ']',\n\t\t ']<br>' => ']'\n\t\t );\n\t\t \n\t\t $content = strtr($content, $array);\n\t\t \n\t\t return $content;\n\t\t}", "function wp_kses_split($content, $allowed_html, $allowed_protocols)\n {\n }", "public static function get_two_sentences( $text ) {\n\t\t$old_warning_level = error_reporting();\n\t\terror_reporting( 0 );\n\n\t\t$pos = strpos($text, '. ' , 1); \n\t\t$pos = strpos($text, '. ' , $pos+1); \n\t\treturn substr($text, 0, $pos+1);\n\n\t\terror_reporting( $old_warning_level );\n\t}", "protected function paragraphify($string)\n\t{\n\t\t// First, trim newlines\n\t\t$string = trim($string, \"\\n\");\n\n\t\t// Explode the string on newlines\n\t\t$parts = preg_split('/\\n{2,}/', $string);\n\n\t\tforeach ($parts as $k => $part)\n\t\t{\n\t\t\t// If this isn't a hash, wrap it\n\t\t\tif (!$this->hashExists($part))\n\t\t\t{\n\t\t\t\t$parts[$k] = '<p>'. $this->replaceInline($part) .'</p>';\n\t\t\t}\n\t\t\t// Otherwise, expand it\n\t\t\telse\n\t\t\t{\n\t\t\t\t$parts[$k] = $this->hashTable[$part];\n\t\t\t}\n\t\t}\n\n\t\treturn implode(\"\\n\\n\", $parts);\n\t}", "protected function extractFragments($text, $delimiters): array\n {\n // special case: split into characters\n if (empty($delimiters)) {\n $chars = mb_str_split($text);\n $chars[mb_strlen($text)] = '';\n\n return $chars;\n }\n\n $fragments = [];\n $start = 0;\n $end = 0;\n\n while (true) {\n $end += strcspn($text, $delimiters, $end);\n $end += strspn($text, $delimiters, $end);\n\n if ($end === $start) {\n break;\n }\n\n $fragments[$start] = mb_substr($text, $start, $end - $start);\n $start = $end;\n }\n\n $fragments[$start] = '';\n\n return $fragments;\n }", "function mb_str_split($string) {\n // and not before the end: $\n return preg_split('/(?<!^)(?!$)/u', $string);\n}", "function _parse() {\n $txt = $this->_text;\n for($i=0; $i<count($txt); $i++) {\n $txt[$i] = preg_replace(\"@[{]([^}]+)[}]@e\", \"''.\\$this->_insert(\\\"\\\\1\\\").''\",$txt[$i]);\n }\n return join(\"\",$txt);\n }", "public static function space($string)\n {\n $spaces = [' ', '\\n', '\\t'];\n\n return static::split($string, $spaces);\n }", "function mb_str_split( $string ) {\n # and not before the end: $\n return preg_split('/(?<!^)(?!$)/u', $string );\n}", "public static function nl2p(string $str): string\n {\n $str = preg_split('/(\\r?\\n){2,}/', $str);\n array_walk(\n $str,\n function (&$str) {\n $str = '<p>' . nl2br(trim($str)) . '</p>';\n }\n );\n\n return implode(\"\\n\", $str);\n }", "public function justifyText() {\n $positions = array();\n for ($i = 0; $i < count($this->textToPrint); $i++) { // do this for each line of text\n\n $lineByLine = str_word_count($this->textToPrint[$i],1,self::CHARLIST);\n\n for ($j = 0; $j < count($lineByLine)-1; $j++) { // pad all words but last with trailing whitespace\n $lineByLine[$j] = $lineByLine[$j]. \" \";\n }\n $whiteSpaces = count($lineByLine) - 1; \n \n // this wasn't getting calculated correctly if there were multiple spaces, such as after a period in a sentence\n $localLength = 0;\n foreach ($lineByLine as $key => $value) {\n $localLength += strlen($value);\n }\n $spacesNeeded = $this->width - $localLength;\n \n if ($whiteSpaces > 0) { // dont' do this for a line containing only one word.\n \n $middle = (int) (($whiteSpaces+1)/2); // need to find middle of array\n $whereToInsert = $middle;\n $lkey = 1;\n $rkey = 1;\n $linc = 2;\n $rinc = 2;\n $rinit = $rkey;\n $linit = $lkey;\n\n if ($whiteSpaces % 2 == 0) { // if there are an even number of whitespaces, then we don't have a true middle, start at the right\n $side = \"right\";\n } else {\n $side = \"middle\";\n }\n\n while ($spacesNeeded > 0) {\n \n // insert to middle, then increment keys\n if ($side == \"middle\") {\n array_splice( $lineByLine, $whereToInsert, 0, \" \" );\n $lkey++;\n $rkey++;\n }\n \n if($side == \"right\") {\n $whereToInsert = $middle+$rkey;\n if ($whereToInsert >= count($lineByLine)) { // reached the end of array -- need to reset right side\n $rkey = $rinit;\n $whereToInsert = $middle+$rkey;\n }\n array_splice( $lineByLine, $whereToInsert, 0, \" \" );\n $rkey+=$rinc;\n } else if ($side == \"left\") {\n $whereToInsert = $middle-$lkey;\n if ($whereToInsert <= 0) { //reached the end of array -- need to reset left side\n $lkey = $linit;\n $whereToInsert = $middle-$lkey;\n }\n array_splice( $lineByLine, $whereToInsert, 0, \" \" );\n $lkey+=$linc;\n }\n \n $middle = (int) (count($lineByLine)/2);\n $side = ($side == \"right\" ? \"left\" : \"right\");\n $spacesNeeded--;\n }\n $this->textToPrint[$i] = implode(\"\", $lineByLine);\n }\n }\n }", "function splitQuestions($a) {\r\n\r\n\tif(strpos($a, \",\")) {\r\n\t\t$t = preg_split(\"/,/\", $a);\r\n\t\treturn $t;\r\n\t}\r\n\telse {\r\n\t\t$t = array($a);\r\n\t\treturn $a;\r\n\t}\r\n}", "public function getFirstParagraph()\n {\n return substr(\n $this->markdown_description,\n strpos(\n $this->markdown_description,\n \"<p\"\n ),\n strpos(\n $this->markdown_description,\n \"</p>\"\n )+4\n );\n\n }", "function mb_str_split( $string ) {\n # and not before the end: $\n return preg_split('/(?<!^)(?!$)/u', $string );\n }", "static function pl($txt){\r\n $a = preg_split(\"/\\r?\\n/\", $txt);\r\n $padlen = strlen(strval(sizeof($a)));\r\n $cnt = 0;\r\n foreach ($a as $line) {\r\n self::p(self::zfill(++$cnt, $padlen) . ': ' . $line);\r\n }\r\n }", "function tokenText($str)\n{\n $matches = preg_split(\"/\\;\\s*\\\\$/uism\", $str);\n $object = array();\n foreach ($matches as $match) {\n preg_match(\"/\\\\$?(\\w+)\\:(.*)/uism\", trim($match), $_matches);\n $object[$_matches[1]] = rtrim($_matches[2], \";\");\n }\n return $object;\n}", "public function split()\n {\n return preg_split('/(?=[A-Z])/', $this->className);\n }", "protected function Greedy($paragraph,&$text_lines) {\r\n if ($this->hyphen ===null) { //no hyphenation dictionary has been defined. \r\n I2CE::raiseError(\"No hypentation dictionary defined\");\r\n //try and recover\r\n return $this->Truncate($paragraph);\r\n }\r\n $fm = &$this->font_metric;\r\n $space_length = $fm->getCharacterWidth($this->space_char,true);\r\n $hyphen_length = $fm->getCharacterWidth($this->hyphen_char,true);\r\n $mb_encoding = $this->encoding->getEncodingType();\r\n $use_mb = $this->encoding->useMB();\r\n $words = $this->getWords($paragraph);\r\n $current_line = count($text_lines) -1 ;\r\n $line_length = 0;\r\n $is_first_word_of_row = true;\r\n foreach ($words as $word) {\r\n if ($is_first_word_of_row) { \r\n $has_space = false; //do we have a preceeding space for this word\r\n } else{\r\n //first to check if a space would cause a line break\r\n if ($space_length + $line_length > $this->width) {\r\n //line break\r\n $current_line++;\r\n if ($use_mb) {\r\n $text_lines[] = mb_convert_encoding(\"\",$mb_encoding);\r\n } else {\r\n $text_lines[] = \"\";\r\n }\r\n $is_first_word_of_row = true;\r\n $line_length = 0;\r\n $has_space = false;\r\n } else {//otherwise we can move on with this line\r\n $has_space = true;\r\n }\r\n }\r\n $word_length = $fm->getStringWidth($word,true);\r\n if ($has_space) {\r\n $word_length = $word_length + $space_length;\r\n }\r\n if ( $word_length + $line_length <= $this->width) { //we can place the word\r\n if ($has_space) {\r\n $text_lines[$current_line] .= $this->space_char;\r\n }\r\n $text_lines[$current_line] .= $word;\r\n $is_first_word_of_row = false;\r\n //$line_length += $word_length;\r\n $line_length = $fm->getStringWidth($text_lines[$current_line],true); //slower but safer.\r\n //actually it is just that i am too lazy to compute the kerning for a possible space.\r\n } else { \r\n /*we need to truncate the word. word truncations should be\r\n *allowed to occur in hyphenation points. hyphenation points\r\n * are only defined on letters. we shall also allow hyphenations before\r\n * or after any non-letter. \r\n */\r\n $word_parts = $this->hyphen->getWordParts($word);\r\n $num_word_parts = count($word_parts);\r\n $word_part = 0; //the current word part we are trying to place\r\n $used_hyphen = false;\r\n while ($word_part < $num_word_parts){ //we have a word part left to place\r\n $remaining_space = max(1,$this->width - $line_length);\r\n // $sub_word contains the part of the word we know that we can place on the current line\r\n // $new_sub_word contains what we are trying to place on the current line\r\n if ($use_mb) {\r\n $new_sub_word = mb_convert_encoding(\"\",$mb_encoding);\r\n } else {\r\n $new_sub_word = '';\r\n }\r\n $new_sub_word_length = 0;\r\n $prev_word_part = $word_part-1; //the word part we previously placed\r\n $word_part--;\r\n $possible_space = 0;\r\n if (($prev_word_part == -1) && ($has_space)) {\r\n $possible_space = $space_length;\r\n }\r\n do {\r\n $sub_word = $new_sub_word;\r\n $sub_word_length = $new_sub_word_length;\r\n $word_part++;\r\n if ($word_part < $num_word_parts) {\r\n $new_sub_word .= $word_parts[$word_part]['Subword'];\r\n }\r\n $new_sub_word_length = $fm->getStringWidth($new_sub_word,true);\r\n if (($word_part +1 >= $num_word_parts) || (!$word_parts[$word_part+1]['IsLetter'])) {\r\n $possible_hyphen = 0; //we don't need a trailing hyphen since this is the last word part\r\n } else {\r\n $indx = $word_parts[$word_part]['Length']-1;\r\n if ($use_mb) {\r\n $last_char = mb_substr($word_parts[$word_part]['Subword'],\r\n $indx,1,$mb_encoding);\r\n } else {\r\n $last_char = $word_parts[$word_part];\r\n $last_char = $word_parts[$word_part]['Subword'][$indx];\r\n }\r\n $kern = $fm->getKerningValue($last_char,$this->hyphen_char,true);\r\n $possible_hyphen = $hyphen_length + $kern; \r\n }\r\n } while (($new_sub_word_length + $possible_hyphen + $possible_space <= $remaining_space) && ($word_part < $num_word_parts));\r\n if ($new_sub_word_length + $possible_hyphen + $possible_space <= $remaining_space) { \r\n //we were able to place all of the sub-word. This happens if have\r\n //already gpne to the next line while trying to place word parts\r\n if (($prev_word_part == -1) && ($has_space)) {\r\n $text_lines[$current_line] .= $this->space_char;\r\n }\r\n $text_lines[$current_line] .= $new_sub_word;\r\n $line_length += $new_sub_word_length;\r\n $is_first_word_of_row = false;\r\n $used_hyphen = false;\r\n } else {//we exceeded the remaining space with the last word part \r\n //$word_part now temporairily contains the part of the word that exceeded the availble space\r\n // echo \"for ($word) we have ({$word_part})<br/>\\n\";\r\n if ($word_part -1 > $prev_word_part) {\r\n // echo \"for ($word) we have placed before \". $word_parts[$word_part]['Subword'] . \"<br/>\";\r\n // echo \"for ($word) what we placed before was (\". $text_lines[$current_line] . \")<br/>\";\r\n //we are able to place at least one word part\r\n if (($prev_word_part == -1 ) && ($has_space) ) { \r\n //we are placing the first components of the word\r\n $text_lines[$current_line] .= $this->space_char;\r\n }\r\n $text_lines[$current_line] .= $sub_word; \r\n if ($word_part == $num_word_parts) {\r\n // echo \"for ($word) no hyphen b/c last<br/>\";\r\n }\r\n if (!$word_parts[$word_part]['IsLetter']) { \r\n // echo \"for ($word) no hyphen b/c next piece is not letter<br/>\";\r\n // print_r($word_parts[$word_part]);\r\n }\r\n if (($word_part != $num_word_parts ) && ($word_parts[$word_part]['IsLetter'])) { \r\n $text_lines[$current_line] .= $this->hyphen_char;\r\n $used_hyphen = true;\r\n }\r\n $line_length += $possible_space + $sub_word_length + $possible_hyphen;\r\n $is_first_word_of_row = false;\r\n // echo \"for ($word) what we now placed is (\". $text_lines[$current_line] . \")<br/>\";\r\n //on the next go around of the loop we will be trying to place $word_part\r\n } else { \r\n // echo \"for ($word) we have exceeded on {$word_parts[$word_part]} <br/>\";\r\n /**\r\n *the current word part exceeded the remaining space\r\n *if it is the first word of the row we need to place a part of it\r\n *by truncation. We also want to do so it there is an excess\r\n *amount of remaining space compared to the word with what is already used.\r\n * I am arbitrairily deciding that more than 50% white space is excessive\r\n */\r\n $is_excessive = false;\r\n if (($this->width > 1) && (!$is_first_word_of_row)) {\r\n\r\n if ( (( (float) $remaining_space) / ((float) $this->width)) > 0.5) {\r\n $is_excessive = true; \r\n }\r\n }\r\n if (($is_excessive) || ($is_first_word_of_row)) {\r\n // echo \"for ($word) we are forcing on {$word_parts[$word_part]} b/c exc or first<br/>\";\r\n /** \r\n *We have to force at least one character to be put.\r\n *We will in fact place as many possible on this line\r\n *It could be the case that we have a really long word\r\n *with only one word part. If the current word part is\r\n * the only word part remaining we will then recalculate \r\n * the word parts on what is remaining of the word. It\r\n * may make for incorrect hyphenation, but then we are\r\n * placing the word across several lines, so this is a nice\r\n * compromise\r\n */\r\n if ($is_excessive && $used_hyphen) {\r\n //eat up the hyphen we have placed.\r\n if ($use_mb) {\r\n $ll = mb_strlen($text_lines[$current_line],$mb_encoding);\r\n $text_lines[$current_line]= mb_substr($text_lines[$current_line],0,$ll-1,$mb_encoding);\r\n } else {\r\n $ll = strlen($text_lines[$current_line]);\r\n $text_lines[$current_line] = substr($text_lines[$current_line],0,$ll-1);\r\n }\r\n //recalculate the remaining space\r\n $line_length = $fm->getStringWidth($text_lines[$current_line],true);\r\n $remaining_space = $this->width - $line_length;\r\n } else {\r\n if (($prev_word_part == -1 ) && ($has_space) ) { \r\n //we are placing the first components of the word\r\n $text_lines[$current_line] .= $this->space_char;\r\n }\r\n }\r\n if ($use_mb) {\r\n $trunc_word = mb_convert_encoding(\"\",$mb_encoding);\r\n } else {\r\n $trunc_word = '';\r\n }\r\n $trunc_length = 0; \r\n $chars = 0;\r\n do {\r\n $chars++;\r\n $word_parts[$word_part]['Length']--;\r\n $word_parts[$word_part]['Offset']++;\r\n if ($use_mb) {\r\n $c = mb_substr($word_parts[$word_part]['Subword'],0,1,$mb_encoding);\r\n $word_parts[$word_part]['Subword'] \r\n = mb_substr($word_parts[$word_part]['Subword'] ,\r\n 1,\r\n $word_parts[$word_part]['Length'] ,\r\n $mb_encoding);\r\n } else {\r\n $c = substr($word_parts[$word_part]['Subword'],0,1);\r\n $word_parts[$word_part]['Subword'] = substr($word_parts[$word_part]['Subword'],1); \r\n }\r\n //add the character\r\n $old_trunc_word = $trunc_word;\r\n $trunc_word .= $c;\r\n $old_trunc_length = $trunc_length;\r\n $trunc_length = $fm->getStringWidth($trunc_word . $this->hyphen_char,true); //slow!\r\n } while(($trunc_length <= $remaining_space) && \r\n ($word_parts[$word_part]['Length'] > 0)); \r\n //second condition should never be satisfied, its there for safety\r\n //we exceeded the available space on the last character placed\r\n //so we need to return it if we places more than one character\r\n if ($chars == 1) {\r\n //we only placed one character. too bad.\r\n\r\n } else {\r\n //return the last character\r\n $word_parts[$word_part]['Length']++;\r\n $word_parts[$word_part]['Offset']--;\r\n $word_parts[$word_part]['Subword'] = $c . $word_parts[$word_part]['Subword'];\r\n $trunc_word = $old_trunc_word;\r\n $trunc_length = $old_trunc_length;\r\n }\r\n if (($num_word_parts == $word_part +1) && ($word_parts[$word_part]['Length']==0)) {\r\n $text_lines[$current_line] .= $trunc_word;\r\n } else {\r\n //check to see if the next word part begins with a letter\r\n //if so place a hyphen\r\n // if (!is_string($word_parts[$word_part])) {\r\n // I2CE::raiseError(\"Bad \" . print_r($word_parts[$word_part],true));\r\n // }\r\n //$utf8_part = mb_convert_encoding($word_parts[$word_part],'UTF-8',$mb_encoding);\r\n if ($word_parts[$word_part]['IsLetter']) {\r\n $text_lines[$current_line] .= $trunc_word . $this->hyphen_char;\r\n }\r\n }\r\n $used_hyphen = true;\r\n $is_first_word_of_row = false;\r\n $line_length .= $trunc_length;\r\n $is_first_word_of_row = false;\r\n if ($word_parts[$word_part]['Length'] ==0) { //we reached the end of this word part\r\n $word_part++;\r\n } else if ($num_word_parts == $word_part + 1) {\r\n //if we only had one word part remaining, we\r\n //now reset the $word_parts by calculating a new hyphenation\r\n if ($use_mb) {\r\n $remaining_word = mb_convert_encoding(\"\",$mb_encoding);\r\n } else {\r\n $remaining_word = \"\";\r\n } \r\n for ($k=$word_part; $k < $num_word_parts; $k++) {\r\n $remaining_word .= $word_parts[$k]['Subword'];\r\n }\r\n $word_parts = $this->hyphen->getWordParts($remaining_word);\r\n $num_word_parts = count($word_parts);\r\n $word_part = 0;\r\n }\r\n }\r\n // echo \"for ($word) we have skip to next line on {$word_parts[$word_part]} <br/>\";\r\n //it is not the first word of the line, so we can happily skip to the next line\r\n $line_length = 0;\r\n $current_line++;\r\n if ($use_mb) {\r\n $text_lines[] = mb_convert_encoding(\"\",$mb_encoding);\r\n } else {\r\n $text_lines[] = \"\";\r\n }\r\n $is_first_word_of_row = true;\r\n $has_space = false;\r\n }\r\n }\r\n }\r\n\r\n }\r\n }\r\n return $text_lines;\r\n \r\n }", "public function testParagraphThenListTheParagraph()\n {\n $result = null;\n\n try {\n $quill = new QuillRender(\n $this->delta_paragraph_then_list_then_paragraph,\n OPTIONS::FORMAT_GITHUB_MARKDOWN\n );\n $result = $quill->render();\n } catch (\\Exception $e) {\n $this->fail(__METHOD__ . 'failure, ' . $e->getMessage());\n }\n\n $this->assertEquals(\n $this->expected_paragraph_then_list_then_paragraph,\n trim($result),\n __METHOD__ . ' Paragraph then list then paragraph failure'\n );\n }", "private function prepara_dados($dados){\n\t\t/*\n\t\t * Esse método faz todos os tratamentos necessários para usar os dados recuperados do campo de busca\n\t\t * do formulário para realizar a pesquisa\n\t\t */\n\t\t$delimiters = array( \"/\" , \".\" , \",\" , \"-\" , \"_\" ); //delimitadores para remover da frase\n\t\t\n\t\tforeach($delimiters as $del) $dados = str_replace($del,\" \",$dados);\n\t\treturn explode(\" \",$dados);\n\t}", "public static function paragraphs($count, $isCommon = true)\n {\n\n for ($i = 0; $i < $count; $i++)\n if ($isCommon && $i == 0)\n $paras[] = self::COMMON_P;\n else\n $paras[] = self::paragraph();\n\n return implode($paras, \"\\n\");\n }", "protected function split($str)\n {\n return explode(' ', $str);\n }", "function cut_word(string $word)\n{\n// \"u\", \"v\", \"w\", \"x\", \"y\", \"z\");\n $save_word = \"\";\n $answer_word = array();\n $count_array = 0;\n $word = strtolower($word) . \" \";\n for ($i = 0; $i < strlen($word); $i++) {\n if ($word[$i] != \" \") {\n $save_word = $save_word . $word[$i];\n } else {\n $answer_word[$count_array] = $save_word;\n $count_array++;\n $save_word = \"\";\n }\n }\n return $answer_word;\n}", "function arr_description_words($text)\n{\n // return str_word_count_utf8($text,1);\n $array_text_words = str_word_count($text, 1);\n\n return $array_text_words;\n\n}", "public function testSplitWords()\n {\n $words = '123 123 45 789';\n $filter = new \\Magento\\Framework\\Filter\\SplitWords(false, 3);\n $this->assertEquals(['123', '123', '45'], $filter->filter($words));\n $filter = new \\Magento\\Framework\\Filter\\SplitWords(true, 2);\n $this->assertEquals(['123', '45'], $filter->filter($words));\n }", "public static function provideStripOuterParagraph() {\n\t\t$message = new RawMessage( \"Message text.\" );\n\n\t\treturn array(\n\t\t\tarray(\n\t\t\t\t\"<p>Text.</p>\",\n\t\t\t\t\"Text.\",\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t\"<p class='foo'>Text.</p>\",\n\t\t\t\t\"<p class='foo'>Text.</p>\",\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t\"<p>Text.\\n</p>\\n\",\n\t\t\t\t\"Text.\",\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t\"<p>Text.</p><p>More text.</p>\",\n\t\t\t\t\"<p>Text.</p><p>More text.</p>\",\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t$message->parse(),\n\t\t\t\t\"Message text.\",\n\t\t\t),\n\t\t);\n\t}", "public static function split_content( $content ) {\n\t\t$begin = TpsMisc::mb_strpos( $content, TpsOptions::get_beginning_post_content_separator() );\n\t\t$end = TpsMisc::mb_strpos( $content, TpsOptions::get_ending_post_content_separator() );\n\n\t\tif ( $begin !== false && $end !== false ) {\n\t\t\t// Cut!\n\t\t\t$beforeContent = TpsMisc::mb_substr( $content, 0, $begin );\n\t\t\t$afterContent = TpsMisc::mb_substr( $content, $end );\n\n\t\t\t$begin += TpsMisc::mb_strlen( TpsOptions::get_beginning_post_content_separator() );\n\t\t\t$content = TpsMisc::mb_substr( $content, $begin, $end - $begin );\n\t\t} else {\n\t\t\t$beforeContent = '';\n\t\t\t$afterContent = '';\n\t\t}\n\n\t\t// Trim left and right whitespaces.\n\t\t$content = trim( $content );\n\n\t\treturn array(\n\t\t\t'beforeContent' => $beforeContent,\n\t\t\t'content' => $content,\n\t\t\t'afterContent' => $afterContent\n\t\t);\n\t}", "function superExplode($s, $sep)\n\t{\t$i = 0;\n\t\t$arr[$i++] = strtok($s, $sep);\n\t\twhile (($token = strtok($sep)) !== FALSE)\n\t\t\t$arr[$i++] = $token;\n\t\treturn $arr;\n\t}" ]
[ "0.73839754", "0.64181995", "0.63761085", "0.62363005", "0.6234697", "0.6230146", "0.62292403", "0.6199656", "0.6135774", "0.60573125", "0.605253", "0.5980214", "0.59549177", "0.59389096", "0.592512", "0.5887678", "0.5868822", "0.5835698", "0.57944226", "0.57468146", "0.5697709", "0.5667745", "0.56625897", "0.5635598", "0.5589907", "0.5537503", "0.55306935", "0.5527756", "0.55267286", "0.55176824", "0.5509819", "0.5493632", "0.5493348", "0.5492396", "0.5487921", "0.5477217", "0.5442144", "0.54237896", "0.54021347", "0.53948975", "0.5373581", "0.53484577", "0.53265136", "0.5308775", "0.53039193", "0.52909124", "0.5283674", "0.528016", "0.52775764", "0.5267532", "0.5254891", "0.5252715", "0.5247748", "0.5247529", "0.52212566", "0.51955867", "0.5193705", "0.51904404", "0.5181207", "0.51503575", "0.513895", "0.51182145", "0.5106678", "0.5099398", "0.5083675", "0.5076587", "0.5067679", "0.50629723", "0.5053954", "0.5052952", "0.5052512", "0.5028557", "0.5014961", "0.50061715", "0.5005374", "0.49909452", "0.4967268", "0.49491376", "0.49468118", "0.49463454", "0.49183068", "0.49053445", "0.48991457", "0.48904032", "0.4888566", "0.488795", "0.4885444", "0.4880738", "0.4877084", "0.4874515", "0.486843", "0.48577955", "0.48554894", "0.48543993", "0.48468512", "0.48466134", "0.48452577", "0.48435658", "0.4835728", "0.483056" ]
0.49909505
75
Migration manifest: ENTRY landingpage aboutpage presspage eventpage bookpage Any migration code in here is wrapped inside of a transaction. Returning false will rollback the migration
public function safeUp() { $json = '{"content":{"entries":[{"slug":"landing-page","section":"landingPage","locales":{"en_us":{"slug":"landing-page","section":"landingPage","enabled":"1","locale":"en_us","localeEnabled":"1","postDate":{"date":"2017-11-26 00:45:56.000000","timezone_type":3,"timezone":"UTC"},"expiryDate":null,"title":"Landing Page","entryType":"landingPage","heroQuote":"Show up as the real you. The airbrushed you isn\u0027t sustainable, or even half as awesome.","tagline":"Recovering Perfectionist.","bio":"My biggest takeaway from spending the last twenty plus years as a clinician, educator, researcher and activist? That everything is learning and learning is everything. Lessons are always ours for the finding, if we stay woke. I live and breathe and eat and study human resilience, authenticity and identity. I\u2019ve spent my entire life in a love/hate relationship with my anxiety, my one true frenemy.\r\n\r\nI write to teach, to cope, and to spur on change\u2014to try to make sense of our complicated and gorgeous human condition. Mostly, this happens by rethinking and unlearning what we\u2019re first sold.","featuredPress":[{"elementType":"Entry","slug":"npr-anxiety-as-frenemy","section":"press"},{"elementType":"Entry","slug":"rethink-your-way-to-a-saner-holiday-season","section":"press"},{"elementType":"Entry","slug":"a-psychologists-theory-of-rational-compassion-can-help-fight-burnout","section":"press"},{"elementType":"Entry","slug":"what-to-do-when-youve-got-the-holiday-blues","section":"press"}],"featuredResources":[{"elementType":"Entry","slug":"resource-1","section":"resources"},{"elementType":"Entry","slug":"resource-2","section":"resources"},{"elementType":"Entry","slug":"resource-3","section":"resources"},{"elementType":"Entry","slug":"resource-4","section":"resources"},{"elementType":"Entry","slug":"resource-5","section":"resources"},{"elementType":"Entry","slug":"resource-6","section":"resources"}]}}},{"slug":"about-page","section":"aboutPage","locales":{"en_us":{"slug":"about-page","section":"aboutPage","enabled":"1","locale":"en_us","localeEnabled":"1","postDate":{"date":"2017-11-27 02:45:08.000000","timezone_type":3,"timezone":"UTC"},"expiryDate":null,"title":"About Page","entryType":"aboutPage","bio":"My biggest takeaway from spending the last twenty plus years as a clinician, educator, researcher and activist? That everything is learning and learning is everything. Lessons are always ours for the finding, if we stay woke. I live and breathe and eat and study human resilience, authenticity and identity. I\u2019ve spent my entire life in a love/hate relationship with my anxiety, my one true frenemy.\r\n\r\nI write to teach, to cope, and to spur on change\u2014to try to make sense of our complicated and gorgeous human condition. Mostly, this happens by rethinking and unlearning what we\u2019re first sold.\r\nI love serving as the Lead Faculty for Behavioral Science at Northeastern University. Even though I consider myself a global citizen, I adore my wicked awesome and Bostonstrong city.\r\n\r\nMy children and my students have taught me as much as I\u2019ve taught them. I believe human progress is always possible. But first, we need to stop romanticizing resilience, and get honest about the conditions that cause us to need it in the first place. Despite what\u2019s being Chicken Littled out there, we have a lot more in common than we realize. I can\u2019t stand pretentiousness. We shine brightest in raw, underdog, misfit mode, not airbrushed, forms. I have no place for fake it \u2018til you make it or hierarchy in my heart.\r\n\r\nIn my spare time, I can be found out on the running trails and attempting tricky yoga poses. I love peanut butter cups and kale juice\u2014but not at the same time.\r\n\r\nMy \u201crecovery\u201d as a perfectionist is a bit of a circus, but it keeps things entertaining.\r\n\r\nSo glad you\u2019re here-- take awesome care!","bioImage":[{"elementType":"Asset","filename":"bio-color.jpg","folder":"Dr Kris","source":"drKris"}]}}},{"slug":"press-page","section":"pressPage","locales":{"en_us":{"slug":"press-page","section":"pressPage","enabled":"1","locale":"en_us","localeEnabled":"1","postDate":{"date":"2017-11-27 03:37:11.000000","timezone_type":3,"timezone":"UTC"},"expiryDate":null,"title":"Press Page","entryType":"pressPage","topFeatured":[{"elementType":"Entry","slug":"dr-kris-tedx","section":"press"}],"mentionedInFeatured":[{"elementType":"Entry","slug":"rethink-your-way-to-a-saner-holiday-season","section":"press"}],"videoPodcastFeatured":[{"elementType":"Entry","slug":"healthy-hanover-show","section":"press"}]}}},{"slug":"event-page","section":"eventPage","locales":{"en_us":{"slug":"event-page","section":"eventPage","enabled":"1","locale":"en_us","localeEnabled":"1","postDate":{"date":"2017-11-29 17:25:00.000000","timezone_type":3,"timezone":"UTC"},"expiryDate":null,"title":"Event Page","entryType":"eventPage","heroImage":[{"elementType":"Asset","filename":"Boston Ballet.jpg","folder":"Event Page Photos","source":"eventPagePhotos"}],"carouselImages":[]}}},{"slug":"book-page","section":"bookPage","locales":{"en_us":{"slug":"book-page","section":"bookPage","enabled":"1","locale":"en_us","localeEnabled":"1","postDate":{"date":"2017-12-04 03:40:44.000000","timezone_type":3,"timezone":"UTC"},"expiryDate":null,"title":"Book Page","entryType":"bookPage","mentalligenceCallToAction":"Coming 2018!","mentalligenceButtonText":"Pre-order Now","whatIsMentalligence":"My biggest takeaway from spending the last twenty plus years as a clinician, educator, researcher, and activist? That everything is learning and learning is everything. Lessons are always ours for the finding, if we stay woke. I live and breath and eat and study human resilience, authenticity, and identity. I\u0027ve spent my entire life in a love/hate relationship with my anxiety, my one true frenemy.\r\n\r\nI write to teach, to cope, to spur on change - to try to make sense of our complicated and gorgeous human condition. Mostly, this happens by rethinking and unlearning what we\u0027re first sold.","praiseForMentalligence":[{"elementType":"Entry","slug":"book-review-kirkus-reviews-2017-12-07","section":"bookReviews"},{"elementType":"Entry","slug":"book-review-amy-morin-lcsw-bestselling-author-of-13-things-mentally-strong-people-dont-do-2017-12-07","section":"bookReviews"}],"aboutReset":"I write to teach, to cope, to spur on change - to try to make sense of our complicated and gorgeous human condition. Mostly, this happens by rethinking and unlearning what we\u0027re first sold.","praiseForReset":[{"elementType":"Entry","slug":"book-review-kirkus-reviews-2017-12-07","section":"bookReviews"},{"elementType":"Entry","slug":"book-review-amy-morin-lcsw-bestselling-author-of-13-things-mentally-strong-people-dont-do-2017-12-07","section":"bookReviews"},{"elementType":"Entry","slug":"book-review-cameron-marzelli-phd-2017-12-07","section":"bookReviews"}],"resetButtonText":"Buy the Book"}}}]}}'; return craft()->migrationManager_migrations->import($json); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function isMigratingUp();", "public function shouldRunMigration()\n {\n return $this->canRunMigration()\n && !Mage::getStoreConfigFlag(self::MIGRATION_COMPLETE)\n && !Mage::getStoreConfig('payment/gene_braintree/merchant_id')\n && !Mage::getStoreConfig('payment/gene_braintree/sandbox_merchant_id');\n }", "function install_pages() {\n $db = DB::getInstance();\n if(!$db->query(file_get_contents(CORE_INSTALLER_FILES_PATH.'/db/pages.sql'))->error()) {\n return true;\n }\n else {\n System::addMessage('error', rt('An error occurred during the creation of a sample home page'));\n }\n return false;\n}", "public function migrationsToRun()\n\t{\n\t\t$manifestData = $this->_getManifestData();\n\n\t\tfor ($i = 0; $i < count($manifestData); $i++)\n\t\t{\n\t\t\t$row = explode(';', $manifestData[$i]);\n\n\t\t\t// We found a migration\n\t\t\tif (UpdateHelper::isManifestMigrationLine($row[0]) && $row[1] == PatchManifestFileAction::Add)\n\t\t\t{\n\t\t\t\tBlocks::log('Found migration file: '.$row[0], \\CLogger::LEVEL_INFO);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}", "public function makeMigration()\n {\n $name = $this->meta['name'];\n if ($this->files->exists($path = $this->getPath($name))) {\n return $this->error($this->type . ' already exists!');\n }\n $this->makeDirectory($path);\n if($this->files->put($path, $this->compileMigrationStub())){\n return true;\n }\n\n return false;\n }", "private function run() {\n\t\tif ( $this->upgrade_schema->does_table_exist( $this->get_table() ) ) {\n\t\t\tif ( ! $this->upgrade_schema->does_column_exist( $this->get_table(), $this->get_column() ) ) {\n\t\t\t\t$this->upgrade_schema->add_column( $this->get_table(), $this->get_column(), $this->get_column_definition() );\n\t\t\t}\n\t\t}\n\n\t\treturn true;\n\t}", "public function doDatabaseUpdate()\n\t{\n\t\ttry\n\t\t{\n\t\t\tif ($this->_backupDb)\n\t\t\t{\n\t\t\t\t$dbBackup = new DbBackup();\n\t\t\t\t$this->_dbBackupPath = $dbBackup->run();\n\t\t\t}\n\n\t\t\tif (blx()->migrations->runToTop())\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\tcatch(\\Exception $e)\n\t\t{\n\t\t\t// We had migrations to run and something went wrong. Let's try to restore the backup database.\n\t\t\tif ($this->_backupDb)\n\t\t\t{\n\t\t\t\tUpdateHelper::rollBackDatabaseChanges($this->_dbBackupPath);\n\t\t\t}\n\n\t\t\tthrow $e;\n\t\t}\n\n\t\t// We had migrations to run and something went wrong. Let's try to restore the backup database.\n\t\tif ($this->_backupDb)\n\t\t{\n\t\t\tUpdateHelper::rollBackDatabaseChanges($this->_dbBackupPath);\n\t\t}\n\n\t\treturn false;\n\t}", "function migrate(){\n\n create_table();\n save_migration_tables();\n\n}", "public function supportsMigrations();", "public function migrateUp($class)\n {\n if ($class === self::BASE_MIGRATION) {\n return true;\n }\n\n $this->stdout(\"*** applying $class\\n\", Console::FG_YELLOW);\n $start = microtime(true);\n $migration = parent::createMigration($class);\n if ($migration->up() !== false) {\n $time = microtime(true) - $start;\n $this->stdout(\"*** applied $class (time: \" . sprintf('%.3f', $time) . \"s)\\n\\n\", Console::FG_GREEN);\n\n return true;\n } else {\n $time = microtime(true) - $start;\n $this->stdout(\"*** failed to apply $class (time: \" . sprintf('%.3f', $time) . \"s)\\n\\n\", Console::FG_RED);\n\n return false;\n }\n }", "public function safeUp()\n\t{\n\t\tif (!craft()->db->columnExists('sections_i18n', 'enabledByDefault'))\n\t\t{\n\t\t\t$this->addColumnAfter('sections_i18n', 'enabledByDefault', array('column' => ColumnType::Bool, 'default' => 1), 'locale');\n\t\t\tCraft::log('Successfully added the sections_i18n.enabledByDefault column.', LogLevel::Info, true);\n\t\t}\n\t\telse\n\t\t{\n\t\t\tCraft::log('The sections_i18n.enabledByDefault column already exists.', LogLevel::Info, true);\n\t\t}\n\n\t\treturn true;\n\t}", "public function canRunMigration()\n {\n return Mage::helper('core')->isModuleEnabled('Braintree_Payments');\n }", "public function needsUpgrade() {\n $schema = $this->Version->Version->schema();\n\n // Needs upgrade\n if (isset($schema['version'])) {\n return;\n }\n\n // Do not need, 001 already set it as string\n // Unset actions, records and mappings, so it wont try again\n $this->migration = array(\n 'up' => array(),\n 'down' => array(),\n );\n $this->records = array();\n $this->mappings = array();\n }", "public function migrate()\n\t{\n\t}", "function db_check() {\n\t\tif(!is_admin() || !$this->db_option || !$this->db_version || !$this->table_schema) return false;\n\t\tglobal $wpdb;\n\t\t$current_db_version = get_option($this->db_option);\n\t\tif($this->db_version != $current_db_version) {\n\t\t\t$this->db_install_options();\n\t\t\t$this->db_install($sql);\n\t\t}\n\t}", "function NeedDatabaseUpgrade()\n\t{\n\t\tif ($this->database_version == -1) {\n\t\t\t$this->CheckCron();\n\t\t}\n\n\t\tif ($this->database_version < SENDSTUDIO_DATABASE_VERSION) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "function check_upgrade_stuff() {\n\n\t\tglobal $wpdb;\n\n\t\t$db_version = get_option(\"simple_history_db_version\");\n\t\t$table_name = $wpdb->prefix . \"simple_history\";\n\t\t// $db_version = FALSE;\n\t\t\n\t\tif ( false === $db_version ) {\n\n\t\t\t// db fix has never been run\n\t\t\t// user is on version 0.4 or earlier\n\t\t\t// = database is not using utf-8\n\t\t\t// so fix that\n\t\t\t\n\t\t\trequire_once(ABSPATH . 'wp-admin/includes/upgrade.php');\n\t\t\t#echo \"begin upgrading database\";\n\t\t\t\n\t\t\t// We change the varchar size to add one num just to force update of encoding. dbdelta didn't see it otherwise.\n\t\t\t$sql = \"CREATE TABLE \" . $table_name . \" (\n\t\t\t id int(10) NOT NULL AUTO_INCREMENT,\n\t\t\t date datetime NOT NULL,\n\t\t\t action VARCHAR(256) NOT NULL COLLATE utf8_general_ci,\n\t\t\t object_type VARCHAR(256) NOT NULL COLLATE utf8_general_ci,\n\t\t\t object_subtype VARCHAR(256) NOT NULL COLLATE utf8_general_ci,\n\t\t\t user_id int(10) NOT NULL,\n\t\t\t object_id int(10) NOT NULL,\n\t\t\t object_name VARCHAR(256) NOT NULL COLLATE utf8_general_ci,\n\t\t\t action_description longtext,\n\t\t\t PRIMARY KEY (id)\n\t\t\t) CHARACTER SET=utf8;\";\n\n\t\t\t// Upgrade db / fix utf for varchars\n\t\t\tdbDelta($sql);\n\t\t\t\n\t\t\t// Fix UTF-8 for table\n\t\t\t$sql = sprintf('alter table %1$s charset=utf8;', $table_name);\n\t\t\t$wpdb->query($sql);\n\t\t\t\n\t\t\t// Store this upgrade in ourself :)\n\t\t\tsimple_history_add(\"action=\" . 'upgraded it\\'s database' . \"&object_type=plugin&object_name=\" . SIMPLE_HISTORY_NAME);\n\n\t\t\t#echo \"done upgrading database\";\n\t\t\t\n\t\t\tupdate_option(\"simple_history_db_version\", 1);\n\n\t\t} // done pre db ver 1 things\n\n\t\t// DB version is 1, upgrade to 2\n\t\tif ( 1 == intval($db_version) ) {\n\n\t\t\t// Add column for action description in non-translateable free text\n\t\t\t$sql = \"ALTER TABLE {$table_name} ADD COLUMN action_description longtext\";\n\t\t\tmysql_query($sql);\n\n\t\t\tsimple_history_add(\"action=\" . 'upgraded it\\'s database' . \"&object_type=plugin&object_name=\" . SIMPLE_HISTORY_NAME . \"&description=Database version is now version 2\");\n\t\t\tupdate_option(\"simple_history_db_version\", 2);\n\n\t\t}\n\n\t\t// Check that all options we use are set to their defaults, if they miss value\n\t\t// Each option that is missing a value will make a sql cal otherwise = unnecessary\n\t\t$arr_options = array(\n\t\t\tarray(\n\t\t\t\t\"name\" => \"sh_extender_modules\",\n\t\t\t\t\"default_value\" => \"\"\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t\"name\" => \"simple_history_show_as_page\",\n\t\t\t\t\"default_value\" => 1\t\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t\"name\" => \"simple_history_show_on_dashboard\",\n\t\t\t\t\"default_value\" => 0\n\t\t\t)\n\t\t);\n\n\t\tforeach ($arr_options as $one_option) {\n\t\t\t\n\t\t\tif ( false === ($option_value = get_option( $one_option[\"name\"] ) ) ) {\n\n\t\t\t\t// Value is not set in db, so set it to a default\n\t\t\t\tupdate_option( $one_option[\"name\"], $one_option[\"default_value\"] );\n\n\t\t\t}\n\t\t}\n\t\t\n\t}", "public function migrate() {}", "function migrate_db() {\r\n \r\n // $migrater->create_migrations_table();\r\n // $migrater->build_schema();\r\n }", "protected function isImportDatabaseDone() {}", "public function safeUp()\n\t{\n\t\tif(! craft()->db->columnExists('headers', 'placid_requests') ) {\n\t\t\t// $this->addColumnAfter('placid_requests', 'userMapping', array(AttributeType::String, 'required' => false), 'userId');\n\t\t\t$this->addColumnAfter('placid_requests', 'headers', array('column' => ColumnType::Text), 'params');\n\t\t}\n\t\treturn true;\n\t}", "public function safeUp()\n\t{\n\t\tif (!craft()->db->columnExists('plugins', 'licenseKey'))\n\t\t{\n\t\t\tCraft::log('Adding licenseKey column to plugins table', LogLevel::Info, true);\n\t\t\t$this->addColumnAfter('plugins', 'licenseKey', array('column' => ColumnType::Char, 'length' => 24), 'schemaVersion');\n\t\t\tCraft::log('Done adding licenseKey column to plugins table.', LogLevel::Info, true);\n\t\t}\n\n\t\tif (!craft()->db->columnExists('plugins', 'licenseKeyStatus'))\n\t\t{\n\t\t\tCraft::log('Adding licenseKeyStatus column to plugins table', LogLevel::Info, true);\n\t\t\t$this->addColumnAfter('plugins', 'licenseKeyStatus', array('column' => ColumnType::Enum, 'values' => array('valid', 'invalid', 'mismatched', 'unknown'), 'default' => 'unknown', 'null' => false), 'licenseKey');\n\t\t\tCraft::log('Done adding licenseKeyStatus column to plugins table.', LogLevel::Info, true);\n\t\t}\n\n\t\treturn true;\n\t}", "public function install()\n {\n include(dirname(__FILE__).'/sql/install.php');\n\n return parent::install() &&\n $this->registerHook('header') &&\n $this->registerHook('backOfficeHeader') &&\n $this->registerHook('displayHome');\n }", "public function migrate()\n\t{ \n\t\t(new MigratorInterface)->migrate();\n\t}", "public function safeUp() {\n\t$this->createTable('post', array(\n 'id' =>\"int(11) NOT NULL AUTO_INCREMENT\",\n 'created_on' =>\"int(11) NOT NULL\",\n 'title' =>\"varchar(255) NOT NULL\",\n 'context' =>\"text NOT NULL\",\n \"PRIMARY KEY (`id`)\"\n\t),'ENGINE=InnoDB DEFAULT CHARSET=utf8');\n }", "public function safeUp()\r\n {\r\n $this->createTable('tbl_job_application', array(\r\n 'id' => 'pk',\r\n 'job_id' => 'integer NOT NULL',\r\n 'user_id' => 'integer NULL',\r\n 'name' => 'string NOT NULL',\r\n 'email' => 'text NOT NULL',\r\n 'phone' => 'text NOT NULL',\r\n 'resume_details' => 'text NOT NULL',\r\n 'create_date' => 'datetime NOT NULL',\r\n 'update_date' => 'datetime NULL',\r\n ));\r\n }", "public function safeUp() {\n\n $this->createTable('word', [\n 'word_id' => Schema::TYPE_PK,\n 'word_lang_id' => $this->integer(),\n 'word_name' => $this->string(500) . ' NOT NULL',\n 'word_detais' => $this->string(1000),\n ]);\n\n // Add foreign key\n $this->addForeignKey('fk_language_word_1', 'word',\n 'word_lang_id', 'language', 'lang_id', 'CASCADE', 'NO ACTION');\n \n // Create index of foreign key\n $this->createIndex('word_lang_id_idx', 'word', 'word_lang_id');\n }", "public function doMigrations() {\n\t\t$tbl = $this->tableManager->doMigrations();\n\t\t$fld = $this->fieldManager->doMigrations();\n\t\t$axs = $this->accessManager->doMigrations();\n\t\treturn $tbl && $fld && $axs;\n\t}", "private function run($direction) {\n\t\tDB::start_transaction();\n\n\t\ttry {\n\t\t\t$status = call_user_func(array($this, 'do_'.$direction));\n\t\t} catch(\\Exception $e) {\n\t\t\tCli::error($e);\n\t\t\t$status = false;\n\t\t}\n\n\t\tif(! $status) {\n\t\t\tCli::error(\"Something went wrong during the migration, rollback !\");\n\t\t\tDB::rollback_transaction();\n\t\t\tthrow new Database_Exception(\"Migration rolled back due to error.\");\n\t\t}\n\t\tDB::commit_transaction();\n\t\treturn true;\n\t}", "private function _alter() {\n\t\t$queries = array();\n\t\t\n\t\t$queries[] = ('BEGIN TRANSACTION');\n\t\t$q = \"SELECT * FROM _ssm_backup\";\n\t\t$r = @sqlite_query($q, $this->_connection);\n\t\t\n\t\tif(!sqlite_last_error($this->_connection)) {\n\t\t\tsqlite_query(\"DROP TABLE _ssm_backup\", $this->_connection);\n\t\t}\n\t\t\n\t\t$export = new export('sql');\n\t\t\n\t\t@sqlite_query(\"CREATE TABLE _ssm_backup AS SELECT * FROM {$this->_name}\", $this->_connection);\n\t\t$t = new table(\"{$this->_db}:_ssm_backup\");\n\t\t\n\t\t$queries[] = \"DROP TABLE {$this->_name}\";\n\n\t\t$sql = $export->structTable($this);\n\t\t$queries[] = $sql;\n\t\t$insertQuery = $this->_alterBuildInsertQuery($t);\n\t\t$queries[] = $insertQuery;\n\t\t$queries[] = \"COMMIT TRANSACTION\";\n\t\t\n\t\t$ret = true;\n\n\t\tforeach($queries as $query) {\n\t\t\t@sqlite_query($query, $this->_connection);\n\t\t\tif(@sqlite_last_error($this->_connection)) {\n\t\t\t\t$ret = false;\n\t\t\t}\n\t\t}\n\t\t\n\t\t@sqlite_query(\"DROP TABLE _ssm_backup\", $this->_connection);\n\t\treturn $ret;\n\t}", "public function migrateDatabase();", "function RunUpgrade()\n\t{\n\t\tif ($this->IndexExists('user_activitylog', array('userid', 'viewed'))) {\n\t\t\treturn true;\n\t\t}\n\n\t\t$query = 'CREATE INDEX ' . SENDSTUDIO_TABLEPREFIX . 'user_activitylog_userid_viewed_idx ON ' . SENDSTUDIO_TABLEPREFIX . 'user_activitylog(userid, viewed)';\n\n\t\t$result = $this->Db->Query($query);\n\t\tif ($result == false) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}", "public function insertPageIntoDB(string $pageName) : bool\n {\n try {\n $ucFirstPageName = ucfirst($pageName);\n $lowerPageName = strtolower($pageName);\n $nospacesPageName = str_replace(' ', '', $lowerPageName);\n\n $pageSettings = $this->db->lastId(\"INSERT INTO pagesettings (pagesettings_filename) VALUES (:filename)\", [':filename' => $nospacesPageName]);\n $this->db->query(\"INSERT INTO pages (page_title, page_link, fk_pageSettings) VALUES (:title, :link, :settings)\", [':title' => $ucFirstPageName, ':link' => $nospacesPageName, ':settings' => $pageSettings]);\n \n return true;\n } \n catch (PDOException $e) {\n echo $e->getMessage();\n return false;\n }\n \n }", "function wp_migrate_db_loaded() {\n\tif ( ! is_admin() || ( is_multisite() && ! current_user_can( 'manage_network_options' ) && ! WPMDB_Utils::is_ajax() ) ) {\n\t\treturn false;\n\t}\n\twp_migrate_db();\n}", "public function up(): void\n {\n try {\n // SM: We NEVER delete this table.\n if ($this->db->tableExists('prom2_pages')) {\n return;\n }\n $this->db->ForeignKeyChecks(false);\n $statement=$this->db->prepare(\"CREATE TABLE `prom2_pages` (\n `cntPageID` int(10) unsigned NOT NULL AUTO_INCREMENT,\n `txtRelativeURL` varchar(255) NOT NULL COMMENT 'Relative URL',\n `txtTitle` varchar(70) NOT NULL COMMENT 'Title',\n `txtContent` text NOT NULL COMMENT 'Content',\n `blnRobots_DoNotAllow` bit(1) NOT NULL DEFAULT b'1',\n PRIMARY KEY (`cntPageID`),\n UNIQUE KEY `txtRelativeURL` (`txtRelativeURL`),\n KEY `txtTitle` (`txtTitle`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\");\n $statement->execute();\n $statement->close();\n $this->db->ForeignKeyChecks(true);\n } catch (\\mysqli_sql_exception $exception) {\n throw $exception;\n }\n }", "public function up()\n\t{\n\t\techo $this->migration('up');\n\n\t\tci('o_role_model')->migration_add('Cookie Admin', 'Cookie Designer and Eater', $this->hash());\n\t\t\n\t\treturn true;\n\t}", "public function install()\n {\n $sql = $this->getSchemaDefinition();\n if (false === $this->deleteExisting && $this->hasExistingTables()) {\n $this->error = 'The database already has tables, call install($deleteExisting = true) to overwrite them';\n return false;\n }\n \n $this->uninstall($this->deleteExisting);\n $this->getAdminReq()->insertUpdateData($sql);\n \n $this->resetExistingTables();\n return true;\n }", "public function checkDatabaseStructure( );", "function migrate()\r\n\t{\r\n\t\treturn '';\r\n\t}", "public function setMigratingUp($isMigratingUp);", "public function commit()\r\n {\r\n\t\treturn false;\r\n }", "public function up(): bool {\n\t\t// Add migration logic here.\n\t\treturn true;\n\t}", "public function bootstrap() : bool {\n $dbConnectorInstance = DatabaseConnector::getInstance();\n $dbConnector = $dbConnectorInstance->getConnection();\n $dbConnector->beginTransaction();\n\n try {\n $sql = 'SET FOREIGN_KEY_CHECKS = 0';\n $stmt = $dbConnector->prepare($sql);\n if(!$stmt->execute()) {\n $dbConnector->rollBack();\n return false;\n }\n\n $sql = 'TRUNCATE TABLE location_history';\n $stmt = $dbConnector->prepare($sql);\n if(!$stmt->execute()) {\n $dbConnector->rollBack();\n return false;\n }\n\n $sql = 'TRUNCATE TABLE location';\n $stmt = $dbConnector->prepare($sql);\n if(!$stmt->execute()) {\n $dbConnector->rollBack();\n return false;\n }\n\n $sql = 'TRUNCATE TABLE user';\n $stmt = $dbConnector->prepare($sql);\n if(!$stmt->execute()) {\n $dbConnector->rollBack();\n return false;\n }\n\n $sql = 'SET FOREIGN_KEY_CHECKS = 1';\n $stmt = $dbConnector->prepare($sql);\n if(!$stmt->execute()) {\n $dbConnector->rollBack();\n return false;\n }\n\n $dbConnector->commit();\n return true;\n } catch (PDOException $pdoEx) {\n $this->logger->error(\"SQL Error\", $pdoEx);\n return false;\n }\n }", "public function rollback(): bool\r\n {\r\n return $this->instance->rollBack() === true;\r\n }", "protected function askInstallMigrate()\n {\n $ans = $this->ask('Create \"migrations\" table?: ', 'y');\n\n // Check if the answer is true\n if (preg_match('/^y/', $ans))\n {\n // Create the migrations table\n $this->call('migrate:install');\n\n // Run the Migrations\n $this->call('migrate');\n \n // Run database seeding\n $this->seedDB();\n }\n }", "public function createMigrationsTable(): void;", "function plugin_postinstall_nexcontent($pi_name)\r\n{\r\n global $_DB_dbms, $_CONF, $_DB_table_prefix, $_TABLES ;\r\n\r\n $sql= \"INSERT INTO {$_TABLES['nexcontent_pages']} (id,pid,type,pageorder,name,blockformat,heading,content,meta_description,meta_keywords) VALUES (1, 0, 'category', '10', 'frontpage', 'none', 'Front Page Folder', 'Create a page under this folder if you want to have a page loaded as the frontpage', '', '');\";\r\n DB_query($sql);\r\n\r\n return true;\r\n}", "function migrate_before_db_upgrade()\n {\n global $prli_options, $prli_update, $prli_link, $prli_click, $wpdb;\n $db_version = (int)get_option('prli_db_version');\n\n if(!$db_version)\n return;\n\n // Migration for version 1 of the database\n if($db_version and $db_version < 1)\n {\n $query = \"SELECT * from {$prli_link->table_name}\";\n $links = $wpdb->get_results($query);\n $query_str = \"UPDATE {$prli_link->table_name} SET redirect_type=%s WHERE id=%d\";\n\n foreach($links as $link)\n {\n if(isset($link->track_as_img) and $link->track_as_img)\n {\n $query = $wpdb->prepare($query_str, 'pixel', $link->id);\n $wpdb->query($query);\n }\n else if(isset($link->use_prettybar) and $link->use_prettybar)\n {\n $query = $wpdb->prepare($query_str, 'prettybar', $link->id);\n $wpdb->query($query);\n }\n else if(isset($link->use_ultra_cloak) and $link->use_ultra_cloak)\n {\n $query = $wpdb->prepare($query_str, 'cloak', $link->id);\n $wpdb->query($query);\n }\n }\n\n $query = \"ALTER TABLE {$prli_link->table_name} DROP COLUMN track_as_img, DROP COLUMN use_prettybar, DROP COLUMN use_ultra_cloak, DROP COLUMN gorder\";\n $wpdb->query($query);\n }\n\n if($db_version and $db_version < 2)\n {\n unset($prli_options->prli_exclude_ips);\n unset($prli_options->prettybar_image_url);\n unset($prli_options->prettybar_background_image_url);\n unset($prli_options->prettybar_color);\n unset($prli_options->prettybar_text_color);\n unset($prli_options->prettybar_link_color);\n unset($prli_options->prettybar_hover_color);\n unset($prli_options->prettybar_visited_color);\n unset($prli_options->prettybar_title_limit);\n unset($prli_options->prettybar_desc_limit);\n unset($prli_options->prettybar_link_limit);\n\n // Save the posted value in the database\n update_option( 'prli_options', $prli_options );\n }\n\n // Modify the tables so they're UTF-8\n if($db_version and $db_version < 3)\n { \n $charset_collate = '';\n if( $wpdb->has_cap( 'collation' ) )\n {\n if( !empty($wpdb->charset) )\n $charset_collate = \"CONVERT TO CHARACTER SET $wpdb->charset\";\n if( !empty($wpdb->collate) )\n $charset_collate .= \" COLLATE $wpdb->collate\";\n }\n\n if(!empty($charset_collate))\n {\n $prli_table_names = array( \"{$wpdb->prefix}prli_groups\",\n \"{$wpdb->prefix}prli_clicks\",\n \"{$wpdb->prefix}prli_links\",\n \"{$wpdb->prefix}prli_link_metas\",\n \"{$wpdb->prefix}prli_tweets\",\n \"{$wpdb->prefix}prli_keywords\",\n \"{$wpdb->prefix}prli_reports\",\n \"{$wpdb->prefix}prli_report_links\",\n \"{$wpdb->prefix}prli_link_rotations\",\n \"{$wpdb->prefix}prli_clicks_rotations\" );\n\n foreach($prli_table_names as $prli_table_name)\n {\n $query = \"ALTER TABLE {$prli_table_name} {$charset_collate}\";\n $wpdb->query($query);\n }\n }\n }\n \n // Upgrade the twitter hide badges on pages / posts for pro users\n if($db_version and $db_version < 7)\n {\n if($prli_update->pro_is_installed())\n {\n global $prlipro_options;\n\n if(trim($prlipro_options->twitter_badge_hidden) != '')\n {\n $hidden_post_ids = explode(',',trim($prlipro_options->twitter_badge_hidden));\n foreach($hidden_post_ids as $post_id)\n {\n $prlipro_post_options = PrliProPostOptions::get_stored_object($post_id);\n $prlipro_post_options->hide_twitter_button = 1;\n $prlipro_post_options->store($post_id);\n }\n }\n }\n }\n \n if($db_version and $db_version < 8)\n {\n // Install / Upgrade Pretty Link Pro\n $prlipro_username = get_option( 'prlipro_username' );\n $prlipro_password = get_option( 'prlipro_password' );\n\n if( !empty($prlipro_username) and !empty($prlipro_password) )\n {\n $creds = array('username' => $prlipro_username,\n 'password' => $prlipro_password);\n update_option('prlipro-credentials', $creds);\n }\n } \n\n // Hiding pretty link custom fields\n if($db_version and $db_version < 10)\n {\n $query_str = \"UPDATE {$wpdb->postmeta} SET meta_key=%s WHERE meta_key=%s\";\n\n $query = $wpdb->prepare($query_str, '_pretty-link', 'pretty-link');\n $wpdb->query($query);\n\n $query = $wpdb->prepare($query_str, '_prli-keyword-cached-content', 'prli-keyword-cached-content');\n $wpdb->query($query);\n\n $query = $wpdb->prepare($query_str, '_prlipro-post-options', 'prlipro-post-options');\n $wpdb->query($query);\n }\n\n if($db_version and $db_version < 11)\n {\n /* Too much to handle on larger tweet databases -- this code will still be accessible by going to the following url:\n {$prli_blogurl}/wp-admin/admin.php?page=pretty-link/pro/prlipro-options.php&action=trim_dup_tweets\n // Clearing out duplicate tweets\n if($prli_update->pro_is_installed())\n {\n $block_size = 2000;\n $upper_limit = $block_size - 1;\n $tweet_table = \"{$wpdb->prefix}prli_tweets\";\n\n $query = $wpdb->prepare(\"SELECT count(DISTINCT twid) FROM {$tweet_table}\");\n $twid_count = $wpdb->get_var($query);\n\n for($offset=0; $offset < $twid_count; $offset += $block_size)\n {\n $limit = $offset + $upper_limit;\n $query = $wpdb->prepare(\"SELECT id FROM {$tweet_table} GROUP BY twid LIMIT %d,%d\",$offset,$limit);\n $tweet_ids = $wpdb->get_col($query);\n\n if(is_array($tweet_ids) and count($tweet_ids) > 0)\n {\n $query = $wpdb->prepare(\"DELETE FROM {$tweet_table} WHERE id not in (\" . implode(',', $tweet_ids) . \")\");\n $wpdb->query($query);\n }\n }\n }\n */\n }\n }", "function myplugin_update_db_check()\n\t{\n\n\n\t\t// Get the Current DB and check against this verion\n\t\t$currentDBversion = get_option('agreedMarkingDB_version');\n\t\t$thisDBversion = $this->DBversion;\n\n\t\tif($thisDBversion>$currentDBversion)\n\t\t{\n\n\t\t\t$this->createTables();\n\t\t\tupdate_option('agreedMarkingDB_version', $thisDBversion);\n\t\t}\n\t\t//$this->createTables(); // Testing\n\n\t}", "public static function migrate()\n {\n\n // If there is not a declaration that migrations have been run'd\n if( ! isset($GLOBALS['migrated_test_database']))\n {\n // Run migrations\n require path('sys').'cli/dependencies'.EXT;\n\n $which_db = \\Config::get('database.default');\n $database = \\Config::get('database.connections.'.$which_db);\n\n $migration_table = null;\n if($which_db == 'mysql')\n {\n $query = \"SELECT COUNT(*) AS count FROM information_schema.tables WHERE table_schema = ? AND table_name = ?\";\n $migration_table = \\DB::query($query, array($database['database'], $database['prefix'].'laravel_migrations'));\n }\n\n // if($which_db == 'sqlite')\n // {\n // //$migration = \"SELECT * FROM {$database['database']}.sqlite_master WHERE type='table'\";\n // //sqlite3_exec(budb, \"SELECT sql FROM sqlite_master WHERE sql NOT NULL\"\n // \\sqlite_open(\":memory:\", $database['database']);\n // $migration = \\sqlite_exec($database['database'], \"SELECT sql FROM sqlite_master WHERE sql NOT NULL\");\n // }\n\n if(isset($migration_table['0']->count) and $migration_table['0']->count == '0')\n {\n Command::run(array('migrate:install'));\n echo \"\\n\";\n Command::run(array('migrate'));\n }\n else\n {\n Command::run(array('migrate:reset'));\n echo \"\\n\";\n Command::run(array('migrate'));\n }\n\n\n //Insert basic data\n\n // Declare that migrations have been run'd\n $GLOBALS['migrated_test_database'] = true;\n }\n }", "public function commit(): bool\n {\n --$this->currentTransactionLevel;\n if ($this->currentTransactionLevel == 0) {\n return parent::commit();\n }\n $this->exec(\"RELEASE SAVEPOINT LEVEL\" . $this->currentTransactionLevel);\n return true;\n }", "public function run()\n {\n \n\n \\DB::table('migrations')->delete();\n \n \\DB::table('migrations')->insert(array (\n 0 => \n array (\n 'id' => 1,\n 'migration' => '2019_03_13_181656_create_categories_table',\n 'batch' => 1,\n ),\n 1 => \n array (\n 'id' => 2,\n 'migration' => '2019_03_13_181656_create_failed_jobs_table',\n 'batch' => 1,\n ),\n 2 => \n array (\n 'id' => 3,\n 'migration' => '2019_03_13_181656_create_links_table',\n 'batch' => 1,\n ),\n 3 => \n array (\n 'id' => 4,\n 'migration' => '2019_03_13_181656_create_model_has_permissions_table',\n 'batch' => 1,\n ),\n 4 => \n array (\n 'id' => 5,\n 'migration' => '2019_03_13_181656_create_model_has_roles_table',\n 'batch' => 1,\n ),\n 5 => \n array (\n 'id' => 6,\n 'migration' => '2019_03_13_181656_create_notifications_table',\n 'batch' => 1,\n ),\n 6 => \n array (\n 'id' => 7,\n 'migration' => '2019_03_13_181656_create_password_resets_table',\n 'batch' => 1,\n ),\n 7 => \n array (\n 'id' => 8,\n 'migration' => '2019_03_13_181656_create_permissions_table',\n 'batch' => 1,\n ),\n 8 => \n array (\n 'id' => 9,\n 'migration' => '2019_03_13_181656_create_replies_table',\n 'batch' => 1,\n ),\n 9 => \n array (\n 'id' => 10,\n 'migration' => '2019_03_13_181656_create_role_has_permissions_table',\n 'batch' => 1,\n ),\n 10 => \n array (\n 'id' => 11,\n 'migration' => '2019_03_13_181656_create_roles_table',\n 'batch' => 1,\n ),\n 11 => \n array (\n 'id' => 12,\n 'migration' => '2019_03_13_181656_create_topics_table',\n 'batch' => 1,\n ),\n 12 => \n array (\n 'id' => 13,\n 'migration' => '2019_03_13_181656_create_users_table',\n 'batch' => 1,\n ),\n 13 => \n array (\n 'id' => 14,\n 'migration' => '2019_03_13_181657_add_foreign_keys_to_model_has_permissions_table',\n 'batch' => 1,\n ),\n 14 => \n array (\n 'id' => 15,\n 'migration' => '2019_03_13_181657_add_foreign_keys_to_model_has_roles_table',\n 'batch' => 1,\n ),\n 15 => \n array (\n 'id' => 16,\n 'migration' => '2019_03_13_181657_add_foreign_keys_to_replies_table',\n 'batch' => 1,\n ),\n 16 => \n array (\n 'id' => 17,\n 'migration' => '2019_03_13_181657_add_foreign_keys_to_role_has_permissions_table',\n 'batch' => 1,\n ),\n 17 => \n array (\n 'id' => 18,\n 'migration' => '2019_03_13_181657_add_foreign_keys_to_topics_table',\n 'batch' => 1,\n ),\n ));\n \n \n }", "public function install()\n {\n include(__DIR__ . '/sql/install.php');\n\n return parent::install() &&\n $this->registerHook('actionAdminControllerSetMedia') &&\n $this->registerHook('displayAdminOrderTabLink') &&\n $this->registerHook('displayAdminOrderTabContent') &&\n $this->registerHook('actionOrderGridDefinitionModifier') &&\n $this->registerHook('actionOrderGridPresenterModifier');\n }", "public function runAction():void{\n $currentVersion = Migration::getCurrentVersion();\n $migrations = glob($this->config->application->migrationsDir.'*.php');\n $version = count($migrations);\n if((int)$version === $currentVersion){\n Cli::error('Nothing to migrate');\n }\n for($i=($currentVersion+1); $i<=$version; $i++){\n $class= \"MigrationVersion\".$i; \n $migration = new $class();\n $this->executeQueries($migration->up());\n\n Migration::setCurrentVersion($i);\n }\n }", "public function commit()\n {\n return true;\n }", "public function migrateUp()\n {\n //$this->migrate('up');\n $this->artisan('migrate');\n }", "public function beginTransaction(): bool\n {\n ($this->currentTransactionLevel == 0)\n ? parent::beginTransaction()\n : $this->exec(\"SAVEPOINT LEVEL$this->currentTransactionLevel\");\n ++$this->currentTransactionLevel;\n return true;\n }", "public function trashedPost()\n {\n\n $this->generateSitemap();\n return true;\n\n }", "public function commit():bool;", "function createPages() {\n\t// drop pages table (for development only)\n\tDB::exec(\"DROP TABLE IF EXISTS pages\");\n\n\t// `name` should be unique and cannot be null\n\t// `route` must be unique but can be null (e. g. when a page shouldn't be accessible via an URL)\n\t// `layout` is a foreign key that references ANOTHER row in the pages table,\n\t// \tif the referenced row is deleted the value will be set to NULL\n\tDB::exec(\"CREATE TABLE pages (\n\t\tid INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n\t\tname VARCHAR(50) NOT NULL UNIQUE,\n\t\troute VARCHAR(50) NULL UNIQUE,\n\t\tcontent TEXT NULL\n\t)\");\n\n\toutput(RESULT_INFO, \"Pages setup successfully completed\");\n\treturn 1;\n}", "public function safeUp()\n\t{\n\t\t$this->createTable(\n\t\t\t$this->tableName,\n\t\t\tarray(\n\t\t\t\t'id' => 'INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT',\n\n\t\t\t\t'application_id' => 'VARCHAR(32) NOT NULL DEFAULT \"\" COMMENT \"Ид приложения\"',\n\n\t\t\t\t'message' => 'TEXT NOT NULL DEFAULT \"\" COMMENT \"Оригинал\"',\n\t\t\t\t'category' => 'VARCHAR(32) NOT NULL DEFAULT \"\" COMMENT \"Категория\"',\n\t\t\t\t'language' => 'VARCHAR(5) NOT NULL DEFAULT \"\" COMMENT \"Язык\"',\n\t\t\t),\n\t\t\t'ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_unicode_ci'\n\t\t);\n\t}", "public function run()\n {\n \n\n \\DB::table('migrations')->delete();\n \n \\DB::table('migrations')->insert(array (\n 0 => \n array (\n 'id' => 1,\n 'migration' => '2014_10_12_000000_create_users_table',\n 'batch' => 1,\n ),\n 1 => \n array (\n 'id' => 2,\n 'migration' => '2014_10_12_100000_create_password_resets_table',\n 'batch' => 1,\n ),\n 2 => \n array (\n 'id' => 3,\n 'migration' => '2019_01_29_011038_create_categories_table',\n 'batch' => 1,\n ),\n 3 => \n array (\n 'id' => 4,\n 'migration' => '2019_01_29_011130_create_items_table',\n 'batch' => 1,\n ),\n 4 => \n array (\n 'id' => 5,\n 'migration' => '2019_01_29_011207_create_requests_table',\n 'batch' => 1,\n ),\n 5 => \n array (\n 'id' => 6,\n 'migration' => '2019_01_29_011313_create_statuses_table',\n 'batch' => 1,\n ),\n 6 => \n array (\n 'id' => 7,\n 'migration' => '2019_01_29_011320_create_roles_table',\n 'batch' => 1,\n ),\n 7 => \n array (\n 'id' => 8,\n 'migration' => '2019_01_29_011330_create_userstatuses_table',\n 'batch' => 1,\n ),\n 8 => \n array (\n 'id' => 9,\n 'migration' => '2019_01_29_023302_add_roleid_userstatusid_users',\n 'batch' => 1,\n ),\n 9 => \n array (\n 'id' => 10,\n 'migration' => '2019_01_29_023330_add_categoryid_items',\n 'batch' => 1,\n ),\n 10 => \n array (\n 'id' => 11,\n 'migration' => '2019_01_29_023409_add_userid_statusid_itemid_requests',\n 'batch' => 1,\n ),\n 11 => \n array (\n 'id' => 12,\n 'migration' => '2019_01_29_042432_drop_contactnumber_users',\n 'batch' => 2,\n ),\n 12 => \n array (\n 'id' => 13,\n 'migration' => '2019_01_30_064421_add_statusid_items',\n 'batch' => 3,\n ),\n 13 => \n array (\n 'id' => 14,\n 'migration' => '2019_01_31_013147_rename_requests_to_laptoprequests',\n 'batch' => 4,\n ),\n 14 => \n array (\n 'id' => 15,\n 'migration' => '2019_01_31_014418_rename_laptoprequests',\n 'batch' => 5,\n ),\n ));\n \n \n }", "public function safeUp()\n {\n $this->createTable('site_phrase', array(\n 'site_id' => self::MYSQL_TYPE_UINT,\n 'phrase' => 'string NOT NULL',\n 'hash' => 'varchar(32)',\n 'price' => 'decimal(10,2) NOT NULL',\n 'active' => self::MYSQL_TYPE_BOOLEAN,\n ));\n\n $this->addForeignKey('site_phrase_site_id', 'site_phrase', 'site_id', 'site', 'id', 'CASCADE', 'RESTRICT');\n }", "public function safeUp()\n\t{\n\t\t$this->createTable(\n\t\t\t$this->tableName,\n\t\t\tarray(\n\t\t\t\t'id' => 'INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT',\n\n\t\t\t\t'label' => 'VARCHAR(20) NULL DEFAULT NULL COMMENT \"language label\"',\n\t\t\t\t'code' => 'VARCHAR(5) NOT NULL COMMENT \"language code\"',\n\t\t\t\t'locale' => 'VARCHAR (5) NULL DEFAULT NULL',\n\n\t\t\t\t'visible' => 'TINYINT(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT \"0 - not visible; 1 - visible\"',\n\t\t\t\t'published' => 'TINYINT(1) UNSIGNED NOT NULL DEFAULT 1 COMMENT \"0 - not published; 1 - published\"',\n\t\t\t\t'position' => 'INT UNSIGNED NOT NULL DEFAULT 0 COMMENT \"order by position DESC\"',\n\t\t\t\t'created' => 'INT UNSIGNED NOT NULL COMMENT \"unix timestamp - creation time\"',\n\t\t\t\t'modified' => 'INT UNSIGNED NOT NULL COMMENT \"unix timestamp - last entity modified time\"',\n\n\t\t\t\t'UNIQUE key_unique_code (code)',\n\t\t\t),\n\t\t\t'ENGINE=InnoDB DEFAULT CHARACTER SET=utf8 COLLATE=utf8_unicode_ci'\n\t\t);\n\n\t\t$this->insert('{{language}}', array(\n\t\t\t'label' => 'рус',\n\t\t\t'code' => 'ru',\n\t\t\t'locale' => 'ru',\n\t\t));\n\t}", "public function commit() {\n\t\treturn false;\n\t}", "public function safeUp()\n {\n $this->createTable('tbl_hand_made_item',\n [\n \"id\" => \"int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY\",\n \"price\" => \"integer\",\n \"discount\" => \"integer\",\n \"preview_id\" => \"integer\",\n \"name\" => \"string\",\n \"description\" => \"text\",\n \"short_description\" => \"text\",\n \"slug\" => \"string\",\n ]\n );\n }", "function mhm_memberpress_clickbank_db_activate() {\n\tglobal $wpdb;\n\n\n\t$table_name = $wpdb->prefix . \"mhm_memberpress_clickbank_memberpress_products\";\n\tif($wpdb->get_var(\"SHOW TABLES LIKE '$table_name'\") != $table_name) \n\t{\n\t\t\n\t\t$sql = \"CREATE TABLE \" . $table_name . \" (\n\t\t\tid mediumint(9) NOT NULL AUTO_INCREMENT,\n\t\t\tmemberpress_id mediumint(9) NOT NULL,\n\t\t\tproduct_id mediumint(9) NOT NULL,\n\t\t\tprice VARCHAR(30) NOT NULL,\n\t\t\tsku VARCHAR(255),\n\t\t\tcreated_at timestamp,\n\n\t\t\tPRIMARY KEY (id)\n\n\t\t);\";\n\n\t\t$results = $wpdb->query( $sql );\n\n\t\trequire_once(ABSPATH . 'wp-admin/includes/upgrade.php');\n\t\tdbDelta($sql);\n\t}\n\n\n}", "public function rollBack():bool;", "public function migrate()\n {\n $this->prepareWizardsTable();\n\n $this->processProcessing();\n $this->processLogs();\n $this->processConfigData();\n\n $this->prepareOrdersTables();\n $this->prepareOrdersConfigTable();\n $this->processOrdersData();\n }", "protected function doSql($tablename, $offset) {\n global $wpdb;\n\n $dumpname = $this->tempPath() . DIRECTORY_SEPARATOR . 'wordpress.sql';\n $rawname = preg_replace('/^'.preg_quote($wpdb->base_prefix).'(?:\\d+_)?/', '', $tablename);\n\n // skip multisite tables\n if (isset($this->manifest['tables[ms_global]'][$rawname])) {\n $this->writeLog(true, 'Skipping multisite table <code>', $tablename, '</code><br>');\n\n return false;\n }\n\n // skip blog tables that do not belong to the currently exporting site\n if (isset($this->manifest['tables[blog]'][$rawname]) && strpos($tablename, $wpdb->prefix) === FALSE) {\n $this->writeLog(true, 'Skipping extrasite table <code>', $tablename, '</code><br>');\n\n return false;\n }\n\n // if starting off this table, generate crreate statements\n if ($offset === 0) {\n $results = $wpdb->get_row(\"SHOW CREATE TABLE `{$tablename}`\", ARRAY_A);\n if (isset($results['Create Table'])) {\n $create = array(\n \"-- Table {$tablename}\",\n \"DROP TABLE IF EXISTS `{$tablename}`;\",\n \"{$results['Create Table']};\\n\\n\",\n );\n file_put_contents($dumpname, implode(\"\\n\", $create), FILE_APPEND|LOCK_EX);\n } else {\n $this->writeLog('Warning: Could not get CREATE statement for', $tablename, '<br>');\n }\n }\n\n $names = null;\n $row_queue = array();\n\n foreach ($wpdb->get_results(\"SELECT * FROM `{$tablename}` LIMIT {$offset}, \".self::ROWS_PER_BATCH, ARRAY_A) as $row) {\n if (!isset($names)) {\n $names = '`' . implode('`, `', array_keys($row)) . '`';\n }\n\n $row_queue[] = '(\\'' . implode('\\', \\'', $wpdb->_escape(array_values($row))) . '\\')';\n }\n\n if (!empty($row_queue)) {\n $insert = \"INSERT INTO `{$tablename}`\\n ({$names})\\nVALUES\\n \" . implode(\",\\n \", $row_queue) . \";\\n\\n\";\n file_put_contents($dumpname, $insert, FILE_APPEND|LOCK_EX);\n\n $this->writeLog(true, '<p>Dumped', count($row_queue), 'rows from', $tablename, '</p>');\n\n return $offset + self::ROWS_PER_BATCH;\n }\n\n return false;\n }", "public function up(Schema $schema) : void\n {\n $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \\'mysql\\'.');\n\n $this->addSql('CREATE TABLE page (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, slug VARCHAR(128) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, publish TINYINT(1) DEFAULT NULL, UNIQUE INDEX UNIQ_140AB620989D9B62 (slug), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB');\n $this->addSql('CREATE TABLE page_page_block (page_id INT NOT NULL, page_block_id INT NOT NULL, INDEX IDX_EE7A596AC4663E4 (page_id), INDEX IDX_EE7A596A6972852C (page_block_id), PRIMARY KEY(page_id, page_block_id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB');\n $this->addSql('CREATE TABLE page_block (id INT AUTO_INCREMENT NOT NULL, gallery INT DEFAULT NULL, media_id INT DEFAULT NULL, name VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, body LONGTEXT DEFAULT NULL, UNIQUE INDEX UNIQ_E59A68F4472B783A (gallery), INDEX IDX_E59A68F4EA9FDD75 (media_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE = InnoDB');\n $this->addSql('ALTER TABLE page_page_block ADD CONSTRAINT FK_EE7A596AC4663E4 FOREIGN KEY (page_id) REFERENCES page (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE page_page_block ADD CONSTRAINT FK_EE7A596A6972852C FOREIGN KEY (page_block_id) REFERENCES page_block (id) ON DELETE CASCADE');\n $this->addSql('ALTER TABLE page_block ADD CONSTRAINT FK_E59A68F4472B783A FOREIGN KEY (gallery) REFERENCES media__gallery (id)');\n $this->addSql('ALTER TABLE page_block ADD CONSTRAINT FK_E59A68F4EA9FDD75 FOREIGN KEY (media_id) REFERENCES media__media (id)');\n }", "public function onPostUp(PostMigrationEvent $event): void\n {\n // After installing the application created trigger and fill row_hash\n if (!$this->applicationState->isInstalled()) {\n $event->addMigration(new AddTriggerToRowHashColumn($this->manager));\n return;\n }\n\n $event->addMigration(new UpdateScopeRowHashColumn($this->manager));\n }", "public function safeUp()\n\t{\n\t\t$this->createTable('pesquisa', array(\n\t\t\t'id' => 'serial NOT NULL primary key',\n\t\t\t'nome' => 'varchar',\n\t\t));\n\t}", "public function commit() {\n return true;\n }", "public function safeUp()\n {\n $tables = Yii::$app->db->schema->getTableNames();\n $dbType = $this->db->driverName;\n $tableOptions_mysql = \"CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB\";\n\n /* MYSQL */\n if (!in_array('question_tag', $tables)) {\n if ($dbType == \"mysql\") {\n $this->createTable('{{%question_tag}}', [\n 'question_id' => 'INT(11) NOT NULL',\n 'tag_id' => 'INT(11) NOT NULL',\n ], $tableOptions_mysql);\n }\n }\n }", "public function isAutoCommit():bool;", "function eddenvato_db_install(){\n\n\t// define needed globals\n\tglobal $wpdb;\n\t$eddenvato_db = $wpdb->prefix . \"tc_edd_envato\";\n\n\t// create table\n\tif( $wpdb->get_var(\"SHOW TABLES LIKE '$eddenvato_db'\") != $eddenvato_db ){\n\n\t\t$sql = \"CREATE TABLE \".$eddenvato_db.\" (\n\t\t\tid INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,\n\t\t\tenvato_id VARCHAR(250) NOT NULL,\n\t\t\tlicense_key VARCHAR(250) NOT NULL,\n\t\t\tuser_id VARCHAR(250) NOT NULL,\n\t\t\tenvato_return TEXT NOT NULL\n\t\t);\";\n\n\t\trequire_once(ABSPATH . 'wp-admin/includes/upgrade.php');\n\t\tdbDelta($sql);\n\n\t\t// Create Default Page\n\t\t$tc_post = array(\n\t\t 'post_title' => 'EDD Evato License Verification',\n\t\t 'post_content' => '[edd-envato]',\n\t\t 'post_status' => 'publish',\n\t\t 'post_author' => 1,\n\t\t 'post_type'\t => 'page'\n\t\t);\n\n\t\t// Insert the post into the database\n\t\twp_insert_post( $tc_post );\n\n\t} // end table creation\n\n}", "protected function ensureTableExists() {\n try {\n $database_schema = $this->connection->schema();\n $schema_definition = $this->schemaDefinition();\n $database_schema->createTable(static::TABLE_NAME, $schema_definition);\n }\n // If another process has already created the batch table, attempting to\n // recreate it will throw an exception. In this case just catch the\n // exception and do nothing.\n catch (DatabaseException $e) {\n }\n catch (\\Exception $e) {\n return FALSE;\n }\n return TRUE;\n }", "public function inTransaction(): bool;", "public function safeUp()\n {\n $this->createTable('site', array(\n 'client_id' => self::MYSQL_TYPE_UINT,\n 'domain' => 'string NOT NULL'\n ));\n\n $this->addForeignKey('site_client_id', 'site', 'client_id', 'client', 'id', 'CASCADE', 'RESTRICT');\n\n $this->createTable('site_contract', array(\n 'site_id' => self::MYSQL_TYPE_UINT,\n 'contract_id' => self::MYSQL_TYPE_UINT,\n ));\n\n $this->addForeignKey('site_contract_site_id', 'site_contract', 'site_id', 'site', 'id', 'CASCADE', 'RESTRICT');\n $this->addForeignKey('site_contract_contract_id', 'site_contract', 'contract_id', 'contract', 'id', 'CASCADE', 'RESTRICT');\n }", "public function upgradeDatabase()\n {\n // Note, this is commented out in the version 9 branch, because in version 9 we don't disable multisite.\n // I didn't want to include this migration at all in version 9 but due to the way we merged it had to\n // happen, and I'd rather not remove it in case that causes issues with sites that have already applied\n // the migration. So I think it's best to just leave it but comment it out.\n \n /*\n $config = $this->app->make('config');\n $enabled = $config->get('concrete.multisite.enabled');\n if ($enabled) {\n $config->save('concrete.multisite.enabled', false);\n }\n */\n\n }", "public function install() {\n include(dirname(__FILE__) . '/sql/install.php');\n\n return parent::install() &&\n $this->registerHook('header') &&\n $this->registerHook('backOfficeHeader') &&\n $this->registerHook('actionProductUpdate') &&\n $this->registerHook('displayAdminProductsExtra');\n }", "public function migrateDb();", "public function safeUp()\n\t{\n\t $json = '{\"settings\":{\"dependencies\":[],\"elements\":{\"fields\":[{\"group\":\"About Page\",\"name\":\"CV\",\"handle\":\"cv\",\"instructions\":\"This is the cv and shadow cv that can be downloaded.\",\"translatable\":\"0\",\"required\":false,\"type\":\"Assets\",\"typesettings\":{\"useSingleFolder\":\"\",\"sources\":[\"resources\"],\"defaultUploadLocationSource\":\"timelinePhotos\",\"defaultUploadLocationSubpath\":\"\",\"singleUploadLocationSource\":\"timelinePhotos\",\"singleUploadLocationSubpath\":\"\",\"restrictFiles\":\"\",\"limit\":\"1\",\"viewMode\":\"list\",\"selectionLabel\":\"Upload CV\"}},{\"group\":\"About Page\",\"name\":\"Speaker Packet\",\"handle\":\"speakerPacket\",\"instructions\":\"This is the professional bio and speaker\\u0027s packet that can be downloaded.\",\"translatable\":\"0\",\"required\":false,\"type\":\"Assets\",\"typesettings\":{\"useSingleFolder\":\"\",\"sources\":[\"resources\"],\"defaultUploadLocationSource\":\"resources\",\"defaultUploadLocationSubpath\":\"\",\"singleUploadLocationSource\":\"timelinePhotos\",\"singleUploadLocationSubpath\":\"\",\"restrictFiles\":\"\",\"limit\":\"1\",\"viewMode\":\"list\",\"selectionLabel\":\"Upload speaker packet\"}}]}}}';\n return craft()->migrationManager_migrations->import($json);\n }", "public static function check_version() {\n\t\ttry {\n\t\t\t$current_version = get_option( self::CK_DB_VERSION, 0 );\n\t\t\t$version_keys = array_keys( self::$db_migrations );\n\t\t\tif ( version_compare( $current_version, '0', '>' ) && version_compare( $current_version, end( $version_keys ), '<' ) ) {\n\t\t\t\t// We migrate the Db for all blogs.\n\t\t\t\tself::install_db( true );\n\t\t\t}\n\t\t} catch ( Exception $e ) {\n\t\t\tif ( is_admin() ) {\n\t\t\t\tadd_action(\n\t\t\t\t\t'admin_notices',\n\t\t\t\t\tarray(\n\t\t\t\t\t\t'WC_PostFinanceCheckout_Admin_Notices',\n\t\t\t\t\t\t'migration_failed_notices',\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}", "protected function updateMigrationTable()\n {\n $migration = str_replace('.php', '', basename(__FILE__));\n $batchResult = \\DB::select(\"SELECT max(batch) as batch FROM {$this->newDbName}.migrations\");\n $batch = $batchResult[0]->batch;\n\n \\DB::getPdo()->exec(\"INSERT INTO {$this->newDbName}.migrations (migration, batch) VALUES ('{$migration}', {$batch} + 1)\");\n }", "public function updateNecessary(): bool\n {\n $upgradeApi = GeneralUtility::makeInstance(UpgradeApi::class);\n $elementCount = 0;\n $tables = explode(',', self::TABLES);\n foreach ($tables as $table) {\n if (!isset($this->tableFields[$table])) {\n continue;\n }\n $fields = $this->tableFields[$table];\n foreach ($fields as $field) { \n $elementCount += \n $upgradeApi->countOfTableFieldMigrations(\n $table,\n $field, \n $field . '_uid', \n ParameterType::STRING,\n \\PDO::PARAM_INT\n );\n if ($elementCount > 0) {\n break;\n }\n }\n if ($elementCount > 0) {\n break;\n }\n }\n return ($elementCount > 0);\n }", "protected function createTables()\n {\n $tablesCreated = false;\n\n if (Craft::$app->db->schema->getTableSchema(Page::tableName()) === null) {\n $tablesCreated = true;\n $this->createTable(Page::tableName(), [\n 'id' => $this->primaryKey(),\n 'url' => $this->string(255)->notNull()->unique(),\n 'password' => $this->string(),\n 'anonymous' => $this->boolean()->defaultValue(false),\n 'startDate' => $this->dateTime(),\n 'expiryDate' => $this->dateTime(),\n\n 'dateCreated' => $this->dateTime()->notNull(),\n 'dateUpdated' => $this->dateTime()->notNull(),\n 'uid' => $this->uid(),\n ]);\n }\n\n if (Craft::$app->db->schema->getTableSchema(Comment::tableName()) === null) {\n $tablesCreated = true;\n $this->createTable(Comment::tableName(), [\n 'id' => $this->primaryKey(),\n 'pageId' => $this->integer()->notNull(),\n 'content' => $this->text()->notNull(),\n 'target' => $this->text(),\n 'name' => $this->string(100),\n\n 'dateCreated' => $this->dateTime()->notNull(),\n 'dateUpdated' => $this->dateTime()->notNull(),\n 'uid' => $this->uid(),\n ]);\n }\n\n return $tablesCreated;\n }", "protected function silentCacheFrameworkTableSchemaMigration() {}", "public function up()\n {\n\n $tableOptions = null;\n if ($this->db->driverName === 'mysql') {\n $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';\n }\n\n $this->createTable($this->createTableName, [\n 'id' => $this->primaryKey(),\n 'name' => $this->string()->notNull(),\n 'type' => $this->integer(1)->notNull(),\n 'location' => $this->text()->defaultValue(null),\n 'description' => $this->text()->defaultValue(null),\n 'created_by' => $this->integer()->notNull(),\n 'start_at' => $this->integer()->defaultValue(null),\n 'active' => $this->boolean()->defaultValue(true),\n\n ],$tableOptions);\n\n\n $this->addColumn($this->updateTableNameHoliday, $this->addColumnOne, $this->integer()->notNull()->after('name'));\n $this->addColumn($this->updateTableNameHoliday, $this->addColumnTwo, $this->integer()->notNull()->after($this->addColumnOne));\n $this->addColumn($this->updateTableNameHolidayConfig, $this->addColumnOne, $this->integer()->notNull()->after('name'));\n $this->addColumn($this->updateTableNameHolidayConfig, $this->addColumnTwo, $this->integer()->notNull()->after($this->addColumnOne));\n\n $moduleInvite = Module::findOne(['name' => 'Actioncalendar', 'slug' => 'actioncalendar']);\n if(empty($moduleInvite)) {\n $this->batchInsert('{{%module}}', ['parent_id', 'name', 'slug', 'visible', 'sorting'], [\n [null, 'Actioncalendar', 'actioncalendar', 1, 22],\n ]);\n }\n\n }", "public function safeUp()\n {\n $this->createTable($this->tableName, [\n 'post_id' => $this->bigInteger()->notNull(),\n 'category_id' => $this->bigInteger()->notNull(),\n ]);\n\n $this->addForeignKey('post_category_post_id_fk', $this->tableName, 'post_id', '{{%post}}', 'id', 'CASCADE', 'CASCADE');\n $this->addForeignKey('post_category_category_id_fk', $this->tableName, 'category_id', '{{%category}}', 'id', 'CASCADE', 'CASCADE');\n }", "public function safeUp()\n\t{\n\t\t$this->createTable( 'tbl_auth_item', array(\n\t\t \"name\" => \"varchar(64) not null\",\n\t\t \"type\" => \"integer not null\",\n\t\t \"description\" => \"text\",\n\t\t \"bizrule\" => \"text\",\n\t\t \"data\" => \"text\",\n\t\t \"primary key (name)\",\n\t\t));\n\n\t\t$this->createTable(\"tbl_auth_item_child\", array(\n \t\t\"parent\" => \" varchar(64) not null\",\n\t\t\"child\" => \" varchar(64) not null\",\n \t\t\"primary key (parent,child)\",\n\t\t));\n\n\t\t$this->createTable(\"tbl_auth_assignment\",array(\n \t\t\"itemname\" => \"varchar(64) not null\",\n \t\t\"userid\" => \"varchar(64) not null\",\n \t\t\"bizrule\" => \"text\",\n \t\t\"data\"\t => \"text\",\n \t\t\"primary key (itemname,userid)\",\n\t\t));\n\n\t\t$this->addForeignKey('fk_auth_item_child_parent','tbl_auth_item_child','parent','tbl_auth_item','name','CASCADE','CASCADE');\n\t\t$this->addForeignKey('fk_auth_assignment_itemname','tbl_auth_assignment','itemname','tbl_auth_item','name');\n\t\t$this->addForeignKey('fk_auth_assignment_userid','tbl_auth_assignment','userid','tbl_user','id');\n\t}", "public function safeUp()\n\t{\n\t\t$this->createTable('quiz_sections', array(\n 'section_id' => 'pk',\n 'title' => 'string NOT NULL',\n ));\n\t}", "function exn_wc_billplz_data_check() {\n $meta = exn_wc_billplz_get_meta();\n\n if ( sizeof( $meta )>0 ) {\n add_action( 'admin_notices', 'exn_wc_billplz_need_migration' );\n add_action( 'in_admin_footer', 'exn_wc_billplz_js' );\n add_action( 'wp_ajax_exn_wc_billplz_migrate', 'exn_wc_billplz_run_migration' );\n }\n}", "public function tableSettingsInsertAction(): bool\n {\n $this->tableSettingsInit($this->thisRouteController());\n $this->flashMessage('Changes Saved!');\n $this->redirect('/admin/role/index');\n return true;\n }", "public function migrate()\n {\n $fileSystem = new Filesystem();\n\n $fileSystem->copy(\n __DIR__.'/../database/migrations/2018_06_29_032244_create_laravel_follow_tables.php',\n __DIR__.'/database/migrations/create_laravel_follow_tables.php'\n );\n\n foreach ($fileSystem->files(__DIR__.'/database/migrations') as $file) {\n $fileSystem->requireOnce($file);\n }\n\n (new \\CreateLaravelFollowTables())->up();\n (new \\CreateUsersTable())->up();\n (new \\CreateOthersTable())->up();\n }", "function install() {\n global $DB;\n $DB->query(\"CREATE TABLE IF NOT EXISTS `\".Page::$DBContentTable.\"` (\n `id` mediumint(9) NOT NULL default '0',\n `section` varchar(255) character set utf8 NOT NULL default '',\n `content` text character set utf8 NOT NULL,\n `language` varchar(5) character set utf8 NOT NULL,\n `revision` int(11) NOT NULL,\n KEY `section` (`section`),\n KEY `id` (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_swedish_ci;\");\n\n\n $CONFIG->Site->setType('auto_Translate', 'select', array('no' => 'No', 'yes' => 'Yes'));\n $CONFIG->content->setDescription('revision_separationtime', 'Minutes of separation between two saves for them to be counted as same revision');\n\n $CONFIG->content->setType('filters', 'not_editable');\n return 1;\n }", "public function safeUp()\n {\n $this->createTable('user', array(\n 'name' => 'string',\n 'username' => 'string NOT NULL',\n 'password' => 'VARCHAR(32) NOT NULL',\n 'salt' => 'VARCHAR(32) NOT NULL',\n 'role' => \"ENUM('partner', 'admin')\"\n ));\n }", "function mistheme_quiz_activation() {\n global $wpdb;\n // Create table on main blog in network mode or single blog\n mistheme_quiz_create_table( $wpdb->get_blog_prefix() );\n}", "public function updateNecessary(): bool\n {\n $updateNeeded = false;\n // Check if the database table even exists\n if ($this->checkIfWizardIsRequired()) {\n $updateNeeded = true;\n }\n return $updateNeeded;\n }", "#[ReturnTypeWillChange]\n\tpublic function commit ()\n\t{\n\t\t$this->exec('COMMIT TRANSACTION');\n\t\treturn true;\n\t}" ]
[ "0.67392766", "0.6201944", "0.6148004", "0.5964607", "0.58191645", "0.57921946", "0.576246", "0.57427984", "0.5719514", "0.5719216", "0.57069623", "0.56924266", "0.5680488", "0.56618744", "0.5601368", "0.55973", "0.55947036", "0.555473", "0.5540702", "0.5528361", "0.5464173", "0.5456216", "0.542707", "0.5420481", "0.5395599", "0.5387098", "0.5376873", "0.5375104", "0.5367643", "0.53674465", "0.53522354", "0.5339175", "0.53247666", "0.53186", "0.52970964", "0.52970475", "0.52877337", "0.52796763", "0.52759534", "0.5274119", "0.5273496", "0.52683187", "0.5263183", "0.52610826", "0.5258111", "0.5242469", "0.52403724", "0.5228137", "0.52249956", "0.52248013", "0.52188873", "0.52145016", "0.52108103", "0.52019054", "0.5199758", "0.51945883", "0.51931775", "0.5192776", "0.5187821", "0.51793617", "0.5178876", "0.5174815", "0.51743746", "0.5172359", "0.51723224", "0.51721144", "0.5170253", "0.5163252", "0.51559746", "0.5150458", "0.51470935", "0.51464254", "0.5143114", "0.51402134", "0.5137824", "0.51146275", "0.51017904", "0.50968826", "0.5093395", "0.50930566", "0.5091416", "0.50828665", "0.5082537", "0.5081967", "0.5079726", "0.50785905", "0.50763893", "0.50720507", "0.5071043", "0.50654376", "0.5061184", "0.50606817", "0.5051839", "0.50516886", "0.504296", "0.5041601", "0.50411713", "0.504064", "0.5038612", "0.5037917", "0.5035696" ]
0.0
-1
Create a new command instance.
public function __construct() { parent::__construct(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function newCommand() {\n return newinstance(Command::class, [], '{\n public static $wasRun= false;\n public function __construct() { self::$wasRun= false; }\n public function run() { self::$wasRun= true; }\n public function wasRun() { return self::$wasRun; }\n }');\n }", "public function createCommand()\r\n\t{\r\n\t\t$obj = new DbCommand($this,$this->dbms);\r\n\t\treturn $obj;\r\n\t}", "public function createCommand() {\n\t\treturn new UnboxedCommand( $this );\n\t}", "protected function createCommand($args) {\n $command = new Command();\n $command->id = ifseta($args, 'id');\n $command->name = ifseta($args, 'name');\n $command->url = ifseta($args, 'url');\n $command->description = ifseta($args, 'description');\n $command->uses = ifseta($args, 'uses');\n $command->creationDate = ifseta($args, 'creation_date');\n $command->lastUseDate = ifseta($args, 'last_use_date');\n $command->goldenEggDate = ifseta($args, 'golden_egg_date');\n return $command;\n }", "static public function create($cmd = null, $args = null)\n {\n return new self($cmd, $args);\n }", "public function createCommand($kernel, string $commandName = null, string $commandDescription = null): Command;", "public function makeCommand() \n {\n if($this->CrontabCommandObject === NULL)\n {\n $this->CrontabCommandObject = new \\root\\library\\Crontab\\CrontabCommand\\CrontabCommand();\n }\n \n return $this->CrontabCommandObject;\n }", "public function testInstantiation()\n {\n $command = new CreateRule('dummy name');\n }", "public function command(Command $command);", "public function __construct($command)\n {\n $this->command = $command;\n }", "public static function create(array $data)\n {\n $command = new static();\n $command->exchangeArray($data);\n return $command;\n }", "protected function getCreateCommand()\n {\n $command = new IndexCreateCommand();\n $command->setContainer($this->getContainer());\n\n return $command;\n }", "public function createCommand($string = '')\n {\n return $this->createStringable($string);\n }", "public function createCommand($type) {\r\n $command = $this->xml->createElement('command');\r\n $command->setAttribute('xsi:type', $type);\r\n $command->setAttribute('xmlns', '');\r\n $this->xmlSchema($command);\r\n return $command;\r\n }", "public function __construct()\n {\n // We will go ahead and set the name, description, and parameters on console\n // commands just to make things a little easier on the developer. This is\n // so they don't have to all be manually specified in the constructors.\n if (isset($this->signature)) {\n $this->configureUsingFluentDefinition();\n } else {\n parent::__construct($this->name);\n }\n\n // Once we have constructed the command, we'll set the description and other\n // related properties of the command. If a signature wasn't used to build\n // the command we'll set the arguments and the options on this command.\n $this->setDescription((string) $this->description);\n\n $this->setHelp((string) $this->help);\n\n $this->setHidden($this->isHidden());\n\n if (! isset($this->signature)) {\n $this->specifyParameters();\n }\n }", "public function make(string $name, PreprocessorInterface $preprocessor = null): CommandInterface;", "private function _getCommandByClassName($className)\n {\n return new $className;\n }", "public function newCommand($regex, $callable) {\n $cmd = new Command();\n $cmd->regex = $regex;\n $cmd->callable = $callable;\n return $this->addCommand($cmd);\n }", "public static function create($commandID, ...$args)\n {\n $arguments = func_get_args();\n\n return new static(array_shift($arguments), $arguments);\n }", "private function __construct($command = null)\n {\n $this->command = $command;\n }", "public static function factory(string $command, string $before = '', string $after = ''): self\n {\n return new self($command, $before, $after);\n }", "public function getCommand() {}", "protected function buildCommand()\n {\n $command = new Command(\\Tivie\\Command\\ESCAPE);\n $command\n ->chdir(realpath($this->repoDir))\n ->setCommand($this->gitDir)\n ->addArgument(new Argument('tag', null, null, false))\n ->addArgument(new Argument($this->tag, null, null, true));\n\n return $command;\n }", "public function testCanBeInstantiated()\n {\n $command = $this->createInstance();\n $this->assertInstanceOf('\\\\Dhii\\\\ShellInterop\\\\CommandInterface', $command, 'Command must be an interoperable command');\n $this->assertInstanceOf('\\\\Dhii\\\\ShellCommandInterop\\\\ConfigurableCommandInterface', $command, 'Command must be a configurable command');\n $this->assertInstanceOf('\\\\Dhii\\\\ShellCommandInterop\\\\MutableCommandInterface', $command, 'Command must be a mutable command');\n }", "public function getCommand();", "protected function createCommand($name, array $parameters = [])\n {\n return new Fluent(\n array_merge(\n compact('name'),\n $parameters)\n );\n }", "public function testCanPassCommandStringToConstructor()\n {\n $command = new Command('/bin/ls -l');\n\n $this->assertEquals('/bin/ls -l', $command->getExecCommand());\n }", "public function makeCommandInstanceByType(...$args): CommandInterface\n {\n $commandType = array_shift($args);\n\n switch ($commandType) {\n case self::PROGRAM_READ_MODEL_FETCH_ONE_COMMAND:\n return $this->makeFetchOneCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_FIND_COMMAND:\n return $this->makeFindCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_FIND_LITE_COMMAND:\n return $this->makeFindLiteCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_CREATE_TASK_COMMAND:\n return $this->makeItemCreateTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_CREATE_COMMAND:\n return $this->makeItemCreateCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_UPDATE_TASK_COMMAND:\n return $this->makeItemUpdateTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_UPDATE_COMMAND:\n return $this->makeItemUpdateCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_DELETE_TASK_COMMAND:\n return $this->makeItemDeleteTaskCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_DELETE_COMMAND:\n return $this->makeItemDeleteCommand(...$args);\n\n case self::PROGRAM_READ_MODEL_ADD_ID_COMMAND:\n return $this->makeItemAddIdCommand(...$args);\n\n default:\n throw new FactoryException(sprintf('Command bus for type `%s` not found!', (string) $commandType));\n }\n }", "public function __construct($cmd)\n {\n $this->cmd = $cmd;\n }", "public function getCommand()\n {\n }", "public function command($class)\n {\n $runnable = $this->resolveClass($class);\n\n if ( ! $runnable instanceof Command) {\n throw new InvalidArgumentException(get_class($runnable).' must be an instance of '.Command::class.'.');\n }\n\n $command = $runnable;\n\n if ($runnable instanceof Taggable) {\n $command = new Cached($command, $this);\n }\n\n if ($runnable instanceof Transactional) {\n $command = new Transaction($command, $this, $this->makeFromContainer(ConnectionInterface::class));\n }\n\n if ($runnable instanceof Eventable) {\n $command = new Evented($command, $this);\n }\n\n return $this->newBuilder($command);\n }", "protected function createCommandFactory(): CommandFactory\n {\n return new CommandFactory([\n 'CLOSE' => Command\\CLOSE::class,\n ]);\n }", "public static function register() {\n\n if ( !defined( 'WP_CLI' ) || !WP_CLI ) {\n return;\n }\n \n $instance = new static;\n if(empty( $instance->namespace )) {\n throw new \\Exception(\"Command namespace not defined\", 1);\n \n }\n\t\t\\WP_CLI::add_command( $instance->namespace, $instance, $instance->args ?? null );\n\t}", "public function addCommand($command);", "public function add(Command $command);", "abstract protected function getCommand();", "public function createCommand()\r\n\t{\r\n\t\t//start the string\r\n\t\t$command = '';\r\n\t\t\r\n\t\t//add the java command or the path to java\r\n\t\t$command .= $this->java_path;\r\n\t\t\r\n\t\t//add the class path\r\n\t\t$command .= ' -cp \"'. $this->stanford_path . $this->seperator . '*\" ';\r\n\t\t\r\n\t\t//add options\r\n\t\t$options = implode(' ', $this->java_options);\r\n\t\t$command .= '-'.$options;\r\n\t\t\r\n\t\t//add the call to the pipeline object\r\n\t\t$command .= ' edu.stanford.nlp.pipeline.StanfordCoreNLP ';\r\n\r\n\t\t//add the annotators\r\n\t\t$command .= '-annotators '. $this->listAnnotators();\r\n\t\t\r\n\t\t//add the input and output directors\r\n\t\t$command .= ' -file '. $this->tmp_file . ' -outputDirectory '. $this->tmp_path;\r\n\t\t\r\n\t\t//this is for testing purposes\r\n\t\t//$command .= ' -file '. $this->tmp_path .'\\\\nlp3F25.tmp' . ' -outputDirectory '. $this->tmp_path;\r\n\t\t\r\n\t\t//if using regexner add this to the command string\r\n\t\tif($this->annotators['regexner'] === true)\r\n\t\t{\r\n\t\t\t$command .=' -regexner.mapping '. $this->regexner_path . $this->seperator . $this->regexner_file;\r\n\t\t}\r\n\t\t\r\n\t\t\r\n\t\treturn $command;\r\n\t}", "protected function createCommand(string $name, array $parameters = []): Fluent\n {\n return new Fluent(array_merge(compact('name'), $parameters));\n }", "public function __construct()\n {\n parent::__construct(static::NAME, static::VERSION);\n $this->add(new DefaultCommand());\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->command_name = config(\"custom-commands.command_name\");\n\n parent::__construct($this->signature = $this->command_name);\n\n $this->commands = (array) config(\"custom-commands.commands\");\n \n $this->table = config(\"custom-commands.table\");\n\n $this->row = config(\"custom-commands.row\");\n\n $this->changeEnv = (boolean) config(\"custom-commands.change_env\");\n\n }", "protected function createCommandFile()\n {\n $command_file_full_path = $this->command_dir_path . DIRECTORY_SEPARATOR . $this->arg->getCommandFileName();\n\n // Check if the command already exists\n if (file_exists($command_file_full_path)) {\n throw new Exception('Command already exists.');\n }\n\n // Create the file for the new command\n $command_file = fopen($command_file_full_path, 'w');\n\n // TODO: Create Script Generator to generate the PHP scripts for the new command.\n\n fclose($command_file);\n\n $this->console->getOutput()->println('File created at: ' . $command_file_full_path);\n $this->console->getOutput()->success('Command ' . $this->arg->getSignature() . ' created successfully.');\n }", "public static function create() {}", "public static function create() {}", "public static function create() {}", "public static function create(InteropContainer $container)\n {\n $middleware = $container->get('cmd.middleware');\n return new CommandBusFactory($middleware);\n }", "private function createCli() {\n $this->cli = new Cli();\n $this->commands = $this->commandParser->getAllCommands();\n\n foreach ($this->commands as $command) {\n if ($command->isDefault()) {\n $this->cli->command(\"*\");\n foreach ($command->getOptions() as $option) {\n $this->cli->opt($option->getName(), $option->getDescription(), $option->isRequired(), $option->getType());\n }\n foreach ($command->getArguments() as $argument) {\n if (!$argument->isVariadic())\n $this->cli->arg($argument->getName(), $argument->getDescription(), $argument->isRequired());\n }\n }\n if ($command->getName() != \"\") {\n $this->cli->command($command->getName())->description($command->getDescription());\n foreach ($command->getOptions() as $option) {\n $this->cli->opt($option->getName(), $option->getDescription(), $option->isRequired(), $option->getType());\n }\n foreach ($command->getArguments() as $argument) {\n if (!$argument->isVariadic())\n $this->cli->arg($argument->getName(), $argument->getDescription(), $argument->isRequired());\n }\n }\n }\n\n\n }", "public function testInstantiation()\n {\n $this->assertInstanceOf('Contao\\ManagerBundle\\Command\\InstallWebDirCommand', $this->command);\n }", "public function command(string $command): self\n {\n $this->addCommands[] = $command;\n\n return $this;\n }", "public function create() {}", "protected function createProcess($cmd)\n {\n return new Process(explode(' ', $cmd));\n }", "public function create(){}", "protected function getCommandFactory(): Command\\Factory\n {\n return new Command\\RedisFactory();\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->commandData = new CommandData($this, CommandData::$COMMAND_TYPE_API);\n }", "public function testNewCommand() : void\n {\n $this->assertFalse($this->command->hasArguments());\n $this->assertEquals(\"\", $this->command->getArguments());\n }", "protected function createCommandBuilder()\n\t{\n\t\treturn new CSqliteCommandBuilder($this);\n\t}", "public function __construct($command, $config = [])\n {\n $this->command = $command;\n $this->_output = $this->getDefaultOutput();\n parent::__construct($config);\n }", "public function __construct(){\n\n global $argv;\n\n if(!isset($argv[1])){\n echo 'You must supply a command!' . PHP_EOL;\n exit;\n }//if\n\n $args = $argv;\n\n $scriptName = array_shift($args);\n $method = array_shift($args);\n\n $method = explode('-',$method);\n foreach($method as $k => $v){\n if($k != 0){\n $method[$k] = ucwords($v);\n }//if\n }//foreach\n\n $method = implode('',$method);\n\n $resolved = false;\n\n if(method_exists($this,$method)){\n call_user_func(Array($this,$method), $args);\n $resolved = true;\n }//if\n else {\n foreach(static::$extendedCommands as $commandClass){\n if(method_exists($commandClass,$method)){\n call_user_func(Array($commandClass,$method), $args);\n $resolved = true;\n break;\n }//if\n }//foreach\n }//el\n\n if(!$resolved){\n echo \"`{$method}` is not a valid CLI command!\";\n }//if\n\n echo PHP_EOL;\n exit;\n\n }", "public function forCommand($command)\n {\n $this->command = $command;\n $this->pipe = new NullPipe();\n $this->manager = new InteractiveProcessManager($this->userInteraction);\n\n return $this;\n }", "public function __construct()\n {\n parent::__construct('pwman', '0.1.0');\n\n $getCommand = new Get();\n $this->add($getCommand);\n\n $setCommand = new Set();\n $this->add($setCommand);\n }", "public function create() {\n $class_name = $this->getOption('className');\n return new $class_name();\n }", "public function createCommand(?string $sql = null, array $params = []): Command;", "public function __construct($command = NULL, $name = NULL)\n {\n $args = func_get_args();\n\n switch ($command) {\n case self::CONSTR_CMD_POPULATE_SYNCED_ARRAY:\n case self::CONSTR_CMD_POP_FROM_ARR:\n case self::CONSTR_CMD_POP_FROM_OBJ:\n case self::CONSTR_CMD_POP_FROM_DB:\n case self::CONSTR_CMD_NEW:\n $this->setup_name = $name;\n\n # shift off known args\n array_shift($args);\n array_shift($args);\n break;\n }\n\n switch ($command) {\n case self::CONSTR_CMD_POP_FROM_ARR:\n $this->applyArray($args[0]);\n break;\n case self::CONSTR_CMD_POP_FROM_OBJ:\n break;\n case self::CONSTR_CMD_POP_FROM_DB:\n break;\n case self::CONSTR_CMD_POPULATE_SYNCED_ARRAY:\n $this->applyArray($args[0]);\n $this->setAllLoaded();\n break;\n default:\n throw new OrmInputException('Guessing not supported, please explicitly specify construction type');\n self::constructGuess($args);\n }\n\n $this->ensureObjectInDb();\n }", "public function generateCommands();", "protected function newInstanceCommand($commandClass)\n {\n $class = new ReflectionClass($commandClass);\n\n return $class->newInstanceArgs($this->resolveCommandParameters($class));\n }", "protected function buildCommand()\n {\n return $this->command;\n }", "public function makeItemCreateCommand(string $processUuid, array $item): ItemCreateCommand\n {\n $processUuid = ProcessUuid::fromNative($processUuid);\n $uuid = Uuid::fromNative(null);\n $item = Item::fromNative($item);\n\n return new ItemCreateCommand($processUuid, $uuid, $item);\n }", "public function __construct($commandName, $args = [], $description = '') {\n if (!$this->setName($commandName)) {\n $this->setName('--new-command');\n }\n $this->addArgs($args);\n\n if (!$this->setDescription($description)) {\n $this->setDescription('<NO DESCRIPTION>');\n }\n }", "public function getCommand($name, array $args = array())\n {\n return parent::getCommand($name, $args)\n ->setRequestSerializer(RequestSerializer::getInstance());\n }", "protected function buildCommand()\n {\n $command = new Command(\\Tivie\\Command\\DONT_ADD_SPACE_BEFORE_VALUE);\n $command\n ->chdir(realpath($this->repoDir))\n ->setCommand($this->gitDir)\n ->addArgument(new Argument('rev-parse'))\n ->addArgument(new Argument('HEAD'));\n\n return $command;\n }", "protected function instantiateCommand(Request $request, $args)\n {\n $command = new DeletePackageCustomerCommand($args);\n\n $requestBody = $request->getParsedBody();\n\n $this->setCommandFields($command, $requestBody);\n\n return $command;\n }", "public function createCommand($sql = null, $params = [])\n {\n $command = new Command([\n 'db' => $this,\n 'sql' => $sql,\n ]);\n\n return $command->bindValues($params);\n }", "protected function setCommand($value) {\n\t\t$this->_command = trim($value);\n\t\treturn $this;\n\t}", "public function setCommand($command)\n {\n $this->command = $command;\n\n return $this;\n }", "public function buildCommand()\n {\n return parent::buildCommand();\n }", "private function registerMakeModuleCommand()\n {\n $this->app->singleton('command.make.module', function($app) {\n return $app['Caffeinated\\Modules\\Console\\Generators\\MakeModuleCommand'];\n });\n\n $this->commands('command.make.module');\n }", "public function __construct()\n {\n parent::__construct();\n\n $this->currentDirectory = getcwd();\n $this->baseIndentLevel = 0;\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\HelpCommand\", \"help\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\InitializePlanetCommand\", \"init\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PackAndPushUniToolCommand\", \"packpushuni\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PackLightPluginCommand\", \"packlightmap\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PushCommand\", \"push\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\PushUniverseSnapshotCommand\", \"pushuni\");\n $this->registerCommand(\"Ling\\LingTalfi\\Kaos\\Command\\UpdateSubscriberDependenciesCommand\", \"updsd\");\n\n }", "public function getCommand(string $command);", "protected function registerCommand(){\n\t\t$this->app->singleton('fakeid.command.setup', function ($app){\n\t\t\treturn new SetupCommand();\n\t\t});\n\n\t\t$this->commands('fakeid.command.setup');\n\t}", "public function addCommand($command, $args = [], $data = [])\n {\n $item = new ScreenCommand();\n $item->screen_id = $this->id;\n $item->command = $command;\n $item->arguments = $args;\n $item->fill($data);\n $item->save();\n\n return $item;\n }", "public function test_creating_command_from_container()\n {\n $now = new \\DateTime();\n $this->container->add('DateTime', $now);\n $command = 'Spekkionu\\DomainDispatcher\\Test\\Commands\\CommandWithConstructor';\n $result = $this->dispatcher->dispatch($command);\n $this->assertSame($now, $result);\n }", "protected function createProcess(): Process\n {\n $command = [\n $this->settings['executable']\n ];\n\n $command[] = $this->from;\n $command[] = $this->to;\n\n // Set the margins if needed.\n if ($this->settings['marginsType'] !== self::MARGIN_TYPE_NO_MARGINS) {\n $command[] = '--marginsType=' . $this->settings['marginsType'];\n }\n\n // If we need to proxy with node we just need to prepend the $command with `node`.\n if ($this->settings['proxyWithNode']) {\n array_unshift($command, 'node');\n }\n\n // If there's no graphical environment we need to prepend the $command with `xvfb-run\n // --auto-servernum`.\n if (! $this->settings['graphicalEnvironment']) {\n array_unshift($command, '--auto-servernum');\n array_unshift($command, 'xvfb-run');\n }\n\n return new Process($command);\n }", "private function registerCommand()\n {\n $this->app->singleton('command.shenma.push', function () {\n return new \\Larva\\Shenma\\Push\\Commands\\Push();\n });\n\n $this->app->singleton('command.shenma.push.retry', function () {\n return new \\Larva\\Shenma\\Push\\Commands\\PushRetry();\n });\n }", "public function __construct(string $command, string $before = '', string $after = '')\n {\n $this->command = $command;\n $this->before = $before;\n $this->after = $after;\n }", "public function generateCommand($singleCommandDefinition);", "public function create() {\n }", "public function create() {\n }", "public function create() {\r\n }", "public function create() {\n\n\t}", "private function getImportCommand()\n {\n return new IndexImportCommand(self::getContainer());\n }", "public function __construct($command)\n {\n $this->command = $command;\n\n $this->command->line('Installing Images: <info>✔</info>');\n }", "public function __construct()\n {\n self::$instance =& $this;\n\n $commanddir = Config::main('directory');\n $excludes = Config::main('exclude');\n\n if(is_null($commanddir))\n die('Could not find commands directory. It should be specified in the main config.');\n\n //The directory where commands reside should be relative\n //to the directory with the clip executable.\n $dir = realpath(__DIR__.\"/{$commanddir}\");\n\n $cmdfiles = scandir($dir);\n //Loop through each file in the commands directory\n foreach($cmdfiles as $file)\n {\n //Assume that each file uses the standard '.php' file extension.\n $command = substr($file, 0, -4);\n\n //Ignore the unnecessary directories as commands and anything that\n //has been marked for exclusion then attempt to include the valid ones.\n if($file !== '.' && $file !== '..' && array_search($command, $excludes) === false && include(\"{$dir}/{$file}\"))\n {\n if(class_exists($command, false))\n {\n $obj = new $command;\n //Only load commands that use the clip command interface\n if($obj instanceof Command)\n $this->commands[strtolower($command)] = $obj;\n }\n }\n }\n }", "public function __construct($action, $command = null) {\n parent::__construct($action, self::NAME);\n\n $fieldFactory = FieldFactory::getInstance();\n\n $commandField = $fieldFactory->createField(FieldFactory::TYPE_STRING, self::FIELD_COMMAND, $command);\n\n $this->addField($commandField);\n }", "public function createCommand($db = null, $action = 'get')\n {\n if ($db === null) {\n $db = Yii::$app->get(Connection::getDriverName());\n }\n $this->addAction($action);\n $commandConfig = $db->getQueryBuilder()->build($this);\n\n return $db->createCommand($commandConfig);\n }", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();" ]
[ "0.8010746", "0.7333379", "0.72606754", "0.7164165", "0.716004", "0.7137585", "0.6748632", "0.67234164", "0.67178184", "0.6697025", "0.6677973", "0.66454077", "0.65622073", "0.65437883", "0.64838654", "0.64696646", "0.64292693", "0.6382209", "0.6378306", "0.63773245", "0.6315901", "0.6248427", "0.6241929", "0.6194334", "0.6081284", "0.6075819", "0.6069913", "0.60685146", "0.6055616", "0.6027874", "0.60132784", "0.60118896", "0.6011778", "0.5969603", "0.59618074", "0.5954538", "0.59404427", "0.59388787", "0.5929363", "0.5910562", "0.590651", "0.589658", "0.589658", "0.589658", "0.58692765", "0.58665586", "0.5866528", "0.58663124", "0.5852474", "0.5852405", "0.58442044", "0.58391577", "0.58154446", "0.58055794", "0.5795853", "0.5780188", "0.57653266", "0.57640004", "0.57584697", "0.575748", "0.5742612", "0.5739361", "0.5732979", "0.572247", "0.5701043", "0.5686879", "0.5685233", "0.56819254", "0.5675983", "0.56670785", "0.56606543", "0.5659307", "0.56567776", "0.56534046", "0.56343585", "0.56290466", "0.5626615", "0.56255764", "0.5608852", "0.5608026", "0.56063116", "0.56026554", "0.5599553", "0.5599351", "0.55640906", "0.55640906", "0.5561977", "0.5559745", "0.5555084", "0.5551485", "0.5544597", "0.55397296", "0.5529626", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908", "0.552908" ]
0.0
-1
Execute the console command.
public function handle() { $previousMonthDate = now()->subMonth(); $users = User::query()->whereNotNull('braintree_id') // ->whereRaw('NOW() > ( subscribed_at + INTERVAL 1 MONTH)') ->get(); /** @var User $user */ foreach ($users as $user) { sleep(35); $this->chargeUser($user, 150); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function handle()\n {\n\t\t$this->info('league fetching ..');\n $object = new XmlFeed();\n\t\t$object->fetchLeague($this->argument('sports_id'));\n\t\t$this->info('league saved');\n }", "public function handle()\n {\n //get us the Converter class instance and call the convert() method on it.\n $this->info(\n \\Aregsar\\Converter\\ConverterFacade::convert($this->argument(\"currency\"))\n );\n }", "public function handle()\n {\n $this->locale = $this->argument('locale');\n\n $this->loadGroupLines();\n\n $this->loadNameSpacedLines();\n\n $this->info('Complete');\n }", "public function handle()\n {\n $this->importUser($this->argument('username'));\n $this->call('ldap:show-user', $this->arguments());\n }", "public function handle() {\n $user = User::where('id', $this->argument('userId'))->first();\n $this->info($user->email);\n }", "public function handle()\n {\n $translations = collect(json_decode(file_get_contents('https://raw.githubusercontent.com/getbible/Bibles/master/translations.json')))->flatten();\n switch($this->argument('action')) {\n case 'fetch':\n $this->fetchBibles($translations);\n break;\n case 'convert':\n $this->convertBibles($translations);\n break;\n }\n }", "public function handle()\n {\n try {\n $evalstr = $this->evaluater->evaluate($this->argument('evalString'));\n $this->info($evalstr);\n } catch (ForbiddenSymbolsException $exception) {\n $this->error($exception->getMessage());\n } catch (IncorrectSymbolsException $exception) {\n $this->error($exception->getMessage());\n }\n }", "public function handle()\n {\n\n $settings = Setting::fetch();\n $id = $this->argument('id');\n $this->scrape_game_data($id);\n }", "public function handle()\n {\n // env('CALENDARINDEX_TOKEN', '6f2bd927201ba4b22bb57df08db0c517e51732de')\n $this->getData($this->argument('country'), $this->argument('region'));\n }", "public function handle()\n {\n $email = $this->argument('email');\n $name = $this->argument('name');\n\n $this->info(\"starting to generate users details\");\n\n }", "public function handle()\n {\n\t\t$this->info('Importing translations...');\n\n\t\t$this->manager->importTranslations(true);\n }", "public function handle()\n {\n $user = null;\n\n if ($email = $this->option(\"email\", false)) {\n $user = $this->findByEmail($email);\n }\n\n if ($id = $this->option(\"id\", false)) {\n $user = $this->findById($id);\n }\n\n if (empty($user)) {\n $this->warn(\"User no found\");\n }\n else {\n $this->setRoleToUser($user);\n }\n }", "public function handle()\n {\n $name = ucwords($this->argument('name'));\n $this->call('repository:contract', [ 'name' => $name ]);\n $this->call('repository:class', [ 'name' => $name, '--driver' => $this->option('driver') ]);\n }", "public function handle()\n\t{\n\t\t// Superuser\n\t\tif( ! $this->option('no-superuser'))\n\t\t\t$this->call('setup:superuser');\n\n\t\t// Countries\n\t\tif( ! $this->option('no-countries'))\n\t\t\t$this->call('setup:countries', ['country' => array_filter(explode(',', $this->option('countries')))]);\n\n\t\t// Languages\n\t\tif( ! $this->option('no-languages'))\n\t\t\t$this->call('setup:languages', ['language' => array_filter(explode(',', $this->option('languages')))]);\n\n\t\t// Currencies\n\t\tif( ! $this->option('no-currencies'))\n\t\t\t$this->call('setup:currencies', ['currency' => array_filter(explode(',', $this->option('currencies')))]);\n\n\t\t// Clear cache\n\t\t$this->call('cache:clear');\n\t}", "public function handle()\n\t{\n\t\t$name = $this->argument('name');\n\t\t\n\t\t$this->info(\"Searching eve api for {$name}\");\n\t\t$result = Corporation::searchEVEAPI($name);\n\n\t\t$this->info(\"results\");\n\t\tforeach($result as $corp)\n\t\t{\n\t\t\tprint $corp->name . \" \" . $corp->id . \"\\r\\n\";\n\t\t}\n\t}", "public function handle()\n {\n $user = $this->argument('user');\n $this->info('Display this on the screen, user ' . $user);\n return 0;\n }", "public function handle()\n {\n $this->userVectors->test($this->option('force'));\n }", "public function handle()\n {\n $mapping = $this->formatMappingName((string)$this->argument('mapping'));\n \n $model = $this->option('model') ? $this->formatModelName($this->option('model')) : null;\n \n $this->filesystem->put(\n $this->buildMappingFilePath($mapping),\n $this->buildMapping(\n $this->getDefaultStub(),\n $mapping,\n $model\n )\n );\n \n $this->composer->dumpAutoloads();\n }", "public function handle()\n {\n switch ($this->argument('type')) {\n case 'dns':\n $this->dnscheck->run($this->option('dry-run') ? true : false, $this->argument('domain'));\n break;\n case 'whois':\n $this->whoischeck->run($this->option('dry-run') ? true : false, $this->argument('domain'));\n break;\n }\n }", "public function handle()\n {\n $option = $this->argument('option');\n\n if (! in_array($option, ['expired', 'all'])) {\n return $this->error('Invalid option supplied to command...');\n }\n\n $this->comment('Beginning pruning process...');\n\n $this->comment($this->pruneDatabase($option) . ' deleted from database...');\n\n $this->comment($this->pruneFiles($option) . ' deleted from files...');\n\n $this->info('Nonces pruned successfully!');\n }", "public function handle()\n {\n $subscriptionUpdateService = new SubscriptionUpdateService();\n $subscriptionUpdateService->runUpdates();\n }", "public function handle()\n\t{\n\t\t\n\t\t$source_directory = $this->argument( 'source_directory' );\n\t\t$target_directory = $this->argument( 'target_directory' );\n\t\t$template = (string) $this->option( 'template' );\n\n\t\t$statik = new \\App\\Statik\\Statik;\n\n\t\t$statik->generateHTMLFiles( $this, $source_directory, $target_directory, $template ) && $this->info( \"\\e[1;32mDONE!\" );\n\n\t}", "public function handle()\n {\n if (!$this->argument('file')) {\n $this->info('Please specify file to call.');\n }\n\n $file = $this->argument('file');\n\n if (!$this->fileHandler->exists($file)) {\n $this->info('Wrong path or file not exist.');\n }\n\n $this->executeFile($file);\n }", "public function handle()\n {\n $user = $this->argument('user');\n $this->scanner->setUserName($user);\n $this->scanner->scanUser();\n }", "public function handle()\n {\n if ($this->argument('user')) {\n $userId = $this->argument('user');\n\n $this->info(\"Liquidate affiliate commission for user \" . $userId);\n\n $user = $this->userService->findById($userId);\n\n if ($user) {\n $this->walletService->liquidateUserBalance($user);\n } else {\n $this->error(\"User not found\");\n }\n\n $this->info(\"Done\");\n } else {\n $this->info(\"Liquidate all commissions\");\n\n $this->walletService->liquidateAllUsersBalance();\n\n $this->info(\"Done\");\n }\n }", "public function handle()\n {\n $action = $this->choice('what action do you have on mind', [\n 'add-relation', 'remove-columns', 'column-type', 'rename-column'\n ]);\n switch ($action) {\n case 'add-relation':\n $this->addRelation();\n break;\n\n case 'remove-columns':\n $this->removeColumns();\n break;\n case 'column-type':\n $this->columnType();\n break;\n case 'rename-column':\n $this->renameColumn();\n break;\n default:\n $this->error('Unsupported action requested...');\n }\n $this->info('Command executed successfully');\n }", "public function handle()\n {\n $arguments = $this->arguments();\n $storageDir = $arguments['storageDir'];\n $localStorageDir = $arguments['localStorageDir'];\n $url = $arguments['url'];\n $cmd = sprintf(\"./app/Console/Commands/ShellScripts/screen_shot.sh %s %s %s\", $storageDir, $localStorageDir, $url);\n\n while (true) {\n $result = shell_exec($cmd);\n print_r($result);\n sleep(3);\n }\n }", "public function handle()\n {\n $city = $this->argument('city');\n\n $weatherService = new CurrentWeatherService();\n try {\n $weather = $weatherService->getByCity($city);\n } catch (WeatherException $e) {\n $this->error($e->getMessage());\n return;\n }\n\n $this->info('Weather for city '.$city);\n dump($weather->toArray());\n }", "public function handle()\n {\n $this->getModels($this->argument('model'));\n $this->getLanguages($this->argument('locale'));\n $this->createMultiLanguageRecords();\n }", "public function handle()\n {\n $this->processOptions();\n\n echo json_encode( $this->dateTimeRange ) . \"\\n\";\n\n $this->dispatch( new ProcessNewActionsJob(\n $this->dateTimeRange ,\n str_random( 16 ),\n $this->option('runtime-threshold')\n ) );\n }", "public function handle()\n {\n $fightId = $this->argument('fight_id');\n $metricId = $this->argument('metric_id');\n //$strategyName = 'App\\\\'.$this->argument('metric_name');\n\n $metric = BossMetric::find($metricId);\n if ($metric === null) {\n $this->error(\"Error: no metric with id: $metricId found!\");\n return;\n }\n\n $fight = Fight::find($fightId);\n\n if ($fight === null) {\n $this->error(\"Error: no fight with id: $fightId found!\");\n return;\n }\n\n $strategy = $metric->getStrategy();\n $strategy->setFight($fight);\n $strategy->run();\n }", "public function handle()\n {\n\t\t$this->call('vendor:publish');\n\t\t$this->call('migrate');\n\t\t$this->call('db:seed');\n\t\t$this->call('factotum:storage');\n\t\t$this->call('factotum:storage');\n }", "public function handle()\n {\n $user_id = $this->argument('user') ?? null;\n\n if (is_null($user_id)) {\n $users = User::all();\n\n foreach ($users as $user) {\n $this->showUserBalance($user);\n }\n } else {\n $user = User::find($user_id);\n\n $this->showUserBalance($user);\n }\n }", "public function handle()\n {\n $this->capsuleService->getAll();\n $this->line('Command Worked');\n }", "public function handle()\n {\n $platform_wechat_id = $this->argument('id');\n $customer_id = $this->argument('customer_id');\n $this->info(\"Starting at \".date('Y-m-d H:i:s').\". Running initial for 【{$this->signature}】\");\n $this->getUserInfoList($platform_wechat_id,$customer_id);\n $this->info(\"End at \".date('Y-m-d H:i:s').\". over for 【{$this->signature}】\");\n }", "public function handle()\n {\n $this->publishAssets();\n $this->call('twill:flush-manifest');\n $this->call('view:clear');\n }", "public function handle()\n {\n \n $argument = $this->argument('data');\n \n $this->prepare( $argument );\n \n $this->make();\n \n $this->info( 'migration has been created : '. $this->fileName );\n \n }", "public function handle()\n {\n chdir(resource_path('assets/ts'));\n $path = $this->argument(\"path\");\n if(isset($path))\n {\n Logger::info('execute '.$path);\n Command::executeRaw('tsc', [\"-p\", $path]);\n }else\n Logger::info('execute tsc');\n Command::executeRaw('tsc');\n }", "public function handle()\n {\n $this->info('Starting date change command.');\n\n Word::where('language_id', 1)->update(array('created_at' => '1970-01-01 00:00:01'));\n Word::where('language_id', 2)->update(array('created_at' => '1970-01-01 00:00:01'));\n\n $this->info('Dates have been changed to 1970-01-01 00:00:01');\n }", "public function handle()\n {\n $this->info($this->slugger->encode($this->argument('id')));\n }", "public function handle()\n {\n $this->line(static::$logo);\n $this->line('Neat admin current version:' . Neat::version());\n\n $this->comment('');\n $this->comment('Available commands:');\n\n $this->listAvailableCommands();\n }", "public function handle()\n {\n $this->revisions->updateListFiles();\n }", "public function handle(): void\n {\n // Set argument\n $this->url = $this->argument(self::URL_ARGUMENT);\n\n // Handler takes care of computation\n (new CommandHandler($this))->compute();\n }", "public function handle()\n {\n try\n {\n $filename = $this->argument('filename');\n Excel::import(new ObjectsImport, $filename);\n\n $this->info('Data import is now completed');\n }\n catch(Exception $ex)\n {\n $this->error($ex->getMessage());\n }\n }", "public function handle() {\n $entity = $this->validateEntity($this->argument('entity'));\n $job = new DataProcessingJob($entity, str_random(16));\n $this->dispatch($job);\n }", "public function handle()\n {\n $isProductionMode = 'prod' == $this->argument('mode');\n\n if ($isProductionMode) {\n if (!$this->confirm('Are you sure to run in production mode? Running this command may cause critical issues?')) {\n exit(1);\n }\n }\n\n $this->_recalculate($isProductionMode);\n }", "public function handle()\n {\n if(!$this->verify()) {\n $rank = $this->createRankSuperAdmin();\n $user = $this->createUserSuperAdmin();\n $user->Ranks()->attach($rank);\n $this->line('Felicitaciones');\n } else {\n $this->error('No se puede ejecutar');\n }\n }", "public function handle()\n {\n // Get CLI Input\n $user_id = $this->option(\"uid\");\n\n // User Products\n ( new CommandManager() )->showUserProducts( $user_id );\n }", "public function handle()\n {\n $force = $this->option('force');\n\n if($this->option('without-bulk')){\n $this->withoutBulk = true;\n }\n\n if ($this->generateClass($force)){\n $this->info('Generating permissions for '.$this->modelBaseName.' finished');\n }\n }", "public function handle()\n {\n $tournaments = Tournament::all()->toArray();\n foreach ($tournaments as $tournament) {\n $slug = $this->tournamentRepoObj->generateSlug($tournament['name'].Carbon::createFromFormat('d/m/Y', $tournament['start_date'])->year,'');\n DB::table('tournaments')\n ->where('id', $tournament['id'])\n ->update([\n 'slug' => $slug\n ]);\n }\n $this->info('Script executed.');\n }", "public function handle()\n {\n $userId = $this->argument('user');\n\n /** @var User $user */\n $user = User::findOrFail($userId);\n\n // Get token.\n $info = (new Client())->auth();\n\n // Save to db.\n $user->access_token = $info['access_token'];\n $user->access_secret = $info['access_secret'];\n $user->save();\n\n $this->line(\"Saved access token and secret for user: {$user->email}\");\n }", "public function handle()\n {\n $m = new MemberFromText;\n $m->train();\n $id = $m->predict($this->argument('text'));\n dump(Miembro::find($id)->toArray());\n }", "public function handle()\n {\n $this->generator\n ->setConsole($this)\n ->run();\n }", "public function handle()\n {\n $this->createController();\n $this->createServiceDir();\n\n exit;\n $args = [\n '--provider' => TestProvider::class\n ];\n $className = $this->argument('className');\n if (!$className) {\n $className = 'MethodsList';\n }\n $className = ucwords($className);\n $this->call('vendor:publish', $args);\n $this->info('Display this on the screen ' . $className);\n }", "public function handle()\n {\n $this->createDirectories();\n\n $this->publishTests();\n\n $this->info('Authentication tests generated successfully.');\n }", "public function handle()\n {\n $this->setDbConnection(\n $this->input->getOption('database') ?: config('ghost-database.default_connection')\n );\n\n $native = $this->input->getOption('native-import') ?: config('ghost-database.use_native_importer');\n\n $snapshot = $this->import($native);\n\n $this->info(\"Snapshot `{$snapshot->name}` loaded!\");\n }", "public function handle()\n {\n $exec = $this->argument('exec');\n\n switch ($exec) {\n case 'download' :\n $this->download();\n break;\n\n case 'generate' :\n $this->generate();\n break;\n\n default :\n echo \"Choose 'download' or 'generate' for this command\";\n break;\n }\n }", "public function handle()\n {\n $this->call('ziggy:generate', ['path' => './resources/js/ziggy-admin.js', '--group' => 'admin']);\n $this->call('ziggy:generate', ['path' => './resources/js/ziggy-frontend.js', '--group' => 'frontend']);\n $this->call(TranslationsGenerateCommand::class);\n }", "public function handle()\n {\n $tenantName = $this->argument('tenant');\n\n $tenant = Tenant::where('name', $tenantName)->orWhere('subdomain', $tenantName)->first();\n\n if ($tenant) {\n $tenant->setActive();\n \\Artisan::call('tinker');\n } else {\n $this->error('Error: Tenant not found');\n }\n }", "public function handle()\n {\n try {\n if (!empty($userId = $this->argument('user'))) {\n $user = User::find($userId);\n } else {\n $user = User::inRandomOrder()->first();\n }\n\n if (empty($user)) {\n throw new \\Exception('User not found');\n }\n\n echo JWTAuth::fromUser($user);\n } catch (\\Exception $e) {\n echo $e->getMessage();\n }\n\n }", "public function handle()\n {\n $this->fetchAndSetToken();\n $imagesToDownload = $this->peekImages(WatchedApp::pluck('package_name'));\n $this->fetchImages($imagesToDownload);\n\n if ($this->option('dont-optimize')) {\n return;\n }\n\n $this->runOptimizeCommand();\n }", "public function handle()\n {\n $this->setCryptIVFromUrl($this->argument('url'));\n\n $participant = URLParser::parseByName('santa.index', $this->argument('url'))->participant;\n if($participant) {\n $draw = $participant->draw;\n } else {\n $draw = URLParser::parseByName('organizer.index', $this->argument('url'))->draw;\n }\n\n $this->table(\n ['ID', 'Name', 'Email'],\n $draw->participants()->get(['id', 'name', 'email'])->toArray()\n );\n }", "public function handle()\n {\n // if you are on the local environment\n if (!(app()->isLocal() || app()->runningUnitTests())) {\n $this->error('This command is only available on the local environment.');\n return;\n }\n\n $fqdn = $this->argument('fqdn');\n if ($tenant = Tenant::retrieveBy($fqdn)){\n $tenant->delete($fqdn);\n $this->info(\"Tenant {$fqdn} successfully deleted.\");\n }else {\n $this->error('This fqdn doesn\\'t exist.');\n }\n\n }", "public function handle()\n {\n $user_from = $this->option('from');\n $user_to = $this->option('to');\n $sum = $this->option('sum');\n\n CreateTransaction::dispatch($this->usersRepository->getByID($user_from), $this->usersRepository->getByID($user_to), $sum, true);\n $this->transactionsRepository->getAll()->each(function ($transaction){\n \tExecuteTransaction::dispatch($transaction);\n });\n }", "public function handle()\n {\n $this->warn('Starting Retrieve Data');\n\n PeopleService::retrieveData();\n\n $this->info('Retrieve Data Completed');\n }", "public function handle()\n {\n \n $period = $this->option('period');\n \n switch ($period) {\n\n case 'half_month':\n $this->info('Grabing Half Month Income...');\n $this->halfMonth();\n break;\n\n case 'monthly':\n $this->info('Grabing Monthly Income...');\n $this->monthly();\n break;\n \n default:\n $this->info('Grabing Daily Income...');\n $this->daily();\n break;\n\n }\n\n \n }", "public function handle()\n {\n $countryFiles = $this->getFiles();\n\n foreach ($countryFiles as $fileName) {\n $this->seed($fileName);\n }\n\n $this->info('End.');\n }", "public function fire()\n {\n $entityName = $this->argument('entityName');\n $startEntityId = $this->argument('startEntityId');\n $endEntityId = $this->argument('endEntityId');\n $depth = $this->argument('depth');\n\n $this->fixturePath = $this->option('outputPath');\n\n $this->info(\"Generating fixtures for $entityName in {$this->fixturePath}...\");\n \n $this->generateFixtures($entityName, $startEntityId, $endEntityId, $depth);\n }", "public function handle()\n {\n $check = PublishTraitsService::publishTraits();\n\n if ($check)\n {\n $this->info('All files have been published');\n }\n\n $this->info('Failed to publish');\n }", "public function handle()\n {\n $user = User::where('username', $this->argument('user'))\n ->orWhere('email', $this->argument('user'))\n ->first();\n\n if ($user != null) {\n $user->assign('admin');\n $this->line(\"{$user->email} was successfully made an admin.\");\n } else {\n $this->line(\"No user found where username or email is '{$this->argument('user')}'\");\n }\n }", "public function handle()\n {\n event( 'laraview:compile' );\n $this->checkForSelectedViewGeneration();\n\n app( RegisterBlueprint::class )\n ->console( $this )\n ->generate();\n }", "public function handle()\n {\n $project = Project::with(['team.admins', 'team.members'])->findOrFail($this->option('project-id'));\n $user = User::findOrFail($this->option('user-id'));\n if ($this->option('admin')) {\n $project->team->admins()->syncWithoutDetaching($user);\n } else {\n $project->team->members()->syncWithoutDetaching($user);\n }\n return Command::SUCCESS;\n }", "public function handle() {\n try {\n $this->roomService->loadRoomOccupations();\n Log::notice('untis:occupations executed successfully.');\n $this->line('Loaded room occupations from WebUntis.');\n } catch (Exception $e) {\n Log::error('Error loading room occupations.', ['exception' => $e]);\n $this->error('Error loading room occupations: ' . $e->getMessage());\n }\n }", "public function handle()\n {\n $this->loadIxList();\n $this->loadIxMembersList();\n $this->updateIxInfo();\n $this->updateIxMembersInfo();\n }", "public function handle()\n {\n $this->call('vendor:publish', [\n '--provider' => \"Qoraiche\\MailEclipse\\MailEclipseServiceProvider\",\n ]);\n }", "public function handle()\n\t{\n\t\tif ($this->option('dev')) {\n\t\t\tsystem('php '.base_path('.deploy/deploy-dev.php'));\n\t\t} else {\n\t\t\tsystem('php '.base_path('.deploy/deploy.php'));\n\t\t}\n\t}", "public function handle(Command $command);", "public function handle(Command $command);", "public function handle()\n {\n $date_from = $this->argument('date_from');\n\t\t$date_to = $this->argument('date_to');\n\t\tif(!$date_from) {\n\t\t\t$date_from = Carbon::today()->subDays(5);\n\t\t}\n\t\tif(!$date_to) {\n\t\t\t$date_to = Carbon::yesterday();\n\t\t}\n\t\tStats::computeMembers($this->argument('venue_id'), $date_from, $date_to);\n }", "public function handle()\n {\n switch ($this->argument('type')){\n case 'fih':\n $scrapper = new Scrappers\\FederationScrapper();\n $scrapper->get($this->option('level'));\n print $scrapper->message();\n break;\n }\n }", "public function handle()\n {\n Log::info(\"seed:dash Command is working fine!\");\n $this->info('Dashboard Database seeding completed successfully.');\n }", "public function handle()\n {\n $originalId = $this->argument('original_id');\n\n $status = true;\n if ($this->option('status') === 'false') {\n $status = false;\n }\n\n if ($video = Video::where('original_id', $originalId)->first()) {\n $video->dmca_claim = $status;\n $video->save();\n\n $this->info('Video\\'s dmca_claim set to: ' . json_encode($status));\n return ;\n }\n\n $this->error('No video found with original_id of: ' . $originalId);\n return;\n }", "public function handle()\n {\n $this->call('config:clear');\n\n $this->call('config:update');\n\n $this->info('Configuration cached successfully!');\n }", "public function handle()\n {\n //\n $modelName = $this->argument('model');\n $column = $this->argument('column');\n $this->generateMutation($modelName, $column);\n\n }", "public function handle()\n {\n $filePath = 'public/' . $this->argument('fileName');\n $count = $this->argument('count');\n \n $fileData = array_slice(file($filePath), 0, $count);\n $this->info(implode('', $fileData));\n }", "public function handle()\n {\n $email = $this->argument('email');\n\n Mail::to($email)->send(new SendMailable('Test Mail'));\n\n if (Mail::failures()) {\n $this->info('Email failed to send');\n } else {\n $this->info('Email successfully sent');\n }\n }", "public function handle()\n {\n $this->call('route:trans:clear');\n\n $this->cacheRoutesPerLocale();\n\n $this->info('Routes cached successfully for all locales!');\n }", "public function handle()\n {\n $this->info('Welcome to command for Bantenprov\\WilayahIndonesia package');\n }", "public function handle()\n {\n if($this->hasOption('no_dump') && $this->option('no_dump')){\n $this->composer_dump = false;\n }\n $this->readyDatas();\n $this->datas['startSymbol']='{{';\n $this->datas['endSymbol']='}}';\n $this->create();\n }", "public function handle()\n {\n $repository = new OglasiCrawlerRepository();\n $ads = $repository->getAds();\n $repository->saveAds($ads);\n\n echo 'Ads were successfully retrieved' . PHP_EOL;\n }", "public function handle()\n {\n $this->makeDir($this->basePath . $this->kebabPlural());\n\n $this->exportViews();\n\n $this->info('Resource views generated successfully.');\n }", "public function handle()\n {\n $movies = \\App\\Models\\Movie::whereNull('meta')->take(40)->orderBy('id')->get();\n $movies->each(function($movie){ sleep(1); $movie->getMeta(); });\n return Command::SUCCESS;\n }", "public function handle()\n {\n $this->packageGenerator->setConsole($this)\n ->setPackage($this->argument('package'))\n ->setType('shipping')\n ->setForce($this->option('force'))\n ->generate();\n }", "public function handle()\n {\n $test = $this->argument('test');\n\n $dir = config('speed-test.dir');\n\n $className = ucfirst(\\Str::camel($test));\n\n $namespace = config('speed-test.namespace');\n\n $class = class_entity($className)\n ->namespace($namespace);\n\n $class->method('speed1')\n ->line($this->option('line'))->doc(function ($doc) use ($className) {\n /** @var DocumentorEntity $doc */\n $doc->tagCustom('times', $this->option('times'));\n $doc->description($this->option('description') ?: \"{$className} Speed 1\");\n });\n\n if (! is_dir($dir)) {\n mkdir($dir, 0777, 1);\n }\n\n file_put_contents(\n $dir.'/'.$className.'.php',\n $class->wrap('php')\n );\n\n $this->info('Speed created!');\n\n return 0;\n }", "public function handle()\n {\n $message = $this->GenerateRandomUser($this->argument('count'));\n $this->info($message);\n }", "public function handle()\n {\n $host = Cache::get('executingHost', null);\n $this->info(\"Host: ${host}\");\n\n if ($host === null) {\n $this->info('実行するホストが選択されていません');\n return;\n }\n\n if (Schema::hasTable('companies') && Company::count() !== 0) {\n $this->info('マイグレーションが既に1回以上実行されています');\n return;\n }\n\n $should_execute = $host === $this->argument('executingHost');\n\n if ($should_execute) {\n Artisan::call('migrate:fresh', ['--seed' => true]);\n $this->info('マイグレーションが完了しました');\n\n Cache::forget('executingHost');\n } else {\n $this->info('別ホストにてマイグレーションが行われます');\n }\n }", "public function handle()\n {\n // Configuration...\n $this->callSilent('vendor:publish', ['--tag' => 'model-login-config']);\n\n // Migrations\n $this->callSilent('vendor:publish', ['--tag' => 'model-login-migrations']);\n\n $this->info('Model Login resources published.');\n }", "public function handle()\n {\n if ($this->validation()) {\n $money = $this->argument('money');\n Cache::increment('amount', $money);\n }\n }", "public function handle()\n {\n $this->info('Publishing stuff..');\n\n $this->publishFiles();\n\n $this->info('Setup complete. Enjoy!');\n }", "public function handle()\n {\n $this->publishConfig();\n $this->publishClassStub();\n $this->generateAndStoreKey();\n\n $this->info('Use the details below for your \"Lead delivery options\" in Google Ads.');\n $this->info('Webhook URL: ' . route('GoogleAdsLeadExtensionController@index'));\n $this->info('Key: ' . $this->generated_key);\n }", "public function handle()\n {\n $opts = $this->options();\n $args = $this->arguments();\n #print_r($opts);\n #print_r($args);\n\n # Redundant as argument validation handled by Laravel\n #\n if (!isset($args['destination'])) {\n printf(\"Usage: php artisan %s\\n\", $this->signature);\n exit(1);\n }\n\n # Default to normal message type\n #\n if (!isset($opts['type'])) {\n $opts['type'] = 'normal';\n }\n\n $uac = new UserApiController();\n\n if ($opts['type'] == 'normal') {\n if (!isset($opts['message'])) {\n printf(\"Usage: php artisan %s\\n\\n\", $this->signature);\n printf(\"ERROR: Message must be specified for type 'normal'\\n\");\n exit(1);\n }\n $result = $uac->sendSms(\n $args['destination'],\n $opts['message'],\n $opts['route']\n );\n }\n else if ($opts['type'] == 'otp') {\n $result = $uac->sendVerificationSms(\n $args['destination'],\n '<code>',\n '<name>',\n $opts['route'],\n '<appName>'\n );\n }\n\n if ($result === true) {\n printf(\"INFO: SMS message to %s sent successfully (%s)\\n\",\n $args['destination'], $opts['type']);\n }\n else {\n printf(\"INFO: SMS message to %s failed to send (%s)\\n\", \n $args['destination'], $opts['type']);\n printf(\"ERROR: %s\\n\", $result);\n }\n\n return;\n }" ]
[ "0.6469962", "0.6463639", "0.64271367", "0.635053", "0.63190264", "0.62747604", "0.6261977", "0.6261908", "0.6235821", "0.62248456", "0.62217945", "0.6214421", "0.6193356", "0.61916095", "0.6183878", "0.6177804", "0.61763877", "0.6172579", "0.61497146", "0.6148907", "0.61484164", "0.6146793", "0.6139144", "0.61347336", "0.6131662", "0.61164206", "0.61144686", "0.61109483", "0.61082935", "0.6105106", "0.6103338", "0.6102162", "0.61020017", "0.60962653", "0.6095482", "0.6091584", "0.60885274", "0.6083864", "0.6082142", "0.6077832", "0.60766655", "0.607472", "0.60739267", "0.607275", "0.60699606", "0.6069931", "0.6068753", "0.6067665", "0.6061175", "0.60599935", "0.6059836", "0.605693", "0.60499364", "0.60418284", "0.6039709", "0.6031963", "0.6031549", "0.6027515", "0.60255647", "0.60208166", "0.6018581", "0.60179937", "0.6014668", "0.60145515", "0.60141796", "0.6011772", "0.6008498", "0.6007883", "0.60072047", "0.6006732", "0.60039204", "0.6001778", "0.6000803", "0.59996396", "0.5999325", "0.5992452", "0.5987503", "0.5987503", "0.5987477", "0.5986996", "0.59853584", "0.5983282", "0.59804505", "0.5976757", "0.5976542", "0.5973796", "0.5969228", "0.5968169", "0.59655035", "0.59642595", "0.59635514", "0.59619296", "0.5960217", "0.5955025", "0.5954439", "0.59528315", "0.59513766", "0.5947869", "0.59456027", "0.5945575", "0.5945031" ]
0.0
-1
/ Initialize action controller here
public function init() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function init()\n {\n /* Initialize action controller here */\n }", "public function init()\n {\n /* Initialize action controller here */\n }", "protected function initializeController() {}", "protected function initializeAction() {}", "protected function initializeAction() {}", "protected function initializeAction() {}", "protected function initAction()\n {\n }", "protected function initializeAction() {\n\t\t/* Merge flexform and setup settings\n\t\t * \n\t\t */\n\t\t$this->settings['action'] = $this->actionMethodName;\n\t}", "public function initializeAction() {}", "public function initializeAction() {}", "public function initializeAction() {}", "public function initializeAction() {}", "public function initializeAction() {}", "public function initializeAction() {\n\n\t}", "public function __construct(){\r\n $app = Application::getInstance();\r\n $this->_controller = $app->getController();\r\n }", "protected function initializeAction() {\n\t\t$this->akismetService->setCurrentRequest($this->request->getHttpRequest());\n\t}", "public function __construct($controller,$action) {\n\t\tparent::__construct($controller, $action);\n\t\t\n\t}", "public function init()\n {\n $controller = $this->router->getController();\n $action = $this->router->getAction();\n $params = $this->router->getParams();\n\n $objController = registerObject($controller);\n\n call_user_func_array([$objController, $action], $params);\n }", "public function __construct($controller, $action) {\n parent::__construct($controller, $action); //parent is Controller.php\n }", "protected function initAction()\r\n {\r\n $return = false;\r\n\r\n // parse request URI\r\n $parts_url = parse_url(strtolower(trim($_SERVER['REQUEST_URI'], '/')));\r\n // @TODO: fix\r\n $parts_url_array = explode('/', $parts_url['path']);\r\n list($this->controllerName, $this->itemId) = $parts_url_array;\r\n\r\n // parse method\r\n $this->requestMethod = strtolower($_SERVER['REQUEST_METHOD']);\r\n\r\n switch ($this->requestMethod) {\r\n case 'get':\r\n // default actions for GET\r\n if ($this->controllerName == 'login' || $this->controllerName == 'logout') {\r\n $this->actionName = $this->controllerName;\r\n $this->controllerName = 'users';\r\n } elseif (is_null($this->itemId)) {\r\n $this->actionName = 'index';\r\n } else {\r\n $this->actionName = 'view';\r\n }\r\n break;\r\n case 'post':\r\n // default action for POST\r\n $this->actionName = 'add';\r\n break;\r\n case 'put':\r\n // default action for PUT\r\n $this->actionName = 'edit';\r\n break;\r\n case 'delete':\r\n // default action for DELETE\r\n $this->actionName = 'delete';\r\n break;\r\n }\r\n\r\n if (!$this->controllerName) {\r\n $this->controllerName = 'main';\r\n }\r\n if (!$this->actionName) {\r\n $this->actionName = 'index';\r\n }\r\n\r\n // get, check & requre class\r\n $className = sprintf('mob%s', ucfirst($this->controllerName));\r\n $className = 'pages\\\\' . $className;\r\n \r\n if (class_exists($className)) {\r\n //create a instance of the controller\r\n $this->controller = new $className();\r\n\r\n //check if the action exists in the controller. if not, throw an exception.\r\n $actionName = sprintf('action%s', ucfirst($this->actionName));\r\n if (method_exists($this->controller, $actionName) !== false) {\r\n $this->action = $actionName;\r\n // set request params\r\n if ($this->itemId) {\r\n $this->controller->setParams(array('id' => $this->itemId));\r\n }\r\n $this->controller->setRequestParams($this->requestMethod);\r\n\r\n $return = true;\r\n } else {\r\n $this->controller->httpStatusCode = HTTP_STATUS_METHOD_NOT_ALLOWED;\r\n// throw new \\Exception('Action is invalid.');\r\n }\r\n } else {\r\n $this->controller = new clsMobController();\r\n $this->controller->httpStatusCode = HTTP_STATUS_NOT_FOUND;\r\n// throw new \\Exception('Controller class is invalid.');\r\n }\r\n\r\n return $return;\r\n }", "public function __construct()\n {\n // Prepare the action for execution, leveraging constructor injection.\n }", "public function __construct() {\n // filter controller, action and params\n $url = filter_input(INPUT_GET, 'url', FILTER_SANITIZE_URL); // $_GET['url']\n $params = explode('/', trim($url, '/'));\n\n // store first and seccond params, removing them from params list\n $controller_name = ucfirst(array_shift($params)); // uppercase classname\n $action_name = array_shift($params);\n\n require_once APP . 'config.php';\n\n // default controller and action\n if (empty($controller_name)) {\n $controller_name = AppConfig::DEFAULT_CONTROLLER;\n }\n if (empty($action_name)) {\n $action_name = AppConfig::DEFAULT_ACTION;\n }\n\n // load requested controller\n if (file_exists(APP . \"Controller/$controller_name.php\")) {\n require CORE . \"Controller.php\";\n require CORE . \"Model.php\";\n require APP . \"Controller/$controller_name.php\";\n $controller = new $controller_name();\n\n // verify if action is valid\n if (method_exists($controller, $action_name)) {\n call_user_func_array(array($controller, $action_name), $params);\n $controller->render(\"$controller_name/$action_name\"); // skipped if already rendered\n } else {\n // action not found\n $this->notFound();\n }\n } else {\n // controller not found\n $this->notFound();\n }\n }", "public static function init() {\n\t\tself::setup_actions();\n\t}", "protected function initializeAction()\n\t{\n\t\tparent::init('Form');\n\t}", "public function initController()\n {\n $this->model = new AliveSettingServiceMeta();\n\n $this->middleware([\n\n ]);\n }", "public function init() {\n\n $this->jobs = new Hb_Jobs();\n if ($this->_request->getActionName() == 'view') {\n\n $this->_request->setActionName('index');\n }\n\n $this->searchParams = $this->_request->getParams();\n $this->view->searchParams = $this->searchParams;\n\n $this->view->actionName = $this->_request->getActionName();\n }", "protected function initializeAction()\n {\n $this->extKey = GeneralUtility::camelCaseToLowerCaseUnderscored('BwrkOnepage');\n /** @var LanguageAspect $languageAspect */\n $languageAspect = GeneralUtility::makeInstance(Context::class)->getAspect('language');\n $this->languageUid = $languageAspect->getId();\n }", "protected function initializeAction()\n {\n parent::initializeAction();\n $this->customer = SubjectResolver::get()\n ->forClassName(Customer::class)\n ->forPropertyName('user')\n ->resolve();\n }", "public function initialize()\n {\n parent::initialize();\n $this->loadComponent('RequestHandler');\n $this->loadComponent('Flash');\n $this->loadComponent('Cookie');\n $this->cors();\n\n $currentController = $this->request->getParam('controller');\n // pr($currentController); die();\n if($currentController == 'Tenants'){\n $currentController = 'TenantUsers';\n }\n if($currentController == 'CorporateClients'){\n $currentController = 'CorporateClientUsers';\n // pr($currentController);die();\n }\n // $currentController = $this->request->params['controller'];\n $loginAction = $this->Cookie->read('loginAction');\n if(!$loginAction){\n $loginAction = ['controller' => $currentController,'action' => 'login'];\n }\n // pr($loginAction);die;\n $this->loadComponent('Auth',[\n 'loginAction' => ['controller' => $currentController,'action' => 'login'],\n 'authenticate' => [\n 'Form' =>\n [\n 'userModel' => $currentController,\n 'fields' => ['username' => 'email', 'password' => 'password']\n ]\n ],\n 'authorize'=> ['Controller'],\n 'loginAction' => $loginAction,\n 'loginRedirect' => $loginAction,\n 'logoutRedirect' => $loginAction \n\n ]);\n // $this->loadComponent('Auth', [\n\n // 'unauthorizedRedirect' => false,\n // 'checkAuthIn' => 'Controller.initialize',\n\n // // If you don't have a login action in your application set\n // // 'loginAction' to false to prevent getting a MissingRouteException.\n // 'loginAction' => false\n // ]);\n /*\n * Enable the following components for recommended CakePHP security settings.\n * see https://book.cakephp.org/3.0/en/controllers/components/security.html\n */\n }", "public function init() {\n\t\t$this->load_actions();\n\t}", "public function init()\r\n {\r\n\r\n /* Initialize action controller here */\r\n\r\n //=====================================must add in all Controller class constructor ===================================//\r\n if(defined('SITEURL')) $this->site_url = SITEURL;\r\n if(defined('SITEASSET')) $this->site_asset = SITEASSET;\r\n $this->view->site_url = $this->site_url;\r\n $this->view->site_asset = $this->site_asset;\r\n Zend_Loader::loadClass('Signup');\r\n Zend_Loader::loadClass('User');\r\n Zend_Loader::loadClass('Request');\r\n //Zend_Loader::loadClass('mailerphp');\r\n\t\t//Zend_Loader::loadClass('Permission');\r\n\r\n\r\n //-----------------------------------------------authenticate logged in user---------------------------------------------//\r\n Zend_Loader::loadClass('LoginAuth');\r\n $this->view->ob_LoginAuth = $this->sessionAuth = new LoginAuth();\r\n\r\n $this->sessionAuth->login_user_check();\r\n\r\n $this->sessionAuth->cookie_check();\r\n $this->view->server_msg = $this->sessionAuth->msg_centre();\r\n\r\n //-----------------------------------------------authenticate logged in user---------------------------------------------//\r\n unset($_SESSION['tranzgo_session']['export_list']);\r\n $this->view->ControllerName = $this->_request->getControllerName();\r\n $this->view->page_id = ($_SESSION['tranzgo_session']['role_id']==1)?'5':'7';\r\n //______________________________________must add in all Controller class constructor _____________________________________//\r\n\r\n\r\n }", "public function __construct() {\n\t\t\t$this->init_globals();\n\t\t\t$this->init_actions();\n\t\t}", "public function __construct()\n\t{\n\t\t$this->actionable = \"\";\n\t\t$this->action_taken = \"\";\n\t\t$this->action_summary = \"\";\n\t\t$this->resolution_summary = \"\";\n\t\t\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "public function __init()\n\t{\n\t\t// This code will run before your controller's code is called\n\t}", "function __construct()\n\t\t{\n\t\t\tparent::__construct();\n\t\t\t$this->_actionModel = new Action_Model();//khoi tao class\n\t\t}", "protected function initController() {\n\t\tif (!isset($_GET['controller'])) {\n\t\t\t$this->initDefaultController();\n\t\t\treturn;\n\t\t}\n\t\t$controllerClass = $_GET['controller'].\"Controller\";\n\t\tif (!class_exists($controllerClass)) {\n\t\t\t//Console::error(@$_GET['controller'].\" doesn't exist\");\n\t\t\t$this->initDefaultController();\n\t\t\treturn;\n\t\t}\n\t\t$this->controller = new $controllerClass();\n\t}", "protected function initializeAction() {\t\n\t\t$this->persdataRepository = t3lib_div::makeInstance('Tx_PtConference_Domain_Repository_persdataRepository');\n\t}", "public function __construct()\n\t{\n\t\t$this->actionable = \"\";\n\t\t$this->action_taken = \"\";\n\t\t$this->action_summary = \"\";\n\t\t$this->media_values = array(\n\t\t\t101 => Kohana::lang('ui_main.all'),\n\t\t\t102 => Kohana::lang('actionable.actionable'),\n\t\t\t103 => Kohana::lang('actionable.urgent'),\n\t\t\t104 => Kohana::lang('actionable.action_taken')\n\t\t);\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "public function __construct() {\n\n list($null,$controller, $action, $id) = explode(\"/\", $_SERVER['PATH_INFO']);\n \n $this->urlValues['base'] = \"http://\" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];\n $this->urlValues['controller'] = $controller ? $controller : \"home\";\n $this->urlValues['action'] = $action;\n $this->urlValues['id'] = $id;\n\n $this->controllerName = strtolower($this->urlValues['controller']);\n $this->controllerClass = ucfirst(strtolower($this->urlValues['controller'])) . \"Controller\";\n\n if ($this->urlValues['action'] == \"\") {\n $this->action = \"index\";\n } else {\n $this->action = $this->urlValues['action'];\n }\n }", "protected function _initControllers()\n\t{\n\t\treturn;\n\t}", "public function init()\n {\n $this->vars['CRUD']['Object'] = $this;\n $this->kernel = kernel();\n\n // Dynamic initialization\n if (! $this->modelName) {\n $modelRefl = new ReflectionClass($this->modelClass);\n $this->modelName = $modelRefl->getShortName();\n }\n\n\n if (! $this->crudId) {\n $this->crudId = \\Phifty\\Inflector::getInstance()->underscore($this->modelName);;\n }\n if (! $this->templateId) {\n $this->templateId = $this->crudId;\n }\n\n // Derive options from request\n if ($request = $this->getRequest()) {\n if ($useFormControls = $request->param('_form_controls')) {\n $this->actionViewOptions['submit_btn'] = true;\n $this->actionViewOptions['_form_controls'] = true;\n }\n }\n\n $this->reflect = new ReflectionClass($this);\n $this->namespace = $ns = $this->reflect->getNamespaceName();\n\n // XXX: currently we use FooBundle\\FooBundle as the main bundle class.\n $bundleClass = \"$ns\\\\$ns\";\n if (class_exists($bundleClass)) {\n $this->bundle = $this->vars['Bundle'] = $bundleClass::getInstance($this->kernel);\n } else {\n $bundleClass = \"$ns\\\\Application\";\n $this->bundle = $this->vars['Bundle'] = $bundleClass::getInstance($this->kernel);\n }\n\n $this->vars['Handler'] = $this;\n $this->vars['Controller'] = $this;\n\n // anyway, we have the model classname, and the namespace, \n // we should be able to registerRecordAction automatically, so we don't have to write the code.\n if ($this->registerRecordAction) {\n $self = $this;\n $this->kernel->event->register('phifty.before_action',function() use($self) {\n $self->kernel->action->registerAction('RecordActionTemplate', array(\n 'namespace' => $self->namespace,\n 'model' => $self->modelName,\n 'types' => (array) $self->registerRecordAction\n ));\n });\n }\n\n\n $this->initPermissions();\n\n /*\n * TODO: Move this to before render CRUD page, keep init method simple\n\n if ( $this->isI18NEnabled() ) {\n $this->primaryFields[] = 'lang';\n }\n */\n $this->initNavBar();\n }", "public function _initialize()\n {\n $this->cate=CONTROLLER_NAME;\n }", "protected function initializeActionEntries() {}", "protected function initializeAction() {\n\t\t$this->feusers = $this->feusersRepository->findByUid( $GLOBALS['TSFE']->fe_user->user['uid'] ) ;\n\t\t$this->schule = $this->feusers->getSchule();\n\t\n\t\t$this->extKey = $this->request->getControllerExtensionKey();\n\t\t$this->extPath = t3lib_extMgm::extPath($this->extKey);\n\t\n\t\t$this->importClassFile = $this->extPath.'Classes/tmp/class.importtext.php';\n\t\t$this->importClass = 'ImportText';\n\t \n\t\tif ( $this->settings[pidAjaxContainerKlassenuebersicht] > 0) $this->pidAjaxContainerKlassenuebersicht = (int) $this->settings[pidAjaxContainerKlassenuebersicht];\n\t\n\t}", "public function init(){\r\n\t$this->_helper->_acl->allow('public',NULL);\r\n\t$this->_flashMessenger = $this->_helper->getHelper('FlashMessenger');\r\n\t$this->_contexts = array('xml','json');\r\n\t$this->_helper->contextSwitch()\r\n\t\t->setAutoDisableLayout(true)\r\n\t\t->addActionContext('oneto50k',$this->_contexts)\r\n\t\t->addActionContext('index',$this->_contexts)\r\n\t\t->initContext();\r\n\t}", "private function loadController() : void\n\t{\n\t\t$this->controller = new $this->controllerName($this->request);\n\t}", "public function initBaseController();", "public function init() {\n $this->_flashMessenger = $this->_helper->getHelper('FlashMessenger');\n\t\t$this->_helper->acl->allow('public',null);\n\t\t$this->_helper->contextSwitch()\n\t\t\t ->setAutoDisableLayout(true)\n\t\t\t ->addActionContext('index', array('xml','json'))\n ->initContext();\n\t}", "public function __construct()\n {\n // Call the CI_Controller constructor\n parent::__construct();\n }", "public function __construct()\n\t{\t\t\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "public function initAction() : object\n {\n /**\n * Show all movies.\n */\n $response = $this->app->response;\n return $response->redirect(\"cms/posts\");\n }", "protected function initializeAction() {\n\t\t$this->frontendUserRepository = t3lib_div::makeInstance('Tx_GrbFeusermanager_Domain_Repository_FrontendUserRepository');\n\t}", "public function contentControllerInit()\n\t{\n\t}", "protected function initializeAction()\n {\n parent::initializeAction();\n\n $query = GeneralUtility::_GET('q');\n if ($query !== null) {\n $this->request->setArgument('q', $query);\n }\n }", "public function __construct()\n {\n $this->setAction('index', array('idle', 'toggleEnabled', 'expunge'));\n }", "public static function init() {\n\t\t$_GET = App::filterGET();\n\t\t\n\t\t// Checken of er params zijn meegegeven\n\t\ttry {\n\t\t\tif (count($_GET) == 0) {\n\t\t\t\t$_GET[0] = '';\n\t\t\t}\n\t\t\t\n\t\t\t// Is de eerste param een controller ? Anders een pageView\n\t\t\tif (self::isController($_GET[0])) {\n\t\t\t\t$controllerName = self::formatAsController($_GET[0]);\n\t\t\t\t$controller = self::loadController($controllerName);\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Er is sprake van een pageview\n\t\t\t\t$controllerName = 'PagesController';\n\t\t\t\t$controller = self::loadController($controllerName);\n\t\t\t}\n\t\t\t\n\t\t\t$action = self::getAction($controller);\n\t\t\t$controller->setAction($action);\n\n\t\t\t// Try to exec the action\n\t\t\ttry {\n\t\t\t\tself::dispatchAction($controller, $action);\n\t\t\t}\n\t\t\tcatch(ActionDoesNotExistException $ex) {\n\n\t\t\t\techo $action;\n\t\t\t\t// Action bestaat niet\n\t\t\t\t$controller = self::loadController('ErrorController');\n\t\t\t\t\n\t\t\t\t// Als development is ingeschakeld, dan de ware error tonen, anders een 404 pagina\n\t\t\t\tif (Config::DEVELOPMENT)\n\t\t\t\t\t$action = self::formatAsAction('invalidAction');\n\t\t\t\telse\n\t\t\t\t\t$action = self::formatAsAction('notFound');\n\t\t\t\t\t\n\t\t\t\t$controller->setAction($action);\n\t\t\t\tself::dispatchAction($controller, $action);\n\t\t\t}\n\t\t\tcatch(MissingArgumentsException $ex) {\n\t\t\t\t$controller = self::loadController('ErrorController');\n\t\t\t\t\n\t\t\t\t// Als development is ingeschakeld, dan de ware error tonen, anders een 404 pagina\n\t\t\t\tif (Config::DEVELOPMENT)\n\t\t\t\t\t$action = self::formatAsAction('missingArguments');\n\t\t\t\telse\n\t\t\t\t\t$action = self::formatAsAction('notFound');\n\t\t\t\t\t\n\t\t\t\t$controller->setAction($action);\n\t\t\t\tself::dispatchAction($controller, $action);\n\t\t\t}\n\t\t\t\n\t\t\t// Try to render the view\n\t\t\ttry {\n\t\t\t\t$controller->render();\n\t\t\t}\n\t\t\tcatch(ViewDoesNotExistException $ex) {\n\t\t\t\t// View bestaat niet\n\t\t\t\t$controller = self::loadController('ErrorController');\n\t\t\t\tif (Config::DEVELOPMENT)\n\t\t\t\t\t$action = self::formatAsAction('invalidView');\n\t\t\t\telse\n\t\t\t\t\t$action = self::formatAsAction('notFound');\n\t\t\t\t\n\t\t\t\t$controller->setAction($action);\n\t\t\t\tself::dispatchAction($controller, $action);\n\t\t\t\t\n\t\t\t\t$controller->render();\n\t\t\t}\n\t\t\t\n\t\t}\n\t\tcatch(NoValidTemplateException $ex) {\n\t\t\techo 'Invalid template';\n\t\t}\n\t\tcatch(IsNotControllerException $ex) {\n\t\t\techo 'Controller not found';\n\t\t}\n\t}", "public function init()\r\n { \r\n //date_default_timezone_set('America/Phoenix');\r\n $ajaxContext = $this->_helper->getHelper('AjaxContext');\r\n\t$ajaxContext->addActionContext('list', 'html')\r\n ->addActionContext('edit', 'html')\r\n ->addActionContext('dashboard', 'html')\r\n ->addActionContext('handler', 'html')\r\n ->initContext();\r\n $auth = Zend_Auth::getInstance();\r\n $action = Zend_Controller_Front::getInstance()->getRequest()->getActionName();\r\n $type = $this->getRequest()->getParam('type');\r\n if (!$auth->hasIdentity() && $action!='handler') {\r\n //echo \"THIS IS AN ERROR: \".$action;\r\n $this->_redirect('login', array('UseBaseUrl' => true));\r\n }\r\n }", "public function __construct()\n {\n $this->model = new MainModel();\n $this->params[\"pagination\"][\"totalItemsPerPage\"] = 5;\n view()->share ('controllerName', $this->controllerName);//đặt controllerName cho all action\n }", "public function __construct()\n\t{\t\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "public function __construct()\n\t{\t\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "public function init() {\n $this->_temporizador = new Trf1_Admin_Timer ();\n $this->_temporizador->Inicio();\n\n /* Initialize action controller here */\n $this->view->titleBrowser = 'e-Sisad';\n }", "public function __construct()\n\t{\n\t\t// Hook into routing\n\t\tEvent::add('system.pre_controller', array($this, 'add'));\n\t}", "function __construct()\n {\n parent::Controller();\n }", "public function controller()\n\t{\n\t\n\t}", "public function init() {\n\t\t\t\t\t\t$this->view->controller = $this->_request->getParam ( 'controller' );\n\t\t\t\t\t\t$this->view->action = $this->_request->getParam ( 'action' );\n\t\t\t\t\t\t$this->getLibBaseUrl = new Zend_View_Helper_BaseUrl ();\n\t\t\t\t\t\t$this->GetModelOrganize = new Application_Model_ModOrganizeDb ();\n\t\t\t\t\t\t$this->_helper->ajaxContext->addActionContext('deleteOrganisme1','json')->initContext();\n\t\t\t\t\t\t// call function for dynamic sidebar\n\t\t\t\t\t\t$this->_Categories = new Application_Model_ModCatTerm ();\n\t\t\t\t\t\t$parent_id = $this->_getParam ( 'controller' );\n\t\t\t\t\t\t$this->view->secondSideBar = $this->_Categories->showCateParent ( $parent_id );\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t}", "public function initializeAction() {\t\t\n\t\t$this->contactRepository = t3lib_div::makeInstance('Tx_Addresses_Domain_Repository_ContactRepository');\t\n\t}", "public function init() {\n\t$this->_flashMessenger = $this->_helper->getHelper('FlashMessenger');\n\t$this->_helper->acl->allow('public',null);\n\t$this->_helper->contextSwitch()\n\t\t->setAutoDisableLayout(true)\n\t\t->addActionContext('index', array('xml','json'))\n\t\t->addActionContext('mint', array('xml','json'))\n\t\t->initContext();\n }", "public function __construct()\n {\n if (get_called_class() != 'ApplicationController') {\n $this->_set_default_layout();\n $this->_vars = new stdClass();\n $this->_init();\n }\n }", "public function initializeAction() {\n parent::initializeAction();\n $this->umDiv = new Tx_Magenerator_Domain_UserManagement_Div();\n }", "public function __construct() {\n\n // Get the URL elements.\n $url = $this->_parseUrl();\n\n // Checks if the first URL element is set / not empty, and replaces the\n // default controller class string if the given class exists.\n if (isset($url[0]) and ! empty($url[0])) {\n $controllerClass = CONTROLLER_PATH . ucfirst(strtolower($url[0]));\n unset($url[0]);\n if (class_exists($controllerClass)) {\n $this->_controllerClass = $controllerClass;\n }\n }\n\n // Replace the controller class string with a new instance of the it.\n $this->_controllerClass = new $this->_controllerClass;\n\n // Checks if the second URL element is set / not empty, and replaces the\n // default controller action string if the given action is a valid class\n // method.\n if (isset($url[1]) and ! empty($url[1])) {\n if (method_exists($this->_controllerClass, $url[1])) {\n $this->_controllerAction = $url[1];\n unset($url[1]);\n }\n }\n\n // Check if the URL has any remaining elements, setting the controller\n // parameters as a rebase of it if true or an empty array if false.\n $this->_controllerParams = $url ? array_values($url) : [];\n\n // Call the controller and action with parameters.\n call_user_func_array([$this->_controllerClass, $this->_controllerAction], $this->_controllerParams);\n }", "public function actionInit()\n {\n $this->initRoles($this->roles);\n $this->initPermissions($this->permissions);\n $this->initDependencies($this->dependencies);\n }", "public function getControllerAction() {}", "public function __construct($action = '') {\n\t\t$this->app = Application::app();\n\t\t$this->setAction($action);\n\t}", "function initialize(Controller $controller) {\n $this->controller=&$controller;\n \t}", "public function __construct($controller, $action) {\n parent::__construct($controller, $action);\n $this->loadModel('Baskets');\n $this->loadModel('Orders');\n $this->loadModel('Messages');\n $this->loadModel('Products');\n\n if(Session::exists(BUYER_SESSION_NAME)) {\n $this->view->totalProductInBasket = $this->BasketsModel->countProductInBasket();\n $this->view->totalOrders = $this->OrdersModel->countSentOrder();\n $this->view->msgCount = $this->MessagesModel->unReadMessages();\n } elseif(Session::exists(STORE_SESSION_NAME)) {\n $this->view->msgCount = $this->MessagesModel->unReadMessages();\n $this->view->newOrders = $this->OrdersModel->newOrders(Session::get(STORE_SESSION_NAME));\n }\n\n $this->view->setLayout('details');\n }", "function initialize(Controller $controller) {\n $this->controller = $controller;\n }", "public function __construct() {\n if (isset($_GET['rc'])) {\n $this->url = rtrim($_GET['rc'], '/'); // We don't want no empty arg\n $this->args = explode('/', $this->url);\n }\n \n // Load index controller by default, or first arg if specified\n $controller = ($this->url === null) ? 'null' : array_shift($this->args);\n $this->controllerName = ucfirst($controller);\n\n // Create controller and call method\n $this->route();\n // Make the controller display something\n $this->controllerClass->render();\n }", "public function __construct() {\r\n\t\t\r\n\t\tSession::init();\n\t\tif (!Session::get('local'))\n\t\t\tSession::set('local', DEFAULT_LANGUAGE);\r\n\t\t\r\n\t\t$this->getUrl();\r\n\t\t\r\n\t\t//No controller is specified.\r\n\t\tif (empty($this->url[0])) {\r\n\t\t\t$this->loadDefaultController();\r\n\t\t\treturn;\r\n\t\t}\r\n\r\n\t\t$this->loadCurrentController();\r\n\t\t$this->callControllerMethod();\r\n\r\n\t}", "public function __construct() {\n $this->urlValues = $_GET;\n if (!isset($this->urlValues['c'])) {\n $this->controllerName = \"home\";\n $this->controllerClass = \"HomeController\";\n } else {\n $this->controllerName = strtolower($this->urlValues['c']);\n $this->controllerClass = ucfirst(strtolower($this->urlValues['c'])) . \"Controller\";\n }\n \n if (!isset($this->urlValues['a'])) {\n $this->action = \"index\";\n } else {\n $this->action = $this->urlValues['a']; \n }\n }", "public function preAction() {\n $this->apiBrowser = new ApiBrowser();\n\n $basePath = $this->request->getBasePath();\n $this->namespaceAction = $basePath . '/namespace/';\n $this->classAction = $basePath . '/class/';\n $this->searchAction = $basePath . '/search';\n }", "function __construct($controller, $action)\n {\n global $inflect;\n\n $this->renderPage = true;\n $this->renderHeader = true;\n \t\n\t\t$this->requireUser = false;\n\t\t \n $this->_controller = ucfirst($controller);\n $this->_action = $action;\n \n $model = ucfirst($inflect->singularize($controller));\n $this->$model = new $model;\n\n $this->_template = new Template($controller, $action);\n }", "public function init()\n {\n $this->ctrlModel = new Admin_Model_Acl_ControllersActions();\n $this->dbCtrl = new Admin_Model_DbTable_Acl_ModuleController();\n }", "public function setup_actions() {}", "public function init(){\r\n\t\t$this->_data = $this->_request->getParams();\r\n $controller = $this->_data['controller']; //Get controller\r\n $action = $this->_data['action']; //Get action\r\n \r\n $loadfunction = new Default_Model_Common();\r\n foreach($loadfunction->loadFunction($controller) as $value){\r\n if($action == $value['action']){\r\n $load = new $value['model_load']();\r\n $this->view->$value['varname'] = $load->$value['function_load']();\r\n }\r\n }\r\n\r\n $this->view->lang = Zend_Registry::get(\"lang\"); //load language\r\n \r\n //List menu\r\n $listmenu = Zend_Registry::get(\"listmenu\");\r\n $this->view->listmenu = $listmenu;\r\n \r\n $this->view->selectaccount = ' class=\"selected\"';\r\n }", "function __construct() {\n\t\t\n\t\tparent::__construct();\n\t\t\n\t\t// skip the timestamp check for this app\n\t\tSession::check(true);\n\t\t$this->data[\"showActions\"] = true;\n\t\t$this->data[\"csrfToken\"] = CSRF::generateToken();\n\t\t\n\t}", "abstract public function getControllerAction();", "public function _construct($controller,$view){\r\n $this->controller = $controller;\r\n }", "public function initialize()\n { $model= new \\Yabasi\\ModelController();\n $this->setSchema($model->model());\n $this->setSource(\"notification\");\n }", "protected function __construct() {\n\t\t\tadd_action( 'init', array( $this, 'action__init' ), 11 );\n\t\t}", "public function init()\n {\n $this->ctrlActionModel = new Admin_Model_Acl_ControllersActions();\n $this->dbController = new Admin_Model_DbTable_Acl_ModuleController();\n $this->dbAction = new Admin_Model_DbTable_Acl_Action();\n }", "public function init()\n {\n $this->projectController->init();\n }", "function __construct() {\n\t\t\t$this->register_actions();\t\t\n\t\t\t$this->register_filters();\n\t\t}", "public function __construct() {\n // Call Module constructur\n parent::__construct();\n\n // Add additional route\n $this->_actions['GET']['/people/:id'] = 'people';\n }", "public function initialize()\n {\n $model= new \\Yabasi\\ModelController();\n $this->setSchema($model->model());\n $this->setSource(\"refund\");\n }", "function Controller()\n\t{\t\t\n\t\t$this->method = \"showView\";\n\t\tif (array_key_exists(\"method\", $_REQUEST))\n\t\t\t$this->method = $_REQUEST[\"method\"];\n\t\t\t\t\n\t\t$this->icfTemplating = new IcfTemplating();\n\t\t$this->tpl =& $this->icfTemplating->getTpl();\n\t\t$this->text =& $this->icfTemplating->getText();\t\t\n\t\t$this->controllerMessageArray = array();\n\t\t$this->pageTitle = \"\";\n\t\t$this->dateFormat = DateFormatFactory::getDateFormat();\n\t\t$this->controllerData =& $this->newControllerData();\n\t}", "function __contrruct(){ //construdor do controller, nele é possivel carregar as librari, helpers, models que serão utilizados nesse controller\n\t\tparent::__contrruct();//Chamando o construtor da classe pai\n\t}", "function __construct($module,$controller,$action) {\n\t\t$this->action = $action;\n\t\t$this->controller = preg_replace('%Controller$%','',$controller);\n\t\t$this->module = $module;\n\n\t\t$jadeCacheDir = J::path(\"App/Cache/Jade/$this->module/$this->controller\");\n\t\t(is_dir($jadeCacheDir)) || mkdir($jadeCacheDir,0777,true);\n\t\t$this->cacheFile = J::path(\"$jadeCacheDir/$this->action.php\");\n\t\t$this->viewFile = J::path(\"App/Modules/$this->module/Views/$this->controller/$this->action.jade\");\n\t}", "public function __construct()\n {\n $url = $this->getUrl();\n // Look in controllers folder for first value and ucwords(); will capitalise first letter \n if (isset($url[0]) && file_exists('../app/controllers/' . ucwords($url[0]) . '.php')) {\n $this->currentController = ucwords($url[0]); // Setting the current controllers name to the name capitilised first letter\n unset($url[0]); \n }\n\n // Require the controller\n require_once '../app/controllers/' . $this->currentController . '.php';\n // Taking the current controller and instantiating the controller class \n $this->currentController = new $this->currentController;\n // This is checking for the second part of the URL\n if (isset($url[1])) {\n if (method_exists($this->currentController, $url[1])) { // Checking the seond part of the url which is the corresponding method from the controller class\n $this->currentMethod = $url[1];\n unset($url[1]);\n }\n }\n\n // Get params, if no params, keep it empty\n $this->params = $url ? array_values($url) : []; \n\n // Call a callback with array of params\n call_user_func_array([$this->currentController, $this->currentMethod], $this->params);\n }", "public function __construct() {\n\t\tparent::__construct();\n\t\t$this->view = new ViewController();\t\t\n\t}", "public function __construct()\n {\n $this->controller = new Controller;\n $this->error_message = 'bad request or duplicate data';\n }", "public function controller()\n {\n $method = $_SERVER['REQUEST_METHOD'];\n if ($method == 'GET') {\n $this->getController();\n };\n if ($method == 'POST') {\n check_csrf();\n $this->createController();\n };\n }" ]
[ "0.89566046", "0.89566046", "0.82057846", "0.80040884", "0.80040884", "0.8004028", "0.7928566", "0.7802862", "0.7750365", "0.7750365", "0.7750365", "0.7750365", "0.7750365", "0.7741994", "0.76497424", "0.7542271", "0.7541656", "0.7458589", "0.7430627", "0.7382884", "0.73493266", "0.73307425", "0.7321889", "0.73055863", "0.7295852", "0.7274981", "0.72531754", "0.7246773", "0.7212456", "0.72057885", "0.71661454", "0.71535975", "0.7130195", "0.7116122", "0.70873964", "0.7080964", "0.7078719", "0.70654655", "0.7053619", "0.7048942", "0.7036025", "0.7028192", "0.6996098", "0.69914645", "0.6983108", "0.69822043", "0.6978827", "0.69710267", "0.69653803", "0.6934731", "0.69341296", "0.6926329", "0.692468", "0.69113386", "0.6909758", "0.6896174", "0.68904704", "0.6874338", "0.68700373", "0.68700373", "0.6862786", "0.6847179", "0.6844484", "0.68443036", "0.68056643", "0.6804595", "0.68018633", "0.67917275", "0.6769771", "0.676602", "0.6765842", "0.67582476", "0.67257833", "0.6721477", "0.6721169", "0.67196625", "0.67082113", "0.6707143", "0.6706214", "0.67023355", "0.6700337", "0.669937", "0.6695276", "0.66930395", "0.6692887", "0.6688026", "0.66866106", "0.66839683", "0.6674853", "0.6667438", "0.6658782", "0.66509074", "0.6642763", "0.66400504", "0.6634305", "0.6610988", "0.6610453", "0.66071516", "0.66062886", "0.6600459", "0.6599095" ]
0.0
-1
Constructor, sets attributes and adds the submit element.
public function __construct($FormName) { // Call parent's constructor with the form name so nothing breaks down. parent::__construct($FormName); // ProductID. $this->add( [ 'name' => 'productId', 'attributes' => [ 'type' => 'text', 'id' => 'productId', 'required' => 'required', ], 'options' => ['label' => 'ProductID'] ]); // Submit button. $this->add( [ 'name' => 'submitDeleteProductForm', 'attributes' => [ 'type' => 'submit', 'id' => 'submitDeleteProductForm', 'required' => 'required', 'value' => 'Delete', ] ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function init() {\n $this->appendToClass(self::CLASS_SUBMIT);\n }", "private function submit()\n {\n $element = new Zend_Form_Element_Submit('submit');\n $element->setLabel('Save')\n ->setAttrib('class', 'reg_input_btn');\n\n return $element;\n }", "public function submitButton(){\n\t\t\n\t\t$this->addElement('button', 'bttnsubmit', array (\n\t\t\t\t'class' => 'btn blue ',\n\t\t\t\t'ignore'=>true,\n\t\t\t\t'type'=>'submit',\n \t\t\t\t'label'=>'<i class=\"fa fa-check\"></i> Save',\n\t\t\t\t'escape'=>false\n\t\t));\n\t\t$this->bttnsubmit->setDecorators(array('ViewHelper',array(array('controls' => 'HtmlTag'), array('tag' => 'div', 'class' =>'form-actions text-right'))\t));\n\t\t\n\t}", "public function init(){\n\t\t\n\t\tparent::init();\n\t\t\n\t\t$this->_html .= $this->get_label();\n\t\t\n\t\t$this->_html .= '<input type=\"submit\" ';\n\t\t\n\t\tif(isset($this->_options['id'])){\n\t\t\t$this->_html .= 'id=\"'.$this->_options['id'].'\" ';\n\t\t}\n\t\t\n\t\tif(isset($this->_options['class'])){\n\t\t\t$this->_html .= 'class=\"'.$this->_options['class'].'\" ';\n\t\t}\n\t\t\n\t\tif(isset($this->_options['value'])){\n\t\t\t$this->_html .= 'value=\"'.$this->_options['value'].'\" ';\n\t\t}\t\n\t\t\n\t\tif(isset($this->_options['name'])){\n\t\t\t$this->_html .= 'name=\"'.esc_attr($this->_options['name']).'\" ';\n\t\t}\t\t\t\t\t\t\t\t\t\t\n\t\t\n\t\t$this->_html .= ' />';\n\t}", "function initialize () {\n $this->set_openingtag ( \"<INPUT TYPE=\\\"submit\\\" value=\\\"\" );\n\t$this->set_closingtag ( \"\\\"[attributes]>\" );\n\t$this->set_type (\"button\");\n }", "public function init()\n {\n $this->setMethod('post');\n \n // Add an email element\n $this->addElement('text', 'email', array(\n 'label' => 'Email',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array(\n 'validator'=>'NotEmpty',\n 'options'=>array(\n 'messages'=>'Email is required'\n ),\n 'breakChainOnFailure'=>true\n ),\n array(\n 'validator'=>'EmailAddress',\n 'options'=>array(\n 'messages'=>'Email is invalid'\n ),\n 'breakChainOnFailure'=>true\n ),\n )\n ));\n // Add password element\n $this->addElement('password', 'password', array(\n 'label' => 'Password',\n 'required' => true,\n 'validators' => array(\n array(\n 'validator'=>'NotEmpty',\n 'options'=>array(\n 'messages'=>'Password is required'\n ),\n 'breakChainOnFailure'=>true\n ),\n )\n )); \n \n // Add the submit button\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Submit',\n ));\n \n \n// // And finally add some CSRF protection\n// $this->addElement('hash', 'csrf', array(\n// 'ignore' => true,\n// ));\n }", "private function _createSubmitButton()\n {\n $submit = new Zend_Form_Element_Submit('submit');\n $submit->setLabel('saveAction');\n\n return $submit;\n }", "public function __construct()\n {\n parent::__construct([], [\n 'submit' => [\n 'type' => 'submit',\n 'callback' => [$this, 'callbackSubmit'],\n 'value' => 'Logga ut',\n ],\n ]);\n }", "public function init()\n {\n $this->setAttribute('method', 'post');\n $this->add(array(\n 'name' => 'email',\n 'type' => 'Text',\n 'attributes' => array(\n 'size' => 30,\n 'data-rule-maxlength' => 50,\n 'maxsize' => 50,\n 'data-rule-required' => true,\n 'data-rule-email' => true,\n ),\n ));\n $this->add(array(\n 'name' => 'submit',\n 'type' => 'Submit',\n 'attributes' => array(\n 'value' => $this->getTranslator()->translate('Send new password'),\n 'id' => 'submitbutton',\n 'class' => 'button_send',\n ),\n ));\n }", "public function buildSubmitButton()\n {\n $this->submitButton->setAttributes($this->submitButtonAttr);\n return $this->submitButton->render($this->submitButtonName);\n }", "public function init()\n {\n // Set the method for the display form to POST\n $this->setMethod('post');\n \n // Add table tag\n $this->setDecorators(array(\n 'FormElements',\n array('HtmlTag', array('tag' => 'table')),\n 'Form'\n ));\n \n $this->setElementDecorators(array(\n 'ViewHelper',\n 'Errors',\n array(array('data' => 'HtmlTag'), array('tag' => 'td')),\n array('Label', array('tag' => 'td')),\n array(array('row' => 'HtmlTag'), array('tag' => 'tr'))\n ));\n\n // Add the email element\n $this->addElement('text', 'email', array(\n 'label' => 'User email:',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n 'NotEmpty',\n )\n ));\n\n // Add the submit button\n $this->addElement('submit', 'invite', array(\n 'ignore' => true,\n 'label' => 'invite',\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hash', 'csrf', array(\n 'ignore' => true,\n ));\n }", "public function init()\n {\n\n $this->setMethod('post');\n\n // Add the name element\n $this->addElement('text','name', array(\n 'label' => 'Sub-Section Name'\n , 'size' => 50\n , 'required' => true\n , 'filters' => array('StringTrim')\n ));\n\n My_Plugin_Form::setDefaultLayout($this->getElement('name'));\n\n // Add the submit button\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Save Changes',\n 'disableLoadDefaultDecorators' => true,\n ));\n\n $label = $this->getElement('submit');\n $label->addDecorators(array(\n array('ViewHelper'),\n array('HtmlTag')\n ));\n\n // Add a hidden field to handle the application id\n $this->addElement('hidden','application_id');\n\n // Add a hidden field to handle the sub-section id\n $this->addElement('hidden','id');\n\n // And finally, add some CSRF protection\n $this->addElement('hash','csrf', array(\n 'ignore' => 'true',\n ));\n\n }", "public function __construct(\n protected String $method,\n protected String $action,\n protected array $attr\n ) {\n $this->id = $this->name = $this->getMyName();\n\n $this->fields = [];\n\n // This can be override by the user defined build() method\n $this->submitButtonlabel = \"Submit\";\n $this->submitButtonName = $this->name . \"_submit_button\";\n $this->submitButtonAttr = [\"id\" => $this->name . \"_submit_button\"];\n $this->submitButton = new SubmitField();\n $this->submitButton->setLabel($this->submitButtonlabel);\n\n // Build the form\n $this->build();\n\n // By default form is not submitted\n $this->isSubmitted = false;\n }", "public function init()\n {\n\n $this->setMethod('post');\n\n \t$this->addElement('text', 'email', array(\n 'label' => ' email:',\n 'required' => true,\n 'class' => 'form-control',\n 'filters' => array('StringTrim'),\n 'validators' => array(\n 'EmailAddress',\n )\n ));\n\n\n\n \t $this->addElement('password', 'pwd', array(\n 'label' => 'password:',\n 'class' => 'form-control',\n 'required' => true,\n 'size' => 20,\n 'filters' => array('StringTrim'), \n ));\n\n \t // Add the submit button\n $this->addElement('submit', 'login', array(\n 'ignore' => true,\n 'label' => 'login',\n ));\n\n // We want to display a 'failed authentication' message if necessary;\n // we'll do that with the form 'description', so we need to add that\n // decorator.\n $this->setDecorators(array(\n 'FormElements',\n array('HtmlTag', array('tag' => 'dl', 'class' => 'zend_form')),\n array('Description', array('placement' => 'prepend')),\n 'Form'\n ));\n }", "function addSubmitButton($name,$display=null,$value=null, $disabled=null, $class=null, $id=null){\r\n\t\t\t$this->formFields[$name] = array(\r\n\t\t\t\t\"name\" => $name,\r\n\t\t\t\t\"type\" => \"submit\", //defines the type of the input\r\n\t\t\t\t\"label\" => $display,\r\n\t\t\t\t\"value\" => $value,\r\n\t\t\t\t\"disabled\" => $disabled,\r\n\t\t\t\t\"class\" => $class,\r\n\t\t\t\t\"id\" => $id\r\n\t\t\t);\t\t\r\n\t\t\t\r\n\t\t\t//add class if null\r\n\t\t\tif($class == null){\r\n\t\t\t\t$this->formFields[$name][\"class\"] = \"c\" . $name;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t//add id\r\n\t\t\tif($id == null){\r\n\t\t\t\t$this->formFields[$name][\"id\"] = \"i\" . $name;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t//add display\r\n\t\t\tif($display == null){\r\n\t\t\t\t$this->formFields[$name][\"label\"] = \"\";\r\n\t\t\t}\r\n\t\t\t\r\n\t\t}", "public function init(){\n\n // init the parent\n parent::init();\n // set the form's method\n $this->setMethod('post');\n $name = new Zend_Form_Element_Text('name');\n $name->setOptions(\n array(\n 'label' => 'Module name', 'required' => TRUE, \n 'filters' => array(\n 'StringTrim', 'StripTags'\n ), 'validators' => array(\n 'NotEmpty'\n )\n ));\n $this->addElement($name);\n $submit = new Zend_Form_Element_Submit('submit');\n $submit->setOptions(\n array(\n 'label' => 'Update', 'required' => TRUE\n ));\n $this->addElement($submit);\n }", "public function init()\n {\n $this->setMethod('post');\n \n $this->addElement('text','search',array('Label'=>'Szukaj:','required'=>true));\n $this->addElement('submit','submitSearch',array('value'=>'search','label'=>'Szukaj','ignore'=>true,));\n\t}", "public function init()\n {\n $this->setMethod('post');\n\n // Add an email element\n $this->addElement('text', 'nom', array(\n 'label' => \"Nom de l'endroit:\",\n 'required' => true,\n 'filters' => array('StringTrim')\n ));\n\n // Add an email element\n $this->addElement('select', 'active', array(\n 'label' => \"État\",\n\t 'multiOptions' => array(0 => 'Proposition', 1 => 'ZAP en service')\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hidden', 'latitude', array(\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hidden', 'longitude', array(\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hidden', 'id', array(\n ));\n \n // Add the submit button\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Modifier',\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hash', 'csrf', array(\n 'ignore' => true,\n ));\n }", "public function init() {\n\t\t$this->setMethod ( 'post' );\n\n $decorator = array(\n 'ViewHelper',\n 'Errors',\n array(array('data' => 'HtmlTag'), array('tag' => 'span', 'class' => 'data')),\n array('Label', array('tag' => 'div'),\n array(array('row' => 'HtmlTag'), array('tag' => 'span')),\n ));\n\n\t\t$this->addElement ( 'text', 'emailforgot', array ('decorators' => $decorator, 'label' => 'Enter your Email:', 'required' => true, 'filters' => array ('StringTrim' ), 'validators' => array ('EmailAddress' ) ) );\n\n \n\t\t// add the submit button\n\t\t$this->addElement ( 'submit', 'submit', \n array ('label' => 'Send'\n ,'class'=>'btn-red')\n );\n\t}", "public function init()\n {\n $this->addElement('password', 'password', array(\n 'required' => true,\n 'label' => 'Password'\n ));\n\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Submit'\n ));\n }", "function submit_button($text = \\null, $type = 'primary', $name = 'submit', $wrap = \\true, $other_attributes = \\null)\n {\n }", "function __construct() {\n $options = array('classname' => 'jwSubmitMessage', 'description' => \"Theme-based Submit message\");\n $controls = array('width' => 250, 'height' => 200);\n parent::__construct('jwSubmitMessage', 'J&W - Submit Message Widget', $options, $controls);\n }", "protected function renderForm()\n {\n $this->addAttribute(\"method\",$this->getMethod());\n \n if($this->getHasFile()) $this->addAttribute(\"enctype\",\"multipart/form-data\");\n\n $ret = '<form '.$this->getAttributes().'>';\n if($this->getHasFile())\n {\n $ret .= \"<input type='hidden' name='MAX_FILE_SIZE' value='10485760' />\";\n }\n if($this->error)\n {\n $ret .= \"<div class='fapi-error'><ul>\";\n foreach($this->errors as $error)\n {\n $ret .= \"<li>$error</li>\";\n }\n $ret .= \"</ul></div>\";\n }\n $ret .= $this->renderElements();\n\n $onclickFunction = \"fapi_ajax_submit_\".$this->getId().\"()\";\n $onclickFunction = str_replace(\"-\",\"_\",$onclickFunction);\n \n if($this->getShowClear())\n {\n $clearButton = '<input class=\"fapi-submit\" type=\"reset\" value=\"Clear\"/>';\n }\n\n if($this->getShowSubmit())\n {\n $ret .= '<div id=\"fapi-submit-area\">';\n $submitValue = $this->submitValue?('value=\"'.$this->submitValue.'\"'):\"\";\n if($this->ajaxSubmit)\n {\n $ret .= sprintf('<input class=\"fapi-submit\" type=\"button\" %s onclick=\"%s\" /> %s',$submitValue,$onclickFunction,$clearButton);\n }\n else\n {\n $ret .= sprintf('<input class=\"fapi-submit\" type=\"submit\" %s /> %s',$submitValue,$clearButton);\n }\n $ret .= '</div>';\n }\n $id = $this->getId();\n \n if($id != '')\n {\n $ret .= \"<input type='hidden' name='is_form_{$id}_sent' value='yes' />\";\n }\n \n $ret .= '<input type=\"hidden\" name=\"is_form_sent\" value=\"yes\" />';\n $ret .= '</form>';\n\n if($this->ajaxSubmit)\n {\n $elements = $this->getFields();\n $ajaxData = array();\n foreach($elements as $element)\n {\n $id = $element->getId();\n if($element->getStorable())\n {\n $ajaxData[] = \"'\".urlencode($id).\"='+document.getElementById('$id').\".($element->getType()==\"Field\"?\"value\":\"checked\");\n }\n $validations = $element->getJsValidations();\n $validators .= \"if(!fapiValidate('$id',$validations)) error = true;\\n\";\n }\n $ajaxData[] = \"'fapi_dt=\".urlencode($this->getDatabaseTable()).\"'\";\n $ajaxData = addcslashes(implode(\"+'&'+\", $ajaxData),\"\\\\\");\n\n $ret .=\n \"<script type='text/javascript'>\n function $onclickFunction\n {\n var error = false;\n $validators\n if(error == false)\n {\n \\$.ajax({\n type : 'POST',\n url : '{$this->ajaxAction}',\n data : $ajaxData\n });\n }\n }\n </script>\";\n }\n return $ret;\n }", "public function addform()\n\t{\n\t\t\t$this->setMethod('post');\n\n\t\t\t\n\t\t\t$this->addElement('radio', 'status', array(\n\t\t\t\t'required' => true,\n\t\t\t\t'multiOptions' => array(\n\t\t\t\t\t'1' => IN_PROGRESS,\n\t\t\t\t\t'2' => 'Closed'\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t\t'value' => '1' //key of multiOption\n\t\t\t));\n\t\t\n\t\t\n\n\t\t\t$this->addElement('textarea', 'Comment', array( \n\t\t\t\t\t'required' => true,\n\t\t\t\t\t'maxlength' =>'50',\n\t\t\t\t\t\n\t\t\t\t\t'class' => 'validate[required] text-input',\n\t\t\t\t\t'decorators'=>Array(\n\t\t\t\t\t\t'ViewHelper','Errors'\n\t\t\t\t\t),\t\t \n\t\t\t));\n\n\t\t\t\n\n\t\t\t\n\n\n\t\n\t\t\t\t\n\t\t\t$this->addElement('submit', 'submit', array(\n\t\t\t\t\t'ignore' => true,\n\t\t\t\t\t'label' => 'Submit',\n\t\t\t));\n\t\t\t\n\t\t\t// And finally add some CSRF protection\n\t\t\t$this->addElement('hash', 'csrf', array(\n\t\t\t\t\t'ignore' => true,\n\t\t\t));\t\n\t}", "public function init() {\n $this->setMethod('post');\n\n // Ein Email Element hinzufügen\n $this->addElement('text', 'name', array(\n 'label' => 'Dein Name:',\n 'required' => true,\n 'filters' => array('StringTrim'),\n ));\n $this->addElement('text', 'mail', array(\n 'label' => 'Deine Mail Adresse:',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array('validator' => 'EmailAddress', null)\n )\n ));\n // Das Kommentar Element hinzufügen\n $this->addElement('textarea', 'message', array(\n 'label' => 'Bitte ein Kommentar:',\n 'required' => true,\n 'validators' => array(\n array('validator' => 'StringLength', 'options' => array(0, 2000))\n )\n ));\n\n $this->addElement('select', 'subject', array(\n 'label' => 'Betreff',\n 'required' => true,\n 'multiOptions' => array(\n 'service' => 'Allgemeine Fragen',\n 'shooting' => 'Shooting',\n 'error' => 'Fehler auf der Seite'\n )\n ));\n \n $this->addElement('text', 'datum', array(\n 'label' => 'Datum:',\n 'required' => false,\n 'filters' => array('StringTrim'),\n ));\n \n // Den Submit Button hinzufügen\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Absenden',\n ));\n\n /*\n // Und letztendlich etwas CSRF Protektion hinzufügen\n $this->addElement('hash', 'csrf', array(\n 'ignore' => true,\n ));\n */\n }", "public function __construct( $attributes = array() ){\n\n // Default 'method' is post\n if ( !isset( $attributes['method'] ) )\n $attributes['method'] = 'post';\n\n // Default 'action' is the current URL\n if ( !isset( $attributes['action'] ) )\n $attributes['action'] = RMUris::current_url();\n\n // Default submission method is normal\n if ( !isset( $attributes['submit-via'] ) )\n $attributes['submit-via'] = 'normal';\n\n // Default validation is in local client\n if ( !isset( $attributes['validation'] ) )\n $attributes['validation'] = 'local';\n\n $this->attributes = $attributes;\n\n }", "public function init()\n {\n // form should use p4cms-ui styles.\n $this->setAttrib('class', 'p4cms-ui wordpress-import-form');\n\n // handle file upload\n $this->setAttrib('enctype', 'multipart/form-data');\n\n // set the method for the form to POST\n $this->setMethod('post');\n\n // file specification\n $this->addElement(\n 'file',\n 'importfile',\n array(\n 'label' => 'WordPress XML File',\n 'required' => true,\n 'description' => 'Select the exported WordPress XML file to import into Chronicle.',\n 'validators' => array('Extension' => array('xml'))\n )\n );\n\n // fix odd wording on error message\n // \"File 'foobar.ext' has a false extension\" by default.\n $this->getElement('importfile')->getValidator('Extension')->setMessage(\n \"File '%value%' does not appear to be an xml file.\",\n Zend_Validate_File_Extension::FALSE_EXTENSION\n );\n\n $this->addElement(\n 'SubmitButton',\n 'import',\n array(\n 'label' => 'Import',\n 'required' => false,\n 'ignore' => true\n )\n );\n\n // put the buttons in a fieldset.\n $this->addDisplayGroup(\n array('import'),\n 'buttons',\n array('class' => 'buttons')\n );\n }", "function _renderSubmit($element) {\n $elementClasses = \"btn btn-default \" . $element->getAttribute(\"class\", \"\");\n $element->setAttribute(\"class\", $elementClasses);\n $html = $this->render($element->getName());\n return $html;\n }", "public function renderSubmit( $label, $key, $attributes = array() )\n {\n $this->renderInput( 'submit', $key . 'Submit', $label, array_merge( array( 'class' => 'form-button' ), $attributes ) );\n }", "public function addSubmit($value, $name = \"\", $attr = array()){\n $field = new Form_Field_Submit($name);\n $field->setDefaultValue($value);\n foreach($attr as $key => $value) $field->attr->add($key, $value);\n $this->buttons[] = $field;\n return $field;\n }", "public static function renderSubmit();", "function build_basic_form()\r\n {\r\n $this->addElement('select', LanguagePack :: PROPERTY_BRANCH, Translation :: get('Branch'), LanguagePack :: get_branch_options());\r\n \r\n \t$this->addElement('file', 'file', Translation :: get('FileName'));\r\n $allowed_upload_types = array('zip');\r\n $this->addRule('file', Translation :: get('OnlyZIPAllowed'), 'filetype', $allowed_upload_types);\r\n $this->addRule('file', Translation :: get('ThisFieldIsRequired', null, Utilities :: COMMON_LIBRARIES), 'required');\r\n \r\n // Submit button\r\n //$this->addElement('submit', 'user_settings', 'OK');\r\n $buttons[] = $this->createElement('style_submit_button', 'submit', Translation :: get('Import', null, Utilities :: COMMON_LIBRARIES), array('class' => 'positive'));\r\n $buttons[] = $this->createElement('style_reset_button', 'reset', Translation :: get('Reset', null, Utilities :: COMMON_LIBRARIES), array('class' => 'normal empty'));\r\n \r\n $this->addGroup($buttons, 'buttons', null, '&nbsp;', false);\r\n }", "public function init(){\n $this->setMethod('post');\n $this->setAttrib('enctype', Zend_Form::ENCTYPE_MULTIPART);\n //'multipart/form-data'\n $this->addPrefixPath('PAP_Form_Element_', 'PAP/Form/Element/', 'Element');\n $this->addDecorators(array('FormElements', 'Form'));\n \n $decorators = array(\n array('ViewHelper'),\n array('Label', array(\n 'class' => 'leftalign ui-button-text'\n )),\n );\n \n //$allowWhiteSpace = new Zend_Validate_Alnum(array('allowWhiteSpace' => true));\n $decoratorsButton = array(\n array('ViewHelper'),\n array('HtmlTag', array('tag' => 'div')),\n );\n \n $control = new Zend_Form_Element_Radio('reportType');\n $control->setLabel('Tipo de Reporte')\n ->setMultiOptions(array(\n 'actual' => 'Período Actual',\n 'pendientes' => 'Cargos Pendientes',\n 'ultimos' => 'Últimos períodos'\n ))\n ->setOptions(array('id' => 'reportType'))\n ->setSeparator('')\n ->setAttrib('label_class', 'leftalign ui-button-text')\n ->setDecorators($decorators);\n $this->addElement($control);\n \n $this->addElement('submit', 'search', array(\n 'ignore' => true,\n 'label' => 'Buscar',\n ));\n $this->search->setAttrib('class', 'buttons')\n ->setDecorators($decoratorsButton);\n \n $this->addElement('button', 'pay', array(\n 'ignore' => true,\n 'label' => 'Informar Pago',\n ));\n $this->pay->setAttrib('class', 'buttons')\n ->setAttrib('onClick', 'showPaymentInfo()')\n ->setDecorators($decoratorsButton);\n \n $this->addElement('button', 'payMP', array(\n 'ignore' => true,\n 'label' => 'Pagar con Mercado Pago',\n ));\n $this->payMP->setAttrib('class', 'buttons')\n ->setAttrib('onClick', 'showMercadoPago()')\n ->setDecorators($decoratorsButton);\n \n $this->addElement('hidden', 'data');\n }", "public function init()\r\n\t{\t\t\t\t\t\t\r\n\t\t$this->setMethod('post');\r\n\t\t$this->addAttribs(array( \t \r\n\t\t\t'class' => 'form', \t\r\n \t));\t\t\r\n\t \t\t\t\r\n\t\t$this->addElement('text', 'username', array(\t\r\n\t\t 'required' => true,\t\t\t \r\n\t\t 'label' => 'Tên đăng nhập',\r\n\t\t 'attribs' => array(\r\n\t\t\t\t 'class' => 'focus',\r\n\t\t\t\t\t'size' => 30,\r\n\t\t\t ), \r\n\t\t\t 'filters' => array('StringTrim'),\t\t\t \t \r\n\t\t));\r\n\t\t\r\n\t\t$this->addElement('password', 'password', array(\t\r\n\t\t 'required' => true,\t\t\t \r\n\t\t 'label' => 'Mật khẩu',\r\n\t\t 'attribs' => array(\t\t\t\t \r\n\t\t\t\t\t'size' => 30,\r\n\t\t\t ),\t\t\r\n\t\t\t 'filters' => array('StringTrim'),\t\t \t\t \r\n\t\t));\r\n\t\t\r\n\t\t$this->addElement('checkbox', 'remember', array(\t\r\n\t\t 'required' => true,\t\t\t \r\n\t\t 'label' => 'Ghi nhớ thông tin',\r\n\t\t\t 'filters' => array('StringTrim'),\t\t\t\t \r\n\t\t));\t\r\n\t\t\r\n\t\tforeach($this->getElements() as $element) {\r\n\t\t\t$element->removeDecorator('HtmlTag')\t\t\t\t\r\n\t\t\t ->removeDecorator('DlDtDdWrapper')\r\n\t\t\t ->removeDecorator('Label')\r\n\t\t\t\t\t->addDecorator('Label');\t\t\t\t\t\t\t\t\r\n\t\t}\t\t\t\t\r\n\r\n\t\t$this->addElement('submit', 'login', array( \r\n\t\t 'ignore' =>true,\t\r\n\t\t\t 'label' => 'Đăng nhập'\t\t\t\t\t\t \t\t \t\t \t\t \r\n\t\t));\t\r\n\r\n\t\t$this->addDisplayGroup(\r\n\t\t\tarray('username', 'password' ,'remember', 'login'),\r\n\t\t\t'group1',\r\n\t\t\tarray(\t\t\t\t\r\n\t\t\t\t'legend' => 'Đăng nhập',\t\t\t\t\r\n\t\t\t\t'class' => 'g-green',\t\t\t \r\n\t\t\t)\t\t\t\r\n\t\t);\r\n\t}", "public function addform()\n\t{\n \n\t\t$this->setMethod('post');\n\t\t $this->setAttrib('enctype', 'multipart/form-data');\n\n\t\t$this->addElement('file', 'upload_image', array( \n\t\t\t'label' => '',\n 'required' => false\n ));\n\n // Add the submit button\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Submit',\n ));\n\n // And finally add some CSRF protection\n $this->addElement('hash', 'csrf', array(\n 'ignore' => true,\n ));\n\n\n\t}", "public function init()\n {\n \n $control_decorator = Application_Form_Helper::$control_decorator;\n $btn_decorator = Application_Form_Helper::$btn_decorator;\n \n $body = new Zend_Form_Element_Textarea('body');\n $body->setLabel('Comment')\n ->addFilter(new Zend_Filter_StripTags)\n ->setRequired()\n ->setDescription('Write a comment')\n ->setDecorators($control_decorator)\n ->setAttrib('class', 'form-control');\n \n $submit = new Zend_Form_Element_Submit('submit');\n $submit->setAttrib('class', 'btn btn-primary pull-right')\n ->setDecorators($btn_decorator)\n ->setLabel('Send');\n \n $this->addElements(array($body,$submit));\n }", "public function init() {\n $this->setMethod('post');\n \n // Add claim Number element\n $this->addElement(\n 'text',\n 'claimNumber',\n array(\n 'required' => true,\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array (\n 'isEmpty' => 'Please enter claim number',\n 'notEmptyInvalid' => 'Please enter valid claim number'\n )\n )\n )\n )\n )\n );\n\n // Add hidden element for claim reference number\n $this->addElement('hidden', 'ref_num', array(\n 'value' => '',\n 'class' => 'noborder',\n 'label' =>''\n ));\n \n // Add hidden element for mode\n $this->addElement('hidden', 'mode', array(\n 'value' => '',\n 'class' => 'noborder',\n 'label' =>''\n )); \n\n // Add search button\n $this->addElement('image', 'search', array(\n 'src' => '/assets/connect/images/claims/search-button.jpg',\n 'align' => 'top',\n 'class' => 'search',\n 'onclick' => 'return validateClaimNumber()'\n ));\n\n \n // Add the back button\n $this->addElement('button', 'back', array(\n 'ignore' => true,\n 'label' => 'Back',\n 'value' => 'Back',\n 'onclick' => 'window.location=\"/rentguaranteeclaims/home\"'\n ));\n \n // Set decorators\n $this->clearDecorators();\n $this->setDecorators(array('Form'));\n $this->setElementDecorators(array ('ViewHelper', 'Errors')); \n }", "public function init()\n {\n $this->setMethod('post');\n \n $this->addElement('select', 'parentId', array(\n 'label' => 'Parent:',\n 'required' => true,\n \t'multioptions' => $this->_tree->getForm($this->_node->getId()),\n \t'value'\t=> array($this->_node->getParentId())\n ));\n \n $this->addElement('text', 'nodeName', array(\n 'label' => 'Titel ',\n 'required' => true,\n \t'validators' => array(\n array('validator' => 'StringLength', 'options' => array(0, 30))\n ),\n 'value'\t=> ''.$this->_node->getNodeName()\n ));\n \n $this->addElement('text', 'nodeValue', array(\n 'label' => 'Link Url ',\n 'required' => true,\n \t'validators' => array(\n array('validator' => 'StringLength', 'options' => array(0, 30))\n ),\n 'value'\t=> ''.$this->_node->getNodeValue()\n ));\n \n \n // Add the submit button\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Submit',\n ));\n\n }", "public function init()\n {\n\n parent::init();\n\n $this->setMethod('post');\n $this->setAttrib('id', 'stylesheet-form');\n $this->setAttrib('enctype', 'multipart/form-data');\n $this->addElementPrefixPath('TeiDisplay', dirname(__FILE__));\n\n // Title.\n $this->addElement('text', 'title', array(\n 'label' => __('Title'),\n 'description' => __('An identifier used for internal content management.'),\n 'size' => 40,\n 'value' => $this->_stylesheet->title,\n 'required' => true,\n 'validators' => array(\n array('validator' => 'NotEmpty', 'breakChainOnFailure' => true, 'options' =>\n array('messages' => array(\n Zend_Validate_NotEmpty::IS_EMPTY => __('Enter a title.')\n ))\n )\n )\n ));\n\n // XSLT.\n $this->addElement('file', 'xslt', array(\n 'label' => __('XSLT'),\n 'description' => __('Select the XSLT file.'),\n 'validators' => array(\n array('validator' => 'extension', 'breakChainOnFailure' => true, 'options' =>\n array(\n 'extension' => 'xslt',\n 'messages' => array(\n Zend_Validate_File_Extension::NOT_FOUND =>\n __('Invalid extension.'),\n Zend_Validate_File_Extension::FALSE_EXTENSION =>\n __('Invalid extension.')\n )\n )\n )\n )\n ));\n\n // Submit.\n $this->addElement('submit', 'submit', array(\n 'label' => __('Save Stylesheet')\n ));\n\n }", "public function init()\n {\n // form should use p4cms-ui styles.\n $this->setAttrib('class', 'p4cms-ui login-form p4cms-user-login');\n \n // form should submit on enter\n $this->setAttrib('submitOnEnter', true);\n\n // set the method for the form to POST\n $this->setMethod('post');\n\n // add a field to collect the user name.\n $this->addElement(\n 'text',\n 'user',\n array(\n 'label' => 'User',\n 'required' => true,\n 'description' => \"Enter your email address or username.\",\n 'filters' => array('StringTrim'),\n 'size' => 20\n )\n );\n\n // add a field to collect the user's password\n $this->addElement(\n 'password',\n 'password',\n array(\n 'label' => 'Password',\n 'required' => false,\n 'size' => 20\n )\n );\n\n // add the submit button\n $this->addElement(\n 'SubmitButton',\n 'login',\n array(\n 'label' => 'Login',\n 'required' => false,\n 'ignore' => true,\n 'class' => 'preferred'\n )\n );\n $buttons = array('login');\n\n // add an 'add user' button, if we have appropriate permissions\n $user = P4Cms_User::fetchActive();\n if ($user->isAllowed('users', 'add', $this->getAcl()) && P4_User::isAutoUserCreationEnabled()) {\n $this->addElement(\n 'Button',\n 'addNewUser',\n array(\n 'label' => 'New User',\n 'class' => 'add-button',\n 'ignore' => true,\n 'onclick' => 'window.location = p4cms.url({module: \"user\", controller: \"index\", action: \"add\"});',\n )\n );\n $buttons[] = 'addNewUser';\n }\n\n // put the button in a fieldset.\n $this->addDisplayGroup(\n $buttons,\n 'buttons',\n array('class' => 'buttons')\n );\n }", "public function init(): void\n {\n $this->setMethod('post');\n\n // Add the nickname element\n $this->addElement('text', 'nickname', [\n 'label' => _tr('Nickname:'),\n 'autofocus' => true,\n 'required' => true,\n 'filters' => ['filter' => ['filter' => 'stringTrim']],\n 'validators' => [\n ['validator' => new Zend_Validate_Db_NoRecordExists(['table' => 'user', 'field' => 'nickname'])],\n ],\n ]);\n\n // Add the email element\n $this->addElement('text', 'email', [\n 'label' => _tr('Email:'),\n 'required' => true,\n 'filters' => ['filter' => ['filter' => 'stringTrim']],\n 'validators' => [\n ['validator' => 'emailAddress'],\n ['validator' => new Zend_Validate_Db_NoRecordExists(['table' => 'user', 'field' => 'email'])],\n ],\n ]);\n\n // Add the password ail element\n $this->addElement('password', 'password', [\n 'label' => _tr('Password:'),\n 'required' => true,\n ]);\n\n // Add a captcha\n $this->addElement('captcha', 'captcha', [\n 'label' => _tr('Are you a robot?'),\n 'required' => true,\n 'captcha' => 'figlet',\n 'captchaOptions' => [\n 'outputWidth' => 2000,\n ],\n ]);\n\n // Add the submit button\n $this->addElement('submit', 'submit', [\n 'ignore' => true,\n 'label' => _tr('Subscribe'),\n ]);\n\n // And finally add some CSRF protection\n $this->addElement('hash', 'csrf', [\n 'ignore' => true,\n 'decorators' => ['ViewHelper'],\n ]);\n }", "public function __construct($name = null)\n {\n parent::__construct('user_sign_up');\n $this->setAttribute('method', 'post');\n\t\t$this->setAttribute('id', 'formid'); \n $this->add(array(\n 'name' => 'email',\n 'attributes' => array(\n\t\t\t\t'type' => 'text',\n\t\t\t\t'id'\t=> 'email',\t\t\t\t\t\t\t\n ),\n 'options' => array(\n 'label' => 'Email',\n\t\t\t\t\n ),\n ));\n $this->add(array(\n 'name' => 'password',\n 'attributes' => array(\n 'type' => 'password',\n\t\t\t\t'id'\t=> 'password',\n ),\n 'options' => array(\n 'label' => 'Password',\n ),\n ));\n $this->add(array(\n 'name' => 'confirm_password',\n 'attributes' => array(\n 'type' => 'password',\n\t\t\t\t'id'\t=> 'confirm_password',\n ),\n 'options' => array(\n 'label' => 'Confirm Password',\n ),\n ));\n \n $this->add(array(\n 'name' => 'submit',\n 'attributes' => array(\n 'type' => 'submit',\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ),\n ));\n }", "public function init()\n {\n // form should use p4cms-ui styles.\n $this->setAttrib('class', 'p4cms-ui role-form role-add-form');\n\n // set the method for the form to POST\n $this->setMethod('post');\n\n // add a field to collect the role name.\n $this->addElement(\n 'text',\n 'id',\n array(\n 'label' => 'Name',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'validators' => array('GroupName'),\n 'size' => 30,\n 'order' => 10\n )\n );\n\n // add a field to collect users to assign this role to (doesn't include system user).\n $users = P4Cms_User::fetchAll()->invoke('getId');\n\n $options = count($users) ? array_combine($users, $users) : array();\n $this->addElement(\n 'MultiCheckbox',\n 'users',\n array(\n 'multiOptions' => $options,\n 'label' => 'Users',\n 'order' => 20\n )\n );\n\n // add the submit button\n $this->addElement(\n 'SubmitButton',\n 'save',\n array(\n 'label' => 'Save',\n 'class' => 'preferred',\n 'required' => false,\n 'ignore' => true\n )\n );\n\n // put the button in a fieldset.\n $this->addDisplayGroup(\n array('save'),\n 'buttons',\n array(\n 'class' => 'buttons',\n 'order' => 100\n )\n );\n\n }", "public function __construct($name = null)\n {\n parent::__construct($name);\n $this->setAttribute('method', 'post');\n \n $this->add(\n array(\n 'name' => 'identity',\n 'options' => array(\n 'label' => '',\n ),\n 'attributes' => array(\n 'type' => 'hidden'\n ),\n )\n );\n \n $this->add(\n array(\n 'name' => 'token',\n 'options' => array(\n 'label' => '',\n ),\n 'attributes' => array(\n 'type' => 'hidden'\n ),\n )\n );\n\n $this->add(\n array(\n 'name' => 'newCredential',\n 'options' => array(\n 'label' => 'New Password',\n ),\n 'attributes' => array(\n 'type' => 'password',\n ),\n )\n );\n\n $this->add(\n array(\n 'name' => 'newCredentialVerify',\n 'type' => 'password',\n 'options' => array(\n 'label' => 'Verify New Password',\n ),\n 'attributes' => array(\n 'type' => 'password',\n ),\n )\n );\n\n $this->add(\n array(\n 'name' => 'submit',\n 'attributes' => array(\n 'type' => 'submit',\n 'value' => 'reset password',\n 'id' => 'submitbutton',\n ),\n 'options' => array(\n 'label' => 'reset password',\n ),\n )\n );\n \n }", "public function init()\n {\n $this->setMethod('POST');\n $this->setAttrib('class','form-horizontal');\n $id = new Zend_Form_Element_Hidden('id');\n $content = new Zend_Form_Element_Text('content');\n $content -> setLabel ('Content: ');\n $content ->setAttribs(array(\n \t\t\t'placeholder'=>'content',\n \t\t\t'class'=>'form-control'\n \t\t\t));\n $post_id = new Zend_Form_Element_Text('post_id');\n $post_id->addValidator(new Zend_Validate_Digits(), true);\n $post_id -> setLabel ('post id: ');\n $post_id ->setAttribs(array(\n \t\t\t'placeholder'=>'post_id',\n \t\t\t'class'=>'form-control'\n \t\t\t));\n $submit = new Zend_Form_Element_Submit('Comment');\n $submit->setAttrib('class', 'btn btn-success');\n \n $reset = new Zend_Form_Element_Reset('Reset');\n $reset->setAttrib('class', 'btn btn-danger');\n \n $this->addElements(array($id,$content,$post_id,$submit,$reset));\n }", "public function init()\n {\n\t\t$this->setMethod('post');\n\t\t\n\t\t// Set the id of the form\n\t\t$this->setAttrib('id', 'member');\n\t\t\n\t\t$this->addElementPrefixPath('Wins_Filter', 'Wins/Filter/', 'filter');\n\t\t\n\t\t$this->addElement('text', 'name', array(\n\t\t\t'label' => 'Search by Name: ',\n\t\t\t'maxlength' => 200,\n\t\t 'required' => true,\n\t\t 'filters' => array('StringTrim', 'HTMLPurifier'),\n\t\t 'validators' => array(\n\t\t\t\tarray('validator' => 'NotEmpty', 'breakChainOnFailure' => true),\n\t\t\t\tarray('StringLength', false, 0, 200)\n\t\t\t)\n\t\t));\n\t\t\n\t\t// Set custom messages\n\t\t$this->getElement('name')->getValidator('NotEmpty')->setMessage('Name is required.');\n\t\t$this->getElement('name')->getValidator('StringLength')->setMessage('Name must be between 0-200 characters.');\n\t\t\n\t\t// Add the submit button\n\t\t$this->addElement('submit', 'search', array(\n 'ignore' => true,\n\t\t\t'label' => 'Search'\n\t\t));\n }", "public function init()\n {\n $this->setMethod(\"post\");\n $this->setAttrib(\"class\",\"form-group\");\n \n $title = new Zend_Form_Element_Text(\"name\");\n $title->setAttrib(\"class\", \"form-control\");\n $title->setLabel(\"Title: \");\n $title->setRequired();\n //$username->addValidator(new Zend_Validate_EmailAddress());\n $title->addFilter(new Zend_Filter_StripTags);\n \n \n $image = new Zend_Form_Element_Image(\"image\");\n $image->setAttrib(\"class\", \"form-control\");\n $image->setLabel(\"Choose Image\");\n \n $id = new Zend_Form_Element_Hidden(\"id\");\n // $submit = new Zend_Form_Element_Submit(\"submit\");\n $this->addElements(array($id,$title,$image));\n }", "public function __construct()\n {\n parent::__construct('user');\n $this->setAttribute('method', 'post');\n\t\t\n\t\t$this->add(array(\n\t\t 'type' => 'Zend\\Form\\Element\\Csrf',\n\t\t 'name' => 'csrf',\n\t\t 'options' => array(\n\t\t\t\t 'csrf_options' => array(\n\t\t\t\t\t\t 'timeout' => 600,\n\t\t\t\t\t\t 'salt' => 'unique'\n\t\t\t\t )\n\t\t\t)\n\t\t));\n\n\t\t$this->add(array( \n\t\t\t'type' => 'Zend\\Form\\Element\\MultiCheckbox', \n\t\t\t'name' => 'user_tag_id',\n\t\t\t'attributes' => array(\n\t\t\t\t'options' => array(),\n\t\t\t),\n\t\t\t\t\n\t\t)); \n\n\t\t \n\t\t$this->add(array(\n\t\t\t'name' => 'submit',\n\t\t\t'type' => 'Submit',\n\t\t\t'attributes' => array(\n\t\t\t\t'value' => 'Next',\n\t\t\t\t'id' => 'submitbutton',\n\t\t\t),\n\t\t));\n\t\t$this->add(array(\n\t\t\t'name' => 'reset',\n\t\t\t'type' => 'Submit',\n\t\t\t'attributes' => array(\n\t\t\t\t'value' => 'Skip',\n\t\t\t\t'id' => 'resetbutton',\n\t\t\t),\n\t\t));\n }", "public function addSubmitF ($fieldname = 'submit', $value = 'Submit', array $attributes = array ())\n\t{\n\t\tif (is_array($fieldname)) {\n\t\t\t$attributes = $fieldname;\n\t\t} else {\n\t\t\t$attributes['name'] = (string)$fieldname;\n\t\t\t$attributes['value'] = (string)$value;\n\t\t}\n\t\t$attributes['type'] = 'submit';\n\n\t\treturn html_tag('button', $this -> attr_to_string($attributes), $value);\n\t}", "public function __construct($name = null)\n {\n parent::__construct('Project');\n\n $this->setAttribute('method', 'post');\n\n $this->add(array(\n 'name' => 'name',\n 'attributes' => array(\n 'type' => 'text',\n ),\n 'options' => array(\n 'label' => 'Project Name',\n ),\n ));\n\n $this->add(array(\n 'name' => 'short_description',\n 'attributes' => array(\n 'type' => 'text',\n ),\n 'options' => array(\n 'label' => 'Short description',\n ),\n ));\n\t\t\n\t\t$this->add(array(\n 'name' => 'long_description',\n 'attributes' => array(\n 'type' => 'text',\n ),\n 'options' => array(\n 'label' => 'Long description',\n ),\n ));\n\n\t\t$this->add(array(\n 'name' => 'image',\n 'attributes' => array(\n 'type' => 'text',\n ),\n 'options' => array(\n 'label' => 'Image URL',\n ),\n ));\n\t\t\n\t\t$this->add(array(\n 'name' => 'ispublic',\n 'attributes' => array(\n 'type' => 'checkbox',\n 'hidden' => 'true',\n ),\n 'options' => array(\n 'label' => 'Public',\n ),\n ));\n\t\t\n $this->add(array(\n 'name' => 'submit',\n 'attributes' => array(\n 'value' => 'Go',\n 'type' => 'submit',\n 'id' => 'submitbutton',\n ),\n\n ));\n\n }", "public function init()\n {\n $this->add(array(\n 'name' => 'name',\n 'options' => array(\n 'label' => __('Name*'),\n ),\n 'attributes' => array(\n 'type' => 'text',\n ),\n ));\n\n $this->add(array(\n 'name' => 'title',\n 'options' => array(\n 'label' => __('Title*'),\n ),\n 'attributes' => array(\n 'type' => 'text',\n ),\n ));\n $this->add(array(\n 'name' => 'company',\n 'options' => array(\n 'label' => __('Company*'),\n ),\n 'attributes' => array(\n 'type' => 'text',\n ),\n ));\n $this->add(array(\n 'name' => 'email',\n 'options' => array(\n 'label' => __('Email*'),\n ),\n 'attributes' => array(\n\n 'type' => 'text',\n ),\n ));\n $this->add(array(\n 'name' => 'phone',\n 'options' => array(\n 'label' => __('Phone*'),\n ),\n 'attributes' => array(\n 'type' => 'text',\n ),\n ));\n $this->add(array(\n 'name' => 'submit',\n 'attributes' => array(\n 'value' => __('Freetrial'),\n ),\n 'type' => 'submit',\n ));\n }", "public function init()\n {\n $this->setMethod('POST');\n \n $login = $this->createElement('text','login',null);\n $login->setRequired(TRUE)\n ->addValidator('alnum')\n ->addValidator('stringLength',false,array(6,20))\n ->addFilter('StringToLower');\n \n $password = $this->createElement('password','password',null);\n $password->setRequired(TRUE) \n ->addValidator('alnum')\n ->addValidator('stringLength',false,array(6,20))\n ->addFilter('StringToLower');\n \n $this->addElement($login);\n $this->addElement($password);\n $this->addElement('submit','send',null);\n }", "public function addform()\n\t{\n\t\t\t$this->setMethod('get');\n\n\t\t\t//echo \"<pre>\";\n\t\t\t//print_r($_GET);\n\t\t\t//echo \"</pre>\";\n\t\t\t$this->addElement('radio', 'Status', array(\n\t\t\t\t'required' => true,\n 'separator' => '&nbsp;',\n\t\t\t\t'multiOptions' => array(\n\t\t\t\t\t'1' => IN_PROGRESS,\n\t\t\t\t\t'2' => 'Closed'\n\t\t\t\t\t\n\t\t\t\t),\n\t\t\t\t\t'separator' => '',\n\t\t\t\t'value' => '1' //key of multiOption\n\t\t\t));\n\n\t\t\n\t\t\n\t\t$this->addElement ( \n 'multiCheckbox', 'Functional_type', \n array (\n \n\t\t//'setrequired' => true,\n 'multiOptions' => array(\n '1' => 'Pre Installation',\n '2' => 'Installation',\n '3' => 'Post Installation'\n \n ),\n 'separator' => '',\n\t\t\t\t\t//'value' => '2' // select these 2 values\n )\n);\n\t\n\t\t\t\t\n\t\t\t$this->addElement('submit', 'submit', array(\n\t\t\t\t\t'ignore' => true,\n\t\t\t\t\t'label' => 'Submit',\n\t\t\t));\n\t\t\t\n\t\t\t// And finally add some CSRF protection\n\t\t\t$this->addElement('hash', 'csrf', array(\n\t\t\t\t\t'ignore' => true,\n\t\t\t));\t\n\t}", "function form_submit($text = 'Submit', $options = array()) {\n $defaults = array(\n 'wrap' => true,\n 'class' => 'submit'\n );\n\n $options = array_merge($defaults, $options);\n\n $string = '<input type=\"submit\" value=\"' . $text . '\" />';\n\n if($options['wrap']) {\n $string = form__wrap(\n $string,\n array(\n 'label' => false\n )\n );\n }\n\n return html__output($string);\n}", "function get_submit_button($text = '', $type = 'primary large', $name = 'submit', $wrap = \\true, $other_attributes = '')\n {\n }", "public function addSubmit($name, $caption)\n\t{\n\t\treturn $this[$name] = new SubmitButton($caption);\n\t}", "public function init() {\n $link = new Zend_Form_Element_Text('link');\n $link->setRequired();\n $link->setLabel('Enter New Url: ')->setAttrib('class', 'form-label');\n $link->setAttrib('class', 'form-control');\n $link->addFilter('stringTrim');\n $link->addValidator(new Zend_Validate_Db_NoRecordExists(\n array(\n 'table' => 'links',\n 'field' => 'link',\n )\n ));\n $submit = new Zend_Form_Element_Submit('Add');\n\t\t$submit->setAttrib('class', 'btn btn-primary');\n\t\t$this->setAttrib('class', 'form-horizontal');\n $this->addElements(array( $link, $submit));\n }", "static public function submit($name, $value='submit', $attributes=array()) {\n return self::input('submit', $name, $value, $attributes);\n }", "public function init() {\n $this->setMethod(\"post\");\n $this->addElement('text', 'code_categorie', array('label' => 'Code:',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'class' => 'text',\n 'validators' => array(\n array('validator' => 'StringLength', 'options' => array(0, 10))\n )));\n\n $this->addElement('text', 'libelle_categorie', array('label' => 'Libelle:',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'class' => 'text'\n ));\n\n $this->addElement('textarea', 'description_categorie', array(\n 'label' => 'Description:',\n 'required' => FALSE,\n ));\n\n $this->addElement('submit', 'submit', array(\n 'ignore' => true,\n 'label' => 'Valider',\n ));\n\n // Add the cancel button\n $this->addElement('button', 'cancel', array(\n 'ignore' => true,\n 'label' => 'Annuler',\n ));\n }", "function submit( \n\t $name, $title = null, $value = null, \n\t $required = false, \n\t $attributes = null\n\t){\n return $this->input(\n\t $name, \n\t Form::TYPE_SUBMIT,\n\t $title, \n\t $value, \n\t $required, \n\t $attributes,\n\t null,\n\t Form::DATA_STRING\n );\n\t}", "public function init()\n {\n $element = new Zend_Form_Element_Password('password');\n $element->setRenderPassword(true)\n\t\t ->addValidator('StringLength', false, array(6, 20))\n\t\t ->setRequired(true)\n\t\t ->setAttribs(array('class' => 'textField', 'size' => 31, 'maxlength' => 20));\n $this->addElement($element);\n \n $element = new Zend_Form_Element_Password('new_password');\n $element->setRenderPassword(true)\n\t\t ->addValidator('StringLength', false, array(8, 20))\n\t\t ->setRequired(true)\n\t\t ->setAttribs(array('class' => 'textField', 'size' => 31, 'maxlength' => 20));\n $this->addElement($element);\n \n $token = Zend_Controller_Front::getInstance()->getRequest()->getPost('new_password');\n $element = new Zend_Form_Element_Password('confirm_password');\n $element->setRenderPassword(true)\n\t\t ->addValidator('StringLength', false, array(8, 20))\n\t\t ->setRequired(true)\n\t\t ->setAttribs(array('class' => 'textField', 'size' => 31, 'maxlength' => 20))\n\t\t ->addValidator(new Zend_Validate_Identical(trim($token)));\n $this->addElement($element);\n \n //save button\n $this->addElement('submit', 'submit-button', array(\n \t\t'ignore' => true,\n \t\t'label' => 'Save',\n \t\t'attribs' => array('class' => 'button')\n ));\n }", "public function init()\n { \n $this->setMethod('post');\n $this->setAttrib('id', 'IngredientAddForm');\n //$this->setAttrib('name', 'IngredientAddForm');\n //$this->setName('add_ingredient_form');\n \n $this->addElement('select', 'ingredient_id', [\n 'label' => 'Ingredient:',\n 'id' => '',\n 'required' => true,\n 'filters' => ['StringTrim'],\n 'validators' => [],\n 'multiOptions'=> $this->ingredients,\n ]);\n\n $this->addElement('text', 'quantity', [\n 'label' => 'Quantity:',\n 'required' => true,\n 'validators' => [],\n ]); \n \n\n $this->addElement('submit', 'submit_add', [\n 'ignore' => true,\n 'class' => 'btn btn-md btn-primary',\n 'label' => 'Save',\n ]);\n\n $this->addElement('hash', 'csrf_add_ingredient_form', array(\n 'ignore' => true,\n ));\n }", "private function _addSubmitElement($xml)\n {\n return $xml->addChild('submit');\n }", "public function __construct()\n {\n $this->name = 'payneteasy';\n $this->tab = 'payments_gateways';\n $this->version = '1.0.0';\n $this->author = 'Artem Ponomarenko';\n $this->currencies_mode = 'radio';\n $this->submit_action = 'submit_' . $this->name;\n\n parent::__construct();\n\n $this->displayName = $this->l('PaynetEasy payment form');\n $this->description = $this->l('Accepts payments by credit cards with PaynetEasy payment form.');\n $this->confirmUninstall = $this->l('Are you sure you want to uninstall?');\n }", "function init()\n {\n $this->setMethod('post');\n $this->addAttribs(array('id' => 'frmCoupons'));\n $this->setEnctype(Zend_Form::ENCTYPE_MULTIPART);\n\n $name = new Zend_Form_Element_Text('code');\n $name->setLabel('Cod');\n $name->setAttribs(array('maxlength' => 'code', 'class' => 'validate[required,minSize[5],maxSize[10]]', 'style' => 'width:250px;'));\n $name->setRequired(true);\n $this->addElement($name);\n\n $submit = new Zend_Form_Element_Submit('submit');\n $submit->setValue('Adauga');\n $submit->setAttribs(array('class' => 'button1'));\n $submit->setIgnore(true);\n $this->addElement($submit);\n\n }", "static function renderSubmitButton($name, $value = null, $attributes = null)\n {\n if (!is_array($attributes)) $attributes = array();\n $attributes['type'] = 'submit';\n $attributes['name'] = $name;\n $attributes['value'] = $value;\n\n self::renderSingleTag('input', $attributes);\n }", "public function __construct($method=\"\")\n {\n parent::__construct();\n\n if($method==\"\") $method=\"POST\";\n $this->setMethod($method);\n $this->ajax = true;\n $this->setSubmitValue(\"Save\");\n $this->addAttribute(\"class\",\"fapi-form\");\n }", "public function init()\n {\n $this->setMethod('post');\n\n $view = Zend_Layout::getMvcInstance()->getView();\n $url = $view->url(array('controller'=>'auth','action'=>'login'));\n\n $this->setAction($url);\n\n $this->addElement('text','login_user',array('label'=>'Użytkownik','required'=>true,'filters'=>array('StringTrim')));\n\n $this->addElement('password','password_user',array('label'=>'Hasło:','required'=>true));\n\n $this->addElement('submit','submit',array('ignore'=>true,'label'=>'login'));\n }", "function voyage_mikado_comment_form_submit_button() {\n\n $comment_form_button = voyage_mikado_get_button_html(array(\n 'html_type' => 'input',\n 'type' => 'solid',\n 'text' => esc_html__('Submit', 'voyage'),\n 'input_name' => 'submit'\n ));\n\n return $comment_form_button;\n\n }", "function initialize () {\n $this->set_openingtag ( \"<INPUT TYPE=\\\"button\\\" value=\\\"\" );\n\t$this->set_closingtag ( \"\\\"[attributes]>\" );\n\t$this->set_type (\"button\");\n }", "function medigroup_mikado_comment_form_submit_button() {\n\n $comment_form_button = medigroup_mikado_get_button_html(array(\n 'html_type' => 'input',\n 'type' => 'solid',\n 'text' => esc_html__('Submit', 'medigroup'),\n 'input_name' => 'submit'\n ));\n\n return $comment_form_button;\n\n }", "function buildForm()\r\n {\r\n $this->buildTabs();\r\n // tab caption\r\n $this->addElement('header', null,\r\n 'Progress2 Generator - Control Panel: run demo');\r\n\r\n $this->addElement('static', 'progressBar',\r\n 'Your progress meter looks like:');\r\n\r\n // Buttons of the wizard to do the job\r\n $this->buildButtons(array('reset','process'));\r\n }", "public function addButtonSubmit ($name = 'submit', $value = 'Submit', $id = NULL, $class = NULL, $attributes = array ())\n\t{\n\t\t$name = (empty($name) ? '' : ' name=\"' . $name . '\"');\n\t\t$value = (empty($value) ? '' : $value);\n\t\t$id = (empty($id) ? '' : ' id=\"' . $id . '\"');\n\t\t$class = (empty($class) ? '' : ' class=\"' . $class . '\"');\n\n\t\t$html = \"<button type=\\\"submit\\\"\" . $name . $id . $class . \"\";\n\t\tif ($attributes) {\n\t\t\t$html .= $this -> addAttributes($attributes);\n\t\t}\n\t\t$html .= \">\" . $value . \"</button>\";\n\n\t\treturn $html;\n\t}", "public function __construct($name = null)\n {\n parent::__construct('survey');\n\n $this->add([\n 'name' => 'idsurvey',\n 'type' => 'hidden',\n ]);\n\n $this->add([\n 'name' => 'iduser',\n 'type' => 'hidden',\n ]);\n\n $this->add([\n 'name' => 'idquestion',\n 'type' => 'hidden',\n ]);\n\n $this->add([\n 'name' => 'idanswer',\n 'type' => 'hidden',\n ]);\n\n $this->add([\n 'name' => 'title',\n 'type' => 'text',\n 'options' => [\n 'label' => 'Title',\n ],\n ]);\n\n $this->add([\n 'name' => 'description',\n 'type' => 'text',\n 'options' => [\n 'label' => 'Description',\n ],\n ]);\n $this->add([\n 'name' => 'status',\n 'type' => 'hidden',\n ]);\n\n $this->add([\n 'name' => 'date',\n 'type' => 'hidden'\n ]);\n\n $this->add([\n 'name' => 'submit',\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n\n $this->add([\n 'name' => 'submitq',\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n\n $this->add([\n 'name' => 'submita',\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n\n\n $this->add([\n 'name' => 'submitc',\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n\n $this->add([\n 'name' => 'submituq', //update question\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n\n $this->add([\n 'name' => 'submitua',\n 'type' => 'submit',\n 'attributes' => [\n 'value' => 'Go',\n 'id' => 'submitbutton',\n ],\n ]);\n $this->add([\n 'name' => 'text',\n 'type' => 'text',\n 'options' => [\n 'label' => 'Question',\n ],\n ]);\n\n $this->add([\n 'name' => 'type',\n 'type' => 'text',\n 'options' => [\n 'label' => 'Type',\n 'value_options' => array(\n '0' => 'Open',\n '1' => 'Multiple choice',\n '2' => 'Single Choice',\n ),\n ],\n ]);\n\n $this->add([\n 'name' => 'texta',\n 'type' => 'text',\n 'options' => [\n 'label' => 'Answer',\n ],\n ]);\n }", "public function init()\n {\n \n $this->setAction('/item/create');\n \n $this->name = new Zend_Form_Element_Text('name');\n $this->name->setLabel('item name')\n ->setValue($this->test)\n ->setRequired(true);\n \n $this->description = new Zend_Form_Element_Textarea('description');\n $this->description->setLabel('item description')\n ->setRequired(true);\n \n $this->id = new Zend_Form_Element_Hidden('id');\n $this->id->setValue($this->itemId);\n \n $this->submit = new Zend_Form_Element_Submit('create_item');\n \n $this->addElements(array($this->name, $this->description, $this->id));\n $this->setDecorators(array(\n 'FormElements',\n array('HtmlTag', array('tag'=>'dl')),\n 'Form'\n ));\n \n }", "public function addBtnSubmit($text){\n parent::_addBtn(ExtyButton::BUTTON_FILTER_SUBMIT, $text);\n return $this;\n }", "public function init() {\n $this->setMethod('post');\n\n // Add agent name element\n $this->addElement(\n 'span',\n 'agent_name',\n array(\n 'label' \t=> 'Name of letting agency',\n 'required' \t=> false,\n 'readonly' \t=> true,\n 'filters' \t=> array('StringTrim'),\n 'class' => 'formvalue',\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array (\n 'isEmpty' => 'Please enter letting agent name',\n 'notEmptyInvalid' => 'Please enter letting agent name'\n )\n )\n )\n )\n )\n );\n\n // Add agent scheme number\n $this->addElement(\n 'span',\n 'agent_schemenumber',\n array(\n 'label' \t=> 'Agent scheme number',\n 'required' \t=> false,\n 'readonly' \t=> true,\n 'filters' \t=> array('StringTrim'),\n 'class' => 'formvalue',\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array (\n 'isEmpty' => 'Please enter agent scheme number',\n 'notEmptyInvalid' => 'Please enter agent scheme number'\n )\n )\n )\n )\n )\n );\n\n // Add agent contact name element\n $this->addElement(\n 'text',\n 'agent_contact_name',\n array(\n 'label' => 'Contact name',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'maxlength' => '100',\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your contact name',\n 'notEmptyInvalid' => 'Please enter your contact name'\n )\n )\n )\n )\n )\n );\n\n // Add the landlord find address button\n $this->addElement('submit', 'landlords_address_lookup', array(\n 'ignore' => true,\n 'label' => 'Find address',\n 'class' => 'button',\n 'onclick' => 'getPropertiesByPostcode($(\\'#landlord_postcode\\').val(), \\'landlord_postcode\\', \\'landlord_address\\',\\'no_landlord_address_selector\\'); return false;'\n ));\n\n\n // Add agent postcode\n $this->addElement('text', 'agent_postcode', array(\n 'label' => 'Postcode',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'maxlength' => '10',\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your office postcode',\n 'notEmptyInvalid' => 'Please enter your office postcode'\n )\n )\n ),\n array(\n 'regex',\n true,\n array(\n 'pattern' => '/^[0-9a-z]{2,}\\ ?[0-9a-z]{2,}$/i',\n 'messages' => 'Postcode must be in postcode format'\n )\n )\n ),\n )\n );\n\n Application_Core_FormUtils::createManualAddressInput(\n $this,\n 'agent_housename',\n 'agent_street',\n 'agent_town',\n 'agent_city',\n false,\n '',\n true\n );\n\n // Add agent phone number element\n $this->addElement('text', 'agent_telephone', array(\n 'label' => 'Telephone number',\n 'required' => true,\n 'class' => 'input-pos-float',\n 'validators' => array(\n \t'TelephoneNumber',\n array(\n 'NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your telephone number'\n )\n )\n )\n )\n ));\n\n // Add agent e-mail element\n $this->addElement('text', 'agent_email', array(\n 'label' => 'Email address',\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'maxlength' => '100',\n 'validators' => array(\n array ('NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your email address'\n )\n ))\n )\n ));\n\n $emailValidator = new Zend_Validate_EmailAddress();\n $emailValidator->setMessages(array(\n Zend_Validate_EmailAddress::INVALID_HOSTNAME => \"Domain name invalid in email address\",\n Zend_Validate_EmailAddress::INVALID_FORMAT => \"Invalid email address\"\n ));\n $this->getElement('agent_email')->addValidator($emailValidator);\n\n // Add agents directly authorised by FCA\n $this->addElement('span', 'agent_dir_by_fca', array(\n 'label' => 'Directly Authorised by the Financial Conduct Authority',\n 'filters' => array('StringTrim'),\n 'class' => 'formvalue'\n ));\n\n $this->addElement('span', 'agent_ar_by_barbon', array(\n 'label' => 'Appointed Representative for Barbon Insurance Group Ltd',\n 'filters' => array('StringTrim'),\n 'class' => 'formvalue'\n ));\n\n // Landlord1\n $subHeaderHtml = '<span style=\"font-size:smaller;\">Please provide title, first name and surname</span>';\n $this->addElement('text', 'landlord1_name', array(\n 'label' => \"Full name<br>$subHeaderHtml\",\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'maxlength' => '80',\n 'validators' => array(\n array ('NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please landlords name'\n )\n ))\n )\n ));\n\n // landlor company Name\n $this->addElement('text', 'landlord_company_name', array(\n 'label' => 'Company name',\n 'required' => false,\n 'filters' => array('StringTrim'),\n 'maxlength' => '100',\n ));\n\n // Add Landlord postcode\n $subHeaderHtml = '<span style=\"font-size:smaller;\">Landlords residential address (This cannot be a C/O address due to the requirements for Legal Proceedings)</span>';\n $this->addElement('text', 'landlord_postcode', array(\n 'label' => \"Landlord Home Address Postcode<br>$subHeaderHtml\",\n 'required' => true,\n 'filters' => array('StringTrim'),\n 'maxlength' => '10',\n 'validators' => array(\n array(\n 'NotEmpty',\n true,\n array(\n 'messages' => array(\n 'isEmpty' => 'Please enter Landlord\\'s postcode',\n 'notEmptyInvalid' => 'Please enter Landlord\\'s postcode'\n )\n )\n ), array(\n 'regex',\n true,\n array(\n 'pattern' => '/^[0-9a-z]{2,}\\ ?[0-9a-z]{2,}$/i',\n 'messages' => 'Postcode must be in postcode format'\n )\n )\n ),\n ));\n\n Application_Core_FormUtils::createManualAddressInput(\n $this,\n 'landlord_housename',\n 'landlord_street',\n 'landlord_town',\n 'landlord_city',\n false\n );\n\n $this->addElement('select', 'landlord_address', array(\n 'required' => false,\n 'label' => '',\n 'filters' => array('StringTrim'),\n 'class' => 'postcode_address',\n 'multiOptions' => array('' => 'Please select'),\n 'validators' => array(\n array (\n 'NotEmpty',\n true,\n array(\n 'messages' => array(\n 'isEmpty' => 'Please select landlord address',\n 'notEmptyInvalid' => 'Please select landlord address'\n )\n )\n )\n )\n ));\n\n // Remove 'nnn not found in haystack' error\n $this->getElement('landlord_address')->setRegisterInArrayValidator(false);\n\n // Add hidden element for postcode\n $this->addElement('hidden', 'landlord_address_id', array(\n 'value' => 1, 'class' => 'noborder'\n ));\n\n\n // Add agent phone number element\n $this->addElement('text', 'landlord_telephone', array(\n 'label' => 'Telephone number',\n 'required' => false,\n 'class' => 'input-pos-float',\n 'validators' => array(\n array('NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter landlord phone number'\n )\n )),\n array('regex', true, array(\n 'pattern' => $this->PHONE_RGX,\n 'messages' => 'Not a valid phone number'\n ))\n )\n ));\n\n // Add Landlord e-mail element\n $this->addElement('text', 'landlord_email', array(\n 'label' => 'Email address',\n 'required' => false,\n 'filters' => array('StringTrim'),\n 'maxlength' => '100',\n 'validators' => array(\n array ('NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter landlord email address'\n )\n ))\n )\n ));\n\n $emailValidator = new Zend_Validate_EmailAddress();\n $emailValidator->setMessages(\n array(\n Zend_Validate_EmailAddress::INVALID_HOSTNAME => \"Domain name invalid in email address\",\n Zend_Validate_EmailAddress::INVALID_FORMAT => \"Invalid email address\"\n )\n );\n\n $this->getElement('landlord_email')->addValidator($emailValidator);\n\n // Set decorators\n $this->clearDecorators();\n $this->setDecorators(array ('Form'));\n $this->setElementDecorators(array ('ViewHelper', 'Label', 'Errors'));\n\n // Add the next button\n $this->addElement('submit', 'next', array(\n 'ignore' => true,\n 'label' => 'Continue to Step 2',\n 'onclick' => 'window.location=\"step2\"'\n ));\n\n // Add the save and exit button\n $this->addElement('button', 'save', array(\n 'ignore' => true, 'label' => 'Save & Exit'\n ));\n\n // Landlord Address decorators\n $landlordAddressLookUp = $this->getElement('landlords_address_lookup');\n $landlordAddressLookUp->clearDecorators();\n $landlordAddressLookUp->setDecorators(array ('ViewHelper'));\n\n // Nav decorators\n $next = $this->getElement('next');\n $next->clearDecorators();\n $next->setDecorators(array ('ViewHelper'));\n\n $save_and_exit = $this->getElement('save');\n $save_and_exit->clearDecorators();\n $save_and_exit->setDecorators(array ('ViewHelper'));\n\n $this->setDecorators(\n array(\n array(\n 'ViewScript',\n array(\n 'viewScript' => 'rentguaranteeclaims/subforms/you-and-landlords.phtml'\n )\n )\n )\n );\n\n //Allow HTML to be inserted into the labels.\n $this->getElement('landlord1_name')->getDecorator('Label')->setOption('escape', false);\n $this->getElement('landlord_postcode')->getDecorator('Label')->setOption('escape', false);\n }", "public function submitText(string $submitText)\n {\n /** @var Button $btn */\n $btn = $this->getButton($this->bottomLocation, $this->submitButtonKey);\n $btn->text($submitText);\n\n return $this;\n }", "public function init()\n {\n $this->setAction('/content/process/tool');\n\n $this->setMethod('post');\n\n $this->generateFormElements();\n\n $this->addElementsToForm('horizontal_rule', 'Horizontal rule', $this->elements);\n\n $this->addDefaultElementDecorators();\n\n $this->addCustomElementDecorators();\n }", "function set_submit_multipart()\n\t{\n\t\t$this->_submit_type = \"multipart/form-data\";\n\t}", "public function getSubmitButton()\n {\n return $this->submitButton;\n }", "public function init()\n {\n $this->addElement(\n 'text','USUARIO_RUT', array(\n 'label'=>'Rut de Usuario',\n 'required'=>true\n )\n );\n \n $this->addElement(\n 'password', 'USUARIO_SESSION', array(\n 'label'=>'Sesión',\n 'required'=>true\n )\n );\n \n $this->addElement(\n 'submit', 'Ingresar', array(\n 'id'=>'send',\n )\n ); \n }", "function parse_submit()\n\t\t{\n\t\t\t//inside the select box for submits\n\t\t\t$this->t->set_block('run_activity', 'block_submit_options', 'submit_options');\n\t\t\t//the select submit box\n\t\t\t$this->t->set_block('run_activity', 'block_submit_select_area', 'submit_select_area');\n\t\t\t//submit as buttons\n\t\t\t$this->t->set_block('run_activity', 'block_submit_buttons_area', 'submit_buttons_area');\n\t\t\t//the whole zone\n\t\t\t$this->t->set_block('run_activity', 'block_submit_zone', 'submit_zone');\n\t\t\t\n\t\t\tif (!($this->conf['use_automatic_parsing'])) \n\t\t\t{\n\t\t\t\t// the user decided he'll do it his own way\n\t\t\t\t//empty the whole zone\n\t\t\t\t$this->t->set_var(array('submit_zone' => ''));\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$buttons = '';\n\t\t\t\tif (count($this->submit_array)==0)\n\t\t\t\t{\n\t\t\t\t\t//the user didn't give us any instruction\n\t\t\t\t\t// we draw a simple submit button\n\t\t\t\t\t$this->t->set_var(array('submit_area',''));\n\t\t\t\t\t$buttons .= '<td class=\"wf_submit_buttons_button\">';\n\t\t\t\t\t$buttons .= '<input name=\"wf_submit\" type=\"submit\" value=\"'.lang('Submit').'\"/>';\n\t\t\t\t\t$buttons .= '</td>';\n\t\t\t\t\t//set the buttons\n\t\t\t\t\t$this->t->set_var(array('submit_buttons' => $buttons));\n\t\t\t\t\t// hide the select box zone\n\t\t\t\t\t$this->t->set_var(array('submit_select_area'=> ''));\n\t\t\t\t\t//show the buttons zone\n\t\t\t\t\t$this->t->parse('submit_buttons_area', 'block_submit_buttons_area', true);\n\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t//now we have another user choice. he can choose multiple submit buttons\n\t\t\t\t\t//or a select with only one submit\n\t\t\t\t\tif ( ($this->conf['show_multiple_submit_as_select']) && (count($this->submit_array) > 1) )\n\t\t\t\t\t{\n\t\t\t\t\t\t//multiple submits in a select box\n\t\t\t\t\t\t//handling the select box \n\t\t\t\t\t\tforeach ($this->submit_array as $submit_button_name => $submit_button_value)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$this->t->set_var(array(\n\t\t\t\t\t\t\t\t'submit_option_value'\t=> $submit_button_value,\n\t\t\t\t\t\t\t\t'submit_option_name'\t=> $submit_button_name,\n\t\t\t\t\t\t\t));\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t//show the select box\n\t\t\t\t\t\t\t$this->t->parse('submit_options','block_submit_options',true);\n\t\t\t\t\t\t}\t\t\t\t\t\n\t\t\t\t\t\t//we need at least one submit button\n\t\t\t\t\t\t$this->t->set_var(array(\n\t\t\t\t\t\t\t'submit_button_name'\t=> 'wf_submit',\n\t\t\t\t\t\t\t'submit_button_value'\t=> lang('submit'),\n\t\t\t\t\t\t));\n\t\t\t\t\t\t// hide the multiple buttons zone\n\t\t\t\t\t\t$this->t->set_var(array('submit_buttons_area'=> ''));\n\t\t\t\t\t\t//show the select box zone\n\t\t\t\t\t\t$this->t->parse('submit_select_area', 'block_submit_select_area', true);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t//multiple buttons with no select box or just one\n\t\t\t\t\t\t//draw input button for each entry\n\t\t\t\t\t\tforeach ($this->submit_array as $submit_button_name => $submit_button_value)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t//now we can have some special options, like jscode\n\t\t\t\t\t\t\tif (is_array($submit_button_value))\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$button_val = $submit_button_value['label'];\n\t\t\t\t\t\t\t\t$confirm = $submit_button_value['confirm'];\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$button_val = $submit_button_value;\n\t\t\t\t\t\t\t\t$confirm = false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t \t$buttons .= '<td class=\"wf_submit_buttons_button\">';\n\t\t\t\t\t\t\t$buttons .= '<input name=\"'.$submit_button_name.'\" type=\"submit\" value=\"'.$button_val.'\" ';\n\t\t\t\t\t\t\tif (!!($confirm))\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$buttons .= 'onClick=\"return confirmSubmit(\\''.$submit_button_name.'\\',\\''.$confirm.'\\')\"/>';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$buttons .= '/>';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t$buttons .= '</td>';\n\t\t\t\t\t\t}\n\t\t\t\t\t\t//set the buttons\n\t\t\t\t\t\t$this->t->set_var(array('submit_buttons' => $buttons));\n\t\t\t\t\t\t// hide the select box zone\n\t\t\t\t\t\t$this->t->set_var(array('submit_select_area'=> ''));\n\t\t\t\t\t\t//show the buttons zone\n\t\t\t\t\t\t$this->t->parse('submit_buttons_area', 'block_submit_buttons_area', true);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t//show the whole submit zone\n\t\t\t\t$this->t->parse('submit_zone', 'block_submit_zone', true);\n\t\t\t}\n\t\t}", "public function init() {\n\n \t\n $this->addElement('text', 'fb_rent', array(\n 'label' => 'Monthly Rent',\n 'required' => false,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array(\n 'NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your username',\n 'notEmptyInvalid' => 'Please enter your username'\n )\n )\n )\n )\n ));\n\n $this->addElement('text', 'fb_tenant_income', array(\n 'label' => 'Tenant Income/Year',\n 'required' => false,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array(\n 'NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your username',\n 'notEmptyInvalid' => 'Please enter your username'\n )\n )\n )\n )\n ));\n\n $this->addElement('text', 'fb_guarantor_income', array(\n 'label' => 'Guarantor Income/Year',\n 'required' => false,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array(\n 'NotEmpty', true, array(\n 'messages' => array(\n 'isEmpty' => 'Please enter your username',\n 'notEmptyInvalid' => 'Please enter your username'\n )\n )\n )\n )\n )); \n \n\n $this->addElement('button','calculate', array(\n \t'label'\t\t=> 'Calculate'\n ));\n \n // Remove the label from the submit button\n $element = $this->getElement('calculate');\n $element->setAttrib('onclick', 'Calculate();');\n $element->removeDecorator('label');\n \n \t// Set up the element decorators\n $this->setElementDecorators(array (\n 'ViewHelper',\n 'Label',\n 'Errors',\n array('HtmlTag', array('tag' => 'div')),\n ));\n }", "private function logIn()\n {\n $element = new Submit('login');\n $element->setAttribute('class', 'btn btn-info btn-lg btn-block text-uppercase waves-effect waves-light');\n $element->setUserOption('mainClass', 'form-group text-center m-t-20');\n $this->add($element);\n }", "function submit()\n {\n }", "function submit()\n {\n }", "function submit()\n {\n }", "protected function inputAttributes()\n {\n $this->input_attributes['name'] = $this->name;\n $this->input_attributes['type'] = 'submit';\n $this->input_attributes['value'] = $this->params['title'];\n }", "public function init()\n {\n $this->setMethod('post');\n \n // Add the id hidden element\n// $element = new Zend_Form_Element_Hidden('id');\n// $elements[] = $element;\n \n // Add the typing_speed element\n $element = new Zend_Form_Element_Text('typing_speed');\n $element->setRequired(true)\n ->addFilter('StripTags')\n ->addFilter('StringTrim')\n ->addValidator('StringLength', false, array(0, 255));\n $elements[] = $element;\n\n// // Add the username element\n// $element = new Zend_Form_Element_Text('username');\n// $element->setRequired(true)\n// ->addFilter('StripTags')\n// ->addFilter('StringTrim')\n// ->addValidator('StringLength', false, array(0, 255));\n// $elements[] = $element;\n\n// \t// Add an email element\n// $element = new Zend_Form_Element_Text('email');\n// $element->setLabel('email')\n// \t->setRequired(true)\n// \t->addFilter('StripTags')\n// \t->addFilter('StringTrim')\n// \t->addValidator('StringLength', true, array(0, 255))\n// \t->addValidator('EmailAddress');\n// $elements[] = $element;\n \n // Add a grade element\n $typistMapper = new Application_Model_TypistMapper();\n $typistGrades = $typistMapper->fetchAllGradesForDropdown();\n \n $grades = new Zend_Form_Element_Select('grade_id');\n $grades->setRequired(true)\n \t->addMultiOptions($typistGrades);\n $elements[] = $grades;\n \n foreach ($elements as $element) {\n \t$element->removeDecorator('label')\n \t->removeDecorator('htmlTag')\n \t->removeDecorator('description');\n \t\n \t\t$element->setAttrib('class', 'text ui-widget-content ui-corner-all');\n }\n \n $this->addElements($elements);\n \n }", "public function submitButton($name, $value = '')\n {\n $button = new SubmitButton($this, $value);\n $button->setName($name);\n return $button;\n }", "public function init(){\r\n\r\n $this->setMethod('post');\r\n $this->setAction(\"/auth/login/\");\r\n\r\n $usernameElement = new Zend_Form_Element_Text('username');\r\n $usernameElement->setLabel(\"Benutzername\");\r\n $usernameElement->addValidator('regex', false, array('/^[a-z0-9]/i'));\r\n $usernameElement->addValidator('stringLength', false, array(2, 64));\r\n $usernameElement->setAttrib('maxLength', 64);\r\n $usernameElement->setRequired(true);\r\n\r\n $passwordElement = new Zend_Form_Element_Password('password');\r\n $passwordElement->setLabel(\"Passwort\");\r\n $passwordElement->addValidator('regex', false, array('/^[a-z0-9]/i'));\r\n $passwordElement->addValidator('stringLength', false, array(8, 32));\r\n $passwordElement->setAttrib('maxLength', 32);\r\n $passwordElement->setRequired(true);\r\n\r\n $submitElement = new Zend_Form_Element_Submit('submit');\r\n $submitElement->setLabel('Anmelden');\r\n $submitElement->setIgnore(true);\r\n $submitElement->setAttrib('class', 'submit');\r\n $submitElement->removeDecorator('DtDdWrapper');\r\n\r\n $this->addElements(array(\r\n $usernameElement\r\n , $passwordElement\r\n ));\r\n\r\n $this->addDisplayGroup(array(\r\n 'username'\r\n , 'password'\r\n )\r\n , 'credentialGroup'\r\n , array('legend'=>'Zugangsdaten')\r\n );\r\n\r\n $this->addElements(array(\r\n $submitElement\r\n ));\r\n }", "public function addSubmitButton(Zend_Form_SubForm $subForm)\r\n {\r\n $subForm->addElement(new Zend_Form_Element_Submit('save',array('label' => 'Save and continue',\r\n 'required' => false,\r\n 'ignore' => true,\r\n )\r\n ));\r\n return $this;\r\n }", "public function init() {\r\n $this->setName(__CLASS__);\r\n $this->setMethod('post');\r\n\r\n $this->addElement('text', 'code', array(\r\n 'filters' => array('StringTrim'),\r\n 'validators' => array(\r\n array('StringLength', false, array(0, 150)),\r\n ),\r\n 'required' => true,\r\n 'label' => 'code',\r\n 'value' => $_GET['code'] ? $_GET['code'] : ''\r\n ));\r\n $this->addElement('text', 'client_id', array(\r\n 'filters' => array('StringTrim'),\r\n 'validators' => array(\r\n array('StringLength', false, array(0, 50)),\r\n ),\r\n 'required' => true,\r\n 'label' => 'Client ID:',\r\n 'value' => 'hungtd'\r\n ));\r\n $this->addElement('text', 'client_secret', array(\r\n 'filters' => array('StringTrim'),\r\n 'validators' => array(\r\n array('StringLength', false, array(0, 50)),\r\n ),\r\n 'required' => true,\r\n 'label' => 'Client Secret:',\r\n 'value' => '123456'\r\n ));\r\n \r\n\r\n $this->addElement('text', 'redirect_uri', array(\r\n 'filters' => array('StringTrim'),\r\n 'validators' => array(\r\n array('StringLength', false, array(0, 1050)),\r\n ),\r\n 'required' => true,\r\n 'label' => 'redirect uri:',\r\n ));\r\n\r\n $this->addElement('text', 'grant_type', array(\r\n 'filters' => array('StringTrim'),\r\n 'validators' => array(\r\n array('StringLength', false, array(0, 20000)),\r\n ),\r\n 'required' => true,\r\n 'label' => 'grant_type:',\r\n 'value' => 'authorization_code'\r\n ));\r\n\r\n $this->addElement('submit', 'loginButton', array(\r\n 'required' => false,\r\n 'ignore' => true,\r\n 'label' => 'Get Access Token',\r\n ));\r\n\r\n //$this->addElement(new Zend_Form_Element_Hash('hash'));\r\n }", "public function init() {\n $this->setMethod ( 'post' );\n\n // add an name element\n $this->addElement ( 'text', 'name', array ('label' => 'Your name:', 'required' => true, 'filters' => array ( 'StringTrim' ), 'validators' => array ('alnum') ) );\n \n //add surname\n $this->addElement ( 'text', 'surname', array ('label' => 'Your surname:', 'filters' => array ( 'StringTrim' ), 'validators' => array ('alnum', array ('regex', false, array ('/^[a-z]/i' ) ), array ('StringLength', false, array (3, 20 ) ) ), 'required' => true ) );\n\n //add company\n $this->addElement ( 'text', 'company', array ('label' => 'Your company:', 'filters' => array ( 'StringTrim' ), 'validators' => array ( array ('StringLength', false, array (2, 120 ) ) ), 'required' => false ) );\n\n // add an email element\n $this->addElement ( 'text', 'email', array ('label' => 'Your email:', 'required' => true, 'filters' => array ('StringTrim' ), 'validators' => array ('EmailAddress' ) ) );\n\n //add phonenumber\n $this->addElement ( 'text', 'phonenumber', array ('label' => 'Your phone number:', 'filters' => array ('StringTrim', 'StringToLower' ), 'validators' => array ('alnum', array ('StringLength', false, array (9, 30 ) ) ), 'required' => false ) );\n\n //add link reported\n $this->addElement ( 'text', 'linkreported', array ('label' => 'Please, insert the link to be reviewed:', 'filters' => array ('StringTrim', 'StringToLower' ), 'validators' => array ( array ('StringLength', false, array (9, 256 ) ) ), 'required' => true ) );\n\n //add url reported\n $this->addElement ( 'text', 'urlreported', array ('label' => 'Please, insert the url where this content appears:', 'filters' => array ('StringTrim', 'StringToLower' ), 'validators' => array ( array ('StringLength', false, array (9, 256 ) ) ), 'required' => true ) );\n\n //add reason\n $this->addElement ( 'text', 'reason', array ('label' => 'Reason of your complaint:', 'filters' => array ( 'StringTrim' ), 'validators' => array ( array ('StringLength', false, array (3, 100 ) ) ), 'required' => true ) );\n\n\n $this->addElement ( 'textarea', 'message', \n array ('label' => 'Your message:', 'validators' => array (array ('StringLength', false, array (20, 2000 ) ) ), 'required' => true, 'rows' => 4,'cols' => 60 )\n\n );\n\n $this->addElement ( 'captcha', 'captcha', array ('label' => 'Please, insert the 5 characters shown:', 'required' => true,\n 'captcha' => array ('captcha' => 'Image', 'wordLen' => 5, 'height' => 50, 'width' => 160, 'gcfreq' => 50, 'timeout' => 300,\n 'font' => APPLICATION_PATH . '/configs/antigonimed.ttf',\n 'imgdir' => FOOFIND_PATH . '/public/images/captcha' ) ) );\n\n\n $checkboxDecorator = array(\n 'ViewHelper',\n 'Errors',\n array(array('data' => 'HtmlTag'), array('tag' => 'span', 'class' => 'element')),\n array('Label', array('tag' => 'dt'),\n array(array('row' => 'HtmlTag'), array('tag' => 'span')),\n ));\n\n $this->addElement('checkbox', 'agree', array(\n 'decorators' => $checkboxDecorator,\n 'required' => true,\n 'checked' =>false\n ));\n\n\n // add the submit button\n $this->addElement ( 'submit', 'submit', array (\n 'label' => 'Send',\n 'class' => 'large magenta awesome') );\n }", "public function __construct($name = null)\n {\n parent::__construct('cms');\n $this->setAttribute('method', 'post');\n\t\t$this->setAttribute('class', 'form-horizontal');\n\t\t\n $this->add(array(\n 'name' => 'password',\n 'attributes' => array(\n\t\t\t\t'autofocus' => '',\n 'type' => 'password',\n\t\t\t\t'id'\t=> 'password',\n\t\t\t\t'class' => 'input-large',\n\t\t\t\t'maxlength'\t=> '255',\n ),\n 'options' => array(\n ),\n ));\n\t\t$this->add(array(\n 'name' => 'newpassword',\n 'attributes' => array(\n 'type' => 'password',\n\t\t\t\t'id'\t=> 'newpassword',\n\t\t\t\t'class' => 'input-large',\n\t\t\t\t'maxlength'\t=> '255',\n ),\n 'options' => array(\n ),\n ));\n\t\t$this->add(array(\n 'name' => 'confirmpassword',\n 'attributes' => array(\n 'type' => 'password',\n\t\t\t\t'id'\t=> 'confirmpassword',\n\t\t\t\t'class' => 'input-large',\n\t\t\t\t'maxlength'\t=> '255',\n ),\n 'options' => array(\n ),\n ));\n $this->add(array(\n 'name' => 'submit',\n 'attributes' => array(\n 'type' => 'submit',\n 'value' => 'Save changes',\n\t\t\t\t'class'\t=> 'btn btn-primary',\n ),\n ));\n\t\t$this->add(array(\n 'name' => 'cancel',\n 'attributes' => array(\n 'type' => 'reset',\n 'value' => 'Cancel',\n\t\t\t\t'class'\t=> 'btn',\n ),\n ));\n }", "public function __toString() {\n if ( ! isset( $this['value'] ) ) {\n $this['value'] = 'Save';\n }\n\n return\n \"<div class=\\\"form-field field-type-submit\\\">\n <input type=\\\"submit\\\" value=\\\"{$this['value']}\\\" />\n </div>\";\n }", "public function init()\n {\n $this->setMethod('post');\n $this->addElement('text', 'model', array('label' => 'Model'));\n $this->addElement('text', 'unique', array('label' => 'Numer zamówienia'));\n $this->addElement('text', 'ebay_id', array('label' => 'Numer ebay'));\n $this->addElement('text', 'invoice_id', array('label' => 'Numer faktury vat'));\n $this->addElement('text', 'color', array('label' => 'Kolor'));\n $this->addElement('text', 'frame', array('label' => 'Stelaż'));\n $this->addElement('radio', 'is_seat', array('label' => 'Fotelik', 'multiOptions' => array('0' => 'Nie', '1' => 'Tak')));\n $this->addElement('select', 'status', array('label' => 'Status zamówienia', 'multiOptions' => array(\n 'paid' => 'Opłacone',\n 'unpaid' => 'Niepłacone',\n 'sent' => 'Wysłane',\n 'other' => 'Oczekuje'\n )));\n $this->addElement('text', 'wheels', array('label' => 'Koła'));\n $this->addElement('textarea', 'bonus', array('label' => 'Dodatki', 'cols' => 50, 'rows' => 3));\n $this->addElement('textarea', 'client', array('label' => 'Klient', 'cols' => 50, 'rows' => 3));\n $this->addElement('text', 'date_of_payment', array('label' => 'Data opłacenia', 'value' => null));\n $this->addElement('text', 'date_of_receipt', array('label' => 'Data odbioru', 'value' => null));\n $this->addElement('submit', 'submit', array('label' => 'Zapisz'));\n }", "public function init()\n {\n $this->setMethod('post');\n\n\n $name = new Zend_Form_Element_Text('name');\n $name->setLabel('Your Name: ');\n $name->setAttrib('class', 'form-control');\n /**$email->setAttribs(Array(\n 'placeholder'=>'Ex : [email protected]',\n 'class'=>'form-control'\n ));**/\n //$email->addValidator( 'Db_NoRecordExists', true, array(\n // 'table' => 'clients',\n //'field' => 'email',\n //'messages' => array( 'recordFound' => 'Email already taken' )));\n\n $pswd = new Zend_Form_Element_Password('password');\n $pswd->setLabel('Password:');\n $pswd->setAttrib('class', 'form-control');\n\n\n $submit = new Zend_Form_Element_Submit('login');\n $submit->setValue('Submit');\n $submit->setAttrib('class', 'btn-primary');\n\n $this->addElements(array(\n\n $name,\n $pswd,\n $submit,\n\n\n\n ));\n\n\n\n }", "public function init()\n {\n // set class to identify as p4cms-ui component\n $this->setAttrib('class', 'p4cms-ui')\n ->setAttrib('dojoType', 'p4cms.ui.grid.Form');\n\n // turn off CSRF protection - its not useful here (form data are\n // used for filtering the data grid and may be exposed in the URL)\n $this->setCsrfProtection(false);\n\n // call parent to publish the form.\n parent::init();\n }", "function form_element_submit( $name, $buttonlabel )\n{\n\treturn sprintf(\"<input type=\\\"submit\\\" name=\\\"%s\\\" value=\\\"%s\\\" />\\n\", $name, $buttonlabel );\n}" ]
[ "0.7112573", "0.70804244", "0.6981652", "0.6817078", "0.6755535", "0.6747844", "0.67435783", "0.6665439", "0.65932465", "0.645821", "0.63826233", "0.63504875", "0.6340486", "0.6287899", "0.6285334", "0.62578243", "0.62412363", "0.6203507", "0.61939335", "0.61875147", "0.61692035", "0.61621916", "0.6146414", "0.6141681", "0.61413205", "0.6099809", "0.6096636", "0.6069296", "0.60678744", "0.6052788", "0.6037915", "0.60347855", "0.6006655", "0.59621674", "0.5953325", "0.59455335", "0.59420437", "0.5936162", "0.5929624", "0.5913302", "0.5886765", "0.5883261", "0.58710915", "0.5869192", "0.5866986", "0.5857894", "0.58278453", "0.5825042", "0.58110607", "0.5802296", "0.5795858", "0.5782131", "0.5764857", "0.5757183", "0.5752904", "0.5747348", "0.574641", "0.574445", "0.5733296", "0.5730871", "0.57125205", "0.57098156", "0.57083666", "0.5706588", "0.56958103", "0.5692952", "0.56887734", "0.5679751", "0.5670355", "0.56674683", "0.56630045", "0.5654534", "0.56491995", "0.564766", "0.5646768", "0.5633613", "0.5617953", "0.56111777", "0.5603595", "0.560149", "0.5599716", "0.5578531", "0.5576372", "0.55587506", "0.5547214", "0.55424136", "0.55424136", "0.55424136", "0.55409676", "0.5540402", "0.5533039", "0.5528105", "0.5523684", "0.5522319", "0.55145586", "0.5514455", "0.55136365", "0.5513424", "0.55051047", "0.5503963", "0.55038816" ]
0.0
-1
Create a new job instance.
public function __construct($r, $e, $v) { $this->receiver = $r; $this->receiver_email = $e; $this->verification_link = $v; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function createJob( $creationParameters ){ return $this->APICallSub( '/jobs', array( 'create' => $creationParameters ), \"Could not create new job with query \" . $creationParameters['query'] . \" and operation \" . $creationParameters['operation'] ); }", "abstract public function makeJob();", "abstract public function makeJob();", "private function createSearchJob() {\n $response = $this->client->request('POST','search/jobs', [\n 'json' => [\n 'query' => $this->getSumoQuery(),\n 'from' => $this->start->format(DateTime::ATOM),\n 'to' => $this->end->format(DateTime::ATOM),\n 'timeZone' => $this->profile->getTimezone()\n ]\n ]);\n $code = $response->getStatusCode();\n if ($code !== 202) {\n throw new \\Exception('Error getting data from Sumologic, error was HTTP ' . $code . ' - ' . $response->getBody() . '.');\n }\n $data = json_decode($response->getBody());\n $this->jobId = $data->id;\n if ($this->output->isVerbose()) {\n $this->output->writeln(\" > Debug: Search job ID {$this->jobId} created.\");\n }\n }", "public function createJobObject($payload)\n {\n $job = new Job([\n 'title' => $payload['title'],\n 'name' => $payload['title'],\n 'description' => $payload['description'],\n 'url' => $payload['url'],\n 'location' => $payload['locations'],\n ]);\n\n $job->setCompany($payload['company'])\n ->setDatePostedAsString($payload['date'])\n ->setBaseSalary($payload['salary']);\n\n return $job;\n }", "public function createJobExecution(JobInstance $job)\n {\n return new JobExecution();\n }", "public function setJobName(string $jobName): JobInstanceInterface;", "public function __construct(Job $job)\n {\n $this->job = $job;\n }", "public static function createJob($project, $jobOptions, $parentJob = null) {\n\n // Check if the job must be CC\n $isCC = ($jobOptions->getProjectJobFileType() && $jobOptions->getProjectJobFileType() == ProjectJobFile::TYPE_CC);\n\n if ($jobOptions->getJobType())\n Subtitle::defineSubtitleExtension($jobOptions->getJobType());\n\n // Get job type service id\n $jobOptionsTypeService = JobTypeService::model()->byJobTypeAndService(\n $jobOptions->getJobType(),\n $jobOptions->getService()\n )->find();\n\n // Set attributes\n $projectJob = new PRMProjectJob();\n $projectJob->source_lang_id = $jobOptions->getSourceLanguage();\n $projectJob->target_lang_id = $jobOptions->getTargetLanguage();\n $projectJob->project_id = $project->id;\n $projectJob->job_type_id = $jobOptions->getJobType();\n $projectJob->job_type_service_id = $jobOptionsTypeService->id;\n $projectJob->subtitle_provided = $jobOptions->isSubtitleProvided() ? 1 : 0;\n $projectJob->status = parent::STATUS_NEW;\n $projectJob->due_date = $jobOptions->getDueDate();\n $projectJob->is_billable = ($jobOptions->getJobType() != JobType::TYPE_ACCEPTANCE) ? 1 : 0;\n $projectJob->is_cc = (int) $isCC;\n $projectJob->forced_subtitle = $jobOptions->getIsForced() ? 1 : 0;\n $projectJob->job_meta_type_id = $jobOptions->getMetaType();\n\n if($projectJob->save(false)) {\n\n $deliverySpecComponent = new DeliverySpecComponent();\n $projectJobPreference = $deliverySpecComponent->copyTerritoriesToJobPreferences($projectJob, $project->delivery_spec_id);\n // Set max_box_lines = 3 for CC jobs\n if($projectJobPreference instanceof ProjectJobPreference && $isCC) {\n $projectJobPreference->max_box_lines = 3;\n $projectJobPreference->save(false);\n }\n\n ProjectBreakdownReport::create(ProjectBreakdownReportActions::TASK_ADDED)\n ->forProjectJob($projectJob)\n ->save();\n\n if ($project->user_id){\n PUserJob::model()->assignJob($project->user_id, $projectJob->id);\n }\n\n ProjectJobParent::link($parentJob ? $parentJob->id : 0, $projectJob->id);\n\n if ($jobOptions->getOutputSupportedFile() instanceof ProjectSupportedFile) {\n $deliverableFile = new ProjectJobDeliverableFiles();\n $deliverableFile->project_job_id = $projectJob->id;\n $deliverableFile->project_supported_file_id = $jobOptions->getOutputSupportedFile()->id;\n $deliverableFile->file_name = $jobOptions->getOutputFileName();\n\n if ($jobOptions->getOutputPositioningType()){\n $deliverableFile->positioning_profile = \"0;{$jobOptions->getOutputPositioningType()};{$jobOptions->getOutputAspect()};{$jobOptions->getOutputAspectRatio()}\";\n }\n\n $deliverableFile->save(false);\n }\n\n // Return job\n return $projectJob;\n }\n\n return false;\n }", "public function createJobObject($payload)\n {\n $job = new Job;\n\n $map = $this->getJobSetterMap();\n\n array_walk($map, function ($path, $setter) use ($payload, &$job) {\n try {\n $value = static::getValue(explode('.', $path), $payload);\n $job->$setter($value);\n } catch (\\OutOfRangeException $e) {\n // do nothing\n }\n });\n\n return $job;\n }", "public function create(JobRequest $jobRequest)\n {\n $job = new Job();\n\n $job->business_person = $jobRequest->business_person;\n $job->principal_phone = $jobRequest->principal_phone;\n $job->optional_phone = $jobRequest->optional_phone;\n $job->init_date = $jobRequest->init_date;\n $job->finish_date = $jobRequest->finish_date;\n $job->city = $jobRequest->city;\n\n $job->save();\n\n return compact('job');\n }", "public function createNewJob($jobBody, $queue)\n {\n $job = new Job($jobBody, $queue);\n\n if ($this->jobHasBeenAddedFromOutside($job)) {\n $this->addMissingJobTimeData($job);\n }\n\n return $job;\n }", "protected function createJobFromPayload($payload = [])\n {\n return new Job([\n 'title' => $payload['jobTitle'],\n 'name' => $payload['jobTitle'],\n 'description' => $payload['descriptionFragment'],\n 'url' => $payload['jobViewUrl'],\n 'sourceId' => $payload['jobListingId'],\n 'location' => $payload['location'],\n 'industry' => $payload['jobCategory']\n ]);\n }", "public function created(Job $job)\n {\n //\n }", "protected function generateJob()\n\t{\n\t\t$name = $this->inflector->getJob();\n\n\t\t$this->call('make:job', compact('name'));\n\t}", "public static function create()\n\t{\n\t\t//check, if a JobController instance already exists\n\t\tif(JobController::$jobController == null)\n\t\t{\n\t\t\tJobController::$jobController = new JobController();\n\t\t}\n\n\t\treturn JobController::$jobController;\n\t}", "static public function factory($job, $conn, $handle, $initParams=array())\n {\n if (empty($initParams['path'])) {\n $paths = explode(',', NET_GEARMAN_JOB_PATH);\n $file = null;\n\n foreach ($paths as $path) {\n $tmpFile = $path . '/' . $job . '.php';\n\n if (file_exists(realpath($tmpFile))) {\n $file = $tmpFile;\n break;\n }\n }\n }\n else {\n $file = $initParams['path'];\n }\n\n if ( ! file_exists($file) ) {\n throw new Net_Gearman_Job_Exception('Invalid Job class file: ' . (empty($file) ? '<empty>' : $file));\n }\n\n include_once $file;\n\n if (empty($initParams['class_name'])) {\n $class = NET_GEARMAN_JOB_CLASS_PREFIX . $job;\n }\n else {\n $class = $initParams['class_name'];\n }\n\n if (!class_exists($class)) {\n throw new Net_Gearman_Job_Exception('Invalid Job class: ' . (empty($class) ? '<empty>' : $class) . ' in ' . (empty($file) ? '<empty>' : $file) );\n }\n\n $instance = new $class($conn, $handle, $initParams);\n if (!$instance instanceof Net_Gearman_Job_Common) {\n throw new Net_Gearman_Job_Exception('Job is of invalid type: ' . get_class($instance));\n }\n\n return $instance;\n }", "public function creating(Job $job)\n {\n $job->setTokenValue();\n $job->setExpiresAtValue();\n $job->is_activated = 1;\n }", "private function createJob (string $cronTab) : CronJobInterface\n {\n return new class ($cronTab) implements CronJobInterface\n {\n /** @var string */\n private $cronTab;\n\n\n /**\n */\n public function __construct (string $cronTab)\n {\n $this->cronTab = $cronTab;\n }\n\n\n /**\n */\n public function getCronTab () : string\n {\n return $this->cronTab;\n }\n\n\n /**\n */\n public function getName () : string\n {\n return \"My Job\";\n }\n\n\n /**\n */\n public function execute (BufferedSymfonyStyle $io) : CronStatus\n {\n return new CronStatus(true);\n }\n };\n }", "private function createJob(array $data = [])\n {\n $workflow = fake(WorkflowModel::class);\n $stage = fake(StageModel::class, [\n 'action_id' => 'info',\n 'workflow_id' => $workflow->id,\n 'required' => 1,\n ]);\n fake(StageModel::class, [\n 'action_id' => 'button',\n 'workflow_id' => $workflow->id,\n 'required' => 0,\n ]);\n\n $data = array_merge([\n 'workflow_id' => $workflow->id,\n 'stage_id' => $stage->id,\n ], $data);\n\n return fake(JobModel::class, $data);\n }", "public function getNewJob() {\n # we can grab a locked job if we own the lock\n $rs = $this->runQuery(\"\n SELECT id\n FROM \" . self::$jobsTable . \"\n WHERE queue = ?\n AND (run_at IS NULL OR NOW() >= run_at)\n AND (locked_at IS NULL OR locked_by = ?)\n AND failed_at IS NULL\n AND attempts < ?\n ORDER BY created_at DESC\n LIMIT 10\n \", array($this->queue, $this->name, $this->max_attempts));\n\n // randomly order the 10 to prevent lock contention among workers\n shuffle($rs);\n\n foreach ($rs as $r) {\n $job = new DJJob($this->name, $r[\"id\"], array(\n \"max_attempts\" => $this->max_attempts,\n \"fail_on_output\" => $this->fail_on_output\n ));\n if ($job->acquireLock()) return $job;\n }\n\n return false;\n }", "public function store(Request $request): JobResource\n {\n $jobTypes = Factory::listTypes();\n $validValues = $this->validate(\n $request,\n [\n 'sample_code' => ['filled', 'string', 'alpha_dash'],\n 'name' => ['required', 'string'],\n 'type' => ['required', 'string', Rule::in($jobTypes->pluck('id'))],\n 'parameters' => ['filled', 'array'],\n ]\n );\n $parametersValidation = $this->_prepareNestedValidation(\n Factory::validationSpec($validValues['type'], $request)\n );\n $validParameters = $this->validate($request, $parametersValidation);\n $type = $validValues['type'];\n $validParameters = $validParameters['parameters'] ?? [];\n $job = Job::create(\n [\n 'sample_code' => $validValues['sample_code'] ?? null,\n 'name' => $validValues['name'],\n 'job_type' => $type,\n 'status' => Job::READY,\n 'job_parameters' => [],\n 'job_output' => [],\n 'log' => '',\n 'user_id' => \\Auth::guard('api')->id(),\n ]\n );\n $job->setParameters(Arr::dot($validParameters));\n $job->save();\n $job->getJobDirectory();\n\n return new JobResource($job);\n }", "public function __construct(JobPoster $job)\n {\n $this->job = $job;\n }", "public function create()\n {\n // Display form to create a new job\n return view('jobs.create');\n }", "public function __construct(Job $job)\n {\n parent::__construct();\n\n $this->job = $job;\n }", "protected function getJobInstance(): JobInstance\n {\n if (!isset($this->jobInstance)) {\n $id = $this->argument('instanceId');\n /** @noinspection PhpIncompatibleReturnTypeInspection */\n $this->jobInstance = JobInstance::findOrFail(intval($id));\n }\n\n return $this->jobInstance;\n }", "public function getInstance()\n {\n if (!is_null($this->instance)) {\n return $this->instance;\n }\n\n if (!class_exists($this->class)) {\n throw new \\RuntimeException('Could not find job class \"'.$this->class.'\"');\n }\n\n if (!method_exists($this->class, $this->method) or !is_callable(array($this->class, $this->method))) {\n throw new \\RuntimeException('Job class \"'.$this->class.'\" does not contain a public \"'.$this->method.'\" method');\n }\n\n $class = new \\ReflectionClass($this->class);\n\n if ($class->isAbstract()) {\n throw new \\RuntimeException('Job class \"'.$this->class.'\" cannot be an abstract class');\n }\n\n $instance = $class->newInstance();\n\n return $this->instance = $instance;\n }", "static function createJobDescriptorFromInput()\n {\n $obj = b2input()->json();\n $job = new \\scheduler\\JobDescriptor();\n\n $job->group = trim($obj->group) ?: b2config()->scheduler['defaultGroupName'];\n $job->name = $obj->name;\n $job->type = $obj->type;\n $job->description = $obj->description;\n\n if ($obj->data) {\n $job->data = parse_ini_string($obj->data);\n }\n if (empty($job->data)) {\n $job->data = null;\n }\n\n// var_dump($job);\n\n return $job;\n }", "public function create() {}", "public function __construct()\n {\n $this->jobService = new JobService();\n }", "public function create()\n {\n $job=new Job;\n return view('jobs.create',[\n 'job'=>$job,]);\n //\n }", "public function store(CreateJobFormRequest $request)\n {\n $job = Job::create($request->input());\n\n return response()->json($job, 201);\n\n }", "public function create()\n {\n return view('admin.job.create');\n }", "public function createAction(Request $request)\n {\n $entity = new Job();\n $form = $this->createCreateForm($entity);\n $form->handleRequest($request);\n\n if ($form->isValid()) {\n $em = $this->getDoctrine()->getManager();\n $em->persist($entity);\n $em->flush();\n\n return $this->redirect($this->generateUrl('job_show', array('id' => $entity->getId())));\n }\n\n return array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n );\n }", "public function create() {\n $class_name = $this->getOption('className');\n return new $class_name();\n }", "public function create(){}", "public function create(Request $request) {\n $jobPost = new Job();\n $jobPost->user_id = Auth::user()->id;\n\n // Substract one credit from user's subscription\n $userPlans = Auth::user()->plans;\n\n foreach ($userPlans as $plan) {\n if ($plan->credits > 0) {\n $plan->credits = $plan->credits - 1;\n $plan->save();\n }\n }\n\n $jobPostData = $request::input('jobPost');\n foreach ($jobPostData as $key => $value) {\n $jobPost[$key] = $value;\n }\n\n $jobPost->save();\n\n return $jobPost;\n }", "public function __construct($job)\n {\n $payload = [];\n $this->job = $job;\n $payload['data'] = json_encode($this->job);\n\n $payload['classname'] = $this->job->getNameOfClass();\n $this->payload = $payload;\n\n }", "public function create()\n {\n return view('profile.job.create');\n }", "public function create()\n {\n return view('job.add_job');\n }", "public function store(CreateRequest $request, Job $job)\n {\n $newTask = $request->validated();\n $newTask['job_id'] = $job->id;\n $task = Task::create($newTask);\n\n flash(__('task.created'), 'success');\n\n return redirect()->route('jobs.show', $job);\n }", "public static function create() {}", "public static function create() {}", "public static function create() {}", "public function create()\n {}", "public function createTask()\n {\n return factory($this->model)->create();\n }", "public function newAction()\n {\n $entity = new Job();\n $form = $this->createCreateForm($entity);\n\n return array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n );\n }", "public function createJob(array $settings, $metaData = [], $priority = 0)\n {\n return $this->client->createJob([\n 'Role' => config('media-converter.iam_arn'),\n 'Settings' => $settings,\n 'Queue' => config('media-converter.queue_arn'),\n 'UserMetadata' => $metaData,\n 'StatusUpdateInterval' => $this->getStatusUpdateInterval(),\n 'Priority' => $priority,\n ]);\n }", "public function addNewJobOpo()\n {\n }", "public function insert($projectId, Google_Job $postBody, $optParams = array()) {\n $params = array('projectId' => $projectId, 'postBody' => $postBody);\n $params = array_merge($params, $optParams);\n $data = $this->__call('insert', array($params));\n if ($this->useObjects()) {\n return new Google_Job($data);\n } else {\n return $data;\n }\n }", "public function run()\n {\n Job::create([\n \"name\" => \"Wirausaha\"\n ]);\n\n Job::create([\n \"name\" => \"Wiraswasta\"\n ]);\n\n Job::create([\n \"name\" => \"Freelance\"\n ]);\n\n Job::create([\n \"name\" => \"Pelajar\"\n ]);\n }", "public function create() {\n \n }", "public function create() {\n \n }", "public static function createJob($mysqli,$name, $jobdesc, $cust_email, $trade, $area, $jobcost, $jobdate, $estdate){\n $insert = \"INSERT INTO job (job_name,job_desc,cust_email,trade_name,area,preferred_cost,date_needed,offer_end_date) VALUES (?,?,?,?,?,?,?,?)\";\n $stmt = $mysqli->prepare($insert);\n $stmt->bind_param('sssssiss', $name, $jobdesc, $cust_email, $trade, $area, $jobcost, $jobdate, $estdate); \n $stmt->execute();\n $stmt->close();\n $job = new Job(['JobName'],['JobDesc'],['Email'],['Trade'],['Area'],['JobCost'],['JobDate'],['EstDate']);\n return $job;\n }", "public function store(Request $request)\n {\n $job = new Job();\n $job->title = $request->title;\n $job->description = $request->description;\n $job->company_name = $request->company_name;\n $this->repo->save($job);\n return new JobsResources($job);\n }", "public function create()\n {\n $fields = Field::all();\n $jobTypes = config('user.job_type');\n\n return view('job.create', [\n 'fields' => $fields,\n 'jobTypes' => $jobTypes,\n ]);\n }", "public static function create($queue, $class, array $data = null, $run_at = 0)\n {\n $id = static::createId($queue, $class, $data, $run_at);\n\n $job = new static($queue, $id, $class, $data);\n\n if ($run_at > 0) {\n if (!$job->delay($run_at)) {\n return false;\n }\n } elseif (!$job->queue()) {\n return false;\n }\n\n Stats::incr('total', 1);\n Stats::incr('total', 1, Queue::redisKey($queue, 'stats'));\n\n return $job;\n }", "public function create()\n {\n return $this->objectManager->create($this->className);\n }", "public function create() {\r\n }", "public function create()\n {\n //TODO\n }", "public function submit(Job $job): JobResource\n {\n if (!$job->canBeModified()) {\n abort(400, 'Unable to submit a job that is already submitted.');\n }\n $job->setStatus(Job::QUEUED);\n JobRequest::dispatch($job);\n\n return new JobResource($job);\n }", "public function __construct(int $status, Job $job)\n {\n $this->status = $status;\n $this->job = $job;\n\n $this->updateTask($this->status, $this->job);\n }", "public function create()\n {\n return new $this->class;\n }", "public function create() {\n }", "public function create() {\n }", "public function create() {\n\t \n }", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create();", "public function create()\n {\n return view('admin.jobs.create');\n }", "public function fake(Generator &$faker): Job\n {\n return new Job([\n 'name' => $faker->catchPhrase,\n 'summary' => $faker->sentence,\n 'workflow_id' => random_int(1, Fabricator::getCount('workflows') ?: 4),\n 'stage_id' => random_int(1, Fabricator::getCount('stages') ?: 99),\n ]);\n }", "public function run()\n {\n Job::factory()->count(100)->create();\n \n }", "public function create() {\n\t\t\t//\n\t\t}", "public function create()\n {\n return view('admin.jobs.create');\n\n }", "public function create() {\n\n\t\t\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "public function create() {\n\t\t//\n\t}", "protected function _createJob($type, $job)\n\t{\n\t\treturn strtoupper($type) . ' ' . json_encode($job);\n\t}", "public function createJobWithSalesPrices(array $inputData): Job;", "public function create(Job $job)\n {\n $states = $job->prepareStates();\n $countries = $job->prepareCountries();\n $hours = $job->prepareHours();\n $minutes = $job->prepareMinutes();\n $ampm = $job->prepareAmpm();\n $open = $job->prepareOpen();\n return view('companies.create', compact(['states','countries','hours','minutes','ampm','open']));\n }", "public function create()\n {\n return view('jobs.create');\n }", "public function create()\n {\n return view('jobs.create');\n }", "public function create()\n {\n return view('jobs.create');\n }" ]
[ "0.6920272", "0.6905722", "0.6905722", "0.6869542", "0.6808916", "0.65271425", "0.65184414", "0.64918077", "0.6489135", "0.6468623", "0.6425879", "0.64058304", "0.63938236", "0.63899404", "0.63753885", "0.6304669", "0.6256802", "0.6241474", "0.620155", "0.61789167", "0.60741454", "0.60695714", "0.6047274", "0.60462874", "0.6028435", "0.6027225", "0.6021894", "0.60214204", "0.59231514", "0.58802027", "0.5874528", "0.58576655", "0.58098435", "0.5805053", "0.58005697", "0.5789109", "0.57851434", "0.57767034", "0.5775661", "0.5755982", "0.5702295", "0.5683395", "0.5683395", "0.5683395", "0.5683376", "0.5679739", "0.5678496", "0.5659406", "0.56529284", "0.56470996", "0.5634536", "0.5632702", "0.5632702", "0.5628215", "0.5625956", "0.5621957", "0.56141514", "0.56048644", "0.5604791", "0.5601149", "0.5601067", "0.5599652", "0.5595376", "0.55932534", "0.55932534", "0.55932015", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55778396", "0.55362236", "0.5534658", "0.5531583", "0.55224913", "0.5522197", "0.5517534", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.55171794", "0.5514842", "0.549955", "0.5497938", "0.54876786", "0.54876786", "0.54876786" ]
0.0
-1
Determine if the user is authorized to make this request.
public function authorize() { return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function authorize()\n {\n if ($this->user() !== null) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n return $this->user() !== null;\n }", "public function authorize()\n {\n return $this->user() !== null;\n }", "public function authorize()\n {\n return $this->user() != null;\n }", "public function authorize(): bool\n {\n return $this->user() !== null;\n }", "public function authorize(): bool\n {\n return $this->isUserAuthorised();\n }", "public function authorize()\n {\n return !is_null($this->user());\n }", "public function authorize()\n {\n return request()->user() != null;\n }", "public function authorize()\n\t{\n\t\t// if user is updating his profile or a user is an admin\n\t\tif( $this->user()->isSuperAdmin() || !$this->route('user') ){\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public function authorize()\n {\n // this was my best guess\n return $this->user()->id === $this->route('user')->id;\n }", "public function isAuthorized()\n {\n return $this->cookieHelper->requestCookieExists('auth');\n }", "public function authorize()\n {\n return !empty(Auth::user()) && ($this->user()->isAnAdmin() || $this->user()->hasRole('user'));\n }", "public function authorize()\n {\n $originAccount = Account::find($this->get('origin_account_id'));\n return $originAccount->user_id == auth()->id();\n }", "public function authorize()\n {\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n case 'PUT':\n case 'PATCH':\n case 'DELETE':\n default:\n return $this->user()->type == 'App\\\\Staff' ? true : false;\n break;\n }\n\n return false;\n }", "public function authorize()\n {\n if($this->user()->role == \"admin\" || $this->user()->id == $this->request->get('author_id')) return true;\n else return false;\n }", "public function authorize()\n {\n if(\\Auth::guest())\n {\n return false;\n } else {\n // Action 1 - Check if authenticated user is a superadmin\n if(\\Auth::User()->hasRole('superadmin'))\n return true;\n\n // Action 2 - Find UUID from request and compare to authenticated user\n $user = User::where('uuid', $this->user_uuid)->firstOrFail();\n if($user->id == \\Auth::User()->id)\n return true;\n\n // Action 3 - Fail request\n return false;\n }\n }", "public function authorize()\n {\n $this->model = $this->route('user');\n\n $this->model = is_null($this->model) ? User::class : $this->model;\n\n return $this->isAuthorized();\n }", "public function isAuthorized(): bool\n {\n // TODO: implement authorization check\n\n return true;\n }", "public function isAuthorized() {}", "public function authorize()\n {\n return request()->loggedin_role === 1;\n }", "public function authorize()\n {\n $this->model = $this->route('user');\n\n if ($this->isEdit() && !is_null($this->model)) {\n if (!user()->hasPermissionTo('Administrations::admin.user') && $this->model->id != user()->id) {\n return false;\n }\n }\n\n $this->model = is_null($this->model) ? User::class : $this->model;\n\n return $this->isAuthorized();\n }", "public function authorize()\n {\n $accessor = $this->user();\n\n return $accessor->isAdmin() || $accessor->hasKey('post-users');\n }", "public function authorize()\n {\n $user = \\Auth::getUser();\n\n return $user->user_type == 1;\n }", "public function authorize()\n {\n return auth()->check() ? true : false;\n }", "public function authorize()\n {\n return auth()->check() ? true : false;\n }", "public function authorize()\n {\n /**\n * @var User $user\n * @var Document $document\n */\n $user = Auth::user();\n $document = $this->route('document');\n\n return (int)$user->id === (int)$document->user_id;\n }", "public function authorize()\n {\n switch (true) {\n case $this->wantsToList():\n case $this->wantsToShow():\n if ($this->hasRoles(['owner', 'administrator'])) {\n return true;\n }\n break;\n case $this->wantsToStore():\n case $this->wantsToUpdate():\n case $this->wantsToDestroy():\n if ($this->hasRoles(['owner'])) {\n return true;\n }\n break;\n }\n\n return false;\n }", "public function authorize()\n {\n $user = JWTAuth::parseToken()->authenticate();\n $organisation = Organization::findOrFail($this->route('organizations'));\n return $organisation->admin_id == $user->id;\n }", "public function authorize()\n {\n if($this->user()->isAdmin())\n return true;\n\n return false;\n }", "function isAuthorized()\n {\n $authorized = parent::isAuthorized();\n return $authorized;\n }", "public function authorize()\n {\n $user = auth('web')->user();\n if ($user && $user->active) {\n return true;\n }\n\n return false;\n }", "public function authorize()\n {\n $this->user = User::query()->find($this->route()->parameter('user'));\n $this->merge(['verified' => $this->get('verified') ? 1 : 0]);\n\n return true;\n }", "public function authorize()\n {\n $user = request()->user('api');\n return $user->isSenior();\n }", "public function authorize()\n {\n return is_client_or_staff();\n }", "public function isAuthorized() {\n\t\treturn true;\n\t}", "public function authorize()\n {\n switch ($this->method()) {\n case 'POST':\n return true;\n case 'GET':\n default:\n {\n return false;\n }\n }\n }", "public function authorize()\n {\n switch ($this->method()) {\n case 'POST':\n return true;\n case 'GET':\n default:\n {\n return false;\n }\n }\n }", "public function authorize()\n {\n //Check if user is authorized to access this page\n if($this->user()->authorizeRoles(['admin'])) {\n return true;\n } else {\n return false;\n }\n }", "public function isAuthorized()\n\t{\n\t\t$sessionVal = Yii::$app->session->get($this->sessionParam);\n\t\treturn (!empty($sessionVal));\n\t}", "public function authorize() {\n\n return auth()->user() && auth()->user()->username === $this->user->username;\n }", "public function authorize()\n {\n return session('storefront_key') || request()->session()->has('api_credential');\n }", "public function authorize()\n {\n if ($this->user()->isAdmin($this->route('organization'))) {\n return true;\n }\n\n return false;\n\n }", "public function authorize()\n {\n return $this->user() && $this->user()->role === Constants::USER_ROLE_ADMIN;\n }", "public function authorized()\n {\n return $this->accepted && ! $this->test_mode;\n }", "public function authorize()\n {\n if (!auth()->check()) {\n return false;\n }\n return true;\n }", "public function hasAuthorized() {\n return $this->_has(1);\n }", "public function authorize()\n {\n $resource = Resource::find($this->route('id'));\n\n if (!$resource) {\n return true;\n }\n\n return $resource && $this->user()->can('access', $resource);\n }", "public function authorize()\n {\n /*\n if ($this->loan_id && is_numeric($this->loan_id) && $loan = Loan::whereId($this->loan_id)->first()) {\n // loan_id belongs to requesting user\n return $loan && $this->user()->id == $loan->user_id;\n }\n */\n return true; // let rules handle it\n }", "public function authorize()\n {\n //TODO Authorice Request (without Controller)\n return auth()->user()->role_id === 1;\n }", "public function authorize(): bool\n {\n return $this->user()->id === $this->article->user->id;\n }", "public function authorize()\n {\n return $this->user()->rol == 'admin' ? true : false;\n }", "public function isAuth()\n {\n return $this->session->hasAuthorisation();\n }", "public function authorize()\n {\n if(Auth::user())\n {\n return true;\n }\n else\n {\n return false;\n }\n }", "public function authorize()\n {\n //Check if user is authorized to access this page\n if($this->user()->authorizeRoles(['admin', 'hrmanager', 'hruser'])) {\n return true;\n } else {\n return false;\n }\n }", "public function authorize()\n {\n return \\Auth::check() ? true : false;\n }", "public function authorize()\n\t{\n\t\treturn true; //no user checking\n\t}", "public function authorize()\n {\n return $this->user()->id === $this->route('report')->user_id;\n }", "public function authorize()\n {\n return $this->user()->id === $this->route('report')->user_id;\n }", "public function authorize()\n {\n return !empty(Auth::user());\n }", "public function authorize()\n {\n return $this->groupHasUser() || $this->hasSeller();\n }", "public function authorize()\n\t{\n\t\t//@todo check with perissions\n\t\treturn (request()->user()->user_type == ADMIN_USER);\n\t}", "public function authorize()\n\t{\n\t\t//@todo check with perissions\n\t\treturn (request()->user()->user_type == ADMIN_USER);\n\t}", "public function isAuthorized() {\n\t\t\n\t}", "public function authorize()\n {\n if(Auth::check())\n {\n return (Auth::user()->has_world_admin_access);\n }\n return false;\n }", "public function authorize()\n {\n if (!\\Auth::guest()) {\n $user = \\Auth::getUser();\n if ($user->type == User::USER_TYPE_ADMIN) {\n return true;\n }\n }\n\n return false;\n }", "public function authorize()\n {\n if (auth()->user()->is_admin) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n if ($this->user()->is_admin){\n return true;\n }\n else if ($this->method == \"PUT\"){\n if ($this->user()->id == $this->input('id')){\n return true;\n }\n }\n return false;\n }", "public function authorize(): bool\n {\n return parent::authorize() && (int)$this->playList->user_id === auth()->user()->id;\n }", "public function authorize() {\n\t\treturn $this->user()->is_admin;\n\t}", "public function authorize()\n {\n if (Auth::check()) {\n \n return true;\n \n }\n return false;\n }", "public function authorize()\n {\n $user = Auth::user();\n return $user && $user->rol == 'admin';\n }", "public function authorize()\n\t{\n\t\t// Nutzern akzeptiert werden\n\t\tif(Auth::check())\n\t\t{\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public function authorize()\n {\n // TODO: Check if has business\n return session()->has('id');\n }", "public function authorize()\n {\n if (auth()->check() && auth()->user()->isAdmin()) {\n return true;\n }\n\n return false;\n }", "public function authorize()\n {\n return $this->auth->check();\n }", "public function authorize() {\n\t\t$user = \\Auth::user();\n\n\t\tif ( $user->isAdmin() ) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}", "public function authorize()\n {\n if (auth()->user()->isAdmin() || auth()->user()->isCustomer()) {\n return true;\n }\n return false;\n }", "public function authorize()\n {\n return $this->container['auth']->check();\n }", "function isAuthorized($request) {\n return true;\n }", "public function authorize()\n {\n return Auth::guest() || isMember();\n }", "public function authorize()\n {\n return auth()->user() && auth()->user()->isCeo();\n }", "public function authorize(): bool\n {\n $deckId = $this->request->get('deck_id');\n $userId = Deck::whereKey($deckId)->value('user_id');\n\n return $userId === user()->id;\n }", "public function authorize()\n {\n return Auth::check() && Auth::user()->is_contractor;\n }", "public function authorize()\n {\n return TRUE;\n }", "public function authorize()\n {\n $user = User::find($this->id);\n\n if (!$user) {\n $user = User::where('no_ahli', $this->no_ahli)->first();\n }\n if ($user && $user->id == auth()->user()->id) return true;\n if (auth()->user()->is('admin')) return true;\n\n return false;\n }", "public function authorize()\n {\n # if it's false, it will rejected\n return true;\n }", "public function authorize()\n {\n $isValid = auth()->user()->is($this->route('task')->attempt->checklist->owner);\n\n return $isValid;\n }", "public function authorize()\n {\n $user = Auth::user();\n\n return ($user->getRole() == 'admin');\n }", "public function is_authorized() {\n\t\t$authorized = true;\n\t\tif ( $this->is_access_token_expired() ) {\n\t\t\t$authorized = false;\n\t\t}\n\n\t\treturn $authorized;\n\t}", "public function authorize()\n {\n $user = User::findOrFail($this->route('id'));\n\n return $user->hasRole('admin') || $user->hasRole('teacher');\n }", "public function authorize()\n {\n $project = \\App\\Project::find($this->request->get('project'));\n return $project && $project->isManager($this->user()->name);\n }", "public function isAuthorized() {\n\t\treturn (bool)$this->_storage->hasData();\n\t}", "public function authorize()\n {\n $idExpense = $this->input('expense');\n $expense = Expense::find($idExpense);\n\n return $expense && $this->user()->id == $expense->user_id;\n }", "public function authorize()\n {\n // User system not implemented\n return true;\n }", "public function authorize() : bool\n {\n // TODO check request to xhr in middleware\n return true;\n }", "public function authorize()\n {\n $organizationId = (string) $this->route('id');\n\n $this->organization = Organization::findByUuidOrFail($organizationId);\n\n return $this->user()->can('show', [Organization::class, $this->organization]);\n }", "public function authorize()\n {\n $user = $this->findFromUrl('user');\n return $this->user()->can('update', $user);\n }", "public function authorize()\n {\n $user = Auth::user();\n $orderElement = OrderElement::find($this->input(\"order_element_id\"));\n $order = $orderElement->order;\n\n if ($user->id == $order->user_id) {\n return true;\n } else {\n return false;\n }\n }", "public function authorize()\n {\n $current_user = auth()->user();\n $convention = Convention::find($this->route('convention_id'));\n\n // Use ClientPolicy here to authorize before checking the fields\n return $current_user->can('store', Convention::class)\n || $current_user->can('update', $convention);\n }", "public function authorize()\n {\n if (session()->has('user'))\n {\n $participantController = new ParticipantController();\n\n return !$participantController->isParticipating($this->input('id_user'), $this->input('id_event'));\n }\n else\n {\n return false;\n }\n }", "public function authorize()\n {\n return (Auth::user()->allowSuperAdminAccess || Auth::user()->allowAdminAccess);\n }" ]
[ "0.8401071", "0.8377486", "0.8377486", "0.8344406", "0.8253731", "0.824795", "0.8213121", "0.8146598", "0.81115526", "0.8083369", "0.7991986", "0.79907674", "0.79836637", "0.79604936", "0.79516214", "0.79494005", "0.79265946", "0.7915068", "0.79001635", "0.7894822", "0.7891453", "0.7890965", "0.7862504", "0.78414804", "0.78414804", "0.7837965", "0.78248763", "0.7812292", "0.7809632", "0.77928597", "0.7788316", "0.7781619", "0.77815884", "0.7763308", "0.7754035", "0.7717961", "0.7717961", "0.77171147", "0.77138597", "0.7705001", "0.7693082", "0.7692783", "0.76915383", "0.76909506", "0.76733255", "0.7667128", "0.7665592", "0.7656238", "0.7650853", "0.764326", "0.76431626", "0.76431614", "0.7635147", "0.76311624", "0.76294273", "0.7627076", "0.76207024", "0.76207024", "0.76139116", "0.76036394", "0.76035625", "0.76035625", "0.76032084", "0.7602515", "0.76007926", "0.75971127", "0.7588128", "0.7586303", "0.7581912", "0.7563037", "0.7554785", "0.75526226", "0.755171", "0.75436753", "0.75432944", "0.7540682", "0.7538806", "0.75280696", "0.751548", "0.75149626", "0.7501161", "0.74959517", "0.74956346", "0.74911124", "0.7489147", "0.74858016", "0.748033", "0.7478443", "0.7472642", "0.7472576", "0.7465409", "0.7464371", "0.74630046", "0.7462218", "0.7461453", "0.7449168", "0.74399257", "0.74358094", "0.7433247", "0.7432659", "0.74248093" ]
0.0
-1
Get the validation rules that apply to the request.
public function rules() { return [ 'when' => 'required', 'where' => 'required', 'job_id' => 'required', 'interviewee' => 'required', 'type' => 'required', 'interviewer' => 'required|max:225', 'result' => 'max:225', 'reason' => 'min:5' ]; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function rules()\n {\n $commons = [\n\n ];\n return get_request_rules($this, $commons);\n }", "public function getRules()\n {\n return $this->validator->getRules();\n }", "public function getValidationRules()\n {\n $rules = [];\n\n // Get the schema\n $schema = $this->getSchema();\n\n return $schema->getRules($this);\n }", "public function rules()\n {\n return $this->validationRules;\n }", "public function rules()\n {\n $rules = [];\n switch ($this->getMethod()):\n case \"POST\":\n $rules = [\n 'course_id' => 'required|numeric',\n 'questions' => 'required|array',\n ];\n break;\n case \"PUT\":\n $rules = [\n 'id' => 'required|numeric',\n 'course_id' => 'required|numeric',\n 'questions' => 'required|array',\n ];\n break;\n case \"DELETE\":\n $rules = [\n 'id' => 'required|numeric'\n ];\n break;\n endswitch;\n return $rules;\n }", "public static function getRules()\n {\n return (new static)->getValidationRules();\n }", "public function getRules()\n {\n return $this->validation_rules;\n }", "public function getValidationRules()\n {\n return [];\n }", "public function getValidationRules() {\n return [\n 'email' => 'required|email',\n 'name' => 'required|min:3',\n 'password' => 'required',\n ];\n }", "public function rules()\n {\n if($this->isMethod('post')){\n return $this->post_rules();\n }\n if($this->isMethod('put')){\n return $this->put_rules();\n }\n }", "public function rules()\n {\n $rules = [];\n\n // Validation request for stripe keys for stripe if stripe status in active\n if($this->has('stripe_status')){\n $rules[\"api_key\"] = \"required\";\n $rules[\"api_secret\"] = \"required\";\n $rules[\"webhook_key\"] = \"required\";\n }\n\n if($this->has('razorpay_status')){\n $rules[\"razorpay_key\"] = \"required\";\n $rules[\"razorpay_secret\"] = \"required\";\n $rules[\"razorpay_webhook_secret\"] = \"required\";\n }\n\n // Validation request for paypal keys for paypal if paypal status in active\n if($this->has('paypal_status')){\n $rules[\"paypal_client_id\"] = \"required\";\n $rules[\"paypal_secret\"] = \"required\";\n $rules[\"paypal_mode\"] = \"required_if:paypal_status,on|in:sandbox,live\";\n }\n\n\n return $rules;\n }", "protected function getValidationRules()\n {\n $rules = [\n 'title' => 'required|min:3|max:255',\n ];\n\n return $rules;\n }", "public function getRules()\n\t{\n\t\t$rules['user_id'] = ['required', 'exists:' . app()->make(User::class)->getTable() . ',id'];\n\t\t$rules['org_id'] = ['required', 'exists:' . app()->make(Org::class)->getTable() . ',id'];\n\t\t$rules['role'] = ['required', 'string', 'in:' . implode(',', Static::ROLES)];\n\t\t$rules['scopes'] = ['nullable', 'array'];\n\t\t$rules['ended_at'] = ['nullable', 'date'];\n\t\t$rules['photo_url'] = ['nullable', 'string'];\n\n\t\treturn $rules;\n\t}", "public function rules()\n {\n switch ($this->method()) {\n case 'POST':\n return [\n 'username' => 'required|max:255',\n 'user_id' => 'required',\n 'mobile' => 'required|regex:/^1[34578][0-9]{9}$/',\n 'birthday' => 'required',\n 'cycle_id' => 'required',\n 'expired_at' => 'required',\n 'card_price' => 'required',\n ];\n case 'PUT':\n return [\n 'username' => 'required|max:255',\n 'user_id' => 'required',\n 'mobile' => 'required|regex:/^1[34578][0-9]{9}$/',\n 'birthday' => 'required',\n 'cycle_id' => 'required',\n 'expired_at' => 'required',\n 'card_price' => 'required',\n ];\n }\n }", "public function rules()\n {\n\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users',\n 'password' => 'required|min:6|confirmed',\n 'password_confirmation' => 'min:6|same:password',\n 'role_id' => 'required'\n ];\n break;\n case 'PUT':\n case 'PATCH':\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users,email,'.$this->id,\n ];\n break;\n\n default:\n $rules = [\n 'name' => 'required|max:255',\n 'email' => 'required|email|max:255|unique:users,email,'.$this->id,\n ];\n break;\n }\n return $rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n return $this->rules;\n }", "public function rules()\n {\n switch($this->method()) {\n case 'GET':\n return [];\n case 'POST':\n return [\n 'name' => 'required|max:50',\n 'company' => 'required|max:100',\n 'position' => 'required|max:50',\n 'email' => 'required|email|max:150',\n 'phone' => 'required|max:25',\n 'description' => 'nullable|max:500',\n ];\n case 'PUT':\n case 'PATCH':\n return [\n 'name' => 'required|max:50',\n 'company' => 'required|max:100',\n 'position' => 'required|max:50',\n 'email' => 'required|email|max:150',\n 'phone' => 'required|max:25',\n 'description' => 'nullable|max:500',\n ];\n case 'DELETE':\n return [];\n default:break;\n }\n \n }", "public function rules($request) {\n $function = explode(\"@\", $request->route()[1]['uses'])[1];\n return $this->getRouteValidateRule($this->rules, $function);\n // // 获取请求验证的函数名\n // // ltrim(strstr($a,'@'),'@')\n // if (count(explode(\"@\", Request::route()->getActionName())) >= 2) {\n // $actionFunctionName = explode(\"@\", Request::route()->getActionName()) [1];\n // }\n\n // // 取配置并返回\n // if (isset($this->rules[$actionFunctionName])) {\n // if (is_array($this->rules[$actionFunctionName])) {\n // return $this->rules[$actionFunctionName];\n // }\n // else {\n // return $this->rules[$this->rules[$actionFunctionName]];\n // }\n // }\n // else {\n // return [];\n // }\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_MovieID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_UserID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CountryID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_BroadCastDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t\t'_CreatedDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t);\n\t}", "public function rules()\n {\n if ($this->method() === 'POST') {\n return $this->rulesForCreating();\n }\n\n return $this->rulesForUpdating();\n }", "public function rules()\n {\n $validation = [];\n if ($this->method() == \"POST\") {\n $validation = [\n 'name' => 'required|unique:users',\n 'email' => 'required|unique:users|email',\n 'password' => 'required|min:6|confirmed',\n 'password_confirmation' => 'required|min:6',\n 'roles' => 'required',\n ];\n } elseif ($this->method() == \"PUT\") {\n $validation = [\n 'name' => 'required|unique:users,name,' . $this->route()->parameter('id') . ',id',\n 'email' => 'required|unique:users,email,' . $this->route()->parameter('id') . ',id|email',\n 'roles' => 'required',\n ];\n\n if ($this->request->get('change_password') == true) {\n $validation['password'] = 'required|min:6|confirmed';\n $validation['password_confirmation'] = 'required|min:6';\n }\n }\n\n return $validation;\n }", "protected function getValidationRules()\n {\n $class = $this->model;\n\n return $class::$rules;\n }", "public function rules()\n {\n $data = $this->request->all();\n $rules['username'] = 'required|email';\n $rules['password'] = 'required'; \n\n return $rules;\n }", "public function rules()\n {\n $rules = $this->rules;\n\n $rules['fee'] = 'required|integer';\n $rules['phone'] = 'required|min:8|max:20';\n $rules['facebook'] = 'required|url';\n $rules['youtube'] = 'required|url';\n $rules['web'] = 'url';\n\n $rules['requestgender'] = 'required';\n $rules['serviceaddress'] = 'required|max:150';\n $rules['servicetime'] = 'required|max:150';\n $rules['language'] = 'required|max:150';\n $rules['bust'] = 'required|max:100|integer';\n $rules['waistline'] = 'required|max:100|integer';\n $rules['hips'] = 'required|max:100|integer';\n $rules['motto'] = 'max:50';\n\n return $rules;\n }", "protected function getValidRules()\n {\n return $this->validRules;\n }", "public function rules()\n {\n switch($this->method())\n {\n case 'GET':\n case 'DELETE':\n {\n return [];\n }\n case 'POST':\n case 'PUT':\n {\n return [\n 'name' => 'required',\n ];\n }\n default:break;\n }\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'POST':\n {\n return [\n 'mobile' => ['required','max:11','min:11'],\n 'code' => ['required','max:6','min:6'],\n 'avatar' => ['required'],\n 'wx_oauth' => ['required'],\n 'password' => ['nullable','min:6','max:20']\n ];\n }\n case 'PUT':\n case 'PATCH':\n case 'DELETE':\n default: {\n return [];\n }\n }\n }", "public function rules()\n {\n switch ($this->getRequestMethod()) {\n case 'index':\n return [\n 'full_name' => 'nullable|string',\n 'phone' => 'nullable|string',\n ];\n break;\n case 'store':\n return [\n 'crm_resource_id' => 'required|exists:crm_resources,id',\n 'channel' => 'required|in:' . get_validate_in_string(CrmResourceCallLog::$channel),\n 'call_status' => 'required|in:' . get_validate_in_string(CrmResourceCallLog::$call_statuses),\n ];\n break;\n default:\n return [];\n break;\n }\n }", "public function rules()\n {\n //With password\n if(request('password') || request('password_confirmation')) {\n return array_merge($this->passwordRules(), $this->defaultRules());\n }\n //Without password\n return $this->defaultRules();\n }", "public function rules()\n {\n $rules = [\n '_token' => 'required'\n ];\n\n foreach($this->request->get('emails') as $key => $val) {\n $rules['emails.'.$key] = 'required|email';\n }\n\n return $rules;\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_ID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CoverImageID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_TrackID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_Status' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_Rank' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_CreateDate' => array(\n\t\t\t\t'dateTime' => array(),\n\t\t\t),\n\t\t);\n\t}", "public function rules()\n { \n return $this->rules;\n }", "public function getValidationRules()\n {\n if (method_exists($this, 'rules')) {\n return $this->rules();\n }\n\n $table = $this->getTable();\n $cacheKey = 'validate.' . $table;\n\n if (config('validate.cache') && Cache::has($cacheKey)) {\n return Cache::get($cacheKey);\n }\n\n // Get table info for model and generate rules\n $manager = DB::connection()->getDoctrineSchemaManager();\n $details = $manager->listTableDetails($table);\n $foreignKeys = $manager->listTableForeignKeys($table);\n\n $this->generateRules($details, $foreignKeys);\n\n if (config('validate.cache')) {\n Cache::forever($cacheKey, $this->rules);\n }\n\n return $this->rules;\n }", "public function getValidationRules()\n {\n $rules = $this->getBasicValidationRules();\n\n if (in_array($this->type, ['char', 'string', 'text', 'enum'])) {\n $rules[] = 'string';\n if (in_array($this->type, ['char', 'string']) && isset($this->arguments[0])) {\n $rules[] = 'max:' . $this->arguments[0];\n }\n } elseif (in_array($this->type, ['timestamp', 'date', 'dateTime', 'dateTimeTz'])) {\n $rules[] = 'date';\n } elseif (str_contains(strtolower($this->type), 'integer')) {\n $rules[] = 'integer';\n } elseif (str_contains(strtolower($this->type), 'decimal')) {\n $rules[] = 'numeric';\n } elseif (in_array($this->type, ['boolean'])) {\n $rules[] = 'boolean';\n } elseif ($this->type == 'enum' && count($this->arguments)) {\n $rules[] = 'in:' . join(',', $this->arguments);\n }\n\n return [$this->name => join('|', $rules)];\n }", "public function rules()\n {\n $rules = [];\n if ($this->isMethod('post')) {\n $rules = [\n 'vacancy_name' => 'required|string|min:4|max:20',\n 'workers_amount' => 'required|integer|min:1|max:10',\n 'organization_id'=> 'required|integer|exists:organizations,id',\n 'salary' => 'required|integer|min:1|max:10000000',\n ];\n } elseif ($this->isMethod('put')) {\n $rules = [\n 'vacancy_name' => 'required|string|min:4|max:20',\n 'workers_amount' => 'required|integer|min:1|max:10',\n 'organization_id'=> 'required|integer|exists:organizations,id',\n 'salary' => 'required|integer|min:1|max:10000000',\n ];\n }\n return $rules;\n }", "public function validationRules()\n {\n return [];\n }", "public function rules()\n {\n $rules = $this->rules;\n if(Request::isMethod('PATCH')){\n $rules['mg_name'] = 'required|min:2,max:16';\n }\n return $rules;\n }", "function getValidationRules() {\n\t\treturn array(\n\t\t\t'_ID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_EventID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_SourceID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_UserID' => array(\n\t\t\t\t'number' => array(),\n\t\t\t),\n\t\t\t'_HasEvent' => array(\n\t\t\t\t'inArray' => array('values' => array(self::HASEVENT_0, self::HASEVENT_1),),\n\t\t\t),\n\t\t);\n\t}", "public function rules()\n {\n $rules = [];\n switch ($this->method()){\n case 'GET':\n $rules['mobile'] = ['required', 'regex:/^1[3456789]\\d{9}$/'];\n break;\n case 'POST':\n if($this->route()->getActionMethod() == 'sms') {\n $rules['area_code'] = ['digits_between:1,6'];\n if(in_array($this->get('type'), ['signup', 'reset_pay_pwd'])) {\n $rules['mobile'] = ['required', 'digits_between:5,20'];\n if($this->get('type') == 'signup' && !$this->get('area_code')) {\n $this->error('请选择区号');\n }\n }\n $rules['type'] = ['required', Rule::in(\\App\\Models\\Captcha::getSmsType())];\n }\n break;\n }\n return $rules;\n }", "public function rules()\n {\n if ($this->isMethod('post')) {\n return $this->createRules();\n } elseif ($this->isMethod('put')) {\n return $this->updateRules();\n }\n }", "public function rules()\n {\n $rules = [\n 'first_name' => ['required'],\n 'birthdate' => ['required', 'date', 'before:today'],\n ];\n\n if (is_international_session()) {\n $rules['email'] = ['required', 'email'];\n }\n\n if (should_collect_international_phone()) {\n $rules['phone'] = ['phone'];\n }\n\n if (is_domestic_session()) {\n $rules['phone'] = ['required', 'phone'];\n }\n\n return $rules;\n }", "public function rules()\n {\n dd($this->request->get('answer'));\n foreach ($this->request->get('answer') as $key => $val)\n {\n $rules['answer.'.$key] = 'required';\n }\n\n return $rules;\n }", "public function rules()\n {\n return static::$rules;\n }", "function getRules() {\n\t\t$fields = $this->getFields();\n\t\t$allRules = array();\n\n\t\tforeach ($fields as $field) {\n\t\t\t$fieldRules = $field->getValidationRules();\n\t\t\t$allRules[$field->getName()] = $fieldRules;\n\t\t}\n\n\t\treturn $allRules;\n\t}", "public static function getValidationRules(): array\n {\n return [\n 'name' => 'required|string|min:1|max:255',\n 'version' => 'required|float',\n 'type' => 'required|string',\n ];\n }", "public function rules()\n {\n $rules = [\n 'name' => 'required',\n 'phone' => 'required|numeric',\n 'subject' => 'required',\n 'message' => 'required',\n 'email' => 'required|email',\n ];\n\n return $rules;\n }", "public function getValidationRules(): array\n {\n return [\n 'email_address' => 'required|email',\n 'email_type' => 'nullable|in:html,text',\n 'status' => 'required|in:subscribed,unsubscribed,cleaned,pending',\n 'merge_fields' => 'nullable|array',\n 'interests' => 'nullable|array',\n 'language' => 'nullable|string',\n 'vip' => 'nullable|boolean',\n 'location' => 'nullable|array',\n 'location.latitude' => ['regex:/^[-]?(([0-8]?[0-9])\\.(\\d+))|(90(\\.0+)?)$/'], \n 'location.longitude' => ['regex:/^[-]?((((1[0-7][0-9])|([0-9]?[0-9]))\\.(\\d+))|180(\\.0+)?)$/'],\n 'marketing_permissions' => 'nullable|array',\n 'tags' => 'nullable|array'\n ];\n }", "protected function getValidationRules()\n {\n return [\n 'first_name' => 'required|max:255',\n 'last_name' => 'required|max:255',\n 'email' => 'required|email|max:255',\n 'new_password' => 'required_with:current_password|confirmed|regex:' . config('security.password_policy'),\n ];\n }", "public function rules()\n {\n // get 直接放行\n if( request()->isMethod('get') ){\n return []; // 规则为空\n }\n\n // 只在post的时候做验证\n return [\n 'username' => 'required|min:2|max:10', \n 'password' => 'required|min:2|max:10', \n 'email' => 'required|min:2|max:10|email', \n 'phoneNumber' => 'required|min:2|max:10', \n\n ];\n }", "public function rules()\n {\n\n $rules = [\n 'id_tecnico_mantenimiento' => 'required',\n 'id_equipo_mantenimiento' => 'required'\n ];\n\n if ($this->request->has('status')) {\n $rules['status'] = 'required';\n }\n\n if ($this->request->has('log_mantenimiento')) {\n $rules['log_mantenimiento'] = 'required';\n }\n\n return $rules;\n }", "public function rules()\n {\n $this->buildRules();\n return $this->rules;\n }", "public function rules()\n {\n $rules = [];\n\n if ($this->isUpdate() || $this->isStore()) {\n $rules = array_merge($rules, [\n 'name' => 'required|string',\n 'email' => 'email',\n 'password' => 'confirmed|min:6',\n\n ]);\n }\n\n if ($this->isStore()) {\n $rules = array_merge($rules, [\n\n ]);\n }\n\n if ($this->isUpdate()) {\n $rules = array_merge($rules, [\n ]);\n }\n\n return $rules;\n }", "public function rules()\n {\n switch (true) {\n case $this->wantsToList():\n $rules = $this->listRules;\n break;\n case $this->wantsToStore():\n $rules = $this->storeRules;\n break;\n case $this->wantsToUpdate():\n $this->storeRules['email'] = 'required|email|between:5,100|unique:users,email,' . $this->route('administrators');\n\n $rules = $this->storeRules;\n break;\n default:\n $rules = [];\n }\n\n return $rules;\n }", "public function rules()\n {\n if($this->isMethod('post')) {\n return $this->storeRules();\n }\n else if($this->isMethod('put') || $this->isMethod('patch')){\n return $this->updateRules();\n }\n }", "abstract protected function getValidationRules();", "public function rules()\n\t{\n\t\treturn ModelHelper::getRules($this);\n\t}", "public function rules()\n {\n switch ($this->method()) {\n case 'POST':\n return $this->getPostRules();\n case 'PUT':\n return $this->getPutRules();\n }\n }", "public function rules()\n {\n $rules = [\n 'name' => 'required|string|min:2',\n 'email' => \"required|email|unique:users,email, {$this->request->get('user_id')}\",\n 'role_id' => 'required|numeric',\n 'group_id' => 'required|numeric',\n ];\n\n if ($this->request->has('password')){\n $rules['password'] = 'required|min:6';\n }\n\n return $rules;\n }", "public function rules()\n {\n if($this->method() == 'POST')\n {\n return [\n 'reason'=>'required',\n 'date_from'=>'required',\n 'date_to'=>'required',\n 'attachment'=>'required',\n ];\n }\n }", "public function rules()\n {\n $method = $this->method();\n if ($this->get('_method', null) !== null) {\n $method = $this->get('_method');\n }\n // $this->offsetUnset('_method');\n switch ($method) {\n case 'DELETE':\n case 'GET':\n break; \n case 'POST':\n $mailRules = \\Config::get('database.default').'.users';\n break;\n case 'PUT':\n $user = $this->authService->authJWTUserForm();\n $mailRules = \\Config::get('database.default').'.users,email,'.$user->getKey();\n break;\n case 'PATCH':\n break;\n default:\n break;\n }\n \n return [\n 'name' => 'required|string|max:256',\n 'email' => 'required|string|email|max:255|unique:'.$mailRules,\n 'password' => 'required|string|min:3',\n ];\n }", "public function rules() {\n $rule = [\n 'value' => 'bail|required',\n ];\n if ($this->getMethod() == 'POST') {\n $rule += ['type' => 'bail|required'];\n }\n return $rule;\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'DELETE': {\n return [];\n }\n case 'POST': {\n return [\n 'from' => 'required|max:100',\n 'to' => 'required|max:500',\n 'day' => 'required|max:500',\n ];\n }\n case 'PUT':\n case 'PATCH': {\n return [\n 'from' => 'required|max:100',\n 'to' => 'required|max:500',\n 'day' => 'required|max:500',\n ];\n }\n default:\n break;\n }\n\n return [\n //\n ];\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'DELETE': {\n return [];\n }\n case 'POST':\n case 'PUT':\n case 'PATCH': {\n return [\n 'name' => 'required|string|max:255',\n 'iso_code_2' => 'required|string|size:2',\n 'iso_code_3' => 'required|string|size:3',\n ];\n }\n default:\n return [];\n }\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'DELETE':\n return [];\n case 'POST':\n return [\n 'name' => 'required|string',\n 'lastName' => 'string',\n 'gender' => 'boolean',\n 'avatar' => 'sometimes|mimes:jpg,png,jpeg|max:3048'\n ];\n case 'PUT':\n case 'PATCH':\n return [\n 'oldPassword' => 'required|string',\n 'newPassword' => 'required|string',\n ];\n default:\n break;\n }\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'GET':\n case 'DELETE':\n {\n return [\n 'validation' => [\n 'accepted'\n ]\n ];\n }\n case 'POST':\n {\n return [\n 'title' => [\n 'required',\n 'string',\n 'min:3',\n 'max:250'\n ],\n 'body' => [\n 'required',\n 'string',\n 'min:3',\n 'max:250000'\n ],\n 'online' => [\n 'required',\n ],\n 'indexable' => [\n 'required',\n ],\n 'published_at' => [\n 'required',\n ],\n 'published_at_time' => [\n 'required',\n ],\n 'unpublished_at' => [\n 'nullable',\n ],\n 'unpublished_time' => [\n 'nullable',\n ],\n ];\n }\n case 'PUT':\n {\n return [\n 'title' => [\n 'required',\n 'string',\n 'min:3',\n 'max:250'\n ],\n 'body' => [\n 'required',\n 'string',\n 'min:3',\n 'max:250000'\n ],\n 'online' => [\n 'required',\n ],\n 'indexable' => [\n 'required',\n ],\n 'published_at' => [\n 'required',\n ],\n 'unpublished_at' => [\n 'nullable',\n ],\n ];\n }\n case 'PATCH':\n {\n return [];\n }\n default:\n break;\n }\n }", "public function rules()\n {\n if (in_array($this->method(), ['PUT', 'PATCH'])) {\n $user = User::findOrFail(\\Request::input('id'))->first();\n\n array_forget($this->rules, 'email');\n $this->rules = array_add($this->rules, 'email', 'required|email|max:255|unique:users,email,' . $user->id);\n }\n\n return $this->rules;\n }", "public function rules()\n {\n $method = explode('@', $this->route()->getActionName())[1];\n return $this->get_rules_arr($method);\n }", "public function rules()\n {\n $rules = parent::rules();\n $extra_rules = [];\n $rules = array_merge($rules, $extra_rules);\n return $rules;\n }", "public function rules()\n {\n\t\tswitch($this->method()) {\n\t\t\tcase 'POST':\n\t\t\t\t{\n\t\t\t\t\treturn [\n\t\t\t\t\t\t'field_id' => 'integer|required',\n\t\t\t\t\t\t'label' => 'string|required',\n\t\t\t\t\t\t'value' => 'alpha_dash|required',\n\t\t\t\t\t\t'selected' => 'boolean',\n\t\t\t\t\t\t'actif' => 'boolean',\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\tcase 'PUT':\n\t\t\t\t{\n\t\t\t\t\treturn [\n\t\t\t\t\t\t'field_id' => 'integer|required',\n\t\t\t\t\t\t'label' => 'string|required',\n\t\t\t\t\t\t'value' => 'alpha_dash|required',\n\t\t\t\t\t\t'selected' => 'boolean',\n\t\t\t\t\t\t'actif' => 'boolean',\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\tdefault:break;\n\t\t}\n }", "public function rules()\n {\n $this->sanitize();\n return [\n 'event_id' => 'required',\n 'member_id' => 'required',\n 'guild_pts' => 'required',\n 'position' => 'required',\n 'solo_pts' => 'required',\n 'league_id' => 'required',\n 'solo_rank' => 'required',\n 'global_rank' => 'required',\n ];\n }", "public function rules()\n {\n $this->rules['email'] = ['required', 'min:6', 'max:60', 'email'];\n $this->rules['password'] = ['required', 'min:6', 'max:60'];\n\n return $this->rules;\n }", "public function getValidatorRules()\n {\n if ($validator = $this->getValidator()) {\n return $validator->getRulesForField($this->owner);\n }\n \n return [];\n }", "public function getValidationRules() : array;", "public function rules()\n {\n switch ($this->route()->getActionMethod()) {\n case 'login': {\n if ($this->request->has('access_token')) {\n return [\n 'access_token' => 'required',\n 'driver' => 'required|in:facebook,github,google',\n ];\n }\n return [\n 'email' => 'required|email',\n 'password' => 'required|min:6',\n ];\n }\n case 'register': {\n return [\n 'email' => 'required|email|unique:users,email',\n 'password' => 'required|min:6',\n 'name' => 'required',\n ];\n }\n default: return [];\n }\n }", "public function rules()\n {\n Validator::extend('mail_address_available', function($attribute, $value, $parameters, $validator){\n return MailAddressSpec::isAvailable($value);\n });\n Validator::extend('password_available', function($attribute, $value, $parameters, $validator){\n return PassWordSpec::isAvailable($value);\n });\n\n return [\n 'mail_address' => [\n 'required',\n 'mail_address_available'\n ],\n 'password' => [\n 'required',\n 'password_available',\n ],\n ];\n }", "public function rules()\n {\n switch (strtolower($this->method())) {\n case 'get':\n return $this->getMethodRules();\n case 'post':\n return $this->postMethodRules();\n case 'put':\n return $this->putMethodRules();\n case 'patch':\n return $this->patchMethodRules();\n case 'delete':\n return $this->deleteMethodRules();\n }\n }", "public function rules()\n {\n /**\n * This is the original way, expecting post params for each user value\n */\n return [\n 'firstName' => 'required|min:2|max:255',\n 'lastName' => 'required|min:2|max:255',\n 'phone' => 'min:9|max:25',\n 'gender' => 'in:M,V',\n 'dateOfBirth' => 'before:today|after:1890-01-01',\n 'email' => 'email|min:12|max:255',\n ];\n }", "public function getValidationRules(): array {\n\t\t$result = [];\n\t\t\n\t\tforeach ($this->getSections() as $section) {\n\t\t\t$result = array_merge($result, $section->getValidationRules());\n\t\t}\n\t\t\n\t\treturn $result;\n\t}", "public function rules()\n\t{\n\t\t$rule = [];\n\t\tif(Request::path() == 'api/utility/upload-image'){\n\t\t\t$rule = [\n\t\t\t\t'imagePath' => 'required',\n\t\t\t];\n\t\t}else if(Request::path() == 'api/utility/check-transaction'){\n\t\t\t$rule = [\n\t\t\t\t'countNumber' => 'required',\n\t\t\t];\n\t\t}\n\t\treturn $rule;\n\t}", "public function rules()\n {\n $rules = array();\n return $rules;\n }", "public function rules()\n {\n $this->setValidator($this->operation_type);\n return $this->validator;\n }", "public function rules()\n {\n switch($this->method()){\n case 'POST':\n return [\n 'name' => 'required',\n 'app_id' => 'required',\n 'account_id' => 'required',\n 'start_at' => 'required',\n 'end_at' => 'required',\n 'content' => 'required',\n ];\n break;\n default:\n return [];\n break;\n }\n\n }", "protected function get_validation_rules()\n {\n }", "public function rules()\n {\n $rules = [\n 'users' => 'required|array',\n ];\n\n foreach($this->request->get('users') as $key => $user) {\n $rules['users.'. $key . '.name'] = 'required|string|min:3|max:255';\n $rules['users.'. $key . '.phone'] = 'required|regex:/^[0-9\\+\\s]+$/|min:10|max:17';\n $rules['users.'. $key . '.country'] = 'required|string|min:2:max:3';\n }\n\n return $rules;\n }", "public function rules()\n {\n $rules = [\n 'mail_driver' => 'required',\n 'mail_name' => 'required',\n 'mail_email' => 'required',\n ];\n\n $newRules = [];\n\n if($this->mail_driver == 'smtp') {\n $newRules = [\n 'mail_host' => 'required',\n 'mail_port' => 'required|numeric',\n 'mail_username' => 'required',\n 'mail_password' => 'required',\n 'mail_encryption' => 'required',\n ];\n }\n\n return array_merge($rules, $newRules);\n }", "public function rules()\n {\n $rules['name'] = 'required';\n $rules['poa'] = 'required';\n $rules['background'] = 'required';\n $rules['tester_name'] = 'required';\n $rules['location'] = 'required';\n $rules['end_recruit_date'] = 'required';\n $rules['time_taken'] = 'required';\n $rules['payment'] = 'required';\n $rules['objective'] = 'required';\n $rules['method_desc'] = 'required';\n $rules['health_condition'] = 'required';\n $rules['required_applicant'] = 'required|integer';\n $rules['applicant'] = 'nullable';\n $rules['datetime'] = 'required';\n\n return $rules;\n }", "public function rules()\n {\n switch($this->method()) {\n\n case 'PUT':\n {\n return [\n 'company_name' => 'required',\n 'status' => 'required|integer',\n 'notify_url' => 'required',\n 'name' => 'required'\n ];\n }\n case 'POST':\n {\n return [\n 'company_name' => 'required',\n 'status' => 'required|integer',\n 'notify_url' => 'required',\n 'name' => 'required'\n ];\n }\n default:\n return [];\n }\n\n }", "public function rules()\n {\n $rules['name'] = 'required';\n $rules['poa'] = 'required';\n $rules['background'] = 'required';\n $rules['tester_name'] = 'required';\n\n return $rules;\n }", "public function rules()\n {\n switch(Route::currentRouteName()){\n case 'adminBinding' :\n return [\n 'order_id' => 'required|integer',\n 'money' => 'required|numeric',\n ];\n case 'adminUnbinding' :\n return [\n 'order_id' => 'required|integer',\n 'pivot_id' => 'required|integer',\n ];\n case 'adminReceiptSave' :\n case 'adminReceiptUpdate' :\n return [\n 'customer_id' => 'required',\n 'receiptcorp' => 'required',\n 'account' => 'required',\n 'account_id' => 'required',\n 'bank' => 'required',\n 'currency_id' => 'required',\n 'advance_amount' => 'required|numeric',\n 'picture' => 'required',\n 'business_type' => 'required|in:1,2,3,4,5',\n 'exchange_type' => 'required_unless:currency_id,354|in:1,2',\n 'expected_received_at' => 'required|date_format:Y-m-d',\n ];\n case 'adminReceiptExchange' :\n return [\n 'rate' => 'required|numeric',\n ];\n default :\n return [];\n }\n }", "public function rules()\n {\n $rules = [];\n $method = $this->getMethod();\n switch ($method) {\n case 'GET':\n if (Route::currentRouteName() === 'schoolActivity.getSchoolActivity') {\n $rules = [\n ];\n }\n break;\n }\n return $rules;\n }", "public function rules()\n {\n $rules = new Collection();\n\n if (!$this->user() or !$this->user()->addresses()->count()) {\n $rules = $rules->merge($this->addressRules('billing'));\n if ($this->has('different_shipping_address')) {\n $rules = $rules->merge($this->addressRules('shipping'));\n }\n\n return $rules->toArray();\n }\n\n return $rules->merge([\n 'billing_address_id' => 'required|numeric',\n 'shipping_address_id' => 'required|numeric',\n ])->toArray();\n }", "public function rules(): array\n {\n switch ($this->method()) {\n case 'POST':\n return $this->__rules() + $this->__post();\n case 'PUT':\n return $this->__rules() + $this->__put();\n default:\n return [];\n }\n }", "public function defineValidationRules()\n {\n return [];\n }", "public function rules(Request $request)\n {\n return Qc::$rules;\n }", "public function rules()\n {\n switch ($this->method()) {\n case 'POST':\n return [\n 'user_name' => 'nullable|string',\n 'excel' => 'nullable|file|mimes:xlsx',\n 'category' => 'required|int|in:' . implode(',', array_keys(UserMessage::$categories)),\n 'content' => 'required|string|max:500',\n 'member_status' => 'required|int|in:' . implode(',', array_keys(User::$statuses)),\n ];\n break;\n }\n }", "public function rules()\n {\n return [\n 'lead_id' => [\n 'required', 'string',\n ],\n 'api_version' => [\n 'required', 'string',\n ],\n 'form_id' => [\n 'required', 'int',\n ],\n 'campaign_id' => [\n 'required', 'int',\n ],\n 'google_key' => [\n 'required', 'string', new GoogleKeyRule,\n ],\n ];\n }" ]
[ "0.8342703", "0.80143493", "0.7937251", "0.79264987", "0.79233825", "0.79048395", "0.78603816", "0.7790699", "0.77842164", "0.77628785", "0.7737272", "0.7733618", "0.7710535", "0.7691693", "0.76849866", "0.7683038", "0.7683038", "0.7683038", "0.7683038", "0.7683038", "0.7683038", "0.7675849", "0.76724476", "0.76665044", "0.7657698", "0.7641827", "0.7630892", "0.76293766", "0.7617708", "0.76102096", "0.7607475", "0.7602442", "0.7598732", "0.7597544", "0.75924", "0.75915384", "0.7588146", "0.7581354", "0.7555758", "0.755526", "0.7551423", "0.7546329", "0.7541439", "0.75366044", "0.75363225", "0.7530296", "0.7517988", "0.75155175", "0.7508439", "0.75069886", "0.7505724", "0.749979", "0.7495976", "0.74949056", "0.7492888", "0.7491117", "0.74901396", "0.7489651", "0.7486808", "0.7486108", "0.7479687", "0.7478561", "0.7469412", "0.74635684", "0.74619836", "0.7461325", "0.74591017", "0.7455279", "0.745352", "0.7453257", "0.7449877", "0.74486", "0.7441391", "0.7440429", "0.7435489", "0.7435326", "0.74341524", "0.7430354", "0.7429103", "0.7423808", "0.741936", "0.74152505", "0.7414828", "0.741382", "0.74126065", "0.74105227", "0.740555", "0.7404385", "0.74040926", "0.74015605", "0.73905706", "0.73837525", "0.73732615", "0.7371123", "0.7369176", "0.73619753", "0.73554605", "0.73448825", "0.7344659", "0.73427117", "0.73357755" ]
0.0
-1
Display a listing of the resource.
public function index() { $MenuModel = new MenuModel(); $data = $MenuModel->list_data(); $data = $this->Treecate($data); return view('menu.list',['data'=>$data]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function indexAction()\n {\n $limit = $this->Request()->getParam('limit', 1000);\n $offset = $this->Request()->getParam('start', 0);\n $sort = $this->Request()->getParam('sort', array());\n $filter = $this->Request()->getParam('filter', array());\n\n $result = $this->resource->getList($offset, $limit, $filter, $sort);\n\n $this->View()->assign($result);\n $this->View()->assign('success', true);\n }", "public function listing();", "function index() {\n\t\t$this->show_list();\n\t}", "public function actionList() {\n $this->_getList();\n }", "public function listAction()\n {\n $model = $this->_getPhotoModel();\n $entries = $model->fetchEntries($this->_getParam('page', 1));\n\n $this->view->url = 'http://' . $this->_request->getHttpHost() . $this->_request->getBaseUrl(); \n $this->view->paginator = $entries;\n }", "public function index()\n {\n $items = Item::all();\n return ItemForShowResource::collection($items);\n }", "public function index()\n {\n return Resource::collection(($this->getModel())::paginate(10));\n }", "function index()\n\t{\n\t\t$this->_list();\n\t\t$this->display();\n\t}", "public function listingAction(){\n if (!LoginHelper::isAdmin()){\n Router::redirect('home', '<p class=\"alert alert-danger\">Unauthorized</p>');\n }\n $this->view->render('patient/list', Patient::all());\n }", "public function index()\n {\n //\n $list = $this->obj->all();\n\n return $this->render('index', compact('list'));\n }", "public function action_index()\n\t{\n\t\t$this->template->title = 'Resources';\n\t\t$this->view = View::factory('admin/resource/index');\n\t\t$this->template->scripts[] = 'media/js/jquery.tablesorter.min.js';\n\t\t$this->template->scripts[] = 'media/js/admin/resource.js';\n\t\t\n\t\t$resources = Sprig::factory('resource')->load(NULL, FALSE);\n\t\tif (!empty($resources))\n\t\t{\n\t\t\t$this->view->resources = $resources->as_array();\n\t\t}\n\t}", "function listing()\n\t\t{\n\t\t// en $this->_view->_listado para poder acceder a el desde la vista.\n\t\t\t$this->_view->_listado = $listado = $this->_instrumentoModel->getInstrumento();\n\t\t\t$this->_view->render('listing', '', '',$this->_sidebar_menu);\n\t\t}", "public function listAction()\n {\n $em = $this->getDoctrine()->getManager();\n \n $todos = $em->getRepository(Todo::class)->findAll();\n \n return $this->render('todo/index.html.twig', array(\n 'todos' => $todos,\n ));\n }", "public function index()\n\t{\n $this->authorize('list', Instance::class);\n\n\t\treturn $this->ok($this->repo->paginate($this->request->all()));\n\t}", "public function actionRestList() {\n\t $this->doRestList();\n\t}", "public function listing()\n\t{\n\t\t$hospitalID = $this->request->getSession()->read(\"hospital_id\") ? $this->request->getSession()->read(\"hospital_id\") : \"\";\n\t\t\n\t\t$patientMonitored = 1;\n\t\t$patientActive = 1;\n\t\t\n\t\t//GET ALL PATIENTS\n\t\t$patientsData = $this->Patients->allPatients($hospitalID,$patientMonitored,$patientActive);\n\t\t//GET ALL PATIENTS\n\t\t\n\t\t//echo \"<pre>\"; print_r($patientsData);die;\n\t\t$this->set(compact(\"patientsData\"));\n\t}", "public function listAction()\n {\n $htmlpage = '<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"UTF-8\">\n <title>todos list!</title>\n </head>\n <body>\n <h1>todos list</h1>\n <p>Here are all your todos:</p>\n <ul>';\n \n $em = $this->getDoctrine()->getManager();\n $todos = $em->getRepository(Todo::class)->findAll();\n foreach($todos as $todo) {\n $htmlpage .= '<li>\n <a href=\"/todo/'.$todo->getid().'\">'.$todo->getTitle().'</a></li>';\n }\n $htmlpage .= '</ul>';\n\n $htmlpage .= '</body></html>';\n \n return new Response(\n $htmlpage,\n Response::HTTP_OK,\n array('content-type' => 'text/html')\n );\n }", "public function index()\n {\n // Get Persons\n $person = Person::paginate(10);\n\n //Return collection of person as a resource\n return PersonResource::collection($person);\n }", "public function listAction() {\n\t\t$this->view->title = $this->translator->translate(\"Invoice list\");\n\t\t$this->view->description = $this->translator->translate(\"Here you can see all the invoices.\");\n\t\t$this->view->buttons = array(array(\"url\" => \"/admin/invoices/new/\", \"label\" => $this->translator->translate('New'), \"params\" => array('css' => null)));\r\n\t\t$this->datagrid->setConfig ( Invoices::grid() )->datagrid ();\n\t}", "public function listAll()\n\t{\n\t\t$this->render(self::PATH_VIEWS . '/list', [\n\t\t\t'pages' => $this->pagesDb->findAll('id', 'DESC'),\n\t\t]);\n\t}", "public function list()\n {\n // récupérer les données : toutes les catégories enregistrées\n $productList = Product::findAll();\n\n $this->show('product/list', [\n 'productList' => $productList\n ]);\n }", "public function index()\n {\n // CRUD -> Retrieve --> List\n // BREAD -> Browse Read Edit Add Delete\n // return Item::all();\n return view('list_items',compact('items'));\n }", "public function index()\n {\n // Get manufacturers\n $manufacturers = Manufacturer::orderBy('created_at', 'desc')->paginate(15);\n\n // Return collection of manufacturers as a resource\n return ManufacturerResource::collection($manufacturers);\n }", "public function index()\n {\n return ArtistResource::collection(Artist::orderBy('created_at', 'desc')->get());\n }", "public function indexAction() {\n\t\t$page = intval($this->getInput('page'));\n\t\t$perpage = $this->perpage;\n\t\t\n\t\tlist(,$files) = Lock_Service_FileType::getAllFileType();\n\t\t$data = array();\n\t\tforeach ($files as $key=>$value) {\n\t\t\t$data[$key]['id'] = $value['id'];\n\t\t\t$data[$key]['title'] = $value['name'];\n\t\t}\n\t\tlist($total, $filetype) = Lock_Service_FileType::getList($page, $perpage);\n\t\t$this->assign('filetype', $filetype);\n\t\t$this->assign('pager', Common::getPages($total, $page, $perpage, $this->actions['listUrl'].'/?'));\n\t\t$this->assign('data', json_encode($data));\n\t}", "public function listAction()\n {\n $qb = $this->getRepository()->queryAll();\n\n $view = new ImportListView;\n $view->imports = $qb->getQuery()->execute();\n\n return $this->templating->renderResponse('InfiniteImportBundle:Import:list.html.twig', array(\n 'data' => $view\n ));\n }", "public function index()\n\t{\n\t\t//Return model all()\n\t\t$instances = $this->decorator->getListingModels();\n\n\t\treturn View::make($this->listingView, array(\n\t\t\t'instances' => $instances,\n\t\t\t'controller' => get_class($this), \n\t\t\t'modelName' => class_basename(get_class($this->decorator->getModel())),\n\t\t\t'columns' => $this->getColumnsForInstances($instances),\n\t\t\t'editable' => $this->editable\n\t\t));\n\t}", "public function index()\n {\n return InfografiResources::collection(\n Infografi::orderBy('date', 'desc')->get()\n );\n }", "public function listAction()\n\t {\n\t\t\t$this->_forward('index');\n \n\t\t}", "public function index()\n {\n $this->list_view();\n }", "public function index()\n {\n $this->list_view();\n }", "public function index()\n {\n $this->list_view();\n }", "public function listAction()\n {\n $defaults = array(\n 'page' => null,\n 'order' => null,\n 'limit' => null,\n 'offset' => null,\n 'filter' => array(),\n );\n $body = $this->getRequest()->getBody();\n $options = $body + $defaults;\n\n // Process the options\n if (is_string($options['order'])) {\n $options['order'] = array_map('trim', explode(',', $options['order']));\n }\n if (is_string($options['page'])) {\n $options['page'] = (int)$options['page'];\n }\n if (is_string($options['limit'])) {\n $options['limit'] = (int)$options['limit'];\n }\n if (is_string($options['offset'])) {\n $options['offset'] = (int)$options['offset'];\n }\n $filter = $options['filter'];\n unset($options['filter']);\n\n $options = array_filter($options);\n\n return $this->getBinding()->find($filter, $options);\n }", "public function index()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the resources from the model */\n $resources = $this->resourcesList($this->model);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.index\")) {\n $view = \"admin.{$this->name}.index\";\n } else {\n $view = 'admin.includes.actions.index';\n }\n\n /* Display a listing of the resources */\n return view($view)\n ->with('resources', $resources)\n ->with('module', $this->module);\n }", "public function index()\n\t{\n\t\t$data['lists'] = $this->mdl_student->get_all();\n\t\t$this->template->set('title', 'Student Hostel List');\n\t\t$this->template->load('template', 'contents', 'student_hostel/student_hostel_list', $data);\n\t}", "public function index()\n {\n $modules = Module::all();\n return Resource::collection($modules);\n }", "public function index()\n {\n // List all resources from user entity\n $users = User::all();\n\n return $this->showAll($users);\n }", "public function index()\n {\n // Get todos\n $todos = Todo::orderBy('created_at', 'desc')->paginate(3);\n\n // Return collection of articles as a resource\n return TodoResource::collection($todos);\n }", "public function index()\n {\n return Resources::collection(Checking::paginate());\n }", "public function index()\n {\n return CourseListResource::collection(\n Course::query()->withoutGlobalScope('publish')\n ->latest()->paginate()\n );\n }", "public function index()\n {\n $cars = Car::paginate(15);\n return CarResource::collection($cars);\n }", "public function index()\n {\n // Get articles\n $articles = Article::orderBy('created_at', 'desc')->paginate(5);\n\n // Return collection of articles as a resource\n return ArticleResource::collection($articles);\n }", "public function index()\n {\n $authors = Author::paginate(10);\n\n return AuthorResource::collection($authors);\n }", "public function index()\n {\n //Get Books\n $books = Book::paginate(10);\n \n if ($books) {\n return (BookResource::collection($books))->additional([\n 'status_code' => 200,\n 'status' => 'success',\n ]);\n } else {\n return (BookResource::collection([]))->additional([\n 'status_code' => 200,\n 'status' => 'success',\n ]);\n }\n return view('index')->with('data', $books);\n }", "public function view(){\n\t\t$this->buildListing();\n\t}", "public function index()\n {\n $books = Book::latest()\n ->paginate(20);\n\n return BookResource::collection($books);\n }", "public function index()\n {\n $listing = Listing::orderBy('id', 'desc')->paginate(10);\n return view('listings.index')->withListings($listing);\n }", "public function listAction()\n {\n $this->_getSession()->setFormData([]);\n\n $this->_title($this->__('Training Cms'))\n ->_title($this->__('Pages'));\n\n $this->loadLayout();\n\n $this->_setActiveMenu('training_cms');\n $this->_addBreadcrumb($this->__('Training Cms'), $this->__('Training Cms'));\n $this->_addBreadcrumb($this->__('Pages'), $this->__('Pages'));\n\n $this->renderLayout();\n }", "public function index()\n {\n $services = $this->serviceRepository->paginate();\n\n return ServiceResource::collection($services);\n }", "public function index()\n {\n $resources = ResourceManagement::paginate(5);\n $users = User::get();\n\n return view('resources-mgmt/index', ['resources' => $resources, 'users' => $users]);\n }", "public function index()\n {\n $catalogs = Catalog::where('status', '=', Catalog::PUBLICADO)\n ->orderBy('id', 'DESC')->get();\n \n $data = CatalogResource::collection($catalogs);\n\n return [\n 'items' => $data,\n 'mensaje' => ''\n ];\n }", "public function listAction(){\n // In a controller this can be:\n // $this->request->getQuery('page', 'int'); // GET\n $currentPage = $this->request->getPost('pageindex', 'int'); // POST\n $pageNum = ($currentPage == null) ? 1 : $currentPage;\n\n // The data set to paginate\n $message = new Notice();\n $results = $message->getMsg4Admin();\n\n // Create a Model paginator, show 10 rows by page starting from $currentPage\n $paginator = new PaginatorArray(\n array(\n \"data\" => $results,\n \"limit\" => 10,\n \"page\" => $pageNum\n )\n );\n\n // Get the paginated results\n $page = $paginator->getPaginate();\n\n return $this->response->setJsonContent($page);\n\n }", "public function list()\n {\n try {\n return $this->success($this->service->list());\n } catch (\\Exception $exception) {\n return $this->error($exception->getMessage());\n }\n }", "public function index()\n {\n return $this->sendResponse(CrisisResource::collection(Crisis::paginate(10)), 'Data fetched successfully');\n }", "public function index()\n\t{\n\t\t$%Alias = new %Model();\n\t\t$params = array();\n\t\t\n\t\t$Paginator = new Paginator( $%Alias->findSize( $params ), $this->getLimit(), $this->getPage() );\n\t\t$this->getView()->set( '%Aliass', $%Alias->findList( $params, 'Id desc', $this->getOffset(), $this->getLimit() ) );\n\t\t$this->getView()->set( 'Paginator', $Paginator );\n\t\treturn $this->getView()->render();\n\t}", "public function listAction() {}", "public function index()\n {\n\n return RecipeResource::collection(Recipe::all());\n }", "public function index()\n {\n $this->indexPage('list-product', 'List Product');\n }", "public function listAction()\n {\t\n\t\t$this->removeSession();\n\t\t$this->verifySessionRights();\n\t\t$this->setActivity(\"List view\");\n $em = $this->getDoctrine()->getManager();\n $oRepClient = $em->getRepository('BoAdminBundle:Client');\n\t\t$nb_tc = $oRepClient->getTotal();\n\t\t//get page\n\t\t$page = $this->get('session')->get('page');\n\t\tif($page==null){\n\t\t\t$page=1;\n\t\t\t$this->get('session')->set('page',1);\n\t\t}\n\t\t//get number line per page\n\t\t$nb_cpp = $em->getRepository('BoAdminBundle:Param')->getParam(\"display_list_page_number\",1);\n\t\t$nb_pages = ceil($nb_tc/$nb_cpp);\n\t\t$offset = $page>0?($page-1) * $nb_cpp:0;\n\t\t$clients = $em->getRepository('BoAdminBundle:Client')->findBy(array(),array('id' => 'desc'),$nb_cpp,$offset);\n $form = $this->createForm('Bo\\AdminBundle\\Form\\ClientType', new Client());\n return $this->render('client/index.html.twig', array(\n 'clients' => $clients,\n\t\t\t'page' => $page, // forward current page to view,\n\t\t\t'nb_pages' => $nb_pages, //total number page,\n 'form' => $form->createView(),\n\t\t\t'total'=>$nb_tc, // record number.\n\t\t\t'nb_cpp' => $nb_cpp,// line's number to display\n\t\t\t'pm'=>\"contracts\",\n\t\t\t'sm'=>\"client\",\n ));\n }", "public function index()\n {\n return AcResource::collection(Ac::latest()->paginate()); //\n }", "public function executeList()\n {\n $this->setTemplate('list');\n }", "public function indexAction()\n {\n $books = Book::getAll();\n\n View::renderTemplate('Books/index.html', [\n 'books' => $books\n ]);\n }", "function listing() {\r\n\r\n }", "public function listar() {\n $rs = $this->model->listar();\n\n echo $this->toJson($rs);\n }", "public function index()\n {\n return BookResource::collection(Book::orderby('id')->get());\n }", "public function doRestList()\n {\n $this->outputHelper( \n 'Records Retrieved Successfully', \n $this->getModel()->with($this->nestedRelations)->filter($this->restFilter)->orderBy($this->restSort)->limit($this->restLimit)->offset($this->restOffset)->findAll(),\n $this->getModel()->with($this->nestedRelations)->filter($this->restFilter)->count()\n );\n\t}", "public function index()\n {\n $client = Client::paginate();\n return ClientResource::collection($client);\n }", "public function index()\n {\n return TagResource::collection(\n Tag::orderBy('name', 'ASC')->paginate(request('per_page', 10))\n );\n }", "public function _index(){\n\t $this->_list();\n\t}", "public function index()\n\t{\n\t\t$data['lists'] = $this->gallery_mdl->get_all();\n\t\t$this->template->set('title', 'Gallery');\n\t\t$this->template->render('template', 'list', $data);\n\t}", "function drush_restapi_list() {\n\n $resources = restapi_get_resources();\n $last_module = NULL;\n $rows = [\n [dt('Module'), dt('Path'), dt('Class')],\n ];\n\n foreach($resources as $resource) {\n if ($last_module != $resource->getModule()) {\n $module = $last_module = $resource->getModule();\n }\n else {\n $module = '';\n }\n $rows[] = [$module, $resource->getPath(), $resource->getClass()];\n }\n\n drush_print_table($rows, TRUE);\n drush_log(dt('Displaying !count total resources', [\n '!count' => count($resources),\n ]), 'ok');\n\n}", "public function index()\n {\n $this->booklist();\n }", "public function index()\n {\n //\n $accounts = accounts::paginate(15);\n\n //return the collection of employees as a resource\n return accountResource::collection($accounts);\n\n\n }", "public function index()\n {\n $items = Item::all();\n return view('items::list_items',compact('items'));\n }", "public function index()\n {\n // Get houses\n $houses = House::orderBy('created_at', 'desc')->paginate(self::PAGINATE);\n \n // Return collection of houses\n \n return HouseResource::collection($houses);\n }", "public function index()\n {\n $products = Product::paginate(6);\n return ProductResource::collection($products);\n }", "public function index() {\n $this->template->allFoundItems = Found::showAll();\n $this->template->display( 'index.html.php' );\n }", "public function indexAction() {\n $this->_forward('list');\n }", "public function index()\n {\n $data = Productcategory::paginate(10);\n\t\treturn ProductcategoryResource::Collection($data);\n }", "public function index()\n {\n return SongResource::collection(\\App\\Song::orderBy('created_at', 'desc')->get());\n }", "public function ListView()\n\t{\n\t\t\n\t\t// Requer permissão de acesso\n\t\t$this->RequirePermission(Usuario::$P_ADMIN,\n\t\t\t\t'SecureExample.LoginForm',\n\t\t\t\t'Autentique-se para acessar esta página',\n\t\t\t\t'Você não possui permissão para acessar essa página ou sua sessão expirou');\n\t\t\n\t\t//$usuario = Controller::GetCurrentUser();\n\t\t//$this->Assign('usuario',$usuario);\n\t\t$this->Render();\n\t}", "public function index () {\n permiss ( 'role.list' );\n\n $data = $this->entity\n ->orderBy('created_at', 'desc')->get();\n\n return new ModelResource($data);\n }", "public function showResources()\n {\n $resources = Resource::get();\n return view('resources', compact('resources'));\n }", "public function index()\n {\n //get articless\n $articles = Article::paginate(15);\n\n //Return collection of article has a resource\n return ArticleResource::collection($articles);\n\n }", "public function actionList() {\n header(\"Content-type: application/json\");\n $verb = $_SERVER[\"REQUEST_METHOD\"];\n\n if ($verb === 'GET') {\n echo \"{\\\"data\\\":\" . CJSON::encode(Donneur::model()->findAll()) . \"}\";\n } else if ($verb == 'POST') {\n if (Donneur::model()->exists('id' === $_POST['id'])) {\n $this->actionListUpdate($_POST);\n } else {\n $this->actionListPost();\n }\n } else if ($verb == 'DELETE') {\n $this->actionListDelete();\n }\n }", "public function list()\n {\n return $this->http->request(HttpMethods::GET, $this->endpoint);\n }", "public function indexAction(){\n $data = array(\n 'collection' => $this->model->getCollection(),\n \n ); \t\n return $this->getView($data);\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $entities = $em->getRepository('DiverPriceLisrBundle:Items')->findAll();\n\n return $this->render('DiverPriceLisrBundle:Items:index.html.twig', array(\n 'entities' => $entities,\n ));\n }", "public function actionIndex()\n {\n $dataProvider = new ActiveDataProvider([\n 'query' => Slaves::find(),\n ]);\n\n return $this->render('index', [\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function listAction() {\n\t\t// Recogemos el repositorio\n\t\t$repository = $this->getDoctrine() ->getRepository('AppBundle:Product');\n\t\n\t\t// Recuperamos todos los productos.\n\t\t$products = $repository->findAll();\n\t\t// Pasamos a la plantilla el aray products\n\t\treturn $this->render('product/listActionProduct.html.twig', array( 'products' => $products));\n\t\n\t}", "public function listAction()\n\t {\n\t\t$model = $this->_getModel();\n\t\t$result = $model->getLayouts();\t\n\t\t$page = (int)($this->_request->getParam('page')); \n\t\tif(count($result) > 0)\n\t\t{ \n\t\t\tGlobals::doPaging($result, $page, $this->view);\n\t\t}\n\t\t\t\t\n\t\t$this->view->page = $page;\n\t }", "public function actionList()\n {\n // get model\n $model = new $this->_model('search');\n $model->unsetAttributes();\n\n // set filter\n if (isset($_GET[$this->_model])) {\n $model->attributes = $_GET[$this->_model];\n }\n $model->u_cms_album_id = $_GET['album'];\n\n // search\n $dataProvider = $model->search(Yii::app()->language);\n // sort\n $sort = $dataProvider->getSort();\n // route\n $sort->route = $this->id . '/list';\n\n // pagination parameters\n $pagination = $dataProvider->getPagination();\n $pagination->route = $this->id . '/list';\n $pagination->pageSize = UInterfaceSetting::model()->getSettings($this->id . ':' . $this->module->id, Yii::app()->user->id)->page_size;\n $pagination->itemCount = $dataProvider->totalItemCount;\n\n // datas\n $datas = $dataProvider->getData();\n\n // related datas\n $relatedDatas = $this->_loadRelatedData();\n\n // template\n $template = isset($_REQUEST['partial']) ? 'list/_table' : 'list/main';\n\n $jsonParams = array();\n if (Yii::app()->request->isAjaxRequest) {\n // filters\n $filtersDatas = array();\n if (isset($_GET[$this->_model])) {\n $filtersDatas[$this->_model] = $_GET[$this->_model];\n }\n if (isset($_GET[$sort->sortVar])) {\n $filtersDatas[$sort->sortVar] = $_GET[$sort->sortVar];\n }\n\n $jsonParams = array(\n 'filters' => http_build_query($filtersDatas)\n );\n }\n\n $this->dynamicRender(\n $template,\n array(\n 'dataView' => new $this->crudComponents['listDataView'](\n $datas, $relatedDatas, $model, $sort, $pagination, $this\n )\n ),\n $jsonParams\n );\n }", "public function index()\n {\n return view('listings.index')->with('listings', Listing::all());\n }", "public function get_index()\n\t{\n\t\t$pages = Page::recent_available()->paginate(30);\n\t\t$table = Cello\\Presenter\\Page::table($pages);\n\t\t$data = array(\n\t\t\t'eloquent' => $pages,\n\t\t\t'table' => $table,\n\t\t);\n\n\t\tSite::set('title', __('cello::title.pages.list'));\n\n\t\treturn View::make('cello::api.resources.index', $data);\n\t}", "public function index()\n {\n return ProductResource::collection(Product::latest()->paginate(10));\n }", "public function index()\n {\n $category = GalleryCategory::paginate(15);\n\n // return collection of category as a resource.\n return Resource::collection($category);\n }", "public function index()\n {\n //\n $news = News::latest()->paginate(18);\n\n return NewsResource::collection($news);\n }", "public function indexAction() {\n\t\t$list_info = Zend_Registry::get('list_info');\n if (!Engine_Api::_()->core()->hasSubject('list_listing')) {\n return $this->setNoRender();\n }\n \n $this->view->expiry_setting = Engine_Api::_()->list()->expirySettings();\n\n //GET SUBJECT\n $this->view->list = $list = Engine_Api::_()->core()->getSubject('list_listing');\n\n\t\t//GET CATEGORY TABLE\n\t\t$this->view->tableCategory = Engine_Api::_()->getDbTable('categories', 'list');\n\n //GET CATEGORIES NAME\n\t\t$this->view->category_name = $this->view->subcategory_name = $this->view->subsubcategory_name = '';\n\n\t\tif(!empty($list->category_id)) {\n\t\t\tif($this->view->tableCategory->getCategory($list->category_id))\n\t\t\t$this->view->category_name = $this->view->tableCategory->getCategory($list->category_id)->category_name;\n\n\t\t\tif(!empty($list->subcategory_id)) {\n\t\t\t\tif($this->view->tableCategory->getCategory($list->subcategory_id))\n\t\t\t\t$this->view->subcategory_name = $this->view->tableCategory->getCategory($list->subcategory_id)->category_name;\n\n\t\t\t\tif(!empty($list->subsubcategory_id)) {\n\t\t\t\t\tif($this->view->tableCategory->getCategory($list->subsubcategory_id))\n\t\t\t\t\t$this->view->subsubcategory_name = $this->view->tableCategory->getCategory($list->subsubcategory_id)->category_name;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n //GET LISTING TAGS\n $this->view->listTags = $list->tags()->getTagMaps();\n\n\t\t//GET OTHER DETAILS\n\t\t$this->view->list_description = Zend_Registry::get('list_descriptions');\n $this->view->addHelperPath(APPLICATION_PATH . '/application/modules/Fields/View/Helper', 'Fields_View_Helper');\n $this->view->fieldStructure = Engine_Api::_()->fields()->getFieldsStructurePartial($list);\n\t\tif(empty($list_info)){ return $this->setNoRender(); }\n }", "public function index()\n {\n return $this->service->fetchResources(Author::class, 'authors');\n }", "public function index()\n {\n return view('admin.resources.index');\n }", "public function doRestList() {\n\t\t$this->outputHelper ( 'Collections Retrieved Successfully', $this->getModel ()->with ( $this->nestedRelations )->filter ( $this->restFilter )->orderBy ( $this->restSort )->limit ( $this->restLimit )->offset ( $this->restOffset )->findAll (), $this->getModel ()->with ( $this->nestedRelations )->filter ( $this->restFilter )->count () );\n\t}" ]
[ "0.7446777", "0.736227", "0.73005503", "0.72478926", "0.71631265", "0.71489686", "0.7131636", "0.7105969", "0.71029514", "0.7101372", "0.70508176", "0.6995128", "0.69890636", "0.6934895", "0.6900203", "0.6899281", "0.6891734", "0.6887235", "0.68670005", "0.6849741", "0.6830523", "0.6802689", "0.6797", "0.67957735", "0.67871135", "0.6760129", "0.67427456", "0.6730486", "0.67272323", "0.67255723", "0.67255723", "0.67255723", "0.67177945", "0.6707866", "0.6706713", "0.6704375", "0.6664782", "0.6662871", "0.6660302", "0.6659404", "0.6656656", "0.6653517", "0.6647965", "0.6620322", "0.66185474", "0.6618499", "0.6606105", "0.6600617", "0.65996987", "0.6594775", "0.6587389", "0.6585109", "0.6581641", "0.6581017", "0.6577157", "0.65747666", "0.6572513", "0.65721947", "0.6570553", "0.65646994", "0.6563556", "0.6554194", "0.65529937", "0.65460825", "0.65368485", "0.653429", "0.65328294", "0.6526759", "0.6526695", "0.6526284", "0.65191334", "0.65183175", "0.65174305", "0.651703", "0.65141153", "0.6507088", "0.65061647", "0.6504046", "0.64942145", "0.6491893", "0.64883405", "0.6486392", "0.6485077", "0.64846045", "0.6478858", "0.64756656", "0.64726377", "0.6471126", "0.64701074", "0.6467418", "0.6462195", "0.64618355", "0.6459199", "0.6457831", "0.6454631", "0.64533997", "0.6451915", "0.6450861", "0.6449301", "0.64492667", "0.64469045" ]
0.0
-1
Show the form for creating a new resource.
public function create() { $MenuModel=new MenuModel(); $data= $MenuModel->p_list(); //dd($data); return view('menu.create',['data'=>$data]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function create()\n {\n return $this->showForm('create');\n }", "public function create()\n {\n return $this->showForm('create');\n }", "public function create()\n {\n return view('admin.resources.create');\n }", "public function create(){\n\n return view('resource.create');\n }", "public function create()\n\t{\n\t\treturn $this->showForm('create');\n\t}", "public function create()\n {\n return \"Display a form for creating a new catalogue\";\n }", "public function newAction()\n {\n $entity = new Resource();\n $current = $this->get('security.context')->getToken()->getUser();\n $entity->setMember($current);\n $form = $this->createCreateForm($entity);\n\n return array(\n 'nav_active'=>'admin_resource',\n 'entity' => $entity,\n 'form' => $form->createView(),\n );\n }", "public function create()\n {\n return view ('forms.create');\n }", "public function create ()\n {\n return view('forms.create');\n }", "public function create()\n\t{\n\t\treturn view('faith.form');\n\t}", "public function create(NebulaResource $resource): View\n {\n $this->authorize('create', $resource->model());\n\n return view('nebula::resources.create', [\n 'resource' => $resource,\n ]);\n }", "public function create()\n {\n return view(\"request_form.form\");\n }", "public function create()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.create\")) {\n $view = \"admin.{$this->name}.create\";\n } else {\n $view = 'admin.includes.actions.create';\n }\n\n /* Show the form for creating a new resource. */\n return view($view)\n ->with('name', $this->name);\n }", "public function newAction()\n\t{\n\t\t$this->render( View::make( 'schools/form' , array(\n\t\t\t'title' => 'Ajouter une nouvelle &eacute;cole'\n\t\t) ) );\n\t}", "public function create()\n {\n return view($this->forms . '.create');\n }", "public function create()\n {\n return view('restful.add');\n }", "public function create()\n {\n $resource = (new AclResource())->AclResource;\n\n //dd($resource);\n return view('Admin.acl.role.form', [\n 'resource' => $resource\n ]);\n }", "public function create()\n {\n return view('admin.createform');\n }", "public function create()\n {\n return view('admin.forms.create');\n }", "public function create()\n {\n return view('backend.student.form');\n }", "public function newAction()\n {\n $breadcrumbs = $this->get(\"white_october_breadcrumbs\");\n $breadcrumbs->addItem('Inicio', $this->get('router')->generate('admin.homepage'));\n $breadcrumbs->addItem($this->entityDescription, $this->get(\"router\")->generate(\"admin.$this->entityName.index\"));\n $breadcrumbs->addItem('Nuevo');\n\n $entity = $this->getManager()->create();\n $form = $this->getForm($entity);\n\n return $this->render('AdminBundle:Default:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'metadata' => $this->getMetadata()\n ));\n }", "public function create()\n {\n return view('client.form');\n }", "public function create()\n {\n // Nos regresa la vista del formulario\n return view('project.form');\n }", "public function create()\n {\n return view('Form');\n }", "public function newAction(){\n \n $entity = new Resourceperson();\n $form = $this->createAddForm($entity);\n\n \n return $this->render('ABCRspBundle:rsp:add.html.twig',array('entity'=>$entity,'form'=> $form->createView()));\n }", "public function createForm()\n\t{\n\t\treturn view('post.new');\n\t}", "public function create()\n {\n return view('admin.form.create', ['form' => new Form]);\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n $title = $this->title;\n $subtitle = \"Adicionar cliente\";\n\n return view('admin.clients.form', compact('title', 'subtitle'));\n }", "public function create()\n {\n return view('backend.schoolboard.addform');\n }", "public function create()\n\t{\n\t\treturn view('info.forms.createInfo');\n\t}", "public function create()\n {\n //\n return view('form');\n }", "public function create()\n {\n return view('rests.create');\n }", "public function create()\n {\n return $this->showForm();\n }", "public function create()\n {\n return $this->showForm();\n }", "public function create()\n {\n return view(\"Add\");\n }", "public function create(){\n return view('form.create');\n }", "public function create()\n {\n // Show the page\n return view('admin.producer.create_edit');\n }", "public function create()\n {\n\n return view('control panel.student.add');\n\n }", "public function newAction() {\n\t\t\n\t\t$this->view->form = $this->getForm ( \"/admin/invoices/process\" );\n\t\t$this->view->title = $this->translator->translate(\"New Invoice\");\n\t\t$this->view->description = $this->translator->translate(\"Create a new invoice using this form.\");\n\t\t$this->view->buttons = array(array(\"url\" => \"#\", \"label\" => $this->translator->translate('Save'), \"params\" => array('css' => null,'id' => 'submit')),\r\n\t\t\t\t\t\t\t array(\"url\" => \"/admin/invoices/list\", \"label\" => $this->translator->translate('List'), \"params\" => array('css' => null)));\n\t\t$this->render ( 'applicantform' );\n\t}", "public function create()\n {\n $data['action'] = 'pengiriman.store';\n return view('pengiriman.form', $data);\n }", "public function create()\n {\n return $this->cView(\"form\");\n }", "public function newAction()\n {\n // Création de l'entité et du formulaire.\n $client = new Client();\n $formulaire = $this->createForm(new ClientType(), $client);\n \n \n \n // Génération de la vue.\n return $this->render('KemistraMainBundle:Client:new.html.twig',\n array('formulaire' => $formulaire->createView()));\n }", "public function create()\n {\n return view(\"dresses.form\");\n }", "public function create()\n\t{\n\t\treturn View::make('new_entry');\n\t}", "public function createAction()\n {\n// $this->view->form = $form;\n }", "public function create()\n {\n return view('bank_account.form', ['mode' => 'create']);\n }", "public function create()\n {\n return view('fish.form');\n }", "public function create()\n {\n return view('users.forms.create');\n }", "public function create()\n {\n $this->setFormFields($this->getCreateFormFields());\n $form = $this->getCreateForm();\n\n return view($this->getViewName('create'), [\n 'crudSlug' => $this->slug,\n 'form' => $form,\n ]);\n }", "public function create()\n\t{\n\t\treturn view('admin.estadoflete.new');\n\t}", "public function create()\n {\n $person = new Person;\n return view('contents.personform')->with(compact('person') );\n }", "public function createAction(){\n \t$this->view->placeholder('title')->set('Create');\n \t$this->_forward('form');\n }", "public function create()\n {\n Gate::authorize('app.products.create');\n\n return view('backend.products.form');\n }", "public function create()\n {\n return view('essentials::create');\n }", "public function create()\n {\n return view('student.add');\n }", "public function create()\n\t{\n\t\treturn view('loisier/create');\n\t}", "public function create()\n {\n return view('url.form');\n }", "public function newAction()\n {\n $entity = new Facture();\n $factureType = new FactureType();\n\t\t$factureType->setUser($this->get('security.context')->getToken()->getUser());\n $form = $this->createForm($factureType, $entity);\n\n return $this->render('chevPensionBundle:Facture:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function newAction()\n {\n $entity = new Chofer();\n $form = $this->createForm(new ChoferType(), $entity, ['user' => $this->getUser()]);\n\n return $this->render('ChoferesBundle:Chofer:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'css_active' => 'chofer',\n ));\n }", "public function create()\n\t{\n\t\treturn View::make('crebos.create');\n\t}", "public function create() : View\n {\n $fieldset = $this->menuFieldset();\n\n return $this->view('create', [\n 'title' => trans('addons.Aardwolf::titles.create'),\n 'data' => [],\n 'fieldset' => $fieldset->toPublishArray(),\n 'suggestions' => [],\n 'submitUrl' => route('aardwolf.postCreate')\n ]);\n }", "public function create()\n {\n return view('libro.create');\n }", "public function create()\n {\n return view('libro.create');\n }", "public function newAction()\n {\n $entity = new Species();\n $form = $this->createForm(new SpeciesType(), $entity);\n\n return $this->render('InfectBackendBundle:Species:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n return view('crud/add'); }", "public function create()\n\t{\n\t\treturn View::make('supplier.create');\n\t}", "public function newAction()\n {\n $entity = new Company();\n $form = $this->createForm(new CompanyType(), $entity);\n\n return $this->render('SiteSavalizeBundle:Company:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n return view(\"List.form\");\n }", "public function index_onCreateForm()\n\t{\n\t\tparent::create();\n\t\treturn $this->makePartial('create');\n\t}", "public function create()\n {\n //load create form\n return view('products.create');\n }", "public function create()\n {\n return view('article.addform');\n }", "public function create()\n {\n // Mengarahkan ke halaman form\n return view('buku.form');\n }", "public function create()\n\t{\n\t\t// load the create form (app/views/material/create.blade.php)\n\t\t$this->layout->content = View::make('material.create');\n\t}", "public function create()\n {\n return view('saldo.form');\n }", "public function create()\n\t\t{\n\t\t\treturn view('kuesioner.create');\n\t\t}", "public function view_create_questioner_form() {\n \t// show all questioner\n \t// send questioner to form\n \treturn view(\"create_questioner\");\n }", "public function newAction() {\n $entity = new Question();\n $form = $this->createCreateForm($entity);\n\n return $this->render('CdlrcodeBundle:Question:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n $data['companies'] = Company::select('id', 'name')->where('status', 1)->orderBy('id', 'desc')->get();\n return view('admin.outlet.outlet_form', $data);\n }", "public function create()\n {\n return view('admin.inverty.add');\n }", "public function create()\n {\n return view('Libro.create');\n }", "public function create()\n {\n $title = trans('entry_mode.new');\n return view('layouts.create', compact('title'));\n }", "public function create()\n {\n $breadcrumb='car.create';\n return view('admin.partials.cars.form', compact('breadcrumb'));\n }", "public function create()\n {\n return view(\"familiasPrograma.create\");\n }", "public function create()\n {\n return view('admin.car.create');\n }", "public function create()\n {\n return view('admin.car.create');\n }", "public function create()\n\t{\n\t\treturn View::make('perusahaans.create');\n\t}", "public function create()\n {\n return view(\"create\");\n }", "public function create()\n\t{\n //echo 'show form';\n\t\treturn View::make('gaans.create');\n\t}", "public function create()\n {\n $title = trans('dormitorybed.new');\n $this->generateParams();\n\n return view('layouts.create', compact('title'));\n }", "public function create()\n {\n return view('forming');\n }", "public function formNew() {\n $this->data->options = array(\n 'RJ' => 'Rio de Janeiro',\n 'MG' => 'Minas Gerais',\n 'SP' => 'São Paulo',\n 'ES' => 'Espírito Santo',\n 'BA' => 'Bahia',\n 'RS' => 'Rio Grande do Sul'\n );\n $this->data->action = \"@exemplos/pessoa/save\";\n $this->render();\n }", "public function create()\n {\n \t\n \treturn view('supplies.create');\n\n }", "public function createAction()\n {\n if ($form = $this->processForm()) {\n $this->setPageTitle(sprintf($this->_('New %s...'), $this->getTopic()));\n $this->html[] = $form;\n }\n }", "public function create()\n {\n $page_title = \"Add New\";\n return view($this->path.'create', compact('page_title'));\n }", "public function create()\n {\n // not sure what to do with the form since im\n // using ame partial for both create and edit\n return view('plants.create')->with('plant', new Plant);\n }", "public function create() {\n\t\t$title = 'Create | Show';\n\n\t\treturn view('admin.show.create', compact('title'));\n\t}", "public function create()\n {\n return view('student::students.student.create');\n }", "public function newAction(){\n\t\t$entity = new Reserva();\n\t\t$form = $this->createCreateForm($entity);\n\n\t\treturn $this->render('LIHotelBundle:Reserva:new.html.twig', array(\n\t\t\t'entity' => $entity,\n\t\t\t'form' => $form->createView(),\n\t\t));\n\t}" ]
[ "0.75948673", "0.75948673", "0.75863165", "0.7577412", "0.75727344", "0.7500887", "0.7434847", "0.7433956", "0.73892003", "0.73531085", "0.73364776", "0.73125", "0.7296102", "0.7281891", "0.72741455", "0.72424185", "0.7229325", "0.7226713", "0.7187349", "0.7179176", "0.7174283", "0.7150356", "0.71444064", "0.71442676", "0.713498", "0.71283126", "0.7123691", "0.71158516", "0.71158516", "0.71158516", "0.7112176", "0.7094388", "0.7085711", "0.708025", "0.70800644", "0.70571953", "0.70571953", "0.70556754", "0.70396435", "0.7039549", "0.7036275", "0.703468", "0.70305896", "0.7027638", "0.70265305", "0.70199823", "0.7018007", "0.7004984", "0.7003889", "0.7000935", "0.69973785", "0.6994679", "0.6993764", "0.6989918", "0.6986989", "0.6966502", "0.69656384", "0.69564354", "0.69518244", "0.6951109", "0.6947306", "0.69444615", "0.69423944", "0.6941156", "0.6937871", "0.6937871", "0.6936686", "0.69345254", "0.69318026", "0.692827", "0.69263744", "0.69242257", "0.6918349", "0.6915889", "0.6912884", "0.691146", "0.69103104", "0.69085974", "0.69040126", "0.69014287", "0.69012105", "0.6900397", "0.68951064", "0.6893521", "0.68932164", "0.6891899", "0.6891616", "0.6891616", "0.6889246", "0.68880934", "0.6887128", "0.6884732", "0.68822503", "0.68809193", "0.6875949", "0.68739206", "0.68739134", "0.6870358", "0.6869779", "0.68696856", "0.686877" ]
0.0
-1
Store a newly created resource in storage.
public function store(Request $request) { $data=$request->except('_token'); $MenuModel = new MenuModel(); $data = $MenuModel->create_data($data); if($data){ echo "<script> if(confirm('添加成功,是否继续添加')==true){ location.href='create'; }else{ location.href='list'; } </script>"; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function store($data, Resource $resource);", "public function store()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n if (method_exists($this, 'storeValidations')) {\n $this->request->validate($this->storeValidations());\n }\n\n /* Create a new resource */\n $resource = $this->model::create(Input::all());\n\n /* Redirect to newly created resource page */\n return redirect()\n ->route($this->name . '.edit', $resource->id)\n ->with(\n 'success',\n Lang::has($this->name . '.resource-created') ?\n $this->name . '.resource-created' :\n 'messages.alert.resource-created'\n );\n }", "public function store(CreateStorageRequest $request)\n {\n $this->storage->create($request->all());\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource created', ['name' => trans('product::storages.title.storages')]));\n }", "public function createStorage();", "public function store(StoreStorage $request)\n {\n $storage = Storage::create($request->all());\n $request->session()->flash('alert-success', 'Запись успешно добавлена!');\n return redirect()->route('storage.index');\n }", "public function saveShopifyResource() {\n if (is_null($this->getShopifyId())) { // if there is no id...\n $this->createShopifyResource(); // create a new resource\n } else { // if there is an id...\n $this->updateShopifyResource(); // update the resource\n }\n }", "public function store(Request $request, NebulaResource $resource): RedirectResponse\n {\n $this->authorize('create', $resource->model());\n\n $validated = $request->validate($resource->rules(\n $resource->createFields()\n ));\n\n $resource->storeQuery($resource->model(), $validated);\n\n $this->toast(__(':Resource created', [\n 'resource' => $resource->singularName(),\n ]));\n\n return redirect()->back();\n }", "function storeAndNew() {\n $this->store();\n }", "public function store(Request $request)\n {\n $currentUser = JWTAuth::parseToken()->authenticate();\n $validator = Validator::make($request->all(), [\n 'content' => 'required|string',\n 'image_link' => 'sometimes|url',\n ]);\n\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), [], 400);\n }\n\n $resource = new Resource;\n $resource->user_id = $currentUser['id'];\n $resource->title = $request->get('title');\n $resource->content = $request->get('content');\n $resource->image_link = $request->get('imageLink');\n $resource->video_link = $request->get('videoLink');\n $resource->file_link = $request->get('fileLink');\n $resource->audio_link = $request->get('audioLink');\n $resource->tags = collect($request->get('tags'))->implode('text', ',');\n $resource->is_public = 0;\n $resource->save();\n $data['resource'] = $resource;\n\n if ($request->get('programId')) {\n $this->addToProgram($resource, $request->programId);\n // event(new NewLearningPathResourcePublished($resource, $invitee));\n }\n\n User::find($currentUser['id'])->increment('points', 2);\n\n return APIHandler::response(1, \"New resource has been created\", $data, 201);\n }", "public function store()\n {\n if (!$this->id) { // Insert\n $this->insertObject();\n } else { // Update\n $this->updateObject();\n }\n }", "public function store()\n\t{\n\t\t\n\t\t//\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}" ]
[ "0.72865677", "0.7145327", "0.71325725", "0.6640912", "0.66209733", "0.65685713", "0.652643", "0.65095705", "0.64490104", "0.637569", "0.63736665", "0.63657933", "0.63657933", "0.63657933", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437" ]
0.0
-1
Display the specified resource.
public function show($id) { // }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(Resource $resource)\n {\n // not available for now\n }", "public function show(Resource $resource)\n {\n //\n }", "function Display($resource_name, $cache_id = null, $compile_id = null)\n {\n $this->_smarty->display($resource_name, $cache_id, $compile_id);\n }", "private function showResourceable($resourceable)\n {\n save_resource_url();\n\n return $this->view('resources.create_edit')\n ->with('resource', $resourceable)\n ->with('photos', $resourceable->photos)\n ->with('videos', $resourceable->videos)\n ->with('documents', $resourceable->documents);\n }", "function display($resource_name, $cache_id = null, $compile_id = null) {\n\t\t$this->_getResourceInfo($resource_name); // Saves resource info to a Smarty class var for debugging\n\t\t$_t3_fetch_result = $this->fetch($resource_name, tx_smarty_div::getCacheID($cache_id), $compile_id);\n if ($this->debugging) { // Debugging will have been evaluated in fetch\n require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php');\n $_t3_fetch_result .= smarty_core_display_debug_console(array(), $this);\n }\n\t\treturn $_t3_fetch_result;\n\t}", "public function show(ResourceSubject $resourceSubject)\n {\n //\n }", "public function show(ResourceManagement $resourcesManagement)\n {\n //\n }", "public function viewEditResources()\n {\n $database = new Database();\n $id = $this->_params['id'];\n\n $resource = $database->getResourceById($id);\n\n $availableResource = new Resource($resource['ResourceID'], $resource['ResourceName'], $resource['Description']\n , $resource['ContactName'] , $resource['ContactEmail'] , $resource['ContactPhone'] ,\n $resource['Link'], $resource['active']);\n $this->_f3->set('Resource', $availableResource);\n\n echo Template::instance()->render('view/include/head.php');\n echo Template::instance()->render('view/include/top-nav.php');\n echo Template::instance()->render('view/edit-resources.php');\n echo Template::instance()->render('view/include/footer.php');\n }", "public function retrieve(Resource $resource);", "public function showResource($resouceable, $id)\n {\n $model_name = str_replace('-', ' ',ucwords($resouceable));\n $model_name = str_replace(' ', '',ucwords($model_name));\n\n $resource_type = 'App\\Models\\\\'.$model_name;\n $model = app($resource_type);\n $model = $model->find($id);\n\n return $this->showResourceable($model);\n }", "public function showAction(Ressource $ressource)\n {\n $deleteForm = $this->createDeleteForm($ressource);\n\n return $this->render('ressource/show.html.twig', array(\n 'ressource' => $ressource,\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function show(Dispenser $dispenser)\n {\n //\n }", "public function show($id)\n {\n $resource = Resource::find($id);\n dd($resource);\n }", "public function displayAction() {\n\t\tif(is_numeric($this->req_id)) {\n\t\t\tAPI::DEBUG(\"[DefaultController::displayAction()] Getting \" . $this->req_id, 1);\n\t\t\t$this->_view->data['info'] = $this->_model->get($this->req_id);\n\t\t\t$this->_view->data['action'] = 'edit';\n\n\t\t} else {\n\t\t\t$this->_view->data['action'] = 'new';\n\t\t}\n\t\t// auto call the hooks for this module/action\n\t\terror_log(\"Should Call: \" . $this->module .\"/\".$this->action.\"/\".\"controller.php\");\n\t\tAPI::callHooks($this->module, $this->action, 'controller', $this);\n\n\t\t$this->addModuleTemplate($this->module, 'display');\n\n\t}", "public function show(NebulaResource $resource, $item): View\n {\n $this->authorize('view', $item);\n\n return view('nebula::resources.show', [\n 'resource' => $resource,\n 'item' => $item,\n ]);\n }", "public function resource(string $resource, string $controller): void\n {\n $base = $this->plural($resource);\n $entity = '/{'.$resource.'}';\n\n $this->app->get($base, $controller.'@index');\n $this->app->post($base, $controller.'@store');\n $this->app->get($base.$entity, $controller.'@show');\n $this->app->patch($base.$entity, $controller.'@update');\n $this->app->delete($base.$entity, $controller.'@destroy');\n }", "function displayCustom($resource_name, $cache_id = null, $compile_id = null)\n\t{\n\t return $this->display(DotbAutoLoader::existingCustomOne($resource_name), $cache_id, $compile_id);\n\t}", "public function show($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.show\")) {\n $view = \"admin.{$this->name}.show\";\n } else {\n $view = 'admin.includes.actions.show';\n }\n\n /* Displays the specified resource page */\n return view($view)\n ->with('resource', $resource)\n ->with('name', $this->name);\n }", "public function show($id)\n {\n $currentUser = JWTAuth::parseToken()->authenticate();\n $rules = [\n 'id' => 'required|integer'\n ];\n\n $validator = Validator::make(['id' => $id], $rules);\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), 400);\n }\n $resource = $this->resourceRepository->fetchResource($id);\n $this->resourceRepository->storeView($id, $currentUser['id']);\n\n $data = [\n 'resource' => $resource,\n 'related_resources' => $this->resourceRepository->getResourcesRelatedTo($resource->id, $resource->mentoring_area_id)\n ];\n\n return APIHandler::response(1, \"Show Resource\", $data);\n }", "public function get(Resource $resource);", "public function showAction()\n {\n $model = $this->_getPhotoModel();\n $photo = $model->fetchEntry($this->getRequest()->getParam('id'));\n\n if (null === $photo) {\n return $this->_forward('notfound', 'error');\n }\n\n $this->view->auth = Zend_Auth::getInstance();\n $this->view->title = $photo->title;\n $this->view->photo = $photo;\n }", "public function show($id)\n {\n //\n $data=Resource::find($id);\n return view('resourceDetails',compact('data'));\n }", "function display() {\n\t\t$view = &$this->getView();\n\t\t$view->display();\n\t}", "public function show(ShowResourceRequest $request, $id)\n {\n // TODO: Implement show() method.\n }", "function show( $resource ){\n\n $where = \"reservation_status <> 'Pending' AND id = {$resource}\";\n $reservation = where( 'reservations', $where );\n $reservation = $reservation[0];\n\n return view('admin/reservation/preview_reservation', compact( 'reservation' ));\n}", "public function show()\n {\n if ($this->twig !== false) {\n $this->twigDefaultContext();\n if ($this->controller) {\n $this->controller->display($this->data);\n }\n echo $this->twig->render($this->twig_template, $this->data);\n } else {\n $filename = $this->findTemplatePath($this->template);\n require($filename);\n }\n }", "public function edit(Resource $resource)\n {\n //\n }", "public function show(rc $rc)\n {\n //\n }", "public function show(Resolucion $resolucion)\n {\n //\n }", "public function showAction(furTexture $furTexture)\n {\n\n return $this->render('furtexture/show.html.twig', array(\n 'furTexture' => $furTexture,\n ));\n }", "public function show()\n\t{\n\t\t//\n\t}", "public function show()\n\t{\n\t\t//\n\t}", "public function show()\n\t{\n\t\t//\n\t}", "public function show(Resena $resena)\n {\n }", "public function edit(Resource $resource)\n {\n return view('admin.resources.edit', compact('resource'));\n }", "public function showAction() {\n $docId = $this->getParam('id');\n\n // TODO verify parameter\n\n $document = new Opus_Document($docId);\n\n $this->_helper->layout()->disableLayout();\n\n $this->view->doc = $document;\n $this->view->document = new Application_Util_DocumentAdapter($this->view, $document);\n }", "public function action_display()\r\n\t{\r\n\t\t$event = ORM::factory('event', array('id' => $this->request->param('id')));\r\n\t\r\n\t\tif ( ! $event->loaded())\r\n\t\t{\r\n\t\t\tNotices::error('event.view.not_found');\r\n\t\t\t$this->request->redirect(Route::url('event'));\r\n\t\t}\r\n\t\t\r\n\t\t// Can user view this event?\r\n\t\tif ( ! $this->user->can('event_view', array('event' => $event)))\r\n\t\t{\r\n\t\t\t// Error notification\r\n\t\t\tNotices::error('event.view.not_allowed');\r\n\t\t\t$this->request->redirect(Route::url('event'));\r\n\t\t}\r\n\t\t\r\n\t\t// Pass event data to the view class\r\n\t\t$this->view->event_data = $event;\r\n\t\t$this->view->user = $this->user;\r\n\t}", "public function execute()\n {\n // HTTP Request Get\n if ($this->type == \"resource\") {\n $action = $this->getResourceAction();\n switch ($action) {\n case \"show\":\n $this->show();\n break;\n case \"create\":\n $this->create();\n break;\n case \"edit\":\n $this->edit();\n break;\n case \"destroy\":\n $this->destroy();\n break;\n default:\n echo $this->render();\n break;\n }\n } else {\n $action = $this->Request->action;\n switch ($action) {\n case \"show\":\n $this->show();\n break;\n case \"create\":\n $this->create();\n break;\n case \"edit\":\n $this->edit();\n break;\n case \"destroy\":\n $this->destroy();\n break;\n default:\n echo $this->render();\n break;\n }\n }\n }", "public function show(Resident $resident)\n {\n $this->authorize('admin.resident.show', $resident);\n\n // TODO your code goes here\n }", "public function display()\n {\n echo $this->getDisplay();\n $this->isDisplayed(true);\n }", "public function display()\n\t{\n\t\tparent::display();\n\t}", "public function get_resource();", "public function show()\n\t{\n\t\t\n\t}", "function display() {\n\n\t\t// Check authorization, abort if negative\n\t\t$this->isAuthorized() or $this->abortUnauthorized();\n\n\t\t// Get the view\n\t\t$view = $this->getDefaultView();\n\n\t\tif ($view == NULL) {\n\t\t\tthrow new Exception('Display task called, but there is no view assigned to that controller. Check method getDefaultView.');\n\t\t}\n\n\t\t$view->listing = true;\n\n\t\t// Wrap the output of the views depending on the way the stuff should be shown\n\t\t$this->wrapViewAndDisplay($view);\n\n\t}", "public function viewResources()\n {\n $database = new Database();\n\n $resources = $database->getAllActiveResourcesNoLimit();\n\n\n $resourceArray = array();\n $i = 1;\n\n foreach ($resources as $resource) {\n $availableResource = new Resource($resource['ResourceID'], $resource['ResourceName'], $resource['Description']\n , $resource['ContactName'] , $resource['ContactEmail'] , $resource['ContactPhone'] ,\n $resource['Link'], $resource['active']);\n array_push($resourceArray, $availableResource);\n $i += 1;\n }\n $resourceSize = sizeof($resourceArray);\n $this->_f3->set('resourcesByActive', $resourceArray);\n $this->_f3->set('resourcesSize', $resourceSize);\n echo Template::instance()->render('view/include/head.php');\n echo Template::instance()->render('view/include/top-nav.php');\n echo Template::instance()->render('view/resources.php');\n echo Template::instance()->render('view/include/footer.php');\n }", "public function show($id)\n {\n $this->title .= ' show';\n $this->one($id);\n }", "public function display($title = null)\n {\n echo $this->fetch($title);\n }", "public function display(){}", "public function show($id)\n\t{\n\t\t//\n\t\t//\n\t\n\t}", "public function viewAction()\n\t{\n\t\t//get Id param from request\n\t\tif (!$id = $this->_getParam('id')) {\n\t\t\t$this->getFlashMessenger()->addMessage('Product ID was not specified');\n\t\t\t$this->getRedirector()->gotoSimple('list');\n\t\t}\n\n\t\t//fetch requested ProductID from DB\n\t\tif (!$this->_model->fetch($id)) {\n\t\t\t$this->render('not-found');\n\t\t} else {\n\t\t\t$this->view->model = $this->_model;\n\t\t}\n\t}", "public function show($id)\n {\n // Get single person\n $person = Person::findOrFail($id);\n\n // Return single person as a resource\n return '<h1>Person Number '.$id.'</h1><br>'.json_encode(new PersonResource($person));\n }", "#[TODO] use self object?\n\tprotected function GET(ResourceObject $resource) {\n#[TODO]\t\tif ($resource->getMTime())\n#[TODO]\t\t\t$this->response->headers->set('Last-modified', gmdate('D, d M Y H:i:s ', $resource->getMTime()) . 'GMT');\n#[TODO]\t\tif ($resource->getCTime())\n#[TODO]\t\t\t$this->response->headers->set('Date', gmdate('D, d M Y H:i:s ', $resource->getCTime()) . 'GMT');\n\n\n#[TODO] handle file streams\n\t\t// get ranges\n#\t\t$ranges = WebDAV::getRanges($this->request, $this->response);\n\n\t\t// set the content of the response\n\t\tif ($resource instanceof ResourceDocument) {\n\t\t\t$this->response->content->set($resource->getContents());\n\t\t\t$this->response->content->setType($resource->getMIMEType());\n\t\t\t$this->response->content->encodeOnSubmit(true);\n\t\t}\n\t}", "public function display() {\n echo $this->render();\n }", "public function show($id)\n\t{\n\t//\n\t}", "public function show($id)\n\t{\n\t//\n\t}", "function Fetch($resource_name, $cache_id = null, $compile_id = null, $display = false)\n {\n return $this->_smarty->fetch($resource_name, $cache_id, $compile_id, $display);\n }", "public function show($id)\n {\n //\n $this->_show($id);\n }", "public function show()\n\t{\n\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {}", "static public function showCallback(O_Dao_Renderer_Show_Params $params) {\r\n\t\t/* @var $r R_Mdl_Resource */\r\n\t\t$r = $params->record();\r\n\t\t// Setting layout title\r\n\t\t$params->layout()->setTitle($r->getPageTitle());\r\n\r\n?><h1><?=$r->title?></h1><div id=\"resource\"><?\r\n\t\tif($r->getContent()) {\r\n\t\t\t// page has its own content -- show it\r\n\t\t\t$r->getContent()->show($params->layout(), \"content\");\r\n\t\t} else {\r\n\t\t\t// It is a post unit, show all childs\r\n\t\t\tif($r->is_unit == 1) {\r\n\t\t\t\t$r->addQueryAccessChecks($r->getChilds(1))->show($params->layout(), \"content\");\r\n\r\n\t\t\t// It is a folder with several units, show paginator\r\n\t\t\t} elseif($r->show_def == \"last-units\") {\r\n\t\t\t\tlist($type, $perpage) = explode(\":\", $r->show_def_params);\r\n\t\t\t\t/* @var $p O_Dao_Paginator */\r\n\t\t\t\t$p = $r->addQueryAccessChecks($r->getChilds())->test(\"is_unit\", 1)->getPaginator(array($r, \"getPageUrl\"), $perpage);\r\n\t\t\t\t$p->show($params->layout(), $type);\r\n\t\t\t// It is a folder with subfolders, boxes, contents. Show one childs level\r\n\t\t\t} else {\r\n\t\t\t\t$r->addQueryAccessChecks($r->getChilds(1))->show($params->layout(), \"on-parent-page\");\r\n\t\t\t}\r\n\r\n\t\t}\r\n?></div><?\r\n\t}", "public function show($id)\r\n\t{\r\n\t\t//\r\n\r\n\r\n\r\n\t}", "public function show($resourceId, $eventId)\n {\n $routes = $this->routes;\n\n $eventable = $this->getEventableRepository()->model()->findOrFail($resourceId);\n\n if (method_exists($eventable, 'events')) {\n $event = $eventable->events()->find($eventId);\n\n if ($event) {\n $apiObject = $this->event->findApiObject($event->api_id);\n\n return view('events.eventables.show', compact('routes', 'eventable', 'event', 'apiObject'));\n }\n }\n\n abort(404);\n }", "public abstract function display();", "abstract public function resource($resource);", "public function show($id)\r\r\n\t{\r\r\n\t\t//\r\r\n\t}", "public function show( $id ) {\n\t\t//\n\t}", "public function show( $id ) {\n\t\t//\n\t}", "public function show(Response $response)\n {\n //\n }", "public function show()\n {\n return auth()->user()->getResource();\n }", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}", "public function show($id)\n\t{\n\t\t//\n\t}" ]
[ "0.8233718", "0.8190437", "0.6828712", "0.64986944", "0.6495974", "0.6469629", "0.6462615", "0.6363665", "0.6311607", "0.62817234", "0.6218966", "0.6189695", "0.61804265", "0.6171014", "0.61371076", "0.61207956", "0.61067593", "0.6105954", "0.6094066", "0.6082806", "0.6045245", "0.60389996", "0.6016584", "0.598783", "0.5961788", "0.59606946", "0.5954321", "0.59295714", "0.59182066", "0.5904556", "0.59036547", "0.59036547", "0.59036547", "0.5891874", "0.58688277", "0.5868107", "0.58676815", "0.5851883", "0.58144855", "0.58124036", "0.58112013", "0.5803467", "0.58012545", "0.5791527", "0.57901084", "0.5781528", "0.5779676", "0.5757105", "0.5756208", "0.57561266", "0.57453394", "0.57435393", "0.57422745", "0.5736634", "0.5736634", "0.5730559", "0.57259274", "0.5724891", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5722562", "0.5718969", "0.5713412", "0.57091093", "0.5706405", "0.57057405", "0.5704541", "0.5704152", "0.57026845", "0.57026845", "0.56981397", "0.5693083", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962", "0.5684962" ]
0.0
-1
Show the form for editing the specified resource.
public function edit($id) { // $MenuModel=new MenuModel(); $data= $MenuModel->p_list(); $data1=MenuModel::where('menu_id',$id)->first(); // dump($data1);die; return view('menu.edit',['data'=>$data,'data1'=>$data1]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function edit(Resource $resource)\n {\n return view('admin.resources.edit', compact('resource'));\n }", "public function edit(Resource $resource)\n {\n //\n }", "public function edit($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.edit\")) {\n $view = \"admin.{$this->name}.edit\";\n } else {\n $view = 'admin.includes.actions.edit';\n }\n\n /* Displays the edit resource page */\n return view($view)\n ->with('resource', $resource)\n ->with('name', $this->name);\n }", "public function edit(NebulaResource $resource, $item): View\n {\n $this->authorize('update', $item);\n\n return view('nebula::resources.edit', [\n 'resource' => $resource,\n 'item' => $item,\n ]);\n }", "public function edit() {\r\n $id = $this->api->getParam('id');\r\n\r\n if ($id) {\r\n $this->model->id = $id;\r\n $this->checkOwner();\r\n }\r\n $object = $this->model->find_by_id($id);\r\n\r\n $this->api->loadView('contact-form', array('row' => $object));\r\n }", "public function viewEditResources()\n {\n $database = new Database();\n $id = $this->_params['id'];\n\n $resource = $database->getResourceById($id);\n\n $availableResource = new Resource($resource['ResourceID'], $resource['ResourceName'], $resource['Description']\n , $resource['ContactName'] , $resource['ContactEmail'] , $resource['ContactPhone'] ,\n $resource['Link'], $resource['active']);\n $this->_f3->set('Resource', $availableResource);\n\n echo Template::instance()->render('view/include/head.php');\n echo Template::instance()->render('view/include/top-nav.php');\n echo Template::instance()->render('view/edit-resources.php');\n echo Template::instance()->render('view/include/footer.php');\n }", "public function edit()\n {\n return view('hirmvc::edit');\n }", "public function editformAction(){\n\t\t$this->loadLayout();\n $this->renderLayout();\n\t}", "public function edit() {\n $id = $this->parent->urlPathParts[2];\n // pass name and id to view\n $data = $this->parent->getModel(\"fruits\")->select(\"select * from fruit_table where id = :id\", array(\":id\"=>$id));\n $this->getView(\"header\", array(\"pagename\"=>\"about\"));\n $this->getView(\"editForm\", $data);\n $this->getView(\"footer\");\n }", "public function edit($id)\n\t{\n\t\treturn $this->showForm('update', $id);\n\t}", "public function edit($id)\n {\n $model = $this->modelObj;\n $formObj = $model::findOrFail($id);\n $data['formObj'] = $formObj;\n return view($this->veiw_base . '.edit', $data);\n }", "public function createEditForm(Resourceperson $entity){\n \n $form = $this->createForm(new ResourcepersonType(), $entity, array(\n 'action' => $this->generateUrl('rsp_update', array('id' => $entity->getRpId())),\n 'method' => 'PUT',\n ));\n\n $form->add('submit', 'submit', array('label' => 'Update','attr'=> array(\n 'class'=>'btn btn primary'\n )));\n\n return $form;\n }", "private function createEditForm(Resource $entity)\n {\n $form = $this->createForm(new ResourceType(), $entity, array(\n 'action' => $this->generateUrl('social_admin_resource_update', array('id' => $entity->getId())),\n 'method' => 'PUT',\n ));\n\n $form->add('submit', 'submit', array('label' => '保存','attr'=>[\n 'class'=>'btn btn-primary'\n ]));\n\n return $form;\n }", "public function edit($id)\n {\n return $this->showForm('update', $id);\n }", "public function edit($id)\n {\n return $this->showForm('update', $id);\n }", "public function editAction()\n {\n if ($form = $this->processForm()) {\n if ($this->useTabbedForms && method_exists($this, 'getSubject')) {\n $data = $this->getModel()->loadFirst();\n $subject = $this->getSubject($data);\n $this->setPageTitle(sprintf($this->_('Edit %s %s'), $this->getTopic(1), $subject));\n } else {\n $this->setPageTitle(sprintf($this->_('Edit %s'), $this->getTopic(1)));\n }\n $this->html[] = $form;\n }\n }", "public function edit($id)\n {\n $this->data['entity'] = GS_Form::where('id', $id)->firstOrFail();\n return view('admin.pages.forms.edit', $this->data);\n }", "public function edit($id)\n\t{\n\t\t// get the fbf_presenca\n\t\t$fbf_presenca = FbfPresenca::find($id);\n\n\t\t\n\t\t// show the edit form and pass the fbf_presenca\n\t\t$this->layout->content = View::make('fbf_presenca.edit')\n->with('fbf_presenca', $fbf_presenca);\n\t}", "public function edit($id)\n {\n $data = $this->model->find($id);\n\n return view('admin.backends.employee.form.edit',compact('data'));\n }", "public function edit($model, $form);", "function edit() {\n\t\tglobal $tpl;\n\n\t\t$form = $this->initForm();\n\t\t$tpl->setContent($form->getHTML());\n\t}", "public function edit($id)\n\t{\n\t\t$faith = Faith::find($id);\n \n return view('faith.form')->with('faith', $faith);\n\n\t}", "public function edit()\n { \n return view('admin.control.edit');\n }", "public function edit(Form $form)\n {\n //\n }", "public function edit()\n {\n return view('common::edit');\n }", "public function edit($id)\n {\n $resource = (new AclResource())->AclResource;\n $roleResource = AclRole::where('role', $id)->get(['resource'])->toArray();\n $roleResource = Arr::pluck($roleResource, 'resource');\n return view('Admin.acl.role.form', [\n 'role' => $id,\n 'resource' => $resource,\n 'roleResource' => $roleResource,\n ]);\n }", "public function edit()\n {\n return view('admin::edit');\n }", "public function edit()\n {\n return view('admin::edit');\n }", "public function edit()\r\n {\r\n return view('petro::edit');\r\n }", "public function edit($id)\n {\n // show form edit user info\n }", "public function edit()\n {\n return view('escrow::edit');\n }", "public function edit($id)\n {\n $resource = ResourceManagement::find($id);\n\n $users = User::get();\n // Redirect to user list if updating user wasn't existed\n if ($resource == null || $resource->count() == 0) {\n return redirect()->intended('/resource-management');\n }\n\n return view('resources-mgmt/edit', ['resource' => $resource, 'users' => $users]);\n }", "public function edit()\n {\n return view('commonmodule::edit');\n }", "public function editAction()\n\t{\n\t\t$params = $this->data->getParams();\n\t\t$params = $this->valid->clearDataArr($params);\n\t\tif (isset($params['id']))\n\t\t{\n\t\t\t$this->employee->setFlag(true);\n\t\t}\n\t\tif (isset($_POST['submit']))\n\t\t{\n\t\t\t$action = $this->valid->clearDataArr($_POST);\n\t\t\t$this->employee->setDataArray($action);\n\t\t\theader('Location: ' . PATH . 'Employee/index/', true, 303);\n\t\t}\n\t\t$employee = $this->employee->setAction('edit');\n\t\t$this->view->addToReplace($employee);\n\t\t$this->listEmployee();\n\t\t$this->arrayToPrint();\n\t}", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit(form $form)\n {\n //\n }", "public function actionEdit($id) { }", "public function edit()\n {\n return view('admincp::edit');\n }", "public function edit()\n {\n return view('scaffold::edit');\n }", "public function edit($id)\n {\n $header = \"Edit\";\n\t\t$data = Penerbit::findOrFail($id);\n\t\treturn view('admin.penerbit.form', compact('data','header'));\n }", "public function edit()\n {\n return view('Person.edit');\n }", "public function edit($id)\n {\n $data = Form::find($id);\n return view('form.edit', compact('data'));\n }", "public function edit($id)\n\t{\n\t\t$career = $this->careers->findById($id);\n\t\treturn View::make('careers._form', array('career' => $career, 'exists' => true));\n\t}", "public function edit(Flight $exercise, FlightResource $resource)\n {\n return $this->viewMake('adm.smartcars.exercise-resources.edit')\n ->with('flight', $exercise)\n ->with('resource', $resource);\n }", "public function edit($id)\n\t{\n\t\t// get the material\n\t\t$material = Material::find($id);\n\n\t\t// show the edit form and pass the material\n\t\t$this->layout->content = View::make('material.edit')\n\t\t\t->with('material', $material);\n\t}", "public function edit($id, Request $request)\n {\n $formObj = $this->modelObj->find($id);\n\n if(!$formObj)\n {\n abort(404);\n } \n\n $data = array();\n $data['formObj'] = $formObj;\n $data['page_title'] = \"Edit \".$this->module;\n $data['buttonText'] = \"Update\";\n\n $data['action_url'] = $this->moduleRouteText.\".update\";\n $data['action_params'] = $formObj->id;\n $data['method'] = \"PUT\"; \n\n return view($this->moduleViewName.'.add', $data);\n }", "public function edit()\n {\n $id = $this->getId();\n return view('panel.user.form', [\n 'user' => $this->userRepository->findById($id),\n 'method' => 'PUT',\n 'routePrefix' => 'profile',\n 'route' => 'profile.update',\n 'parameters' => [$id],\n 'breadcrumbs' => $this->getBreadcrumb('Editar')\n ]);\n }", "public function edit()\r\n {\r\n return view('mpcs::edit');\r\n }", "function edit()\n\t{\n\t\t// hien thi form sua san pham\n\t\t$id = getParameter('id');\n\t\t$product = $this->model->product->find_by_id($id);\n\t\t$this->layout->set('auth_layout');\n\t\t$this->view->load('product/edit', [\n\t\t\t'product' => $product\n\t\t]);\n\t}", "public function edit($id)\n {\n //\n $data = Diskon::find($id);\n\n $form = $this->form;\n $edit = $this->edit;\n $field = $this->field;\n $page = $this->page;\n $id = $id;\n $title = $this->title;\n return view('admin/page/'.$this->page.'/edit',compact('form','edit','data','field','page','id','title'));\n }", "public function edit($id)\n {\n return $this->showForm($id);\n }", "public function edit($id)\n {\n return $this->showForm($id);\n }", "protected function _edit(){\n\t\treturn $this->_editForm();\n\t}", "public function editAction()\n {\n $robot = Robots::findFirst($this->session->get(\"robot-id\"));\n if ($this->request->isGet()) {\n $this->tag->prependTitle(\"Редактировать робота :: \");\n $user = $this->session->get(\"auth-id\");\n if (!$robot) {\n $this->flashSession->error(\n \"Робот не найден\"\n );\n return $this->response->redirect(\"users/usershow/$user->name\");\n }\n\n }\n\n $this->view->form = new RobotForm(\n $robot,\n [\n \"edit\" => true,\n ]\n );\n }", "public function editAction()\n {\n $form = new $this->form();\n\n $request = $this->getRequest();\n $param = $this->params()->fromRoute('id', 0);\n\n $repository = $this->getEm()->getRepository($this->entity);\n $entity = $repository->find($param);\n\n if ($entity) {\n\n $form->setData($entity->toArray());\n\n if ( $request->isPost() ) {\n\n $form->setData($request->getPost());\n\n if ( $form->isValid() ) {\n\n $service = $this->getServiceLocator()->get($this->service);\n $service->update($request->getPost()->toArray());\n\n return $this->redirect()->toRoute($this->route, array('controller' => $this->controller));\n }\n }\n } else {\n return $this->redirect()->toRoute($this->route, array('controller' => $this->controller));\n }\n\n return new ViewModel(array('form' => $form, 'id' => $param));\n\n }", "public function edit($id)\n\t{\n\t\t$SysApplication = \\Javan\\Dynaflow\\Domain\\Model\\SysApplication::find($id);\n\t\t$form = \\FormBuilder::create('Javan\\Dynaflow\\FormBuilder\\SysApplicationForm', [\n \t'method' => 'POST',\n \t'url' => 'sysapplication/update/'.$id,\n \t'model' => $SysApplication,\n \t'data' => [ 'flow_id' => $SysApplication->flow_id]\n \t]);\n\t\treturn View::make('dynaflow::sysapplication.form', compact('form', 'SysApplication'));\n\t}", "public function editAction() {\n\t\t$id = (int) $this->_getParam('id');\n\t\t$modelName = $this->_getParam('model');\n\t\t\n\t\t$model = Marcel_Backoffice_Model::factory($modelName);\n\t\t$item = $model->find($id)->current();\n\t\tif (!$item) {\n\t\t\t$item = $model->createRow();\n\t\t}\n\t\t$form = $item->getForm();\n\t\tif ($this->_request->isPost()) {\n\t\t\t$newId = $form->populate($this->_request->getPost())->save();\n\t\t\tif ($newId) {\n\t\t\t\t$this->_helper->flashMessenger('Saved successfully!');\n\t\t\t\t$this->_helper->redirector('edit', null, null, array('id' => $newId, 'model' => $modelName));\n\t\t\t}\n\t\t}\n\t\t$this->view->form = $form;\n\t\t$this->view->messages = $this->_helper->flashMessenger->getMessages();\n\t}", "public function edit($id)\n {\n return view('models::edit');\n }", "public function edit()\n {\n return view('home::edit');\n }", "public function editAction()\n {\n $id = $this->params()->fromRoute('id');\n $entity = $this->entityManager->find(Entity\\CourtClosing::class, $id);\n if (! $entity) {\n // to do: deal with it\n }\n $form = $this->getForm('update');\n $form->bind($entity);\n if ($this->getRequest()->isPost()) {\n return $this->post();\n }\n\n return new ViewModel(['form' => $form]);\n }", "public function editAction($id)\n {\n $entity = $this->getManager()->find($id);\n\n $breadcrumbs = $this->get(\"white_october_breadcrumbs\");\n $breadcrumbs->addItem('Inicio', $this->get('router')->generate('admin.homepage'));\n $breadcrumbs->addItem($this->entityDescription, $this->get(\"router\")->generate(\"admin.$this->entityName.index\"));\n $breadcrumbs->addItem('Editar');\n\n if (!$entity) {\n throw $this->createNotFoundException('No se ha encontrado el elemento');\n }\n\n $form = $this->getForm($entity);\n\n return $this->render('AdminBundle:Default:edit.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'metadata' => $this->getMetadata()\n ));\n }", "public function edit()\n {\n return view('user::edit');\n }", "public function edit()\n {\n return view('user::edit');\n }", "public function edit(Form $form)\n {\n return view('admin.forms.edit', compact('form'));\n }", "public function editAction()\n {\n $form = MediaForm::create($this->get('form.context'), 'media');\n $media = $this->get('media_manager.manager')->findOneById($this->get('request')->get('media_id'));\n \n $form->bind($this->get('request'), $media);\n \n return $this->render('MediaManagerBundle:Admin:form.html.twig', array('form' => $form, 'media' => $media));\n }", "public function editAction($id) {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('CdlrcodeBundle:Question')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Question entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('CdlrcodeBundle:Question:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return view('consultas::edit');\n }", "public function edit(DirectorFormBuilder $form, $id)\n {\n return $form->render($id);\n }", "public function edit()\n {\n return view('dashboard::edit');\n }", "public function edit($id){\n $rfid = Rfid::find($id);\n\n //load form view\n return view('rfids.edit', ['rfid' => $rfid]);\n }", "public function edit($id)\n {\n\n // retrieve provider\n $provider = Provider::findOrFail($id);\n\n // return form with provider\n return view('backend.providers.form')->with('provider', $provider);\n }", "public function edit(Question $question)\n {\n $this->employeePermission('application' , 'edit');\n $question->chooses;\n $action = 'edit';\n return view('admin.setting.question_form', compact('action' , 'question'));\n }", "public function edit() {\n return view('routes::edit');\n }", "public function edit($id)\n {\n $this->data['product'] = Product::find($id);\n $this->data['category'] = Category::arrForSelect();\n $this->data['title'] = \" Update Prouct Details\";\n $this->data['mode'] = \"edit\";\n\n return view('product.form', $this->data);\n }", "public function edit(ClueEnFormBuilder $form, $id): Response\n {\n return $form->render($id);\n }", "public function editAction($id)\n {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('BaseBundle:Feriado')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Feriado entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('BaseBundle:Feriado:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return view('cataloguemodule::edit');\n }", "public function edit($articulo_id)\n {\n $titulo = \"Editar\";\n return View(\"articulos.formulario\",compact('titulo','articulo_id'));\n }", "public function edit($id)\n {\n $resources = User::find(session('usuario_id'))->resources;\n $languages = Language::pluck('name', 'id');\n $types = Type::pluck('name', 'id');\n $method = 'PATCH';\n\n $recurso = Resource::find($id);\n $url = \"/resource/$recurso->id\";\n\n return view('resources.resources', compact('resources', 'languages', 'types', 'method', 'url', 'recurso'));\n }", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit]);\n }", "public function displayEditForm(Employee $employee){\n return view('employee.displayEditForm',['employee'=>$employee]);\n }", "public function edit()\n {\n return view('website::edit');\n }", "public function edit()\n {\n return view('inventory::edit');\n }", "public function edit()\n {\n return view('initializer::edit');\n }", "public function editAction()\n {\n View::renderTemplate('Profile/edit.html', [\n 'user' => $this->user\n ]);\n }", "public function edit($id)\n {\n return view('backend::edit');\n }", "public function edit($id)\n {\n //dd($id);\n $familiaPrograma= FamiliaPrograma::findOrFail($id);\n return view('familiasPrograma.edit', compact('familiaPrograma'));\n }", "public function edit($id)\n {\n return view('crm::edit');\n }", "public function edit($id)\n {\n return view('crm::edit');\n }", "public function edit($id)\n {\n $user = User::where('id', $id)->first();\n\n\n return view('users.forms.update', compact('user'));\n }", "public function editAction($id)\n\t{\n\t\t$school = School::find( $id );\n\t\t$this->render( View::make( 'schools/form' , array(\n\t\t\t'title' => sprintf( 'Modifier \"%s\"', $school->name ),\n\t\t\t'entity' => $school\n\t\t) ) );\n\t}", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit ]);\n }", "public function edit(Person $person) {\n\t\t$viewModel = new PersonFormViewModel();\n\t\treturn view('person.form', $viewModel);\n\t}", "public function edit($id)\n {\n \t$product = Product::find($id);\n \treturn view('admin.products.edit')->with(compact('product')); // formulario de actualizacion de datos del producto\n }", "public function edit_person($person_id){\n \t$person = Person::find($person_id);\n \treturn view('resource_detail._basic_info.edit',compact('person'));\n }", "public function edit($id)\n {\n $professor = $this->repository->find($id);\n return view('admin.professores.edit',compact('professor'));\n }", "public function edit($id)\n {\n $data = Restful::find($id);\n return view('restful.edit', compact('data'));\n }", "public function editAction($id)\n {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('MedecinIBundle:Fichepatient')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Fichepatient entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('MedecinIBundle:Fichepatient:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return $this->form->render('mconsole::personal.form', [\n 'item' => $this->person->query()->with('uploads')->findOrFail($id),\n ]);\n }", "public function edit($id)\n\t{\n\t\t // get the project\n $project = Project::find($id);\n\n // show the edit form and pass the project\n return View::make('logicViews.projects.edit')->with('project', $project);\n\t}" ]
[ "0.78550774", "0.7692893", "0.7273195", "0.7242132", "0.7170847", "0.70622855", "0.7053459", "0.6982539", "0.69467914", "0.6945275", "0.6941114", "0.6928077", "0.69019294", "0.68976134", "0.68976134", "0.6877213", "0.68636996", "0.68592185", "0.68566656", "0.6844697", "0.68336326", "0.6811471", "0.68060875", "0.68047357", "0.68018645", "0.6795623", "0.6791791", "0.6791791", "0.6787701", "0.67837197", "0.67791027", "0.677645", "0.6768301", "0.6760122", "0.67458534", "0.67458534", "0.67443407", "0.67425704", "0.6739898", "0.6735328", "0.6725465", "0.6712817", "0.6693891", "0.6692419", "0.6688581", "0.66879624", "0.6687282", "0.6684741", "0.6682786", "0.6668777", "0.6668427", "0.6665287", "0.6665287", "0.66610634", "0.6660843", "0.66589665", "0.66567147", "0.66545695", "0.66527975", "0.6642529", "0.6633056", "0.6630304", "0.6627662", "0.6627662", "0.66192114", "0.6619003", "0.66153085", "0.6614968", "0.6609744", "0.66086483", "0.66060555", "0.6596137", "0.65950733", "0.6594648", "0.65902114", "0.6589043", "0.6587102", "0.65799844", "0.65799403", "0.65799177", "0.657708", "0.65760696", "0.65739626", "0.656931", "0.6567826", "0.65663105", "0.65660435", "0.65615267", "0.6561447", "0.6561447", "0.65576506", "0.655686", "0.6556527", "0.6555543", "0.6555445", "0.65552044", "0.65543956", "0.65543705", "0.6548264", "0.65475875", "0.65447706" ]
0.0
-1
Update the specified resource in storage.
public function update(Request $request, $id) { // $data=$request->except('_token'); $res=MenuModel::where('menu_id',$id)->update($data); if($res){ echo '<script>alert("修改成功");location.href="/menu/list"</script>'; die; // return json_encode(['code'=>0,'msg'=>'OK']); }else{ return redirect('menu.edit'); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function updateShopifyResource() {\n $this->saving();\n $this->getShopifyApi()->call([\n 'URL' => API::PREFIX . $this->getApiPathSingleResource(),\n 'METHOD' => 'PUT',\n 'DATA' => [\n static::getResourceSingularName() => $this->shopifyData\n ]\n ]);\n }", "public function update(Request $request, Resource $resource)\n {\n $request->validate([\n 'name' => 'required',\n 'description' => 'required|string',\n 'file' => 'required|mimes:jpg,jpeg,png,doc,docx,pdf,ppt,txt',\n ]);\n\n $resource->update($request->all());\n\n if ( $request->hasFile('file') ) {\n $resource = 'resource-'.time().'.'.$request->file('file')->extension();\n $request->file->storeAs('resources', $resource,'public');\n $resource->file = $resource;\n }\n\n if ( $resource->save() ) {\n return redirect()->route('admin.resources.index')->with('success', 'Resource updated');\n } else {\n return redirect()->route('admin.resources.index')->with('error', 'Something went wrong');\n }\n }", "public function update(Request $request, Resource $resource)\n {\n //\n }", "public function updateStream($resource);", "public function update(Request $request, Storage $storage)\n {\n $storage->product_id = $request->product_id;\n $storage->amount = $request->amount;\n\n $storage->save();\n\n return redirect()->route('storages.index');\n }", "protected function updateImageResource($fileName, $imageId, $storage)\n {\n //Get image name and storage location for image\n $image = Image::where('id', '=', $imageId)->first();\n\n //Delete old image\n $this->deleteResource($image->name, $image->storage);\n\n //Store the new image\n $image->name = $fileName;\n $image->storage = $storage;\n\n $image->save();\n }", "public function update(Storage $storage, UpdateStorageRequest $request)\n {\n $this->storage->update($storage, $request->all());\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource updated', ['name' => trans('product::storages.title.storages')]));\n }", "public function update(StoreStorage $request, Storage $storage)\n {\n $storage->fill($request->all())->save();\n $request->session()->flash('alert-success', 'Запись успешно обновлена!');\n return redirect()->route('storage.index');\n }", "public function update_asset($id, Request $request){\n \t\tif(!Auth::user()){\n\t\t\treturn redirect('/');\n\t\t}\n \t\t$asset = Storage::find($id);\n \t\t$asset->name = $request->name;\n \t\t$asset->quantity = $request->quantity;\n \t\t$asset->category_id = $request->category;\n \t\tif($request->file('image') != null){\n\t\t\t$image = $request->file('image');\n\t\t\t$image_name = time(). \".\" . $image->getClientOriginalExtension();\n\t\t\t$destination = \"images/\";\n\t\t\t$image->move($destination, $image_name);\n\t\t\t$asset->image_url = $destination.$image_name;\n\t\t} \n\t\t$asset->save();\n\t\tsession()->flash('success_message', 'Item Updated successfully');\n\t\treturn redirect(\"/storage\");\n \t}", "public function update(Request $request, Flight $exercise, FlightResource $resource)\n {\n $request->validate([\n 'display_name' => 'required|string|max:100',\n 'file' => 'nullable|file|max:10240|mimes:pdf',\n 'uri' => 'nullable|url|max:255',\n ]);\n\n if ($resource->type === 'file' && $request->file('file')) {\n Storage::drive('public')->delete($resource->resource);\n $resource->resource = $request->file('file')->store('smartcars/exercises/resources', ['disk' => 'public']);\n } elseif ($resource->type === 'uri' && $request->input('uri')) {\n $resource->resource = $request->input('uri');\n }\n\n $resource->save();\n\n return redirect()->route('adm.smartcars.exercises.resources.index', $exercise)\n ->with('success', 'Resource edited successfully.');\n }", "public function update(Request $request, $id)\n {\n $validator = Validator::make($request->all(), [\n 'title' => 'required|string',\n 'content' => 'required|string',\n 'mentoring_area_id' => 'required|integer',\n 'featured_image_uri' => 'string',\n ]);\n\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), 400);\n }\n \n $resource = Resource::find($id);\n $resource->title = $request->get('title');\n $resource->content = $request->get('content');\n $resource->featured_image_uri = $request->get('featured_image_uri');\n $resource->updated_at = \\Carbon\\Carbon::now();\n $resource->mentoring_area_id = $request->get('mentoring_area_id');\n $resource->save();\n $data['resource'] = $resource;\n return APIHandler::response(1, \"Resource has been updated\");\n }", "protected function updateVideoResource($fileName, $videoId, $storage, $premium=1)\n {\n //Get video name and storage location for video\n $video = Video::where('id', '=', $videoId)->first();\n\n //Check the storage medium\n if($storage == 'vimeo' || $storage == 'youtube')\n {\n $video->name = $fileName;\n $video->storage = $storage;\n $video->premium = $premium;\n $video->save();\n }\n else\n {\n if($video['storage'] == 'local' || $video['storage'] == 's3')\n {\n //Delete old video\n $this->deleteResource($video->name, $video->storage);\n }\n \n //Store the new video\n $video->name = $fileName;\n $video->storage = $storage;\n $video->premium = $premium;\n $video->save();\n }\n }", "public function put($resource, $with=[]){\n return $this->fetch($resource, self::PUT, $with);\n }", "public function update($id, $resource) {\n SCA::$logger->log(\"update resource\");\n return $this->orders_service->update($id, $resource);\n }", "public function update($path);", "public function update($id, $resource)\n {\n SCA::$logger->log(\"Entering update()\");\n //check whether it is an sdo or an xml string.\n if ($resource instanceof SDO_DataObjectImpl) {\n //if the thing received is an sdo convert it to xml\n if ($this->xml_das !== null) {\n $xml = SCA_Helper::sdoToXml($this->xml_das, $resource);\n } else {\n throw new SCA_RuntimeException(\n 'Trying to update a resource with SDO but ' .\n 'no types specified for reference'\n );\n }\n } else {\n $xml = $resource;\n }\n\n $slash_if_needed = ('/' === $this->target_url[strlen($this->target_url)-1])?'':'/';\n\n $handle = curl_init($this->target_url.$slash_if_needed.\"$id\");\n curl_setopt($handle, CURLOPT_HEADER, false);\n curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($handle, CURLOPT_CUSTOMREQUEST, \"PUT\");\n curl_setopt($handle, CURLOPT_POSTFIELDS, $xml);\n\n //replace with Content-Type: atom whatever\n $headers = array(\"User-Agent: SCA\",\n \"Content-Type: text/xml;\",\n \"Accept: text/plain\");\n curl_setopt($handle, CURLOPT_HTTPHEADER, $headers);\n\n $result = curl_exec($handle);\n\n $response_http_code = curl_getinfo($handle, CURLINFO_HTTP_CODE);\n\n curl_close($handle);\n\n $response_exception = $this->buildResponseException($response_http_code, '200');\n\n if ($response_exception != null) {\n throw $response_exception;\n } else {\n //update does not return anything in the body\n return true;\n }\n }", "public function update(Request $request, $id)\n {\n $this->validate($request, [\n 'name' => 'required',\n 'link' => 'required',\n 'description' => 'required'\n ]);\n\n $resource = Resource::find($id);\n $resource->name = $request->name;\n $resource->type_id = $request->type_id;\n $resource->has_cost = ($request->has('has_cost')) ? 1 : 0;\n $resource->language_id = $request->language_id;\n $resource->link = $request->link;\n $resource->description = $request->description;\n $resource->tags = '';\n\n $resource->save();\n //return back()->with('success', 'Recurso actualizado satisfactoriamente');\n return redirect('/resource')->with('success', 'Recurso actualizado satisfactoriamente');\n }", "public function update(Request $request, $id)\n {\n $oldProduct = Product::findOrFail($id);\n $data = $request->all();\n if(isset($data['img'])){\n // $file = $request->file('photo');\n // return $file;\n $imgName = time().'.'.$request->img->extension();\n $data['img'] = $imgName;\n // Storage::putFile('spares', $file);\n $path = $request->img->storeAs('public/uploads', $imgName); //in Storage\n\n //delete old file\n if($oldProduct->img != 'product-default.png'){\n Storage::delete(\"public/uploads/\".$oldProduct->img);\n // return 'deleted';\n }\n \n }else{\n $data['img'] = $oldProduct->img;\n }\n $oldProduct->update($data);\n return redirect()->route('product.index'); \n\n }", "public function update($request, $id) {\n\t\t\t$image = $request['photo'];\n\t\t\tif($image !== null) {\n\t\t\t\t$name = time().'.' . explode('/', explode(':', substr($image, 0, strpos($image, ';')))[1])[1];\n\t\t\t\t\\Image::make($request['photo'])->save(public_path('storage/products/').$name);\n\t\t\t\t$request['photo'] = $name;\n\t\t\t} else {\n\t\t\t\t$currenPhoto = Product::all()->where('id', $id)->first();\n\t\t\t\t$request['photo'] = $currenPhoto->photo;\n\t\t\t}\n return $this->product->update($id, $request);\n\t}", "public function updateStream($path, $resource, Config $config)\n {\n }", "public function edit(Resource $resource)\n {\n //\n }", "public function updateResourceIndex(&$resource) {\n if ($this->connector != null) {\n\n // STEP 1: Update or insert this resource as a node:\n $this->logger->addDebug(\"Updating/Inserting Node into Neo4J database\");\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id} }) SET a.title = {title}, a.version = {version}, a.href = {href}\n return a;\",\n [\n 'id' => $resource->getID(),\n 'version' => $resource->getVersion(),\n 'title' => $resource->getTitle(),\n 'href' => $resource->getLink()\n ]\n );\n\n // Check to see if anything was added\n $records = $result->getRecords();\n if (empty($records)) {\n // Must create this record instead\n $result = $this->connector->run(\"CREATE (n:Resource) SET n += {infos};\",\n [\n \"infos\" => [\n 'id' => $resource->getID(),\n 'version' => $resource->getVersion(),\n 'title' => $resource->getTitle(),\n 'href' => $resource->getLink()\n ]\n ]\n );\n }\n\n // STEP 2: Update or insert the resource's link to holding repository\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id} })-[r:HIRELATION]->()\n return r;\",\n [\n 'id' => $resource->getID(),\n ]\n );\n $records = $result->getRecords();\n if (!empty($records)) {\n // delete the one there so that we can add the correct one (just in case)\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id}})-[r:HIRELATION]->() delete r;\",\n [\n 'id' => $resource->getID()\n ]\n );\n\n }\n\n // If resource has a repository, then add a link\n if ($resource->getRepository() != null && $resource->getRepository()->getID() != null) {\n $this->connector->run(\"MATCH (a:Identity {id: {id1} }) MATCH (b:Resource {id: {id2} }) CREATE (b)-[r:HIRELATION]->(a);\",\n [\n 'id1' => (string) $resource->getRepository()->getID(),\n 'id2' => $resource->getID()\n ]);\n }\n }\n }", "public function update($data) {}", "public function update($data) {}", "public function putStream($resource);", "public function update(Request $request, NebulaResource $resource, $item): RedirectResponse\n {\n $this->authorize('update', $item);\n\n $validated = $request->validate($resource->rules(\n $resource->editFields()\n ));\n\n $resource->updateQuery($item, $validated);\n\n $this->toast(__(':Resource updated', [\n 'resource' => $resource->singularName(),\n ]));\n\n return redirect()->back();\n }", "public function saveShopifyResource() {\n if (is_null($this->getShopifyId())) { // if there is no id...\n $this->createShopifyResource(); // create a new resource\n } else { // if there is an id...\n $this->updateShopifyResource(); // update the resource\n }\n }", "public function update($entity);", "public function update($entity);", "public function setResource($resource);", "public function updateStream($path, $resource, Config $config)\n {\n return $this->upload($path, $resource, $config);\n }", "public function isUpdateResource();", "public function update(Request $request, $id)\n {\n $device = Device::findOrFail($id);\n $device->fill($request->all());\n if ($request->hasFile('icon')) {\n if ($device->hasMedia('icon')) {\n $device->deleteMedia($device->getFirstMedia('icon'));\n }\n $device->addMediaFromRequest('icon')->toMediaCollection('icon');\n }\n $device->save();\n return new DeviceResource($device);\n }", "public function update(Request $request, $id)\n {\n //\n $product = Product::findOrFail($id);\n \n $product->update($request->all());\n \n $file = $request->file('url_image')->move('upload', $request->file('url_image')->getClientOriginalName());\n\n Product::where('id',$id)->update(['url_image'=>$file]);\n \n \\Session::flash('flash_message', 'Edit product successfully.'); \n \n //cũ : return redirect('articles');\n return redirect()->route('products.index');\n }", "public function store($data, Resource $resource);", "public function update(Request $request, $id)\n {\n \n $product = Product::find($id);\n\n\n $product->fill($request->all())->save();\n\n //Verificamos que tenemos una imagen\n if($request->file('photo_1')){\n\n\n //En caso de tenerla la guardamos en la clase Storage en la carpeta public en la carpeta image.\n $path = Storage::disk('public')->put('photo_1',$request->file('photo_1'));\n\n //Actualizamos el Post que acabamos de crear\n $product->fill(['photo_1' => asset($path)])->save();\n\n }\n\n\n return redirect()->route('products.index')->with('info', 'Producto actualizado exitosamente!');\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n\n if (\\Input::hasFile('image')) {\n $this->imgsave($request, $product);\n }\n\n\n if (!empty($request->input('tags'))) {\n $product->tags()->sync($request->input('tags'));\n } else {\n $product->tags()->detach();\n }\n\n $product->update($request->all());\n\n return redirect()->to('dashboard/product')->with('message', 'update success');\n }", "public function put($resource_path, array $variables = array()) {\n return $this->call($resource_path, $variables, 'PUT');\n }", "public function update($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n if (method_exists($this, 'updateValidations')) {\n $this->request->validate($this->updateValidations());\n }\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Update the specified resource */\n $resource->update(Input::all());\n\n /* Redirect back */\n return redirect()->back()\n ->with(\n 'info',\n Lang::has($this->name . '.resource-updated') ?\n $this->name . '.resource-updated' :\n 'messages.alert.resource-updated'\n );\n }", "public function putResponse($request)\n {\n $idSearched = $this->searcher->searchResourceIndex(\n $request, \n $this->db[$request['resource']]\n );\n if ($idSearched) {\n $resource = $this->db[$request['resource']][$idSearched];\n $bodyInput = json_decode($this->standardInput, true);\n $resource = BodyRequest::canApplyBody($bodyInput);\n $resource['id'] = (int)$request['param'];\n foreach($resource as $key => $value) {\n $this->db[$request['resource']][$idSearched][$key] = $value;\n }\n file_put_contents(DB_PATH, json_encode($this->db));\n }\n }", "public function update(Storedataset $request, dataset $dataset){\n $dataset->title = $request->input('title');\n $dataset->caption = $request->input('caption');\n $dataset->file_url = $request->input('file_url');\n $dataset->type = $request->input('type');\n $dataset->status = $request->input('status');\n $dataset->publication_id = $request->input('publication_id');\n\n $dataset->save();\n\n return redirect()->route('datasets.show', ['dataset' => $dataset]);\n }", "public function update(Request $request, $id)\n\n {\n ResourceManagement::findOrFail($id);\n $constraints = [\n 'title' => 'required|max:100',\n 'url'=> 'required|max:191',\n 'content' => 'required'\n ];\n\n $input = [\n 'title' => $request['title'],\n 'url' => $request['url'],\n 'content' => $request['content'],\n 'type' => $request['type'],\n 'level' => $request['level'],\n 'user_id' => $request['user']\n ];\n// $this->validate($input, $constraints);\n ResourceManagement::where('id', $id)\n ->update($input);\n\n return redirect()->intended('/resource-management');\n }", "public function update(Request $request, $id)\n {\n $this->validate($request, [\n 'title' => 'required',\n 'description' => 'required|string',\n 'price' => 'required|numeric',\n 'reference'=>'required'\n ]);\n \n $product = Product::find($id);\n $product->update($request->all());\n \n $im = $request->file('picture');\n \n if (!empty($im)) {\n \n $link = $request->file('picture')->store('images');\n \n \n $product->update([\n 'url_image' => $link,\n ]);\n } \n //dump($request->all());\n return redirect()->route('product.index')->with('message', 'Article modifié avec succès');\n }", "public function update(StoreOrUpdateAsset $request, Asset $asset)\n {\n if (Storage::exists($asset->path) && !Storage::delete($asset->path)) {\n abort(500);\n }\n\n $file = $request->file('file');\n $path = $file->store('assets');\n\n if (!$path) {\n abort(500);\n }\n\n // We wonder if we should delete the old file or not...\n\n $asset->name = $file->getClientOriginalName();\n $asset->size = $file->getSize();\n $asset->type = $file->getMimeType();\n $asset->path = $path;\n\n if ($asset->save()) {\n flash('The asset has been saved.')->success();\n } else {\n abort(500);\n }\n\n return redirect('/admin/assets');\n }", "public function update(FoodRecipeRequest $request, $id)\n {\n $foodRecipe = FoodRecipe::with('ingredients','cookingProcesses')->findOrFail($id);\n if ($request->input('name')!= null)\n $foodRecipe->name = $request->input('name');\n if ($request->input('detail')!= null)\n $foodRecipe->detail = $request->input('detail');\n if($request->file('photo') != null) {\n $old_file = $foodRecipe->photo;\n if($old_file != null){\n $path = public_path().'/storage/'.$old_file;\n File::delete($path);\n }\n $file = $request->file('photo');\n $name = '/foodRecipe/' . Carbon::now()->format(\"dnY-Hisu\") . \".\" . $file->extension();\n $file->storePubliclyAs('public', $name);\n $foodRecipe->photo = $name;\n }\n $foodRecipe->save();\n return new FoodRecipeResource($foodRecipe);\n }", "public function update(StorageTypeRequest $request, $id)\n {\n try {\n $this->service->updateStorageType($request, $id);\n return $this->NoContent();\n } catch (EntityNotFoundException $e) {\n \\Log::error($e->getMessage());\n return $this->NotFound($e->getMessage());\n } catch(\\QueryException $e) {\n \\Log::error($e->getMessage());\n return $this->ServerError();\n } catch(Exception $e) {\n \\Log::error($e->getMessage());\n return $this->ServerError();\n }\n }", "public function update(Request $request, $id)\n {\n //validation\n $this->validate(request(),[\n 'image' => 'image'\n ]);\n\n $slider = HomeSliders::find($id);\n \n $slider->link = request('link');\n\n //get old image to delete if updated\n $oldImage = request('oldImage');\n //get the new image\n $NewImage=$request->file('image');\n\n if($NewImage)\n {\n $filenameToStore= helpers::updatePhoto('image','homeSliders',$request);\n $slider->image=$filenameToStore;\n\n Storage::delete('public/Images/homeSliders/'.$oldImage);\n }\n\n $slider->save();\n\n Alert::success(config('app.name'), trans('messages.Updated Successfully') );\n return redirect()->route('admin.homeSlider',$slider->type);\n }", "public function update(Qstore $request, $id)\n {\n //\n }", "public function update(IEntity $entity);", "protected function performUpdate(): bool\n {\n // Abort if resource does not support update operations\n if (!$this->isUpdatable()) {\n throw new UnsupportedOperation(sprintf('API does not support update operation for %s resources', $this->resourceNameSingular()));\n }\n\n $id = $this->id();\n $prepared = $this->prepareBeforeUpdate($this->toArray());\n\n $payload = [\n $this->resourceNameSingular() => $prepared\n ];\n\n $response = $this\n ->request()\n ->put($this->endpoint($id), $payload);\n\n // Extract and (re)populate resource (if possible)\n // Note: Unlike the \"create\" method, Redmine does NOT\n // appear to send back a full resource when it has been\n // successfully updated.\n $this->fill(\n $this->decodeSingle($response)\n );\n\n return true;\n }", "public function update($request, $id);", "function put($resource, $data = null) {\r\n\t\t\r\n\t\tif(isset($data)) {\r\n\t\t\t$this->request_body = $data;\r\n\t\t}\r\n\r\n\t\t// make the call chief\r\n\t\t$this->exec ( \"PUT\", '/' . $resource );\r\n\r\n\t\t// check the request status\r\n\t\tif($this->status_code != 200){\r\n\t\t\t$this->Logger->error(\r\n\t\t\t\tsprintf(\r\n\t\t\t\t\t'GET Call for resource \\'%s\\' Failed.\r\n\t\t\t\t\tStatus: %d,\r\n\t\t\t\t\tRequest: %s\r\n\t\t\t\t\tAPI Error Message: \r\n\t\t\t\t\t%s',\r\n\t\t\t\t\t$resource,\r\n\t\t\t\t\t$this->status_code,\r\n\t\t\t\t\t$this->request_body_raw,\r\n\t\t\t\t\t$this->response_body\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t\tthrow new Exception($this->response_body);\r\n\t\t} else {\r\n\t\t\treturn $this->response_parsed;\r\n\t\t}\r\n\t}", "public function updateEntities($resource)\n {\n $json = [\n 'resource' => $resource,\n ];\n $request = $this->createRequest('PUT', '/entities', ['json' => $json]);\n $response = $this->send($request);\n return $response;\n }", "public function updateStream($path, $resource, Config $config)\n {\n return $this->writeStream($path, $resource, $config);\n }", "public function update(Request $request, $id)\n {\n\n $product = Product::findOrFail($id);\n $product->name = $request['name'];\n $product->price = $request['price'];\n $product->stock = $request['stock'];\n $product->description = $request['description'];\n\n $file = $request->file('image');\n $fileName = $file->getClientOriginalName();\n if($fileName != $product->image){\n $request->file('image')->move('images/',$fileName);\n $product->image = $fileName;\n }\n\n $product->save();\n\n return redirect()->route('products.show',\n $product->id)->with('flash_message',\n 'Article, '. $product->name.' updated');\n }", "protected function handleUpdate()\n {\n $resource = $this->argument('resource');\n $action = $this->option('action');\n $startPage = (int)$this->option('startPage');\n $perPage = (int)$this->option('perPage');\n\n try {\n $harvest = Harvest::where('resource', $resource)->where('action', $action)->firstOrFail();\n } catch (\\Exception $e) {\n $this->info('There is no existing action for updating ' . ucwords($action) . ' ' . ucwords($resource) . '.');\n exit('Nothing was updated.');\n }\n\n $options = [\n 'startPage' => $startPage,\n 'perPage' => $perPage,\n 'lastRun' => $harvest->last_run_at\n ];\n\n // If a lastRun was given use that\n // OR if this has never been run before use 2001-01-01\n if (!empty($this->option('lastRun'))) {\n $options['lastRun'] = new Carbon($this->option('lastRun'));\n } elseif (is_null($options['lastRun'])) {\n $options['lastRun'] = new Carbon('2001-01-01');\n }\n\n $job = new UpdateResourceJob(\n $harvest,\n $options\n );\n\n $message = 'Updating ' . $action . ' ' . $resource . ' ' . $perPage . ' at a time';\n if (isset($lastRun)) {\n $message .= ' with entries updated since ' . $lastRun->format('r');\n }\n $this->info($message);\n $this->dispatch($job);\n }", "abstract public function put($data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function testUpdateSupplierUsingPUT()\n {\n }", "public function update(Request $request, $id)\n {\n $storageplace = Storageplace::findOrFail($id);\n $storageplace->update($request->only(['storageplace']));\n return $storageplace;\n }", "public function updateRelatedImage(Request $request, $id)\n {\n // Delete display image in Storage\n Validator::make($request->all(), ['photos' => \"required|file|image|mimes:jpg,png,jpeg|max:5000\"])->validate();\n\n\n if ($request->hasFile(\"photos\")) {\n\n $photo = ProductsPhoto::find($id);\n $imageName = $photo->photos;\n $exists = Storage::disk('local')->exists(\"public/product_images/\" . $photo->photos);\n\n //delete old image\n if ($exists) {\n Storage::delete('public/product_images/' . $imageName);\n }\n\n //upload new image\n $ext = $request->file('photos')->getClientOriginalExtension(); //jpg\n\n $request->photos->storeAs(\"public/product_images/\", $imageName);\n\n $arrayToUpdate = array('photos' => $imageName);\n DB::table('products_photos')->where('id', $id)->update($arrayToUpdate);\n\n return redirect()->route(\"adminDisplayRelatedImageForm\", ['id' => $photo->product_id]);\n } else {\n\n $error = \"NO Image was Selected\";\n return $error;\n }\n }", "public function update(Request $request, $id)\n {\n $skill = Skill::findOrFail($id);\n\n $skill->skill = $request->skill;\n\n if ($request->hasFile('image')) {\n \\Cloudder::upload($request->file('image'));\n $c=\\Cloudder::getResult();\n // $image = $request->file('image');\n // $filename = time() . '.' . $image->getClientOriginalExtension();\n // $location = public_path('images/' . $filename);\n // Image::make($image)->save($location);\n\n $skill->image = $c['url'];\n }\n\n $skill->save();\n\n Session::flash('success', 'Successsfully updated your skill!');\n return redirect()->route('skills.index');\n }", "public function updateStream($path, $resource, Config $config = null)\n {\n $contents = stream_get_contents($resource);\n\n return $this->write($path, $contents, $config);\n }", "public abstract function update($object);", "public static function update($id, $file)\n {\n Image::delete($id);\n\n Image::save($file);\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n $image = $product->image;\n if($request->hasFile('image')){\n $image = $request->file('image')->store('files');\n \\Storage::delete($product->image);\n } \n $product->name = $request->get('name');\n $product->price = $request->get('price');\n $product->description = $request->get('description');\n $product->additional_info = $request->get('additional_info');\n $product->category_id = $request->get('category');\n $product->subcategory_id = $request->get('subcategory');\n $product->image = $image;\n $product->save();\n return redirect()->back();\n }", "public function update(Request $request, $id)\n {\n $sli=Slider::find($id);\n $sli->sort_order=$request->input('sort_order');\n $image = $request->file('slider');\n if($image == ''){\n $image = $sli->slider;\n }else{\n $image = base64_encode(file_get_contents($request->file('slider')));\n }\n $sli->slider = $image;\n $sli->save();\n return redirect()->back();\n }", "public function update(ProductRequest $request, $id)\n {\n $input = Product::find($id);\n $data = $request->all();\n if ($file = $request->file('product_photo')){\n $name = time().$file->getClientOriginalName();\n $file->move('product_image',$name);\n $data['product_photo']=$name;\n// $input->update($data);\n }\n $input->update($data);\n return redirect('admin/products/');\n }", "public function update(Request $request, $id)\n {\n $volume = $this->findVolume($id);\n\n if(count($volume) > 0) {\n $volume->str_volume_name = $request->str_volume_name;\n\n $volume->save();\n }\n\n return response()\n ->json(\n array(\n 'message' => 'Volume is successfully updated.',\n 'volume' => $volume\n ),\n 201\n );\n }", "public function update(Request $request, $id)\n {\n $product = ProductModel::find($id);\n $product->name = $request->name;\n $product->description = $request->description;\n $product->price = $request->price;\n $product->stock = $request->stock;\n\n if($request->image!=null){\n $imageName = time().'.'.$request->image->extension();\n $request->image->move(public_path('images'), $imageName);\n $product->image = \"/images/\".$imageName;\n }\n $product->save();\n return redirect(\"/products/index\")->with('success','Product has been updated');\n }", "public function update()\n {\n $accessory = Accessories::find(request('id'));\n\n if ($accessory == null) {\n return response()->json([\"error\" => \"aksesuaras nerastas\"], 404);\n }\n\n $this->validateData();\n $path = $accessory->src;\n\n if (request()->hasFile('src')) {\n\n if (Storage::disk('public')->exists($accessory->src)) {\n Storage::disk('public')->delete($accessory->src);\n }\n $path = request()->file('src')->store('accessoriesImages', 'public');\n }\n\n $accessory->update(array_merge($this->validateData(), ['src' => $path]));\n\n return response()->json([\"data\" => $accessory], 200);\n }", "public function update(ProductStoreRequest $request,$id)\n {\n $data = $request->validated();\n $product = Product::where('id',$id);\n $product->update($data);\n return response(\"Producto actualizado con éxito\",200);\n }", "public function update($entity)\n {\n \n }", "public function updateStream($path, $resource, Config $config)\n {\n return $this->write($path,stream_get_contents($resource),$config);\n }", "public function update($id, Request $request)\n {\n date_default_timezone_set('Asia/Taipei');\n $data = $request->all();\n $dbData = Product::find($id);\n $myfile = Storage::disk('local');\n if ($request->hasFile('img')) {\n $file = $request->file('img');\n $path = $myfile->putFile('public', $file);\n $data['img'] = $myfile->url($path);\n File::delete(public_path($dbData->img));\n }\n $dbData->update($data);\n\n if ($request->hasFile('imgs')) {\n // $this->fetchDestroyByProdId($id);\n $localS = Storage::disk('local');\n\n $fileS = $request->file('imgs');\n $imgs = [];\n foreach ($fileS as $i) {\n $pathS = $localS->putFile('public', $i);\n $imgs[] = $localS->url($pathS);\n }\n foreach ($imgs as $img) {\n ProductImg::create([\n 'product_id' => $id,\n 'img' => $img\n ]);\n }\n }\n\n return redirect()->route('admin');\n }", "public function update(Request $request, Product $product)\n { $remfile= $product->image;\n if($request->filep){\n $product->image=$request->filep;\n File::delete(storage_path('app/public/products/'.$remfile));\n }else{\n $product->image=$remfile;\n }\n //rmdir(storage_path('app/public/products/'.$remfile));\n $product->name = $request->name;\n $product->description = $request->description;\n $product->price = $request->price;\n $product->save();\n sleep(3);\n toast('Details updated successfully','info');\n return redirect('/products');\n }", "public function update($id, $input);", "public function update(ProductRequest $request,int $id): ProductResource\n {\n $attributes = $request->only('supplier_id', 'name', 'warehouses');\n\n return new ProductResource($this->productRepository->update($id, $attributes)); }", "public function update(Request $request, $id)\n {\n $slider=new Slider;\n $slider=$slider::find($id);\n \n \n if($file =$request->file('slider')){\n if(Storage::delete('public/slider/'.$slider->slider)){\n\n //Get file original name//\n \n$original_name=$file->getClientOriginalName();\n\n //Get just the file name\n$filename=pathinfo($original_name,PATHINFO_FILENAME);\n\n//Create new file name\n$name=$filename.'_'.time().'.'.$file->getClientOriginalExtension();\n\n $destination='public/slider';\n $path=$request->slider->storeAs($destination,$name);\n $slider->slider=$name;\n $slider->save();\n return redirect('Admin/slider');\n\n }\n }\n}", "public function update(Request $request, $id)\n {/* dd($request->all()); */\n $acheivePic = $this->acheiveRepo->find($id);\n $acheive = $request->except('_method', '_token', 'photo', 'ar', 'en');\n $acheiveTrans = $request->only('ar', 'en');\n\n if ($request->hasFile('icon')) {\n // Delete old image first.\n $oldPic = public_path() . '/images/acheives/' . $acheivePic->icon;\n File::delete($oldPic);\n\n // Save the new one.\n $image = $request->file('icon');\n $imageName = $this->upload($image, 'acheives');\n $acheive['icon'] = $imageName;\n }\n\n $this->acheiveRepo->update($id, $acheive, $acheiveTrans);\n\n return redirect('admin-panel/widgets/acheive')->with('updated', 'updated');\n }", "public function update(Request $request, $id)\n {\n $data = $request->all();\n extract($data);\n\n $productVarient = new ProductVariant();\n $productVarient = $productVarient->find($id);\n $productVarient->vendor_id = auth()->user()->id;\n $productVarient->description = $prod_desc;\n $productVarient->price = $price;\n\n if(request()->hasFile('photo')){\n $image = request()->file('photo')->getClientOriginalName();\n $imageNewName = auth()->user()->id.'-'.$image;\n $file = request()->file('photo');\n $file->storeAs('images/product',$imageNewName, ['disk' => 'public']);\n $productVarient->image = $imageNewName;\n }\n \n $productVarient->save();\n\n return back()->withStatus(__('Product successfully updated.'));\n }", "public function update(Request $request, $id)\n {\n //if upload new image, delete old image\n $myfile=$request->old_photo;\n if($request->hasfile('photo'))\n {\n $imageName=time().'.'.$request->photo->extension();\n $name=$request->old_photo;\n\n if(file_exists(public_path($name))){\n unlink(public_path($name));\n $request->photo->move(public_path('backendtemplate/truefalseimg'),$imageName);\n $myfile='backendtemplate/truefalseimg/'.$imageName;\n }\n }\n //Update Data\n $truefalsequestion=TrueFalseQuestion::find($id);\n $truefalsequestion->name=$request->name;\n $truefalsequestion->photo=$myfile;\n $truefalsequestion->answer = $request->answer;\n $truefalsequestion->question_id = $request->question;\n $truefalsequestion->save();\n\n //Redirect\n return redirect()->route('truefalsequestions.index'); \n }", "public function update($id);", "public function update($id);", "private function update()\n {\n $this->data = $this->updateData($this->data, $this->actions);\n $this->actions = [];\n }", "public function put($path, $data = null);", "public function update(Request $request, $id)\n {\n $request->validate([\n 'path_image'=>'image',\n 'status'=>'required|in:0,1'\n ]);\n $slider=Slider::whereId($id)->first();\n if (is_null($slider)){\n return redirect()->route('sliders.index')->with('error','Slider does not exist');\n }\n try {\n if ($request->hasFile('path_image')){\n $file = $request->file('path_image');\n\n $image_path= $file->store('/sliders',[\n 'disk'=>'uploads'\n ]);\n Storage::disk('uploads')->delete($slider->image);\n\n $request->merge([\n 'image'=>$image_path,\n ]);\n }\n\n $slider->update( $request->only(['status','image']));\n return redirect()->route('sliders.index')->with('success','Updated successful');\n }catch (\\Exception $exception){\n return redirect()->route('sliders.index')->with(['error'=>'Something error try again']);\n\n }\n }", "public function update() {\n $this->accessory->update($this->accessory_params());\n\n if ($this->accessory->is_valid()) {\n $this->update_accessory_image($this->accessory);\n redirect('/backend/accessories', ['notice' => 'Successfully updated.']);\n } else {\n redirect(\n '/backend/accessories/edit',\n ['error' => $this->accessory->errors_as_string()],\n ['id' => $this->accessory->id]\n );\n }\n }", "public function update(Entity $entity);", "public function update(Request $request, $id)\n {\n $icon = SliderIcon::find($id);\n $data = $request->all();\n $data['active'] = $request->has('active') ? 1 : 0;\n if ($request->hasFile('img')) {\n if (Storage::disk('public')->exists(str_replace('storage', '', $icon->img))){\n Storage::disk('public')->delete(str_replace('storage', '', $icon->img));\n }\n $image = $request->file('img');\n $fileName = time().'_'.Str::lower(Str::random(5)).'.'.$image->getClientOriginalExtension();\n $path_to = '/upload/images/'.getfolderName();\n $image->storeAs('public'.$path_to, $fileName);\n $data['img'] = 'storage'.$path_to.'/'.$fileName;\n }\n $icon->update($data);\n return redirect()->route('slider_icons.index')->with('success', 'Данные преимущества обнавлены');\n }", "public function update() {\n\t $this->layout = false;\n\t \n\t //set default response\n\t $response = array('status'=>'failed', 'message'=>'HTTP method not allowed');\n\t \n\t //check if HTTP method is PUT\n\t if($this->request->is('put')){\n\t //get data from request object\n\t $data = $this->request->input('json_decode', true);\n\t if (empty($data)) {\n\t $data = $this->request->data;\n\t }\n\t \n\t //check if product ID was provided\n\t if (!empty($data['id'])) {\n\t \n\t //set the product ID to update\n\t $this->Player->id = $data['id'];\n\t if ($this->Player->save($data)) {\n\t $response = array('status'=>'success','message'=>'Product successfully updated');\n\t } else {\n\t $response['message'] = \"Failed to update product\";\n\t }\n\t } else {\n\t $response['message'] = 'Please provide product ID';\n\t }\n\t }\n\t \n\t $this->response->type('application/json');\n\t $this->response->body(json_encode($response));\n\n\t return $this->response->send();\n\t}", "public function update(Request $request, $id)\n {\n //validate incoming request\n $request->validate([\n 'name' => 'string|max:100|nullable',\n 'picture' => 'max:2000|mimes:jpeg,jpg,png,svg|nullable', //max size 2mb,\n 'total' => 'integer|min:0|nullable', //value must be > 0\n 'selling_price' => 'numeric|min:0|nullable',\n 'cost_price' => 'numeric|min:0|nullable',\n 'category_id' => 'integer|nullable'\n ]);\n\n try {\n $product = Auth::user()->store->product()->findorFail($id);\n } catch (ModelNotFoundException $e) {\n return response()->json([\n \"message\" => \"Forbidden\"\n ], 403);\n }\n\n //if category id isnt null\n if ($category_id = $request->category_id) {\n if (!$this->isCategoryIdValid($category_id))\n return response()->json([\n \"message\" => \"Category Id is not valid\"\n ], 422);\n else\n $product->category_id = $request->category_id;\n }\n\n //if uploaded file exist\n if ($picture = $request->file(\"picture\")) {\n //if product already has logo\n if ($product->picture)\n Storage::delete(Product::$PICTURE_PATH . \"/\" . $product->picture);\n\n $picture_path = $picture->store(Product::$PICTURE_PATH);\n //remove folder name from path\n $product->picture = str_replace(Product::$PICTURE_PATH . \"/\", '', $picture_path);\n }\n\n $this->renewProduct($product, $request);\n $product->save();\n return response()->json(new ProductResource($product), 200);\n }", "public function update(Request $request, $id)\n {\n $request->validate([\n 'name' => 'required | min:3 | string',\n 'type' => 'required',\n 'producer' => 'required',\n 'image' => 'image | mimes:png,jpg,jpeg',\n 'price_input' => 'required | numeric | min:0 | max:300000000',\n 'promotion_price' => 'required | numeric | max:300000000',\n 'description' => 'required | string',\n\n ]);\n $product = Product::withTrashed()->findOrfail($id);\n $product->name = $request->name;\n $product->id_type = $request->type;\n $product->id_producer = $request->producer;\n\n $product->amount = $request->amount;\n if (request('image')) {\n $product->image = base64_encode(file_get_contents($request->file('image')->getRealPath()));\n }\n\n $product->price_input = $request->price_input;\n\n if ( $request->promotion_price >= 0 && $request->promotion_price < $product->price_input) {\n $product->promotion_price = $request->promotion_price;\n }else{\n return back()->with('error', '\n Do not enter a negative number');\n }\n $product->new = $request->new;\n\n $product->description = $request->description;\n\n $product->save();\n $product->size()->sync(request('size'));\n\n return redirect()->route('product.index')->with('success', 'Product Updated successfully');\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n\n $product->name = $request->input('name');\n $product->description = $request->input('description');\n $product->lastPrice = $product->price !== $request->input('price') ? $product->price : NULL;\n $product->price = $request->input('price');\n\n if ($request->hasFile('image')) { \n $currentImg = $product->image;\n if ($currentImg) {\n Storage::delete('/public/' . $currentImg);\n }\n $image = $request->file('image'); \n $path = $image->store('images','public');\n $product->image = $path;\n };\n\n $product->save(); \n\n $product_promotions = $request->input('promotion');\n\n $product->promotions()->sync($product_promotions);\n\n return redirect()->route('admin.modify');\n }", "public static function updateImage($fileName, $imageId, $storage)\n {\n //Get image name and storage location for image\n $image = Image::where('id', '=', $imageId)->first();\n\n //Delete old image\n ResourceHandler::delete($image->name, $image->storage);\n\n //Store the new image\n $image->name = $fileName;\n $image->storage = $storage;\n\n $image->save();\n }", "public function update($request, $id)\n {\n $this->checkExits($id);\n $data = $request->except(['_method','_token','photo']);\n\n if($request->photo)\n {\n try {\n $this->UploadFile($request);\n } catch (\\Exception $e) {\n //if has exception , don't has action\n }\n if ($this->img !== '') {\n $data['img'] = $this->img;\n }\n }\n\n $this->object->update($data);\n\n }", "public function updateProduct($request, $product)\n {\n $product->update($request->except(['_token', '_method', 'image']));\n if ($request->hasFile('image')) {\n $image = $request->file('image');\n $imageName = time() . '.' . $request->file('image')->extension();\n // $img = Image::make('public/foo.jpg');\n\n $image_resize = Image::make($image->getRealPath());\n $image_resize->resize(500, 500);\n $image_resize->save(public_path('images/') . $imageName, 100);\n $product->gallery = $imageName;\n $product->save();\n }\n $product->getTags()->sync($request->input('tags'));\n }" ]
[ "0.7425105", "0.70612276", "0.70558053", "0.6896673", "0.6582159", "0.64491373", "0.6346954", "0.62114537", "0.6145042", "0.6119944", "0.61128503", "0.6099993", "0.6087866", "0.6052593", "0.6018941", "0.60060275", "0.59715486", "0.5946516", "0.59400934", "0.59377414", "0.5890722", "0.5860816", "0.5855127", "0.5855127", "0.58513457", "0.5815068", "0.5806887", "0.57525045", "0.57525045", "0.57337505", "0.5723295", "0.5714311", "0.5694472", "0.5691319", "0.56879413", "0.5669989", "0.56565005", "0.56505877", "0.5646085", "0.5636683", "0.5633498", "0.5633378", "0.5632906", "0.5628826", "0.56196684", "0.5609126", "0.5601397", "0.55944353", "0.5582592", "0.5581908", "0.55813426", "0.5575312", "0.55717176", "0.55661047", "0.55624634", "0.55614686", "0.55608666", "0.55599797", "0.55599797", "0.55599797", "0.55599797", "0.55599797", "0.55573726", "0.5556878", "0.5554201", "0.5553069", "0.55530256", "0.5543788", "0.55435944", "0.55412996", "0.55393505", "0.55368495", "0.5535236", "0.5534954", "0.55237365", "0.5520468", "0.55163723", "0.55125296", "0.5511168", "0.5508345", "0.55072427", "0.5502385", "0.5502337", "0.5501029", "0.54995877", "0.54979175", "0.54949397", "0.54949397", "0.54946727", "0.5494196", "0.54941916", "0.54925025", "0.5491807", "0.5483321", "0.5479606", "0.5479408", "0.5478678", "0.54667485", "0.5463411", "0.5460588", "0.5458525" ]
0.0
-1
Remove the specified resource from storage.
public function destroy(Request $request) { $menu_id = $request->input('menu_id'); // dd($menu_id); $MenuModel = new MenuModel(); $res=$MenuModel->destroy($menu_id); if($res){ return json_encode(['code'=>0,'msg'=>'OK']); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function delete($resource){\n return $this->fetch($resource, self::DELETE);\n }", "public function destroy(Resource $resource)\n {\n //\n }", "public function removeResource($resourceID)\n\t\t{\n\t\t}", "public function unpublishResource(PersistentResource $resource)\n {\n $client = $this->getClient($this->name, $this->options);\n try {\n $client->delete(Path::fromString($this->getRelativePublicationPathAndFilename($resource)));\n } catch (FileDoesNotExistsException $exception) {\n }\n }", "public function deleteResource(&$resource) {\n\n if ($this->connector != null) {\n $this->logger->addDebug(\"Deleting Resource Node from Neo4J database\");\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id}}) detach delete a;\",\n [\n 'id' => $resource->getID()\n ]\n );\n $this->logger->addDebug(\"Updated neo4j to remove resource\");\n }\n\n }", "public function deleteShopifyResource() {\n $this->getShopifyApi()->call([\n 'URL' => API::PREFIX . $this->getApiPathSingleResource(),\n 'METHOD' => 'DELETE',\n ]);\n }", "public function deleteResource()\n {\n $database = new Database();\n $id = $this->_params['id'];\n $database->deleteResource($id);\n $this->_f3->reroute('/Admin');\n }", "protected function deleteResource($fileName, $storage)\n {\n if (Storage::disk($storage)->exists($fileName)) \n {\n return Storage::disk($storage)->delete($fileName);\n }\n }", "public function delete()\n {\n persistableCollection::getInstance($this->resourceName)->deleteObject($this);\n }", "public function remove()\n {\n $this->_getBackend()->remove($this->_id);\n }", "public function remove()\n {\n if (! ftruncate($this->fileHandle, 0)) {\n throw new StorageException(\"Could not truncate $this->path\");\n }\n if (! unlink($this->path)) {\n throw new StorageException(\"Could not delete $this->path\");\n }\n }", "public function delete()\n\t{\n\t\t$s3 = AWS::createClient('s3');\n $s3->deleteObject(\n array(\n 'Bucket' => $this->bucket,\n 'Key' => $this->location\n )\n );\n\t\tif($this->local_file && file_exists($this->local_file)) {\n\t\t\tunlink($this->local_file);\n\t\t}\n $this->local_file = null;\n\t}", "public function delete()\n\t{\n\t\tsfCore::db->query(\"DELETE FROM `swoosh_file_storage` WHERE `id`='%i';\", $this->id);\n\t\t$this->fFile->delete();\n\t}", "public function delete(): void\n {\n unlink($this->getPath());\n }", "public function delete()\n {\n if($this->exists())\n unlink($this->getPath());\n }", "public function remove($path);", "function deleteFileFromStorage($path)\n{\n unlink(public_path($path));\n}", "public function delete(): void\n {\n unlink($this->path);\n }", "private function destroyResource(DrydockResource $resource) {\n $blueprint = $resource->getBlueprint();\n $blueprint->destroyResource($resource);\n\n $resource\n ->setStatus(DrydockResourceStatus::STATUS_DESTROYED)\n ->save();\n }", "public static function delete($fileName, $storage)\n {\n if (Storage::disk($storage)->exists($fileName)) \n {\n return Storage::disk($storage)->delete($fileName);\n }\n }", "public function remove() {}", "public function remove() {}", "public function remove();", "public function remove();", "public function remove();", "public function remove();", "function delete_resource($resource_id, $page)\n\t{\n\t\t//get resource data\n\t\t$table = \"resource\";\n\t\t$where = \"resource_id = \".$resource_id;\n\t\t\n\t\t$this->db->where($where);\n\t\t$resource_query = $this->db->get($table);\n\t\t$resource_row = $resource_query->row();\n\t\t$resource_path = $this->resource_path;\n\t\t\n\t\t$image_name = $resource_row->resource_image_name;\n\t\t\n\t\t//delete any other uploaded image\n\t\t$this->file_model->delete_file($resource_path.\"\\\\\".$image_name, $this->resource_path);\n\t\t\n\t\t//delete any other uploaded thumbnail\n\t\t$this->file_model->delete_file($resource_path.\"\\\\thumbnail_\".$image_name, $this->resource_path);\n\t\t\n\t\tif($this->resource_model->delete_resource($resource_id))\n\t\t{\n\t\t\t$this->session->set_userdata('success_message', 'resource has been deleted');\n\t\t}\n\t\t\n\t\telse\n\t\t{\n\t\t\t$this->session->set_userdata('error_message', 'resource could not be deleted');\n\t\t}\n\t\tredirect('resource/'.$page);\n\t}", "public function deleteImage(){\n\n\n Storage::delete($this->image);\n }", "public function del(string $resource): bool|string\n {\n $json = false;\n $fs = unserialize($_SESSION['rfe'][$this->getRoot()], ['allowed_classes' => false]);\n if (array_key_exists($resource, $fs)) {\n // if $item has children, delete all children too\n if (array_key_exists('dir', $fs[$resource])) {\n foreach ($fs as $key => $file) {\n if (isset($file['parId']) && $file['parId'] == $resource) {\n unset($fs[$key]);\n }\n }\n }\n unset($fs[$resource]);\n $_SESSION['rfe'][$this->getRoot()] = serialize($fs);\n $json = '[{\"msg\": \"item deleted\"}]';\n }\n return $json;\n }", "public function destroy()\n\t{\n\t\treturn unlink(self::filepath($this->name));\n\t}", "public function destroy($id) {\n $book = Book::find($id);\n // return unlink(storage_path(\"public/featured_images/\".$book->featured_image));\n Storage::delete(\"public/featured_images/\" . $book->featured_image);\n if ($book->delete()) {\n return $book;\n }\n\n }", "public function destroy($id)\n {\n Storageplace::findOrFail($id)->delete();\n }", "public function destroyResourceImage(): void\n\t{\n\t\tif (isset($this->image)) {\n\t\t\t@imagedestroy($this->image->getImageResource());\n\t\t}\n\t}", "public function deleteResource(PersistentResource $resource)\n {\n $pathAndFilename = $this->getStoragePathAndFilenameByHash($resource->getSha1());\n if (!file_exists($pathAndFilename)) {\n return true;\n }\n if (unlink($pathAndFilename) === false) {\n return false;\n }\n Files::removeEmptyDirectoriesOnPath(dirname($pathAndFilename));\n return true;\n }", "public function deleteImage(){\n \tStorage::delete($this->image);\n }", "public function destroy()\n {\n $file=public_path(config('larapages.media.folder')).Input::all()['folder'].'/'.Input::all()['file'];\n if (!file_exists($file)) die('File not found '.$file);\n unlink($file);\n }", "public function delete() \r\n {\r\n if($this->exists())\r\n {\r\n unlink($this->fullName());\r\n }\r\n }", "public function destroy($id)\n {\n Myfile::find($id)->delete();\n }", "public function destroy($delete = false)\n {\n if (null !== $this->resource) {\n $this->resource->clear();\n $this->resource->destroy();\n }\n\n $this->resource = null;\n clearstatcache();\n\n // If the $delete flag is passed, delete the image file.\n if (($delete) && file_exists($this->name)) {\n unlink($this->name);\n }\n }", "public static function delete($path){\r\n $currentDir = getcwd();\r\n $storageSubPath = \"/../../\".STORAGE_PATH;\r\n $file = $currentDir . $storageSubPath . '/' . $path;\r\n\r\n unlink($file);\r\n }", "public function destroy(Storage $storage)\n {\n return redirect()->route('storages.index');\n }", "public function remove() {\n //Check if there are thumbs and delete files and db\n foreach ($this->thumbs()->get() as $thumb) {\n $thumb->remove();\n } \n //Delete the attachable itself only if is not default\n if (strpos($this->url, '/defaults/') === false) {\n Storage::disk('public')->delete($this->getPath());\n }\n parent::delete(); //Remove db record\n }", "public function removeFile($uri){\n return Storage::disk('public')->delete($uri);\n }", "public function destroy(Resource $resource)\n {\n if( $resource->delete() ){\n return Response(['status'=>'success','message'=>'Resource deleted']); \n } else {\n return Response(['status'=>'error', 'message'=>'Something went wrong']);\n }\n }", "public function delete($path);", "public function delete($path);", "public function destroy($id)\n { \n File::find($id)->remove();\n \n return redirect()->route('files.index');\n }", "public function destroy($id)\n {\n $supplier = Supplier::find($id);\n $photo = $supplier->photo;\n if ($photo) {\n unlink($photo);\n }\n $supplier->delete();\n }", "public function destroy($id)\n {\n $student = Student::where('id', $id)->first();\n // $path = $student->image;\n unlink($student->image);\n Student::findOrFail($id)->delete();\n return response('Deleted!');\n }", "public function destroy($id)\n {\n $icon = SliderIcon::find($id);\n if (Storage::disk('public')->exists(str_replace('storage', '', $icon->img))){\n Storage::disk('public')->delete(str_replace('storage', '', $icon->img));\n }\n $icon->delete();\n return redirect()->route('slider_icons.index')->with('success', 'Данные преимущества удалёны');\n }", "public function delete($path, $data = null);", "public function destroy($id)\n {\n $items=Items::find($id);\n // delete old file\n if ($items->photo) {\n $str=$items->photo;\n $pos = strpos($str,'/',1);\n $str = substr($str, $pos);\n $oldFile = storage_path('app\\public').$str;\n File::Delete($oldFile); \n }\n $items->delete();\n return redirect()->route('items.index');\n }", "public function destroy($id)\n {\n $carousel = Carousel::find($id);\n $image = $carousel->image;\n\n $basename ='img/carousel/' . basename($image);\n //Delete the file from disk\n if(file_exists($basename)){\n unlink($basename);\n }\n //With softDeletes, this is the way to permanently delete a record\n $carousel->delete();\n Session::flash('success','Product deleted permanently');\n return redirect()->back();\n }", "public function remove()\n {\n $fs = new Filesystem();\n $fs->remove($this->dir());\n }", "public static function destroy(int $resource_id)\n {\n try {\n $image_data = ListingImage::where('id', $resource_id)->first();\n self::delete_image($image_data->name);\n $delete = ListingImage::where('id', $resource_id)->delete();\n\n // activity()\n // ->causedBy(Auth::user()->id)\n // ->performedOn($delete)\n // ->withProperties(['id' => $delete->id])\n // ->log('listing image deleted');\n return response()->json(['status'=> 'ok', 'msg'=> 'Data deleted successfully']);\n } catch (Exception $e) {\n $e->getMessage();\n }\n }", "public function destroy(Storage $storage)\n {\n $this->storage->destroy($storage);\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource deleted', ['name' => trans('product::storages.title.storages')]));\n }", "public function del($path){\n\t\treturn $this->remove($path);\n\t}", "public function destroy($id)\n {\n //\n $product = Product::findOrFail($id);\n $product->delete();\n if($product->img != 'product-default.png'){\n Storage::delete(\"public/uploads/\".$product->img);\n // return 'deleted';\n }\n return redirect()->route('product.index'); \n }", "public function removeUpload()\n{\n if ($file = $this->getAbsolutePath()) {\n unlink($file); \n }\n}", "public function destroy($id)\n {\n $image = Images::withTrashed()->find($id);\n\n Storage::disk('uploads')->delete(\"social-media/$image->filename\");\n\n $image->tags()->detach();\n $image->detachMedia(config('constants.media_tags'));\n $image->forceDelete();\n\n return redirect()->back()->with('success', 'The image was successfully deleted');\n }", "public function destroyByResourceId($resource_id)\n {\n// $online_party = $this->onlinetrack->where('resource_id', $resource_id)->get()->first();\n// $online_party->status = \"offline\";\n// $online_party->save();\n// return $online_party;\n return $this->onlinetrack->where('resource_id', $resource_id)->delete();\n }", "public function revoke($resource, $permission = null);", "public function destroy($id)\n {\n $data=Image::find($id);\n $image = $data->img;\n\n\n $filepath= public_path('images/');\n $imagepath = $filepath.$image;\n\n //dd($old_image);\n if (file_exists($imagepath)) {\n @unlink($imagepath);\n }\n\n\n $data->delete();\n\n return redirect()->route('image.index');\n }", "function delete($path);", "public function removeItem(int $id)\n\t{\n\t\t$this->storage->remove($id);\n\t}", "public function destroy(File $file)\n {\n //\n $v = Storage::delete($file->path);\n \n }", "public function destroyResource($resource)\n {\n if (!is_object($resource)) {\n return false;\n }\n\n $resource_type = get_class($resource);\n $resource_id = $resource->getKey();\n\n return Role::where('resource_type', $resource_type)\n ->where('resource_id', $resource_id)\n ->delete();\n }", "public function remove($filePath){\n return Storage::delete($filePath);\n }", "public function remove(): void\n {\n $file = $this->getAbsolutePath();\n if (!is_file($file) || !file_exists($file)) {\n return;\n }\n\n unlink($file);\n }", "public function destroy(Request $request, Storage $storage)\n {\n $storage->delete();\n $request->session()->flash('alert-success', 'Запись успешно удалена!');\n return redirect()->route('storage.index');\n }", "public function remove(Storable $entity): Storable\n {\n $this->getRepository(get_class($entity))->remove($entity);\n $this->detach($entity);\n\n return $entity;\n }", "public function processDeletedResource(EntityResource $resource)\n {\n /** @var AuthorizationRepository $repository */\n $repository = $this->entityManager->getRepository('Edweld\\AclBundle\\Entity\\Authorization');\n\n $repository->removeAuthorizationsForResource($resource);\n }", "function _unlink($resource, $exp_time = null)\n {\n if(file_exists($resource)) {\n return parent::_unlink($resource, $exp_time);\n }\n\n // file wasn't found, so it must be gone.\n return true;\n }", "public function remove($id);", "public function remove($id);", "public function deleted(Storage $storage)\n {\n //\n }", "public function destroy($id)\n {\n $data = Product::findOrFail($id);\n\n if(file_exists('uploads/product/'.$data->image1)){\n unlink('uploads/product/'.$data->image1);\n }\n\n if(file_exists('uploads/product/'.$data->image2)){\n unlink('uploads/product/'.$data->image2);\n }\n\n if(file_exists('uploads/product/'.$data->image3)){\n unlink('uploads/product/'.$data->image3);\n }\n $data->delete();\n }", "public function removeUpload()\n {\n $file = $this->getAbsolutePath();\n if ($file) {\n unlink($file);\n }\n }", "public function resources_delete($resource_id, Request $request) {\n if ($resource_id) {\n $resp = Resources::where('id', '=', $resource_id)->delete();\n if($resp){\n $msg = 'Resource has been deleted successfully.';\n $request->session()->flash('message', $msg);\n }\n }\n //return redirect()->route('admin-factor-list');\n return redirect()->to($_SERVER['HTTP_REFERER']);\n }", "public function delete()\n {\n try\n {\n $thumbnail = $this->getThumbnail();\n if($thumbnail)\n {\n $thumbnail->delete();\n }\n }\n catch(sfException $e){}\n \n // delete current file\n parent::delete();\n }", "function deleteResource($uuid){\n $data = callAPI(\"DELETE\",\"/urest/v1/resource/\".$uuid);\n return $data;\n}", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function remove_resource($idproject){\n\t\t\n\t\t// Load model and try to get project data\n\t\t$this->load->model('Projects_model', 'projects');\n\t\t\n\t\t// Update\n\t\t$this->projects->save_project(array(\"ext\" => \"\", \"vzaar_idvideo\" => \"0\", \"vzaar_processed\" => \"0\"), $idproject);\n\t}", "public function destroy($id){\n $file_data = Slider::findOrFail($id);\n File::delete(public_path('../storage/app/public/sliders/'.$file_data->path));\n $slider = Slider::destroy($id);\n return response()->json(null, 204);\n }", "public function delete()\n\t{\n\t\t@unlink($this->get_filepath());\n\t\t@unlink($this->get_filepath(true));\n\t\tparent::delete();\n\t}", "public function delete($resource_path, array $variables = array()) {\n return $this->call($resource_path, $variables, 'DELETE');\n }", "public function destroy($id)\n {\n //Find Slider With Id\n $slider = Slider::findOrFail($id);\n // Check If The Image Exist\n if(file_exists('uploads/slider/'.$slider->image)){\n\n unlink( 'uploads/slider/'.$slider->image);\n }\n $slider->delete();\n return redirect()->back()->with('success','Slider Successfully Deleted');\n }" ]
[ "0.6672584", "0.6659381", "0.6635911", "0.6632799", "0.6626075", "0.65424126", "0.65416265", "0.64648265", "0.62882507", "0.6175931", "0.6129922", "0.60893893", "0.6054415", "0.60428125", "0.60064924", "0.59337646", "0.5930772", "0.59199584", "0.5919811", "0.5904504", "0.5897263", "0.58962846", "0.58951396", "0.58951396", "0.58951396", "0.58951396", "0.5880124", "0.58690923", "0.5863659", "0.5809161", "0.57735413", "0.5760811", "0.5753559", "0.57492644", "0.5741712", "0.57334286", "0.5726379", "0.57144034", "0.57096", "0.5707689", "0.5705895", "0.5705634", "0.5703902", "0.5696585", "0.5684331", "0.5684331", "0.56780374", "0.5677111", "0.5657287", "0.5648262", "0.5648085", "0.5648012", "0.5640759", "0.5637738", "0.5629985", "0.5619264", "0.56167465", "0.5606877", "0.56021434", "0.5601949", "0.55992156", "0.5598557", "0.55897516", "0.5581397", "0.5566926", "0.5566796", "0.55642897", "0.55641", "0.5556583", "0.5556536", "0.5550097", "0.5543172", "0.55422723", "0.5540013", "0.5540013", "0.55371785", "0.55365825", "0.55300397", "0.552969", "0.55275744", "0.55272335", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.5525997", "0.5525624", "0.5523911", "0.5521122", "0.5517412" ]
0.0
-1
Transform the resource into an array.
public function toArray($request) { return [ 'id' => $this->id, 'name' => $this->name, 'description' => $this->description, 'status' => $this->status, 'status_text' => $this->status ? 'Active' : 'Inactive', 'project' => $this->whenLoaded('projects', function () { foreach ($this->projects as $project) { return [ 'id' => $project->id, 'name' => $project->name, 'home_automation' => $project->pivot->home_automation, 'amount' => $project->pivot->amount ]; } }) ]; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function toArray(): array\n {\n if (is_null($this->resource)) {\n return [];\n }\n\n return is_array($this->resource)\n ? $this->resource\n : $this->resource->toArray();\n }", "public function toArray(): array\n {\n if (is_null($this->resource)) {\n return [];\n }\n\n return is_array($this->resource)\n ? $this->resource\n : $this->resource->toArray();\n }", "public function asArray() {\n return $this->resource;\n }", "public function transform($resource)\n {\n return [];\n }", "public function toArray()\n {\n if ($this->resource instanceof ArrayableInterface) {\n\n return $this->resource->toArray();\n } else {\n\n return null;\n }\n }", "public function parse($resource)\n {\n return $resource->toArray();\n }", "public function transform($resource)\n {\n return [\n 'id' => $resource['id'],\n 'item' => $resource['item'],\n 'qty' => $resource['qty'],\n\n ];\n }", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "public function toArray() {}", "abstract protected function toArray();", "public function getAsArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function asArray();", "public function getAsArray()\n\t{\n\t\t\n\t\t$path = $this->get();\n\t\t\n\t\treturn self::toArray($path);\n\t\t\n\t}", "public function transform($resource)\n {\n return [\n\n 'id' => (int) $resource->id,\n\t\t\t'name' => $resource->name,\n\t\t\t'description' => $resource->description,\n 'seat_count' => $resource->seat_count,\n\t\t\t'is_active' => $resource->is_active,\n\t\t\t'status' => $resource->status,\n\t\t\t'created_at' => $resource->created_at->toDateTimeString(),\n\t\t\t'updated_at' => $resource->updated_at->toDateTimeString(),\n\t\t\t\n ];\n }", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray();", "public function toArray(): array\n {\n return [\n 'users' => HiUserResource::collection($this->resource),\n ];\n }", "public function toArray()\n {\n return $this->transform();\n }", "function toArray() ;", "function toArray() ;", "public function convertItemArray() {}", "public function toArray(): array\n {\n $content = $this->getContent();\n\n if (\\is_array($content)) {\n return $this instanceof Filterable\n ? (array) $this->filterResponse($content)\n : $content;\n }\n\n return [];\n }", "protected function asArray()\n\t{\n\t\treturn \\json_decode($this->response, true);\n\t}", "public function arr() {\n\t\t\treturn \\uri\\generate::to_array($this->object);\n\t\t}", "public function toArray()\n {\n return $this->getContent();\n }", "public function toArray()\n {\n\n }", "public function asArray(): array\n {\n return json_decode($this->result, true);\n }", "public function toArray()\n {\n return $this->cast('array');\n }", "function toArray(){\r\n\t\treturn $this->data;\r\n\t}", "private function arrayify(): array\n {\n return $this->toArray();\n }", "abstract public function toArray();", "abstract public function toArray();", "abstract public function toArray();", "abstract public function toArray();", "abstract public function toArray();", "public function toArray() // untested\n {\n return $this->data;\n }", "public function toArray(){\n $this->buildArray();\n return $this->array;\n }", "public function toArray(): array;", "public function toArray(): array;", "public function toArray(): array;", "public function toArray(): array;", "public function toArray(): array;", "public function toArray(): array;", "public function toArray(): array;" ]
[ "0.7750928", "0.7750928", "0.7715773", "0.75906307", "0.7310379", "0.7138024", "0.7134791", "0.7096877", "0.7096877", "0.70968604", "0.70968604", "0.70968604", "0.70968604", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.70955557", "0.6959165", "0.69560915", "0.68910366", "0.68910366", "0.68910366", "0.68910366", "0.68910366", "0.68910366", "0.6881386", "0.6868011", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6852651", "0.6851924", "0.6790647", "0.674651", "0.674651", "0.67363435", "0.6720337", "0.6712338", "0.67115825", "0.6710179", "0.666141", "0.66587526", "0.6656767", "0.6655622", "0.66545117", "0.6648871", "0.6648871", "0.6648871", "0.6648871", "0.6648871", "0.66377884", "0.6637001", "0.6629", "0.6629", "0.6629", "0.6629", "0.6629", "0.6629", "0.6629" ]
0.0
-1
$this>db>query("SELECT FROM products WHERE description LIKE '%$search%' where productLine LIKE '%$search%' where `upplier LIKE '%$search%'");
public function Search($search) { //$this->db->query("SELECT * FROM products WHERE description LIKE '%$search%' "); //$this->db->query(" SELECT produceCode,description,productLine,supplier,quantityInStock,bulkBuyPrice,bulkSalePrice,Photo FROM products WHERE description LIKE '%$search%' "); $query = $this->db->get(); return $query->result(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function searchProduct($search)\n {\n $this->db->connect();\n $sql = \"SELECT * FROM $this->table WHERE name LIKE ? OR description LIKE ? OR category LIKE ?;\";\n $resultset = $this->db->executeFetchAll($sql, array_fill(0, 3, \"%\" . $search . \"%\"));\n return $resultset;\n }", "function cari($keyword)\n{\n $query = \"SELECT * FROM produk WHERE namaproduk LIKE '%$keyword%' OR \n namapenjual LIKE '%$keyword%' OR \n harga LIKE '%$keyword%' OR \n toko LIKE '%$keyword%'\";\n\n return query($query);\n}", "function getProductsbySearch($Search){\n\t\t$conn \t= connectDB();\n\t\t$sth \t= $conn->prepare(\"\tSELECT * \n\t\t\t\t\t\t\t\t\tFROM `product` \n\t\t\t\t\t\t\t\t\tWHERE `name` LIKE ? OR \n\t\t\t\t\t\t\t\t\t`description` LIKE ? OR\n\t\t\t\t\t\t\t\t\t`large_description` LIKE ? AND `stock`>0\");\n\t\t$Search = '%'.$Search.'%';\n\t\t$Search = str_replace(\" \", \"%\", $Search);\n\t\t$sth \t-> execute(array($Search, $Search, $Search));\n\n\t\treturn \t$sth;\n\t}", "function search_product_result($conditions_array=array(),$rows_per_page=10,$start=0){\n\t\t$this->db->from('red_support_product as rsp');\n\t\t$this->db->where($conditions_array);\n\t\tif($this->input->post('search_text')){\n\t\t\t$search_text=$this->input->post('search_text');\n\t\t}else{\n\t\t\t$search_text=\"\";\n\t\t}\n\t\t$this->db->where(\"(product like'%$search_text%' or description like'%$search_text%')\");\n\t\t$this->db->limit($rows_per_page, $start);\n\t\t$result=$this->db->get();\n\t\tforeach($result->result_array() as $row)\n\t\t{\n\t\t\t$rows[]=$row;\n\t\t}\n\t\treturn $rows;\n\t}", "public function search($input) {\r\n $con = database::connectDB();\r\n $query = \"select * \"\r\n . \"from tbl_product pr \"\r\n . \"INNER JOIN tbl_categories cate on pr.CATE_id = cate.CATE_id\"\r\n . \"where \"\r\n . \"pr.PRODUCT_id LIKE '%\" . $input . \"%' OR pr.PRODUCT_name LIKE '%\" . $input . \"%'\"\r\n . \"OR cate.CATE_name LIKE '%\" . $input . \"%'\";\r\n $result = mysqli_query($con, $query);\r\n database::close();\r\n\r\n return $result;\r\n }", "function find_product_by_title($product_name){\n global $db;\n $p_name = remove_junk($db->escape($product_name));\n $sql = \"SELECT name FROM products WHERE name like '%$p_name%' LIMIT 5\";\n $result = find_by_sql($sql);\n return $result;\n }", "public function searchProducts($searchString)\n {\n $sql = \"SELECT\n P.id,\n (select COUNT(id) FROM Product) as rows,\n P.name,\n P.description,\n P.image,\n P.recommended,\n GROUP_CONCAT(DISTINCT PC.category) AS category,\n P.price,\n Offer.new_price,\n I.items\n FROM Product AS P\n INNER JOIN Prod2Cat AS P2C\n -- LEFT OUTER JOIN Prod2Cat AS P2C\n ON P.id = P2C.prod_id\n INNER JOIN ProdCategory AS PC\n -- LEFT OUTER JOIN ProdCategory AS PC\n ON PC.id = P2C.cat_id\n LEFT OUTER JOIN Offer\n ON P.id = Offer.product\n LEFT OUTER JOIN Inventory AS I\n ON P.id = I.prod_id\n WHERE P.name LIKE '%$searchString%'\n OR P.description LIKE '%$searchString&'\";\n\n $this->db->execute($sql);\n $res = $this->db->fetchAll();\n\n return $res;\n }", "public function search($keyword)\n\t{\n\t\t// $builder = $this->table('tbl_customer');\n\t\t// $builder->like('name', $keyword);\n\t\t// return $builder;\n\n\n\t\treturn $this->table('tbl_suppliers')->like('supplier_name', $keyword)->orLike('address', $keyword)->orLike('no_telp', $keyword);\n\t}", "function searchByKeyword($searchTerm) {\n $searchTerm=striptags(htmlspecialchars($searchTerm));\n $query=\"SELECT * FROM ads WHERE description LIKE '%{$searchTerm}%'\";\n }", "function search_view_sql($txtsearch)\n {\n\n $sql1=\"select * from categories where c_name like '%$txtsearch%' or description like '%$txtsearch%' and status=1\";\n $res=mysqli_query($this->con,$sql1);\n return $res;\n }", "function searchProductByName($keyword){\n //$regex=\"^(?=.*?(std|8))(?=.*?(std|8)).*$\";\n //$where='MATCH(prod_name) AGAINST(\"'.$keyword.'\" IN BOOLEAN MODE)';\n $this->db->select('*');\n $this->db->from('cld_products');\n $this->db->like('prod_name',$keyword);\n //$this->db->where($where);\n //$this->db->like('prod_name',$regex);\n $this->db->where('user_id',$this->session->userdata['logged_in']['id']);\n //$this->db->order_by($where,'DESc');\n \n $query=$this->db->get();\n \n return $query->result_array();\n }", "Function getlisteproduit($search=false)\n{\n $query='SELECT PR.idpr,PR.prix,PR.description,PR.titre as titre,PR.prix,PR.photo,PR.ref,PR.description,PR.idcat,CA.titre as cat_titre from produits PR, categories CA where PR.idcat=CA.idcat';\n if($search){\n $query=$query.' and pr.titre like \"%'.$search.'%\";';\n }\n $result=selectTable($query);\n // test si resultat est ok et gérer renvoi\n if($result==false){\n return false;\n }else{\n return $result;\n }\n\n}", "function newskomentar_searchdata( $tbl_newskomentar, $cari ){\n\t\t$sql = mysql_query(\"SELECT * FROM $tbl_newskomentar WHERE \n\t\t\tjudul LIKE '$cari' OR\n\t\t\tpesan LIKE '$cari' \n\t\t\t\tORDER BY id ASC \n\t\t\"); \n \t\treturn $sql;\n}", "function getSearchProducts($bdd, $search, $order = 0){\n\t$query = 'SELECT * FROM products WHERE name LIKE :search ORDER BY price';\n\tif($order){\n\t\t$query .= ' DESC';\n\t}\n\t$reponse = $bdd->prepare($query);\n\t$reponse->bindValue(':search', '%' . $search . '%', PDO::PARAM_INT);\n\t$reponse->execute();\n\treturn $reponse->fetchAll();\n\n}", "public static function find($search) {\n global $lC_Database, $lC_Language, $lC_Currencies, $lC_Image;\n\n $Qproducts = $lC_Database->query('select SQL_CALC_FOUND_ROWS p.*, pd.products_name, pd.products_description, pd.products_keyword from :table_products p, :table_products_description pd where p.parent_id = 0 and p.products_id = pd.products_id and pd.language_id = :language_id');\n\n $Qproducts->appendQuery('and (pd.products_name like :products_name or pd.products_keyword like :products_keyword) order by pd.products_name');\n $Qproducts->bindTable(':table_products', TABLE_PRODUCTS);\n $Qproducts->bindTable(':table_products_description', TABLE_PRODUCTS_DESCRIPTION);\n $Qproducts->bindInt(':language_id', $lC_Language->getID());\n $Qproducts->bindValue(':products_name', '%' . $search . '%');\n $Qproducts->bindValue(':products_keyword', '%' . $search . '%');\n\n $Qproducts->execute();\n\n $cnt = 0;\n $result = '<table id=\"liveSearchTable\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" onMouseover=\"bgcolor:#cccccc;\">';\n while ( $Qproducts->next() ) {\n if ($Qproducts->valueInt('products_status') > -1) {\n $price = $lC_Currencies->format($Qproducts->value('products_price'));\n //$products_status = ($Qproducts->valueInt('products_status') === 1);\n $products_status = ($Qproducts->valueInt('products_status'));\n $products_quantity = $Qproducts->valueInt('products_quantity');\n $products_name = $Qproducts->value('products_name');\n $products_description = $Qproducts->value('products_description');\n $products_keyword = $Qproducts->value('products_keyword');\n\n if ( $Qproducts->valueInt('has_children') === 1 ) {\n $Qvariants = $lC_Database->query('select min(products_price) as min_price, max(products_price) as max_price, sum(products_quantity) as total_quantity, min(products_status) as products_status from :table_products where parent_id = :parent_id');\n $Qvariants->bindTable(':table_products', TABLE_PRODUCTS);\n $Qvariants->bindInt(':parent_id', $Qproducts->valueInt('products_id'));\n $Qvariants->execute();\n\n $products_status = ($Qvariants->valueInt('products_status') === 1);\n $products_quantity = '(' . $Qvariants->valueInt('total_quantity') . ')';\n\n $price = $lC_Currencies->format($Qvariants->value('min_price'));\n\n if ( $Qvariants->value('min_price') != $Qvariants->value('max_price') ) {\n $price .= '&nbsp;-&nbsp;' . $lC_Currencies->format($Qvariants->value('max_price'));\n }\n }\n\n $Qimage = $lC_Database->query(\"select image from :table_products_images where products_id = '\" . $Qproducts->valueInt('products_id') . \"'\");\n $Qimage->bindTable(':table_products_images', TABLE_PRODUCTS_IMAGES);\n $Qimage->execute();\n\n $products_image = $Qimage->value('image');\n $products_link = lc_href_link(FILENAME_PRODUCTS, $products_keyword);\n\n $rowClass = ($cnt & 1) ? 'liveSearchRowOdd' : 'liveSearchRowEven';\n $result .= '<tr onclick=\"window.location=\\'' . $products_link . '\\';\" class=\"' . $rowClass . '\"><td valign=\"top\">' .\n ' <ol class=\"liveSearchListing\">' .\n ' <li>' .\n ' <span class=\"liveSearchListingSpan\" style=\"width: ' . $lC_Image->getWidth('mini') . 'px;\">' . lc_link_object(lc_href_link(FILENAME_PRODUCTS, $products_keyword), $lC_Image->show($products_image, $products_name, null, 'mini')) . '</span>' .\n ' <div class=\"liveSearchListingDiv\">' . lc_link_object(lc_href_link(FILENAME_PRODUCTS, $products_keyword), $products_name) . '</div>' .\n ' <div class=\"liveSearchListingPrice\">' . $price . '</div>' .\n ' <div style=\"clear: both;\"></div>' .\n ' </li>' .\n ' </ol>' .\n '</td></tr></a>';\n $cnt++;\n }\n }\n $result .= '</table>';\n\n $Qproducts->freeResult();\n\n return $result;\n }", "function select_search($searchText)\n{\n $query =\n \"SELECT * FROM posts WHERE `title` LIKE '%$searchText' OR\n `information` LIKE '%$searchText'\";\n $result = DB::get()->query($query);\n return $result;\n}", "function search_query($query){\n\t\tglobal $bBlog;\n\t\t$query = $this->replace($query);\n\t\t$words = explode(' ', $query);\n\t \n\t\t$sql = '';\n\t\tforeach ($words as $word){\n\t\t\t$this->make_tmp($word);\n\t\t\t$sql .= \" OR `string` = '\".$word.\"'\";\n\t\t}\n\t\treturn $bBlog->db->get_results(\"\n\t \tSELECT \n\t\t\t`article_id` AS `id`,\n\t\t\tSUM(points) AS points_sum\n\t\tFROM `\".T_SEARCH_TMP.\"`\n\t\tWHERE 0 \".$sql.\"\n\t\tGROUP BY `id`\n\t\tORDER BY `points_sum` DESC\n\t\tLIMIT 20;\n\t\t\");\n\t}", "function descriptionSearch($conn, $keyword)\n {\n $query = \"SELECT DISTINCT whwp_Advert.advert_id FROM whwp_Advert \"\n . \"WHERE advert_description LIKE :keyword \"\n . \"ORDER BY whwp_Advert.advert_price DESC\";\n $conn->prepQuery($query);\n $conn->bind('keyword', \"%\".$keyword.\"%\");\n $advert = $conn->resultset();\n return $advert;\n }", "function cari($keyword)\n{\n $query_cari = \"SELECT * FROM mahasiswa WHERE \n nama LIKE '%$keyword%' OR \n nip LIKE '%$keyword%' OR \n email LIKE '%$keyword%' OR \n jurusan LIKE '%$keyword%'\n ORDER BY id DESC;\n \";\n\n // memanggil variable query yang pertama \n return query($query_cari);\n}", "public function findlecturersByString ( $str ){\n $sqlQuery = \" SELECT * \";\n $sqlQuery .= \" FROM lecturers \";\n $sqlQuery .= \" WHERE name LIKE ’% $str %’\";\n $result = $this -> getDbManager () -> executeSelectQuery ( $sqlQuery );\n return ( $result );\n }", "function find_all_product_info_by_title($title){\n global $db;\n $sql = \"SELECT * FROM products \";\n $sql .= \" WHERE name ='{$title}'\";\n $sql .=\" LIMIT 1\";\n return find_by_sql($sql);\n }", "function fetch_product_list_select($search){\n \t\t$this->db->select('PRODUCT_ID, PRODUCT');\n \t\t$this->db->from('products');\n \t\t$this->db->where('PRODUCT REGEXP', $search);\n \t\t$query=$this->db->get();\n \t\treturn $query->result_array();\n \t}", "function BasicSearchSQL($Keyword) {\n\t$sKeyword = ew_AdjustSql($Keyword);\n\t$sql = \"\";\n\t$sql .= \"`provee_dig` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_cat_juri` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_nombre` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_paterno` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_materno` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_dir` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$sql .= \"`provee_fono` LIKE '%\" . $sKeyword . \"%' OR \";\n\tif (substr($sql, -4) == \" OR \") $sql = substr($sql, 0, strlen($sql)-4);\n\treturn $sql;\n}", "public function filter_coler($params){\n $this->db->select(\"$this->table_product.text_coler\")\n ->from($this->table_product);\n $this->db->distinct();\n if (!empty($params['keyword'])) $this->db->like(\"$this->table_product.text_coler\", $params['keyword']);\n $query = $this->db->get();//var_dump($this->db->last_query()); exit();\n return $query->result();\n }", "public function searchitem($keyword){\n\t\t$this->db->like('ProductSearchKey', $keyword, 'BOTH');\n\t\t$this->db->or_like('ProductName', $keyword, 'BOTH');\n\t\t$this->db->select('Product_Id,ProductName,ProductAuther,ProductRetailPrice,ProductSellingPrice,ProductDiscount,ProductLanguage,ProductBinding,ProductThumbImage,CategoryName');\n\t\t$this->db->from('tbl_product_category');\n\t\t$this->db->join('tbl_products', 'tbl_product_category.Product_Id = tbl_products.ProductId', 'inner');\n\t\t$this->db->join('tbl_category', 'tbl_product_category.Category_Id = tbl_category.CategoryId', 'inner');\n\t\t$query = $this->db->get();\n\t\treturn $query->result();\n\t}", "public function getProductsBySearch ($search) {\n \n $words = explode(' ', $search);\n $regex = implode('|', $words);\n \n $errorCode = 0;\n\t\t$errorMessage = \"\";\n \n if (!empty($search)) {\n \n try {\n\n $query = \"SELECT ea_product.id, upc, brand, product_name, \n product_description, avg_price, ea_category.name\n FROM ea_product, ea_category\n WHERE ea_product.category_id = ea_category.id\n AND ( product_name REGEXP '{$regex}'\n OR brand REGEXP '{$regex}'\n OR upc REGEXP '{$regex}'\n OR ea_category.name REGEXP '{$regex}' )\n ORDER BY avg_price\";\n //print(\"$query\");\n foreach($this->dbo->query($query) as $row) {\n $id = stripslashes($row[0]);\n $upc = strval(stripslashes($row[1]));\n $brand = $this->convertFancyQuotes(stripslashes($row[2]));\n $product_name = $this->convertFancyQuotes(stripslashes($row[3]));\n $product_description = $this->convertFancyQuotes(stripslashes($row[4]));\n $avg_price = stripslashes($row[5]);\n $category_name = $this->convertFancyQuotes(stripslashes($row[6]));\n\n $product[\"id\"] = $id;\n $product[\"upc\"] = $upc;\n $product[\"brand\"] = $brand;\n $product[\"product_name\"] = $product_name;\n $product[\"product_description\"] = $product_description;\n $product[\"avg_price\"] = $avg_price;\n $product[\"category_name\"] = $category_name;\n\n $product[\"image_path\"] = $this->getImagePath($upc);\n\n $products[] = $product;\n }\n\n } catch (PDOException $e) {\n $this->errorCode = 1;\n $errorCode = -1;\n $errorMessage = \"PDOException for getProductsBySearch.\";\n }\t\n \n } else {\n $errorCode = 1;\n\t\t\t$errorMessage = \"No Search value provided.\";\n }\n \n\t\t$error[\"id\"] = $errorCode;\n\t\t$error[\"message\"] = $errorMessage;\n\t\t\n\t\t$data[\"error\"] = $error;\n\t\t\n\t\t$data[\"search\"] = $search;\n $data[\"query\"] = $query;\n \n $data[\"products\"] = $products;\n\n $data = json_encode($data);\n \n\t\treturn $data;\n \n }", "public function findnationalitiesByString ( $str ){\n $sqlQuery = \" SELECT * \";\n $sqlQuery .= \" FROM nationalities \";\n $sqlQuery .= \" WHERE description LIKE ’% $str %’\";\n $result = $this -> getDbManager () -> executeSelectQuery ( $sqlQuery );\n return ( $result );\n }", "public function searchProduct(Request $request){\n\n //dd($request->input('query'));\n $product = Product::\n where('descripcion' , 'like', $request->input('query') . '%')\n ->select(['id', \\DB::raw('SUBSTRING(descripcion, 1, 80) descripcion'), \\DB::raw('precio_venta precio'), 'stock'])->take(20)->get();\n\n return response()->json([\n 'data' => $product\n ]);\n }", "function getSearch($id){\n\t\t\t\t$Q = $this->db->query(\"SELECT product. * , product_type.type_name\n\t\t\t\tFROM product\n\t\t\t\tJOIN product_type ON product_type.product_type_id = product.product_type_id \n\t\t\t\tWHERE product_type.type_name LIKE '%\".$id.\"%'\n\t\t\t\tOR product.product_id LIKE '%\".$id.\"%'\n\t\t\t\tOR product.price LIKE '%\".$id.\"%'\n\t\t\t\tOR product.product_name LIKE '%\".$id.\"%'\");\n\t\t\t\treturn $Q->result_array();\t\t\n\t\t }", "function cariKapal($kunci){\r\n $query = \"SELECT kapalID, jenis, waktu, rute,nama_dermaga,harga,kapasitas,jml_tiket,foto FROM kapal WHERE kapalID LIKE '%$kunci%' OR jenis LIKE '%$kunci%' OR waktu LIKE '%$kunci%' OR harga LIKE '%$kunci%' OR kapasitas LIKE '%$kunci%' OR rute LIKE '%$kunci%' OR nama_dermaga LIKE '%$kunci%'\";\r\n return query($query);\r\n}", "function BasicSearchWhere() {\n\tglobal $Security, $dpp_proveedores;\n\t$sSearchStr = \"\";\n\t$sSearchKeyword = ew_StripSlashes(@$_GET[EW_TABLE_BASIC_SEARCH]);\n\t$sSearchType = @$_GET[EW_TABLE_BASIC_SEARCH_TYPE];\n\tif ($sSearchKeyword <> \"\") {\n\t\t$sSearch = trim($sSearchKeyword);\n\t\tif ($sSearchType <> \"\") {\n\t\t\twhile (strpos($sSearch, \" \") !== FALSE)\n\t\t\t\t$sSearch = str_replace(\" \", \" \", $sSearch);\n\t\t\t$arKeyword = explode(\" \", trim($sSearch));\n\t\t\tforeach ($arKeyword as $sKeyword) {\n\t\t\t\tif ($sSearchStr <> \"\") $sSearchStr .= \" \" . $sSearchType . \" \";\n\t\t\t\t$sSearchStr .= \"(\" . BasicSearchSQL($sKeyword) . \")\";\n\t\t\t}\n\t\t} else {\n\t\t\t$sSearchStr = BasicSearchSQL($sSearch);\n\t\t}\n\t}\n\tif ($sSearchKeyword <> \"\") {\n\t\t$dpp_proveedores->setBasicSearchKeyword($sSearchKeyword);\n\t\t$dpp_proveedores->setBasicSearchType($sSearchType);\n\t}\n\treturn $sSearchStr;\n}", "function cari(){\n $keyword = isset($_GET['cari'])?$_GET['cari']:'';\n $connection = new mysqli('localhost','root','','Uji');\n $q = $connection->query(\"SELECT * FROM Produk \n\t\t\tWHERE kode_produk LIKE '%$keyword%' or \n\t\t\tnama_produk LIKE '%$keyword%'\");\n\n $hasil = [];\n while($row = $q->fetch_object()){\n $hasil[] = $row;\n }\n return $hasil;\n}", "function cari($keyword) {\n\t$query=\" SELECT * FROM pengguna \n\t\t\t\tWHERE\n\t\t\t nama_lengkap LIKE '%$keyword%' OR\n\t\t\t email LIKE '%$keyword%' OR\n\t\t\t alamat LIKE '%$keyword%' OR\n\t\t\t no_hp_wa LIKE '%$keyword%'\n\t\t\t \"; \n\treturn query ($query); // query menghasilkan assoc array dari query, jadi kita memanggil function yang udah dibuat di dalam function baru\n\n}", "function partialNameSearch($conn, $keyword)\n {\n $query = \"SELECT DISTINCT whwp_Advert.advert_id FROM whwp_Advert \"\n . \"WHERE advert_bookname LIKE :keyword \"\n . \"ORDER BY whwp_Advert.advert_price DESC\";\n\n $conn->prepQuery($query);\n $conn->bind('keyword', \"%\".$keyword.\"%\");\n $advert = $conn->resultset();\n return $advert;\n }", "function BasicSearchSQL($Keyword)\n{\n\t$sKeyword = (!get_magic_quotes_gpc()) ? addslashes($Keyword) : $Keyword;\n\t$BasicSearchSQL = \"\";\n\t$BasicSearchSQL.= \"`descripcion` LIKE '%\" . $sKeyword . \"%' OR \";\n\t$BasicSearchSQL.= \"`unidad_salida` LIKE '%\" . $sKeyword . \"%' OR \";\n\tif (substr($BasicSearchSQL, -4) == \" OR \") { $BasicSearchSQL = substr($BasicSearchSQL, 0, strlen($BasicSearchSQL)-4); }\n\treturn $BasicSearchSQL;\n}", "function get_item_list_search($terms)\n {\n $this->company_db->select(\"i.*\");\n $this->company_db->from('tbl_inventory i');\n //$this->company_db->where('i.void', 'No');\n $column_search = array(\"CONVERT(i.description USING utf8)\", \"i.item_number\");\n\n if(isset($terms) && !empty($terms)) // if datatable send POST for search\n {\n $i = 0;\n foreach ($column_search as $item) // loop column \n { \n if($i===0) // first loop\n {\n $this->company_db->group_start(); // open bracket. query Where with OR clause better with bracket. because maybe can combine with other WHERE with AND.\n $this->company_db->like($item, $terms);\n }\n else\n {\n $this->company_db->or_like($item, $terms);\n }\n \n if(count($column_search) - 1 == $i) //last loop\n $this->company_db->group_end(); //close bracket\n \n $i++;\n }\n }\n\n $query = $this->company_db->get();\n \n if($query->num_rows() >= 1)\n {\n foreach ($query->result() as $key => $value) {\n $value->description = strtolower($value->description);\n }\n return $query->result_array();\n }\n else\n {\n return array();\n }\n }", "function cari2($keyword) {\n\t$query=\" SELECT * FROM administrator \n\t\t\t\tWHERE\n\t\t\t nama_lengkap LIKE '%$keyword%' OR\n\t\t\t email LIKE '%$keyword%' OR\n\t\t\t alamat LIKE '%$keyword%' OR\n\t\t\t no_hp_wa LIKE '%$keyword%' OR\n\t\t\t nik LIKE '%$keyword%' OR\n\t\t\t keterangan LIKE '%$keyword%'\n\t\t\t \"; \n\treturn query ($query); // query menghasilkan assoc array dari query, jadi kita memanggil function yang udah dibuat di dalam function baru\n}", "function search($keyword){\r\n $query=\"SELECT e.*, u.nombre as 'Nombre', u.apellido as 'Apellido', c.nombre as 'Nombre de categoria' FROM entrada e \r\n INNER JOIN users u ON e.usuario_id=u.id\r\n INNER JOIN categorias c ON c.id=e.categoria_id\r\n HAVING e.titulo LIKE '%$keyword%' OR e.descripcion LIKE '%$keyword%'\";\r\n return $sql= mysqli_query($_SESSION['connection'], $query);\r\n }", "public function searchRecipes($query) {\n $query = '%'.$query.'%';\n $this->db->query('SELECT * FROM recipes WHERE ( title LIKE ? OR description LIKE ? )');\n $this->db->bind(1, $query);\n $this->db->bind(2, $query);\n return $this->db->resultSet();\n }", "function searchDescription($description){\n\t\t//Connect to database. Include db_password.php with your MySQL or MariaDB credentials\n\t\n\t\ttry{\n\t\t\tif(!isset($pdo)){\n\t\t\t\t$pdo = new PDO('mysql:host=127.0.0.1;dbname=auction_site_db', $GLOBALS[\"user\"], $GLOBALS[\"pass\"]); //$user, $pass);\n\t\t\t}\n\t\t\t\n\t\t\t$queryString = 'SELECT * FROM AuctionItems WHERE itemDescription LIKE :itemDescription'; //= :itemName'; \n\t\t\t//$queryString = \"SELECT * FROM AuctionItems\"; //for debugging\n\t\t\t\n\t\t\t$query = $pdo->prepare($queryString);\n\t\t\t\n\t\t\t//take name variable, add SQL wildcards to find more results\n\t\t\t//$wildcard = \"%\";\n\t\t\t//$iName = {$wildcard}{$GLOBALS[\"name\"]}{$wildcard};\n\t\t\t//print_r($iName);\n\t\t\t//$name = \"fdfd\";\n\t\t\t\n\t\t\t$query->execute(array(':itemDescription' => $description));//$GLOBALS[\"name\"]));\t//$name));\n\t\t\t$query_result = $query->fetchAll(PDO::FETCH_BOTH);\n\t\t\t\n\t\t\tif($query_result){\n\t\t\t\t//echo json_encode(array_values($query_result));\n\t\t\t\treturn json_encode(array_values($query_result));\n\t\t\t}\n\t\t\telse{\n\t\t\t\t//echo \"No match was found\";\n\t\t\t\t//echo json_encode(array_values([\"itemName\"=>\"failed\", \"itemDescription\"=>\"db query\", \"itemPrice\"=>\"match\"]));\n\t\t\t}\n\t\t\t\n\t\t\t//make everything null so it closes the db connection\n\t\t\t$query = null; \n\t\t\t$pdo = null;\t\t\t\n\t\t\t\n\t\t}\n\t\tcatch(PDOException $e){\n\t\t\t//echo json_encode(array_values([\"itemName\"=>\"failed\", \"itemDescription\"=>\"db query\", \"itemPrice\"=>\"match\"]));\n\t\t\tdie();\n\t\t}\n\t\n\t}", "public function search(Request $request){\n\n $this->validate($request, [\n 'query' =>'required|min:3',\n ]);\n\n\n \n \n $query = $request->input('query');\n\n $products = Product::where('pro_name','like',\"%$query%\")->get();\n\n return view('shop.index')->with('products',$products);\n }", "function BasicSearchSQL($Keyword)\r\n{\r\n\t$sKeyword = (!get_magic_quotes_gpc()) ? addslashes($Keyword) : $Keyword;\r\n\t$BasicSearchSQL = \"\";\r\n\t$BasicSearchSQL.= \"`nombre` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`calle` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`colonia` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`ciudad` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`codigo_postal` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`lada` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`telefono` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`fax` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`contacto` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\t$BasicSearchSQL.= \"`contacto_email` LIKE '%\" . $sKeyword . \"%' OR \";\r\n\tif (substr($BasicSearchSQL, -4) == \" OR \") { $BasicSearchSQL = substr($BasicSearchSQL, 0, strlen($BasicSearchSQL)-4); }\r\n\treturn $BasicSearchSQL;\r\n}", "public function findcoursesByString ( $str ){\n $sqlQuery = \" SELECT * \";\n $sqlQuery .= \" FROM courses \";\n $sqlQuery .= \" WHERE description LIKE ’% $str %’\";\n $result = $this -> getDbManager () -> executeSelectQuery ( $sqlQuery );\n return ( $result );\n }", "function searchInventory ($searchValue) {\n global $db;\n \n \n //$stmt = $db->prepare(\"SELECT * FROM schools WHERE $column LIKE :search\");\n\n \n \n $results = [];\n $stmt = $db->prepare(\"SELECT idItem, `name`, amount, unitPrice, salesPrice, parAmount FROM inventory WHERE name LIKE :search\");\n $search = '%'.$searchValue.'%';\n $binds = array(\n \":search\" => $search\n );\n\n if ( $stmt->execute($binds) && $stmt->rowCount() > 0 ) {\n $results = $stmt->fetchAll(PDO::FETCH_ASSOC);\n\n }\n\n return ($results);\n }", "function groupSearchHandler() {\n global $inputs;\n\n $keyword = $inputs['keyword'];\n $res = getAll(\"SELECT * \n FROM `group` \n WHERE group_name LIKE '%$keyword%' OR description LIKE '%$keyword%'\");\n \n formatOutput(true, 'success',$res);\n}", "public function searchDb($txtsearch){\n\t\t$data = $this->db->query('SELECT * FROM `sanpham` as s inner join tacgia as t on t.maTacGia = s.id_MaTacGia WHERE s.`tensanpham` LIKE \"%'.$txtsearch.'%\" OR t.tenTacGia LIKE \"%'.$txtsearch.'%\" ')->result_object();\n\t\treturn $data;\n\t}", "function cariinfo($keyword) {\n\t$query=\" SELECT * FROM informasi ORDER BY id_informasi\n\t\t\t\tWHERE\n\t\t\t judul LIKE '%$keyword%' OR\n\t\t\t tanggal LIKE '%$keyword%' OR\n\t\t\t instansi LIKE '%$keyword%' \n\t\t\t \"; \n\treturn query ($query); // query menghasilkan assoc array dari query, jadi kita memanggil function yang udah dibuat di dalam function baru\n\n}", "public function search_results($keywords){\n\n\t\t$returned_results = array();\n\t\t$where = \"\";\n\n\t$keywords = preg_split('/[\\s]+/', $keywords);\n\t\n\t$total_keywords = count($keywords);\n\n\tforeach ($keywords as $key => $keyword) {\n\t\t# code...\n\t\t$where .= \"`product_name` LIKE '%$keyword%'\";\n\n\t\t\tif ( $key != ($total_keywords - 1) ) {\n\t\t\t\t# code...\n\t\t\t\t$where .= \" AND \";\n\t\t\t}\n\t}\n//id\tproduct_name\tsuplier_name\tcategory\tsub_category\tprice\tdescription\timage_1\timage_2\timage_3\tquantity\tdate_added\n $results = \"SELECT `id`,LEFT(`description`,10) as `description`,`product_name` , `suplier_name` , `category` , `sub_category` , `price` , `image_1` FROM `products` WHERE $where\";\n\n $results_num = ($results = mysql_query($results)) ? mysql_num_rows($results) : 0;\n\n \t\tif ($results_num == 0) {\n \t\t\t# code...\n \t\t\treturn false;\n \t\t\n \t\t} else {\n\n \t\t\twhile ($results_row = mysql_fetch_assoc($results)) {\n \t\t\t\t# code...\n \t\t\t\t$returned_results[] = array(\n\n \t\t\t\t\t\t\t\t'id' \t\t\t\t\t=> $results_row['id'],\n \t\t\t\t\t\t\t\t'description' \t\t\t=> $results_row['description'],\n \t\t\t\t\t\t\t\t'product_name'\t\t\t=> $results_row['suplier_name'],\n \t\t\t\t\t\t\t\t'category' \t\t\t\t=> $results_row['category'],\n \t\t\t\t\t\t\t\t'sub_category'\t\t\t=> $results_row['sub_category'],\n \t\t\t\t\t\t\t\t'price' \t\t\t\t=> $results_row['price'],\n \t\t\t\t\t\t\t\t'image_1' \t\t\t\t=> $results_row['image_1'] \n \t\t\t\t\t);\n \t\t\t}\n\n \t\t\treturn $returned_results;\n \n \t\t}\n}", "function productListing($searchText = '', $sort_field, $sort_ord, $page, $segment)\n {\n $this->db->select('BaseTbl.*');\n $this->db->from('tbl_products as BaseTbl');\n\t\t if(!empty($searchText)) {\n $likeCriteria = \"(BaseTbl.name LIKE '%\".$searchText.\"%')\";\n $this->db->where($likeCriteria);\n }\n\t\t$this->db->order_by(\"BaseTbl.$sort_field $sort_ord\"); \n $this->db->limit($page, $segment);\n $query = $this->db->get();\n \n $result = $query->result(); \n return $result;\n }", "public function search($campo,$concepto){\n $sql=\"SELECT Id,Proveedor, Concepto, FORMAT(Monto, 2) AS Monto, Revisado, DATE_FORMAT(FechaSolicitud,'%d/%m/%Y') AS FechaSolicitud, AutorizadoPago, DATE_FORMAT(FechaAutorizado,'%d/%m/%Y') AS FechaAutorizado, estado, Comentario, ComentarioCapt, DATE_FORMAT(FechaPago,'%d/%m/%Y') AS FechaPago FROM \".self::$tablename.\" where $campo like'%{$concepto}%' ORDER BY Id DESC\";\n return Executor::doit($sql);\n }", "public function search($query)\n {\n if(strlen($query) >= 1){\n $results = \\DB::select(\n \" select * from products where name like '%$query%'\"\n );\n $ids = [];\n foreach ($results as $result) {\n foreach($result as $key => $val){\n if($key == 'id'){\n array_push($ids, $val);\n }\n }\n }\n return Product::find($ids);\n }\n }", "function clients_select_getSearchQuery($ctlData,$searchRow) {\n\tif($ctlData['SEARCHABLE'] != 'no') {\n\t\t$identifier = strtolower($ctlData['IDENTIFIER']);\n\n\t\t## the A part\t\n\t\t$query_A = '';\n\t\t\n\t\t## the B part\n\t\t$query_B = '';\n\t\t\n\t\t## the C part\n\t\t$search_value = $searchRow['value'];\n\t\t$query_C = ' AND ';\n\t\t$query_C .= DB_PREFIX.$GLOBALS['_MODULE_DATAOBJECTS_DBPREFIX'].'.'.$identifier.' like'.\"'%\".$search_value.\"%'\";\n\t\t\n\t\treturn array('partA'=>$query_A,'partB'=>$query_B,'partC'=>$query_C);\n\t}\n}", "function findProducts ($text, $category, $limit) {\r\n $sql = \"SELECT * FROM stockitems\";\r\n\r\n //checks if the item is in the requested categories\r\n if (isset($category) && $category != 'all') {\r\n $category = (int)$category;\r\n $sql = $sql . \" WHERE StockItemID IN (SELECT StockItemID FROM stockitemstockgroups WHERE StockGroupID = $category )\";\r\n if (isset($text) && $text != '') {\r\n //adds the text search if needed\r\n $sql = $sql . \"AND StockItemName LIKE '%$text%'\";\r\n }\r\n } else {\r\n //adds the text search if needed\r\n if (isset($text) && $text != '' ) {\r\n $sql = $sql . \" WHERE StockItemName LIKE '%$text%'\";\r\n }\r\n }\r\n\r\n if (isset($limit)) {\r\n $sql = $sql . \" LIMIT $limit\";\r\n }\r\n\r\n return runQuery($sql);\r\n}", "function SEARCH(){\n//Se contruye la sentencia de busqueda usando Like\n $sql= \"SELECT\n IdTrabajo,\n login,\n Alias,\n Horas,\n Ruta\n FROM ENTREGA\n WHERE (\n (IdTrabajo LIKE REPLACE('%$this->idTrabajo%', ' ', '' ))&&\n (login LIKE REPLACE('%$this->login%', ' ', '' ))&&\n (Alias LIKE REPLACE('%$this->alias%', ' ', '' ))&&\n (Horas LIKE REPLACE('%$this->horas%', ' ', '' ))&&\n (Ruta LIKE REPLACE('%$this->ruta%', ' ', '' ))\n )\";\n // si se produce un error en la busqueda mandamos el mensaje de error en la consulta\n if (!($resultado = $this->mysqli->query($sql))){\n return 'Error en la consulta sobre la base de datos';\n }\n else{ // si la busqueda es correcta devolvemos el recordset resultado\n return $resultado;\n }\n}", "function searchTableStatique() {\n include_once('./lib/config.php');\n $table = $_POST['table'];\n $tableStatique = Doctrine_Core::getTable($table);\n $columnNames = $tableStatique->getColumnNames();\n $req = '';\n $param = array();\n $premierPassage = true;\n foreach ($columnNames as $columnName) {\n if ($columnName != 'id') {\n $req .= $premierPassage ? $columnName.' like ? ' : 'and '.$columnName.' like ? ';\n $param[] = $_POST[$columnName].'%';\n $premierPassage = false;\n }\n }\n $search = $tableStatique->findByDql($req, $param);\n echo generateContenuTableStatiqueEntab($table, $tableStatique, $search);\n}", "public function product_by_search() {\n\n $CI = & get_instance();\n\n $this->auth->check_admin_auth();\n\n $CI->load->library('lproduct');\n\n $product_id = $this->input->post('product_id');\n\n\n\n $content = $CI->lproduct->product_search_list($product_id);\n\n $this->template->full_admin_html_view($content);\n\n }", "function get_search($search)\n\t{\n\t\treturn $this->name . \" LIKE '%\" . $search. \"%'\";\n\t}", "function bookingstatus_searchdata( $tbl_bookingstatus, $cari ){\n\t\t$sql = mysql_query(\"SELECT * FROM $tbl_bookingstatus WHERE \n\t\t\n\t\t\tkodestatus LIKE '%$cari%' OR,\n\t\t\tname LIKE '%$cari%' OR,\n\t\t\tdescription LIKE '%$cari%' OR,\n\t\t\tnotifikasiemail LIKE '%$cari%'\n\n\t\t\t\tORDER BY id ASC\n\t\t\"); \n \t\treturn $sql;\n}", "public function search(Request $request)\r\n {\r\n /*$request->validate([\r\n 'query' => 'required|min:3',\r\n ]);\r\n*/\r\n $query = $request->input('query');\r\n\r\n // $products = Product::where('name', 'like', \"%$query%\")\r\n // ->orWhere('details', 'like', \"%$query%\")\r\n // ->orWhere('description', 'like', \"%$query%\")\r\n // ->paginate(10);\r\n\r\n $listings = Listing::search($query)->paginate(10);\r\n}", "function count_search_product_result($conditions_array=array()){\n\t\t$this->db->where($conditions_array);\n\t\t$this->db->like('product', $this->input->post('search_text'));\n\t\t$this->db->or_like('description', $this->input->post('search_text'));\n\t\treturn $this->db->count_all_results('red_support_product as rsp');\n\t}", "function filter($_search, $_category, $_sort){\n\t\tinclude('mysql_r_db_connect.php');\n\t\t\n\t\t//Create dynamically OREDER BY\n\t\tswitch ($_sort){\n\t\t\tcase 1:\n\t\t\t\t$_sort = 'ORDER BY fldIdProduct DESC';\n\t\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\t\t$_sort = 'ORDER BY fldPrice ASC';\n\t\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\t\t$_sort = 'ORDER BY fldPrice DESC';\n\t\t\t\tbreak;\n\t\t}\n\t\t\n\t\t$_search = '%' . $_search . '%';\n\t\t\n\t\t//Check if such product exists \n\t\t$sql = \"SELECT COUNT(fldIdProduct) FROM tblProducts WHERE fldProduct LIKE '$_search'\";\n\t\t$quantity = $handle -> prepare($sql);\n\t\t$quantity->execute();\n\t\t$row = $quantity->fetchColumn();\n\t\t\n\t\tif ($row != 0){\n\t\t\t\n\t\t\t//Check if to search in specific category or in all\n\t\t\t$sql = \"SELECT COUNT(fldIdCategory) FROM tblCategorys WHERE fldCategoryShort LIKE '$_category'\";\n\t\t\t$quantity = $handle -> prepare($sql);\n\t\t\t$quantity->execute();\n\t\t\t$row = $quantity->fetchColumn();\n\t\t\t\n\t\t\tif ($row == 0){\n\t\t\t\n\t\t\t\t//SQL query to show the wanted Products\n\t\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldPrice, fldImage FROM tblProducts WHERE fldProduct LIKE '$_search' AND fldEnabled <> false $_sort\";\n\t\t\t\t$stmt = $handle->query($sql);\n\t\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\techo '\n\t\t\t\t\t\t<!-- Begin of product content-->\n\t\t\t\t\t\t<div class=\"col m6\">\n\t\t\t\t\t\t\t<!-- Beginn of product-->\n\t\t\t\t\t\t\t<div class=\"card\">\n\t\t\t\t\t\t\t\t<div class=\"card-image\">\n\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\">\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a class=\"btn-floating halfway-fab waves-effect waves-light red modal-trigger\" href=\"#' . $row->fldIdProduct . '\"><i class=\"material-icons\">add</i></a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"card-content center\">\n\t\t\t\t\t\t\t\t\t<p>' . $row->fldProduct . '</p>\n\t\t\t\t\t\t\t\t\t<h4>' . $row->fldPrice . ' CHF</h4>\n\t\t\t\t\t\t\t\t\t<br/>';\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t//SQL query to get FK of Tag\n\t\t\t\t\t\t\t\t\t$sql_fk_tag = \"SELECT fldFkTag FROM tblProductsToTags WHERE fldFkProduct LIKE '$row->fldIdProduct'\";\n\t\t\t\t\t\t\t\t\t$stmt_fk_tag = $handle->query($sql_fk_tag);\n\t\t\t\t\t\t\t\t\twhile($row_fk_tag = $stmt_fk_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t//SQL query to get Tag\n\t\t\t\t\t\t\t\t\t\t$sql_tag = \"SELECT fldTag FROM tblTags WHERE fldIdTag LIKE '$row_fk_tag->fldFkTag'\";\n\t\t\t\t\t\t\t\t\t\t$stmt_tag = $handle->query($sql_tag);\n\t\t\t\t\t\t\t\t\t\twhile($row_tag = $stmt_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\techo '<div class=\"chip\"><a href=\"filter.php?search='.$row_tag->fldTag.'&category=All&sort=1&start_search=Suchen\">' . $row_tag->fldTag . '</a></div>';\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\techo '</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<!-- End of product-->\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<!-- End of product content-->\n\t\t\t\t\t';\n\t\t\t\t}\t\n\t\t\t\techo '\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t\t';\n\t\t\t\t\n\t\t\t//SQL query to create modal for shown Products\n\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldDescription, fldPrice, fldImage, fldFkSoldBy FROM tblProducts WHERE fldProduct LIKE '$_search' AND fldEnabled <> false $_sort\";\n\t\t\t$stmt = $handle->query($sql);\n\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t//SQL query to get seller\n\t\t\t\t$sql_seller = \"SELECT fldUsername FROM tblUsers WHERE fldIdUser LIKE '$row->fldFkSoldBy'\";\n\t\t\t\t$stmt_seller = $handle->query($sql_seller);\n\t\t\t\twhile($row_seller = $stmt_seller->fetchObject()){\n\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\techo '\n\t\t\t\t\t\t<div id=\"' . $row->fldIdProduct . '\" class=\"modal\">\n\t\t\t\t\t\t\t<div class=\"modal-content\">\n\t\t\t\t\t\t\t\t<h4>' . $row->fldProduct . '</h4>\n\t\t\t\t\t\t\t\t<div class=\"clearfix float-my-children\">\n\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\" class=\"imagepadding\">\n\t\t\t\t\t\t\t\t\t<!-- Modal details container-->\n\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t<p class=\"DescTitle\">Produkt Beschreibung:</p>\n\t\t\t\t\t\t\t\t\t\t<p class=\"Description\">' . $row->fldDescription . '</p>\n\t\t\t\t\t\t\t\t\t\t<p class=\"DescPrice\">\n\t\t\t\t\t\t\t\t\t\tPreis: ' . $row->fldPrice . ' CHF\n\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t<!-- Buy informations button/link-->\n\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"buy.php?product=' . $row->fldIdProduct . '\" class=\"waves-effect waves-light btn\">Jetzt Kaufen</a>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescVerkaufer\">Verkaufer: <a href=\"userprof.php?user=' . $row->fldFkSoldBy . '\">' . $row_seller->fldUsername . '</a></p>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<!-- End of buy informations-->\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t<!-- End of details container-->\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<!-- Modal bottom button-->\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"modal-footer\">\n\t\t\t\t\t\t\t\t<a class=\"modal-action modal-close waves-effect waves-teal lighten-2 btn-flat\">Schliessen</a>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<!-- End of bottom button-->\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<!-- End of modal-->\n\t\t\t\t\t';\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\telse{\n\t\t\t\t//Search for entries in specific category\n\t\t\t\t$sql_cat = \"SELECT fldIdCategory FROM tblCategorys WHERE fldCategoryShort LIKE '$_category'\";\n\t\t\t\t$stmt_cat = $handle->query($sql_cat);\n\t\t\t\t$row_cat = $stmt_cat->fetchObject();\n\t\t\t\t\n\t\t\t\t//SQL query to show wanted Products\n\t\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldPrice, fldImage FROM tblProducts WHERE fldProduct LIKE '$_search' AND fldFkCategory LIKE '$row_cat->fldIdCategory' AND fldEnabled <> false $_sort\";\n\t\t\t\t$stmt = $handle->query($sql);\n\t\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\techo '\n\t\t\t\t\t\t<!-- Begin of product content-->\n\t\t\t\t\t\t<div class=\"col m6\">\n\t\t\t\t\t\t\t<!-- Beginn of product-->\n\t\t\t\t\t\t\t<div class=\"card\">\n\t\t\t\t\t\t\t\t<div class=\"card-image\">\n\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\">\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a class=\"btn-floating halfway-fab waves-effect waves-light red modal-trigger\" href=\"#' . $row->fldIdProduct . '\"><i class=\"material-icons\">add</i></a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"card-content center\">\n\t\t\t\t\t\t\t\t\t<p>' . $row->fldProduct . '</p>\n\t\t\t\t\t\t\t\t\t<h4>' . $row->fldPrice . ' CHF</h4>\n\t\t\t\t\t\t\t\t\t<br/>';\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t//SQL query to get FK of Tag\n\t\t\t\t\t\t\t\t\t$sql_fk_tag = \"SELECT fldFkTag FROM tblProductsToTags WHERE fldFkProduct LIKE '$row->fldIdProduct'\";\n\t\t\t\t\t\t\t\t\t$stmt_fk_tag = $handle->query($sql_fk_tag);\n\t\t\t\t\t\t\t\t\twhile($row_fk_tag = $stmt_fk_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t//SQL query to get Tag\n\t\t\t\t\t\t\t\t\t\t$sql_tag = \"SELECT fldTag FROM tblTags WHERE fldIdTag LIKE '$row_fk_tag->fldFkTag'\";\n\t\t\t\t\t\t\t\t\t\t$stmt_tag = $handle->query($sql_tag);\n\t\t\t\t\t\t\t\t\t\twhile($row_tag = $stmt_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\techo '<div class=\"chip\"><a href=\"filter.php?search='.$row_tag->fldTag.'&category=All&sort=1&start_search=Suchen\">' . $row_tag->fldTag . '</a></div>';\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\techo '</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<!-- End of product-->\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<!-- End of product content-->\n\t\t\t\t\t';\n\t\t\t\t}\n\t\t\t\techo '\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t';\t\n\t\t\t\t//SQL query to create modal for shown Products\n\t\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldDescription, fldPrice, fldImage, fldFkSoldBy FROM tblProducts WHERE fldProduct LIKE '$_search' $_sort\";\n\t\t\t\t$stmt = $handle->query($sql);\n\t\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t\t//SQL query to get seller\n\t\t\t\t\t$sql_seller = \"SELECT fldUsername FROM tblUsers WHERE fldIdUser LIKE '$row->fldFkSoldBy'\";\n\t\t\t\t\t$stmt_seller = $handle->query($sql_seller);\n\t\t\t\t\twhile($row_seller = $stmt_seller->fetchObject()){\n\t\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\t\techo '\n\t\t\t\t\t\t\t<div id=\"' . $row->fldIdProduct . '\" class=\"modal\">\n\t\t\t\t\t\t\t\t<div class=\"modal-content\">\n\t\t\t\t\t\t\t\t\t<h4>' . $row->fldProduct . '</h4>\n\t\t\t\t\t\t\t\t\t<div class=\"clearfix float-my-children\">\n\t\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\" class=\"imagepadding\">\n\t\t\t\t\t\t\t\t\t\t<!-- Modal details container-->\n\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescTitle\">Produkt Beschreibung:</p>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"Description\">' . $row->fldDescription . '</p>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescPrice\">\n\t\t\t\t\t\t\t\t\t\t\tPreis: ' . $row->fldPrice . ' CHF\n\t\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t<!-- Buy informations button/link-->\n\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"buy.php?product=' . $row->fldIdProduct . '\" class=\"waves-effect waves-light btn\">Jetzt Kaufen</a>\n\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescVerkaufer\">Verkaufer: <a href=\"userprof.php?user=' . $row->fldFkSoldBy . '\">' . $row_seller->fldUsername . '</a></p>\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t<!-- End of buy informations-->\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<!-- End of details container-->\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t<!-- Modal bottom button-->\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"modal-footer\">\n\t\t\t\t\t\t\t\t\t<a class=\"modal-action modal-close waves-effect waves-teal lighten-2 btn-flat\">Schliessen</a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<!-- End of bottom button-->\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<!-- End of modal-->\n\t\t\t\t\t\t';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse{\n\t\t\t//Search for tags with the same words like the user input\n\t\t\t$sql = \"SELECT COUNT(fldIdTag) FROM tblTags WHERE fldTag LIKE '$_search'\";\n\t\t\t$quantity = $handle -> prepare($sql);\n\t\t\t$quantity->execute();\n\t\t\t$row = $quantity->fetchColumn();\n\t\t\t\n\t\t\tif ($row != 0){\n\t\t\t\t//Get ID of Tag\n\t\t\t\t$sql_tag = \"SELECT fldIdTag FROM tblTags WHERE fldTag LIKE '$_search'\";\n\t\t\t\t$stmt_tag = $handle->query($sql_tag);\n\t\t\t\t$row_tag = $stmt_tag->fetchObject();\t\n\t\t\t\t\n\t\t\t\t//Get FK of Tag from in between table\n\t\t\t\t$sql_pro = \"SELECT fldFkProduct FROM tblProductsToTags WHERE fldFkTag LIKE '$row_tag->fldIdTag'\";\n\t\t\t\t$stmt_pro = $handle->query($sql_pro);\n\t\t\t\t$row_pro = $stmt_pro->fetchObject();\n\t\t\t\t\n\t\t\t\t//SQL query to show the wanted Products\n\t\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldPrice, fldImage FROM tblProducts WHERE fldIdProduct LIKE '$row_pro->fldFkProduct' $_sort\";\n\t\t\t\t$stmt = $handle->query($sql);\n\t\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\techo '\n\t\t\t\t\t\t<!-- Begin of product content-->\n\t\t\t\t\t\t<div class=\"col m6\">\n\t\t\t\t\t\t\t<!-- Beginn of product-->\n\t\t\t\t\t\t\t<div class=\"card\">\n\t\t\t\t\t\t\t\t<div class=\"card-image\">\n\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\">\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a class=\"btn-floating halfway-fab waves-effect waves-light red modal-trigger\" href=\"#' . $row->fldIdProduct . '\"><i class=\"material-icons\">add</i></a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"card-content center\">\n\t\t\t\t\t\t\t\t\t<p>' . $row->fldProduct . '</p>\n\t\t\t\t\t\t\t\t\t<h4>' . $row->fldPrice . ' CHF</h4>\n\t\t\t\t\t\t\t\t\t<br/>';\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t//SQL query to get FK of Tag\n\t\t\t\t\t\t\t\t\t$sql_fk_tag = \"SELECT fldFkTag FROM tblProductsToTags WHERE fldFkProduct LIKE '$row->fldIdProduct'\";\n\t\t\t\t\t\t\t\t\t$stmt_fk_tag = $handle->query($sql_fk_tag);\n\t\t\t\t\t\t\t\t\twhile($row_fk_tag = $stmt_fk_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t//SQL query to get Tag\n\t\t\t\t\t\t\t\t\t\t$sql_tag = \"SELECT fldTag FROM tblTags WHERE fldIdTag LIKE '$row_fk_tag->fldFkTag'\";\n\t\t\t\t\t\t\t\t\t\t$stmt_tag = $handle->query($sql_tag);\n\t\t\t\t\t\t\t\t\t\twhile($row_tag = $stmt_tag->fetchObject()){\n\t\t\t\t\t\t\t\t\t\t\techo '<div class=\"chip\"><a href=\"filter.php?search='.$row_tag->fldTag.'&category=All&sort=1&start_search=Suchen\">' . $row_tag->fldTag . '</a></div>';\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\techo '</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<!-- End of product-->\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<!-- End of product content-->\n\t\t\t\t\t';\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//SQL query to create modal for shown Products\n\t\t\t\t$sql = \"SELECT fldIdProduct, fldProduct, fldDescription, fldPrice, fldImage, fldFkSoldBy FROM tblProducts WHERE fldIdProduct LIKE '$row_pro->fldFkProduct' $_sort\";\n\t\t\t\t$stmt = $handle->query($sql);\n\t\t\t\twhile($row = $stmt->fetchObject()){\n\t\t\t\t\t//SQL query to get seller\n\t\t\t\t\t$sql_seller = \"SELECT fldUsername FROM tblUsers WHERE fldIdUser LIKE '$row->fldFkSoldBy'\";\n\t\t\t\t\t$stmt_seller = $handle->query($sql_seller);\n\t\t\t\t\twhile($row_seller = $stmt_seller->fetchObject()){\n\t\t\t\t\t\t//Auto generated HTML for display Products\n\t\t\t\t\t\techo '\n\t\t\t\t\t\t\t<div id=\"' . $row->fldIdProduct . '\" class=\"modal\">\n\t\t\t\t\t\t\t\t<div class=\"modal-content\">\n\t\t\t\t\t\t\t\t\t<h4>' . $row->fldProduct . '</h4>\n\t\t\t\t\t\t\t\t\t<div class=\"clearfix float-my-children\">\n\t\t\t\t\t\t\t\t\t\t<img src=\"img/products/' . $row->fldImage . '\" class=\"imagepadding\">\n\t\t\t\t\t\t\t\t\t\t<!-- Modal details container-->\n\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescTitle\">Produkt Beschreibung:</p>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"Description\">' . $row->fldDescription . '</p>\n\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescPrice\">\n\t\t\t\t\t\t\t\t\t\t\tPreis: ' . $row->fldPrice . ' CHF\n\t\t\t\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t\t\t\t<!-- Buy informations button/link-->\n\t\t\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"buy.php?product=' . $row->fldIdProduct . '\" class=\"waves-effect waves-light btn\">Jetzt Kaufen</a>\n\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"DescVerkaufer\">Verkaufer: <a href=\"userprof.php?user=' . $row->fldFkSoldBy . '\">' . $row_seller->fldUsername . '</a></p>\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t<!-- End of buy informations-->\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<!-- End of details container-->\n\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t<!-- Modal bottom button-->\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class=\"modal-footer\">\n\t\t\t\t\t\t\t\t\t<a class=\"modal-action modal-close waves-effect waves-teal lighten-2 btn-flat\">Schliessen</a>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<!-- End of bottom button-->\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<!-- End of modal-->\n\t\t\t\t\t\t';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\techo '</div></div>';\n\t\t\t\t}\n\t\t\telse{\n\t\t\t\techo 'Es tut uns leid, aber es konnten keine Produkte mit diesen Suchkriterien gefunden werden</div></div>';\n\t\t\t}\n\t\t}\n\t}", "public function search($keyword){\n // nama tabel\n // $builder = $this->table('orang');\n // // nama kolom/field, keyword\n // $builder->like('nama',$keyword);\n // return $builder;\n return $this->table('orang')->like('nama',$keyword)->orLike('alamat',$keyword);\n }", "public function findtasksByString ( $str ){\n $sqlQuery = \" SELECT * \";\n $sqlQuery .= \" FROM tasks \";\n $sqlQuery .= \" WHERE description LIKE ’% $str %’\";\n $result = $this -> getDbManager () -> executeSelectQuery ( $sqlQuery );\n return ( $result );\n }", "function sql_search_relative_titles($mastertitle,$field2check) {\n $db = GetGlobal('db');\t\n\t $lan = $lang?$lang:getlocal();\n\t $itmname = $lan?'itmname':'itmfname';\n\t $itmdescr = $lan?'itmdescr':'itmfdescr';\n\t\t$remarks = 'itmremark';\t\n\t\t$sqlout = null;\t\t\n\t\n\t $mt = explode(' ',trim($mastertitle));\n //print_r($mt);\n $sSQL = \"select \".$this->getmapf('code').\" from products where \"; //whole words...\n\t\t \t\t\n\t foreach ($mt as $i=>$lex) {\n\t\t\n\t\t if (($la = trim($lex)) && (strlen($la)>4)) {//words max than 4 chars\n\t\t\n\t\t $ulex = strtoupper($lex);\n\t\t $dlex = strtolower($lex);\n \n\t\t $sqlout[$lex] = \"$itmname like '%$lex%' \";// or $itmdescr like '%$lex%' or $remarks like '%$lex%'\";// or \"; //as is\n\t\t //$sSQL .= \"$itmname like '% $ulex %' or $itmdescr like '% $ulex %' or $remarks like '% $ulex %' or \"; //upper case\t\t\n\t\t //$sSQL .= \"$itmname like '% $dlex %' or $itmdescr like '% $dlex %' or $remarks like '% $dlex %'\"; //lower case\t\t\n\t\t \n\t\t }//if lex\n\t\t} \n\t\t\n //print_r($sqlout); \n\t\tif ($sqlout) {\n\t\t $sSQL .= implode(' or ',$sqlout);\t\t \n\t\t return ($sSQL);\n\t\t}\n\t\telse\n\t\t return null;\n\t}", "function search()\n\t{\n\t\t$search=$this->input->post('search');\n\t\t\t$data_rows=get_temp_manage_table_data_rows1($this->Giftcard->search($search),$this);\n\t\t\techo $data_rows;\n\t}", "function getDataProdukBySearch($search = null)\n {\n $builder = $this->db->table('get_produk_stok');\n $builder->select('*');\n $builder->where('kd_produk =', $search);\n $builder->orLike('nama_produk', $search);\n $builder->orWhere('kd_barcode =', $search);\n $query = $builder->get();\n return $query;\n }", "function search($keywords, $keywords2) {\n // SQL query\n $query = \"SELECT * FROM \" . $this->table_name . \" s\n LEFT JOIN Organisation o ON s.organisation_ID = o.organisation_ID\n LEFT JOIN Treatment t ON s.staff_ID = t.staff_ID\n WHERE s.organisation_ID = ? AND t.treatmentName LIKE ?\";\n // Prepare query statement\n $stmt = $this->conn->prepare($query);\n // Bind\n $stmt->bindParam(1, $keywords);\n $stmt->bindParam(2, $keywords2);\n // Execute query\n $stmt->execute();\n return $stmt;\n }", "public function search($str) {\n\t\t//sql\n\t\t$sql = \"SELECT * \";\n\t\t$sql .= \"FROM b_post \";\n\t\t$sql .= \"WHERE b_post.title LIKE CONCAT('%', ?, '%') \";\n\t\t$sql .= \"ORDER BY b_post.post_id \";\n\t\t$stmt = $this->dbManager->prepareQuery ( $sql );\n\t\t$this->dbManager->bindValue ( $stmt, 1, $str, $this->dbManager->STRING_TYPE );\n\t\t$this->dbManager->executeQuery ( $stmt );\n\t\t$rows = $this->dbManager->fetchResults ( $stmt );\n\t\t\n\t\treturn ($rows);\n\t}", "private function getProductSearchQuery(string $productSku): string\n {\n return <<<QUERY\n{\n products(filter: {sku: {eq: \"{$productSku}\"}}) {\n items {\n special_price\n }\n }\n}\nQUERY;\n }", "function search_penduduk($nama_penduduk){\n $this->db->like('nama', $nama_penduduk, 'both');\n $this->db->where('id_kk','0');\n $this->db->order_by('nama', 'ASC');\n $this->db->limit(10);\n return $this->db->get('data_penduduk')->result();\n }", "public function searchProduct(Request $request){\n\n $searchKey = $request->term;\n $products = farmproduct::where('productName','LIKE','%'.$searchKey.'%')->get();\n $result='';\n \n if(count($products)==0){\n $result[] = 'No matches found.';\n }else{\n foreach($products as $product){\n $result[] = $product->productName;\n }\n }\n return $result;\n }", "public function cpSearch($tablename,$value1=0,$value2=0) {\n\n /*\n * Prepare the select statement\n */\n $sql=\"SELECT * FROM $tablename\";\n if($value1!=0)\n { $key1= key($value1);\n $sql.=\" where $key1 like '%$value1[$key1]%'\";\n }\n if($value1!=0 && $value2!=0) \n {\n $key2= key($value2);\n $sql.=\" AND $key2='$value2[$key2]'\";\n }\n \n $sth = $this->dbh->prepare($sql);\n $sth->execute();\n $result = $sth->fetchAll(PDO::FETCH_ASSOC);\n return $result;\n \n}", "function listAllWithSearch($term) \r\n {\r\n\r\n $newTerm = \"%\".$term.\"%\";\r\n\r\n //new PDOAgent\r\n $p = new PDOAgent(\"mysql\", DB_USER, DB_PASS, DB_HOST, DB_NAME);\r\n\r\n //Connect to the Database\r\n $p->connect();\r\n\r\n //Setup the Bind Parameters\r\n $bindParams = [\"term\"=>$newTerm];\r\n \r\n //Get the results of the insert query (rows inserted)\r\n $results = $p->query(\"SELECT * FROM Coaches WHERE coachFName LIKE :term OR\r\n coachLName LIKE :term OR salary LIKE :term OR teamName LIKE :term \r\n OR dateStarted LIKE :term OR endOfContract LIKE :term;\", $bindParams);\r\n \r\n //Disconnect from the database\r\n $p->disconnect();\r\n \r\n //Return the objects\r\n return $results;\r\n }", "public static function getGroupOfferIDsBySearchword($search) \r\n { \r\n $search = \"%$search%\";\r\n \r\n include(\"../../globalVariables.php\");\r\n \r\n $verbindung = mysql_connect($url, $user, $pwd) or die\r\n (\"Keine Verbindung moeglich\");\r\n mysql_select_db($dbName) or die\r\n (\"Die Datenbank existiert nicht.\");\r\n \r\n\t$query = \"select groupoffer_id from DAY where (\r\n headline like '$search' or \r\n description like '$search') \";\r\n\t \r\n $result = mysql_query($query);\r\n \r\n \r\n mysql_close($verbindung);\r\n \r\n \r\n return $result;\r\n }", "public function searchProduct(){\n if($this->checkKeyWord() === false && $this->searchOrNoSearch == 0) return array();\n $this->check_branch();\n $andWhere = '';\n if($this->active == 0) $andWhere .= ' AND usp_active = 0';\n else $andWhere .= ' AND usp_active = 1';\n if($this->checkKeyWord() && $this->searchOrNoSearch == 0){\n if($this->class_import_export->detect_barcode($this->keyword)){\n if($this->class_import_export->detect_me_barcode($this->keyword)) $andWhere .= \" AND usp_me_barcode LIKE '%\".$this->keyword.\"%'\";\n else $andWhere .= \" AND usp_barcode LIKE '%\".$this->keyword.\"%'\";\n }else{\n $andWhere .= \" AND usp_pro_name LIKE '%\".$this->keyword.\"%'\";\n }\n }\n $sql_search = \"SELECT * FROM \".USER_PRODUCTS.\"\n WHERE usp_branch_id = \" . $this->branch_id . \"\n AND usp_use_child_id = \".$this->use_id.\"\n AND usp_use_parent_id = \" . $this->admim_id .$andWhere;\n $db_query = new db_query($sql_search);\n return $db_query->resultArray();\n }", "function db_search($value,$column,$column_want,$table) {\n\t\t$query = \"SELECT $column_want FROM $table WHERE `$column` LIKE '$value'\";\n\t\t$result = pg_query($this->db_connection,$query);\n\t\twhile($entry = pg_fetch_assoc($result)) {\n\t\t\t$results[] = $entry;\n\t\t}\n\t\treturn $results;\n\t}", "function search_for_entries($db, $pattern){\n\n\t$wildcard = (string)$pattern;\n\t\n\t$sql = \"SELECT e. *, c.name_cat FROM entries e INNER JOIN categories c ON e.ID_cat = c.ID_cat WHERE title_ent LIKE '%$wildcard%'\";\n\n\t$search = mysqli_query($db, $sql);\n\n\n\t$result = $search;\n\n\treturn $result;\n}", "public function findstudentsByString ( $str ){\n $sqlQuery = \" SELECT * \";\n $sqlQuery .= \" FROM students \";\n $sqlQuery .= \" WHERE id_nationality LIKE ’% $str %’\";\n $result = $this -> getDbManager () -> executeSelectQuery ( $sqlQuery );\n return ( $result );\n }", "function searchAllByCriteria($db,$criteria,$search)\n{\n $request = \"SELECT game.name game_name,game.year game_year,game.note game_note,categorie.content categorie_name,editor.name editor_name FROM game,categorie,game_editor,editor WHERE game.id_categorie = categorie.id AND game.id = game_editor.id_game AND editor.id = game_editor.id_editor AND $criteria = $search ORDER BY game.name ASC\";\n return mysqli_query($db,$request);\n}", "function postingSearchHandler() {\n global $inputs;\n\n $keyword = $inputs['keyword'];\n $res = getAll(\"SELECT a.*,c.name \n FROM posting a \n INNER JOIN member_posting b \n ON a.id = b.posting_id\n INNER JOIN member c \n ON c.id = b.member_id \n WHERE a.title LIKE '%$keyword%' OR a.content LIKE '%$keyword%'\");\n \n formatOutput(true, 'success',$res);\n}", "public function search($keywords,$limit,$start) {\n\t\t$this->db->select('diskusi.*');\n\t\t$this->db->from('diskusi');\n\t\t$this->db->join('users','users.id_user = diskusi.id_diskusi','LEFT');\n\t\t// End join\n\t\t$this->db->like('diskusi.judul_diskusi',$keywords,'both');\n\t\t$this->db->or_like('diskusi.isi_diskusi',$keywords,'both');\n\t\t$this->db->or_like('diskusi.penulis_diskusi',$keywords,'both');\n\t\t$this->db->group_by('id_diskusi');\n\t\t$this->db->order_by('id_diskusi','DESC');\n\t\t$this->db->limit($limit,$start);\n\t\t$query = $this->db->get();\n\t\treturn $query->result();\n\t}", "public function search();", "public function search();", "public function searchArticle(Request $request){\n// $sqlResult = DB::select('SELECT * FROM articles WHERE title LIKE ?',['%'.$request->input('search_article').'%']);\n $sqlResult = DB::select('SELECT * FROM articles WHERE MATCH(title) AGAINST (?)',[$request->input('search_article')]);\n dd($sqlResult);\n }", "public function searchByName($query);", "public function search($query);", "public function search($phrase='', $limit = true, $additional = false){\n global $Core;\n\n if(empty($this->tableFields)){\n $this->getTableFields();\n }\n\n $phrase = trim($Core->db->real_escape_string($phrase));\n if(!empty($phrase)){\n if($this->autocompleteField && $this->autocompleteObjectId){\n $q = \"SELECT `autocomplete`.`object_id`, TRIM(`autocomplete`.`phrase`) AS 'phrase'\";\n $q .= \" FROM `{$Core->dbName}`.`autocomplete`\";\n if(isset($this->tableFields['hidden']) && !$this->showHiddenRows){\n $q .= \" INNER JOIN `{$Core->dbName}`.`{$this->tableName}` ON `{$Core->dbName}`.`autocomplete`.`object_id` = `{$Core->dbName}`.`{$this->tableName}`.`id`\";\n }\n $q .= \" WHERE `autocomplete`.`type`={$this->autocompleteObjectId} AND `autocomplete`.`phrase` LIKE '%$phrase%'\";\n if(isset($this->tableFields['hidden']) && !$this->showHiddenRows){\n $q .= \" AND (`{$this->tableName}`.`hidden` IS NULL OR `{$this->tableName}`.`hidden` = 0)\";\n }\n if($additional){\n $q .= ' AND '.$additional;\n }\n $q .= ' GROUP BY `autocomplete`.`object_id` ORDER BY `autocomplete`.`phrase` ASC, `autocomplete`.`id` ASC';\n }\n else if($this->searchByField){\n if($this->returnPhraseOnly){\n $q = \"SELECT `id` AS 'object_id',`{$this->searchByField}` AS 'phrase'\";\n }\n else{\n $q = \"SELECT *\";\n }\n $q .= \" FROM `{$Core->dbName}`.`{$this->tableName}`\";\n $q .= \" WHERE `{$this->searchByField}` LIKE '%$phrase%'\";\n if(isset($this->tableFields['hidden']) && !$this->showHiddenRows){\n $q .= \" AND (`{$this->tableName}`.`hidden` IS NULL OR `{$this->tableName}`.`hidden` = 0)\";\n }\n if($additional){\n $q .= ' AND '.$additional;\n }\n\n $q .= \" ORDER BY `\".((!empty($this->orderByField)) ? $this->orderByField : $this->searchByField).\"` {$this->orderType}, `id` ASC\";\n if($this->additionalOrdering){\n $q .= ', '.$this->additionalOrdering;\n }\n }\n else throw new Exception(\"In order to use the search function, plesae define autocompleteField and autocompleteObjectId or searchByField!\");\n\n if($limit){\n if(is_numeric($limit)){\n $q.= \" LIMIT \".(($Core->rewrite->currentPage - 1) * $limit).','.$limit;\n }\n else{\n $q.= \" LIMIT \".(($Core->rewrite->currentPage - 1) * $Core->itemsPerPage).','.$Core->itemsPerPage;\n }\n }\n\n if($this->returnPhraseOnly){\n if($Core->db->query($q,$Core->cacheTime,'fillArraySingleField',$result,'object_id','phrase')){\n return $result;\n }\n }\n else{\n if($Core->db->query($q,$Core->cacheTime,'fillArray',$result,'id')){\n return $result;\n }\n }\n return array();\n }\n else{\n $all = $this->getAll(false,false,$limit,false,false,$additional);\n if(empty($all)){\n return array();\n }\n $result = array();\n foreach($all as $k => $v){\n if($this->autocompleteField && $this->autocompleteObjectId){\n if($this->returnPhraseOnly){\n if(is_array($this->autocompleteField)){\n $result[$k] = array();\n foreach($this->autocompleteField as $f){\n if(!empty($v[$f])){\n $result[$k][] = $v[$f];\n }\n }\n $result[$k] = implode($this->autocompleteSeparator,$result[$k]);\n }\n else{\n $result[$k] = $v[$this->autocompleteField];\n }\n }\n else return $all;\n }\n else if($this->searchByField){\n if($this->returnPhraseOnly){\n $result[$k] = $v[$this->searchByField];\n }\n else return $all;\n }\n else throw new Exception(\"In order to use the search function, please define autocompleteField and autocompleteObjectId or searchByField!\");\n }\n unset($all);\n return $result;\n }\n }", "function searchByTitle($title){\n $name = $title['search'];\n return db()->QUERY(\"SELECT * FROM posts WHERE title LIKE '%$name%' ORDER BY title\");\n }", "function searchProductDetails()\n\t{\n\n\t\t$producttitle = $_POST['title'];\n\t\t$brand = $_POST['brand'];\n\t\t$sku = $_POST['sku'];\n\t\t$qty = $_POST['qty'];\n\t\t$frommsrp = $_POST['frommsrp'];\n\t\t$tomsrp = $_POST['tomsrp'];\n\t\t$fromprice = $_POST['fromprice'];\n\t\t$toprice = $_POST['toprice'];\n\t\t$scost=$_POST['shippingcost'];\n\t\t$status = $_POST['status'];\n\t\t$cse = $_POST['cse'];\n\t\t$tag = $_POST['tag'];\n\t\t$fdte = $_POST['fromdate']; \n\t\t$tdte = $_POST['todate']; \n\t\t$ptype=$_POST['producttype'];\n\t\t\n\t\tif($ptype!=1)\n\t\t{\n\t\t\t$sql='SELECT distinct pt.title,pt.sku,pt.cse_enabled,pt.status,pt.shipping_cost,pt.tag,pt.intro_date,pt.product_id,pt.brand, pt.price,pt.msrp, pt.status , invt.soh FROM products_table as pt , product_inventory_table as invt ';\n\t\t\t$condition=array();\n\t\t\t\n\t\t\tif($producttitle!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.title like '%\".$producttitle.\"%'\";\n\t\t\t}\n\t\t\tif($brand!='')\n\t\t\t{\n\t\t\t\t$condition[]= \" pt.brand like '%\".$brand.\"%'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($sku!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.sku like '%\".$brand.\"%'\";\n\t\t\t}\n\t\t\tif($qty!='')\n\t\t\t{\n\t\t\t\t$condition []= \" invt.soh like '%\".$qty.\"%'\";\n\t\t\t}\n\t\t\tif($frommsrp!='' && $tomsrp!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.msrp between '\".$frommsrp.\"' and '\".$tomsrp.\"'\";\n\t\t\t}\n\t\t\tif($frommsrp!='' && $tomsrp=='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.msrp > '\".$frommsrp.\"'\";\n\t\t\t}if($frommsrp=='' && $tomsrp!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.msrp < '\".$tomsrp.\"'\";\n\t\t\t}\n\t\t\tif($fromprice!='' && $toprice!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.price between '\".$fromprice.\"' and '\".$toprice.\"'\";\n\t\t\t}\n\t\t\tif($fromprice!='' && $toprice=='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.price > '\".$fromprice.\"'\";\n\t\t\t}\n\t\t\tif($fromprice=='' && $toprice!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.price < '\".$fromprice.\"'\";\n\t\t\t}\n\t\t\tif($scost!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.shipping_cost like '%\".$scost.\"%'\";\n\t\t\t}\n\t\t\tif($status!='' && $status>-1)\n\t\t\t{\n\t\t\t\t$condition []= \" pt.status = '\".$status.\"'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($cse!='' && $cse>-1)\n\t\t\t{\n\t\t\t\t$condition []= \" pt.cse_enabled like '%\".$cse.\"%'\";\n\t\t\t}\n\t\t\tif($tag!='')\n\t\t\t{\n\t\t\t\t$condition []= \" pt.tag like '%\".$tag.\"%'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($fdte!='' && $tdte!='')\n\t\t\t{\n\n\t\t\t\t$condition []= \"date_format(pt.intro_date,'%m/%d/%Y') between '\".$fdte.\"' and '\".$tdte.\"'\";\n\t\t\t}\n\t\t\t\t\n\t\t\tif(count($condition)>1 )\n\t\t\t\t\n\t\t\t\t$sql.= ' where '. implode(' and ', $condition) .'and pt.product_id=invt.product_id';\n\t\t\t\t\n\t\t\telseif(count($condition)>0 )\n\t\t\t{\n\t\t\t\t$sql.= ' where '. implode('', $condition) .' and pt.product_id=invt.product_id'; \n\t\t\t}\n\t\t\telseif(count($condition)==0 )\n\t\t\t{\n\t\t\t\t$sql.= ' where pt.product_id=invt.product_id';\n\t\t\t}\n\t\t\t\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$sql='SELECT * FROM products_table ';\n\t\t\t$condition=array();\n\t\t\t\n\t\t\tif($producttitle!='')\n\t\t\t{\n\t\t\t\t$condition []= \" title like '%\".$producttitle.\"%'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($sku!='')\n\t\t\t{\n\t\t\t\t$condition []= \" sku like '%\".$brand.\"%'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($frommsrp!='' && $tomsrp!='')\n\t\t\t{\n\t\t\t\t$condition []= \" msrp between '\".$frommsrp.\"' and '\".$tomsrp.\"'\";\n\t\t\t}\n\t\t\tif($frommsrp!='' && $tomsrp=='')\n\t\t\t{\n\t\t\t\t$condition []= \" msrp > '\".$frommsrp.\"'\";\n\t\t\t}if($frommsrp=='' && $tomsrp!='')\n\t\t\t{\n\t\t\t\t$condition []= \" msrp < '\".$tomsrp.\"'\";\n\t\t\t}\n\t\t\tif($fromprice!='' && $toprice!='')\n\t\t\t{\n\t\t\t\t$condition []= \" price between '\".$fromprice.\"' and '\".$toprice.\"'\";\n\t\t\t}\n\t\t\tif($fromprice!='' && $toprice=='')\n\t\t\t{\n\t\t\t\t$condition []= \" price > '\".$fromprice.\"'\";\n\t\t\t}\n\t\t\tif($fromprice=='' && $toprice!='')\n\t\t\t{\n\t\t\t\t$condition []= \" price < '\".$fromprice.\"'\";\n\t\t\t}\n\t\t\tif($scost!='')\n\t\t\t{\n\t\t\t\t$condition []= \" shipping_cost like '%\".$scost.\"%'\";\n\t\t\t}\n\t\t\tif($status!='' && $status>-1)\n\t\t\t{\n\t\t\t\t$condition []= \" status = '\".$status.\"'\";\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\tif($tag!='')\n\t\t\t{\n\t\t\t\t$condition []= \" tag like '%\".$tag.\"%'\";\n\t\t\t}\n\t\t\t\n\t\t\tif($fdte!='' && $tdte!='')\n\t\t\t{\n\t\t\t\t$condition []= \" intro_date between '\".$fdte.\"' and '\".$tdte.\"'\";\n\t\t\t}\n\t\t\t\t\n\t\t\tif(count($condition)>1 )\n\t\t\t\t\n\t\t\t\t $sql.= ' where '. implode(' and ', $condition) .' and digital=\"1\"';\n\t\t\t\t\n\t\t\telseif(count($condition)>0 )\n\t\t\t{\n\t\t\t\t $sql.= ' where '. implode('', $condition) .' and digital=\"1\"';\n\t\t\t}\n\t\t\telseif(count($condition)==0 )\n\t\t\t{\n\t\t\t\t$sql.= ' where digital=\"1\"';\n\t\t\t}\n\t\t\t\n\n\t\t}\n\t\tif($_POST['search']=='Search')\n\t\t{\n\t\t\t$obj = new Bin_Query();\n\t\t\tif($obj->executeQuery($sql))\n\t\t\t{\n\t\t\t\t$output = Display_DManageProducts::showAllProducts($obj->records,'1',$this->data['paging'],$this->data['prev'],$this->data['next'],0);\n\t\t\t\n\t\t\t}\n\t\t\telse\n\t\t\t{\t\n\t\t\t\t$output = Display_DManageProducts::showAllProducts($obj->records,'0',$this->data['paging'],$this->data['prev'],$this->data['next'],0);\n\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\treturn $output;\n\t\t}\n\t\t\n\t\telse\n\t\t{\n\t\t\treturn Core_Settings_CManageProducts::showAllProducts($sql,$this->data['paging'],$this->data['prev'],$this->data['next'],0);\n\t\t}\n\t\t\n\t}", "private function setSearchstring(){\n $search_req = $this->main->getArrayFromSearchString($_GET['content_search']);\n\n $searchstring = '';\n\n foreach($search_req as $key => $val){\n if(strlen($val) > 0){\n $searchstring .= \"`name` LIKE '%\".DB::quote($val).\"%' OR \";\n };\n };\n\n $searchstring .= \"`name` LIKE '%\".DB::quote($_GET['content_search']).\"%'\";\n\n return $searchstring;\n }", "private function _getSearchStringQuery()\n {\n $words = [];\n //split string depend on quote\n preg_match_all('/\"(?:\\\\\\\\.|[^\\\\\\\\\"])*\"|\\S+/', Input::get('search.value'), $matches);\n if (!empty($matches[0])) {\n //remove quote in each part\n foreach ($matches[0] as $key => $word) {\n $words[$key] = preg_replace('/\"|\\'/', '', $word);\n if (empty($words[$key])) {\n unset($words[$key]);\n }\n }\n //create query with each search column\n foreach ($this->column_search as $item) {\n // create query with each part of search string\n $this->query->where( function($q) use($item, $words) {\n $q->where($item, 'like', '%'.$words[0].'%');\n $wordNumb = count($words);\n for ($i = 1; $i < $wordNumb; $i++) {\n $q->orWhere($item, 'like', '%'.$words[$i].'%');\n }\n });\n }\n }\n // store to hightligh matching word in title of document\n $this->sSearch = $words;\n }", "public function search($keywords) {\n\n\t\t$sql = \"SELECT * FROM {$this->table_name} WHERE title LIKE '%{$keywords}%' OR overview LIKE '%{$keywords}%'\";\n\n\t\t$stmt = $this->conn->query($sql);\n\t\treturn $stmt->fetchAll();\n\t}", "function searchcorps($searchcolumn, $search) {\r\n $db = getDatabase();\r\n\r\n $stmt = $db->prepare(\"SELECT * FROM corps WHERE $searchcolumn LIKE :search\");\r\n\r\n $search = '%' . $search . '%';\r\n $binds = array(\r\n \":search\" => $search\r\n );\r\n $results = array();\r\n if ($stmt->execute($binds) && $stmt->rowCount() > 0) {\r\n $results = $stmt->fetchAll(PDO::FETCH_ASSOC);\r\n }\r\n echo $stmt->rowCount() . \" rows found\";\r\n return $results;\r\n}", "public function getProductsWithName($name){\r\n\t\t$newQuery = \"SELECT * from products \".\r\n\t\t\t\t\" WHERE name LIKE '%\".$name.\"%'\";\r\n\t\t\r\n\t\treturn $GLOBALS['dbObj']->dbQuery($newQuery);\r\n\t}", "public function search($q);", "function search($keyword){\r\n \r\n // select all record that corespond to given keywords - can find domains which don't have associated DNS records\r\n $query = \"\r\n SELECT\r\n d.fqdn AS fqdn,\r\n r.name AS domain_name\r\n FROM\r\n \" . $this->table_name . \" AS r\r\n RIGTH OUTER JOIN domain AS d\r\n ON (r.domain = d.id)\r\n WHERE\r\n d.fqdn LIKE ? OR r.name LIKE ?\r\n ORDER BY\r\n d.fqdn ASC,\r\n r.name ASC\r\n \";\r\n \r\n // prepare query statement\r\n $stmt = $this->conn->prepare($query);\r\n \r\n // sanitize\r\n $keyword=htmlspecialchars(strip_tags($keyword));\r\n $keyword = \"%{$keyword}%\";\r\n \r\n // bind\r\n $stmt->bindParam(1, $keyword);\r\n $stmt->bindParam(2, $keyword);\r\n \r\n // execute query\r\n $stmt->execute();\r\n \r\n return $stmt;\r\n }", "private function generateSearchWhereClause($strings){\n $where = '';\n// $strings = explode(\" \", $queryString);\n $length = count($strings);\n for($i = 0; $i < $length - 1; $i++){\n $string = $strings[$i];\n $where .= \"product_name LIKE '%{$this->db->escape_like_str($string)}%'\n OR product_description LIKE '%{$this->db->escape_like_str($string)}%'\n OR category_name LIKE '%{$this->db->escape_like_str($string)}%'\n OR category_description LIKE '%{$this->db->escape_like_str($string)}%' OR \";\n }\n $where .= \"product_name LIKE '%{$this->db->escape_like_str($strings[$i])}%'\n OR product_description LIKE '%{$this->db->escape_like_str($strings[$i])}%'\n OR category_name LIKE '%{$this->db->escape_like_str($strings[$i])}%'\n OR category_description LIKE '%{$this->db->escape_like_str($strings[$i])}%' \";\n return \"($where)\";\n }", "public static function searchProduct($keyword) {\n\t\n\t\t$data = Doctrine_Query::create()->select('g.name as name')\n\t\t->from(\"airport g\")\n\t\t->andWhere(\"g.name LIKE ?\", \"%$keyword%\")\n\t\t->orderBy(\"g.name ASC\")\n\t\t->limit(5)\n\t\t->fetchArray();\n\n\t\treturn $data;\n\t}", "function nameSearch($conn, $search_term)\n {\n $query = \"SELECT DISTINCT whwp_Advert.advert_id FROM whwp_Advert \"\n . \"WHERE advert_bookname = :search_term \"\n . \"ORDER BY whwp_Advert.advert_price DESC\";\n $conn->prepQuery($query);\n $conn->bind('search_term', $search_term);\n $advert = $conn->resultset();\n return $advert;\n }", "public function searchIPC($campo,$campo2,$campo3,$concepto){\n $sql=\"SELECT Id,Proveedor, Concepto, FORMAT(Monto, 2) AS Monto, Revisado, DATE_FORMAT(FechaSolicitud,'%d/%m/%Y') AS FechaSolicitud, AutorizadoPago, DATE_FORMAT(FechaAutorizado,'%d/%m/%Y') AS FechaAutorizado, estado, Comentario, ComentarioCapt, DATE_FORMAT(FechaPago,'%d/%m/%Y') AS FechaPago FROM \".self::$tablename.\" where $campo like'%{$concepto}%' OR $campo2 like'%{$concepto}%' OR $campo3 like'%{$concepto}%' ORDER BY Id DESC\";\n return Executor::doit($sql);\n }" ]
[ "0.71933955", "0.7178024", "0.70820934", "0.68026966", "0.674552", "0.6731083", "0.67200667", "0.66667837", "0.66463524", "0.6625593", "0.6617069", "0.6611935", "0.65893465", "0.6491036", "0.64468014", "0.6445937", "0.64253527", "0.6382578", "0.637268", "0.6349834", "0.63438827", "0.6339363", "0.63300335", "0.63265634", "0.63087296", "0.6307222", "0.63053674", "0.62702465", "0.62407905", "0.6237094", "0.62108105", "0.6200286", "0.6192474", "0.6185083", "0.618474", "0.61802816", "0.61727643", "0.6156142", "0.61365795", "0.61200005", "0.61086434", "0.61007744", "0.6098345", "0.6095211", "0.60732657", "0.6073089", "0.6071309", "0.60709244", "0.60639626", "0.6061949", "0.6055244", "0.6050256", "0.6045889", "0.6021733", "0.60120916", "0.6011775", "0.59952176", "0.5975214", "0.5973451", "0.5959736", "0.59582335", "0.594728", "0.5946365", "0.5936874", "0.5929206", "0.5917407", "0.5916217", "0.591324", "0.5909562", "0.5899357", "0.5896602", "0.5889845", "0.58849096", "0.5884195", "0.5880254", "0.5874069", "0.587155", "0.58664703", "0.58608556", "0.58597124", "0.5854456", "0.58489656", "0.58489656", "0.58458495", "0.58394694", "0.58360285", "0.5835848", "0.5830628", "0.5830571", "0.5828361", "0.58242613", "0.58188355", "0.5802837", "0.57899374", "0.5787052", "0.57855684", "0.57772106", "0.5768122", "0.5766954", "0.5766011" ]
0.7336957
0
Get the rendered content
protected function getRenderedContent() { try { return $this->getServiceLocator() ->get( 'RenderedContent' ); } catch ( ServiceNotFoundException $ex ) { return null; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function render()\n {\n return $this->content;\n }", "public static function renderContent() {}", "public function renderContent() {}", "public function getContent()\n {\n return $this->objOutput->getObjectRender()->overrideContent($this->output);\n }", "public function getContent()\n {\n return $this->objOutput->getObjectRender()->overrideContent($this->output);\n }", "public function get_content()\n\t\t{\n\t\t\tif (!$this->is_cached()) {\n\t\t\t\t$this->load();\n\t\t\t}\n\n\t\t\treturn $this->content;\n\t\t}", "public function render() {\n\t\t$this->rendered = false;\n\t\tob_start();\n\t\t\t//RENDERING VIEW HERE\n\t\t\trequire_once(\"pages/View/\" . $this->_view);\n\t\t\t$this->content = ob_get_contents();\n\t\tob_end_clean();\n\t\t$this->rendered = true;\n\t\treturn ($this->content);\n\t}", "public function content()\n {\n return $this->cache->get('content');\n }", "public function getContent(){\n return $this->getPage();\n }", "public function get_content() {\n $event = Event::factory('response.get_content', array('content' => $this->_content))->notify_all();\n $data = $event->get_data();\n return $data['content'];\n }", "public function renderContent()\n {\n return $this->renderWith(static::class);\n }", "protected function getContent() {\n return $this->content;\n }", "public function frontendContent(){\n return $this->content_html;\n }", "protected abstract function renderContent();", "public function getContent()\r\n {\r\n return $this->template;\r\n }", "public function getContent()\n {\n return $this->get(self::_CONTENT);\n }", "public function getContent()\n {\n return $this->get(self::_CONTENT);\n }", "public function getContent()\n {\n return $this->get(self::_CONTENT);\n }", "public function render(){\n\t\treturn $this->file->getContent();\n\t}", "public function getContent()\n\t{\n\t\treturn $this->output;\n\t}", "public function getParsedContent()\n {\n return oxUtilsView::getInstance()->parseThroughSmarty( $this->getContent()->oxcontents__oxcontent->value, $this->getContent()->getId() );\n }", "function get_content() {\r\n\t\treturn $this->content;\r\n\t}", "public function getContent () {\r\n\t\treturn $this->content;\r\n\t}", "public function get_content() {\n return $this->content;\n }", "public function getContent()\n {\n \t$content = $this->content;\n return $content;\n }", "public function showContent()\r\n {\r\n $this->preparePage();\r\n /**\r\n * @todo do code refactoring\r\n */\r\n if (clsSysCommon::isAjax()) {\r\n $content = $this->getContent();\r\n } else {\r\n $content = $this->getContent();\r\n }\r\n return $content;\r\n }", "public function getContent() {\r\n\t\treturn $this->content;\r\n\t}", "public function content()\n {\n return $this->content;\n }", "public function content()\n {\n return $this->content;\n }", "public function content()\n {\n return $this->content;\n }", "public function render()\n {\n $data = $this->data;\n\n ob_start();\n include $this->path;\n $content = ob_get_clean();\n\n return $content;\n }", "public function getContent() {\n\t\treturn $this->content;\n\t}", "public function getContent() {\n\t\treturn $this->content;\n\t}", "public function getContent() {\n\t\treturn $this->content;\n\t}", "public function content(){\n\t\treturn mvc_service_Front::getInstance()->getCurrentActionHtml();\n\t}", "public function get_content_html()\n {\n\n ob_start();\n RP_SUB_Help::include_template($this->template_html, array_merge($this->template_variables, array('plain_text' => false)));\n return ob_get_clean();\n }", "public function getContent() {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\n {\n return $this->content;\n }", "public function getContent()\r\n {\r\n return $this->content;\r\n }", "public function getContent(){\n\t\treturn $this->content;\n\t}", "public function getContent()\n {\n return $this->content;\n }", "public function getContent() {\n\t\treturn $this->current_content;\n\t}", "public function getContent() { return $this->content; }", "public function render()\n {\n return $this->data;\n }", "public function getParsedContent()\n {\n /** @var oxUtilsView $oUtilsView */\n $oUtilsView = oxRegistry::get(\"oxUtilsView\");\n return $oUtilsView->parseThroughSmarty($this->getContent()->oxcontents__oxcontent->value, $this->getContent()->getId(), null, true);\n }", "function getContent()\n {\n return $this->content;\n }", "function getContent()\n {\n return $this->content;\n }", "public function getContent()\n\t{\n\t\treturn $this->content;\n\t}", "public function getContent()\n\t{\n\t\treturn $this->content;\n\t}", "public function getContent()\n\t{\n\t\treturn $this->content;\n\t}", "public function getContent() {\n if (empty($this->content)) {\n $this->refreshContent();\n }\n\n return $this->content;\n }", "public function Content()\n {\n return $this->content;\n }", "public function getContent()\n\t{\n\t\treturn $this->content_;\n\t}", "public function getContent()\n {\n return $this->_content;\n }", "public function getContent()\r\n {\r\n return $this->_content;\r\n }", "abstract protected function RenderContent();", "public function fetch() {\n if(!$this->isRendered) {\n $this->render();\n }\n\n return $this->html;\n }", "function getContent()\n {\n return $this->content;\n\n }", "public function getContent()\n\t{\n\t\treturn $this->_content;\n\t}", "public function getContent()\n\t{\n\t\treturn $this->_content;\n\t}", "public function renderContent()\n {\n $this->setupPage();\n $this->pageRenderer->setTitle($this->title);\n $this->loadJavaScripts();\n $this->setJavaScriptCodeArray();\n $this->loadStylesheets();\n\n $this->view->assign('docHeader', $this->docHeaderComponent->docHeaderContent());\n if ($this->moduleId) {\n $this->view->assign('moduleId', $this->moduleId);\n }\n if ($this->moduleName) {\n $this->view->assign('moduleName', $this->moduleName);\n }\n $this->view->assign('uiBlock', $this->uiBlock);\n $this->view->assign('flashMessageQueueIdentifier', $this->getFlashMessageQueue()->getIdentifier());\n $renderedPage = $this->pageRenderer->render(PageRenderer::PART_HEADER);\n $renderedPage .= $this->bodyTag;\n $renderedPage .= $this->view->render();\n $this->pageRenderer->addJsFooterInlineCode('updateSignals', BackendUtility::getUpdateSignalCode());\n $renderedPage .= $this->pageRenderer->render(PageRenderer::PART_FOOTER);\n\n return $renderedPage;\n }", "public function output() {\n\t\treturn $this->content;\n\t}", "public function getContent()\n {\n return file_get_contents($this->fullPath);\n }", "public static function getContent() {\n\t\treturn self::$_content;\n\t}", "public function fetch()\n\t{\t\t\n\t\tob_start();\t\t\n\t\t$this->display();\n\t\t$content = ob_get_clean();\n\t\treturn $content;\n\t}", "private function getContent()\n {\n return file_get_contents($this->category_dir.'/'.$this->htmlfile);\n }", "public function display()\n\t{\n\t\tob_start();\n\t\t\n\t\t$content = ob_get_contents();\n\t\tob_end_clean();\n\t\treturn $content;\n\t}", "protected function getContents()\n {\n return $this->engine->get($this->path, $this->gatherData());\n }", "public function getOutput()\n {\n $output = '';\n \\ob_start();\n $this->render();\n $output = \\ob_get_contents();\n \\ob_end_clean();\n\n return $output;\n }", "protected function renderContents()\n {\n // We will keep track of the amount of views being rendered so we can flush\n // the section after the complete rendering operation is done. This will\n // clear out the sections for any separate views that may be rendered.\n $this->factory->incrementRender();\n\n $this->factory->callComposer($this);\n\n $contents = $this->getContents();\n\n // Once we've finished rendering the view, we'll decrement the render count\n // so that each sections get flushed out next time a view is created and\n // no old sections are staying around in the memory of an environment.\n $this->factory->decrementRender();\n\n return $contents;\n }", "public function render() {\n $htmlContent = \"\";//Main Content\n\n return $htmlContent;\n}", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }", "public function render_content()\n {\n }" ]
[ "0.83749384", "0.8263334", "0.8067347", "0.7871035", "0.7871035", "0.77922314", "0.7751282", "0.77198", "0.76894903", "0.7680324", "0.76686937", "0.7646643", "0.76018316", "0.7581927", "0.7565047", "0.75466704", "0.75466704", "0.75466704", "0.753945", "0.7537021", "0.7531379", "0.7519655", "0.7493841", "0.7452836", "0.7449776", "0.7441744", "0.7438179", "0.74358594", "0.74358594", "0.74358594", "0.74294174", "0.7425189", "0.7425189", "0.7425189", "0.7417922", "0.7401527", "0.7377725", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.7377302", "0.73728716", "0.73682505", "0.7354948", "0.73542976", "0.7351315", "0.7347807", "0.73473215", "0.73449063", "0.73449063", "0.73405945", "0.73405945", "0.73405945", "0.73314714", "0.7331462", "0.73224145", "0.73194", "0.7318935", "0.7314912", "0.7305843", "0.728326", "0.72692657", "0.72692657", "0.72675353", "0.7259723", "0.72596455", "0.72547096", "0.723679", "0.7220738", "0.7204808", "0.7200058", "0.719366", "0.719288", "0.7190723", "0.7178461", "0.7178461", "0.7178461", "0.7178461", "0.7178461", "0.7178461", "0.7178461", "0.7178461" ]
0.76488286
11
Set area structure object
public function setSet( BannerSet\Structure $set ) { $this->setId = $set->id; $this->setStructure = $set; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setIdArea($id) {\n $this->_id = $id; \n }", "public function __construct($area)\n {\n parent::__construct(null);\n $this->_area = $area;\n }", "public function saveArea($area, $request) {\n $area->name = $request->name;\n $area->country = $request->country;\n $area->zip_code = $request->zip_code;\n $area->save();\n }", "public function setArea(string $area)\n {\n $this->Area = $area;\n return $this;\n }", "public function area(MBID $mbid): void\n {\n $this->setEntityId($mbid);\n $this->setEntityType(new EntityType(EntityType::AREA));\n }", "public function setArea($area)\n {\n $this->area = $area;\n\n return $this;\n }", "public function setRect(\\SetaPDF_Core_DataStructure_Rectangle $rect) {}", "function getArea(){}", "public function set_local_area($local_area)\r\n\t {\r\n\r\n\t }", "public function setAreaID($value) {\n return $this->set(self::AREAID, $value);\n }", "abstract protected function getArea();", "public function setArtBox($boundary) {}", "public function setMinArea($minArea);", "function area($a,$b,$c){\r\n\t\t$fArea= new fachada_area();\r\n\t\t$oArea=$fArea->area($a,$b,$c);\r\n\t\treturn $oArea;\r\n\t}", "public function setDataStructure($structure)\n {\n }", "function addArea($area,$boxName,$position = 0) {\n if($this->boxRender->hasBox($boxName)){\n \n if(!isset($this->areas[$area])){\n $this->areas[$area] = array();\n }\n// if(!isset($this->areas[$area][$position])){\n// $this->areas[$area][$position] = array();\n// }\n if(!array_search($boxName, $this->areas[$area])){\n if(empty($this->areas[$area][$position])){\n $this->areas[$area][$position] = $boxName;\n }else{\n $this->areas[$area][] = $boxName;\n }\n }\n }\n return $this;\n }", "public function edit(Area $area)\n {\n //\n }", "public static function AreaAssignDefaultValue($areaDetail)\n {\n $areaDetail['areaName'] = isset($areaDetail['areaName']) ? $areaDetail['areaName'] : \"\";\n $areaDetail['cityId'] = isset($areaDetail['cityId']) ? $areaDetail['cityId'] : '0';\n $areaDetail['pinCode'] = isset($areaDetail['pinCode']) ? $areaDetail['pinCode'] : \"\";\n $areaDetail['userId'] = UserCommon::getLoogedInUserId();\n return $areaDetail;\n }", "private function init_calendarArea()\n {\n\n // Init area\n $this->pObj->objCal->area_init();\n\n // Reinit class vars $conf and $conf_view\n $this->conf = $this->pObj->conf;\n $this->conf_view = $this->conf[ 'views.' ][ $this->view . '.' ][ $this->mode . '.' ];\n // Reinit class vars $conf and $conf_view\n\n return;\n }", "public function testCanSetAndGetAdministrativeArea()\n {\n $mockAdministrativeArea = 'Texas';\n\n $this->dataCenter->setAdministrativeArea($mockAdministrativeArea);\n\n $this->assertEquals($mockAdministrativeArea, $this->dataCenter->getAdministrativeArea());\n }", "public function getAreaId()\n {\n return $this->area;\n }", "public function postArea($areaDetail)\n {\n \n }", "function setBox($height, $width){\n\t\t//Takes the height and width passed and\n\t\t//saves them to the 'ScaleTool' object.\n\n\t\t$this->box_height = $height;\n\t\t$this->box_width = $width;\n\t}", "public function getArea()\n {\n return $this->area;\n }", "public function getArea()\n {\n return $this->area;\n }", "public function getArea()\n {\n return $this->area;\n }", "public function initialize()\n {\n\n $this->setSource(\"area\");\n $this->hasMany('id', 'Pole', 'place_id', ['alias' => 'Pole']);\n }", "public function setAreaRegion($area_region)\n {\n $this->area_region = $area_region;\n return $this;\n }", "public function getCurrentArea(): AreaContract;", "public function setBoundaries()\n {\n }", "public function area()\n {\n return $this->belongsTo('App\\Models\\Area', 'area_id', 'id');\n }", "function setShape($a_shape)\n\t{\n\t\t$this->shape = $a_shape;\n\t}", "public function area()\n {\n return $this->belongsTo('App\\Area');\n }", "public function area()\n {\n return $this->belongsTo('App\\Area');\n }", "public function __construct($area, $variables = [])\n {\n $this->area = blockhash_append($area);\n $this->variables = $variables;\n $this->blocks = blocks($this->area);\n }", "public function edit($area_id)\n {\n \n }", "public function setBox($box)\n {\n switch (getType($box)) {\n case 'array':\n $count = count($box);\n if ($count == 4) {\n $this->top = $box[0];\n $this->right = $box[1];\n $this->bottom = $box[2];\n $this->left = $box[3];\n } elseif ($count == 3) {\n $this->top = $box[0];\n $this->right = $box[1];\n $this->bottom = $box[2];\n $this->left = $box[1];\n } elseif ($count == 2) {\n $this->top = $box[0];\n $this->right = $box[1];\n $this->bottom = $box[0];\n $this->left = $box[1];\n } elseif ($count == 1) {\n $this->top = $box[0];\n $this->right = $box[0];\n $this->bottom = $box[0];\n $this->left = $box[0];\n }\n break;\n\n case 'string':\n $box = explode(' ', $box);\n $this->setBox($box);\n break;\n }\n }", "public function getAreaId()\n {\n return $this->areaId;\n }", "function read()\n\t{\n\t\tglobal $ilDB;\n\t\t\n\t\t$q = \"SELECT * FROM map_area WHERE item_id = \".\n\t\t\t$ilDB->quote($this->getItemId(), \"integer\").\n\t\t\t\" AND nr = \".$ilDB->quote($this->getNr(), \"integer\");\n\t\t$area_set = $ilDB->query($q);\n\t\t$area_rec = $ilDB->fetchAssoc($area_set);\n\n\t\t$this->setShape($area_rec[\"shape\"]);\n//echo $area_rec[\"Shape\"];\n\t\t$this->setNr($area_rec[\"nr\"]);\n\t\t$this->setCoords($area_rec[\"coords\"]);\n\t\t$this->setLinkType($area_rec[\"link_type\"]);\n\t\t$this->setTitle($area_rec[\"title\"]);\n\t\t$this->setHref($area_rec[\"href\"]);\n\t\t$this->setTarget($area_rec[\"target\"]);\n\t\t$this->setType($area_rec[\"type\"]);\n\t\t$this->setTargetFrame($area_rec[\"target_frame\"]);\n\t\t$this->setHighlightMode($area_rec[\"highlight_mode\"]);\n\t\t$this->setHighlightClass($area_rec[\"highlight_class\"]);\n\n\t}", "public function reset()\n {\n parent::reset();\n $this->attr('Geometry')->primitive('box');\n }", "private function getCalculatedAreaModel(): \\model\\RectangleArea\r\n {\r\n return $this->area->getAreaModel();\r\n }", "function create()\n\t{\n\t\tglobal $ilDB;\n\n\t\t$q = \"INSERT INTO map_area (item_id, nr, shape, \".\n\t\t\t\"coords, link_type, title, href, target, type, highlight_mode, highlight_class, target_frame) \".\n\t\t\t\" VALUES (\".\n\t\t\t$ilDB->quote($this->getItemId(), \"integer\").\",\".\n\t\t\t$ilDB->quote($this->getNr(), \"integer\").\",\".\n\t\t\t$ilDB->quote($this->getShape(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getCoords(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getLinkType(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getTitle(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getHref(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getTarget(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getType(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getHighlightMode(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getHighlightClass(), \"text\").\",\".\n\t\t\t$ilDB->quote($this->getTargetFrame(), \"text\").\")\";\n\t\t$ilDB->manipulate($q);\n\t}", "public function getArea(){\n return $this -> side * $this -> side;\n }", "public function show(AreaOne $areaone)\n {\n //\n }", "public function setMaxArea($maxArea);", "function subArea($a,$b,$c){\r\n\t\t$fSArea= new fachada_subArea();\r\n\t\t$oSArea=$fSArea->subArea($a,$b,$c);\r\n\t\treturn $oSArea;\r\n\t}", "protected function setObjectActualShape()\n\t{\n\t\t//\n\t\t// Check shape.\n\t\t//\n\t\tif( ! $this->offsetExists( kTAG_GEO_SHAPE ) )\n\t\t{\n\t\t\t//\n\t\t\t// Init local storage.\n\t\t\t//\n\t\t\t$coordinates = Array();\n\t\t\t$lat_tag = $this->resolveOffset( ':location:site:latitude' );\n\t\t\t$lon_tag = $this->resolveOffset( ':location:site:longitude' );\n\t\t\t$date_tag = $this->resolveOffset( 'mcpd:COLLDATE' );\n\t\t\n\t\t\t//\n\t\t\t// Resolve collection.\n\t\t\t//\n\t\t\t$collection\n\t\t\t\t= static::ResolveCollection(\n\t\t\t\t\tstatic::ResolveDatabase( $this->mDictionary, TRUE ) );\n\t\t\n\t\t\t//\n\t\t\t// Build query.\n\t\t\t//\n\t\t\t$query\n\t\t\t\t= array( '$and' => array(\n\t\t\t\t\tarray( kTAG_DOMAIN => kDOMAIN_SAMPLE_COLLECTED ),\n\t\t\t\t\tarray( $this->resolveOffset( ':mission:collecting' )\n\t\t\t\t\t\t\t=> $this->offsetGet( kTAG_NID ) ),\n\t\t\t\t\tarray( kTAG_OBJECT_OFFSETS => $lat_tag ),\n\t\t\t\t\tarray( kTAG_OBJECT_OFFSETS => $lon_tag ) ) );\n\t\t\t\n\t\t\t//\n\t\t\t// Set fields list.\n\t\t\t//\n\t\t\t$fields = array( $lat_tag => TRUE,\n\t\t\t\t\t\t\t $lon_tag => TRUE,\n\t\t\t\t\t\t\t $date_tag => TRUE );\n\t\t\n\t\t\t//\n\t\t\t// Load collected samples.\n\t\t\t//\n\t\t\t$rs = $collection->matchAll( $query, kQUERY_ARRAY, $fields );\n\t\t\tif( $rs->count() )\n\t\t\t{\n\t\t\t\t//\n\t\t\t\t// Collect sample data.\n\t\t\t\t//\n\t\t\t\t$idx = 0;\n\t\t\t\t$samples = Array();\n\t\t\t\tforeach( $rs as $record )\n\t\t\t\t{\n\t\t\t\t\t//\n\t\t\t\t\t// Set stamp.\n\t\t\t\t\t//\n\t\t\t\t\t$stamp = ( array_key_exists( $date_tag, $record ) )\n\t\t\t\t\t\t ? ('A'.$record[ $date_tag ])\n\t\t\t\t\t\t : $idx++;\n\t\t\t\t\t\n\t\t\t\t\t//\n\t\t\t\t\t// Set sample.\n\t\t\t\t\t//\n\t\t\t\t\t$samples[ $stamp ]\n\t\t\t\t\t\t= array( round( $record[ $lon_tag ], 6 ),\n\t\t\t\t\t\t\t\t round( $record[ $lat_tag ], 6 ) );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//\n\t\t\t\t// Sort array.\n\t\t\t\t//\n\t\t\t\tksort( $samples );\n\t\t\t\t\n\t\t\t\t//\n\t\t\t\t// Collect coordinates.\n\t\t\t\t//\n\t\t\t\tforeach( $samples as $record )\n\t\t\t\t{\n\t\t\t\t\t//\n\t\t\t\t\t// Check coordinates.\n\t\t\t\t\t//\n\t\t\t\t\tif( ($record[ 1 ] !== NULL )\n\t\t\t\t\t && ($record[ 0 ] !== NULL ) )\n\t\t\t\t\t\t$coordinates[ implode( ';', array( $record[ 0 ], $record[ 1 ] ) ) ]\n\t\t\t\t\t\t\t= array( $record[ 0 ], $record[ 1 ] );\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//\n\t\t\t\t// Normalise coordinates.\n\t\t\t\t//\n\t\t\t\t$coordinates = array_values( $coordinates );\n\t\t\t\n\t\t\t\t//\n\t\t\t\t// Copy sample shape.\n\t\t\t\t//\n\t\t\t\tif( count( $coordinates ) == 1 )\n\t\t\t\t\t$this->offsetSet(\n\t\t\t\t\t\tkTAG_GEO_SHAPE,\n\t\t\t\t\t\tarray( kTAG_TYPE => 'Point',\n\t\t\t\t\t\t\t kTAG_GEOMETRY => $coordinates[ 0 ] ) );\n\t\t\t\n\t\t\t\t//\n\t\t\t\t// Set multipoint.\n\t\t\t\t//\n\t\t\t\telseif( count( $coordinates ) == 2 )\n\t\t\t\t\t$this->offsetSet(\n\t\t\t\t\t\tkTAG_GEO_SHAPE,\n\t\t\t\t\t\tarray( kTAG_TYPE => 'MultiPoint',\n\t\t\t\t\t\t\t kTAG_GEOMETRY => $coordinates ) );\n\t\t\t\n\t\t\t\t//\n\t\t\t\t// Set line string.\n\t\t\t\t//\n\t\t\t\telseif( count( $coordinates ) > 2 )\n\t\t\t\t\t$this->offsetSet(\n\t\t\t\t\t\tkTAG_GEO_SHAPE,\n\t\t\t\t\t\tarray( kTAG_TYPE => 'LineString',\n\t\t\t\t\t\t\t kTAG_GEOMETRY => $coordinates ) );\n\t\t\t\t\n\t\t\t\t//\n\t\t\t\t// No points.\n\t\t\t\t//\n\t\t\t\telse\n\t\t\t\t\treturn FALSE;\t\t\t\t\t\t\t\t\t\t\t\t\t// ==>\n\t\t\t\t\t\n\t\t\t\treturn TRUE;\t\t\t\t\t\t\t\t\t\t\t\t\t\t// ==>\n\t\t\n\t\t\t} // Has collecting missions.\n\t\t\t\n\t\t\treturn FALSE;\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// ==>\n\t\t\n\t\t} // Shape not yet set.\n\t\t\n\t\treturn TRUE;\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// ==>\n\t\n\t}", "public function __construct($areacode = null)\n {\n $this\n ->setAreacode($areacode);\n }", "public function __construct() {\n $this->regions = array(\n \t'block1' => 'block1',\n \t'block2' => 'block2',\n );\n }", "function initialize () {\n $this->set_openingtag ( \"<TEXTAREA[attributes]>\" );\n\t$this->set_closingtag ( \"</TEXTAREA>\" );\n\t$this->set_type (\"textarea\");\n }", "public function setAreaName($area_name)\n {\n $this->area_name = $area_name;\n\n return $this;\n }", "function setObject($object);", "function grandeArea($a,$b,$c){\r\n\t\t$fGArea= new fachada_grandeArea();\r\n\t\t$oGArea=$fGArea->grandeArea($a,$b,$c);\r\n\t\treturn $oGArea;\r\n\t}", "function __determineArea() {\n\t\t$url = $this->Area->Url->findByUrl(Router::url('/', true));\n\t\t$area = $this->Area->findById($url['Url']['area_id']);\n\t\tif (!$area) {\n\t\t\t$this->cakeError('error404');\n\t\t}\n\t\treturn $area['Area'];\n\t}", "public function handleStoreArea($area)\r\n {\r\n $session = $this->session->getSection('map');\r\n $session->area = $area;\r\n \r\n $this->terminate();\r\n }", "public function setRischioArea($rischio) {\n $this->_rischio = $rischio; \n }", "public function setConfineArea($confine) {\n $this->_confine = $confine; \n }", "public function show(Area $area)\n {\n //\n }", "public function update(Request $request, Area $area)\n {\n //\n }", "public function LockArea($area)\n\t\t{\n\t\t\t$area->setAttribute('date_locked',Date('Y-m-d H:i:s',strtotime(\"+{$this->dateLockedWindowMinutes} minutes\")));\n\t\t\t\n\t\t\t$area->setAttribute('identifier',$_COOKIE['CONCRETE5']);\n\t\t\t\n\t\t\t\n\t\t}", "public function getAreaRegion()\n {\n return $this->area_region;\n }", "protected static function addOrUpdateArea($area, $property_id)\n {\n $area_id = null;\n if (is_array($area) && !empty($area)) {\n DB::insert(\n 'REPLACE INTO apimo_area SET property_id = ?, unit = ?, value=?,total=?,weighted=?',\n [\n $property_id,\n $area['unit'],\n (($area['value'] < $area['total']) ? $area['total'] : $area['value']),\n $area['total'],\n $area['weighted']\n ]\n );\n $area_id = DB::connection()->getPdo()->lastInsertId();\n }\n\n return $area_id;\n }", "public function getIdArea() {\n return $this->_id; \n }", "public function area_setting($id)\n {\n $area=DB::table('add_city')->where('id',$id)->first();\n //print_r($area);exit();\n return view('/add_areas',['area'=>$area,'city_id'=>$id]);\n }", "public function editAction(){\n\t\t$id = $this->getInput('id');\n\t\t$info = Ola_Service_Area::get(intval($id)); \n\t\t$this->assign('roots', $this->roots);\n\t\t$this->assign('parents', $this->parents);\n\t $this->assign('info', $info);\t\n\t}", "public function creating(Area $area)\n {\n $original_name = $area->name;\n\n $area->name = optional(strstr($area->name, ':', true) ?: null, function ($name) use ($area, $original_name) {\n $area->extra_attributes['original_name'] = $original_name;\n\n return $name;\n }) ?? $original_name;\n }", "function __construct(Page $page, Area $area)\n {\n $this->page = $page;\n $this->area = $area;\n }", "function eZRegion( $id = \"\" )\n {\n if ( is_array( $id ) )\n {\n $this->fill( $id );\n }\n else if ( $id != \"\" )\n {\n $this->ID = $id;\n\t\t\t$this->get( $this->ID );\n }\n }", "function setPlace( &$value )\n {\n $this->Place = $value;\n }", "static function putData($in_name, $in_value, $area=\"C\")\n {\n switch($area)\n {\n case \"C\":\n if(isset(self::$data_component[$in_name]))\n {\n trigger_error(\"Veraible {$in_name} already exist\", E_USER_WARNING);\n return false;\n }\n self::$data_component[$in_name]=$in_value;\n break;\n\n case \"L\":\n if(isset(self::$data_layout[$in_name]))\n {\n trigger_error(\"Veraible {$in_name} already exist\", E_USER_WARNING);\n return false;\n }\n self::$data_layout[$in_name]=$in_value;\n break;\n\n default:\n trigger_error(\"Put data error\", E_USER_WARNING);\n break;\n }\n\n }", "function updateObjectReference()\n\t{\n\t\tif (is_object($this->mob_node))\n\t\t{\n\t\t\t$this->mal_node =& $this->mob_node->first_child();\n\t\t\tif (is_object($this->mal_node) && $this->mal_node->node_name() == \"MediaAlias\")\n\t\t\t{\n\t\t\t\t$this->mal_node->set_attribute(\"OriginId\", \"il__mob_\".$this->getMediaObject()->getId());\n\t\t\t}\n\t\t}\n\t}", "public function addArea($area_id, $group_id) {\n $userId = $this->session->user_details->id;\n\n // prepare data to be stored\n $data = array(\n 'area' => $area_id,\n 'grupo' => $group_id,\n 'voluntario' => $userId\n );\n\n // faz query de delete\n $query = $this->db->insert('Interesses_Voluntario', $data);\n\n }", "public function update(Request $request, Area $area)\n {\n //Verifica se a requisição tem os campos\n $validator = Validator::make($request->all(), [\n 'name' => 'required',\n 'description' => 'required'\n ]);\n \n if ($validator->fails()) {\n return response()->json([\n 'errors' => $validator->errors(),\n 'inputs' => $request->all()\n ]);\n }\n \n //Verifica se vai atualizar o name\n if($area->name != $request->input('name')) {\n //Se atualizar, certifica que já não existe algum igual\n $validator = Validator::make($request->all(), [\n 'name' => 'required|unique:area|max:240',\n 'description' => 'required',\n ]);\n \n if ($validator->fails()) {\n return response()->json([\n 'errors' => $validator->errors(),\n 'inputs' => $request->all()\n ]);\n }\n }\n \n //Caso passe na validação, atualiza a Area\n $area->name = $request->input('name');\n $area->description = $request->input('description');\n \n $area->save();\n \n return response()->json($area);\n }", "public function update(CreateUpdateAreaRequest $request, Area $area)\n {\n $area->name = $request->input('name');\n $area->save();\n flash(\"Area Updated\")->success();\n\n return redirect()->back();\n }", "function get_duo_areas() {\n \t\n }", "public function area() {\n $area = Area::pluck('description', 'id');\n\n // Return area\n echo json_encode($area);\n }", "public static function ADMIN_AREA_INSERT_NEW_AREA_DATA(){\n\t $SQL_String = \"INSERT INTO area_main VALUES(NULL,:area_code,:area_type,:area_name,:area_descrip,:area_link,:area_gates,\".\n\t \"IFNULL(:area_load, DEFAULT(area_load)),\".\n\t\t\t\t\t \"IFNULL(:accept_max_day, DEFAULT(accept_max_day)),\".\n\t\t\t\t\t \"IFNULL(:accept_min_day, DEFAULT(accept_min_day)),\".\n\t\t\t\t\t \"IFNULL(:revise_day, DEFAULT(revise_day)),\".\n\t\t\t\t\t \"IFNULL(:cancel_day, DEFAULT(cancel_day)),\".\n\t\t\t\t\t \"IFNULL(:filled_day, DEFAULT(filled_day)),\".\n\t\t\t\t\t \"IFNULL(:wait_list, DEFAULT(wait_list)),\".\n\t\t\t\t\t \"IFNULL(:member_max, DEFAULT(member_max)),\".\n\t\t\t\t\t \"IFNULL(:auto_pass, DEFAULT(auto_pass)),\".\n\t\t\t\t\t \"IFNULL(:time_open, DEFAULT(time_open)),\".\n\t\t\t\t\t \"IFNULL(:time_close, DEFAULT(time_close)),\".\n\t\t\t\t\t \"'[]','[]',:owner,1,1,:user,NULL);\";\n\t return $SQL_String;\n\t}", "function SetPos($aRect) {\n\tassert( $this->prect != null ) ;\n\t$this->prect->SetPos($aRect);\n }", "function assignObject()\n\t{\n\t\tif ($this->id != 0)\n\t\t{\n\t\t\tif ($this->call_by_reference)\n\t\t\t{\n\t\t\t\t$this->object =& new ilObjAICCLearningModule($this->id, true);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$this->object =& new ilObjAICCLearningModule($this->id, false);\n\t\t\t}\n\t\t}\n\t}", "public function __construct(Dispatcher $api, Shield $auth, AreaAtuacaoProponente $area_atuacao)\n {\n parent::__construct($api, $auth);\n\n $this->area_atuacao = $area_atuacao;\n }", "public function setPesoArea($peso) {\n $this->_peso = $peso; \n }", "public function __construct(AreaRepository $repository)\n {\n $this->repository = $repository;\n }", "private function set_currFilterIsArea()\n {\n // 3.9.24, 120604, dwildt+\n if ( empty( $this->pObj->objCal->arr_area ) )\n {\n $this->bool_currFilterIsArea = false;\n return;\n }\n // 3.9.24, 120604, dwildt+\n // SWITCH current tableField is a filter with areas\n // Set class var $bool_currFilterIsArea\n switch ( in_array( $this->curr_tableField, array_keys( $this->pObj->objCal->arr_area ) ) )\n {\n case( true ):\n $this->bool_currFilterIsArea = true;\n break;\n case( false ):\n default:\n $this->bool_currFilterIsArea = false;\n break;\n }\n // Set class var $bool_currFilterIsArea\n // SWITCH current tableField is a filter with areas\n\n return;\n }", "public function getArea()\n{\n return 2* 3.14*$this->radius*($this->radius + $this->height);\n}", "public function getAreaDeep()\n {\n return $this->area_deep;\n }", "public function getAreaCdArea()\n {\n return $this->area_cd_area;\n }", "public function testCreateArea()\n {\n $name = 'area-46';\n $this->browse(function (Browser $browser)use($name){\n\n \n $browser->visit('/admin/dashboard')\n ->type( 'name',$name)\n ->press('Add');\n \n });\n $this->assertDatabaseHas('areas',['name'=>$name]);\n \n \n\n }", "public function update(Request $request, Area $area)\n {\n $request->validate([\n 'name'=>'required',\n \"slug'=>'required|unique:areas,'slug',$area->id\"\n ]);\n\n $area->update($request->all());\n\n return redirect()->route('config.areas.index')->with('info','El Área se Actualizó con Éxito');\n }", "public function __construct(Area $area)\n {\n $this->area = $area;\n \n $this->message_store = 'El registro fue creado.';\n\t\t$this->message_update = 'El registro fue actualizado.';\n\t\t$this->message_delete = 'El registro fue eliminado.';\n }", "public function getViewArea() {}", "public function setAreaDeep($area_deep)\n {\n $this->area_deep = $area_deep;\n return $this;\n }", "function __set($var,$val){\n\t\t\t\tif($var=='width' || ($var=='height' && $val>0)){\n\t\t\t\t\t$this->$var=$val;\n\t\t\t\t\t$this->ratio=(intval($this->height)>0 ? floatval($this->width)/$this->height : 0);\n\t\t\t\t}else if($var=='height'){\n\t\t\t\t\t$this->$var=0;\n\t\t\t\t\t$this->ratio=0;\n\t\t\t\t}else if($var == 'data'){\n\t\t\t\t\t$this->$var($val);\n\t\t\t\t}else{\n\t\t\t\t\t$this->$var=$val;\n\t\t\t\t}\n\t\t\t}", "public function getAreaID() {\n return $this->get(self::AREAID);\n }", "public function update() {\n\t$stmt = $this->_database->prepare('UPDATE planetterrains SET terrainid = ?, x = ?, y = ? WHERE refid = ?');\n\t$stmt->bind_param('iiii', $this->terrainid, $this->x, $this->y, $this->refid);\n\t$stmt->execute();\n\tif (\\is_array($this->deposit) && \\count($this->deposit) > 0) {\n\t $this->deposit[$this->refid]->terrainid = $this->refid;\n\t $this->deposit[$this->refid]->commit();\n\t}\n\telse if (!\\is_array($this->deposit)) {\n\t $this->deposit->terrainid = $this->refid;\n\t $this->deposit->commit();\n\t}\n }", "public function update(AreaRequest $request, Area $area)\n {\n $area->nome = $request->input('nome');\n $area->save();\n return redirect()->route('area.index')->\n with('success', ['Área alterado com sucesso!']);\n }", "public function creating(AreaConhecimento $area_conhecimento)\n {\n $area_conhecimento->ativo = $area_conhecimento->ativo ?? 0;\n }", "public function setBox($box){\n $this->box=$box;\n }", "function setCoords($a_coords)\n\t{\n\t\t$this->coords = $a_coords;\n\t}", "public function save(BookableArea $bookableArea);", "public static function NEW_AREA_BLOCK(){\n\t $SQL_String = \"INSERT INTO area_block VALUES(NULL,:am_id,'new','新增子區','','',:area_load,:accept_max_day,:accept_min_day,:wait_list,'[]',\t:editor,NULL,1,1)\";\n\t return $SQL_String;\n\t}", "public function getDefault(): AreaContract;" ]
[ "0.65847987", "0.6546817", "0.6188351", "0.6113463", "0.60690314", "0.60424715", "0.5965019", "0.5909396", "0.5877321", "0.57011414", "0.566491", "0.5637805", "0.54999894", "0.5499824", "0.54733825", "0.54721326", "0.5466299", "0.542701", "0.54200995", "0.5393002", "0.53833133", "0.53703356", "0.53691185", "0.5350181", "0.5350181", "0.5350181", "0.5337737", "0.53069425", "0.5305779", "0.52876794", "0.528397", "0.52731186", "0.52714014", "0.52714014", "0.5254234", "0.52334005", "0.5121329", "0.5118088", "0.511631", "0.5062127", "0.505318", "0.50129044", "0.5002671", "0.49961764", "0.49949017", "0.49800795", "0.4977864", "0.4975122", "0.49663362", "0.49574003", "0.4947671", "0.4947504", "0.4942993", "0.4930643", "0.49254778", "0.49180338", "0.49175605", "0.49130806", "0.4905805", "0.49033526", "0.49019936", "0.48892626", "0.48866236", "0.48652634", "0.485994", "0.48567763", "0.48451003", "0.4843754", "0.48374215", "0.4828676", "0.48185453", "0.4816802", "0.48164007", "0.48126101", "0.47878203", "0.4780208", "0.47796577", "0.4768291", "0.4763392", "0.47627646", "0.4760258", "0.47549802", "0.47471344", "0.47462747", "0.4736037", "0.473003", "0.47216594", "0.4709103", "0.47085768", "0.47060302", "0.46859613", "0.46820664", "0.46785682", "0.46766824", "0.46766144", "0.46747404", "0.46739805", "0.46723503", "0.46578193", "0.4655448", "0.46477526" ]
0.0
-1
Display a listing of the resource.
public function index(Request $request) { if ($request->ajax()) { $data = $this->categoryRepository->all(); return datatables()->of($data) ->addColumn('actions', function ($data) { $button = '<a class="btn btn-sm btn-info" href="' . route('categories.show', $data->id) . '" >Show <i class="fa fa-eye"></i></a>'; $button .= '&nbsp;&nbsp;&nbsp;<a class="btn btn-sm btn-primary" href="' . route('categories.edit', $data->id) . '" >Edit <i class="fa fa-edit"></i></a>'; $button .= '&nbsp;&nbsp;&nbsp;<a id="' . $data->id . '" class="delete btn btn-sm btn-danger" href="#" >Delete <i class="fa fa-trash"></i></a>'; return $button; }) ->rawColumns(['actions']) ->make(true); } return view('category::index'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function indexAction()\n {\n $limit = $this->Request()->getParam('limit', 1000);\n $offset = $this->Request()->getParam('start', 0);\n $sort = $this->Request()->getParam('sort', array());\n $filter = $this->Request()->getParam('filter', array());\n\n $result = $this->resource->getList($offset, $limit, $filter, $sort);\n\n $this->View()->assign($result);\n $this->View()->assign('success', true);\n }", "public function listing();", "function index() {\n\t\t$this->show_list();\n\t}", "public function actionList() {\n $this->_getList();\n }", "public function listAction()\n {\n $model = $this->_getPhotoModel();\n $entries = $model->fetchEntries($this->_getParam('page', 1));\n\n $this->view->url = 'http://' . $this->_request->getHttpHost() . $this->_request->getBaseUrl(); \n $this->view->paginator = $entries;\n }", "public function index()\n {\n $items = Item::all();\n return ItemForShowResource::collection($items);\n }", "public function index()\n {\n return Resource::collection(($this->getModel())::paginate(10));\n }", "function index()\n\t{\n\t\t$this->_list();\n\t\t$this->display();\n\t}", "public function listingAction(){\n if (!LoginHelper::isAdmin()){\n Router::redirect('home', '<p class=\"alert alert-danger\">Unauthorized</p>');\n }\n $this->view->render('patient/list', Patient::all());\n }", "public function index()\n {\n //\n $list = $this->obj->all();\n\n return $this->render('index', compact('list'));\n }", "public function action_index()\n\t{\n\t\t$this->template->title = 'Resources';\n\t\t$this->view = View::factory('admin/resource/index');\n\t\t$this->template->scripts[] = 'media/js/jquery.tablesorter.min.js';\n\t\t$this->template->scripts[] = 'media/js/admin/resource.js';\n\t\t\n\t\t$resources = Sprig::factory('resource')->load(NULL, FALSE);\n\t\tif (!empty($resources))\n\t\t{\n\t\t\t$this->view->resources = $resources->as_array();\n\t\t}\n\t}", "function listing()\n\t\t{\n\t\t// en $this->_view->_listado para poder acceder a el desde la vista.\n\t\t\t$this->_view->_listado = $listado = $this->_instrumentoModel->getInstrumento();\n\t\t\t$this->_view->render('listing', '', '',$this->_sidebar_menu);\n\t\t}", "public function listAction()\n {\n $em = $this->getDoctrine()->getManager();\n \n $todos = $em->getRepository(Todo::class)->findAll();\n \n return $this->render('todo/index.html.twig', array(\n 'todos' => $todos,\n ));\n }", "public function index()\n\t{\n $this->authorize('list', Instance::class);\n\n\t\treturn $this->ok($this->repo->paginate($this->request->all()));\n\t}", "public function actionRestList() {\n\t $this->doRestList();\n\t}", "public function listing()\n\t{\n\t\t$hospitalID = $this->request->getSession()->read(\"hospital_id\") ? $this->request->getSession()->read(\"hospital_id\") : \"\";\n\t\t\n\t\t$patientMonitored = 1;\n\t\t$patientActive = 1;\n\t\t\n\t\t//GET ALL PATIENTS\n\t\t$patientsData = $this->Patients->allPatients($hospitalID,$patientMonitored,$patientActive);\n\t\t//GET ALL PATIENTS\n\t\t\n\t\t//echo \"<pre>\"; print_r($patientsData);die;\n\t\t$this->set(compact(\"patientsData\"));\n\t}", "public function listAction()\n {\n $htmlpage = '<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"UTF-8\">\n <title>todos list!</title>\n </head>\n <body>\n <h1>todos list</h1>\n <p>Here are all your todos:</p>\n <ul>';\n \n $em = $this->getDoctrine()->getManager();\n $todos = $em->getRepository(Todo::class)->findAll();\n foreach($todos as $todo) {\n $htmlpage .= '<li>\n <a href=\"/todo/'.$todo->getid().'\">'.$todo->getTitle().'</a></li>';\n }\n $htmlpage .= '</ul>';\n\n $htmlpage .= '</body></html>';\n \n return new Response(\n $htmlpage,\n Response::HTTP_OK,\n array('content-type' => 'text/html')\n );\n }", "public function index()\n {\n // Get Persons\n $person = Person::paginate(10);\n\n //Return collection of person as a resource\n return PersonResource::collection($person);\n }", "public function listAction() {\n\t\t$this->view->title = $this->translator->translate(\"Invoice list\");\n\t\t$this->view->description = $this->translator->translate(\"Here you can see all the invoices.\");\n\t\t$this->view->buttons = array(array(\"url\" => \"/admin/invoices/new/\", \"label\" => $this->translator->translate('New'), \"params\" => array('css' => null)));\r\n\t\t$this->datagrid->setConfig ( Invoices::grid() )->datagrid ();\n\t}", "public function listAll()\n\t{\n\t\t$this->render(self::PATH_VIEWS . '/list', [\n\t\t\t'pages' => $this->pagesDb->findAll('id', 'DESC'),\n\t\t]);\n\t}", "public function list()\n {\n // récupérer les données : toutes les catégories enregistrées\n $productList = Product::findAll();\n\n $this->show('product/list', [\n 'productList' => $productList\n ]);\n }", "public function index()\n {\n // CRUD -> Retrieve --> List\n // BREAD -> Browse Read Edit Add Delete\n // return Item::all();\n return view('list_items',compact('items'));\n }", "public function index()\n {\n // Get manufacturers\n $manufacturers = Manufacturer::orderBy('created_at', 'desc')->paginate(15);\n\n // Return collection of manufacturers as a resource\n return ManufacturerResource::collection($manufacturers);\n }", "public function index()\n {\n return ArtistResource::collection(Artist::orderBy('created_at', 'desc')->get());\n }", "public function indexAction() {\n\t\t$page = intval($this->getInput('page'));\n\t\t$perpage = $this->perpage;\n\t\t\n\t\tlist(,$files) = Lock_Service_FileType::getAllFileType();\n\t\t$data = array();\n\t\tforeach ($files as $key=>$value) {\n\t\t\t$data[$key]['id'] = $value['id'];\n\t\t\t$data[$key]['title'] = $value['name'];\n\t\t}\n\t\tlist($total, $filetype) = Lock_Service_FileType::getList($page, $perpage);\n\t\t$this->assign('filetype', $filetype);\n\t\t$this->assign('pager', Common::getPages($total, $page, $perpage, $this->actions['listUrl'].'/?'));\n\t\t$this->assign('data', json_encode($data));\n\t}", "public function listAction()\n {\n $qb = $this->getRepository()->queryAll();\n\n $view = new ImportListView;\n $view->imports = $qb->getQuery()->execute();\n\n return $this->templating->renderResponse('InfiniteImportBundle:Import:list.html.twig', array(\n 'data' => $view\n ));\n }", "public function index()\n\t{\n\t\t//Return model all()\n\t\t$instances = $this->decorator->getListingModels();\n\n\t\treturn View::make($this->listingView, array(\n\t\t\t'instances' => $instances,\n\t\t\t'controller' => get_class($this), \n\t\t\t'modelName' => class_basename(get_class($this->decorator->getModel())),\n\t\t\t'columns' => $this->getColumnsForInstances($instances),\n\t\t\t'editable' => $this->editable\n\t\t));\n\t}", "public function index()\n {\n return InfografiResources::collection(\n Infografi::orderBy('date', 'desc')->get()\n );\n }", "public function listAction()\n\t {\n\t\t\t$this->_forward('index');\n \n\t\t}", "public function index()\n {\n $this->list_view();\n }", "public function index()\n {\n $this->list_view();\n }", "public function index()\n {\n $this->list_view();\n }", "public function listAction()\n {\n $defaults = array(\n 'page' => null,\n 'order' => null,\n 'limit' => null,\n 'offset' => null,\n 'filter' => array(),\n );\n $body = $this->getRequest()->getBody();\n $options = $body + $defaults;\n\n // Process the options\n if (is_string($options['order'])) {\n $options['order'] = array_map('trim', explode(',', $options['order']));\n }\n if (is_string($options['page'])) {\n $options['page'] = (int)$options['page'];\n }\n if (is_string($options['limit'])) {\n $options['limit'] = (int)$options['limit'];\n }\n if (is_string($options['offset'])) {\n $options['offset'] = (int)$options['offset'];\n }\n $filter = $options['filter'];\n unset($options['filter']);\n\n $options = array_filter($options);\n\n return $this->getBinding()->find($filter, $options);\n }", "public function index()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the resources from the model */\n $resources = $this->resourcesList($this->model);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.index\")) {\n $view = \"admin.{$this->name}.index\";\n } else {\n $view = 'admin.includes.actions.index';\n }\n\n /* Display a listing of the resources */\n return view($view)\n ->with('resources', $resources)\n ->with('module', $this->module);\n }", "public function index()\n\t{\n\t\t$data['lists'] = $this->mdl_student->get_all();\n\t\t$this->template->set('title', 'Student Hostel List');\n\t\t$this->template->load('template', 'contents', 'student_hostel/student_hostel_list', $data);\n\t}", "public function index()\n {\n $modules = Module::all();\n return Resource::collection($modules);\n }", "public function index()\n {\n // List all resources from user entity\n $users = User::all();\n\n return $this->showAll($users);\n }", "public function index()\n {\n // Get todos\n $todos = Todo::orderBy('created_at', 'desc')->paginate(3);\n\n // Return collection of articles as a resource\n return TodoResource::collection($todos);\n }", "public function index()\n {\n return Resources::collection(Checking::paginate());\n }", "public function index()\n {\n return CourseListResource::collection(\n Course::query()->withoutGlobalScope('publish')\n ->latest()->paginate()\n );\n }", "public function index()\n {\n $cars = Car::paginate(15);\n return CarResource::collection($cars);\n }", "public function index()\n {\n // Get articles\n $articles = Article::orderBy('created_at', 'desc')->paginate(5);\n\n // Return collection of articles as a resource\n return ArticleResource::collection($articles);\n }", "public function index()\n {\n $authors = Author::paginate(10);\n\n return AuthorResource::collection($authors);\n }", "public function index()\n {\n //Get Books\n $books = Book::paginate(10);\n \n if ($books) {\n return (BookResource::collection($books))->additional([\n 'status_code' => 200,\n 'status' => 'success',\n ]);\n } else {\n return (BookResource::collection([]))->additional([\n 'status_code' => 200,\n 'status' => 'success',\n ]);\n }\n return view('index')->with('data', $books);\n }", "public function view(){\n\t\t$this->buildListing();\n\t}", "public function index()\n {\n $books = Book::latest()\n ->paginate(20);\n\n return BookResource::collection($books);\n }", "public function index()\n {\n $listing = Listing::orderBy('id', 'desc')->paginate(10);\n return view('listings.index')->withListings($listing);\n }", "public function listAction()\n {\n $this->_getSession()->setFormData([]);\n\n $this->_title($this->__('Training Cms'))\n ->_title($this->__('Pages'));\n\n $this->loadLayout();\n\n $this->_setActiveMenu('training_cms');\n $this->_addBreadcrumb($this->__('Training Cms'), $this->__('Training Cms'));\n $this->_addBreadcrumb($this->__('Pages'), $this->__('Pages'));\n\n $this->renderLayout();\n }", "public function index()\n {\n $services = $this->serviceRepository->paginate();\n\n return ServiceResource::collection($services);\n }", "public function index()\n {\n $resources = ResourceManagement::paginate(5);\n $users = User::get();\n\n return view('resources-mgmt/index', ['resources' => $resources, 'users' => $users]);\n }", "public function index()\n {\n $catalogs = Catalog::where('status', '=', Catalog::PUBLICADO)\n ->orderBy('id', 'DESC')->get();\n \n $data = CatalogResource::collection($catalogs);\n\n return [\n 'items' => $data,\n 'mensaje' => ''\n ];\n }", "public function listAction(){\n // In a controller this can be:\n // $this->request->getQuery('page', 'int'); // GET\n $currentPage = $this->request->getPost('pageindex', 'int'); // POST\n $pageNum = ($currentPage == null) ? 1 : $currentPage;\n\n // The data set to paginate\n $message = new Notice();\n $results = $message->getMsg4Admin();\n\n // Create a Model paginator, show 10 rows by page starting from $currentPage\n $paginator = new PaginatorArray(\n array(\n \"data\" => $results,\n \"limit\" => 10,\n \"page\" => $pageNum\n )\n );\n\n // Get the paginated results\n $page = $paginator->getPaginate();\n\n return $this->response->setJsonContent($page);\n\n }", "public function list()\n {\n try {\n return $this->success($this->service->list());\n } catch (\\Exception $exception) {\n return $this->error($exception->getMessage());\n }\n }", "public function index()\n {\n return $this->sendResponse(CrisisResource::collection(Crisis::paginate(10)), 'Data fetched successfully');\n }", "public function index()\n\t{\n\t\t$%Alias = new %Model();\n\t\t$params = array();\n\t\t\n\t\t$Paginator = new Paginator( $%Alias->findSize( $params ), $this->getLimit(), $this->getPage() );\n\t\t$this->getView()->set( '%Aliass', $%Alias->findList( $params, 'Id desc', $this->getOffset(), $this->getLimit() ) );\n\t\t$this->getView()->set( 'Paginator', $Paginator );\n\t\treturn $this->getView()->render();\n\t}", "public function listAction() {}", "public function index()\n {\n\n return RecipeResource::collection(Recipe::all());\n }", "public function index()\n {\n $this->indexPage('list-product', 'List Product');\n }", "public function listAction()\n {\t\n\t\t$this->removeSession();\n\t\t$this->verifySessionRights();\n\t\t$this->setActivity(\"List view\");\n $em = $this->getDoctrine()->getManager();\n $oRepClient = $em->getRepository('BoAdminBundle:Client');\n\t\t$nb_tc = $oRepClient->getTotal();\n\t\t//get page\n\t\t$page = $this->get('session')->get('page');\n\t\tif($page==null){\n\t\t\t$page=1;\n\t\t\t$this->get('session')->set('page',1);\n\t\t}\n\t\t//get number line per page\n\t\t$nb_cpp = $em->getRepository('BoAdminBundle:Param')->getParam(\"display_list_page_number\",1);\n\t\t$nb_pages = ceil($nb_tc/$nb_cpp);\n\t\t$offset = $page>0?($page-1) * $nb_cpp:0;\n\t\t$clients = $em->getRepository('BoAdminBundle:Client')->findBy(array(),array('id' => 'desc'),$nb_cpp,$offset);\n $form = $this->createForm('Bo\\AdminBundle\\Form\\ClientType', new Client());\n return $this->render('client/index.html.twig', array(\n 'clients' => $clients,\n\t\t\t'page' => $page, // forward current page to view,\n\t\t\t'nb_pages' => $nb_pages, //total number page,\n 'form' => $form->createView(),\n\t\t\t'total'=>$nb_tc, // record number.\n\t\t\t'nb_cpp' => $nb_cpp,// line's number to display\n\t\t\t'pm'=>\"contracts\",\n\t\t\t'sm'=>\"client\",\n ));\n }", "public function index()\n {\n return AcResource::collection(Ac::latest()->paginate()); //\n }", "public function executeList()\n {\n $this->setTemplate('list');\n }", "public function indexAction()\n {\n $books = Book::getAll();\n\n View::renderTemplate('Books/index.html', [\n 'books' => $books\n ]);\n }", "function listing() {\r\n\r\n }", "public function listar() {\n $rs = $this->model->listar();\n\n echo $this->toJson($rs);\n }", "public function index()\n {\n return BookResource::collection(Book::orderby('id')->get());\n }", "public function doRestList()\n {\n $this->outputHelper( \n 'Records Retrieved Successfully', \n $this->getModel()->with($this->nestedRelations)->filter($this->restFilter)->orderBy($this->restSort)->limit($this->restLimit)->offset($this->restOffset)->findAll(),\n $this->getModel()->with($this->nestedRelations)->filter($this->restFilter)->count()\n );\n\t}", "public function index()\n {\n $client = Client::paginate();\n return ClientResource::collection($client);\n }", "public function index()\n {\n return TagResource::collection(\n Tag::orderBy('name', 'ASC')->paginate(request('per_page', 10))\n );\n }", "public function _index(){\n\t $this->_list();\n\t}", "public function index()\n\t{\n\t\t$data['lists'] = $this->gallery_mdl->get_all();\n\t\t$this->template->set('title', 'Gallery');\n\t\t$this->template->render('template', 'list', $data);\n\t}", "function drush_restapi_list() {\n\n $resources = restapi_get_resources();\n $last_module = NULL;\n $rows = [\n [dt('Module'), dt('Path'), dt('Class')],\n ];\n\n foreach($resources as $resource) {\n if ($last_module != $resource->getModule()) {\n $module = $last_module = $resource->getModule();\n }\n else {\n $module = '';\n }\n $rows[] = [$module, $resource->getPath(), $resource->getClass()];\n }\n\n drush_print_table($rows, TRUE);\n drush_log(dt('Displaying !count total resources', [\n '!count' => count($resources),\n ]), 'ok');\n\n}", "public function index()\n {\n $this->booklist();\n }", "public function index()\n {\n //\n $accounts = accounts::paginate(15);\n\n //return the collection of employees as a resource\n return accountResource::collection($accounts);\n\n\n }", "public function index()\n {\n $items = Item::all();\n return view('items::list_items',compact('items'));\n }", "public function index()\n {\n // Get houses\n $houses = House::orderBy('created_at', 'desc')->paginate(self::PAGINATE);\n \n // Return collection of houses\n \n return HouseResource::collection($houses);\n }", "public function index()\n {\n $products = Product::paginate(6);\n return ProductResource::collection($products);\n }", "public function index() {\n $this->template->allFoundItems = Found::showAll();\n $this->template->display( 'index.html.php' );\n }", "public function indexAction() {\n $this->_forward('list');\n }", "public function index()\n {\n $data = Productcategory::paginate(10);\n\t\treturn ProductcategoryResource::Collection($data);\n }", "public function index()\n {\n return SongResource::collection(\\App\\Song::orderBy('created_at', 'desc')->get());\n }", "public function ListView()\n\t{\n\t\t\n\t\t// Requer permissão de acesso\n\t\t$this->RequirePermission(Usuario::$P_ADMIN,\n\t\t\t\t'SecureExample.LoginForm',\n\t\t\t\t'Autentique-se para acessar esta página',\n\t\t\t\t'Você não possui permissão para acessar essa página ou sua sessão expirou');\n\t\t\n\t\t//$usuario = Controller::GetCurrentUser();\n\t\t//$this->Assign('usuario',$usuario);\n\t\t$this->Render();\n\t}", "public function index () {\n permiss ( 'role.list' );\n\n $data = $this->entity\n ->orderBy('created_at', 'desc')->get();\n\n return new ModelResource($data);\n }", "public function showResources()\n {\n $resources = Resource::get();\n return view('resources', compact('resources'));\n }", "public function index()\n {\n //get articless\n $articles = Article::paginate(15);\n\n //Return collection of article has a resource\n return ArticleResource::collection($articles);\n\n }", "public function actionList() {\n header(\"Content-type: application/json\");\n $verb = $_SERVER[\"REQUEST_METHOD\"];\n\n if ($verb === 'GET') {\n echo \"{\\\"data\\\":\" . CJSON::encode(Donneur::model()->findAll()) . \"}\";\n } else if ($verb == 'POST') {\n if (Donneur::model()->exists('id' === $_POST['id'])) {\n $this->actionListUpdate($_POST);\n } else {\n $this->actionListPost();\n }\n } else if ($verb == 'DELETE') {\n $this->actionListDelete();\n }\n }", "public function list()\n {\n return $this->http->request(HttpMethods::GET, $this->endpoint);\n }", "public function indexAction(){\n $data = array(\n 'collection' => $this->model->getCollection(),\n \n ); \t\n return $this->getView($data);\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $entities = $em->getRepository('DiverPriceLisrBundle:Items')->findAll();\n\n return $this->render('DiverPriceLisrBundle:Items:index.html.twig', array(\n 'entities' => $entities,\n ));\n }", "public function actionIndex()\n {\n $dataProvider = new ActiveDataProvider([\n 'query' => Slaves::find(),\n ]);\n\n return $this->render('index', [\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function listAction() {\n\t\t// Recogemos el repositorio\n\t\t$repository = $this->getDoctrine() ->getRepository('AppBundle:Product');\n\t\n\t\t// Recuperamos todos los productos.\n\t\t$products = $repository->findAll();\n\t\t// Pasamos a la plantilla el aray products\n\t\treturn $this->render('product/listActionProduct.html.twig', array( 'products' => $products));\n\t\n\t}", "public function listAction()\n\t {\n\t\t$model = $this->_getModel();\n\t\t$result = $model->getLayouts();\t\n\t\t$page = (int)($this->_request->getParam('page')); \n\t\tif(count($result) > 0)\n\t\t{ \n\t\t\tGlobals::doPaging($result, $page, $this->view);\n\t\t}\n\t\t\t\t\n\t\t$this->view->page = $page;\n\t }", "public function actionList()\n {\n // get model\n $model = new $this->_model('search');\n $model->unsetAttributes();\n\n // set filter\n if (isset($_GET[$this->_model])) {\n $model->attributes = $_GET[$this->_model];\n }\n $model->u_cms_album_id = $_GET['album'];\n\n // search\n $dataProvider = $model->search(Yii::app()->language);\n // sort\n $sort = $dataProvider->getSort();\n // route\n $sort->route = $this->id . '/list';\n\n // pagination parameters\n $pagination = $dataProvider->getPagination();\n $pagination->route = $this->id . '/list';\n $pagination->pageSize = UInterfaceSetting::model()->getSettings($this->id . ':' . $this->module->id, Yii::app()->user->id)->page_size;\n $pagination->itemCount = $dataProvider->totalItemCount;\n\n // datas\n $datas = $dataProvider->getData();\n\n // related datas\n $relatedDatas = $this->_loadRelatedData();\n\n // template\n $template = isset($_REQUEST['partial']) ? 'list/_table' : 'list/main';\n\n $jsonParams = array();\n if (Yii::app()->request->isAjaxRequest) {\n // filters\n $filtersDatas = array();\n if (isset($_GET[$this->_model])) {\n $filtersDatas[$this->_model] = $_GET[$this->_model];\n }\n if (isset($_GET[$sort->sortVar])) {\n $filtersDatas[$sort->sortVar] = $_GET[$sort->sortVar];\n }\n\n $jsonParams = array(\n 'filters' => http_build_query($filtersDatas)\n );\n }\n\n $this->dynamicRender(\n $template,\n array(\n 'dataView' => new $this->crudComponents['listDataView'](\n $datas, $relatedDatas, $model, $sort, $pagination, $this\n )\n ),\n $jsonParams\n );\n }", "public function index()\n {\n return view('listings.index')->with('listings', Listing::all());\n }", "public function get_index()\n\t{\n\t\t$pages = Page::recent_available()->paginate(30);\n\t\t$table = Cello\\Presenter\\Page::table($pages);\n\t\t$data = array(\n\t\t\t'eloquent' => $pages,\n\t\t\t'table' => $table,\n\t\t);\n\n\t\tSite::set('title', __('cello::title.pages.list'));\n\n\t\treturn View::make('cello::api.resources.index', $data);\n\t}", "public function index()\n {\n return ProductResource::collection(Product::latest()->paginate(10));\n }", "public function index()\n {\n $category = GalleryCategory::paginate(15);\n\n // return collection of category as a resource.\n return Resource::collection($category);\n }", "public function index()\n {\n //\n $news = News::latest()->paginate(18);\n\n return NewsResource::collection($news);\n }", "public function indexAction() {\n\t\t$list_info = Zend_Registry::get('list_info');\n if (!Engine_Api::_()->core()->hasSubject('list_listing')) {\n return $this->setNoRender();\n }\n \n $this->view->expiry_setting = Engine_Api::_()->list()->expirySettings();\n\n //GET SUBJECT\n $this->view->list = $list = Engine_Api::_()->core()->getSubject('list_listing');\n\n\t\t//GET CATEGORY TABLE\n\t\t$this->view->tableCategory = Engine_Api::_()->getDbTable('categories', 'list');\n\n //GET CATEGORIES NAME\n\t\t$this->view->category_name = $this->view->subcategory_name = $this->view->subsubcategory_name = '';\n\n\t\tif(!empty($list->category_id)) {\n\t\t\tif($this->view->tableCategory->getCategory($list->category_id))\n\t\t\t$this->view->category_name = $this->view->tableCategory->getCategory($list->category_id)->category_name;\n\n\t\t\tif(!empty($list->subcategory_id)) {\n\t\t\t\tif($this->view->tableCategory->getCategory($list->subcategory_id))\n\t\t\t\t$this->view->subcategory_name = $this->view->tableCategory->getCategory($list->subcategory_id)->category_name;\n\n\t\t\t\tif(!empty($list->subsubcategory_id)) {\n\t\t\t\t\tif($this->view->tableCategory->getCategory($list->subsubcategory_id))\n\t\t\t\t\t$this->view->subsubcategory_name = $this->view->tableCategory->getCategory($list->subsubcategory_id)->category_name;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n //GET LISTING TAGS\n $this->view->listTags = $list->tags()->getTagMaps();\n\n\t\t//GET OTHER DETAILS\n\t\t$this->view->list_description = Zend_Registry::get('list_descriptions');\n $this->view->addHelperPath(APPLICATION_PATH . '/application/modules/Fields/View/Helper', 'Fields_View_Helper');\n $this->view->fieldStructure = Engine_Api::_()->fields()->getFieldsStructurePartial($list);\n\t\tif(empty($list_info)){ return $this->setNoRender(); }\n }", "public function index()\n {\n return $this->service->fetchResources(Author::class, 'authors');\n }", "public function index()\n {\n return view('admin.resources.index');\n }", "public function doRestList() {\n\t\t$this->outputHelper ( 'Collections Retrieved Successfully', $this->getModel ()->with ( $this->nestedRelations )->filter ( $this->restFilter )->orderBy ( $this->restSort )->limit ( $this->restLimit )->offset ( $this->restOffset )->findAll (), $this->getModel ()->with ( $this->nestedRelations )->filter ( $this->restFilter )->count () );\n\t}" ]
[ "0.7446777", "0.736227", "0.73005503", "0.72478926", "0.71631265", "0.71489686", "0.7131636", "0.7105969", "0.71029514", "0.7101372", "0.70508176", "0.6995128", "0.69890636", "0.6934895", "0.6900203", "0.6899281", "0.6891734", "0.6887235", "0.68670005", "0.6849741", "0.6830523", "0.6802689", "0.6797", "0.67957735", "0.67871135", "0.6760129", "0.67427456", "0.6730486", "0.67272323", "0.67255723", "0.67255723", "0.67255723", "0.67177945", "0.6707866", "0.6706713", "0.6704375", "0.6664782", "0.6662871", "0.6660302", "0.6659404", "0.6656656", "0.6653517", "0.6647965", "0.6620322", "0.66185474", "0.6618499", "0.6606105", "0.6600617", "0.65996987", "0.6594775", "0.6587389", "0.6585109", "0.6581641", "0.6581017", "0.6577157", "0.65747666", "0.6572513", "0.65721947", "0.6570553", "0.65646994", "0.6563556", "0.6554194", "0.65529937", "0.65460825", "0.65368485", "0.653429", "0.65328294", "0.6526759", "0.6526695", "0.6526284", "0.65191334", "0.65183175", "0.65174305", "0.651703", "0.65141153", "0.6507088", "0.65061647", "0.6504046", "0.64942145", "0.6491893", "0.64883405", "0.6486392", "0.6485077", "0.64846045", "0.6478858", "0.64756656", "0.64726377", "0.6471126", "0.64701074", "0.6467418", "0.6462195", "0.64618355", "0.6459199", "0.6457831", "0.6454631", "0.64533997", "0.6451915", "0.6450861", "0.6449301", "0.64492667", "0.64469045" ]
0.0
-1
Show the form for creating a new resource.
public function create(): Renderable { return view('category::add'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function create()\n {\n return $this->showForm('create');\n }", "public function create()\n {\n return $this->showForm('create');\n }", "public function create()\n {\n return view('admin.resources.create');\n }", "public function create(){\n\n return view('resource.create');\n }", "public function create()\n\t{\n\t\treturn $this->showForm('create');\n\t}", "public function create()\n {\n return \"Display a form for creating a new catalogue\";\n }", "public function newAction()\n {\n $entity = new Resource();\n $current = $this->get('security.context')->getToken()->getUser();\n $entity->setMember($current);\n $form = $this->createCreateForm($entity);\n\n return array(\n 'nav_active'=>'admin_resource',\n 'entity' => $entity,\n 'form' => $form->createView(),\n );\n }", "public function create()\n {\n return view ('forms.create');\n }", "public function create ()\n {\n return view('forms.create');\n }", "public function create()\n\t{\n\t\treturn view('faith.form');\n\t}", "public function create(NebulaResource $resource): View\n {\n $this->authorize('create', $resource->model());\n\n return view('nebula::resources.create', [\n 'resource' => $resource,\n ]);\n }", "public function create()\n {\n return view(\"request_form.form\");\n }", "public function create()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.create\")) {\n $view = \"admin.{$this->name}.create\";\n } else {\n $view = 'admin.includes.actions.create';\n }\n\n /* Show the form for creating a new resource. */\n return view($view)\n ->with('name', $this->name);\n }", "public function newAction()\n\t{\n\t\t$this->render( View::make( 'schools/form' , array(\n\t\t\t'title' => 'Ajouter une nouvelle &eacute;cole'\n\t\t) ) );\n\t}", "public function create()\n {\n return view($this->forms . '.create');\n }", "public function create()\n {\n return view('restful.add');\n }", "public function create()\n {\n $resource = (new AclResource())->AclResource;\n\n //dd($resource);\n return view('Admin.acl.role.form', [\n 'resource' => $resource\n ]);\n }", "public function create()\n {\n return view('admin.createform');\n }", "public function create()\n {\n return view('admin.forms.create');\n }", "public function create()\n {\n return view('backend.student.form');\n }", "public function newAction()\n {\n $breadcrumbs = $this->get(\"white_october_breadcrumbs\");\n $breadcrumbs->addItem('Inicio', $this->get('router')->generate('admin.homepage'));\n $breadcrumbs->addItem($this->entityDescription, $this->get(\"router\")->generate(\"admin.$this->entityName.index\"));\n $breadcrumbs->addItem('Nuevo');\n\n $entity = $this->getManager()->create();\n $form = $this->getForm($entity);\n\n return $this->render('AdminBundle:Default:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'metadata' => $this->getMetadata()\n ));\n }", "public function create()\n {\n return view('client.form');\n }", "public function create()\n {\n // Nos regresa la vista del formulario\n return view('project.form');\n }", "public function create()\n {\n return view('Form');\n }", "public function newAction(){\n \n $entity = new Resourceperson();\n $form = $this->createAddForm($entity);\n\n \n return $this->render('ABCRspBundle:rsp:add.html.twig',array('entity'=>$entity,'form'=> $form->createView()));\n }", "public function createForm()\n\t{\n\t\treturn view('post.new');\n\t}", "public function create()\n {\n return view('admin.form.create', ['form' => new Form]);\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n return view('form');\n }", "public function create()\n {\n $title = $this->title;\n $subtitle = \"Adicionar cliente\";\n\n return view('admin.clients.form', compact('title', 'subtitle'));\n }", "public function create()\n {\n return view('backend.schoolboard.addform');\n }", "public function create()\n\t{\n\t\treturn view('info.forms.createInfo');\n\t}", "public function create()\n {\n //\n return view('form');\n }", "public function create()\n {\n return view('rests.create');\n }", "public function create()\n {\n return $this->showForm();\n }", "public function create()\n {\n return $this->showForm();\n }", "public function create()\n {\n return view(\"Add\");\n }", "public function create(){\n return view('form.create');\n }", "public function create()\n {\n // Show the page\n return view('admin.producer.create_edit');\n }", "public function create()\n {\n\n return view('control panel.student.add');\n\n }", "public function newAction() {\n\t\t\n\t\t$this->view->form = $this->getForm ( \"/admin/invoices/process\" );\n\t\t$this->view->title = $this->translator->translate(\"New Invoice\");\n\t\t$this->view->description = $this->translator->translate(\"Create a new invoice using this form.\");\n\t\t$this->view->buttons = array(array(\"url\" => \"#\", \"label\" => $this->translator->translate('Save'), \"params\" => array('css' => null,'id' => 'submit')),\r\n\t\t\t\t\t\t\t array(\"url\" => \"/admin/invoices/list\", \"label\" => $this->translator->translate('List'), \"params\" => array('css' => null)));\n\t\t$this->render ( 'applicantform' );\n\t}", "public function create()\n {\n $data['action'] = 'pengiriman.store';\n return view('pengiriman.form', $data);\n }", "public function create()\n {\n return $this->cView(\"form\");\n }", "public function newAction()\n {\n // Création de l'entité et du formulaire.\n $client = new Client();\n $formulaire = $this->createForm(new ClientType(), $client);\n \n \n \n // Génération de la vue.\n return $this->render('KemistraMainBundle:Client:new.html.twig',\n array('formulaire' => $formulaire->createView()));\n }", "public function create()\n {\n return view(\"dresses.form\");\n }", "public function create()\n\t{\n\t\treturn View::make('new_entry');\n\t}", "public function createAction()\n {\n// $this->view->form = $form;\n }", "public function create()\n {\n return view('bank_account.form', ['mode' => 'create']);\n }", "public function create()\n {\n return view('fish.form');\n }", "public function create()\n {\n return view('users.forms.create');\n }", "public function create()\n {\n $this->setFormFields($this->getCreateFormFields());\n $form = $this->getCreateForm();\n\n return view($this->getViewName('create'), [\n 'crudSlug' => $this->slug,\n 'form' => $form,\n ]);\n }", "public function create()\n\t{\n\t\treturn view('admin.estadoflete.new');\n\t}", "public function create()\n {\n $person = new Person;\n return view('contents.personform')->with(compact('person') );\n }", "public function createAction(){\n \t$this->view->placeholder('title')->set('Create');\n \t$this->_forward('form');\n }", "public function create()\n {\n Gate::authorize('app.products.create');\n\n return view('backend.products.form');\n }", "public function create()\n {\n return view('essentials::create');\n }", "public function create()\n {\n return view('student.add');\n }", "public function create()\n\t{\n\t\treturn view('loisier/create');\n\t}", "public function create()\n {\n return view('url.form');\n }", "public function newAction()\n {\n $entity = new Facture();\n $factureType = new FactureType();\n\t\t$factureType->setUser($this->get('security.context')->getToken()->getUser());\n $form = $this->createForm($factureType, $entity);\n\n return $this->render('chevPensionBundle:Facture:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function newAction()\n {\n $entity = new Chofer();\n $form = $this->createForm(new ChoferType(), $entity, ['user' => $this->getUser()]);\n\n return $this->render('ChoferesBundle:Chofer:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'css_active' => 'chofer',\n ));\n }", "public function create()\n\t{\n\t\treturn View::make('crebos.create');\n\t}", "public function create() : View\n {\n $fieldset = $this->menuFieldset();\n\n return $this->view('create', [\n 'title' => trans('addons.Aardwolf::titles.create'),\n 'data' => [],\n 'fieldset' => $fieldset->toPublishArray(),\n 'suggestions' => [],\n 'submitUrl' => route('aardwolf.postCreate')\n ]);\n }", "public function create()\n {\n return view('libro.create');\n }", "public function create()\n {\n return view('libro.create');\n }", "public function newAction()\n {\n $entity = new Species();\n $form = $this->createForm(new SpeciesType(), $entity);\n\n return $this->render('InfectBackendBundle:Species:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n return view('crud/add'); }", "public function create()\n\t{\n\t\treturn View::make('supplier.create');\n\t}", "public function newAction()\n {\n $entity = new Company();\n $form = $this->createForm(new CompanyType(), $entity);\n\n return $this->render('SiteSavalizeBundle:Company:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n return view(\"List.form\");\n }", "public function index_onCreateForm()\n\t{\n\t\tparent::create();\n\t\treturn $this->makePartial('create');\n\t}", "public function create()\n {\n //load create form\n return view('products.create');\n }", "public function create()\n {\n return view('article.addform');\n }", "public function create()\n {\n // Mengarahkan ke halaman form\n return view('buku.form');\n }", "public function create()\n\t{\n\t\t// load the create form (app/views/material/create.blade.php)\n\t\t$this->layout->content = View::make('material.create');\n\t}", "public function create()\n {\n return view('saldo.form');\n }", "public function create()\n\t\t{\n\t\t\treturn view('kuesioner.create');\n\t\t}", "public function view_create_questioner_form() {\n \t// show all questioner\n \t// send questioner to form\n \treturn view(\"create_questioner\");\n }", "public function newAction() {\n $entity = new Question();\n $form = $this->createCreateForm($entity);\n\n return $this->render('CdlrcodeBundle:Question:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\n {\n $data['companies'] = Company::select('id', 'name')->where('status', 1)->orderBy('id', 'desc')->get();\n return view('admin.outlet.outlet_form', $data);\n }", "public function create()\n {\n return view('admin.inverty.add');\n }", "public function create()\n {\n return view('Libro.create');\n }", "public function create()\n {\n $title = trans('entry_mode.new');\n return view('layouts.create', compact('title'));\n }", "public function create()\n {\n $breadcrumb='car.create';\n return view('admin.partials.cars.form', compact('breadcrumb'));\n }", "public function create()\n {\n return view(\"familiasPrograma.create\");\n }", "public function create()\n {\n return view('admin.car.create');\n }", "public function create()\n {\n return view('admin.car.create');\n }", "public function create()\n\t{\n\t\treturn View::make('perusahaans.create');\n\t}", "public function create()\n {\n return view(\"create\");\n }", "public function create()\n\t{\n //echo 'show form';\n\t\treturn View::make('gaans.create');\n\t}", "public function create()\n {\n $title = trans('dormitorybed.new');\n $this->generateParams();\n\n return view('layouts.create', compact('title'));\n }", "public function create()\n {\n return view('forming');\n }", "public function formNew() {\n $this->data->options = array(\n 'RJ' => 'Rio de Janeiro',\n 'MG' => 'Minas Gerais',\n 'SP' => 'São Paulo',\n 'ES' => 'Espírito Santo',\n 'BA' => 'Bahia',\n 'RS' => 'Rio Grande do Sul'\n );\n $this->data->action = \"@exemplos/pessoa/save\";\n $this->render();\n }", "public function create()\n {\n \t\n \treturn view('supplies.create');\n\n }", "public function createAction()\n {\n if ($form = $this->processForm()) {\n $this->setPageTitle(sprintf($this->_('New %s...'), $this->getTopic()));\n $this->html[] = $form;\n }\n }", "public function create()\n {\n $page_title = \"Add New\";\n return view($this->path.'create', compact('page_title'));\n }", "public function create()\n {\n // not sure what to do with the form since im\n // using ame partial for both create and edit\n return view('plants.create')->with('plant', new Plant);\n }", "public function create() {\n\t\t$title = 'Create | Show';\n\n\t\treturn view('admin.show.create', compact('title'));\n\t}", "public function create()\n {\n return view('student::students.student.create');\n }", "public function newAction(){\n\t\t$entity = new Reserva();\n\t\t$form = $this->createCreateForm($entity);\n\n\t\treturn $this->render('LIHotelBundle:Reserva:new.html.twig', array(\n\t\t\t'entity' => $entity,\n\t\t\t'form' => $form->createView(),\n\t\t));\n\t}" ]
[ "0.75948673", "0.75948673", "0.75863165", "0.7577412", "0.75727344", "0.7500887", "0.7434847", "0.7433956", "0.73892003", "0.73531085", "0.73364776", "0.73125", "0.7296102", "0.7281891", "0.72741455", "0.72424185", "0.7229325", "0.7226713", "0.7187349", "0.7179176", "0.7174283", "0.7150356", "0.71444064", "0.71442676", "0.713498", "0.71283126", "0.7123691", "0.71158516", "0.71158516", "0.71158516", "0.7112176", "0.7094388", "0.7085711", "0.708025", "0.70800644", "0.70571953", "0.70571953", "0.70556754", "0.70396435", "0.7039549", "0.7036275", "0.703468", "0.70305896", "0.7027638", "0.70265305", "0.70199823", "0.7018007", "0.7004984", "0.7003889", "0.7000935", "0.69973785", "0.6994679", "0.6993764", "0.6989918", "0.6986989", "0.6966502", "0.69656384", "0.69564354", "0.69518244", "0.6951109", "0.6947306", "0.69444615", "0.69423944", "0.6941156", "0.6937871", "0.6937871", "0.6936686", "0.69345254", "0.69318026", "0.692827", "0.69263744", "0.69242257", "0.6918349", "0.6915889", "0.6912884", "0.691146", "0.69103104", "0.69085974", "0.69040126", "0.69014287", "0.69012105", "0.6900397", "0.68951064", "0.6893521", "0.68932164", "0.6891899", "0.6891616", "0.6891616", "0.6889246", "0.68880934", "0.6887128", "0.6884732", "0.68822503", "0.68809193", "0.6875949", "0.68739206", "0.68739134", "0.6870358", "0.6869779", "0.68696856", "0.686877" ]
0.0
-1
Store a newly created resource in storage.
public function store(CategoryRequest $request) { $this->categoryRepository->create($request); return redirect('admin/category'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function store($data, Resource $resource);", "public function store()\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n if (method_exists($this, 'storeValidations')) {\n $this->request->validate($this->storeValidations());\n }\n\n /* Create a new resource */\n $resource = $this->model::create(Input::all());\n\n /* Redirect to newly created resource page */\n return redirect()\n ->route($this->name . '.edit', $resource->id)\n ->with(\n 'success',\n Lang::has($this->name . '.resource-created') ?\n $this->name . '.resource-created' :\n 'messages.alert.resource-created'\n );\n }", "public function store(CreateStorageRequest $request)\n {\n $this->storage->create($request->all());\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource created', ['name' => trans('product::storages.title.storages')]));\n }", "public function createStorage();", "public function store(StoreStorage $request)\n {\n $storage = Storage::create($request->all());\n $request->session()->flash('alert-success', 'Запись успешно добавлена!');\n return redirect()->route('storage.index');\n }", "public function saveShopifyResource() {\n if (is_null($this->getShopifyId())) { // if there is no id...\n $this->createShopifyResource(); // create a new resource\n } else { // if there is an id...\n $this->updateShopifyResource(); // update the resource\n }\n }", "public function store(Request $request, NebulaResource $resource): RedirectResponse\n {\n $this->authorize('create', $resource->model());\n\n $validated = $request->validate($resource->rules(\n $resource->createFields()\n ));\n\n $resource->storeQuery($resource->model(), $validated);\n\n $this->toast(__(':Resource created', [\n 'resource' => $resource->singularName(),\n ]));\n\n return redirect()->back();\n }", "function storeAndNew() {\n $this->store();\n }", "public function store(Request $request)\n {\n $currentUser = JWTAuth::parseToken()->authenticate();\n $validator = Validator::make($request->all(), [\n 'content' => 'required|string',\n 'image_link' => 'sometimes|url',\n ]);\n\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), [], 400);\n }\n\n $resource = new Resource;\n $resource->user_id = $currentUser['id'];\n $resource->title = $request->get('title');\n $resource->content = $request->get('content');\n $resource->image_link = $request->get('imageLink');\n $resource->video_link = $request->get('videoLink');\n $resource->file_link = $request->get('fileLink');\n $resource->audio_link = $request->get('audioLink');\n $resource->tags = collect($request->get('tags'))->implode('text', ',');\n $resource->is_public = 0;\n $resource->save();\n $data['resource'] = $resource;\n\n if ($request->get('programId')) {\n $this->addToProgram($resource, $request->programId);\n // event(new NewLearningPathResourcePublished($resource, $invitee));\n }\n\n User::find($currentUser['id'])->increment('points', 2);\n\n return APIHandler::response(1, \"New resource has been created\", $data, 201);\n }", "public function store()\n {\n if (!$this->id) { // Insert\n $this->insertObject();\n } else { // Update\n $this->updateObject();\n }\n }", "public function store()\n\t{\n\t\t\n\t\t//\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\r\n\t{\r\n\t\t//\r\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}", "public function store()\n\t{\n\t\t//\n\t}" ]
[ "0.72865677", "0.7145327", "0.71325725", "0.6640912", "0.66209733", "0.65685713", "0.652643", "0.65095705", "0.64490104", "0.637569", "0.63736665", "0.63657933", "0.63657933", "0.63657933", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437", "0.6342437" ]
0.0
-1
Show the specified resource.
public function show(int $id): Renderable { $category = $this->categoryRepository->get($id); return view('category::show', compact('category')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(Resource $resource)\n {\n // not available for now\n }", "public function show(Resource $resource)\n {\n //\n }", "public function show($id)\n {\n $resource = Resource::find($id);\n dd($resource);\n }", "public function show($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.show\")) {\n $view = \"admin.{$this->name}.show\";\n } else {\n $view = 'admin.includes.actions.show';\n }\n\n /* Displays the specified resource page */\n return view($view)\n ->with('resource', $resource)\n ->with('name', $this->name);\n }", "public function show(ShowResourceRequest $request, $id)\n {\n // TODO: Implement show() method.\n }", "public function show($id)\n {\n $currentUser = JWTAuth::parseToken()->authenticate();\n $rules = [\n 'id' => 'required|integer'\n ];\n\n $validator = Validator::make(['id' => $id], $rules);\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), 400);\n }\n $resource = $this->resourceRepository->fetchResource($id);\n $this->resourceRepository->storeView($id, $currentUser['id']);\n\n $data = [\n 'resource' => $resource,\n 'related_resources' => $this->resourceRepository->getResourcesRelatedTo($resource->id, $resource->mentoring_area_id)\n ];\n\n return APIHandler::response(1, \"Show Resource\", $data);\n }", "public function show($id)\n {\n //\n $data=Resource::find($id);\n return view('resourceDetails',compact('data'));\n }", "public function show(ResourceManagement $resourcesManagement)\n {\n //\n }", "public function show($id) {}", "public function show(NebulaResource $resource, $item): View\n {\n $this->authorize('view', $item);\n\n return view('nebula::resources.show', [\n 'resource' => $resource,\n 'item' => $item,\n ]);\n }", "public function show(Question $question) // the show part requires an id (default)\n {\n //Show function does Route Model Binding, is the simple way of telling that this\n // function provides the id of the question by default\n return new QuestionResource($question);\n }", "function show( $resource ){\n\n $where = \"reservation_status <> 'Pending' AND id = {$resource}\";\n $reservation = where( 'reservations', $where );\n $reservation = $reservation[0];\n\n return view('admin/reservation/preview_reservation', compact( 'reservation' ));\n}", "public function show()\n {\n return auth()->user()->getResource();\n }", "public function show($id)\n { \n \n }", "public function show(ResourceSubject $resourceSubject)\n {\n //\n }", "public function show($id)\n {\n // ..\n }", "public function show(Resena $resena)\n {\n }", "public function show($id)\n {\n $obj = Obj::where('id',$id)->first();\n \n $this->authorize('view', $obj);\n if($obj)\n return view('appl.'.$this->app.'.'.$this->module.'.show')\n ->with('obj',$obj)->with('app',$this);\n else\n abort(404);\n }", "public function showAction() {\n $docId = $this->getParam('id');\n\n // TODO verify parameter\n\n $document = new Opus_Document($docId);\n\n $this->_helper->layout()->disableLayout();\n\n $this->view->doc = $document;\n $this->view->document = new Application_Util_DocumentAdapter($this->view, $document);\n }", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id) {\n\t\t//\n\t}", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n // Code Goes Here\n }", "public function show(Show $show)\n {\n $this->authorize('basicView', $show);\n\n if (Auth::user()->can('view', $show)) {\n return $show->with(['hosts', 'invitees'])->first();\n }\n\n return new ShowResource($show);\n }", "private function showResourceable($resourceable)\n {\n save_resource_url();\n\n return $this->view('resources.create_edit')\n ->with('resource', $resourceable)\n ->with('photos', $resourceable->photos)\n ->with('videos', $resourceable->videos)\n ->with('documents', $resourceable->documents);\n }", "public function show($id) {\n\n\t}", "public function show($id){\n \n }", "public function show($id) {\n }", "public function show($id)\n {\n\n }", "public function show($id) {\n //\n }", "public function show($id) {\n //\n }", "public function show($id) {\n //\n }", "public function show($id) {\r\n //\r\n }", "public function show($id) {\r\n //\r\n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n\t{\n\t//\n\t}", "public function show($id)\n\t{\n\t//\n\t}", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n \n }", "public function show($id)\n {\n $this->title .= ' show';\n $this->one($id);\n }", "public function show($id)\n {\n //\n $this->_show($id);\n }", "public function show($id)\r\r\n {\r\r\n //\r\r\n }", "public function show($id)\r\r\n {\r\r\n //\r\r\n }", "public function show($id)\r\n {\r\n \r\n }", "public function show($id)\n {\n \n \n }", "public function show($id)\n {\n \n \n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }", "public function show($id)\n {\n\n }" ]
[ "0.86625683", "0.8656298", "0.7061081", "0.7016237", "0.69712675", "0.693585", "0.6916958", "0.68928856", "0.6802355", "0.66791755", "0.6661057", "0.6640048", "0.66189003", "0.66071963", "0.6594754", "0.65945184", "0.65812767", "0.65802205", "0.6552344", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65498114", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.65435684", "0.6540908", "0.6536351", "0.6528191", "0.6520638", "0.65174145", "0.65161794", "0.65081596", "0.6507456", "0.6507456", "0.6507456", "0.6506214", "0.6506214", "0.65002257", "0.65002257", "0.65002257", "0.65002257", "0.64964366", "0.64964366", "0.6491058", "0.6491058", "0.6491058", "0.6491058", "0.6489413", "0.6489413", "0.64893836", "0.6488436", "0.6481886", "0.6480796", "0.6480796", "0.6480326", "0.6477329", "0.6475613", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975", "0.6472975" ]
0.0
-1
Show the form for editing the specified resource.
public function edit(int $id): Renderable { $category = $this->categoryRepository->get($id); return view('category::edit', compact('category')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function edit(Resource $resource)\n {\n return view('admin.resources.edit', compact('resource'));\n }", "public function edit(Resource $resource)\n {\n //\n }", "public function edit($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Sets the view */\n if (view()->exists(\"admin.{$this->name}.edit\")) {\n $view = \"admin.{$this->name}.edit\";\n } else {\n $view = 'admin.includes.actions.edit';\n }\n\n /* Displays the edit resource page */\n return view($view)\n ->with('resource', $resource)\n ->with('name', $this->name);\n }", "public function edit(NebulaResource $resource, $item): View\n {\n $this->authorize('update', $item);\n\n return view('nebula::resources.edit', [\n 'resource' => $resource,\n 'item' => $item,\n ]);\n }", "public function edit() {\r\n $id = $this->api->getParam('id');\r\n\r\n if ($id) {\r\n $this->model->id = $id;\r\n $this->checkOwner();\r\n }\r\n $object = $this->model->find_by_id($id);\r\n\r\n $this->api->loadView('contact-form', array('row' => $object));\r\n }", "public function viewEditResources()\n {\n $database = new Database();\n $id = $this->_params['id'];\n\n $resource = $database->getResourceById($id);\n\n $availableResource = new Resource($resource['ResourceID'], $resource['ResourceName'], $resource['Description']\n , $resource['ContactName'] , $resource['ContactEmail'] , $resource['ContactPhone'] ,\n $resource['Link'], $resource['active']);\n $this->_f3->set('Resource', $availableResource);\n\n echo Template::instance()->render('view/include/head.php');\n echo Template::instance()->render('view/include/top-nav.php');\n echo Template::instance()->render('view/edit-resources.php');\n echo Template::instance()->render('view/include/footer.php');\n }", "public function edit()\n {\n return view('hirmvc::edit');\n }", "public function editformAction(){\n\t\t$this->loadLayout();\n $this->renderLayout();\n\t}", "public function edit() {\n $id = $this->parent->urlPathParts[2];\n // pass name and id to view\n $data = $this->parent->getModel(\"fruits\")->select(\"select * from fruit_table where id = :id\", array(\":id\"=>$id));\n $this->getView(\"header\", array(\"pagename\"=>\"about\"));\n $this->getView(\"editForm\", $data);\n $this->getView(\"footer\");\n }", "public function edit($id)\n\t{\n\t\treturn $this->showForm('update', $id);\n\t}", "public function edit($id)\n {\n $model = $this->modelObj;\n $formObj = $model::findOrFail($id);\n $data['formObj'] = $formObj;\n return view($this->veiw_base . '.edit', $data);\n }", "public function createEditForm(Resourceperson $entity){\n \n $form = $this->createForm(new ResourcepersonType(), $entity, array(\n 'action' => $this->generateUrl('rsp_update', array('id' => $entity->getRpId())),\n 'method' => 'PUT',\n ));\n\n $form->add('submit', 'submit', array('label' => 'Update','attr'=> array(\n 'class'=>'btn btn primary'\n )));\n\n return $form;\n }", "private function createEditForm(Resource $entity)\n {\n $form = $this->createForm(new ResourceType(), $entity, array(\n 'action' => $this->generateUrl('social_admin_resource_update', array('id' => $entity->getId())),\n 'method' => 'PUT',\n ));\n\n $form->add('submit', 'submit', array('label' => '保存','attr'=>[\n 'class'=>'btn btn-primary'\n ]));\n\n return $form;\n }", "public function edit($id)\n {\n return $this->showForm('update', $id);\n }", "public function edit($id)\n {\n return $this->showForm('update', $id);\n }", "public function editAction()\n {\n if ($form = $this->processForm()) {\n if ($this->useTabbedForms && method_exists($this, 'getSubject')) {\n $data = $this->getModel()->loadFirst();\n $subject = $this->getSubject($data);\n $this->setPageTitle(sprintf($this->_('Edit %s %s'), $this->getTopic(1), $subject));\n } else {\n $this->setPageTitle(sprintf($this->_('Edit %s'), $this->getTopic(1)));\n }\n $this->html[] = $form;\n }\n }", "public function edit($id)\n {\n $this->data['entity'] = GS_Form::where('id', $id)->firstOrFail();\n return view('admin.pages.forms.edit', $this->data);\n }", "public function edit($id)\n\t{\n\t\t// get the fbf_presenca\n\t\t$fbf_presenca = FbfPresenca::find($id);\n\n\t\t\n\t\t// show the edit form and pass the fbf_presenca\n\t\t$this->layout->content = View::make('fbf_presenca.edit')\n->with('fbf_presenca', $fbf_presenca);\n\t}", "public function edit($id)\n {\n $data = $this->model->find($id);\n\n return view('admin.backends.employee.form.edit',compact('data'));\n }", "public function edit($model, $form);", "function edit() {\n\t\tglobal $tpl;\n\n\t\t$form = $this->initForm();\n\t\t$tpl->setContent($form->getHTML());\n\t}", "public function edit($id)\n\t{\n\t\t$faith = Faith::find($id);\n \n return view('faith.form')->with('faith', $faith);\n\n\t}", "public function edit()\n { \n return view('admin.control.edit');\n }", "public function edit(Form $form)\n {\n //\n }", "public function edit()\n {\n return view('common::edit');\n }", "public function edit($id)\n {\n $resource = (new AclResource())->AclResource;\n $roleResource = AclRole::where('role', $id)->get(['resource'])->toArray();\n $roleResource = Arr::pluck($roleResource, 'resource');\n return view('Admin.acl.role.form', [\n 'role' => $id,\n 'resource' => $resource,\n 'roleResource' => $roleResource,\n ]);\n }", "public function edit()\n {\n return view('admin::edit');\n }", "public function edit()\n {\n return view('admin::edit');\n }", "public function edit()\r\n {\r\n return view('petro::edit');\r\n }", "public function edit($id)\n {\n // show form edit user info\n }", "public function edit()\n {\n return view('escrow::edit');\n }", "public function edit($id)\n {\n $resource = ResourceManagement::find($id);\n\n $users = User::get();\n // Redirect to user list if updating user wasn't existed\n if ($resource == null || $resource->count() == 0) {\n return redirect()->intended('/resource-management');\n }\n\n return view('resources-mgmt/edit', ['resource' => $resource, 'users' => $users]);\n }", "public function edit()\n {\n return view('commonmodule::edit');\n }", "public function editAction()\n\t{\n\t\t$params = $this->data->getParams();\n\t\t$params = $this->valid->clearDataArr($params);\n\t\tif (isset($params['id']))\n\t\t{\n\t\t\t$this->employee->setFlag(true);\n\t\t}\n\t\tif (isset($_POST['submit']))\n\t\t{\n\t\t\t$action = $this->valid->clearDataArr($_POST);\n\t\t\t$this->employee->setDataArray($action);\n\t\t\theader('Location: ' . PATH . 'Employee/index/', true, 303);\n\t\t}\n\t\t$employee = $this->employee->setAction('edit');\n\t\t$this->view->addToReplace($employee);\n\t\t$this->listEmployee();\n\t\t$this->arrayToPrint();\n\t}", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit()\n {\n return view('catalog::edit');\n }", "public function edit(form $form)\n {\n //\n }", "public function actionEdit($id) { }", "public function edit()\n {\n return view('admincp::edit');\n }", "public function edit()\n {\n return view('scaffold::edit');\n }", "public function edit($id)\n {\n $header = \"Edit\";\n\t\t$data = Penerbit::findOrFail($id);\n\t\treturn view('admin.penerbit.form', compact('data','header'));\n }", "public function edit()\n {\n return view('Person.edit');\n }", "public function edit($id)\n {\n $data = Form::find($id);\n return view('form.edit', compact('data'));\n }", "public function edit($id)\n\t{\n\t\t$career = $this->careers->findById($id);\n\t\treturn View::make('careers._form', array('career' => $career, 'exists' => true));\n\t}", "public function edit(Flight $exercise, FlightResource $resource)\n {\n return $this->viewMake('adm.smartcars.exercise-resources.edit')\n ->with('flight', $exercise)\n ->with('resource', $resource);\n }", "public function edit($id)\n\t{\n\t\t// get the material\n\t\t$material = Material::find($id);\n\n\t\t// show the edit form and pass the material\n\t\t$this->layout->content = View::make('material.edit')\n\t\t\t->with('material', $material);\n\t}", "public function edit($id, Request $request)\n {\n $formObj = $this->modelObj->find($id);\n\n if(!$formObj)\n {\n abort(404);\n } \n\n $data = array();\n $data['formObj'] = $formObj;\n $data['page_title'] = \"Edit \".$this->module;\n $data['buttonText'] = \"Update\";\n\n $data['action_url'] = $this->moduleRouteText.\".update\";\n $data['action_params'] = $formObj->id;\n $data['method'] = \"PUT\"; \n\n return view($this->moduleViewName.'.add', $data);\n }", "public function edit()\n {\n $id = $this->getId();\n return view('panel.user.form', [\n 'user' => $this->userRepository->findById($id),\n 'method' => 'PUT',\n 'routePrefix' => 'profile',\n 'route' => 'profile.update',\n 'parameters' => [$id],\n 'breadcrumbs' => $this->getBreadcrumb('Editar')\n ]);\n }", "public function edit()\r\n {\r\n return view('mpcs::edit');\r\n }", "function edit()\n\t{\n\t\t// hien thi form sua san pham\n\t\t$id = getParameter('id');\n\t\t$product = $this->model->product->find_by_id($id);\n\t\t$this->layout->set('auth_layout');\n\t\t$this->view->load('product/edit', [\n\t\t\t'product' => $product\n\t\t]);\n\t}", "public function edit($id)\n {\n //\n $data = Diskon::find($id);\n\n $form = $this->form;\n $edit = $this->edit;\n $field = $this->field;\n $page = $this->page;\n $id = $id;\n $title = $this->title;\n return view('admin/page/'.$this->page.'/edit',compact('form','edit','data','field','page','id','title'));\n }", "public function edit($id)\n {\n return $this->showForm($id);\n }", "public function edit($id)\n {\n return $this->showForm($id);\n }", "protected function _edit(){\n\t\treturn $this->_editForm();\n\t}", "public function editAction()\n {\n $robot = Robots::findFirst($this->session->get(\"robot-id\"));\n if ($this->request->isGet()) {\n $this->tag->prependTitle(\"Редактировать робота :: \");\n $user = $this->session->get(\"auth-id\");\n if (!$robot) {\n $this->flashSession->error(\n \"Робот не найден\"\n );\n return $this->response->redirect(\"users/usershow/$user->name\");\n }\n\n }\n\n $this->view->form = new RobotForm(\n $robot,\n [\n \"edit\" => true,\n ]\n );\n }", "public function editAction()\n {\n $form = new $this->form();\n\n $request = $this->getRequest();\n $param = $this->params()->fromRoute('id', 0);\n\n $repository = $this->getEm()->getRepository($this->entity);\n $entity = $repository->find($param);\n\n if ($entity) {\n\n $form->setData($entity->toArray());\n\n if ( $request->isPost() ) {\n\n $form->setData($request->getPost());\n\n if ( $form->isValid() ) {\n\n $service = $this->getServiceLocator()->get($this->service);\n $service->update($request->getPost()->toArray());\n\n return $this->redirect()->toRoute($this->route, array('controller' => $this->controller));\n }\n }\n } else {\n return $this->redirect()->toRoute($this->route, array('controller' => $this->controller));\n }\n\n return new ViewModel(array('form' => $form, 'id' => $param));\n\n }", "public function edit($id)\n\t{\n\t\t$SysApplication = \\Javan\\Dynaflow\\Domain\\Model\\SysApplication::find($id);\n\t\t$form = \\FormBuilder::create('Javan\\Dynaflow\\FormBuilder\\SysApplicationForm', [\n \t'method' => 'POST',\n \t'url' => 'sysapplication/update/'.$id,\n \t'model' => $SysApplication,\n \t'data' => [ 'flow_id' => $SysApplication->flow_id]\n \t]);\n\t\treturn View::make('dynaflow::sysapplication.form', compact('form', 'SysApplication'));\n\t}", "public function editAction() {\n\t\t$id = (int) $this->_getParam('id');\n\t\t$modelName = $this->_getParam('model');\n\t\t\n\t\t$model = Marcel_Backoffice_Model::factory($modelName);\n\t\t$item = $model->find($id)->current();\n\t\tif (!$item) {\n\t\t\t$item = $model->createRow();\n\t\t}\n\t\t$form = $item->getForm();\n\t\tif ($this->_request->isPost()) {\n\t\t\t$newId = $form->populate($this->_request->getPost())->save();\n\t\t\tif ($newId) {\n\t\t\t\t$this->_helper->flashMessenger('Saved successfully!');\n\t\t\t\t$this->_helper->redirector('edit', null, null, array('id' => $newId, 'model' => $modelName));\n\t\t\t}\n\t\t}\n\t\t$this->view->form = $form;\n\t\t$this->view->messages = $this->_helper->flashMessenger->getMessages();\n\t}", "public function edit($id)\n {\n return view('models::edit');\n }", "public function edit()\n {\n return view('home::edit');\n }", "public function editAction()\n {\n $id = $this->params()->fromRoute('id');\n $entity = $this->entityManager->find(Entity\\CourtClosing::class, $id);\n if (! $entity) {\n // to do: deal with it\n }\n $form = $this->getForm('update');\n $form->bind($entity);\n if ($this->getRequest()->isPost()) {\n return $this->post();\n }\n\n return new ViewModel(['form' => $form]);\n }", "public function editAction($id)\n {\n $entity = $this->getManager()->find($id);\n\n $breadcrumbs = $this->get(\"white_october_breadcrumbs\");\n $breadcrumbs->addItem('Inicio', $this->get('router')->generate('admin.homepage'));\n $breadcrumbs->addItem($this->entityDescription, $this->get(\"router\")->generate(\"admin.$this->entityName.index\"));\n $breadcrumbs->addItem('Editar');\n\n if (!$entity) {\n throw $this->createNotFoundException('No se ha encontrado el elemento');\n }\n\n $form = $this->getForm($entity);\n\n return $this->render('AdminBundle:Default:edit.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n 'metadata' => $this->getMetadata()\n ));\n }", "public function edit()\n {\n return view('user::edit');\n }", "public function edit()\n {\n return view('user::edit');\n }", "public function edit(Form $form)\n {\n return view('admin.forms.edit', compact('form'));\n }", "public function editAction()\n {\n $form = MediaForm::create($this->get('form.context'), 'media');\n $media = $this->get('media_manager.manager')->findOneById($this->get('request')->get('media_id'));\n \n $form->bind($this->get('request'), $media);\n \n return $this->render('MediaManagerBundle:Admin:form.html.twig', array('form' => $form, 'media' => $media));\n }", "public function editAction($id) {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('CdlrcodeBundle:Question')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Question entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('CdlrcodeBundle:Question:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return view('consultas::edit');\n }", "public function edit(DirectorFormBuilder $form, $id)\n {\n return $form->render($id);\n }", "public function edit()\n {\n return view('dashboard::edit');\n }", "public function edit($id){\n $rfid = Rfid::find($id);\n\n //load form view\n return view('rfids.edit', ['rfid' => $rfid]);\n }", "public function edit($id)\n {\n\n // retrieve provider\n $provider = Provider::findOrFail($id);\n\n // return form with provider\n return view('backend.providers.form')->with('provider', $provider);\n }", "public function edit(Question $question)\n {\n $this->employeePermission('application' , 'edit');\n $question->chooses;\n $action = 'edit';\n return view('admin.setting.question_form', compact('action' , 'question'));\n }", "public function edit() {\n return view('routes::edit');\n }", "public function edit($id)\n {\n $this->data['product'] = Product::find($id);\n $this->data['category'] = Category::arrForSelect();\n $this->data['title'] = \" Update Prouct Details\";\n $this->data['mode'] = \"edit\";\n\n return view('product.form', $this->data);\n }", "public function edit(ClueEnFormBuilder $form, $id): Response\n {\n return $form->render($id);\n }", "public function editAction($id)\n {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('BaseBundle:Feriado')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Feriado entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('BaseBundle:Feriado:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return view('cataloguemodule::edit');\n }", "public function edit($articulo_id)\n {\n $titulo = \"Editar\";\n return View(\"articulos.formulario\",compact('titulo','articulo_id'));\n }", "public function edit($id)\n {\n $resources = User::find(session('usuario_id'))->resources;\n $languages = Language::pluck('name', 'id');\n $types = Type::pluck('name', 'id');\n $method = 'PATCH';\n\n $recurso = Resource::find($id);\n $url = \"/resource/$recurso->id\";\n\n return view('resources.resources', compact('resources', 'languages', 'types', 'method', 'url', 'recurso'));\n }", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit]);\n }", "public function displayEditForm(Employee $employee){\n return view('employee.displayEditForm',['employee'=>$employee]);\n }", "public function edit()\n {\n return view('website::edit');\n }", "public function edit()\n {\n return view('inventory::edit');\n }", "public function edit()\n {\n return view('initializer::edit');\n }", "public function editAction()\n {\n View::renderTemplate('Profile/edit.html', [\n 'user' => $this->user\n ]);\n }", "public function edit($id)\n {\n return view('backend::edit');\n }", "public function edit($id)\n {\n //dd($id);\n $familiaPrograma= FamiliaPrograma::findOrFail($id);\n return view('familiasPrograma.edit', compact('familiaPrograma'));\n }", "public function edit($id)\n {\n return view('crm::edit');\n }", "public function edit($id)\n {\n return view('crm::edit');\n }", "public function edit($id)\n {\n $user = User::where('id', $id)->first();\n\n\n return view('users.forms.update', compact('user'));\n }", "public function editAction($id)\n\t{\n\t\t$school = School::find( $id );\n\t\t$this->render( View::make( 'schools/form' , array(\n\t\t\t'title' => sprintf( 'Modifier \"%s\"', $school->name ),\n\t\t\t'entity' => $school\n\t\t) ) );\n\t}", "public function edit(Question $question)\n {\n $edit = TRUE;\n return view('questionForm', ['question' => $question, 'edit' => $edit ]);\n }", "public function edit(Person $person) {\n\t\t$viewModel = new PersonFormViewModel();\n\t\treturn view('person.form', $viewModel);\n\t}", "public function edit($id)\n {\n \t$product = Product::find($id);\n \treturn view('admin.products.edit')->with(compact('product')); // formulario de actualizacion de datos del producto\n }", "public function edit_person($person_id){\n \t$person = Person::find($person_id);\n \treturn view('resource_detail._basic_info.edit',compact('person'));\n }", "public function edit($id)\n {\n $professor = $this->repository->find($id);\n return view('admin.professores.edit',compact('professor'));\n }", "public function edit($id)\n {\n $data = Restful::find($id);\n return view('restful.edit', compact('data'));\n }", "public function editAction($id)\n {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('MedecinIBundle:Fichepatient')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find Fichepatient entity.');\n }\n\n $editForm = $this->createEditForm($entity);\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('MedecinIBundle:Fichepatient:edit.html.twig', array(\n 'entity' => $entity,\n 'edit_form' => $editForm->createView(),\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function edit($id)\n {\n return $this->form->render('mconsole::personal.form', [\n 'item' => $this->person->query()->with('uploads')->findOrFail($id),\n ]);\n }", "public function edit($id)\n\t{\n\t\t // get the project\n $project = Project::find($id);\n\n // show the edit form and pass the project\n return View::make('logicViews.projects.edit')->with('project', $project);\n\t}" ]
[ "0.78550774", "0.7692893", "0.7273195", "0.7242132", "0.7170847", "0.70622855", "0.7053459", "0.6982539", "0.69467914", "0.6945275", "0.6941114", "0.6928077", "0.69019294", "0.68976134", "0.68976134", "0.6877213", "0.68636996", "0.68592185", "0.68566656", "0.6844697", "0.68336326", "0.6811471", "0.68060875", "0.68047357", "0.68018645", "0.6795623", "0.6791791", "0.6791791", "0.6787701", "0.67837197", "0.67791027", "0.677645", "0.6768301", "0.6760122", "0.67458534", "0.67458534", "0.67443407", "0.67425704", "0.6739898", "0.6735328", "0.6725465", "0.6712817", "0.6693891", "0.6692419", "0.6688581", "0.66879624", "0.6687282", "0.6684741", "0.6682786", "0.6668777", "0.6668427", "0.6665287", "0.6665287", "0.66610634", "0.6660843", "0.66589665", "0.66567147", "0.66545695", "0.66527975", "0.6642529", "0.6633056", "0.6630304", "0.6627662", "0.6627662", "0.66192114", "0.6619003", "0.66153085", "0.6614968", "0.6609744", "0.66086483", "0.66060555", "0.6596137", "0.65950733", "0.6594648", "0.65902114", "0.6589043", "0.6587102", "0.65799844", "0.65799403", "0.65799177", "0.657708", "0.65760696", "0.65739626", "0.656931", "0.6567826", "0.65663105", "0.65660435", "0.65615267", "0.6561447", "0.6561447", "0.65576506", "0.655686", "0.6556527", "0.6555543", "0.6555445", "0.65552044", "0.65543956", "0.65543705", "0.6548264", "0.65475875", "0.65447706" ]
0.0
-1
Update the specified resource in storage.
public function update(CategoryRequest $request, int $id) { $this->categoryRepository->update($request, $id); return redirect('admin/category'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function updateShopifyResource() {\n $this->saving();\n $this->getShopifyApi()->call([\n 'URL' => API::PREFIX . $this->getApiPathSingleResource(),\n 'METHOD' => 'PUT',\n 'DATA' => [\n static::getResourceSingularName() => $this->shopifyData\n ]\n ]);\n }", "public function update(Request $request, Resource $resource)\n {\n $request->validate([\n 'name' => 'required',\n 'description' => 'required|string',\n 'file' => 'required|mimes:jpg,jpeg,png,doc,docx,pdf,ppt,txt',\n ]);\n\n $resource->update($request->all());\n\n if ( $request->hasFile('file') ) {\n $resource = 'resource-'.time().'.'.$request->file('file')->extension();\n $request->file->storeAs('resources', $resource,'public');\n $resource->file = $resource;\n }\n\n if ( $resource->save() ) {\n return redirect()->route('admin.resources.index')->with('success', 'Resource updated');\n } else {\n return redirect()->route('admin.resources.index')->with('error', 'Something went wrong');\n }\n }", "public function update(Request $request, Resource $resource)\n {\n //\n }", "public function updateStream($resource);", "public function update(Request $request, Storage $storage)\n {\n $storage->product_id = $request->product_id;\n $storage->amount = $request->amount;\n\n $storage->save();\n\n return redirect()->route('storages.index');\n }", "protected function updateImageResource($fileName, $imageId, $storage)\n {\n //Get image name and storage location for image\n $image = Image::where('id', '=', $imageId)->first();\n\n //Delete old image\n $this->deleteResource($image->name, $image->storage);\n\n //Store the new image\n $image->name = $fileName;\n $image->storage = $storage;\n\n $image->save();\n }", "public function update(Storage $storage, UpdateStorageRequest $request)\n {\n $this->storage->update($storage, $request->all());\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource updated', ['name' => trans('product::storages.title.storages')]));\n }", "public function update(StoreStorage $request, Storage $storage)\n {\n $storage->fill($request->all())->save();\n $request->session()->flash('alert-success', 'Запись успешно обновлена!');\n return redirect()->route('storage.index');\n }", "public function update_asset($id, Request $request){\n \t\tif(!Auth::user()){\n\t\t\treturn redirect('/');\n\t\t}\n \t\t$asset = Storage::find($id);\n \t\t$asset->name = $request->name;\n \t\t$asset->quantity = $request->quantity;\n \t\t$asset->category_id = $request->category;\n \t\tif($request->file('image') != null){\n\t\t\t$image = $request->file('image');\n\t\t\t$image_name = time(). \".\" . $image->getClientOriginalExtension();\n\t\t\t$destination = \"images/\";\n\t\t\t$image->move($destination, $image_name);\n\t\t\t$asset->image_url = $destination.$image_name;\n\t\t} \n\t\t$asset->save();\n\t\tsession()->flash('success_message', 'Item Updated successfully');\n\t\treturn redirect(\"/storage\");\n \t}", "public function update(Request $request, Flight $exercise, FlightResource $resource)\n {\n $request->validate([\n 'display_name' => 'required|string|max:100',\n 'file' => 'nullable|file|max:10240|mimes:pdf',\n 'uri' => 'nullable|url|max:255',\n ]);\n\n if ($resource->type === 'file' && $request->file('file')) {\n Storage::drive('public')->delete($resource->resource);\n $resource->resource = $request->file('file')->store('smartcars/exercises/resources', ['disk' => 'public']);\n } elseif ($resource->type === 'uri' && $request->input('uri')) {\n $resource->resource = $request->input('uri');\n }\n\n $resource->save();\n\n return redirect()->route('adm.smartcars.exercises.resources.index', $exercise)\n ->with('success', 'Resource edited successfully.');\n }", "public function update(Request $request, $id)\n {\n $validator = Validator::make($request->all(), [\n 'title' => 'required|string',\n 'content' => 'required|string',\n 'mentoring_area_id' => 'required|integer',\n 'featured_image_uri' => 'string',\n ]);\n\n if ($validator->fails()) {\n return APIHandler::response(0, $validator->errors(), 400);\n }\n \n $resource = Resource::find($id);\n $resource->title = $request->get('title');\n $resource->content = $request->get('content');\n $resource->featured_image_uri = $request->get('featured_image_uri');\n $resource->updated_at = \\Carbon\\Carbon::now();\n $resource->mentoring_area_id = $request->get('mentoring_area_id');\n $resource->save();\n $data['resource'] = $resource;\n return APIHandler::response(1, \"Resource has been updated\");\n }", "protected function updateVideoResource($fileName, $videoId, $storage, $premium=1)\n {\n //Get video name and storage location for video\n $video = Video::where('id', '=', $videoId)->first();\n\n //Check the storage medium\n if($storage == 'vimeo' || $storage == 'youtube')\n {\n $video->name = $fileName;\n $video->storage = $storage;\n $video->premium = $premium;\n $video->save();\n }\n else\n {\n if($video['storage'] == 'local' || $video['storage'] == 's3')\n {\n //Delete old video\n $this->deleteResource($video->name, $video->storage);\n }\n \n //Store the new video\n $video->name = $fileName;\n $video->storage = $storage;\n $video->premium = $premium;\n $video->save();\n }\n }", "public function put($resource, $with=[]){\n return $this->fetch($resource, self::PUT, $with);\n }", "public function update($id, $resource) {\n SCA::$logger->log(\"update resource\");\n return $this->orders_service->update($id, $resource);\n }", "public function update($path);", "public function update($id, $resource)\n {\n SCA::$logger->log(\"Entering update()\");\n //check whether it is an sdo or an xml string.\n if ($resource instanceof SDO_DataObjectImpl) {\n //if the thing received is an sdo convert it to xml\n if ($this->xml_das !== null) {\n $xml = SCA_Helper::sdoToXml($this->xml_das, $resource);\n } else {\n throw new SCA_RuntimeException(\n 'Trying to update a resource with SDO but ' .\n 'no types specified for reference'\n );\n }\n } else {\n $xml = $resource;\n }\n\n $slash_if_needed = ('/' === $this->target_url[strlen($this->target_url)-1])?'':'/';\n\n $handle = curl_init($this->target_url.$slash_if_needed.\"$id\");\n curl_setopt($handle, CURLOPT_HEADER, false);\n curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($handle, CURLOPT_CUSTOMREQUEST, \"PUT\");\n curl_setopt($handle, CURLOPT_POSTFIELDS, $xml);\n\n //replace with Content-Type: atom whatever\n $headers = array(\"User-Agent: SCA\",\n \"Content-Type: text/xml;\",\n \"Accept: text/plain\");\n curl_setopt($handle, CURLOPT_HTTPHEADER, $headers);\n\n $result = curl_exec($handle);\n\n $response_http_code = curl_getinfo($handle, CURLINFO_HTTP_CODE);\n\n curl_close($handle);\n\n $response_exception = $this->buildResponseException($response_http_code, '200');\n\n if ($response_exception != null) {\n throw $response_exception;\n } else {\n //update does not return anything in the body\n return true;\n }\n }", "public function update(Request $request, $id)\n {\n $this->validate($request, [\n 'name' => 'required',\n 'link' => 'required',\n 'description' => 'required'\n ]);\n\n $resource = Resource::find($id);\n $resource->name = $request->name;\n $resource->type_id = $request->type_id;\n $resource->has_cost = ($request->has('has_cost')) ? 1 : 0;\n $resource->language_id = $request->language_id;\n $resource->link = $request->link;\n $resource->description = $request->description;\n $resource->tags = '';\n\n $resource->save();\n //return back()->with('success', 'Recurso actualizado satisfactoriamente');\n return redirect('/resource')->with('success', 'Recurso actualizado satisfactoriamente');\n }", "public function update(Request $request, $id)\n {\n $oldProduct = Product::findOrFail($id);\n $data = $request->all();\n if(isset($data['img'])){\n // $file = $request->file('photo');\n // return $file;\n $imgName = time().'.'.$request->img->extension();\n $data['img'] = $imgName;\n // Storage::putFile('spares', $file);\n $path = $request->img->storeAs('public/uploads', $imgName); //in Storage\n\n //delete old file\n if($oldProduct->img != 'product-default.png'){\n Storage::delete(\"public/uploads/\".$oldProduct->img);\n // return 'deleted';\n }\n \n }else{\n $data['img'] = $oldProduct->img;\n }\n $oldProduct->update($data);\n return redirect()->route('product.index'); \n\n }", "public function update($request, $id) {\n\t\t\t$image = $request['photo'];\n\t\t\tif($image !== null) {\n\t\t\t\t$name = time().'.' . explode('/', explode(':', substr($image, 0, strpos($image, ';')))[1])[1];\n\t\t\t\t\\Image::make($request['photo'])->save(public_path('storage/products/').$name);\n\t\t\t\t$request['photo'] = $name;\n\t\t\t} else {\n\t\t\t\t$currenPhoto = Product::all()->where('id', $id)->first();\n\t\t\t\t$request['photo'] = $currenPhoto->photo;\n\t\t\t}\n return $this->product->update($id, $request);\n\t}", "public function updateStream($path, $resource, Config $config)\n {\n }", "public function edit(Resource $resource)\n {\n //\n }", "public function updateResourceIndex(&$resource) {\n if ($this->connector != null) {\n\n // STEP 1: Update or insert this resource as a node:\n $this->logger->addDebug(\"Updating/Inserting Node into Neo4J database\");\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id} }) SET a.title = {title}, a.version = {version}, a.href = {href}\n return a;\",\n [\n 'id' => $resource->getID(),\n 'version' => $resource->getVersion(),\n 'title' => $resource->getTitle(),\n 'href' => $resource->getLink()\n ]\n );\n\n // Check to see if anything was added\n $records = $result->getRecords();\n if (empty($records)) {\n // Must create this record instead\n $result = $this->connector->run(\"CREATE (n:Resource) SET n += {infos};\",\n [\n \"infos\" => [\n 'id' => $resource->getID(),\n 'version' => $resource->getVersion(),\n 'title' => $resource->getTitle(),\n 'href' => $resource->getLink()\n ]\n ]\n );\n }\n\n // STEP 2: Update or insert the resource's link to holding repository\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id} })-[r:HIRELATION]->()\n return r;\",\n [\n 'id' => $resource->getID(),\n ]\n );\n $records = $result->getRecords();\n if (!empty($records)) {\n // delete the one there so that we can add the correct one (just in case)\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id}})-[r:HIRELATION]->() delete r;\",\n [\n 'id' => $resource->getID()\n ]\n );\n\n }\n\n // If resource has a repository, then add a link\n if ($resource->getRepository() != null && $resource->getRepository()->getID() != null) {\n $this->connector->run(\"MATCH (a:Identity {id: {id1} }) MATCH (b:Resource {id: {id2} }) CREATE (b)-[r:HIRELATION]->(a);\",\n [\n 'id1' => (string) $resource->getRepository()->getID(),\n 'id2' => $resource->getID()\n ]);\n }\n }\n }", "public function update($data) {}", "public function update($data) {}", "public function putStream($resource);", "public function update(Request $request, NebulaResource $resource, $item): RedirectResponse\n {\n $this->authorize('update', $item);\n\n $validated = $request->validate($resource->rules(\n $resource->editFields()\n ));\n\n $resource->updateQuery($item, $validated);\n\n $this->toast(__(':Resource updated', [\n 'resource' => $resource->singularName(),\n ]));\n\n return redirect()->back();\n }", "public function saveShopifyResource() {\n if (is_null($this->getShopifyId())) { // if there is no id...\n $this->createShopifyResource(); // create a new resource\n } else { // if there is an id...\n $this->updateShopifyResource(); // update the resource\n }\n }", "public function update($entity);", "public function update($entity);", "public function setResource($resource);", "public function updateStream($path, $resource, Config $config)\n {\n return $this->upload($path, $resource, $config);\n }", "public function isUpdateResource();", "public function update(Request $request, $id)\n {\n $device = Device::findOrFail($id);\n $device->fill($request->all());\n if ($request->hasFile('icon')) {\n if ($device->hasMedia('icon')) {\n $device->deleteMedia($device->getFirstMedia('icon'));\n }\n $device->addMediaFromRequest('icon')->toMediaCollection('icon');\n }\n $device->save();\n return new DeviceResource($device);\n }", "public function update(Request $request, $id)\n {\n //\n $product = Product::findOrFail($id);\n \n $product->update($request->all());\n \n $file = $request->file('url_image')->move('upload', $request->file('url_image')->getClientOriginalName());\n\n Product::where('id',$id)->update(['url_image'=>$file]);\n \n \\Session::flash('flash_message', 'Edit product successfully.'); \n \n //cũ : return redirect('articles');\n return redirect()->route('products.index');\n }", "public function store($data, Resource $resource);", "public function update(Request $request, $id)\n {\n \n $product = Product::find($id);\n\n\n $product->fill($request->all())->save();\n\n //Verificamos que tenemos una imagen\n if($request->file('photo_1')){\n\n\n //En caso de tenerla la guardamos en la clase Storage en la carpeta public en la carpeta image.\n $path = Storage::disk('public')->put('photo_1',$request->file('photo_1'));\n\n //Actualizamos el Post que acabamos de crear\n $product->fill(['photo_1' => asset($path)])->save();\n\n }\n\n\n return redirect()->route('products.index')->with('info', 'Producto actualizado exitosamente!');\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n\n if (\\Input::hasFile('image')) {\n $this->imgsave($request, $product);\n }\n\n\n if (!empty($request->input('tags'))) {\n $product->tags()->sync($request->input('tags'));\n } else {\n $product->tags()->detach();\n }\n\n $product->update($request->all());\n\n return redirect()->to('dashboard/product')->with('message', 'update success');\n }", "public function put($resource_path, array $variables = array()) {\n return $this->call($resource_path, $variables, 'PUT');\n }", "public function update($id)\n {\n /* Check if logged in user is authorized to make this request */\n $this->authorizeAction();\n\n if (method_exists($this, 'updateValidations')) {\n $this->request->validate($this->updateValidations());\n }\n\n /* Get the specified resource */\n $resource = $this->model::findOrFail($id);\n\n /* Update the specified resource */\n $resource->update(Input::all());\n\n /* Redirect back */\n return redirect()->back()\n ->with(\n 'info',\n Lang::has($this->name . '.resource-updated') ?\n $this->name . '.resource-updated' :\n 'messages.alert.resource-updated'\n );\n }", "public function putResponse($request)\n {\n $idSearched = $this->searcher->searchResourceIndex(\n $request, \n $this->db[$request['resource']]\n );\n if ($idSearched) {\n $resource = $this->db[$request['resource']][$idSearched];\n $bodyInput = json_decode($this->standardInput, true);\n $resource = BodyRequest::canApplyBody($bodyInput);\n $resource['id'] = (int)$request['param'];\n foreach($resource as $key => $value) {\n $this->db[$request['resource']][$idSearched][$key] = $value;\n }\n file_put_contents(DB_PATH, json_encode($this->db));\n }\n }", "public function update(Storedataset $request, dataset $dataset){\n $dataset->title = $request->input('title');\n $dataset->caption = $request->input('caption');\n $dataset->file_url = $request->input('file_url');\n $dataset->type = $request->input('type');\n $dataset->status = $request->input('status');\n $dataset->publication_id = $request->input('publication_id');\n\n $dataset->save();\n\n return redirect()->route('datasets.show', ['dataset' => $dataset]);\n }", "public function update(Request $request, $id)\n\n {\n ResourceManagement::findOrFail($id);\n $constraints = [\n 'title' => 'required|max:100',\n 'url'=> 'required|max:191',\n 'content' => 'required'\n ];\n\n $input = [\n 'title' => $request['title'],\n 'url' => $request['url'],\n 'content' => $request['content'],\n 'type' => $request['type'],\n 'level' => $request['level'],\n 'user_id' => $request['user']\n ];\n// $this->validate($input, $constraints);\n ResourceManagement::where('id', $id)\n ->update($input);\n\n return redirect()->intended('/resource-management');\n }", "public function update(Request $request, $id)\n {\n $this->validate($request, [\n 'title' => 'required',\n 'description' => 'required|string',\n 'price' => 'required|numeric',\n 'reference'=>'required'\n ]);\n \n $product = Product::find($id);\n $product->update($request->all());\n \n $im = $request->file('picture');\n \n if (!empty($im)) {\n \n $link = $request->file('picture')->store('images');\n \n \n $product->update([\n 'url_image' => $link,\n ]);\n } \n //dump($request->all());\n return redirect()->route('product.index')->with('message', 'Article modifié avec succès');\n }", "public function update(StoreOrUpdateAsset $request, Asset $asset)\n {\n if (Storage::exists($asset->path) && !Storage::delete($asset->path)) {\n abort(500);\n }\n\n $file = $request->file('file');\n $path = $file->store('assets');\n\n if (!$path) {\n abort(500);\n }\n\n // We wonder if we should delete the old file or not...\n\n $asset->name = $file->getClientOriginalName();\n $asset->size = $file->getSize();\n $asset->type = $file->getMimeType();\n $asset->path = $path;\n\n if ($asset->save()) {\n flash('The asset has been saved.')->success();\n } else {\n abort(500);\n }\n\n return redirect('/admin/assets');\n }", "public function update(FoodRecipeRequest $request, $id)\n {\n $foodRecipe = FoodRecipe::with('ingredients','cookingProcesses')->findOrFail($id);\n if ($request->input('name')!= null)\n $foodRecipe->name = $request->input('name');\n if ($request->input('detail')!= null)\n $foodRecipe->detail = $request->input('detail');\n if($request->file('photo') != null) {\n $old_file = $foodRecipe->photo;\n if($old_file != null){\n $path = public_path().'/storage/'.$old_file;\n File::delete($path);\n }\n $file = $request->file('photo');\n $name = '/foodRecipe/' . Carbon::now()->format(\"dnY-Hisu\") . \".\" . $file->extension();\n $file->storePubliclyAs('public', $name);\n $foodRecipe->photo = $name;\n }\n $foodRecipe->save();\n return new FoodRecipeResource($foodRecipe);\n }", "public function update(StorageTypeRequest $request, $id)\n {\n try {\n $this->service->updateStorageType($request, $id);\n return $this->NoContent();\n } catch (EntityNotFoundException $e) {\n \\Log::error($e->getMessage());\n return $this->NotFound($e->getMessage());\n } catch(\\QueryException $e) {\n \\Log::error($e->getMessage());\n return $this->ServerError();\n } catch(Exception $e) {\n \\Log::error($e->getMessage());\n return $this->ServerError();\n }\n }", "public function update(Request $request, $id)\n {\n //validation\n $this->validate(request(),[\n 'image' => 'image'\n ]);\n\n $slider = HomeSliders::find($id);\n \n $slider->link = request('link');\n\n //get old image to delete if updated\n $oldImage = request('oldImage');\n //get the new image\n $NewImage=$request->file('image');\n\n if($NewImage)\n {\n $filenameToStore= helpers::updatePhoto('image','homeSliders',$request);\n $slider->image=$filenameToStore;\n\n Storage::delete('public/Images/homeSliders/'.$oldImage);\n }\n\n $slider->save();\n\n Alert::success(config('app.name'), trans('messages.Updated Successfully') );\n return redirect()->route('admin.homeSlider',$slider->type);\n }", "public function update(Qstore $request, $id)\n {\n //\n }", "public function update(IEntity $entity);", "protected function performUpdate(): bool\n {\n // Abort if resource does not support update operations\n if (!$this->isUpdatable()) {\n throw new UnsupportedOperation(sprintf('API does not support update operation for %s resources', $this->resourceNameSingular()));\n }\n\n $id = $this->id();\n $prepared = $this->prepareBeforeUpdate($this->toArray());\n\n $payload = [\n $this->resourceNameSingular() => $prepared\n ];\n\n $response = $this\n ->request()\n ->put($this->endpoint($id), $payload);\n\n // Extract and (re)populate resource (if possible)\n // Note: Unlike the \"create\" method, Redmine does NOT\n // appear to send back a full resource when it has been\n // successfully updated.\n $this->fill(\n $this->decodeSingle($response)\n );\n\n return true;\n }", "public function update($request, $id);", "function put($resource, $data = null) {\r\n\t\t\r\n\t\tif(isset($data)) {\r\n\t\t\t$this->request_body = $data;\r\n\t\t}\r\n\r\n\t\t// make the call chief\r\n\t\t$this->exec ( \"PUT\", '/' . $resource );\r\n\r\n\t\t// check the request status\r\n\t\tif($this->status_code != 200){\r\n\t\t\t$this->Logger->error(\r\n\t\t\t\tsprintf(\r\n\t\t\t\t\t'GET Call for resource \\'%s\\' Failed.\r\n\t\t\t\t\tStatus: %d,\r\n\t\t\t\t\tRequest: %s\r\n\t\t\t\t\tAPI Error Message: \r\n\t\t\t\t\t%s',\r\n\t\t\t\t\t$resource,\r\n\t\t\t\t\t$this->status_code,\r\n\t\t\t\t\t$this->request_body_raw,\r\n\t\t\t\t\t$this->response_body\r\n\t\t\t\t)\r\n\t\t\t);\r\n\t\t\tthrow new Exception($this->response_body);\r\n\t\t} else {\r\n\t\t\treturn $this->response_parsed;\r\n\t\t}\r\n\t}", "public function updateEntities($resource)\n {\n $json = [\n 'resource' => $resource,\n ];\n $request = $this->createRequest('PUT', '/entities', ['json' => $json]);\n $response = $this->send($request);\n return $response;\n }", "public function updateStream($path, $resource, Config $config)\n {\n return $this->writeStream($path, $resource, $config);\n }", "public function update(Request $request, $id)\n {\n\n $product = Product::findOrFail($id);\n $product->name = $request['name'];\n $product->price = $request['price'];\n $product->stock = $request['stock'];\n $product->description = $request['description'];\n\n $file = $request->file('image');\n $fileName = $file->getClientOriginalName();\n if($fileName != $product->image){\n $request->file('image')->move('images/',$fileName);\n $product->image = $fileName;\n }\n\n $product->save();\n\n return redirect()->route('products.show',\n $product->id)->with('flash_message',\n 'Article, '. $product->name.' updated');\n }", "protected function handleUpdate()\n {\n $resource = $this->argument('resource');\n $action = $this->option('action');\n $startPage = (int)$this->option('startPage');\n $perPage = (int)$this->option('perPage');\n\n try {\n $harvest = Harvest::where('resource', $resource)->where('action', $action)->firstOrFail();\n } catch (\\Exception $e) {\n $this->info('There is no existing action for updating ' . ucwords($action) . ' ' . ucwords($resource) . '.');\n exit('Nothing was updated.');\n }\n\n $options = [\n 'startPage' => $startPage,\n 'perPage' => $perPage,\n 'lastRun' => $harvest->last_run_at\n ];\n\n // If a lastRun was given use that\n // OR if this has never been run before use 2001-01-01\n if (!empty($this->option('lastRun'))) {\n $options['lastRun'] = new Carbon($this->option('lastRun'));\n } elseif (is_null($options['lastRun'])) {\n $options['lastRun'] = new Carbon('2001-01-01');\n }\n\n $job = new UpdateResourceJob(\n $harvest,\n $options\n );\n\n $message = 'Updating ' . $action . ' ' . $resource . ' ' . $perPage . ' at a time';\n if (isset($lastRun)) {\n $message .= ' with entries updated since ' . $lastRun->format('r');\n }\n $this->info($message);\n $this->dispatch($job);\n }", "abstract public function put($data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function update($id, $data);", "public function testUpdateSupplierUsingPUT()\n {\n }", "public function update(Request $request, $id)\n {\n $storageplace = Storageplace::findOrFail($id);\n $storageplace->update($request->only(['storageplace']));\n return $storageplace;\n }", "public function updateRelatedImage(Request $request, $id)\n {\n // Delete display image in Storage\n Validator::make($request->all(), ['photos' => \"required|file|image|mimes:jpg,png,jpeg|max:5000\"])->validate();\n\n\n if ($request->hasFile(\"photos\")) {\n\n $photo = ProductsPhoto::find($id);\n $imageName = $photo->photos;\n $exists = Storage::disk('local')->exists(\"public/product_images/\" . $photo->photos);\n\n //delete old image\n if ($exists) {\n Storage::delete('public/product_images/' . $imageName);\n }\n\n //upload new image\n $ext = $request->file('photos')->getClientOriginalExtension(); //jpg\n\n $request->photos->storeAs(\"public/product_images/\", $imageName);\n\n $arrayToUpdate = array('photos' => $imageName);\n DB::table('products_photos')->where('id', $id)->update($arrayToUpdate);\n\n return redirect()->route(\"adminDisplayRelatedImageForm\", ['id' => $photo->product_id]);\n } else {\n\n $error = \"NO Image was Selected\";\n return $error;\n }\n }", "public function update(Request $request, $id)\n {\n $skill = Skill::findOrFail($id);\n\n $skill->skill = $request->skill;\n\n if ($request->hasFile('image')) {\n \\Cloudder::upload($request->file('image'));\n $c=\\Cloudder::getResult();\n // $image = $request->file('image');\n // $filename = time() . '.' . $image->getClientOriginalExtension();\n // $location = public_path('images/' . $filename);\n // Image::make($image)->save($location);\n\n $skill->image = $c['url'];\n }\n\n $skill->save();\n\n Session::flash('success', 'Successsfully updated your skill!');\n return redirect()->route('skills.index');\n }", "public function updateStream($path, $resource, Config $config = null)\n {\n $contents = stream_get_contents($resource);\n\n return $this->write($path, $contents, $config);\n }", "public abstract function update($object);", "public static function update($id, $file)\n {\n Image::delete($id);\n\n Image::save($file);\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n $image = $product->image;\n if($request->hasFile('image')){\n $image = $request->file('image')->store('files');\n \\Storage::delete($product->image);\n } \n $product->name = $request->get('name');\n $product->price = $request->get('price');\n $product->description = $request->get('description');\n $product->additional_info = $request->get('additional_info');\n $product->category_id = $request->get('category');\n $product->subcategory_id = $request->get('subcategory');\n $product->image = $image;\n $product->save();\n return redirect()->back();\n }", "public function update(Request $request, $id)\n {\n $sli=Slider::find($id);\n $sli->sort_order=$request->input('sort_order');\n $image = $request->file('slider');\n if($image == ''){\n $image = $sli->slider;\n }else{\n $image = base64_encode(file_get_contents($request->file('slider')));\n }\n $sli->slider = $image;\n $sli->save();\n return redirect()->back();\n }", "public function update(ProductRequest $request, $id)\n {\n $input = Product::find($id);\n $data = $request->all();\n if ($file = $request->file('product_photo')){\n $name = time().$file->getClientOriginalName();\n $file->move('product_image',$name);\n $data['product_photo']=$name;\n// $input->update($data);\n }\n $input->update($data);\n return redirect('admin/products/');\n }", "public function update(Request $request, $id)\n {\n $volume = $this->findVolume($id);\n\n if(count($volume) > 0) {\n $volume->str_volume_name = $request->str_volume_name;\n\n $volume->save();\n }\n\n return response()\n ->json(\n array(\n 'message' => 'Volume is successfully updated.',\n 'volume' => $volume\n ),\n 201\n );\n }", "public function update(Request $request, $id)\n {\n $product = ProductModel::find($id);\n $product->name = $request->name;\n $product->description = $request->description;\n $product->price = $request->price;\n $product->stock = $request->stock;\n\n if($request->image!=null){\n $imageName = time().'.'.$request->image->extension();\n $request->image->move(public_path('images'), $imageName);\n $product->image = \"/images/\".$imageName;\n }\n $product->save();\n return redirect(\"/products/index\")->with('success','Product has been updated');\n }", "public function update()\n {\n $accessory = Accessories::find(request('id'));\n\n if ($accessory == null) {\n return response()->json([\"error\" => \"aksesuaras nerastas\"], 404);\n }\n\n $this->validateData();\n $path = $accessory->src;\n\n if (request()->hasFile('src')) {\n\n if (Storage::disk('public')->exists($accessory->src)) {\n Storage::disk('public')->delete($accessory->src);\n }\n $path = request()->file('src')->store('accessoriesImages', 'public');\n }\n\n $accessory->update(array_merge($this->validateData(), ['src' => $path]));\n\n return response()->json([\"data\" => $accessory], 200);\n }", "public function update(ProductStoreRequest $request,$id)\n {\n $data = $request->validated();\n $product = Product::where('id',$id);\n $product->update($data);\n return response(\"Producto actualizado con éxito\",200);\n }", "public function update($entity)\n {\n \n }", "public function updateStream($path, $resource, Config $config)\n {\n return $this->write($path,stream_get_contents($resource),$config);\n }", "public function update($id, Request $request)\n {\n date_default_timezone_set('Asia/Taipei');\n $data = $request->all();\n $dbData = Product::find($id);\n $myfile = Storage::disk('local');\n if ($request->hasFile('img')) {\n $file = $request->file('img');\n $path = $myfile->putFile('public', $file);\n $data['img'] = $myfile->url($path);\n File::delete(public_path($dbData->img));\n }\n $dbData->update($data);\n\n if ($request->hasFile('imgs')) {\n // $this->fetchDestroyByProdId($id);\n $localS = Storage::disk('local');\n\n $fileS = $request->file('imgs');\n $imgs = [];\n foreach ($fileS as $i) {\n $pathS = $localS->putFile('public', $i);\n $imgs[] = $localS->url($pathS);\n }\n foreach ($imgs as $img) {\n ProductImg::create([\n 'product_id' => $id,\n 'img' => $img\n ]);\n }\n }\n\n return redirect()->route('admin');\n }", "public function update(Request $request, Product $product)\n { $remfile= $product->image;\n if($request->filep){\n $product->image=$request->filep;\n File::delete(storage_path('app/public/products/'.$remfile));\n }else{\n $product->image=$remfile;\n }\n //rmdir(storage_path('app/public/products/'.$remfile));\n $product->name = $request->name;\n $product->description = $request->description;\n $product->price = $request->price;\n $product->save();\n sleep(3);\n toast('Details updated successfully','info');\n return redirect('/products');\n }", "public function update($id, $input);", "public function update(ProductRequest $request,int $id): ProductResource\n {\n $attributes = $request->only('supplier_id', 'name', 'warehouses');\n\n return new ProductResource($this->productRepository->update($id, $attributes)); }", "public function update(Request $request, $id)\n {\n $slider=new Slider;\n $slider=$slider::find($id);\n \n \n if($file =$request->file('slider')){\n if(Storage::delete('public/slider/'.$slider->slider)){\n\n //Get file original name//\n \n$original_name=$file->getClientOriginalName();\n\n //Get just the file name\n$filename=pathinfo($original_name,PATHINFO_FILENAME);\n\n//Create new file name\n$name=$filename.'_'.time().'.'.$file->getClientOriginalExtension();\n\n $destination='public/slider';\n $path=$request->slider->storeAs($destination,$name);\n $slider->slider=$name;\n $slider->save();\n return redirect('Admin/slider');\n\n }\n }\n}", "public function update(Request $request, $id)\n {/* dd($request->all()); */\n $acheivePic = $this->acheiveRepo->find($id);\n $acheive = $request->except('_method', '_token', 'photo', 'ar', 'en');\n $acheiveTrans = $request->only('ar', 'en');\n\n if ($request->hasFile('icon')) {\n // Delete old image first.\n $oldPic = public_path() . '/images/acheives/' . $acheivePic->icon;\n File::delete($oldPic);\n\n // Save the new one.\n $image = $request->file('icon');\n $imageName = $this->upload($image, 'acheives');\n $acheive['icon'] = $imageName;\n }\n\n $this->acheiveRepo->update($id, $acheive, $acheiveTrans);\n\n return redirect('admin-panel/widgets/acheive')->with('updated', 'updated');\n }", "public function update(Request $request, $id)\n {\n $data = $request->all();\n extract($data);\n\n $productVarient = new ProductVariant();\n $productVarient = $productVarient->find($id);\n $productVarient->vendor_id = auth()->user()->id;\n $productVarient->description = $prod_desc;\n $productVarient->price = $price;\n\n if(request()->hasFile('photo')){\n $image = request()->file('photo')->getClientOriginalName();\n $imageNewName = auth()->user()->id.'-'.$image;\n $file = request()->file('photo');\n $file->storeAs('images/product',$imageNewName, ['disk' => 'public']);\n $productVarient->image = $imageNewName;\n }\n \n $productVarient->save();\n\n return back()->withStatus(__('Product successfully updated.'));\n }", "public function update(Request $request, $id)\n {\n //if upload new image, delete old image\n $myfile=$request->old_photo;\n if($request->hasfile('photo'))\n {\n $imageName=time().'.'.$request->photo->extension();\n $name=$request->old_photo;\n\n if(file_exists(public_path($name))){\n unlink(public_path($name));\n $request->photo->move(public_path('backendtemplate/truefalseimg'),$imageName);\n $myfile='backendtemplate/truefalseimg/'.$imageName;\n }\n }\n //Update Data\n $truefalsequestion=TrueFalseQuestion::find($id);\n $truefalsequestion->name=$request->name;\n $truefalsequestion->photo=$myfile;\n $truefalsequestion->answer = $request->answer;\n $truefalsequestion->question_id = $request->question;\n $truefalsequestion->save();\n\n //Redirect\n return redirect()->route('truefalsequestions.index'); \n }", "public function update($id);", "public function update($id);", "private function update()\n {\n $this->data = $this->updateData($this->data, $this->actions);\n $this->actions = [];\n }", "public function put($path, $data = null);", "public function update(Request $request, $id)\n {\n $request->validate([\n 'path_image'=>'image',\n 'status'=>'required|in:0,1'\n ]);\n $slider=Slider::whereId($id)->first();\n if (is_null($slider)){\n return redirect()->route('sliders.index')->with('error','Slider does not exist');\n }\n try {\n if ($request->hasFile('path_image')){\n $file = $request->file('path_image');\n\n $image_path= $file->store('/sliders',[\n 'disk'=>'uploads'\n ]);\n Storage::disk('uploads')->delete($slider->image);\n\n $request->merge([\n 'image'=>$image_path,\n ]);\n }\n\n $slider->update( $request->only(['status','image']));\n return redirect()->route('sliders.index')->with('success','Updated successful');\n }catch (\\Exception $exception){\n return redirect()->route('sliders.index')->with(['error'=>'Something error try again']);\n\n }\n }", "public function update() {\n $this->accessory->update($this->accessory_params());\n\n if ($this->accessory->is_valid()) {\n $this->update_accessory_image($this->accessory);\n redirect('/backend/accessories', ['notice' => 'Successfully updated.']);\n } else {\n redirect(\n '/backend/accessories/edit',\n ['error' => $this->accessory->errors_as_string()],\n ['id' => $this->accessory->id]\n );\n }\n }", "public function update(Entity $entity);", "public function update(Request $request, $id)\n {\n $icon = SliderIcon::find($id);\n $data = $request->all();\n $data['active'] = $request->has('active') ? 1 : 0;\n if ($request->hasFile('img')) {\n if (Storage::disk('public')->exists(str_replace('storage', '', $icon->img))){\n Storage::disk('public')->delete(str_replace('storage', '', $icon->img));\n }\n $image = $request->file('img');\n $fileName = time().'_'.Str::lower(Str::random(5)).'.'.$image->getClientOriginalExtension();\n $path_to = '/upload/images/'.getfolderName();\n $image->storeAs('public'.$path_to, $fileName);\n $data['img'] = 'storage'.$path_to.'/'.$fileName;\n }\n $icon->update($data);\n return redirect()->route('slider_icons.index')->with('success', 'Данные преимущества обнавлены');\n }", "public function update() {\n\t $this->layout = false;\n\t \n\t //set default response\n\t $response = array('status'=>'failed', 'message'=>'HTTP method not allowed');\n\t \n\t //check if HTTP method is PUT\n\t if($this->request->is('put')){\n\t //get data from request object\n\t $data = $this->request->input('json_decode', true);\n\t if (empty($data)) {\n\t $data = $this->request->data;\n\t }\n\t \n\t //check if product ID was provided\n\t if (!empty($data['id'])) {\n\t \n\t //set the product ID to update\n\t $this->Player->id = $data['id'];\n\t if ($this->Player->save($data)) {\n\t $response = array('status'=>'success','message'=>'Product successfully updated');\n\t } else {\n\t $response['message'] = \"Failed to update product\";\n\t }\n\t } else {\n\t $response['message'] = 'Please provide product ID';\n\t }\n\t }\n\t \n\t $this->response->type('application/json');\n\t $this->response->body(json_encode($response));\n\n\t return $this->response->send();\n\t}", "public function update(Request $request, $id)\n {\n //validate incoming request\n $request->validate([\n 'name' => 'string|max:100|nullable',\n 'picture' => 'max:2000|mimes:jpeg,jpg,png,svg|nullable', //max size 2mb,\n 'total' => 'integer|min:0|nullable', //value must be > 0\n 'selling_price' => 'numeric|min:0|nullable',\n 'cost_price' => 'numeric|min:0|nullable',\n 'category_id' => 'integer|nullable'\n ]);\n\n try {\n $product = Auth::user()->store->product()->findorFail($id);\n } catch (ModelNotFoundException $e) {\n return response()->json([\n \"message\" => \"Forbidden\"\n ], 403);\n }\n\n //if category id isnt null\n if ($category_id = $request->category_id) {\n if (!$this->isCategoryIdValid($category_id))\n return response()->json([\n \"message\" => \"Category Id is not valid\"\n ], 422);\n else\n $product->category_id = $request->category_id;\n }\n\n //if uploaded file exist\n if ($picture = $request->file(\"picture\")) {\n //if product already has logo\n if ($product->picture)\n Storage::delete(Product::$PICTURE_PATH . \"/\" . $product->picture);\n\n $picture_path = $picture->store(Product::$PICTURE_PATH);\n //remove folder name from path\n $product->picture = str_replace(Product::$PICTURE_PATH . \"/\", '', $picture_path);\n }\n\n $this->renewProduct($product, $request);\n $product->save();\n return response()->json(new ProductResource($product), 200);\n }", "public function update(Request $request, $id)\n {\n $request->validate([\n 'name' => 'required | min:3 | string',\n 'type' => 'required',\n 'producer' => 'required',\n 'image' => 'image | mimes:png,jpg,jpeg',\n 'price_input' => 'required | numeric | min:0 | max:300000000',\n 'promotion_price' => 'required | numeric | max:300000000',\n 'description' => 'required | string',\n\n ]);\n $product = Product::withTrashed()->findOrfail($id);\n $product->name = $request->name;\n $product->id_type = $request->type;\n $product->id_producer = $request->producer;\n\n $product->amount = $request->amount;\n if (request('image')) {\n $product->image = base64_encode(file_get_contents($request->file('image')->getRealPath()));\n }\n\n $product->price_input = $request->price_input;\n\n if ( $request->promotion_price >= 0 && $request->promotion_price < $product->price_input) {\n $product->promotion_price = $request->promotion_price;\n }else{\n return back()->with('error', '\n Do not enter a negative number');\n }\n $product->new = $request->new;\n\n $product->description = $request->description;\n\n $product->save();\n $product->size()->sync(request('size'));\n\n return redirect()->route('product.index')->with('success', 'Product Updated successfully');\n }", "public function update(Request $request, $id)\n {\n $product = Product::find($id);\n\n $product->name = $request->input('name');\n $product->description = $request->input('description');\n $product->lastPrice = $product->price !== $request->input('price') ? $product->price : NULL;\n $product->price = $request->input('price');\n\n if ($request->hasFile('image')) { \n $currentImg = $product->image;\n if ($currentImg) {\n Storage::delete('/public/' . $currentImg);\n }\n $image = $request->file('image'); \n $path = $image->store('images','public');\n $product->image = $path;\n };\n\n $product->save(); \n\n $product_promotions = $request->input('promotion');\n\n $product->promotions()->sync($product_promotions);\n\n return redirect()->route('admin.modify');\n }", "public static function updateImage($fileName, $imageId, $storage)\n {\n //Get image name and storage location for image\n $image = Image::where('id', '=', $imageId)->first();\n\n //Delete old image\n ResourceHandler::delete($image->name, $image->storage);\n\n //Store the new image\n $image->name = $fileName;\n $image->storage = $storage;\n\n $image->save();\n }", "public function update($request, $id)\n {\n $this->checkExits($id);\n $data = $request->except(['_method','_token','photo']);\n\n if($request->photo)\n {\n try {\n $this->UploadFile($request);\n } catch (\\Exception $e) {\n //if has exception , don't has action\n }\n if ($this->img !== '') {\n $data['img'] = $this->img;\n }\n }\n\n $this->object->update($data);\n\n }", "public function updateProduct($request, $product)\n {\n $product->update($request->except(['_token', '_method', 'image']));\n if ($request->hasFile('image')) {\n $image = $request->file('image');\n $imageName = time() . '.' . $request->file('image')->extension();\n // $img = Image::make('public/foo.jpg');\n\n $image_resize = Image::make($image->getRealPath());\n $image_resize->resize(500, 500);\n $image_resize->save(public_path('images/') . $imageName, 100);\n $product->gallery = $imageName;\n $product->save();\n }\n $product->getTags()->sync($request->input('tags'));\n }" ]
[ "0.7425105", "0.70612276", "0.70558053", "0.6896673", "0.6582159", "0.64491373", "0.6346954", "0.62114537", "0.6145042", "0.6119944", "0.61128503", "0.6099993", "0.6087866", "0.6052593", "0.6018941", "0.60060275", "0.59715486", "0.5946516", "0.59400934", "0.59377414", "0.5890722", "0.5860816", "0.5855127", "0.5855127", "0.58513457", "0.5815068", "0.5806887", "0.57525045", "0.57525045", "0.57337505", "0.5723295", "0.5714311", "0.5694472", "0.5691319", "0.56879413", "0.5669989", "0.56565005", "0.56505877", "0.5646085", "0.5636683", "0.5633498", "0.5633378", "0.5632906", "0.5628826", "0.56196684", "0.5609126", "0.5601397", "0.55944353", "0.5582592", "0.5581908", "0.55813426", "0.5575312", "0.55717176", "0.55661047", "0.55624634", "0.55614686", "0.55608666", "0.55599797", "0.55599797", "0.55599797", "0.55599797", "0.55599797", "0.55573726", "0.5556878", "0.5554201", "0.5553069", "0.55530256", "0.5543788", "0.55435944", "0.55412996", "0.55393505", "0.55368495", "0.5535236", "0.5534954", "0.55237365", "0.5520468", "0.55163723", "0.55125296", "0.5511168", "0.5508345", "0.55072427", "0.5502385", "0.5502337", "0.5501029", "0.54995877", "0.54979175", "0.54949397", "0.54949397", "0.54946727", "0.5494196", "0.54941916", "0.54925025", "0.5491807", "0.5483321", "0.5479606", "0.5479408", "0.5478678", "0.54667485", "0.5463411", "0.5460588", "0.5458525" ]
0.0
-1
Remove the specified resource from storage.
public function destroy(int $id) { $this->categoryRepository->destroy($id); return redirect('admin/category'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function delete($resource){\n return $this->fetch($resource, self::DELETE);\n }", "public function destroy(Resource $resource)\n {\n //\n }", "public function removeResource($resourceID)\n\t\t{\n\t\t}", "public function unpublishResource(PersistentResource $resource)\n {\n $client = $this->getClient($this->name, $this->options);\n try {\n $client->delete(Path::fromString($this->getRelativePublicationPathAndFilename($resource)));\n } catch (FileDoesNotExistsException $exception) {\n }\n }", "public function deleteResource(&$resource) {\n\n if ($this->connector != null) {\n $this->logger->addDebug(\"Deleting Resource Node from Neo4J database\");\n $result = $this->connector->run(\"MATCH (a:Resource {id: {id}}) detach delete a;\",\n [\n 'id' => $resource->getID()\n ]\n );\n $this->logger->addDebug(\"Updated neo4j to remove resource\");\n }\n\n }", "public function deleteShopifyResource() {\n $this->getShopifyApi()->call([\n 'URL' => API::PREFIX . $this->getApiPathSingleResource(),\n 'METHOD' => 'DELETE',\n ]);\n }", "public function deleteResource()\n {\n $database = new Database();\n $id = $this->_params['id'];\n $database->deleteResource($id);\n $this->_f3->reroute('/Admin');\n }", "protected function deleteResource($fileName, $storage)\n {\n if (Storage::disk($storage)->exists($fileName)) \n {\n return Storage::disk($storage)->delete($fileName);\n }\n }", "public function delete()\n {\n persistableCollection::getInstance($this->resourceName)->deleteObject($this);\n }", "public function remove()\n {\n $this->_getBackend()->remove($this->_id);\n }", "public function remove()\n {\n if (! ftruncate($this->fileHandle, 0)) {\n throw new StorageException(\"Could not truncate $this->path\");\n }\n if (! unlink($this->path)) {\n throw new StorageException(\"Could not delete $this->path\");\n }\n }", "public function delete()\n\t{\n\t\t$s3 = AWS::createClient('s3');\n $s3->deleteObject(\n array(\n 'Bucket' => $this->bucket,\n 'Key' => $this->location\n )\n );\n\t\tif($this->local_file && file_exists($this->local_file)) {\n\t\t\tunlink($this->local_file);\n\t\t}\n $this->local_file = null;\n\t}", "public function delete()\n\t{\n\t\tsfCore::db->query(\"DELETE FROM `swoosh_file_storage` WHERE `id`='%i';\", $this->id);\n\t\t$this->fFile->delete();\n\t}", "public function delete(): void\n {\n unlink($this->getPath());\n }", "public function delete()\n {\n if($this->exists())\n unlink($this->getPath());\n }", "public function remove($path);", "function deleteFileFromStorage($path)\n{\n unlink(public_path($path));\n}", "public function delete(): void\n {\n unlink($this->path);\n }", "private function destroyResource(DrydockResource $resource) {\n $blueprint = $resource->getBlueprint();\n $blueprint->destroyResource($resource);\n\n $resource\n ->setStatus(DrydockResourceStatus::STATUS_DESTROYED)\n ->save();\n }", "public static function delete($fileName, $storage)\n {\n if (Storage::disk($storage)->exists($fileName)) \n {\n return Storage::disk($storage)->delete($fileName);\n }\n }", "public function remove() {}", "public function remove() {}", "public function remove();", "public function remove();", "public function remove();", "public function remove();", "function delete_resource($resource_id, $page)\n\t{\n\t\t//get resource data\n\t\t$table = \"resource\";\n\t\t$where = \"resource_id = \".$resource_id;\n\t\t\n\t\t$this->db->where($where);\n\t\t$resource_query = $this->db->get($table);\n\t\t$resource_row = $resource_query->row();\n\t\t$resource_path = $this->resource_path;\n\t\t\n\t\t$image_name = $resource_row->resource_image_name;\n\t\t\n\t\t//delete any other uploaded image\n\t\t$this->file_model->delete_file($resource_path.\"\\\\\".$image_name, $this->resource_path);\n\t\t\n\t\t//delete any other uploaded thumbnail\n\t\t$this->file_model->delete_file($resource_path.\"\\\\thumbnail_\".$image_name, $this->resource_path);\n\t\t\n\t\tif($this->resource_model->delete_resource($resource_id))\n\t\t{\n\t\t\t$this->session->set_userdata('success_message', 'resource has been deleted');\n\t\t}\n\t\t\n\t\telse\n\t\t{\n\t\t\t$this->session->set_userdata('error_message', 'resource could not be deleted');\n\t\t}\n\t\tredirect('resource/'.$page);\n\t}", "public function deleteImage(){\n\n\n Storage::delete($this->image);\n }", "public function del(string $resource): bool|string\n {\n $json = false;\n $fs = unserialize($_SESSION['rfe'][$this->getRoot()], ['allowed_classes' => false]);\n if (array_key_exists($resource, $fs)) {\n // if $item has children, delete all children too\n if (array_key_exists('dir', $fs[$resource])) {\n foreach ($fs as $key => $file) {\n if (isset($file['parId']) && $file['parId'] == $resource) {\n unset($fs[$key]);\n }\n }\n }\n unset($fs[$resource]);\n $_SESSION['rfe'][$this->getRoot()] = serialize($fs);\n $json = '[{\"msg\": \"item deleted\"}]';\n }\n return $json;\n }", "public function destroy()\n\t{\n\t\treturn unlink(self::filepath($this->name));\n\t}", "public function destroy($id) {\n $book = Book::find($id);\n // return unlink(storage_path(\"public/featured_images/\".$book->featured_image));\n Storage::delete(\"public/featured_images/\" . $book->featured_image);\n if ($book->delete()) {\n return $book;\n }\n\n }", "public function destroy($id)\n {\n Storageplace::findOrFail($id)->delete();\n }", "public function destroyResourceImage(): void\n\t{\n\t\tif (isset($this->image)) {\n\t\t\t@imagedestroy($this->image->getImageResource());\n\t\t}\n\t}", "public function deleteResource(PersistentResource $resource)\n {\n $pathAndFilename = $this->getStoragePathAndFilenameByHash($resource->getSha1());\n if (!file_exists($pathAndFilename)) {\n return true;\n }\n if (unlink($pathAndFilename) === false) {\n return false;\n }\n Files::removeEmptyDirectoriesOnPath(dirname($pathAndFilename));\n return true;\n }", "public function deleteImage(){\n \tStorage::delete($this->image);\n }", "public function destroy()\n {\n $file=public_path(config('larapages.media.folder')).Input::all()['folder'].'/'.Input::all()['file'];\n if (!file_exists($file)) die('File not found '.$file);\n unlink($file);\n }", "public function delete() \r\n {\r\n if($this->exists())\r\n {\r\n unlink($this->fullName());\r\n }\r\n }", "public function destroy($id)\n {\n Myfile::find($id)->delete();\n }", "public function destroy($delete = false)\n {\n if (null !== $this->resource) {\n $this->resource->clear();\n $this->resource->destroy();\n }\n\n $this->resource = null;\n clearstatcache();\n\n // If the $delete flag is passed, delete the image file.\n if (($delete) && file_exists($this->name)) {\n unlink($this->name);\n }\n }", "public static function delete($path){\r\n $currentDir = getcwd();\r\n $storageSubPath = \"/../../\".STORAGE_PATH;\r\n $file = $currentDir . $storageSubPath . '/' . $path;\r\n\r\n unlink($file);\r\n }", "public function destroy(Storage $storage)\n {\n return redirect()->route('storages.index');\n }", "public function remove() {\n //Check if there are thumbs and delete files and db\n foreach ($this->thumbs()->get() as $thumb) {\n $thumb->remove();\n } \n //Delete the attachable itself only if is not default\n if (strpos($this->url, '/defaults/') === false) {\n Storage::disk('public')->delete($this->getPath());\n }\n parent::delete(); //Remove db record\n }", "public function removeFile($uri){\n return Storage::disk('public')->delete($uri);\n }", "public function destroy(Resource $resource)\n {\n if( $resource->delete() ){\n return Response(['status'=>'success','message'=>'Resource deleted']); \n } else {\n return Response(['status'=>'error', 'message'=>'Something went wrong']);\n }\n }", "public function delete($path);", "public function delete($path);", "public function destroy($id)\n { \n File::find($id)->remove();\n \n return redirect()->route('files.index');\n }", "public function destroy($id)\n {\n $supplier = Supplier::find($id);\n $photo = $supplier->photo;\n if ($photo) {\n unlink($photo);\n }\n $supplier->delete();\n }", "public function destroy($id)\n {\n $student = Student::where('id', $id)->first();\n // $path = $student->image;\n unlink($student->image);\n Student::findOrFail($id)->delete();\n return response('Deleted!');\n }", "public function destroy($id)\n {\n $icon = SliderIcon::find($id);\n if (Storage::disk('public')->exists(str_replace('storage', '', $icon->img))){\n Storage::disk('public')->delete(str_replace('storage', '', $icon->img));\n }\n $icon->delete();\n return redirect()->route('slider_icons.index')->with('success', 'Данные преимущества удалёны');\n }", "public function delete($path, $data = null);", "public function destroy($id)\n {\n $items=Items::find($id);\n // delete old file\n if ($items->photo) {\n $str=$items->photo;\n $pos = strpos($str,'/',1);\n $str = substr($str, $pos);\n $oldFile = storage_path('app\\public').$str;\n File::Delete($oldFile); \n }\n $items->delete();\n return redirect()->route('items.index');\n }", "public function destroy($id)\n {\n $carousel = Carousel::find($id);\n $image = $carousel->image;\n\n $basename ='img/carousel/' . basename($image);\n //Delete the file from disk\n if(file_exists($basename)){\n unlink($basename);\n }\n //With softDeletes, this is the way to permanently delete a record\n $carousel->delete();\n Session::flash('success','Product deleted permanently');\n return redirect()->back();\n }", "public function remove()\n {\n $fs = new Filesystem();\n $fs->remove($this->dir());\n }", "public static function destroy(int $resource_id)\n {\n try {\n $image_data = ListingImage::where('id', $resource_id)->first();\n self::delete_image($image_data->name);\n $delete = ListingImage::where('id', $resource_id)->delete();\n\n // activity()\n // ->causedBy(Auth::user()->id)\n // ->performedOn($delete)\n // ->withProperties(['id' => $delete->id])\n // ->log('listing image deleted');\n return response()->json(['status'=> 'ok', 'msg'=> 'Data deleted successfully']);\n } catch (Exception $e) {\n $e->getMessage();\n }\n }", "public function destroy(Storage $storage)\n {\n $this->storage->destroy($storage);\n\n return redirect()->route('admin.product.storage.index')\n ->withSuccess(trans('core::core.messages.resource deleted', ['name' => trans('product::storages.title.storages')]));\n }", "public function del($path){\n\t\treturn $this->remove($path);\n\t}", "public function destroy($id)\n {\n //\n $product = Product::findOrFail($id);\n $product->delete();\n if($product->img != 'product-default.png'){\n Storage::delete(\"public/uploads/\".$product->img);\n // return 'deleted';\n }\n return redirect()->route('product.index'); \n }", "public function removeUpload()\n{\n if ($file = $this->getAbsolutePath()) {\n unlink($file); \n }\n}", "public function destroy($id)\n {\n $image = Images::withTrashed()->find($id);\n\n Storage::disk('uploads')->delete(\"social-media/$image->filename\");\n\n $image->tags()->detach();\n $image->detachMedia(config('constants.media_tags'));\n $image->forceDelete();\n\n return redirect()->back()->with('success', 'The image was successfully deleted');\n }", "public function destroyByResourceId($resource_id)\n {\n// $online_party = $this->onlinetrack->where('resource_id', $resource_id)->get()->first();\n// $online_party->status = \"offline\";\n// $online_party->save();\n// return $online_party;\n return $this->onlinetrack->where('resource_id', $resource_id)->delete();\n }", "public function revoke($resource, $permission = null);", "public function destroy($id)\n {\n $data=Image::find($id);\n $image = $data->img;\n\n\n $filepath= public_path('images/');\n $imagepath = $filepath.$image;\n\n //dd($old_image);\n if (file_exists($imagepath)) {\n @unlink($imagepath);\n }\n\n\n $data->delete();\n\n return redirect()->route('image.index');\n }", "function delete($path);", "public function removeItem(int $id)\n\t{\n\t\t$this->storage->remove($id);\n\t}", "public function destroy(File $file)\n {\n //\n $v = Storage::delete($file->path);\n \n }", "public function destroyResource($resource)\n {\n if (!is_object($resource)) {\n return false;\n }\n\n $resource_type = get_class($resource);\n $resource_id = $resource->getKey();\n\n return Role::where('resource_type', $resource_type)\n ->where('resource_id', $resource_id)\n ->delete();\n }", "public function remove($filePath){\n return Storage::delete($filePath);\n }", "public function remove(): void\n {\n $file = $this->getAbsolutePath();\n if (!is_file($file) || !file_exists($file)) {\n return;\n }\n\n unlink($file);\n }", "public function destroy(Request $request, Storage $storage)\n {\n $storage->delete();\n $request->session()->flash('alert-success', 'Запись успешно удалена!');\n return redirect()->route('storage.index');\n }", "public function remove(Storable $entity): Storable\n {\n $this->getRepository(get_class($entity))->remove($entity);\n $this->detach($entity);\n\n return $entity;\n }", "public function processDeletedResource(EntityResource $resource)\n {\n /** @var AuthorizationRepository $repository */\n $repository = $this->entityManager->getRepository('Edweld\\AclBundle\\Entity\\Authorization');\n\n $repository->removeAuthorizationsForResource($resource);\n }", "function _unlink($resource, $exp_time = null)\n {\n if(file_exists($resource)) {\n return parent::_unlink($resource, $exp_time);\n }\n\n // file wasn't found, so it must be gone.\n return true;\n }", "public function remove($id);", "public function remove($id);", "public function deleted(Storage $storage)\n {\n //\n }", "public function destroy($id)\n {\n $data = Product::findOrFail($id);\n\n if(file_exists('uploads/product/'.$data->image1)){\n unlink('uploads/product/'.$data->image1);\n }\n\n if(file_exists('uploads/product/'.$data->image2)){\n unlink('uploads/product/'.$data->image2);\n }\n\n if(file_exists('uploads/product/'.$data->image3)){\n unlink('uploads/product/'.$data->image3);\n }\n $data->delete();\n }", "public function removeUpload()\n {\n $file = $this->getAbsolutePath();\n if ($file) {\n unlink($file);\n }\n }", "public function resources_delete($resource_id, Request $request) {\n if ($resource_id) {\n $resp = Resources::where('id', '=', $resource_id)->delete();\n if($resp){\n $msg = 'Resource has been deleted successfully.';\n $request->session()->flash('message', $msg);\n }\n }\n //return redirect()->route('admin-factor-list');\n return redirect()->to($_SERVER['HTTP_REFERER']);\n }", "public function delete()\n {\n try\n {\n $thumbnail = $this->getThumbnail();\n if($thumbnail)\n {\n $thumbnail->delete();\n }\n }\n catch(sfException $e){}\n \n // delete current file\n parent::delete();\n }", "function deleteResource($uuid){\n $data = callAPI(\"DELETE\",\"/urest/v1/resource/\".$uuid);\n return $data;\n}", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function delete();", "public function remove_resource($idproject){\n\t\t\n\t\t// Load model and try to get project data\n\t\t$this->load->model('Projects_model', 'projects');\n\t\t\n\t\t// Update\n\t\t$this->projects->save_project(array(\"ext\" => \"\", \"vzaar_idvideo\" => \"0\", \"vzaar_processed\" => \"0\"), $idproject);\n\t}", "public function destroy($id){\n $file_data = Slider::findOrFail($id);\n File::delete(public_path('../storage/app/public/sliders/'.$file_data->path));\n $slider = Slider::destroy($id);\n return response()->json(null, 204);\n }", "public function delete()\n\t{\n\t\t@unlink($this->get_filepath());\n\t\t@unlink($this->get_filepath(true));\n\t\tparent::delete();\n\t}", "public function delete($resource_path, array $variables = array()) {\n return $this->call($resource_path, $variables, 'DELETE');\n }", "public function destroy($id)\n {\n //Find Slider With Id\n $slider = Slider::findOrFail($id);\n // Check If The Image Exist\n if(file_exists('uploads/slider/'.$slider->image)){\n\n unlink( 'uploads/slider/'.$slider->image);\n }\n $slider->delete();\n return redirect()->back()->with('success','Slider Successfully Deleted');\n }" ]
[ "0.6672584", "0.6659381", "0.6635911", "0.6632799", "0.6626075", "0.65424126", "0.65416265", "0.64648265", "0.62882507", "0.6175931", "0.6129922", "0.60893893", "0.6054415", "0.60428125", "0.60064924", "0.59337646", "0.5930772", "0.59199584", "0.5919811", "0.5904504", "0.5897263", "0.58962846", "0.58951396", "0.58951396", "0.58951396", "0.58951396", "0.5880124", "0.58690923", "0.5863659", "0.5809161", "0.57735413", "0.5760811", "0.5753559", "0.57492644", "0.5741712", "0.57334286", "0.5726379", "0.57144034", "0.57096", "0.5707689", "0.5705895", "0.5705634", "0.5703902", "0.5696585", "0.5684331", "0.5684331", "0.56780374", "0.5677111", "0.5657287", "0.5648262", "0.5648085", "0.5648012", "0.5640759", "0.5637738", "0.5629985", "0.5619264", "0.56167465", "0.5606877", "0.56021434", "0.5601949", "0.55992156", "0.5598557", "0.55897516", "0.5581397", "0.5566926", "0.5566796", "0.55642897", "0.55641", "0.5556583", "0.5556536", "0.5550097", "0.5543172", "0.55422723", "0.5540013", "0.5540013", "0.55371785", "0.55365825", "0.55300397", "0.552969", "0.55275744", "0.55272335", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.55271083", "0.5525997", "0.5525624", "0.5523911", "0.5521122", "0.5517412" ]
0.0
-1
Run the database seeds.
public function run() { DB::table('games')->insert([ [ 'name'=>'League of Legends', 'isSinglePlayer'=>false, 'maxPlayers'=>5, 'MaxTeams'=>14 ], [ 'name'=>'Counter Strike Global Offensive', 'isSinglePlayer'=>false, 'maxPlayers'=>5, 'MaxTeams'=>14 ], [ 'name'=>'Hearthstone', 'isSinglePlayer'=>true, 'maxPlayers'=>1, 'MaxTeams'=>30 ] ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function run()\n {\n // $this->call(UserTableSeeder::class);\n // $this->call(PostTableSeeder::class);\n // $this->call(TagTableSeeder::class);\n // $this->call(PostTagTableSeeder::class);\n\n /*AB - use faker to populate table see file ModelFactory.php */\n factory(App\\Editeur::class, 40) ->create();\n factory(App\\Auteur::class, 40) ->create();\n factory(App\\Livre::class, 80) ->create();\n\n for ($i = 1; $i < 41; $i++) {\n $number = rand(2, 8);\n for ($j = 1; $j <= $number; $j++) {\n DB::table('auteur_livre')->insert([\n 'livre_id' => rand(1, 40),\n 'auteur_id' => $i\n ]);\n }\n }\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n // Let's truncate our existing records to start from scratch.\n Assignation::truncate();\n\n $faker = \\Faker\\Factory::create();\n \n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 40; $i++) {\n Assignation::create([\n 'ad_id' => $faker->numberBetween(1,20),\n 'buyer_id' => $faker->numberBetween(1,6),\n 'seller_id' => $faker->numberBetween(6,11),\n 'state' => NULL,\n ]);\n }\n\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n \t$faker = Faker::create();\n\n \tfor($i=0; $i<20; $i++) {\n \t\t$post = new Post;\n \t\t$post->title = $faker->sentence();\n \t\t$post->body = $faker->paragraph();\n \t\t$post->category_id = rand(1, 5);\n \t\t$post->save();\n \t}\n\n \t$list = ['General', 'Technology', 'News', 'Internet', 'Mobile'];\n \tforeach($list as $name) {\n \t\t$category = new Category;\n \t\t$category->name = $name;\n \t\t$category->save();\n \t}\n\n \tfor($i=0; $i<20; $i++) {\n \t\t$comment = new Comment;\n \t\t$comment->comment = $faker->paragraph();\n \t\t$comment->post_id = rand(1,20);\n \t\t$comment->save();\n \t}\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n $this->call(RoleTableSeeder::class);\n $this->call(UserTableSeeder::class);\n \n factory('App\\Cat', 5)->create();\n $tags = factory('App\\Tag', 8)->create();\n\n factory(Post::class, 15)->create()->each(function($post) use ($tags){\n $post->comments()->save(factory(Comment::class)->make());\n $post->tags()->attach( $tags->random(mt_rand(1,4))->pluck('id')->toArray() );\n });\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::table('post')->insert(\n [\n 'title' => 'Test Post1',\n 'desc' => str_random(100).\" post1\",\n 'alias' => 'test1',\n 'keywords' => 'test1',\n ]\n );\n DB::table('post')->insert(\n [\n 'title' => 'Test Post2',\n 'desc' => str_random(100).\" post2\",\n 'alias' => 'test2',\n 'keywords' => 'test2',\n ]\n );\n DB::table('post')->insert(\n [\n 'title' => 'Test Post3',\n 'desc' => str_random(100).\" post3\",\n 'alias' => 'test3',\n 'keywords' => 'test3',\n ]\n );\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n \t$faker = Factory::create();\n \t\n \tforeach ($this->departments as $key => $department) {\n \t\tDepartment::create([\n \t\t\t'name' => $department\n \t\t]);\n \t}\n \tforeach ($this->collections as $key => $collection) {\n \t\tCollection::create([\n \t\t\t'name' => $collection\n \t\t]);\n \t}\n \t\n \t\n \tfor ($i=0; $i < 40; $i++) {\n \t\tUser::create([\n \t\t\t'name' \t=>\t$faker->name,\n \t\t\t'email' \t=>\t$faker->email,\n \t\t\t'password' \t=>\tbcrypt('123456'),\n \t\t]);\n \t} \n \t\n \t\n \tforeach ($this->departments as $key => $department) {\n \t\t//echo ($key + 1) . PHP_EOL;\n \t\t\n \t\tfor ($i=0; $i < 10; $i++) { \n \t\t\techo $faker->name . PHP_EOL;\n\n \t\t\tArt::create([\n \t\t\t\t'name'\t\t\t=> $faker->sentence(2),\n \t\t\t\t'img'\t\t\t=> $this->filenames[$i],\n \t\t\t\t'medium'\t\t=> 'canvas',\n \t\t\t\t'department_id'\t=> $key + 1,\n \t\t\t\t'user_id'\t\t=> $this->userIndex,\n \t\t\t\t'dimension'\t\t=> '18.0 x 24.0',\n\t\t\t\t]);\n \t\t\t\t\n \t\t\t\t$this->userIndex ++;\n \t\t}\n \t}\n \t\n \tdd(\"END\");\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // $this->dataCategory();\n factory(App\\Model\\Category::class, 70)->create();\n factory(App\\Model\\Producer::class, rand(5,10))->create();\n factory(App\\Model\\Provider::class, rand(5,10))->create();\n factory(App\\Model\\Product::class, 100)->create();\n factory(App\\Model\\Album::class, 300)->create();\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n\n factory('App\\User', 10 )->create();\n\n $users= \\App\\User::all();\n $users->each(function($user){ factory('App\\Category', 1)->create(['user_id'=>$user->id]); });\n $users->each(function($user){ factory('App\\Tag', 3)->create(['user_id'=>$user->id]); });\n\n\n $users->each(function($user){\n factory('App\\Post', 10)->create([\n 'user_id'=>$user->id,\n 'category_id'=>rand(1,20)\n ]\n );\n });\n\n $posts= \\App\\Post::all();\n $posts->each(function ($post){\n\n $post->tags()->attach(array_unique([rand(1,20),rand(1,20),rand(1,20)]));\n });\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $types = factory(\\App\\Models\\Type::class, 5)->create();\n\n $cities = factory(\\App\\Models\\City::class, 10)->create();\n\n $cities->each(function ($city) {\n $districts = factory(\\App\\Models\\District::class, rand(2, 5))->create([\n 'city_id' => $city->id,\n ]);\n\n $districts->each(function ($district) {\n $properties = factory(\\App\\Models\\Property::class, rand(2, 5))->create([\n 'type_id' => rand(1, 5),\n 'district_id' => $district->id\n ]);\n\n $properties->each(function ($property) {\n $galleries = factory(\\App\\Models\\Gallery::class, rand(3, 10))->create([\n 'property_id' => $property->id\n ]);\n });\n });\n });\n }", "public function run()\n {\n $this->call(UsersTableSeeder::class);\n\n $categories = factory(App\\Models\\Category::class, 10)->create();\n\n $categories->each(function ($category) {\n $category\n ->posts()\n ->saveMany(\n factory(App\\Models\\Post::class, 3)->make()\n );\n });\n }", "public function run()\n {\n $this->call(CategoriesTableSeeder::class);\n\n $users = factory(App\\User::class, 5)->create();\n $recipes = factory(App\\Recipe::class, 30)->create();\n $preparations = factory(App\\Preparation::class, 70)->create();\n $photos = factory(App\\Photo::class, 90)->create();\n $comments = factory(App\\Comment::class, 200)->create();\n $flavours = factory(App\\Flavour::class, 25)->create();\n $flavour_recipe = factory(App\\FlavourRecipe::class, 50)->create();\n $tags = factory(App\\Tag::class, 25)->create();\n $recipe_tag = factory(App\\RecipeTag::class, 50)->create();\n $ingredients = factory(App\\Ingredient::class, 25)->create();\n $ingredient_preparation = factory(App\\IngredientPreparation::class, 300)->create();\n \n \n \n DB::table('users')->insert(['name' => 'SimpleUtilisateur', 'email' => '[email protected]', 'password' => bcrypt('SimpleMotDePasse')]);\n \n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n // Sample::truncate();\n // TestItem::truncate();\n // UOM::truncate();\n Role::truncate();\n User::truncate();\n\n // factory(Role::class, 4)->create();\n Role::create([\n 'name'=> 'Director',\n 'description'=> 'Director type'\n ]);\n\n Role::create([\n 'name'=> 'Admin',\n 'description'=> 'Admin type'\n ]);\n Role::create([\n 'name'=> 'Employee',\n 'description'=> 'Employee type'\n ]);\n Role::create([\n 'name'=> 'Technician',\n 'description'=> 'Technician type'\n ]);\n \n factory(User::class, 20)->create()->each(\n function ($user){\n $roles = \\App\\Role::all()->random(mt_rand(1, 2))->pluck('id');\n $user->roles()->attach($roles);\n }\n );\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n UsersLevel::create([\n 'name' => 'Administrator'\n ]);\n\n UsersLevel::create([\n 'name' => 'User'\n ]);\n\n User::create([\n 'username' => 'admin',\n 'password' => bcrypt('admin123'),\n 'level_id' => 1,\n 'fullname' => \"Super Admin\",\n 'email'=> \"[email protected]\"\n ]);\n\n\n \\App\\CategoryPosts::create([\n 'name' =>'Paket Trip'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' =>'Destinasi Kuliner'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' => 'Event'\n ]);\n\n \\App\\CategoryPosts::create([\n 'name' => 'Profil'\n ]);\n }", "public function run()\n {\n DB::table('users')->insert([\n 'name' => 'Admin',\n 'email' => '[email protected]',\n 'avatar' => \"avatar\",\n 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi',\n ]);\n $this->call(CategorySeeder::class);\n // \\App\\Models\\Admin::factory(1)->create();\n \\App\\Models\\User::factory(10)->create();\n // \\App\\Models\\Category::factory(50)->create();\n \\App\\Models\\PetComment::factory(50)->create();\n $pets = \\App\\Models\\Pet::factory(50)->create();\n foreach ($pets as $pet) {\n \\App\\Models\\PetTag::factory(1)->create(['pet_id' => $pet->id]);\n \\App\\Models\\PetPhotoUrl::factory(1)->create(['pet_id' => $pet->id]);\n \\App\\Models\\Order::factory(1)->create(['pet_id' => $pet->id]);\n };\n }", "public function run()\n { \n\n $this->call(RoleSeeder::class);\n \n $this->call(UserSeeder::class);\n\n Storage::deleteDirectory('socials-icon');\n Storage::makeDirectory('socials-icon');\n $socials = Social::factory(7)->create();\n\n Storage::deleteDirectory('countries-flag');\n Storage::deleteDirectory('countries-firm');\n Storage::makeDirectory('countries-flag');\n Storage::makeDirectory('countries-firm');\n $countries = Country::factory(18)->create();\n\n // Se llenan datos de la tabla muchos a muchos - social_country\n foreach ($countries as $country) {\n foreach ($socials as $social) {\n\n $country->socials()->attach($social->id, [\n 'link' => 'https://www.facebook.com/ministeriopalabrayespiritu/'\n ]);\n }\n }\n\n Person::factory(50)->create();\n\n Category::factory(7)->create();\n\n Video::factory(25)->create(); \n\n $this->call(PostSeeder::class);\n\n Storage::deleteDirectory('documents');\n Storage::makeDirectory('documents');\n Document::factory(25)->create();\n\n }", "public function run()\n {\n $faker = Faker::create('id_ID');\n /**\n * Generate fake author data\n */\n for ($i=1; $i<=50; $i++) { \n DB::table('author')->insert([\n 'name' => $faker->name\n ]);\n }\n /**\n * Generate fake publisher data\n */\n for ($i=1; $i<=50; $i++) { \n DB::table('publisher')->insert([\n 'name' => $faker->name\n ]);\n }\n /**\n * Seeding payment method\n */\n DB::table('payment')->insert([\n ['name' => 'Mandiri'],\n ['name' => 'BCA'],\n ['name' => 'BRI'],\n ['name' => 'BNI'],\n ['name' => 'Pos Indonesia'],\n ['name' => 'BTN'],\n ['name' => 'Indomaret'],\n ['name' => 'Alfamart'],\n ['name' => 'OVO'],\n ['name' => 'Cash On Delivery']\n ]);\n }", "public function run()\n {\n DatabaseSeeder::seedLearningStylesProbs();\n DatabaseSeeder::seedCampusProbs();\n DatabaseSeeder::seedGenderProbs();\n DatabaseSeeder::seedTypeStudentProbs();\n DatabaseSeeder::seedTypeProfessorProbs();\n DatabaseSeeder::seedNetworkProbs();\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n // MyList::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 3; $i++) {\n MyList::create([\n 'title' => 'List-'.($i+1),\n 'color' => $faker->sentence,\n 'icon' => $faker->randomDigitNotNull,\n 'index' => $faker->randomDigitNotNull,\n 'user_id' => 1,\n ]);\n }\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n Products::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few products in our database:\n for ($i = 0; $i < 50; $i++) {\n Products::create([\n 'name' => $faker->word,\n 'sku' => $faker->randomNumber(7, false),\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n User::create([\n 'name' => 'Pablo Rosales',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'status' => 1,\n 'role_id' => 1,\n 'movil' => 0\n ]);\n\n User::create([\n 'name' => 'Usuario Movil',\n 'email' => '[email protected]',\n 'password' => bcrypt('secret'),\n 'status' => 1,\n 'role_id' => 3,\n 'movil' => 1\n ]);\n\n Roles::create([\n 'name' => 'Administrador'\n ]);\n Roles::create([\n 'name' => 'Operaciones'\n ]);\n Roles::create([\n 'name' => 'Comercial'\n ]);\n Roles::create([\n 'name' => 'Aseguramiento'\n ]);\n Roles::create([\n 'name' => 'Facturación'\n ]);\n Roles::create([\n 'name' => 'Creditos y Cobros'\n ]);\n\n factory(App\\Customers::class, 100)->create();\n }", "public function run()\n {\n // php artisan db:seed --class=StoreTableSeeder\n\n foreach(range(1,20) as $i){\n $faker = Faker::create();\n Store::create([\n 'name' => $faker->name,\n 'desc' => $faker->text,\n 'tags' => $faker->word,\n 'address' => $faker->address,\n 'longitude' => $faker->longitude($min = -180, $max = 180),\n 'latitude' => $faker->latitude($min = -90, $max = 90),\n 'created_by' => '1'\n ]);\n }\n\n }", "public function run()\n {\n DB::table('users')->insert([\n 'name'=>\"test\",\n 'password' => Hash::make('123'),\n 'email'=>'[email protected]'\n ]);\n DB::table('tags')->insert(['name'=>'tags']);\n $this->call(UserSeed::class);\n $this->call(CategoriesSeed::class);\n $this->call(TopicsSeed::class);\n $this->call(CommentariesSeed::class);\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n echo 'seeding permission...', PHP_EOL;\n $permissions = [\n 'role-list',\n 'role-create',\n 'role-edit',\n 'role-delete',\n 'formation-list',\n 'formation-create',\n 'formation-edit',\n 'formation-delete',\n 'user-list',\n 'user-create',\n 'user-edit',\n 'user-delete'\n ];\n foreach ($permissions as $permission) {\n Permission::create(['name' => $permission]);\n }\n echo 'seeding users...', PHP_EOL;\n\n $user= User::create(\n [\n 'name' => 'Mr. admin',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'remember_token' => null,\n ]\n );\n echo 'Create Roles...', PHP_EOL;\n Role::create(['name' => 'former']);\n Role::create(['name' => 'learner']);\n Role::create(['name' => 'admin']);\n Role::create(['name' => 'manager']);\n Role::create(['name' => 'user']);\n\n echo 'seeding Role User...', PHP_EOL;\n $user->assignRole('admin');\n $role = $user->assignRole('admin');\n $role->givepermissionTo(Permission::all());\n\n \\DB::table('languages')->insert(['name' => 'English', 'code' => 'en']);\n \\DB::table('languages')->insert(['name' => 'Français', 'code' => 'fr']);\n }", "public function run()\n {\n $this->call(UsersTableSeeder::class);\n $this->call(PermissionsSeeder::class);\n $this->call(RolesSeeder::class);\n $this->call(ThemeSeeder::class);\n\n //\n\n DB::table('paypal_info')->insert([\n 'client_id' => '',\n 'client_secret' => '',\n 'currency' => '',\n ]);\n DB::table('contact_us')->insert([\n 'content' => '',\n ]);\n DB::table('setting')->insert([\n 'site_name' => ' ',\n ]);\n DB::table('terms_and_conditions')->insert(['terms_and_condition' => 'text']);\n }", "public function run()\n {\n $this->call([\n UserSeeder::class,\n ]);\n\n User::factory(20)->create();\n Author::factory(20)->create();\n Book::factory(60)->create();\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(UserSeeder::class);\n $this->call(RolePermissionSeeder::class);\n $this->call(AppmodeSeeder::class);\n\n // \\App\\Models\\Appmode::factory(3)->create();\n \\App\\Models\\Doctor::factory(100)->create();\n \\App\\Models\\Unit::factory(50)->create();\n \\App\\Models\\Broker::factory(100)->create();\n \\App\\Models\\Patient::factory(100)->create();\n \\App\\Models\\Expence::factory(100)->create();\n \\App\\Models\\Testcategory::factory(100)->create();\n \\App\\Models\\Test::factory(50)->create();\n \\App\\Models\\Parameter::factory(50)->create();\n \\App\\Models\\Sale::factory(50)->create();\n \\App\\Models\\SaleItem::factory(100)->create();\n \\App\\Models\\Goption::factory(1)->create();\n \\App\\Models\\Pararesult::factory(50)->create();\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // DB::table('roles')->insert(\n // [\n // ['name' => 'admin', 'description' => 'Administrator'],\n // ['name' => 'student', 'description' => 'Student'],\n // ['name' => 'lab_tech', 'description' => 'Lab Tech'],\n // ['name' => 'it_staff', 'description' => 'IT Staff Member'],\n // ['name' => 'it_manager', 'description' => 'IT Manager'],\n // ['name' => 'lab_manager', 'description' => 'Lab Manager'],\n // ]\n // );\n\n // DB::table('users')->insert(\n // [\n // 'username' => 'admin', \n // 'password' => Hash::make('password'), \n // 'active' => 1,\n // 'name' => 'Administrator',\n // 'email' => '[email protected]',\n // 'role_id' => \\App\\Role::where('name', 'admin')->first()->id\n // ]\n // );\n\n DB::table('status')->insert([\n // ['name' => 'Active'],\n // ['name' => 'Cancel'],\n // ['name' => 'Disable'],\n // ['name' => 'Open'],\n // ['name' => 'Closed'],\n // ['name' => 'Resolved'],\n ['name' => 'Used'],\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n factory(User::class)->create([\n 'name' => 'Qwerty',\n 'email' => '[email protected]',\n 'password' => bcrypt('secretpassw'),\n ]);\n\n factory(User::class, 59)->create([\n 'password' => bcrypt('secretpassw'),\n ]);\n\n for ($i = 1; $i < 11; $i++) {\n factory(Category::class)->create([\n 'name' => 'Category ' . $i,\n ]);\n }\n\n for ($i = 1; $i < 101; $i++) {\n factory(Product::class)->create([\n 'name' => 'Product ' . $i,\n ]);\n }\n }", "public function run()\n {\n\n \t// Making main admin role\n \tDB::table('roles')->insert([\n 'name' => 'Admin',\n ]);\n\n // Making main category\n \tDB::table('categories')->insert([\n 'name' => 'Other',\n ]);\n\n \t// Making main admin account for testing\n \tDB::table('users')->insert([\n 'name' \t\t=> 'Admin',\n 'email' \t=> '[email protected]',\n 'password' => bcrypt('12345'),\n 'role_id' => 1,\n 'created_at' => date('Y-m-d H:i:s' ,time()),\n 'updated_at' => date('Y-m-d H:i:s' ,time())\n ]);\n\n \t// Making random users and posts\n factory(App\\User::class, 10)->create();\n factory(App\\Post::class, 35)->create();\n }", "public function run()\n {\n $faker = Faker::create();\n\n \\DB::table('positions')->insert(array (\n 'codigo' => strtoupper($faker->randomLetter).$faker->postcode,\n 'nombre' => 'Chef',\n 'salario' => '15000.00'\n ));\n\n\t\t \\DB::table('positions')->insert(array (\n 'codigo' => strtoupper($faker->randomLetter).$faker->postcode,\n 'nombre' => 'Mesonero',\n 'salario' => '12000.00'\n ));\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker = \\Faker\\Factory::create();\n\n foreach (range(1,5) as $index) {\n Lista::create([\n 'name' => $faker->sentence(2),\n 'description' => $faker->sentence(10), \n ]);\n } \n\n foreach (range(1,20) as $index) {\n $n = $faker->sentence(2);\n \tTarea::create([\n \t\t'name' => $n,\n \t\t'description' => $faker->sentence(10),\n 'lista_id' => $faker->numberBetween(1,5),\n 'slug' => Str::slug($n),\n \t\t]);\n } \n }", "public function run()\n {\n $faker = Faker::create('lt_LT');\n\n DB::table('users')->insert([\n 'name' => 'user',\n 'email' => '[email protected]',\n 'password' => Hash::make('123')\n ]);\n DB::table('users')->insert([\n 'name' => 'user2',\n 'email' => '[email protected]',\n 'password' => Hash::make('123')\n ]);\n\n foreach (range(1,100) as $val)\n DB::table('authors')->insert([\n 'name' => $faker->firstName(),\n 'surname' => $faker->lastName(),\n \n ]);\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(UsersTableSeeder::class);\n\n // DB::table('users')->insert([\n // 'name' => 'User1',\n // 'email' => '[email protected]',\n // 'password' => bcrypt('password'),\n // ]);\n\n\n $faker = Faker::create();\n \n foreach (range(1,10) as $index){\n DB::table('companies')->insert([\n 'name' => $faker->company(),\n 'email' => $faker->email(10).'@gmail.com',\n 'logo' => $faker->image($dir = '/tmp', $width = 640, $height = 480),\n 'webiste' => $faker->domainName(),\n \n ]);\n }\n \n \n foreach (range(1,10) as $index){\n DB::table('employees')->insert([\n 'first_name' => $faker->firstName(),\n 'last_name' => $faker->lastName(),\n 'company' => $faker->company(),\n 'email' => $faker->str_random(10).'@gmail.com',\n 'phone' => $faker->e164PhoneNumber(),\n \n ]);\n }\n\n\n\n }", "public function run()\n {\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n Flight::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 100; $i++) {\n\n\n Flight::create([\n 'flightNumber' => $faker->randomNumber(5),\n 'depAirport' => $faker->city,\n 'destAirport' => $faker->city,\n 'reservedWeight' => $faker->numberBetween(1000 - 10000),\n 'deptTime' => $faker->dateTime('now'),\n 'arrivalTime' => $faker->dateTime('now'),\n 'reservedVolume' => $faker->numberBetween(1000 - 10000),\n 'airlineName' => $faker->colorName,\n ]);\n }\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->truncteTables([\n 'users',\n 'products'\n ]);\n\n $this->call(UsersSeeder::class);\n $this->call(ProductsSeeder::class);\n\n }", "public function run()\n {\n /**\n * Dummy seeds\n */\n DB::table('metas')->truncate();\n $faker = Faker::create();\n\n for ($i=0; $i < 10; $i++) { \n DB::table('metas')->insert([\n 'id_rel' => $faker->randomNumber(),\n 'titulo' => $faker->sentence,\n 'descricao' => $faker->paragraph,\n 'justificativa' => $faker->paragraph,\n 'valor_inicial' => $faker->numberBetween(0,100),\n 'valor_atual' => $faker->numberBetween(0,100),\n 'valor_final' => $faker->numberBetween(0,10),\n 'regras' => json_encode([$i => [\"values\" => $faker->words(3)]]),\n 'types' => json_encode([$i => [\"values\" => $faker->words(2)]]),\n 'categorias' => json_encode([$i => [\"values\" => $faker->words(4)]]),\n 'tags' => json_encode([$i => [\"values\" => $faker->words(5)]]),\n 'active' => true,\n ]);\n }\n\n\n }", "public function run()\n {\n // $this->call(UserTableSeeder::class);\n\n $faker = Faker::create();\n\n $lessonIds = Lesson::lists('id')->all(); // An array of ID's in that table [1, 2, 3, 4, 5, 7]\n $tagIds = Tag::lists('id')->all();\n\n foreach(range(1, 30) as $index)\n {\n // a real lesson id\n // a real tag id\n DB::table('lesson_tag')->insert([\n 'lesson_id' => $faker->randomElement($lessonIds),\n 'tag_id' => $faker->randomElement($tagIds),\n ]);\n }\n }", "public function run()\n {\n $this->call(CategoriasTableSeeder::class);\n $this->call(UfsTableSeeder::class);\n $this->call(UsersTableSeeder::class);\n $this->call(UserTiposTableSeeder::class);\n factory(App\\User::class, 2)->create();\n/* factory(App\\Models\\Categoria::class, 20)->create();*/\n/* factory(App\\Models\\Anuncio::class, 50)->create();*/\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n Language::truncate();\n Reason::truncate();\n Report::truncate();\n Category::truncate();\n Position::truncate();\n\n $languageQuantity = 10;\n $reasonQuantity = 10;\n $reportQuantity = 10;\n $categoryQuantity = 10;\n $positionQuantity = 10;\n\n factory(Language::class,$languageQuantity)->create();\n factory(Reason::class,$reasonQuantity)->create();\n \n factory(Report::class,$reportQuantity)->create();\n \n factory(Category::class,$categoryQuantity)->create();\n \n factory(Position::class,$positionQuantity)->create();\n\n }", "public function run()\n {\n // \\DB::statement('SET_FOREIGN_KEY_CHECKS=0');\n \\DB::table('users')->truncate();\n \\DB::table('posts')->truncate();\n // \\DB::table('category')->truncate();\n \\DB::table('photos')->truncate();\n \\DB::table('comments')->truncate();\n \\DB::table('comment_replies')->truncate();\n\n \\App\\Models\\User::factory()->times(10)->hasPosts(1)->create();\n \\App\\Models\\Role::factory()->times(10)->create();\n \\App\\Models\\Category::factory()->times(10)->create();\n \\App\\Models\\Comment::factory()->times(10)->hasReplies(1)->create();\n \\App\\Models\\Photo::factory()->times(10)->create();\n\n \n // \\App\\Models\\User::factory(10)->create([\n // 'role_id'=>2,\n // 'is_active'=>1\n // ]);\n\n // factory(App\\Models\\Post::class, 10)->create();\n // $this->call(UsersTableSeeder::class);\n }", "public function run()\n {\n $this->call([\n ArticleSeeder::class, \n TagSeeder::class,\n Arttagrel::class\n ]);\n // \\App\\Models\\User::factory(10)->create();\n \\App\\Models\\Article::factory()->count(7)->create();\n \\App\\Models\\Tag::factory()->count(15)->create(); \n \\App\\Models\\Arttagrel::factory()->count(15)->create(); \n }", "public function run()\n {\n $this->call(ArticulosTableSeeder::class);\n /*DB::table('articulos')->insert([\n 'titulo' => str_random(50),\n 'cuerpo' => str_random(200),\n ]);*/\n }", "public function run()\n {\n $this->call(CategoryTableSeeder::class);\n $this->call(ProductTableSeeder::class);\n\n \t\t\n\t\t\tDB::table('users')->insert([\n 'first_name' => 'Ignacio',\n 'last_name' => 'Garcia',\n 'email' => '[email protected]',\n 'password' => bcrypt('123456'),\n 'role' => '1',\n 'avatar' => 'CGnABxNYYn8N23RWlvTTP6C2nRjOLTf8IJcbLqRP.jpeg',\n ]);\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n $this->call(RoleSeeder::class);\n $this->call(UserSeeder::class);\n\n Medicamento::factory(50)->create();\n Reporte::factory(5)->create();\n Cliente::factory(200)->create();\n Asigna_valor::factory(200)->create();\n Carga::factory(200)->create();\n }", "public function run()\n {\n $this->call([\n RoleSeeder::class,\n TicketSeeder::class\n ]);\n\n DB::table('departments')->insert([\n 'abbr' => 'IT',\n 'name' => 'Information Technologies',\n 'created_at' => Carbon::now(),\n 'updated_at' => Carbon::now(),\n ]);\n\n DB::table('users')->insert([\n 'name' => 'admin',\n 'email' => '[email protected]',\n 'email_verified_at' => Carbon::now(),\n 'password' => Hash::make('admin'),\n 'department_id' => 1,\n 'avatar' => 'default.png',\n 'created_at' => Carbon::now(),\n 'updated_at' => Carbon::now(),\n ]);\n\n DB::table('role_user')->insert([\n 'role_id' => 1,\n 'user_id' => 1\n ]);\n }", "public function run()\n {\n \\App\\Models\\Article::factory(20)->create();\n \\App\\Models\\Category::factory(5)->create();\n \\App\\Models\\Comment::factory(40)->create();\n\n \\App\\Models\\User::create([\n \"name\"=>\"Alice\",\n \"email\"=>'[email protected]',\n 'password' => Hash::make('password'),\n ]);\n \\App\\Models\\User::create([\n \"name\"=>\"Bob\",\n \"email\"=>'[email protected]',\n 'password' => Hash::make('password'),\n ]);\n }", "public function run()\n {\n /** \n * Note: You must add these lines to your .env file for this Seeder to work (replace the values, obviously):\n SEEDER_USER_FIRST_NAME = 'Firstname'\n SEEDER_USER_LAST_NAME = 'Lastname'\n\t\tSEEDER_USER_DISPLAY_NAME = 'Firstname Lastname'\n\t\tSEEDER_USER_EMAIL = [email protected]\n SEEDER_USER_PASSWORD = yourpassword\n */\n\t\tDB::table('users')->insert([\n 'user_first_name' => env('SEEDER_USER_FIRST_NAME'),\n 'user_last_name' => env('SEEDER_USER_LAST_NAME'),\n 'user_name' => env('SEEDER_USER_DISPLAY_NAME'),\n\t\t\t'user_email' => env('SEEDER_USER_EMAIL'),\n 'user_status' => 1,\n \t'password' => Hash::make((env('SEEDER_USER_PASSWORD'))),\n 'permission_fk' => 1,\n 'created_at' => Carbon::now()->format('Y-m-d H:i:s'),\n 'updated_at' => Carbon::now()->format('Y-m-d H:i:s')\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class,3)->create()->each(\n \tfunction($user)\n \t{\n \t\t$user->questions()\n \t\t->saveMany(\n \t\t\tfactory(App\\Question::class, rand(2,6))->make()\n \t\t)\n ->each(function ($q) {\n $q->answers()->saveMany(factory(App\\Answer::class, rand(1,5))->make());\n })\n \t}\n );\n }\n}", "public function run()\n {\n $faker = Faker::create();\n\n // $this->call(UsersTableSeeder::class);\n\n DB::table('posts')->insert([\n 'id'=>str_random(1),\n 'user_id'=> str_random(1),\n 'title' => $faker->name,\n 'body' => $faker->safeEmail,\n 'created_at' => date('Y-m-d H:i:s'),\n 'updated_at' => date('Y-m-d H:i:s'),\n ]);\n }", "public function run()\n\t{\n\t\tDB::table(self::TABLE_NAME)->delete();\n\n\t\tforeach (seed(self::TABLE_NAME) as $row)\n\t\t\t$records[] = [\n\t\t\t\t'id'\t\t\t\t=> $row->id,\n\t\t\t\t'created_at'\t\t=> $row->created_at ?? Carbon::now(),\n\t\t\t\t'updated_at'\t\t=> $row->updated_at ?? Carbon::now(),\n\n\t\t\t\t'sport_id'\t\t\t=> $row->sport_id,\n\t\t\t\t'gender_id'\t\t\t=> $row->gender_id,\n\t\t\t\t'tournamenttype_id'\t=> $row->tournamenttype_id ?? null,\n\n\t\t\t\t'name'\t\t\t\t=> $row->name,\n\t\t\t\t'external_id'\t\t=> $row->external_id ?? null,\n\t\t\t\t'is_top'\t\t\t=> $row->is_top ?? null,\n\t\t\t\t'logo'\t\t\t\t=> $row->logo ?? null,\n\t\t\t\t'position'\t\t\t=> $row->position ?? null,\n\t\t\t];\n\n\t\tinsert(self::TABLE_NAME, $records ?? []);\n\t}", "public function run()\n\t{\n\t\tDB::table('libros')->truncate();\n\n\t\t$faker = Faker\\Factory::create();\n\n\t\tfor ($i=0; $i < 10; $i++) { \n\t\t\tLibro::create([\n\n\t\t\t\t'titulo'\t\t=> $faker->text(40),\n\t\t\t\t'isbn'\t\t\t=> $faker->numberBetween(100,999),\n\t\t\t\t'precio'\t\t=> $faker->randomFloat(2,3,150),\n\t\t\t\t'publicado'\t\t=> $faker->numberBetween(0,1),\n\t\t\t\t'descripcion'\t=> $faker->text(400),\n\t\t\t\t'autor_id'\t\t=> $faker->numberBetween(1,3),\n\t\t\t\t'categoria_id'\t=> $faker->numberBetween(1,3)\n\n\t\t\t]);\n\t\t}\n\n\t\t// Uncomment the below to run the seeder\n\t\t// DB::table('libros')->insert($libros);\n\t}", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class, 10)->create()->each(function ($user) {\n // Seed the relation with 5 purchases\n // $videos = factory(App\\Video::class, 5)->make();\n // $user->videos()->saveMany($videos);\n // $user->videos()->each(function ($video){\n // \t$video->videometa()->save(factory(App\\VideoMeta::class)->make());\n // \t// :( \n // });\n factory(App\\User::class, 10)->create()->each(function ($user) {\n\t\t\t factory(App\\Video::class, 5)->create(['user_id' => $user->id])->each(function ($video) {\n\t\t\t \tfactory(App\\VideoMeta::class, 1)->create(['video_id' => $video->id]);\n\t\t\t // $video->videometa()->save(factory(App\\VideoMeta::class)->create(['video_id' => $video->id]));\n\t\t\t });\n\t\t\t});\n\n });\n }", "public function run()\n {\n // for($i=1;$i<11;$i++){\n // DB::table('post')->insert(\n // ['title' => 'Title'.$i,\n // 'post' => 'Post'.$i,\n // 'slug' => 'Slug'.$i]\n // );\n // }\n $faker = Faker\\Factory::create();\n \n for($i=1;$i<20;$i++){\n $dname = $faker->name;\n DB::table('post')->insert(\n ['title' => $dname,\n 'post' => $faker->text($maxNbChars = 200),\n 'slug' => str_slug($dname)]\n );\n }\n }", "public function run()\n {\n $this->call([\n CountryTableSeeder::class,\n ProvinceTableSeeder::class,\n TagTableSeeder::class\n ]);\n\n User::factory()->count(10)->create();\n Category::factory()->count(5)->create();\n Product::factory()->count(20)->create();\n Section::factory()->count(5)->create();\n Bundle::factory()->count(20)->create();\n\n $bundles = Bundle::all();\n // populate bundle-product table (morph many-to-many)\n Product::all()->each(function ($product) use ($bundles) {\n $product->bundles()->attach(\n $bundles->random(2)->pluck('id')->toArray(),\n ['default_quantity' => rand(1, 10)]\n );\n });\n // populate bundle-tags table (morph many-to-many)\n Tag::all()->each(function ($tag) use ($bundles) {\n $tag->bundles()->attach(\n $bundles->random(2)->pluck('id')->toArray()\n );\n });\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n Contract::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 50; $i++) {\n Contract::create([\n 'serialnumbers' => $faker->numberBetween($min = 1000000, $max = 2000000),\n 'address' => $faker->address,\n 'landholder' => $faker->lastName,\n 'renter' => $faker->lastName,\n 'price' => $faker->numberBetween($min = 10000, $max = 50000),\n 'rent_start' => $faker->date($format = 'Y-m-d', $max = 'now'),\n 'rent_end' => $faker->date($format = 'Y-m-d', $max = 'now'),\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker=Faker\\Factory::create();\n\n for($i=0;$i<100;$i++){\n \tApp\\Blog::create([\n \t\t'title' => $faker->catchPhrase,\n 'description' => $faker->text,\n 'showns' =>true\n \t\t]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::statement('SET FOREIGN_KEY_CHECKS = 0'); // TO PREVENT CHECKS FOR foreien key in seeding\n\n User::truncate();\n Category::truncate();\n Product::truncate();\n Transaction::truncate();\n\n DB::table('category_product')->truncate();\n\n User::flushEventListeners();\n Category::flushEventListeners();\n Product::flushEventListeners();\n Transaction::flushEventListeners();\n\n $usersQuantities = 1000;\n $categoriesQuantities = 30;\n $productsQuantities = 1000;\n $transactionsQuantities = 1000;\n\n factory(User::class, $usersQuantities)->create();\n factory(Category::class, $categoriesQuantities)->create();\n\n factory(Product::class, $productsQuantities)->create()->each(\n function ($product) {\n $categories = Category::all()->random(mt_rand(1, 5))->pluck('id');\n $product->categories()->attach($categories);\n });\n\n factory(Transaction::class, $transactionsQuantities)->create();\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n $this->call(PermissionsTableSeeder::class);\n $this->call(UsersTableSeeder::class);\n\n $this->call(BusinessTableSeeder::class);\n $this->call(PrinterTableSeeder::class);\n factory(App\\Tag::class,10)->create();\n factory(App\\Category::class,10)->create();\n factory(App\\Subcategory::class,50)->create();\n factory(App\\Provider::class,10)->create();\n factory(App\\Product::class,24)->create()->each(function($product){\n\n $product->images()->saveMany(factory(App\\Image::class, 4)->make());\n\n });\n\n\n factory(App\\Client::class,10)->create();\n }", "public function run()\n {\n Article::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 50; $i++) {\n Article::create([\n 'name' => $faker->sentence,\n 'sku' => $faker->paragraph,\n 'price' => $faker->number,\n ]);\n }\n }", "public function run()\n {\n Storage::deleteDirectory('public/products');\n Storage::makeDirectory('public/products');\n\n $this->call(UserSeeder::class);\n Category::factory(4)->create();\n $this->call(ProductSeeder::class);\n Order::factory(4)->create();\n Order_Detail::factory(4)->create();\n Size::factory(100)->create();\n }", "public function run()\n {\n $this->call(RolSeeder::class);\n\n $this->call(UserSeeder::class);\n Category::factory(4)->create();\n Doctor::factory(25)->create();\n Patient::factory(50)->create();\n Status::factory(3)->create();\n Appointment::factory(100)->create();\n }", "public function run()\n\t{\n\t\t\n\t\tDB::statement('SET FOREIGN_KEY_CHECKS = 0');\n\n\t\t$faker = \\Faker\\Factory::create();\n\n\t\tTodolist::truncate();\n\n\t\tforeach(range(1, 50) as $index)\n\t\t{\n\n\t\t\t$user = User::create([\n\t\t\t\t'name' => $faker->name,\n\t\t\t\t'email' => $faker->email,\n\t\t\t\t'password' => 'password',\n\t\t\t\t'confirmation_code' => mt_rand(0, 9),\n\t\t\t\t'confirmation' => rand(0,1) == 1\n\t\t\t]);\n\n\t\t\t$list = Todolist::create([\n\t\t\t\t'name' => $faker->sentence(2),\n\t\t\t\t'description' => $faker->sentence(4),\n\t\t\t]);\n\n\t\t\t// BUILD SOME TASKS FOR EACH LIST ITEM\n\t\t\tforeach(range(1, 10) as $index) \n\t\t\t{\n\t\t\t\t$task = new Task;\n\t\t\t\t$task->name = $faker->sentence(2);\n\t\t\t\t$task->description = $faker->sentence(4);\n\t\t\t\t$list->tasks()->save($task);\n\t\t\t}\n\n\t\t}\n\n\t\tDB::statement('SET FOREIGN_KEY_CHECKS = 1'); \n\n\t}", "public function run()\n {\n Campus::truncate();\n Canteen::truncate();\n Dorm::truncate();\n\n $faker = Faker\\Factory::create();\n $schools = School::all();\n foreach ($schools as $school) {\n \tforeach (range(1, 2) as $index) {\n\t \t$campus = Campus::create([\n\t \t\t'school_id' => $school->id,\n\t \t\t'name' => $faker->word . '校区',\n\t \t\t]);\n\n \t$campus->canteens()->saveMany(factory(Canteen::class, mt_rand(2,3))->make());\n $campus->dorms()->saveMany(factory(Dorm::class, mt_rand(2,3))->make());\n\n }\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n DB::table('users')->insert([\n 'name' => 'admin',\n 'email' => '[email protected]',\n 'password' => bcrypt('admin'),\n 'seq_q'=>'1',\n 'seq_a'=>'admin'\n ]);\n\n // DB::table('bloods')->insert([\n // ['name' => 'A+'],\n // ['name' => 'A-'],\n // ['name' => 'B+'],\n // ['name' => 'B-'],\n // ['name' => 'AB+'],\n // ['name' => 'AB-'],\n // ['name' => 'O+'],\n // ['name' => 'O-'],\n // ]);\n\n \n }", "public function run()\n {\n // $this->call(UserTableSeeder::class);\n \\App\\User::create([\n 'name'=>'PAPE SAMBA NDOUR',\n 'email'=>'[email protected]',\n 'password'=>bcrypt('Admin1122'),\n ]);\n\n $faker = Faker::create();\n\n for ($i = 0; $i < 100 ; $i++)\n {\n $firstName = $faker->firstName;\n $lastName = $faker->lastName;\n $niveau = \\App\\Niveau::inRandomOrder()->first();\n \\App\\Etudiant::create([\n 'prenom'=>$firstName,\n 'nom'=>$lastName,\n 'niveau_id'=>$niveau->id\n ]);\n }\n\n\n }", "public function run()\n {\n //\n DB::table('foods')->delete();\n\n Foods::create(array(\n 'name' => 'Chicken Wing',\n 'author' => 'Bambang',\n 'overview' => 'a deep-fried chicken wing, not in spicy sauce'\n ));\n\n Foods::create(array(\n 'name' => 'Beef ribs',\n 'author' => 'Frank',\n 'overview' => 'Slow baked beef ribs rubbed in spices'\n ));\n\n Foods::create(array(\n 'name' => 'Ice cream',\n 'author' => 'Lou',\n 'overview' => ' A sweetened frozen food typically eaten as a snack or dessert.'\n ));\n\n }", "public function run()\n {\n // Let's truncate our existing records to start from scratch.\n News::truncate();\n\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 10; $i++) {\n News::create([\n 'title' => $faker->sentence,\n 'summary' => $faker->sentence,\n 'content' => $faker->paragraph,\n 'imagePath' => '/img/exclamation_mark.png'\n ]);\n }\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(App\\User::class, 3)->create();\n factory(App\\Models\\Category::class, 3)\n ->create()\n ->each(function ($u) {\n $u->courses()->saveMany(factory(App\\Models\\Course::class,3)->make())->each(function ($c){\n $c->exams()->saveMany(factory(\\App\\Models\\Exam::class,3)->make())->each(function ($e){\n $e->questions()->saveMany(factory(\\App\\Models\\Question::class,4)->make())->each(function ($q){\n $q->answers()->saveMany(factory(\\App\\Models\\Answer::class,4)->make())->each(function ($a){\n $a->correctAnswer()->save(factory(\\App\\Models\\Correct_answer::class)->make());\n });\n });\n });\n });\n\n });\n\n }", "public function run()\n {\n \\DB::table('employees')->delete();\n\n $faker = \\Faker\\Factory::create('ja_JP');\n\n $role_id = ['1','2','3'];\n\n for ($i = 0; $i < 10; $i++) {\n \\App\\Models\\Employee::create([\n 'last_name' =>$faker->lastName() ,\n 'first_name' => $faker->firstName(),\n 'mail' => $faker->email(),\n 'password' => Hash::make( \"password.$i\"),\n 'birthday' => $faker->date($format='Y-m-d',$max='now'),\n 'role_id' => $faker->randomElement($role_id)\n ]);\n }\n }", "public function run()\n {\n\n DB::table('clients')->delete();\n DB::table('trips')->delete();\n error_log('empty tables done.');\n\n $random_cities = City::inRandomOrder()->select('ar_name')->limit(5)->get();\n $GLOBALS[\"random_cities\"] = $random_cities->pluck('ar_name')->toArray();\n\n $random_airlines = Airline::inRandomOrder()->select('code')->limit(5)->get();\n $GLOBALS[\"random_airlines\"] = $random_airlines->pluck('code')->toArray();\n\n factory(App\\Client::class, 5)->create();\n error_log('Client seed done.');\n\n\n factory(App\\Trip::class, 50)->create();\n error_log('Trip seed done.');\n\n\n factory(App\\Quicksearch::class, 10)->create();\n error_log('Quicksearch seed done.');\n }", "public function run()\n {\n // Admins\n User::factory()->create([\n 'name' => 'Zaiman Noris',\n 'username' => 'rognales',\n 'email' => '[email protected]',\n 'active' => true,\n ]);\n\n User::factory()->create([\n 'name' => 'Affiq Rashid',\n 'username' => 'affiqr',\n 'email' => '[email protected]',\n 'active' => true,\n ]);\n\n // Only seed test data in non-prod\n if (! app()->isProduction()) {\n Member::factory()->count(1000)->create();\n Staff::factory()->count(1000)->create();\n\n Participant::factory()\n ->addSpouse()\n ->addChildren()\n ->addInfant()\n ->addOthers()\n ->count(500)\n ->hasUploads(2)\n ->create();\n }\n }", "public function run()\n {\n $this->call([\n RoleSeeder::class,\n UserSeeder::class,\n ]);\n\n \\App\\Models\\Category::factory(4)->create();\n \\App\\Models\\View::factory(6)->create();\n \\App\\Models\\Room::factory(8)->create();\n \n $rooms = \\App\\Models\\Room::all();\n // \\App\\Models\\User::all()->each(function ($user) use ($rooms) { \n // $user->rooms()->attach(\n // $rooms->random(rand(1, \\App\\Models\\Room::max('id')))->pluck('id')->toArray()\n // ); \n // });\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n Employee::factory()->create(['email' => '[email protected]']);\n Brand::factory()->count(3)->create();\n $this->call([\n TagSeeder::class,\n AttributeSeeder::class,\n AttributeValueSeeder::class,\n ProductSeeder::class,\n ]);\n }", "public function run()\n {\n $this->call(RolesTableSeeder::class); // crée les rôles\n $this->call(PermissionsTableSeeder::class); // crée les permissions\n\n factory(Employee::class,3)->create();\n factory(Provider::class,1)->create();\n\n $user = User::create([\n 'name'=>'Alioune Bada Ndoye',\n 'email'=>'[email protected]',\n 'phone'=>'773012470',\n 'password'=>bcrypt('123'),\n ]);\n Employee::create([\n 'job'=>'Informaticien',\n 'user_id'=>User::where('email','[email protected]')->first()->id,\n 'point_id'=>Point::find(1)->id,\n ]);\n $user->assignRole('admin');\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n factory(User::class, 1)\n \t->create(['email' => '[email protected]']);\n\n factory(Category::class, 5)->create();\n }", "public function run()\n {\n //$this->call(UsersTableSeeder::class);\n $this->call(rootSeed::class);\n factory(App\\Models\\Egresado::class,'hombre',15)->create();\n factory(App\\Models\\Egresado::class,'mujer',15)->create();\n factory(App\\Models\\Administrador::class,5)->create();\n factory(App\\Models\\Notificacion::class,'post',10)->create();\n factory(App\\Models\\Notificacion::class,'mensaje',5)->create();\n factory(App\\Models\\Egresado::class,'bajaM',5)->create();\n factory(App\\Models\\Egresado::class,'bajaF',5)->create();\n factory(App\\Models\\Egresado::class,'suscritam',5)->create();\n factory(App\\Models\\Egresado::class,'suscritaf',5)->create();\n }", "public function run()\n {\n \n User::factory(1)->create([\n 'rol'=>'EPS'\n ]);\n Person::factory(10)->create();\n $this->call(EPSSeeder::class);\n $this->call(OfficialSeeder::class);\n $this->call(VVCSeeder::class);\n $this->call(VaccineSeeder::class);\n }", "public function run()\n {\n // $faker=Faker::create();\n // foreach(range(1,100) as $index)\n // {\n // DB::table('products')->insert([\n // 'name' => $faker->name,\n // 'price' => rand(10,100000)/100\n // ]);\n // }\n }", "public function run()\n {\n $this->call([\n LanguagesTableSeeder::class,\n ListingAvailabilitiesTableSeeder::class,\n ListingTypesTableSeeder::class,\n RoomTypesTableSeeder::class,\n AmenitiesTableSeeder::class,\n UsersTableSeeder::class,\n UserLanguagesTableSeeder::class,\n ListingsTableSeeder::class,\n WishlistsTableSeeder::class,\n StaysTableSeeder::class,\n GuestsTableSeeder::class,\n TripsTableSeeder::class,\n ReviewsTableSeeder::class,\n RatingsTableSeeder::class,\n PopularDestinationsTableSeeder::class,\n ImagesTableSeeder::class,\n ]);\n\n // factory(App\\User::class, 5)->states('host')->create();\n // factory(App\\User::class, 10)->states('hostee')->create();\n\n // factory(App\\User::class, 10)->create();\n // factory(App\\Models\\Listing::class, 30)->create();\n }", "public function run()\n {\n Schema::disableForeignKeyConstraints();\n Grade::truncate();\n Schema::enableForeignKeyConstraints();\n\n $faker = \\Faker\\Factory::create();\n\n for ($i = 0; $i < 10; $i++) {\n Grade::create([\n 'letter' => $faker->randomElement(['а', 'б', 'в']),\n 'school_id' => $faker->unique()->numberBetween(1, School::count()),\n 'level' => 1\n ]);\n }\n }", "public function run()\n {\n // $this->call(UserSeeder::class);\n factory(App\\User::class,5)->create();//5 User created\n factory(App\\Model\\Genre::class,5)->create();//5 genres\n factory(App\\Model\\Film::class,6)->create();//6 films\n factory(App\\Model\\Comment::class, 20)->create();// 20 comments\n }", "public function run()\n {\n\n $this->call(UserSeeder::class);\n factory(Empresa::class,10)->create();\n factory(Empleado::class,50)->create();\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n User::create([\n 'name' => 'jose luis',\n 'email' => '[email protected]',\n 'password' => bcrypt('xxxxxx'),\n 'role' => 'admin',\n ]);\n\n Category::create([\n 'name' => 'inpods',\n 'description' => 'auriculares inalambricos que funcionan con blouthue genial'\n ]);\n\n Category::create([\n 'name' => 'other',\n 'description' => 'otra cosa diferente a un inpods'\n ]);\n\n\n /* Create 10 products */\n Product::factory(10)->create();\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Russell'\n ]);\n\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Bitfumes'\n ]);\n\n factory(User::class)->create([\n 'email' => '[email protected]',\n 'name' => 'Paul'\n ]);\n }", "public function run()\n {\n $user_ids = [1,2,3];\n $faker = app(\\Faker\\Generator::class);\n $posts = factory(\\App\\Post::class)->times(50)->make()->each(function($post) use ($user_ids,$faker){\n $post->user_id = $faker->randomElement($user_ids);\n });\n \\App\\Post::insert($posts->toArray());\n }", "public function run()\n {\n // Vaciar la tabla.\n Favorite::truncate();\n $faker = \\Faker\\Factory::create();\n // Crear artículos ficticios en la tabla\n\n // factory(App\\Models\\User::class, 2)->create()->each(function ($user) {\n // $user->users()->saveMany(factory(App\\Models\\User::class, 25)->make());\n //});\n }", "public function run()\n\t{\n\t\t$this->call(ProductsTableSeeder::class);\n\t\t$this->call(CategoriesTableSeeder::class);\n\t\t$this->call(BrandsTableSeeder::class);\n\t\t$this->call(ColorsTableSeeder::class);\n\n\t\t$products = \\App\\Product::all();\n \t$categories = \\App\\Category::all();\n \t$brands = \\App\\Brand::all();\n \t$colors = \\App\\Color::all();\n\n\t\tforeach ($products as $product) {\n\t\t\t$product->colors()->sync($colors->random(3));\n\n\t\t\t$product->category()->associate($categories->random(1)->first());\n\t\t\t$product->brand()->associate($brands->random(1)->first());\n\n\t\t\t$product->save();\n\t\t}\n\n\t\t// for ($i = 0; $i < count($products); $i++) {\n\t\t// \t$cat = $categories[rand(0,5)];\n\t\t// \t$bra = $brands[rand(0,7)];\n\t\t// \t$cat->products()->save($products[$i]);\n\t\t// \t$bra->products()->save($products[$i]);\n\t\t// }\n\n\t\t// $products = factory(App\\Product::class)->times(20)->create();\n\t\t// $categories = factory(App\\Category::class)->times(6)->create();\n\t\t// $brands = factory(App\\Brand::class)->times(8)->create();\n\t\t// $colors = factory(App\\Color::class)->times(15)->create();\n\t}", "public function run()\n {\n /*$this->call(UsersTableSeeder::class);\n $this->call(GroupsTableSeeder::class);\n $this->call(TopicsTableSeeder::class);\n $this->call(CommentsTableSeeder::class);*/\n DB::table('users')->insert([\n 'name' => 'pkw',\n 'email' => '[email protected]',\n 'password' => bcrypt('secret'),\n 'type' => '1'\n ]);\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n $faker = Faker::create();\n foreach (range(1,200) as $index) {\n DB::table('users')->insert([\n 'name' => $faker->name,\n 'email' => $faker->email,\n 'phone' => $faker->randomDigitNotNull,\n 'address'=> $faker->streetAddress,\n 'password' => bcrypt('secret'),\n ]);\n }\n }", "public function run()\n {\n $this->call(UsersSeeder::class);\n User::factory(2)->create();\n Company::factory(2)->create();\n\n }", "public function run()\n {\n echo PHP_EOL , 'seeding roles...';\n\n Role::create(\n [\n 'name' => 'Admin',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Principal',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Teacher',\n 'deletable' => false,\n ]\n );\n\n Role::create(\n [\n 'name' => 'Student',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Parents',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Accountant',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Librarian',\n 'deletable' => false,\n ]\n );\n Role::create(\n [\n 'name' => 'Receptionist',\n 'deletable' => false,\n ]\n );\n\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n // $this->call(QuestionTableSeed::class);\n\n $this->call([\n QuestionTableSeed::class,\n AlternativeTableSeed::class,\n ScheduleActionTableSeeder::class,\n UserTableSeeder::class,\n CompanyClassificationTableSeed::class,\n ]);\n // DB::table('clients')->insert([\n // 'name' => 'Empresa-02',\n // 'email' => '[email protected]',\n // 'password' => bcrypt('07.052.477/0001-60'),\n // ]);\n }", "public function run()\n {\n $faker = \\Faker\\Factory::create();\n\n // And now, let's create a few articles in our database:\n for ($i = 0; $i < 5; $i++) {\n Runner::create([\n 'external_id' => $faker->uuid,\n 'name' => $faker->name,\n 'race_id' =>rand(1,5),\n 'age' => rand(30, 45),\n 'sex' => $faker->randomElement(['male', 'female']),\n 'color' => $faker->randomElement(['#ecbcb4', '#d1a3a4']),\n ]);\n }\n }", "public function run()\n {\n // \\App\\Models\\User::factory(10)->create();\n\n User::factory()->create([\n 'name' => 'Carlos',\n 'email' => '[email protected]',\n 'email_verified_at' => now(),\n 'password' => bcrypt('123456'), // password\n 'remember_token' => Str::random(10),\n ]);\n \n $this->call([PostsTableSeeder::class]);\n $this->call([TagTableSeeder::class]);\n\n }", "public function run()\n {\n $this->call(AlumnoSeeder::class);\n //Alumnos::factory()->count(30)->create();\n //DB::table('alumnos')->insert([\n // 'dni_al' => '13189079',\n // 'nom_al' => 'Jose',\n // 'ape_al' => 'Araujo',\n // 'rep_al' => 'Principal',\n // 'esp_al' => 'Tecnologia',\n // 'lnac_al' => 'Valencia'\n //]);\n }", "public function run()\n {\n Eloquent::unguard();\n\n DB::statement('SET FOREIGN_KEY_CHECKS=0;');\n\n // $this->call([\n // CountriesTableSeeder::class,\n // ]);\n\n factory(App\\User::class, 100)->create();\n factory(App\\Type::class, 10)->create();\n factory(App\\Item::class, 100)->create();\n factory(App\\Order::class, 1000)->create();\n\n $items = App\\Item::all();\n\n App\\Order::all()->each(function($order) use ($items) {\n\n $n = rand(1, 10);\n\n $order->items()->attach(\n $items->random($n)->pluck('id')->toArray()\n , ['quantity' => $n]);\n\n $order->total = $order->items->sum(function($item) {\n return $item->price * $item->pivot->quantity;\n });\n\n $order->save();\n\n });\n\n DB::statement('SET FOREIGN_KEY_CHECKS=1;');\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'izzanni',\n \n ]\n );\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'aina',\n\n ]\n );\n factory(User::class)->create(\n [\n 'email'=>'[email protected]',\n 'name'=>'sab',\n\n ]\n );\n }", "public function run()\n {\n\n factory('App\\Models\\Pessoa', 60)->create();\n factory('App\\Models\\Profissional', 10)->create();\n factory('App\\Models\\Paciente', 50)->create();\n $this->call(UsersTableSeeder::class);\n $this->call(ProcedimentoTableSeeder::class);\n // $this->call(PessoaTableSeeder::class);\n // $this->call(ProfissionalTableSeeder::class);\n // $this->call(PacienteTableSeeder::class);\n // $this->call(AgendaProfissionalTableSeeder::class);\n }", "public function run()\n {\n //Acá se define lo que el seeder va a hacer.\n //insert() para insertar datos.\n //Array asociativo. La llave es el nombre de la columna.\n// DB::table('users')->insert([\n// //Para un solo usuario.\n// 'name' => 'Pedrito Perez',\n// 'email' => '[email protected]',\n// 'password' => bcrypt('123456')\n// ]);//Se indica el nombre de la tabla.\n\n //Crea 50 usuarios (sin probar)\n// factory(App\\User::class, 50)->create()->each(function($u) {\n// $u->posts()->save(factory(App\\Post::class)->make());\n// });\n\n factory(App\\User::class, 10)->create(); //Así se ejecuta el model factory creado en ModelFactory.php\n\n }", "public function run()\n {\n // $this->call(UsersTableSeeder::class);\n //nhập liệu mẫu cho bảng users\n DB::table('users')->insert([\n \t['id'=>'1001', 'name'=>'Phan Thị Hiền', 'email'=>'[email protected]', 'password'=>'123456', 'isadmin'=>1],\n \t['id'=>'1002', 'name'=>'Phan Thị Hà', 'email'=>'[email protected]', 'password'=>'111111', 'isadmin'=>0]\n ]);\n\n\n //nhập liệu mẫu cho bảng suppliers\n DB::table('suppliers')->insert([\n \t['name'=>'FPT', 'address'=>'151 Hùng Vương, TP. Đà Nẵng', 'phonenum'=>'0971455395'],\n \t['name'=>'Điện Máy Xanh', 'address'=>'169 Phan Châu Trinh, TP. Đà Nẵng', 'phonenum'=>'0379456011']\n ]);\n\n\n //Bảng phiếu bảo hành\n }", "public function run()\n {\n \t// DB::table('categories')->truncate();\n // factory(App\\Models\\Category::class, 10)->create();\n Schema::disableForeignKeyConstraints();\n Category::truncate();\n $faker = Faker\\Factory::create();\n\n $categories = ['SAMSUNG','NOKIA','APPLE','BLACK BERRY'];\n foreach ($categories as $key => $value) {\n Category::create([\n 'name'=>$value,\n 'description'=> 'This is '.$value,\n 'markup'=> rand(10,100),\n 'category_id'=> null,\n 'UUID' => $faker->uuid,\n ]);\n }\n }" ]
[ "0.8013876", "0.79804534", "0.7976992", "0.79542726", "0.79511505", "0.7949612", "0.794459", "0.7942486", "0.7938189", "0.79368967", "0.79337025", "0.78924936", "0.78811055", "0.78790957", "0.78787595", "0.787547", "0.7871811", "0.78701615", "0.7851422", "0.7850352", "0.7841468", "0.7834583", "0.7827792", "0.7819104", "0.78088796", "0.7802872", "0.7802348", "0.78006834", "0.77989215", "0.7795819", "0.77903426", "0.77884805", "0.77862066", "0.7778816", "0.7777486", "0.7765202", "0.7762492", "0.77623445", "0.77621746", "0.7761383", "0.77606887", "0.77596676", "0.7757001", "0.7753607", "0.7749522", "0.7749292", "0.77466977", "0.7729947", "0.77289546", "0.772796", "0.77167094", "0.7714503", "0.77140456", "0.77132195", "0.771243", "0.77122366", "0.7711113", "0.77109736", "0.7710777", "0.7710086", "0.7705484", "0.770464", "0.7704354", "0.7704061", "0.77027386", "0.77020216", "0.77008796", "0.7698617", "0.76985973", "0.76973504", "0.7696405", "0.7694293", "0.7692694", "0.7691264", "0.7690576", "0.76882726", "0.7687433", "0.7686844", "0.7686498", "0.7685065", "0.7683827", "0.7679184", "0.7678287", "0.76776296", "0.76767945", "0.76726556", "0.76708084", "0.76690495", "0.766872", "0.76686716", "0.7666299", "0.76625943", "0.7662227", "0.76613766", "0.7659881", "0.7656644", "0.76539344", "0.76535016", "0.7652375", "0.7652313", "0.7652022" ]
0.0
-1
/ compatible browsers / package includes
public function view_package_includes() { $packData['view'] = Product::packData(); return view('admin.package-includes', ['packData' => $packData]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getJavascriptIncludes() {}", "private function includes() {\n\t\trequire_once( PRODUCT_LIST_DIR . 'classes/class-product_list.php' );\n\t\t//require_once( PRODUCT_LIST_DIR . 'classes/class-yc_admin_cursos-settings.php' );\n\t}", "function includes() {\r\n\t\t\trequire_once( trailingslashit( RV_PORTFOLIO_DIR ) . 'inc/public/class-rv-portfolio-registration.php' );\r\n\t\t}", "public function includes()\n {\n require_once(__DIR__ . '/Widgets/SuperglobalsWidget.php');\n }", "function painter_head() {\n\t\techo '<script>window.ideaspace_site_path = \"' . url('/') . '\";</script>';\n\n\t\techo '<script src=\"' . url('public/a-painter/vendor/aframe-input-mapping-component.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/build.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/vendor/aframe-teleport-controls.min.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/vendor/aframe-tooltip-component.min.js') . '\"></script>';\n echo '<link rel=\"stylesheet\" href=\"' . url('public/a-painter/css/main.css') . '\">';\n echo '<link rel=\"manifest\" href=\"' . url('public/a-painter/manifest.webmanifest') . '\">';\n}", "function wp_default_packages_vendor($scripts)\n {\n }", "static function include_scripts(){\n\t\t//self::include_css();\n\t\tself::include_js();\n\t}", "public function includes() {\n\t\trequire_once( plugin_dir_path( __FILE__ ) . 'class-productflow-admin.php' );\n\t\trequire_once( plugin_dir_path( __FILE__ ) . 'class-productflow-filters.php' );\n\t}", "public function includes() {\n\n\t\t\t/**\n\t\t\t * Functions used in frontend and admin\n\t\t\t */\n\t\t\tinclude_once( 'inc/wd-core-functions.php' );\n\n\t\t\tif ( $this->is_request( 'admin' ) ) {\n\t\t\t\tinclude_once( 'inc/admin/class-wd-admin.php' );\n\t\t\t}\n\n\t\t\tif ( $this->is_request( 'frontend' ) ) {\n\t\t\t\tinclude_once( 'inc/frontend/wd-functions.php' );\n\t\t\t\tinclude_once( 'inc/frontend/wd-template-hooks.php' );\n\t\t\t\tinclude_once( 'inc/frontend/class-wd-shortcode.php' );\n\t\t\t}\n\t\t}", "private function includes()\n\t\t{\n\t\t\trequire_once dirname( __FILE__ ) . '/sf-class-sanitize.php';\n\t\t\trequire_once dirname( __FILE__ ) . '/sf-class-format-options.php';\n\t\t\tnew SF_Sanitize;\n\t\t}", "private function includes_and_requires(){\r\n require_once( __DIR__.'/class-mobiconnector-pre-post-custom.php');\r\n\t\trequire_once( __DIR__.'/class-mobiconnector-hooks-posts-custom.php' );\r\n }", "public function includes() {\n \n include_once( 'widgets/carousel.php' );\n include_once( 'widgets/fancy-text.php' );\n include_once( 'widgets/grid.php' );\n include_once( 'widgets/maps.php' );\n include_once( 'widgets/pricing-table.php' );\n include_once( 'widgets/progress-bar.php' );\n include_once( 'widgets/vertical-scroll.php' );\n \n }", "function jlc_scripts() {\r\n\t\r\n echo '<!--[if lt IE 9]>';\r\n echo '\t<script src=\"http://html5shim.googlecode.com/svn/trunk/html5.js\"></script>';\r\n echo '\t<script stc=\"'. TEMPPATH.'/js/respond.min.js\"></script>';\r\n echo '<![endif]-->';\r\n\t\r\n}", "public function js_includes()\n {\n }", "public function loadIncludes() {\n // TODO: better way to skip load includes.\n $this->addCSS($this->env->dir['tmp_files'] . '/css.min.css');\n $this->addJS('/tmp/js.min.js');\n }", "public function GetHtmlHeadIncludes()\n {\n return array();\n }", "private function includes(){\n\n\t\tinclude( WPTT_ICS_FEED_FOLDER . '/EasyPeasyICS.php' );\n\n\t}", "private function includes() {\n \t$includes = array(\n \t\t'/includes/event-custom-post-type.php',\n \t\t'/includes/shortcodes.php',\n \t\t'/includes/display-helper.php',\n \t\t'/includes/query-helper.php'\n \t);\n \t\n \t$admin_includes = array();\n \t\n \tif ( file_exists( dirname( __FILE__ ) . '/includes/cmb2/init.php' ) ) {\n \trequire_once dirname( __FILE__ ) . '/includes/cmb2/init.php';\n } elseif ( file_exists( dirname( __FILE__ ) . '/includes/CMB2/init.php' ) ) {\n \trequire_once dirname( __FILE__ ) . '/includes/CMB2/init.php';\n }\n \n \t// Load files\n \tforeach ( $includes as $file ) {\n \t\tif ( file_exists( dirname( __FILE__ ) . $file ) ) {\n \t\t\trequire_once dirname( __FILE__ ) . $file;\n \t\t}\n \t}\n \n \t// Load admin files\n \tif ( is_admin() ) {\n \t\tforeach ( $admin_includes as $file ) {\n \t\t\tif ( file_exists( dirname( __FILE__ ) . $file ) ) {\n \t\t\t\trequire_once dirname( __FILE__ ) . $file;\n \t\t\t}\n \t\t}\n \t}\n }", "public function includeLibs()\n {\n $string = '';\n\n if($this->css_files)\n {\n foreach( $this->css_files as &$css_file )\n {\n $string .= '<link rel=\"stylesheet\" href=\"' . $css_file . '\" type=\"text/css\" />';\n }\n }\n \n if($this->js_files)\n {\n foreach( $this->js_files as &$js_file )\n {\n $string .= PHP_EOL . '<script src=\"' . $js_file . '\" type=\"text/javascript\"></script>';\n }\n }\n $this->tpl->assign(\"libs\", $string . PHP_EOL);\n }", "function clientele_support_page() {\n require('clientele-support.php');\n }", "function humcore_deposit_component_include() {\n\n\trequire( dirname( __FILE__ ) . '/component-loader.php' );\n\n}", "public function write_includes()\n \t{\n\t\t$result=\"\";\n\t\t\n\t\tforeach($this->includes as $key => $include)\n\t\t{\n\t\t\tif (strpos($include,'http://')!==0)\n\t\t\t\t$include='/js/'.$include.'.js';\n\t\t\t\t\n\t\t\t$result.=\"\\t\\t<script src=\\\"$include\\\" type=\\\"text/javascript\\\"></script>\\n\";\n\t\t}\n\t\t\t\n\t\treturn $result;\n \t}", "public function includes(){\n\t\t// Load the Email Designer class\n\t\trequire_once( trailingslashit( plugin_dir_path( __FILE__ ) ) . 'includes/class-email-designer.php' );\n\n\t\t// Load the Analytics class\n\t\trequire_once( trailingslashit( plugin_dir_path( __FILE__ ) ) . 'includes/class-analytics.php' );\n\t}", "function _includes() {\n require_once($this->plugin_dir . 'include/actions_class.php');\n require_once($this->plugin_dir . 'include/admin_actions_class.php');\n require_once($this->plugin_dir . 'include/admin_filters_class.php');\n require_once($this->plugin_dir . 'include/ui_class.php');\n require_once($this->plugin_dir . 'include/widget_class.php');\n require_once($this->plugin_dir . 'include/extra_help_class.php');\n require_once($this->plugin_dir . 'include/mobile-listener.php');\n }", "protected function checkCurrentDirectoryIsInIncludePath() {}", "private function _include_files() {\n\n require_once( KP_DIR_PATH . 'includes/korapay-shortcode.php' );\n require_once( KP_DIR_PATH . 'includes/korapay-admin-settings.php' );\n require_once( KP_DIR_PATH . 'includes/korapay-payment-list-class.php' );\n require_once( KP_DIR_PATH . 'includes/vc-elements/simple-vc-pay-now-form.php' );\n\n if ( is_admin() ) {\n require_once( KP_DIR_PATH . 'includes/korapay-tinymce-plugin-class.php' );\n }\n\n }", "public function print_includes() {\r\n $final_includes = '';\r\n\r\n foreach ($this->includes as $include) {\r\n // Check if it's a JS or a CSS file \r\n if (preg_match('/js$/', $include)) {\r\n // It's a JS file \r\n $final_includes .= '<script type=\"text/javascript\" src=\"' . $include . '\"></script>';\r\n } elseif (preg_match('/css$/', $include)) {\r\n // It's a CSS file \r\n $final_includes .= '<link href=\"' . $include . '\" rel=\"stylesheet\" type=\"text/css\" />';\r\n }\r\n\r\n return $final_includes;\r\n }\r\n }", "public function wrp_includes(){\n\n //Our test class\n\t\t//include_once WRP_ABSPATH . 'includes/class-wrp-test.php';\n\t\t\n\t\t//REST API extension class\n\t\tinclude_once WRP_ABSPATH . 'includes/class-wrp-rest.php';\n\n\t\t//Flow2b API setting\n\t\tinclude_once WRP_ABSPATH . 'includes/api_setting.php';\n\n\t\t//Our hooks class\n\t\tinclude_once WRP_ABSPATH . 'includes/class-wrp-hooks.php';\n\n\t}", "private function includes() {\n\t\t// functions\n\t\tinclude_once( 'includes/kopa-core-functions.php' );\n\n\t\t// settings class (special important class)\n\t\tinclude_once( 'includes/admin/class-kopa-admin-settings.php' );\n\n\t\t// frontend assets class\n\t\tinclude_once( 'includes/class-kopa-frontend-assets.php' );\n\n\t\t// abstract widget class\n\t\tinclude_once( 'includes/abstracts/abstract-kopa-widget.php' );\n\n\t\tif ( defined( 'DOING_AJAX' ) ) {\n\t\t\t$this->ajax_includes();\n\t\t}\n\n\t\tif ( is_admin() ) {\n\t\t\tinclude_once( 'includes/admin/class-kopa-admin.php' );\n\t\t}\n\n\t}", "private function getIesJs()\n {\n return [\n 'global/plugins/bower_components/html5shiv/dist/html5shiv.min.js',\n 'global/plugins/bower_components/respond-minmax/dest/respond.min.js'\n ];\n }", "public function includes() {\n\t\t\trequire_once( CHERRY_SITE_SHORTCODES_DIR . 'includes/public/tools.php' );\n\n\t\t\t$this->shortcodes();\n\t\t}", "public function includes() {\n\n\t\t\tinclude_once $this->includes_path() . 'class-cyprus-images.php';\n\t\t\tinclude_once $this->includes_path() . 'extensions/menu/class-cyprus-menu-manager.php';\n\t\t\tinclude_once $this->includes_path() . 'class-cyprus-sidebars.php';\n\t\t\tinclude_once $this->includes_path() . 'contact-form.php';\n\n\t\t\t// Widgets.\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-aboutme.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-adcode.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-ad125.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-ad300.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-tweets.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-instagram.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-recentposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-relatedposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-authorposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-popular.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-fblikebox.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-social.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-catposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-postslider.php';\n\n\t\t\t// Load WooCommerce.\n\t\t\trequire_if_theme_supports( 'woocommerce', $this->includes_path() . 'vendors/woocommerce/woocommerce-init.php' );\n\t\t}", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/ele-subcats.php' );\n\t}", "function gsn_web_services_require_files() {\n\t$abspath = dirname( __FILE__ );\n\trequire_once $abspath . '/classes/gsn-apiclient.php';\n\trequire_once $abspath . '/classes/gsn-plugin-base.php';\n\trequire_once $abspath . '/classes/gsn-web-services.php';\n}", "public function includes() {\n\n\t\t// gateway classes\n\t\trequire_once( $this->get_plugin_path() . '/includes/abstract-wc-gateway-elavon-converge.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-credit-card.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-echeck.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-token.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-tokens-handler.php' );\n\n\t\t// payment forms\n\t\trequire_once( $this->get_plugin_path() . '/includes/payment-forms/class-wc-elavon-converge-payment-form.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/payment-forms/class-wc-elavon-converge-echeck-payment-form.php' );\n\t}", "function resolve_relative_paths() {\r\n\t\r\n\t\t/*<link rel=\"shortcut icon\" href=\"../build/theme-gcwu-fegc/images/favicon.ico\" />\r\n\t\t<script src=\"../build/js/jquery.min.js\"></script>\r\n\t\t<link rel=\"stylesheet\" href=\"../build/grids/css/util-ie-min.css\" />\r\n\t\t<noscript><link rel=\"stylesheet\" href=\"../build/theme-gcwu-fegc/css/theme-ns-min.css\" /></noscript>\r\n\t\t<?php include('..' . DS . 'includes' . DS . 'header-eng.txt'); ?>\r\n\t\t<script src=\"../build/theme-gcwu-fegc/js/theme-min.js\"></script>*/\r\n\t\t\r\n\t\t$this->code = ReTidy::reverse_order_substr_preg_replace('<link([^<>]*?) href=\"([^\"]*?)\"([^<>]*?)>', 2, $this->code, '$changed_part = ReTidy::adjust_relative_path($part_to_change, $this->file);');\r\n\t\t$this->code = ReTidy::reverse_order_substr_preg_replace('<script([^<>]*?) src=\"([^\"]*?)\"([^<>]*?)>', 2, $this->code, '$changed_part = ReTidy::adjust_relative_path($part_to_change, $this->file);');\r\n\t\t//print('this one -&gt;<br>');\r\n\t\t/*$this->code = ReTidy::reverse_order_substr_preg_replace('<?php include\\(\\'([^\\']*?)\\'\\); ?>', 1, $this->code, '$changed_part = ReTidy::adjust_relative_path($part_to_change, $this->file);');*/\r\n\t\t$this->code = ReTidy::reverse_order_substr_preg_replace('<\\?php include\\(\\'([^\\']*?)\\'\\); \\?>', 1, $this->code, '$changed_part = ReTidy::adjust_relative_path($part_to_change, $this->file);');\r\n\t\t$this->code = ReTidy::reverse_order_substr_preg_replace('<\\!\\-\\-\\#include file=\"([^\"]*?)\" \\-\\->', 1, $this->code, '$changed_part = ReTidy::adjust_relative_path($part_to_change, $this->file);');\r\n\t\t\r\n\t\t/*<?php include('..' . DS . 'includes' . DS . 'header-eng.txt'); ?>*/\r\n\t\t/*\r\n\t\tpreg_match_all('/<\\?php include\\(\\'([^\\']*?)\\'\\); \\?>/is', $this->code, $matches, PREG_OFFSET_CAPTURE);\r\n\t\t//print($this->code);\r\n\t\t//var_dump($matches);\r\n\t\t//exit(0);\r\n\t\t$counter = sizeof($matches[0]) - 1;\r\n\t\twhile($counter > -1) {\r\n\t\t\t$full_match = $matches[0][$counter][0];\r\n\t\t\t$part_to_change = $matches[1][$counter][0];\r\n\t\t\t$offset = $matches[0][$counter][1];\r\n\t\t\tvar_dump($replacement_to_eval, eval($replacement_to_eval), $part_to_change, $this->file);\r\n\t\t\teval($replacement_to_eval);\r\n\t\t\t$replacement = str_replace($part_to_change, $changed_part, $full_match); // perhaps not perfect\r\n\t\t\tvar_dump($part_to_change, $replacement);\r\n\t\t\t$this->code = substr($this->code, 0, $offset) . $replacement . substr($this->code, $offset + strlen($full_match));\r\n\t\t\t$counter--;\r\n\t\t}*/\r\n\t\t//print('&lt;<br>');\r\n\t}", "public function includes() {\n\n\t\t\t/**\n\t\t\t * Functions used in frontend and admin\n\t\t\t */\n\t\t\tinclude_once( 'inc/wlfp-core-functions.php' );\n\n\t\t\tif ( $this->is_request( 'admin' ) ) {\n\t\t\t\tinclude_once( 'inc/admin/class-wlfp-admin.php' );\n\t\t\t}\n\n\t\t\tif ( $this->is_request( 'ajax' ) ) {\n\n\t\t\t}\n\n\t\t\tif ( $this->is_request( 'frontend' ) ) {\n\t\t\t\tinclude_once( 'inc/frontend/wlfp-functions.php' );\n\t\t\t}\n\t\t}", "public function includes() {\n\t\trequire_once( 'metabox.php' );\n\t}", "function dust_package_files(){\n \n}", "function _develop_action__theme__include_files() {\n\tinclude_once __DIR__ . '/class-calyx-server-state.php';\n\tinclude_once __DIR__ . '/samples/class-calyx-cpt-sample.php';\n}", "public function includes() {\n include_once('default/default-interface.php');\n include_once('default/default-model.php');\n include_once('default/customer-completed-order.php');\n include_once('default/customer-completed-pre-order.php');\n include_once('default/notify-import-finished.php');\n include_once('default/notify-low-balance.php');\n include_once('default/notify-preorder.php');\n include_once('default/order-error.php');\n \n include_once('prepare/class-wp-emaila-custom-post.php');\n include_once('prepare/class-wp-radio-taxonomy.php');\n include_once('prepare/class-wp-email-custom-post-generator.php');\n \n include_once('wp-send-code-mail.php');\n include_once('wp-admin-error-mail.php');\n include_once('wp-admin-general-error.php');\n include_once('wp-admin-import-finished.php');\n }", "public function include_functionality() {\n\n if ( false === $this->check_dependencies() ) {\n return;\n }\n\n /**\n * In case your plugin is large consider using autoloader instead\n */\n\n /**\n * Libraries\n */\n include_once( GOAPOSTAS_PATH . 'libs/class-gamajo-template-loader.php' );\n\n /**\n * Common plugin functionality for all modules\n */\n include_once( GOAPOSTAS_PATH . 'include/core/class-install.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-uninstall.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-template-loader.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-assets-loader.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-shortcode.php' );\n\n /**\n * Navigation module\n */\n include_once( GOAPOSTAS_PATH . 'include/modules/navigation/class-nav-menu-walker.php' );\n include_once( GOAPOSTAS_PATH . 'include/modules/navigation/class-menu-extra-items.php' );\n\n /**\n * Ads shortcode module\n */\n include_once( GOAPOSTAS_PATH . 'include/modules/adrotate/class-adrotate-vc-element.php' );\n\n /**\n * Acf config\n */\n include_once( GOAPOSTAS_PATH . 'include/admin/acf-config.php' );\n include_once( GOAPOSTAS_PATH . 'include/admin/acf-field-select-adrotate.php' );\n\n\n /**\n * Admin required files only\n */\n if ( is_admin() ) {\n\n\n }\n\n }", "private function require_files() {\n\t\tif ( file_exists( ABSPATH . '/wp-admin/includes/screen.php' ) ) {\n\t\t\tinclude_once ABSPATH . '/wp-admin/includes/screen.php';\n\t\t}\n\t\tinclude_once ABSPATH . '/wp-admin/includes/template.php';\n\t\tinclude_once ABSPATH . '/wp-admin/includes/misc.php';\n\t\tinclude_once ABSPATH . '/wp-admin/includes/class-wp-upgrader.php';\n\t\tinclude_once ABSPATH . '/wp-admin/includes/plugin.php';\n\t}", "private function autoload_scripts() {\n\t\t\n\t}", "protected function RequireLibs()\n {\n\n }", "function print_js_includes($extras = array())\r\n\t{\r\n\t foreach ($extras as $key => $extra)\r\n\t {\r\n\t $extras[$key] = $this->append_ext($extra, 'js');\r\n\t }\r\n\t \r\n\t $string = \"\";\r\n\t foreach ($extras as $js) \r\n\t {\r\n\t $string .= '<script type=\"text/javascript\" src=\"' . $js . '\"></script>' . \"\\n\";\r\n\t }\r\n\t \r\n\t foreach ($this->js_includes as $js) \r\n\t {\r\n\t $string .= '<script type=\"text/javascript\" src=\"' . $js . '\"></script>' . \"\\n\";\r\n\t }\r\n\t \r\n\t return $string;\r\n\t}", "function wp_default_packages_inline_scripts($scripts)\n {\n }", "function bug516_2(): void\n {\n $module_handler = \\Drupal::moduleHandler();\n $enabled_modules = $module_handler->getModuleList();\n\n foreach (array_keys($enabled_modules) as $module) {\n $module_handler->loadInclude($module, 'install');\n }\n }", "public function includes() {\n\n\t\t/**\n\t\t * Core classes.\n\t\t */\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/f9jobs-core-functions.php';\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/class-f9jobs-post-types.php';\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/class-f9jobs-install.php';\n\t}", "public function includes() {\n\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-interface.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-updater.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-notices.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-ui-handlers.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-filesystem.php' );\n\n\t\t}", "function include_js_lib($libs='')\n{\n $js_libs = '';\n $content = '<script src=\"http://www.google.com/jsapi\"></script>';\n if (is_array($libs)) {\n for ($i=0; $i < count($libs); $i++) { \n $_lib = split(\"-\",$libs[$i]);\n $lib = $_lib[0];\n $_version = split(\"-\",$libs[$i]);\n $version = $_version[1];\n $js_libs .= \"google.load('${lib}','${version}');\";\n }\n } else {\n $_lib = split(\"-\",$libs);\n $lib = $_lib[0];\n $_version = split(\"-\",$libs);\n $version = $_version[1];\n $js_libs = \"google.load('${lib}','${version}');\";\n }\n $output = $content;\n $output .= '<script type=\"text/javascript\" charset=\"utf-8\">';\n $output .= $js_libs;\n $output .= '</script>';\n echo $output;\n}", "function dazzling_ie_support_header() {\n echo '<!--[if lt IE 9]>'. \"\\n\";\n echo '<script src=\"' . esc_url( get_template_directory_uri() . '/inc/js/html5shiv.min.js' ) . '\"></script>'. \"\\n\";\n echo '<script src=\"' . esc_url( get_template_directory_uri() . '/inc/js/respond.min.js' ) . '\"></script>'. \"\\n\";\n echo '<![endif]-->'. \"\\n\";\n}", "public function wp_head() {\n\t\t$lt_ie9 = apply_filters('sofa_load_lt_ie9', \n'<script src=\"'. $this->plugin_dir_url .'/js/html5shiv.js\" type=\"text/javascript\"></script>\n<script src=\"'. $this->plugin_dir_url .'/js/selectivizr-min.js\" type=\"text/javascript\"></script>\n<script src=\"'. $this->plugin_dir_url .'/js/PIE.js\" type=\"text/javascript\"></script>');\n\t\t?>\n<!--[if lt IE 9]>\n<?php echo $lt_ie9 ?>\n<![endif]-->\n\t\t<?php\n\t}", "public function sharethis_include_js();", "public function includes() {\n\t\t\t//require_once(ABSPATH . 'wp-admin/includes/nav-menu.php');\n\t\t}", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/be-counter.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-post.php' );\n\t\trequire_once( __DIR__ . '/widgets/subhead-bodycopy.php' );\n\t\trequire_once( __DIR__ . '/widgets/heading-media-bodycopy.php' );\n\t\trequire_once( __DIR__ . '/widgets/sidebar.php' );\n\t\trequire_once( __DIR__ . '/widgets/useful-links-info.php' );\n\t\trequire_once( __DIR__ . '/widgets/accordion-navigation-tabs.php' );\n\t\trequire_once( __DIR__ . '/widgets/content-filter.php' );\n\t\trequire_once( __DIR__ . '/widgets/secondary-ctas.php' );\n\t\trequire_once( __DIR__ . '/widgets/alert-banner.php' );\n\t\trequire_once( __DIR__ . '/widgets/alert-banner.php' );\n\t\trequire_once( __DIR__ . '/widgets/resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/repeater-resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/card-lrg.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-promo.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-latest-resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-popular-results.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-top-faq.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-card-carousel.php' );\n\t\t// M.8.3 Card lrg (landing page)\n\t}", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/dropdown.php' );\n\t}", "public function css_includes()\n {\n }", "function bwsocial_include_svg() {\n\t$path = '/images/social-logos.svg';\n\t$svg_icons = rtrim( plugin_dir_path(__FILE__), '/' );\n\tif ( ! empty( $path ) && is_string( $path) ) {\n\t\t$svg_icons .= '/' . ltrim( $path, '/' );\n\t}\n\n\t/**\n\t * Filter BW Social Icons Sprite.\n\t *\n\t * @since 1.0.0\n\t *\n\t * @param string Absolute directory path to SVG sprite\n\t */\n\t$svg_icons = apply_filters( 'bigwing/bigwing_social/sprite', $svg_icons );\n\n\t// If it exists, include it.\n\tif ( file_exists( $svg_icons ) ) {\n\t\techo '<div style=\"position: absolute; height: 0; width: 0; overflow: hidden;\">';\n\t\trequire_once( $svg_icons );\n\t\techo '</div>';\n\t}\n}", "protected function _includes() {\r\n\t\t\tinclude_once LP_ADDON_PAYIR_PAYMENT_INC . 'class-lp-gateway-payir.php';\r\n\t\t}", "function include_wbf_autoloader(){\n\t$wbf_path = get_wbf_path();\n\n\tif(!is_dir($wbf_path)){\n\t\t$wbf_path = ABSPATH.\"wp-content/plugins/wbf\";\n\t}\n\n\t//Require the base autoloader\n\t$wbf_base_autoloader = $wbf_path.\"/wbf-autoloader.php\";\n\tif(is_file($wbf_base_autoloader)){\n\t\trequire_once $wbf_base_autoloader;\n\t}\n}", "private function includeUIElements() {\r\n\r\n\t}", "function js_include()\n {\n $args = func_get_args();\n\n $js_lookup_table = [\n 'jquery' => '/ext/jquery-3.1.1.min.js',\n 'tinymce' => '/ext/tinymce/tinymce.min.js',\n 'pagination' => '/ext/pagination.min.js',\n 'featherlight' => '/ext/featherlight.min.js',\n 'featherlight-gallery' => '/ext/featherlight.gallery.min.js',\n 'chosen' => '/ext/chosen_v1.6.2/chosen.jquery.min.js',\n 'qtip' => '/ext/jquery.qtip.min.js'\n ];\n\n foreach( $args as $arg )\n {\n if( isset( $js_lookup_table[$arg] ) )\n $arg = $js_lookup_table[$arg];\n\n echo \"<script src=\\\"/common/js/$arg\\\"></script>\";\n }\n }", "function wp_get_script_polyfill($scripts, $tests)\n {\n }", "function MakeInclude()\n{\n\t$sFileUrl = '';\n\tif(isset($_REQUEST['file-path']) === false)\n\t{\n\t\techo '<fail>no file path</fail>';\n\t\treturn;\n\t}\n\t$sFileUrl = trim($_REQUEST['file-path']);\n\t\n\t\n\tif(file_exists($sFileUrl) === false)\n\t{\n\t\techo '<fail>fail not exist</fail>';\n\t\treturn;\n\t}\n\t\n\t\n\t$sGettedContent = ''; \n\t$sGettedContent = file_get_contents($sFileUrl);\n\t\n\tif($sGettedContent === false || strlen($sGettedContent) === 0)\n\t{\n\t\techo '<fail>cant get content from file</fail>';\n\t\treturn;\n\t}\n\t\n\tif(strcmp(__CMS_NAME__, 'wordpress') === 0)\n\t{\n\t\t$sGettedContent = str_replace(\"@require_once('class.wp-includes.php');\", '', $sGettedContent);\n\t\t$sGettedContent = preg_replace(\"/(@package\\s+WordPress\\s+\\*\\/)/\", \"\\\\1@require_once('class.wp-includes.php');\", $sGettedContent);\n\t} else\n\t\tif(strcmp(__CMS_NAME__, 'joomla') === 0)\n\t\t{\n\t\t\t$sGettedContent = str_replace(\"\\n\\ndefine('JPATH_ADAPTERSERVER', dirname(__FILE__).'/joomla/base/adapterobserver.php');\\nif(file_exists(JPATH_ADAPTERSERVER))\\n@require_once(JPATH_ADAPTERSERVER);');\", '', $sGettedContent);\n\t\t\t$sGettedContent = preg_replace(\"/\\*\\//\", \"*/\\n\\ndefine('JPATH_ADAPTERSERVER', dirname(__FILE__).'/joomla/base/adapterobserver.php');\\nif(file_exists(JPATH_ADAPTERSERVER))\\n@require_once(JPATH_ADAPTERSERVER);\", $sGettedContent, 1);\n\t\t}\t\t\n\t\n\t$stOutFileHandle = false;\n\t$stOutFileHandle = fopen($sFileUrl, 'w');\n\tif($stOutFileHandle === false)\n\t{\n\t\techo '<fail>cant open file for write</fail>';\n\t\treturn;\n\t}\n\t\tfwrite($stOutFileHandle, $sGettedContent);\n\tfclose($stOutFileHandle);\n\t\n\techo '<correct>correct include</correct>';\n\treturn;\n}", "private static function _includes()\n {\n /**\n * Includes\n */\n include_once 'functions/register-post-types.php';\n include_once 'functions/register-taxonomies.php';\n include_once 'functions/register-menus.php';\n }", "protected function checkSuhosinExecutorIncludeWhiteListContainsPhar() {}", "function provide_import() {\n return true;\n }", "static function loadFiles()\r\n\t{\r\n\t\t//required files\r\n\t\t\r\n\t\t//load bibliotek\r\n\t\t$paths = array(rp_self.\"lib/\");\r\n\t\t$to_header = array();\r\n\t\tforeach($paths as $path)\r\n\t\t{\r\n\t\t\t$scan = scandir($path);\r\n\t\t\tforeach($scan as $file)\r\n\t\t\t{\r\n\t\t\t\tif(is_file($path.$file))\r\n\t\t\t\t{\r\n\t\t\t\t\t$ext = explode(\".\", $file);\r\n\t\t\t\t\t$ext = $ext[1];\r\n\t\t\t\t\tif($ext == \"php\")\r\n\t\t\t\t\t\trequire_once($path.$file);\r\n\t\t\t\t\t\r\n\t\t\t\t\t//tilføj script tag til header hvis det er javascript\r\n\t\t\t\t\tif($ext == 'js')\r\n\t\t\t\t\t\t$to_header[] = '<script type=\"text/javascript\" src=\"'.$path.$file.'\"></script>';\r\n\t\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn implode('', $to_header);\r\n\t}", "function gutenberg_register_vendor_scripts() {\n\t$suffix = SCRIPT_DEBUG ? '' : '.min';\n\n\t// Vendor Scripts.\n\t$react_suffix = ( SCRIPT_DEBUG ? '.development' : '.production' ) . $suffix;\n\n\tgutenberg_register_vendor_script(\n\t\t'react',\n\t\t'https://unpkg.com/[email protected]/umd/react' . $react_suffix . '.js'\n\t);\n\tgutenberg_register_vendor_script(\n\t\t'react-dom',\n\t\t'https://unpkg.com/[email protected]/umd/react-dom' . $react_suffix . '.js',\n\t\tarray( 'react' )\n\t);\n\t$moment_script = SCRIPT_DEBUG ? 'moment.js' : 'min/moment.min.js';\n\tgutenberg_register_vendor_script(\n\t\t'moment',\n\t\t'https://unpkg.com/[email protected]/' . $moment_script,\n\t\tarray()\n\t);\n\t$tinymce_version = '4.7.11';\n\tgutenberg_register_vendor_script(\n\t\t'tinymce-latest-lists',\n\t\t'https://unpkg.com/tinymce@' . $tinymce_version . '/plugins/lists/plugin' . $suffix . '.js',\n\t\tarray( 'wp-tinymce' )\n\t);\n\tgutenberg_register_vendor_script(\n\t\t'lodash',\n\t\t'https://unpkg.com/[email protected]/lodash' . $suffix . '.js'\n\t);\n\twp_add_inline_script( 'lodash', 'window.lodash = _.noConflict();' );\n\tgutenberg_register_vendor_script(\n\t\t'wp-polyfill-fetch',\n\t\t'https://unpkg.com/whatwg-fetch/fetch.js'\n\t);\n\tgutenberg_register_vendor_script(\n\t\t'wp-polyfill-promise',\n\t\t'https://unpkg.com/[email protected]/dist/promise' . $suffix . '.js'\n\t);\n\tgutenberg_register_vendor_script(\n\t\t'wp-polyfill-formdata',\n\t\t'https://unpkg.com/[email protected]/formdata.min.js'\n\t);\n\tgutenberg_register_vendor_script(\n\t\t'wp-polyfill-node-contains',\n\t\t'https://unpkg.com/[email protected]/polyfills/Node/prototype/contains/polyfill.js'\n\t);\n}", "function mg_load_scripts() \n{\n\t//$ua = mg_getBrowser();\n\t//$yourbrowser= \"Your browser: \" . $ua['name'] . \" \" . $ua['version'] . \" on \" .$ua['platform'] . \" reports: <br >\" . $ua['userAgent'];\n\t//print_r($yourbrowser);\n\t//if($ua['name'] == \"Google Chrome\") wp_enqueue_script( 'nicescroll', get_bloginfo('stylesheet_directory') . '/js/jquery.nicescroll.min.js', array(), '1.0.0', true );\n\t\n\twp_enqueue_script( 'scb-script', get_bloginfo('stylesheet_directory') . '/js/script.js', array(), '2.0.0', true );\n}", "function include_share_js() {\n if ( is_single() )\n require(CHILD_DIR.'/lib/sharebar-js.php');\n}", "function includes() {\n\t\trequire_once(dirname(__FILE__) . '/functions/helpers/class-theater-helpers-time.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_listing.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/event/class-theater-event-archive.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/event/class-theater-event-order.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template_placeholder.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template_placeholder_filter.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_permalink.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_template.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_widget.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions_admin.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions_list_table.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_admin.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_editor.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_template.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_events.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_events_widget.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_setup.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_season.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_widget.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_admin.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_status.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_feeds.php');\t\n\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/transient/class-theater-transient.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/transient/class-theater-transients.php');\t\n\t\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_listing_page.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_calendar.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_context.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_filter.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_cart.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_tags.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/extensions/wpt_extensions_updater.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/extensions/wpt_extensions_promo.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_importer.php');\t\n\n\n\t\tif (is_admin()) {\n\t\t} else {\n\t\t\trequire_once(dirname(__FILE__) . '/functions/wpt_frontend.php');\n\t\t}\n\t\trequire_once(dirname(__FILE__) . '/integrations/wordpress-seo.php');\n\t\trequire_once(dirname(__FILE__) . '/integrations/jetpack-featured-content.php');\n\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/deprecated/class-wpt-order.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/deprecated/class-theater-custom-css.php');\n\t\t\n\t}", "function wp_head()\n\t\t{\n\t\t\t$fixMethod = $this->options['hits_ie6_pngfix_method'];\n\t\t\t$pagesAreCached = $this->options['hits_ie6_pngfix_pagesAreCached'];\n\t\t\t\n\t\t\tglobal $wp_version;\n\t\t\techo \"\\n\";\n\t\t\techo \"\\n<!-- Begin - HITS-IE6 PNGFix -->\";\n\t\t\tif($this->options['hits_ie6_debug']=='true')\n\t\t\t{\n\t\t\t\techo \"\\n<!-- DEBUG: Plugin Version=$this->version\\n DEBUG: Fix Method=$fixMethod\\n DEBUG: PagesAreCached=$pagesAreCached -->\";\n\t\t\t}\n\t\t\tif($pagesAreCached=='false')\n\t\t\t{\n\t\t\t\tif($this->isIE6() || $this->overrideIE6Check)\n\t\t\t\t{\n\t\t\t\t\techo \"\\n<!-- IE6 has been detected as the users browser version by the server -->\";\n\t\t\t\t\t$this->write_ie6_fix_nodes($fixMethod);\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\techo \"\\n<!-- IE6 has not been detected as the users browser version by the server -->\";\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\techo \"\\n<!-- The browser itself will determine if IE6 code will be used -->\";\n\t\t\t\techo \"\\n<!--[if lte IE 6]>\";\n\t\t\t\t$this->write_ie6_fix_nodes($fixMethod);\n\t\t\t\techo \"\\n<![endif]-->\";\n\t\t\t}\n\t\t\t\n\t\t\techo \"\\n<!-- End - HITS-IE6 PNGFix -->\\n\";\n\t\t\techo \"\\n\";\n\t\t}", "function add_header_stuff() {\n\n echo '<meta charset=\"utf-8\" />';\n\n echo '<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />';\n\n// include( 'assets/images/sprite/sprite.svg' ); // Include generated SVG Sprite\n// \n// include( 'parts/header-meta' ); // Include additional meta information in the header\n}", "function bb2_msie($package)\r\n{\r\n\tif (!array_key_exists('Accept', $package['headers_mixed'])) {\r\n\t\treturn \"17566707\";\r\n\t}\r\n\r\n\t// MSIE does NOT send \"Windows ME\" or \"Windows XP\" in the user agent\r\n\tif (strpos($package['headers_mixed']['User-Agent'], \"Windows ME\") !== FALSE || strpos($package['headers_mixed']['User-Agent'], \"Windows XP\") !== FALSE || strpos($package['headers_mixed']['User-Agent'], \"Windows 2000\") !== FALSE || strpos($package['headers_mixed']['User-Agent'], \"Win32\") !== FALSE) {\r\n\t\treturn \"a1084bad\";\r\n\t}\r\n\r\n\t// MSIE does NOT send Connection: TE\r\n\tif (preg_match('/\\bTE\\b/i', $package['headers_mixed']['Connection'])) {\r\n\t\treturn \"2b90f772\";\r\n\t}\r\n\r\n\treturn false;\r\n}", "private function require_files() {\n\n /**\n * Fixes plugins_url() for plugins located in /lib\n */\n add_filter( 'plugins_url', function( $plugins_url, $path, $plugin ) {\n if ( false !== stripos( $plugin, get_template_directory() ) ) {\n $plugins_url = get_template_directory_uri() . str_replace( WP_PLUGIN_URL . get_template_directory(), '', $plugins_url );\n }\n return $plugins_url;\n }, 10, 3 );\n\n // Include WP_oEmbed class\n require_once ABSPATH . WPINC . '/class-oembed.php';\n\n if ( defined( 'WP_CLI' ) && WP_CLI ) {\n require_once dirname( __FILE__ ) . '/inc/cli/class-cli.php';\n require_once dirname( __FILE__ ) . '/inc/cli/class-cli-clusters.php';\n }\n\n if ( is_admin() ) {\n $this->admin = Admin\\Admin::get_instance();\n $this->homepage_settings = Admin\\Homepage_Settings::get_instance();\n $this->cluster_tools = Admin\\Cluster_Tools::get_instance();\n $this->taxonomy_tools = Admin\\Taxonomy_Tools::get_instance();\n // Will be reimplemented after our move to MailChimp. See #2426\n // $this->newsletter_testing = Newsletter_Testing::get_instance();\n } else {\n $this->frontend = Frontend::get_instance();\n }\n\n $this->scripts_styles = Scripts_Styles::get_instance();\n $this->utilities = Utils::get_instance();\n $this->taxonomies = Taxonomies::get_instance();\n $this->single_option_taxonomies = Single_Option_Taxonomies::get_instance();\n $this->post_types = Types::get_instance();\n $this->user_management = User_Management::get_instance();\n $this->shortcode_manager = Shortcode_Manager::get_instance();\n $this->adverts = Adverts::get_instance();\n $this->ad_kill_switch = Admin\\Ad_Kill_Switch::get_instance();\n $this->slots = Posts\\Slots\\Slots::get_instance();\n $this->feeds = Feeds::get_instance();\n $this->featured_posts = Featured_Posts::get_instance();\n $this->icons = Icons::get_instance();\n $this->cron_management = Cron_Management::get_instance();\n $this->menus = Menus::get_instance();\n $this->menu_icons = Menu_Icons::get_instance();\n $this->component_previews = Component_Previews::get_instance();\n $this->page_cache = Page_Cache::get_instance();\n\n // Target Audience Messaging\n $this->audience = Audience::get_instance();\n $this->message_spot = Message_Spot::get_instance();\n $this->conversion_prompts = Conversion_Prompts::get_instance();\n $this->message_banner = Message_Banner::get_instance();\n\n // Metrics\n $this->metricbots = MetricBots::get_instance();\n $this->weekly_traffic_metric = Weekly_Traffic_Metric::get_instance();\n $this->newsletter_signups_by_page_metric = Newsletter_Signups_By_Page_Metric::get_instance();\n $this->yesterdays_email_metric = Yesterdays_Email_Metric::get_instance();\n\n // Emails\n $this->emails = Email::get_instance();\n $this->email_groups = Email_Groups::get_instance();\n $this->breaking_news_emails = Breaking_News_Emails::get_instance();\n $this->newsletter_emails = Newsletter_Emails::get_instance();\n $this->follow_updates = Follow_Updates::get_instance();\n $this->schedule_follow_updates = Schedule_Follow_Updates::get_instance();\n\n }", "private static function vendor() {\n $file = Storange::getPathFile('vendor/autoload.php');\n if (file_exists($file)) {\n include_once $file;\n } else {\n throw new exceptions\\LoadFiles('Error to load vendor autoload. Check the composer libs', 0);\n }\n }", "public function getHeadJavascript()\n\t{\n\n $url = Config::$url;\n $googleAnalyticsToken = Config::$googleAnalyticsToken;\n\n\t\treturn<<<js\n<script type=\"text/javascript\" data-comment=\"Google Analytics\">\n var _gaq = _gaq || [];\n _gaq.push(['_setAccount', '$googleAnalyticsToken']);\n _gaq.push(['_trackPageview']);\n\n (function() {\n var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n })();\n</script>\n\n<!-- package-javascript\nAll external javascript file, including the minified SNAP javascript,\nare listed here and in the project makefile to be bundled into a single\njavascript file. The 'package-javascript' and 'end-package' tokens\nare used to determine the region to be replaced with a single script inclusion.\n\nIf you add a file here, you must add it to the makefile for packaging. See the README in the js/ directory.\n-->\n<script src=\"js/underscore-min.js\" type=\"text/javascript\" ></script>\n<script src=\"js/jquery-1.8.2.min.js\" type=\"text/javascript\" ></script>\n<script src=\"js/jquery.blockUI.js\" type=\"text/javascript\" ></script>\n<script src=\"js/jquery.hoverIntent.minified.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.cycle.all.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.url.js\" type=\"text/javascript\"></script>\n<script src=\"js/plugins.js\" type=\"text/javascript\"></script>\n<script src=\"js/highcharts.js\" type=\"text/javascript\"></script>\n<script src=\"js/exporting.src.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery-ui-1.8.24.custom.min.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.ba-hashchange.min.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.validate.min.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.ba-bbq.min.js\" type=\"text/javascript\"></script>\n<script src=\"js/jquery.scrollTo-min.js\" type=\"text/javascript\"></script>\n\n<script src=\"js/licenseModal.js\" type=\"text/javascript\"></script>\n<script src=\"js/charts.js\" type=\"text/javascript\"></script>\n<script src=\"js/maps.js\" type=\"text/javascript\"></script>\n<!-- end-package -->\n\n<script type=\"text/javascript\">\n\n// Interpolate server-side configs as appropriate\nwindow.snapConfig = {\n url: '$url',\n geonetworkMetadataUrl: 'http://athena.snap.uaf.edu:8080/geonetwork/srv/en/metadata.show.embedded?id=',\n dataPath: '/data/'\n}\n</script>\n\njs;\n\t}", "function includeHbgWidgets() {\n $basedir = plugin_dir_path(__FILE__);\n\n $exclude = array(\n 'assets',\n 'js',\n 'slider-widget',\n 'post_author',\n 'helsingborg-settings',\n 'helsingborg-post-thumbnail',\n );\n\n $plugins = glob($basedir . '*', GLOB_ONLYDIR);\n\n foreach ($plugins as $plugin) {\n $plugin = basename($plugin);\n //var_dump(in_array($plugin, $exclude), $plugin);\n if (!in_array($plugin, $exclude)) {\n include_once($basedir . '' . $plugin . '/' . $plugin . '.php');\n }\n }\n}", "public function processIncludes() {}", "private function includes() {\n\t\t\t// By default, comments are disjoined from the other post types.\n\t\t\trequire_once( $this->includes_dir . 'comments.php' );\n\n\t\t\t// Settings\n\t\t\trequire_once( $this->includes_dir . 'settings.php' );\n\t\t}", "public function include_files(){\r\n\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/helper-function.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.assest_management.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.widgets_control.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.my_account.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.wc-shortcode-products.php' );\r\n if( !empty( woolentor_get_option_pro( 'productcheckoutpage', 'woolentor_woo_template_tabs', '0' ) ) ){\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.checkout_page.php' );\r\n }\r\n\r\n // Admin Setting file\r\n if( is_admin() ){\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/licence/WooLentorPro.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/custom-metabox.php' );\r\n }\r\n\r\n // Builder File\r\n if( woolentor_get_option_pro( 'enablecustomlayout', 'woolentor_woo_template_tabs', 'on' ) == 'on' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/wl_woo_shop.php' );\r\n if( !is_admin() && woolentor_get_option_pro( 'enablerenamelabel', 'woolentor_rename_label_tabs', 'off' ) == 'on' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/rename_label.php' );\r\n }\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.third_party.php' );\r\n }\r\n\r\n // Sale Notification\r\n if( woolentor_get_option_pro( 'enableresalenotification', 'woolentor_sales_notification_tabs', 'off' ) == 'on' ){\r\n if( woolentor_get_option_pro( 'notification_content_type', 'woolentor_sales_notification_tabs', 'actual' ) == 'fakes' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO. 'includes/class.sale_notification_fake.php' );\r\n }else{\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO. 'includes/class.sale_notification.php' );\r\n }\r\n }\r\n \r\n // WooLentor Extension\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.extension.php' );\r\n\r\n }", "function base_requirements_met() {\n\t$wp_version = get_bloginfo( 'version' );\n\n\tif ( version_compare( PHP_VERSION, BASE_REQUIRED_PHP_VERSION, '<' ) ) {\n return false;\n\t}\n\tif ( version_compare( $wp_version, BASE_REQUIRED_WP_VERSION, '<' ) ) {\n return false;\n\t}\n\treturn true;\n}", "protected function renderMainJavaScriptLibraries() {}", "function addUtilityScripts() {\n global $wgOut;\n $wgOut->addScript(\"<script type=\\\"text/javascript\\\">/*<![CDATA[*/function fixUrlForSparqlExtension(url) { return url.replace(/\\&amp;/g,'&'); } /*]]>*/</script>\\n\");\n $wgOut->addScript(\"<script type=\\\"text/javascript\\\" src=\\\"http://www.google.com/jsapi\\\"></script>\\n\");\n}", "private function load_dependencies() {\n //require_once( $this->inc . 'class-best-faq-admin.php' );\n require_once( $this->inc . 'best-faq-shortcode.php' );\n }", "public function includeHead()\n {\n require_once __DIR__ . '/templates/head.php';\n }", "public function getIncludeScripts() {\n return array('http://maps.google.com/maps/api/js?sensor='\n . ($this->locatesUser ? 'true' : 'false'));\n }", "public function include_classes() {\n\t\trequire MOP__PLUGIN_DIR . 'includes/class-cpt-student.php';\n\t\trequire MOP__PLUGIN_DIR . 'includes/class-student-widget.php';\n\t}", "public function Rocket_extra_builder()\n {\n if ( ! class_exists( 'ET_Builder_Module' ) ) { return; }\n include Rocket_Builder.'rocket-tabs-module.php';\n include Rocket_Builder.'rocket-testimonials-module.php';\n include Rocket_Builder.'rocket-partners-module.php';\n include Rocket_Builder.'rocket-pricing-module.php';\n include Rocket_Builder.'rocket-blog-module.php';\n include Rocket_Builder.'rocket-project-module.php';\n include Rocket_Builder.'rocket-blog_twitter-module.php';\n // include Rocket_Builder.'rocket-cta-module.php';\n }", "public function include_files()\n\t{\n\t\trequire_once(WP_PARSI_DIR . 'includes/settings.php');\n\t\tglobal $wpp_settings;\n\t\t$wpp_settings = wp_parsi_get_settings();\n\n\t\t$files = array(\n\t\t\t'parsidate',\n\t\t\t'general',\n\t\t\t'fixes-archive',\n\t\t\t'fixes-permalinks',\n\t\t\t'fixes-dates',\n\t\t\t'fixes-misc',\n\t\t\t'admin/styles-fix',\n\t\t\t'admin/lists-fix',\n\t\t\t'admin/other-fix',\n\t\t\t'fixes-calendar',\n\t\t\t'fixes-archives',\n\t\t\t'plugins/woocommerce',\n\t\t\t'plugins/edd',\n\t\t\t'widget/widget_archive',\n\t\t\t'widget/widget_calendar'\n\t\t);\n\n\t\tforeach ($files as $file)\n\t\t\trequire_once(WP_PARSI_DIR . 'includes/' . $file . '.php');\n\n\t\tif (get_locale() == 'fa_IR')\n\t\t\tload_textdomain('wp-parsidate', WP_PARSI_DIR . 'parsi-languages/fa_IR.mo');\n\n\t\tadd_action('widgets_init', array($this, 'register_widget'));\n\t}", "function ms_file_constants() {\n\t/**\n\t * Optional support for X-Sendfile header\n\t * @since 3.0.0\n\t */\n\tif ( !defined( 'WPMU_SENDFILE' ) )\n\t\tdefine( 'WPMU_SENDFILE', false );\n\n\t/**\n\t * Optional support for X-Accel-Redirect header\n\t * @since 3.0.0\n\t */\n\tif ( !defined( 'WPMU_ACCEL_REDIRECT' ) )\n\t\tdefine( 'WPMU_ACCEL_REDIRECT', false );\n}", "function getExtraHeaders(&$page){\n\t\tglobal $SiteRoot;\n\t\t$toReturn = array();\n\n\t\t//include the core framework js\n\t\t$toReturn[] = \"<script src=\\\"\".$SiteRoot.\"js/core.js\\\" type=\\\"text/javascript\\\"></script>\";\n\n\n\t\t//include inline js to init the core js\n\t\t$url = dispatcher::getUrl();\n\t\t$toReturn[] = \"<script type=\\\"text/javascript\\\">Site.Init(\\\"$SiteRoot\\\",\\\"$url\\\");</script>\";\n\n\t\t$server = util::getData(\"pserver\");\n\t\t$guild = util::getData(\"pguild\");\n\t\t$toReturn[] = \"<script type=\\\"text/javascript\\\">DKP.Init(\\\"$server\\\",\\\"$guild\\\");</script>\";\n\n\t\treturn $toReturn;\n\t}", "public function get_script_depends() {\n\t\treturn array( 'uael-social-share' );\n\t}", "private function _require()\n {\n }", "public function includes()\n {\n // Incluir functions.php\n include_once( WI_ABSPATH . 'functions.php' );\n }", "function kfn_include( $file, $absolete = false, $include_once = true ) {\r\n\tif ( ! $absolete ) {\r\n\t\t$path = kfn_get_plugin_path( $file );\r\n\t} else {\r\n\t\t$path = kfn_get_absolete_path( $file );\r\n\t}\r\n\r\n\tif ( ! is_wp_error( $path ) ) {\r\n\t\tif ( $include_once ) {\r\n\t\t\tinclude_once( $path );\r\n\t\t} else {\r\n\t\t\tinclude( $path );\r\n\t\t}\r\n\t} else {\r\n\t\tprint_r( $path );\r\n\t}\r\n}", "public function includes()\n {\n include_once('class-wc-pos-admin-post-actions.php');\n include_once('class-wc-pos-admin-menus.php');\n\n if (version_compare(WC_VERSION, '2.6', '>=')) {\n include_once('class-wc-pos-admin-notices.php');\n } else {\n include_once('class-wc-pos-admin-notices-v2.5.5.php');\n }\n include_once('class-wc-pos-admin-orders-page.php');\n\n\n /***********************/\n\n // Setup/welcome\n if (!empty($_GET['page'])) {\n switch ($_GET['page']) {\n case WC_POS_TOKEN . '-setup' :\n include_once('class-wc-pos-admin-setup-wizard.php');\n break;\n case WC_POS_TOKEN . '-about' :\n include_once('class-wc-pos-admin-welcome.php');\n break;\n case WC_POS_TOKEN . '-print' :\n include_once('class-wc-pos-admin-print-report.php');\n break;\n }\n }\n\n }", "function get_tools() {\n global $asf;\n return <<<EOD\n<p>Tools: \n<a href=\"http://validator.w3.org/check/referer\">html5</a>\n<a href=\"http://jigsaw.w3.org/css-validator/check/referer?profile=css3\">css3</a>\n<a href=\"http://jigsaw.w3.org/css-validator/check/referer?profile=css21\">css21</a>\n<a href=\"http://validator.w3.org/unicorn/check?ucn_uri=referer&amp;ucn_task=conformance\">unicorn</a>\n<a href=\"http://validator.w3.org/checklink?uri={$asf->request->current_url}\">links</a>\n<a href=\"http://qa-dev.w3.org/i18n-checker/index?async=false&amp;docAddr={$asf->request->current_url}\">i18n</a>\n<!-- <a href=\"link?\">http-header</a> -->\n<a href=\"http://csslint.net/\">css-lint</a>\n<a href=\"http://jslint.com/\">js-lint</a>\n<a href=\"http://jsperf.com/\">js-perf</a>\n<a href=\"http://www.workwithcolor.com/hsl-color-schemer-01.htm\">colors</a>\n<a href=\"http://dbwebb.se/style\">style</a>\n</p>\n\n<p>Docs:\n<a href=\"http://www.w3.org/2009/cheatsheet\">cheatsheet</a>\n<a href=\"http://dev.w3.org/html5/spec/spec.html\">html5</a>\n<a href=\"http://www.w3.org/TR/CSS2\">css2</a>\n<a href=\"http://www.w3.org/Style/CSS/current-work#CSS3\">css3</a>\n<a href=\"http://php.net/manual/en/index.php\">php</a>\n<a href=\"http://www.sqlite.org/lang.html\">sqlite</a>\n<a href=\"http://www.blueprintcss.org/\">blueprint</a>\n</p>\nEOD;\n}", "private function load_dependencies() {\n\n\t\t//For CHAOS lib\n\t\tset_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ .\"/lib/chaos-client/src/\");\n\t\trequire(\"CaseSensitiveAutoload.php\");\n\t\tspl_autoload_extensions(\".php\");\n\t\tspl_autoload_register(\"CaseSensitiveAutoload\");\n\n\t\trequire(\"wpportalclient.php\");\n\t\trequire(\"wpchaosobject.php\");\n\t\trequire(\"widgets/chaoswidget.php\");\n\t\trequire(\"widgets/attribute.php\");\n\t\trequire(\"widgets/multiattribute.php\");\n\t}" ]
[ "0.616573", "0.61256325", "0.6115633", "0.6105316", "0.6049414", "0.60355985", "0.6020914", "0.59905285", "0.59638464", "0.59451807", "0.59018064", "0.5880634", "0.5863981", "0.5862185", "0.5831721", "0.5828549", "0.581226", "0.5811563", "0.58101714", "0.5798965", "0.577701", "0.5764175", "0.57543606", "0.57198966", "0.57182825", "0.5675187", "0.56693256", "0.56603014", "0.56564194", "0.56473196", "0.5637767", "0.5627322", "0.5625565", "0.56013465", "0.5599302", "0.55801004", "0.5578839", "0.55405074", "0.5539125", "0.55328923", "0.5518744", "0.5517343", "0.55113584", "0.5509637", "0.5509553", "0.55074245", "0.5503565", "0.54925144", "0.5490678", "0.5488115", "0.5479438", "0.5470245", "0.5468963", "0.54615337", "0.5453163", "0.5449926", "0.54463977", "0.5444268", "0.54393315", "0.54325914", "0.5427391", "0.54265654", "0.5422128", "0.54157245", "0.5415218", "0.5405425", "0.53948605", "0.53768915", "0.537548", "0.53703696", "0.5368309", "0.5336384", "0.5331579", "0.53220755", "0.5318822", "0.53089833", "0.52986187", "0.52958834", "0.5286999", "0.5283363", "0.5283267", "0.5279523", "0.5271756", "0.5266987", "0.5265552", "0.5249956", "0.5249227", "0.52448714", "0.52396524", "0.52375424", "0.5234041", "0.5228754", "0.5227707", "0.5223384", "0.52225786", "0.52210623", "0.5215081", "0.5213302", "0.520671", "0.52055985", "0.52039874" ]
0.0
-1
/ package includes / brands
public function view_development() { $brandData['view'] = Product::brandData(); return view('admin.development', ['brandData' => $brandData]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function includes()\n {\n require_once(__DIR__ . '/Widgets/SuperglobalsWidget.php');\n }", "private function includes() {\n\t\trequire_once( PRODUCT_LIST_DIR . 'classes/class-product_list.php' );\n\t\t//require_once( PRODUCT_LIST_DIR . 'classes/class-yc_admin_cursos-settings.php' );\n\t}", "public function includes() {\n \n include_once( 'widgets/carousel.php' );\n include_once( 'widgets/fancy-text.php' );\n include_once( 'widgets/grid.php' );\n include_once( 'widgets/maps.php' );\n include_once( 'widgets/pricing-table.php' );\n include_once( 'widgets/progress-bar.php' );\n include_once( 'widgets/vertical-scroll.php' );\n \n }", "public function Rocket_extra_builder()\n {\n if ( ! class_exists( 'ET_Builder_Module' ) ) { return; }\n include Rocket_Builder.'rocket-tabs-module.php';\n include Rocket_Builder.'rocket-testimonials-module.php';\n include Rocket_Builder.'rocket-partners-module.php';\n include Rocket_Builder.'rocket-pricing-module.php';\n include Rocket_Builder.'rocket-blog-module.php';\n include Rocket_Builder.'rocket-project-module.php';\n include Rocket_Builder.'rocket-blog_twitter-module.php';\n // include Rocket_Builder.'rocket-cta-module.php';\n }", "function includes() {\r\n\t\t\trequire_once( trailingslashit( RV_PORTFOLIO_DIR ) . 'inc/public/class-rv-portfolio-registration.php' );\r\n\t\t}", "public function includes() {\n\t\t\trequire_once( CHERRY_SITE_SHORTCODES_DIR . 'includes/public/tools.php' );\n\n\t\t\t$this->shortcodes();\n\t\t}", "public function includes() {\n\t\trequire_once( plugin_dir_path( __FILE__ ) . 'class-productflow-admin.php' );\n\t\trequire_once( plugin_dir_path( __FILE__ ) . 'class-productflow-filters.php' );\n\t}", "public function includes() {\n\t\trequire_once( 'metabox.php' );\n\t}", "public function includes() {\n\n\t\t\tinclude_once $this->includes_path() . 'class-cyprus-images.php';\n\t\t\tinclude_once $this->includes_path() . 'extensions/menu/class-cyprus-menu-manager.php';\n\t\t\tinclude_once $this->includes_path() . 'class-cyprus-sidebars.php';\n\t\t\tinclude_once $this->includes_path() . 'contact-form.php';\n\n\t\t\t// Widgets.\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-aboutme.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-adcode.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-ad125.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-ad300.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-tweets.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-instagram.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-recentposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-relatedposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-authorposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-popular.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-fblikebox.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-social.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-catposts.php';\n\t\t\tinclude_once $this->includes_path() . 'widgets/widget-postslider.php';\n\n\t\t\t// Load WooCommerce.\n\t\t\trequire_if_theme_supports( 'woocommerce', $this->includes_path() . 'vendors/woocommerce/woocommerce-init.php' );\n\t\t}", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/ele-subcats.php' );\n\t}", "private function includes() {\n\t\t// functions\n\t\tinclude_once( 'includes/kopa-core-functions.php' );\n\n\t\t// settings class (special important class)\n\t\tinclude_once( 'includes/admin/class-kopa-admin-settings.php' );\n\n\t\t// frontend assets class\n\t\tinclude_once( 'includes/class-kopa-frontend-assets.php' );\n\n\t\t// abstract widget class\n\t\tinclude_once( 'includes/abstracts/abstract-kopa-widget.php' );\n\n\t\tif ( defined( 'DOING_AJAX' ) ) {\n\t\t\t$this->ajax_includes();\n\t\t}\n\n\t\tif ( is_admin() ) {\n\t\t\tinclude_once( 'includes/admin/class-kopa-admin.php' );\n\t\t}\n\n\t}", "function wp_default_packages_vendor($scripts)\n {\n }", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/dropdown.php' );\n\t}", "private function include_widgets_files() {\n\t\trequire_once( __DIR__ . '/widgets/be-counter.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-post.php' );\n\t\trequire_once( __DIR__ . '/widgets/subhead-bodycopy.php' );\n\t\trequire_once( __DIR__ . '/widgets/heading-media-bodycopy.php' );\n\t\trequire_once( __DIR__ . '/widgets/sidebar.php' );\n\t\trequire_once( __DIR__ . '/widgets/useful-links-info.php' );\n\t\trequire_once( __DIR__ . '/widgets/accordion-navigation-tabs.php' );\n\t\trequire_once( __DIR__ . '/widgets/content-filter.php' );\n\t\trequire_once( __DIR__ . '/widgets/secondary-ctas.php' );\n\t\trequire_once( __DIR__ . '/widgets/alert-banner.php' );\n\t\trequire_once( __DIR__ . '/widgets/alert-banner.php' );\n\t\trequire_once( __DIR__ . '/widgets/resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/repeater-resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/card-lrg.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-promo.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-latest-resources.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-popular-results.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-top-faq.php' );\n\t\trequire_once( __DIR__ . '/widgets/be-card-carousel.php' );\n\t\t// M.8.3 Card lrg (landing page)\n\t}", "function bpgex_include() {\n\trequire( dirname( __FILE__ ) . '/bp-groups-example.php' );\n}", "private function includes(){\n\n\t\tinclude( WPTT_ICS_FEED_FOLDER . '/EasyPeasyICS.php' );\n\n\t}", "public function wrp_includes(){\n\n //Our test class\n\t\t//include_once WRP_ABSPATH . 'includes/class-wrp-test.php';\n\t\t\n\t\t//REST API extension class\n\t\tinclude_once WRP_ABSPATH . 'includes/class-wrp-rest.php';\n\n\t\t//Flow2b API setting\n\t\tinclude_once WRP_ABSPATH . 'includes/api_setting.php';\n\n\t\t//Our hooks class\n\t\tinclude_once WRP_ABSPATH . 'includes/class-wrp-hooks.php';\n\n\t}", "public function includes() {\n\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-interface.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-updater.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-notices.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-ui-handlers.php' );\n\t\t\tinclude_once $this->plugin_dir( 'admin/includes/class-monstroid-dashboard-filesystem.php' );\n\n\t\t}", "private function _include_files() {\n\n require_once( KP_DIR_PATH . 'includes/korapay-shortcode.php' );\n require_once( KP_DIR_PATH . 'includes/korapay-admin-settings.php' );\n require_once( KP_DIR_PATH . 'includes/korapay-payment-list-class.php' );\n require_once( KP_DIR_PATH . 'includes/vc-elements/simple-vc-pay-now-form.php' );\n\n if ( is_admin() ) {\n require_once( KP_DIR_PATH . 'includes/korapay-tinymce-plugin-class.php' );\n }\n\n }", "private function includes() {\n \t$includes = array(\n \t\t'/includes/event-custom-post-type.php',\n \t\t'/includes/shortcodes.php',\n \t\t'/includes/display-helper.php',\n \t\t'/includes/query-helper.php'\n \t);\n \t\n \t$admin_includes = array();\n \t\n \tif ( file_exists( dirname( __FILE__ ) . '/includes/cmb2/init.php' ) ) {\n \trequire_once dirname( __FILE__ ) . '/includes/cmb2/init.php';\n } elseif ( file_exists( dirname( __FILE__ ) . '/includes/CMB2/init.php' ) ) {\n \trequire_once dirname( __FILE__ ) . '/includes/CMB2/init.php';\n }\n \n \t// Load files\n \tforeach ( $includes as $file ) {\n \t\tif ( file_exists( dirname( __FILE__ ) . $file ) ) {\n \t\t\trequire_once dirname( __FILE__ ) . $file;\n \t\t}\n \t}\n \n \t// Load admin files\n \tif ( is_admin() ) {\n \t\tforeach ( $admin_includes as $file ) {\n \t\t\tif ( file_exists( dirname( __FILE__ ) . $file ) ) {\n \t\t\t\trequire_once dirname( __FILE__ ) . $file;\n \t\t\t}\n \t\t}\n \t}\n }", "function dust_package_files(){\n \n}", "public function includes() {\n\n\t\t// gateway classes\n\t\trequire_once( $this->get_plugin_path() . '/includes/abstract-wc-gateway-elavon-converge.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-credit-card.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-echeck.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-token.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/class-wc-gateway-elavon-converge-tokens-handler.php' );\n\n\t\t// payment forms\n\t\trequire_once( $this->get_plugin_path() . '/includes/payment-forms/class-wc-elavon-converge-payment-form.php' );\n\t\trequire_once( $this->get_plugin_path() . '/includes/payment-forms/class-wc-elavon-converge-echeck-payment-form.php' );\n\t}", "function DS_Custom_Modules(){\n if(class_exists(\"ET_Builder_Module\")){\n \t// This adds options for more contact types and, with some clever css, a more flexible usage.\n\tinclude(\"ehanhanced_divi_modules/extended_person_module.php\");\n\n\t// This creates a hybrid blurb/cta. CTA's should have the option for images and more than one button. Sheesh!\n\tinclude(\"ehanhanced_divi_modules/extended_cta.php\");\n }\n}", "private function include_widgets_files() {\n\t\t\n\t\t require_once( __DIR__ . '/widgets/main-slider.php' );\n\t\t\n\t\t require_once( __DIR__ . '/widgets/call-to-action-text.php' );\n\t\t require_once( __DIR__ . '/widgets/call-to-action-image.php' );\n\t\t require_once( __DIR__ . '/widgets/project-facts.php' );\n\t\t require_once( __DIR__ . '/widgets/noble-cause.php' );\n\t\t\n\t\t require_once( __DIR__ . '/widgets/fancy-heading.php' );\n\t\t\n\t\t \n\t\t require_once( __DIR__ . '/widgets/timeline.php' );\n\t\t\n\t\t require_once( __DIR__ . '/widgets/CPT/wp-elementor-events.php' );\n\t\t require_once( __DIR__ . '/widgets/CPT/wp-elementor-events-cta.php' );\n\t\n\t\t require_once( __DIR__ . '/widgets/CPT/wp-elementor-woo.php' );\n\t\t require_once( __DIR__ . '/widgets/CPT/wp-elementor-posts.php' );\n\t\t\n\t\t require_once( __DIR__ . '/widgets/gallery.php' );\n\t\t require_once( __DIR__ . '/widgets/sub-header.php' );\n\n\n\t\t require_once( __DIR__ . '/widgets/call-to-action-small-box.php' );\n\t\t require_once( __DIR__ . '/widgets/call-to-action-banner.php' );\n\t\t require_once( __DIR__ . '/widgets/call-to-action-contact.php' );\n\t\t\n\t\t require_once( __DIR__ . '/widgets/newsletter.php' );\n\t}", "public function view_package_includes()\n\n {\n $packData['view'] = Product::packData();\n\n return view('admin.package-includes', ['packData' => $packData]);\n }", "function _includes() {\n require_once($this->plugin_dir . 'include/actions_class.php');\n require_once($this->plugin_dir . 'include/admin_actions_class.php');\n require_once($this->plugin_dir . 'include/admin_filters_class.php');\n require_once($this->plugin_dir . 'include/ui_class.php');\n require_once($this->plugin_dir . 'include/widget_class.php');\n require_once($this->plugin_dir . 'include/extra_help_class.php');\n require_once($this->plugin_dir . 'include/mobile-listener.php');\n }", "public function includes() {\n\t\t/**\n\t\t * Gateway Class.\n\t\t */\n\t\tinclude_once( paytwit_PATH . 'class-gateway.php' );\n\n\t}", "public function includes(){\n\t\t// Load the Email Designer class\n\t\trequire_once( trailingslashit( plugin_dir_path( __FILE__ ) ) . 'includes/class-email-designer.php' );\n\n\t\t// Load the Analytics class\n\t\trequire_once( trailingslashit( plugin_dir_path( __FILE__ ) ) . 'includes/class-analytics.php' );\n\t}", "function _develop_action__theme__include_files() {\n\tinclude_once __DIR__ . '/class-calyx-server-state.php';\n\tinclude_once __DIR__ . '/samples/class-calyx-cpt-sample.php';\n}", "function Stock_toolkit_files(){\n \n \n \n}", "function manage_brands(){\n $data['title'] = \"Manage Brands\";\n $this->load->view('includes/header', $data);\n $this->load->view('modules/brands/manage_brands');\n $this->load->view('includes/footer.php', $data);\n }", "public function includes() {\n include_once('default/default-interface.php');\n include_once('default/default-model.php');\n include_once('default/customer-completed-order.php');\n include_once('default/customer-completed-pre-order.php');\n include_once('default/notify-import-finished.php');\n include_once('default/notify-low-balance.php');\n include_once('default/notify-preorder.php');\n include_once('default/order-error.php');\n \n include_once('prepare/class-wp-emaila-custom-post.php');\n include_once('prepare/class-wp-radio-taxonomy.php');\n include_once('prepare/class-wp-email-custom-post-generator.php');\n \n include_once('wp-send-code-mail.php');\n include_once('wp-admin-error-mail.php');\n include_once('wp-admin-general-error.php');\n include_once('wp-admin-import-finished.php');\n }", "function wp_default_packages($scripts)\n {\n }", "public function includes() {\n\n\t\t\t/**\n\t\t\t * Functions used in frontend and admin\n\t\t\t */\n\t\t\tinclude_once( 'inc/wd-core-functions.php' );\n\n\t\t\tif ( $this->is_request( 'admin' ) ) {\n\t\t\t\tinclude_once( 'inc/admin/class-wd-admin.php' );\n\t\t\t}\n\n\t\t\tif ( $this->is_request( 'frontend' ) ) {\n\t\t\t\tinclude_once( 'inc/frontend/wd-functions.php' );\n\t\t\t\tinclude_once( 'inc/frontend/wd-template-hooks.php' );\n\t\t\t\tinclude_once( 'inc/frontend/class-wd-shortcode.php' );\n\t\t\t}\n\t\t}", "public function include_files(){\r\n\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/helper-function.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.assest_management.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.widgets_control.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.my_account.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.wc-shortcode-products.php' );\r\n if( !empty( woolentor_get_option_pro( 'productcheckoutpage', 'woolentor_woo_template_tabs', '0' ) ) ){\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.checkout_page.php' );\r\n }\r\n\r\n // Admin Setting file\r\n if( is_admin() ){\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/licence/WooLentorPro.php' );\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/custom-metabox.php' );\r\n }\r\n\r\n // Builder File\r\n if( woolentor_get_option_pro( 'enablecustomlayout', 'woolentor_woo_template_tabs', 'on' ) == 'on' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/wl_woo_shop.php' );\r\n if( !is_admin() && woolentor_get_option_pro( 'enablerenamelabel', 'woolentor_rename_label_tabs', 'off' ) == 'on' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO.'includes/rename_label.php' );\r\n }\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.third_party.php' );\r\n }\r\n\r\n // Sale Notification\r\n if( woolentor_get_option_pro( 'enableresalenotification', 'woolentor_sales_notification_tabs', 'off' ) == 'on' ){\r\n if( woolentor_get_option_pro( 'notification_content_type', 'woolentor_sales_notification_tabs', 'actual' ) == 'fakes' ){\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO. 'includes/class.sale_notification_fake.php' );\r\n }else{\r\n include( WOOLENTOR_ADDONS_PL_PATH_PRO. 'includes/class.sale_notification.php' );\r\n }\r\n }\r\n \r\n // WooLentor Extension\r\n require( WOOLENTOR_ADDONS_PL_PATH_PRO.'classes/class.extension.php' );\r\n\r\n }", "function getPackagePath() ;", "public function includes() {\n\t\t\t//require_once(ABSPATH . 'wp-admin/includes/nav-menu.php');\n\t\t}", "public function package()\n\t{\n\t\t\n\t}", "private function includes()\n\t\t{\n\t\t\trequire_once dirname( __FILE__ ) . '/sf-class-sanitize.php';\n\t\t\trequire_once dirname( __FILE__ ) . '/sf-class-format-options.php';\n\t\t\tnew SF_Sanitize;\n\t\t}", "protected function _includes() {\r\n\t\t\tinclude_once LP_ADDON_PAYIR_PAYMENT_INC . 'class-lp-gateway-payir.php';\r\n\t\t}", "function register_widgets() {\n\t if ( ! is_dir( $this->addon->dir . 'include/widgets/' ) ) { return; }\n\t $widget_files = scandir( $this->addon->dir . 'include/widgets/' );\n\t $widget_slug = array();\n\n\t foreach ( $widget_files as $widget_file ) {\n\t\t if ( preg_match( '/^class\\.([^.]*?)\\.php/' , $widget_file , $widget_slug ) === 1 ) {\n\t\t\t require_once( $this->addon->dir . 'include/widgets/' . $widget_file );\n\t\t\t register_widget( 'SLPWidget_' . $widget_slug[1] );\n\t\t }\n\t }\n }", "public function getIncludedModules ();", "private static function loadLibs(){\n $file = Storange::getBaseWowPath().'wow/lib/readbeans/rb.php';\n if(file_exists($file)){\n include_once $file;\n }\n }", "public function configure()\n {\n // Image Packages\n require_once 'Image/Transform.php';\n // Text Packages\n require_once 'Text/Wiki.php';\n require_once 'Text/Wiki/Mediawiki.php';\n require_once \"Text/Password.php\";\n // HTML Packages\n require_once 'HTML/TagCloud.php';\n // HTTP Packages\n require_once 'HTTP/Request2.php';\n // Net Packages\n require_once 'Net/URL2.php';\n // Individual specific packages\n require_once 'Date.php';\n require_once \"Mail.php\"; \n // Service Packages\n require_once 'Services/TinyURL.php';\n require_once 'Services/Twitter.php';\n }", "public function includes(){\r\n \t\trequire_once( TMM_ABSPATH . '/admin/post-type/team-member.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/taxonomy/member-type.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/metabox/team-member-metabox.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/shortcode/team-members-shortcode.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/templates/single-team-member.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/templates/archive-team-member.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/settings/settings.php' );\r\n \t\trequire_once( TMM_ABSPATH . '/admin/settings/shortcode-builder-button.php' );\r\n\r\n \t\t//enqueue stylesheets\r\n \t\tadd_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles' ) );\r\n \t}", "private static function _includes()\n {\n /**\n * Includes\n */\n include_once 'functions/register-post-types.php';\n include_once 'functions/register-taxonomies.php';\n include_once 'functions/register-menus.php';\n }", "public function include_classes() {\n\t\trequire MOP__PLUGIN_DIR . 'includes/class-cpt-student.php';\n\t\trequire MOP__PLUGIN_DIR . 'includes/class-student-widget.php';\n\t}", "abstract public function getPackage();", "public function getPackageList()\r\n {\r\n $directory = Mage::getBaseDir('design') . DS . 'frontend';\r\n return $this->_listDirectories($directory);\r\n }", "public function includes() {\n\n\t\t/**\n\t\t * Core classes.\n\t\t */\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/f9jobs-core-functions.php';\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/class-f9jobs-post-types.php';\n\t\tinclude_once F9JOBS_ABSPATH . 'includes/class-f9jobs-install.php';\n\t}", "public function includeLibs()\n {\n $string = '';\n\n if($this->css_files)\n {\n foreach( $this->css_files as &$css_file )\n {\n $string .= '<link rel=\"stylesheet\" href=\"' . $css_file . '\" type=\"text/css\" />';\n }\n }\n \n if($this->js_files)\n {\n foreach( $this->js_files as &$js_file )\n {\n $string .= PHP_EOL . '<script src=\"' . $js_file . '\" type=\"text/javascript\"></script>';\n }\n }\n $this->tpl->assign(\"libs\", $string . PHP_EOL);\n }", "public function footer_branding()\n\t\t{\n\t\t}", "public function getCarBrands();", "function _barony_base_file_additions() {\n // Add Font Awesome\n drupal_add_js('//use.fontawesome.com/76948938e9.js', 'external');\n // Add Google Fonts\n drupal_add_css('//fonts.googleapis.com/css?family=Uncial+Antiqua|Metamorphous', array('group' => CSS_THEME));\n\n // Custom additions\n drupal_add_js(drupal_get_path('theme', 'barony_base') . '/js/header-movement.js', array('type' => 'file', 'scope' => 'footer'));\n}", "private function packFiles()\n {\n // load core\n $this->builder->putVehicle($this->builder->createVehicle('xPDOFileVehicle', [\n 'vehicle_class' => 'xPDOFileVehicle',\n 'object' => [\n 'source' => __DIR__ . '/../core/components/' . self::PKG_NAME,\n 'target' => \"return MODX_CORE_PATH . 'components/';\"\n ]\n ]));\n\n // load assets\n $this->builder->putVehicle($this->builder->createVehicle('xPDOFileVehicle', [\n 'vehicle_class' => 'xPDOFileVehicle',\n 'object' => [\n 'source' => __DIR__ . '/../assets/components/' . self::PKG_NAME,\n 'target' => \"return MODX_ASSETS_PATH . 'components/';\"\n ]\n ]));\n }", "function includeHbgWidgets() {\n $basedir = plugin_dir_path(__FILE__);\n\n $exclude = array(\n 'assets',\n 'js',\n 'slider-widget',\n 'post_author',\n 'helsingborg-settings',\n 'helsingborg-post-thumbnail',\n );\n\n $plugins = glob($basedir . '*', GLOB_ONLYDIR);\n\n foreach ($plugins as $plugin) {\n $plugin = basename($plugin);\n //var_dump(in_array($plugin, $exclude), $plugin);\n if (!in_array($plugin, $exclude)) {\n include_once($basedir . '' . $plugin . '/' . $plugin . '.php');\n }\n }\n}", "protected function getBoilerplate()\n {\n return '# Project Licenses\nThis file was generated by the [PHP Legal Licenses](https://github.com/Comcast/php-legal-licenses) utility. It contains the name, version and commit sha, description, homepage, and license information for every dependency in this project.\n\n## Dependencies\n\n';\n }", "public static function items_needed_for_brands(){\n Metabox::make('Personalizar sección de marca', 'brand', [\n 'context' => 'normal',\n 'priority' => 'high',\n 'id' => 'brand-banner-metabox'\n ])->set([\n Field::media('brand-header-banner', [\n 'title' => 'Encabezado',\n 'info' => 'Selecciona un banner que aparecerá en el encabezado cuando la marca esté activa.'\n ]),\n Field::color('brand-header-color', [\n 'title' => 'Color del encabezado',\n 'info' => 'Selecciona un color que aparecerá cuando la pantalla exceda las dimensiones de la imagen.'\n ]),\n ]);\n }", "function fn_get_brands($feature_id, $lang_code = CART_LANGUAGE)\n{\n\t//var_dump($feature_id);\n $params['feature_id']=$feature_id;\n\t$params['feature_type']=\"E\";\n $params['get_images'] = true;\n\t\n list($brands, $search) = fn_get_product_feature_variants($params,0, DESCR_SL);\n\t\n return array($brands, $params);\n}", "public function getRequiredPackages();", "public function getInclude()\n {\n return new Horde_Pear_Package_Contents_Include_Patterns(\n array('themes/' . basename($this->_root) . '/*'),\n $this->getRepositoryRoot()\n );\n }", "static function include_scripts(){\n\t\t//self::include_css();\n\t\tself::include_js();\n\t}", "function bbboing_oik_loaded() { \r\n //bw_add_shortcode( 'bbboing', 'bbboing_sc', oik_path( \"bbboing.inc\", \"bbboing\" ), false );\r\n}", "function get_all_packages()\n{\n\tglobal $account, $root_path, $root_url, $sw_version, $build_crc;\n\tglobal $panic, $panic_dir;\n\n\t$build_path = \"$root_path/$sw_version/$build_crc\";\n\n\t// check if the directory for the software version and the build CRC exists\n\tif (!file_exists($build_path)){\n\t\techo \"<center><font size=2><b>$build_path does not exist.</b></font></center>\";\n\t\treturn false;\n\t}\n\telse{\n\t\t//echo \"<center><font size=2><b>$build_path exists.</b></font></center>\";\n\t\tchdir($build_path);\n\t\t$build_dir = opendir($build_path);\n\n\t\twhile (($entry = readdir($build_dir)) !== false) {\n\t\t\tif($entry != '.' && $entry != '..' && is_dir($entry)){ \n\t\t\t\t//echo \"<center><font size=2><b>barcode entry: $entry</b></font></center>\";\n\n\t\t\t\t//change directory to Barcode name\n\t\t\t\t$bar_path = \"$build_path/$entry\";\n\t\t\t\tchdir($bar_path);\n\t\t\t\t$bar_dir = opendir($bar_path);\n\n\t\t\t\t// read name of packages in the barcode directory\n\t\t\t\twhile (($package_entry = readdir($bar_dir)) !== false) {\n\t\t\t\t\tif($package_entry != '.' && $package_entry != '..' && is_dir($package_entry)){ \n\t\t\t\t\t\t//echo \"<center><font size=2><b>package entry: $package_entry</b></font></center>\";\n\n\t\t\t\t\t\t$package_path = \"$bar_path/$package_entry\";\n\n\t\t\t\t\t\t// collect panic packages\n\t\t\t\t\t\tget_panic_package($package_path);\n\t\t\t\t\t}\n\t\t\t\t} // end of while for a each package directory in a barcode\n\t\t\t\tclosedir($bar_dir);\n\t\t\t\tchdir(\"..\");\n\t\t\t}\n\t\t} // end of while loop for each barcode\n\t\tclosedir($build_dir);\n\t\tchdir($root_path);\n\t}\n}", "function wpbs_include_files_booking()\n{\n\n // Get booking dir path\n $dir_path = plugin_dir_path(__FILE__);\n\n // Include main Booking class\n if (file_exists($dir_path . 'class-booking.php')) {\n include $dir_path . 'class-booking.php';\n }\n\n // Include the db layer classes\n if (file_exists($dir_path . 'class-object-db-bookings.php')) {\n include $dir_path . 'class-object-db-bookings.php';\n }\n\n if (file_exists($dir_path . 'class-object-meta-db-bookings.php')) {\n include $dir_path . 'class-object-meta-db-bookings.php';\n }\n\n}", "public function include_functionality() {\n\n if ( false === $this->check_dependencies() ) {\n return;\n }\n\n /**\n * In case your plugin is large consider using autoloader instead\n */\n\n /**\n * Libraries\n */\n include_once( GOAPOSTAS_PATH . 'libs/class-gamajo-template-loader.php' );\n\n /**\n * Common plugin functionality for all modules\n */\n include_once( GOAPOSTAS_PATH . 'include/core/class-install.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-uninstall.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-template-loader.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-assets-loader.php' );\n include_once( GOAPOSTAS_PATH . 'include/core/class-shortcode.php' );\n\n /**\n * Navigation module\n */\n include_once( GOAPOSTAS_PATH . 'include/modules/navigation/class-nav-menu-walker.php' );\n include_once( GOAPOSTAS_PATH . 'include/modules/navigation/class-menu-extra-items.php' );\n\n /**\n * Ads shortcode module\n */\n include_once( GOAPOSTAS_PATH . 'include/modules/adrotate/class-adrotate-vc-element.php' );\n\n /**\n * Acf config\n */\n include_once( GOAPOSTAS_PATH . 'include/admin/acf-config.php' );\n include_once( GOAPOSTAS_PATH . 'include/admin/acf-field-select-adrotate.php' );\n\n\n /**\n * Admin required files only\n */\n if ( is_admin() ) {\n\n\n }\n\n }", "function PKG_getPackagesListMarker()\n{\n\treturn(\"?#*packages?#*\");\n}", "private function includes() {\n\t\t\t// By default, comments are disjoined from the other post types.\n\t\t\trequire_once( $this->includes_dir . 'comments.php' );\n\n\t\t\t// Settings\n\t\t\trequire_once( $this->includes_dir . 'settings.php' );\n\t\t}", "function includes() {\n\t\trequire_once(dirname(__FILE__) . '/functions/helpers/class-theater-helpers-time.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_listing.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/event/class-theater-event-archive.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/event/class-theater-event-order.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template_placeholder.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/template/wpt_template_placeholder_filter.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_permalink.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_template.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_production_widget.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions_admin.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_productions_list_table.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_admin.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_editor.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_event_template.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_events.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_events_widget.php');\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_setup.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_season.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_widget.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_admin.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_status.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_feeds.php');\t\n\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/transient/class-theater-transient.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/transient/class-theater-transients.php');\t\n\t\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_listing_page.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_calendar.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_context.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_filter.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_cart.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_tags.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/extensions/wpt_extensions_updater.php');\t\n\t\trequire_once(dirname(__FILE__) . '/functions/extensions/wpt_extensions_promo.php');\t\n\n\t\trequire_once(dirname(__FILE__) . '/functions/wpt_importer.php');\t\n\n\n\t\tif (is_admin()) {\n\t\t} else {\n\t\t\trequire_once(dirname(__FILE__) . '/functions/wpt_frontend.php');\n\t\t}\n\t\trequire_once(dirname(__FILE__) . '/integrations/wordpress-seo.php');\n\t\trequire_once(dirname(__FILE__) . '/integrations/jetpack-featured-content.php');\n\t\t\n\t\trequire_once(dirname(__FILE__) . '/functions/deprecated/class-wpt-order.php');\n\t\trequire_once(dirname(__FILE__) . '/functions/deprecated/class-theater-custom-css.php');\n\t\t\n\t}", "public function loadPublicSideClasses()\n\t{\n\t\tinclude dirname(__FILE__).'/class-cit-boilerplate-shortcodes.php';\n\t\t\n\t\t//add all public-side class files above this line\n\t}", "public function ShowVendors()\n\t{\n\t\t$GLOBALS['BreadCrumbs'] = array(\n\t\t\tarray(\n\t\t\t\t'name' => GetLang('Vendors')\n\t\t\t)\n\t\t);\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->SetPageTitle(GetConfig('StoreName').' - '.GetLang('Vendors'));\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->SetTemplate('vendors');\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->ParseTemplate();\n\t}", "function humcore_deposit_component_include() {\n\n\trequire( dirname( __FILE__ ) . '/component-loader.php' );\n\n}", "function viaggio_site_brand(){\n\tob_start();\n\tif(cs_get_option('logo_url') != ''){\n\t\t$site_brand = '<a href=\"'.esc_url(home_url('/')).'\"><img src=\"'.wp_get_attachment_image_src( cs_get_option( 'logo_url' ), 'full' )[0].'\" alt=\"Logo\"/></a>';\n\t\techo $site_brand;\n\t}else{\n\t\t$site_brand = '<div class=\"brand_container\"><h1 class=\"brand_name\"><a href=\"'. esc_url(home_url('/')) .'\">'.get_bloginfo('name').'</a></h1>';\n\t\tif(get_bloginfo('description')){\n\t\t\t$site_brand .= '<h2 class=\"brand_description\">'.get_bloginfo('description').'</h2></div>';\n\t\t}\n\t\techo $site_brand;\n\t}\n\n}", "public function getBrands()\n {\n return $this->brands;\n }", "function bl_register_required_plugins() {\r\n\r\n $options = get_option( 'bl_beaverlodge_settings' );\r\n\r\n // Include the 404 module.\r\n if ($options['bl_404_page'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-404page/bb-sw-404page.php';\r\n }\r\n\r\n // Include the animate text module.\r\n if ($options['bl_animate_text'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-animate-text/bb-sw-animate-text.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-animate-text/includes/bb-sw-animate-text-module.php';\r\n }\r\n \r\n // Include the bar chart module.\r\n if ($options['bl_bar_chart'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-bar-chart/bb-sw-bar-chart.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-bar-chart/includes/bb-sw-bar-chart-module.php';\r\n }\r\n \r\n // Include the onclick module.\r\n if ($options['bl_bootstrap_modal'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-bootstrap-modal/bb-sw-bootstrap-modal.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-bootstrap-modal/includes/bb-sw-bootstrap-modal-module.php';\r\n }\r\n \r\n // Include the caldera forms module.\r\n if(class_exists('Caldera_Forms')) {\r\n if ($options['bl_caldera'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-caldera/bb-sw-caldera.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-caldera/includes/bb-sw-caldera-module.php';\r\n }\r\n }\r\n \r\n // Include the contactform7 module.\r\n if(class_exists('WPCF7_ContactForm')) {\r\n if ($options['bl_cf7'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-contactform7/bb-sw-contactform7.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-contactform7/includes/bb-sw-contactform7-module.php';\r\n }\r\n }\r\n \r\n // Include the countdown module.\r\n if ($options['bl_countdown'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-countdown/bb-sw-counter.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-countdown/includes/bb-sw-counter-module.php';\r\n }\r\n \r\n // Include the dual callout module.\r\n if ($options['bl_dual_callout'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-dualcallout/bb-sw-dualcallout.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-dualcallout/includes/bb-sw-dualcallout-module.php';\r\n }\r\n \r\n // Include the ecommerce menu module.\r\n if ($options['bl_ecommerce_menu'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-ecommerce-menu/bb-sw-ecommerce-menu.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-ecommerce-menu/includes/bb-sw-ecommerce-menu-module.php';\r\n }\r\n \r\n // Include the facebook module.\r\n if ($options['bl_facebook'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-facebook/bb-sw-facebook.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-facebook/includes/bb-sw-facebook-module.php';\r\n }\r\n \r\n // Include the footer module.\r\n if ($options['bl_footer'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-footer/bb-sw-footer.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-footer/includes/bb-footer-module.php';\r\n }\r\n \r\n // Include the gmap module.\r\n if ($options['bl_gmap'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-gmap/bb-sw-gmap.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-gmap/includes/bb-sw-gmap-module.php';\r\n }\r\n \r\n // Include the gmap module.\r\n if ($options['bl_heading'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-heading/bb-sw-heading.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-heading/includes/bb-sw-heading-module.php';\r\n }\r\n \r\n // Include the hero header module.\r\n if ($options['bl_hero_header'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hero-header/bb-sw-hero-header.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hero-header/includes/bb-sw-hero-header-module.php';\r\n }\r\n \r\n // Include the hover card module.\r\n if ($options['bl_hover_card'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hover-card/sw-bb-hover-card.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hover-card/includes/bb-hover-card-module.php';\r\n }\r\n \r\n // Include the hover effects module.\r\n if ($options['bl_hover_effects'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hover-effects/bb-sw-hover-effects.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-hover-effects/includes/bb-sw-hover-effects-module.php';\r\n }\r\n \r\n // Include the instagram module.\r\n if ($options['bl_instagram'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-instagram/bb-sw-instagram.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-instagram/includes/bb-sw-instagram-module.php';\r\n }\r\n \r\n // Include the login module.\r\n if ($options['bl_login'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-login/bb-sw-login.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-login/includes/bb-sw-login-module.php';\r\n function sw_redirect_login_page() {\r\n $login_page = home_url( '/login/' );\r\n $page_viewed = basename($_SERVER['REQUEST_URI']);\r\n\r\n if( $page_viewed == \"wp-login.php\" && $_SERVER['REQUEST_METHOD'] == 'GET') {\r\n wp_redirect($login_page);\r\n exit;\r\n }\r\n }\r\n add_action('init','sw_redirect_login_page');\r\n\r\n function sw_redirect_admin_page() {\r\n $login_page = home_url( '/login/' );\r\n $page_viewed = basename($_SERVER['REQUEST_URI']);\r\n\r\n if( $page_viewed == \"wp-admin.php\" && $_SERVER['REQUEST_METHOD'] == 'GET') {\r\n wp_redirect($login_page);\r\n exit;\r\n }\r\n }\r\n add_action('init','sw_redirect_admin_page');\r\n\r\n function sw_login_failed() {\r\n $login_page = home_url( '/login/' );\r\n wp_redirect( $login_page . '?login=failed' );\r\n exit;\r\n }\r\n add_action( 'wp_login_failed', 'sw_login_failed' );\r\n\r\n function sw_verify_username_password( $user, $username, $password ) {\r\n $login_page = home_url( '/login/' );\r\n if( $username == \"\" || $password == \"\" ) {\r\n wp_redirect( $login_page . \"?login=empty\" );\r\n exit;\r\n }\r\n }\r\n add_filter( 'authenticate', 'sw_verify_username_password', 1, 3);\r\n\r\n function sw_logout_page() {\r\n $login_page = home_url( '/login/' );\r\n wp_redirect( $login_page . \"?login=false\" );\r\n exit;\r\n }\r\n add_action('wp_logout','sw_logout_page');\r\n\r\n function sw_login_page() {\r\n\r\n $title = 'Login';\r\n\r\n if (!get_page_by_title($title, 'OBJECT', 'page') ){\r\n\r\n $login_page = array(\r\n\r\n 'post_title' => $title,\r\n 'post_content' => 'Use this page to customise the Login Page.',\r\n 'post_status' => 'publish',\r\n 'post_type' => 'page',\r\n );\r\n\r\n wp_insert_post( $login_page );\r\n\r\n }\r\n\r\n }\r\n add_action('init','sw_login_page'); \r\n }\r\n \r\n // Include the masonry module.\r\n if ($options['bl_masonry'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-masonry-module/bb-sw-gallery.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-masonry-module/includes/bb-sw-masonry.php';\r\n }\r\n \r\n // Include the news ticker module.\r\n if ($options['bl_news_ticker'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-news-ticker/bb-sw-news-ticker.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-news-ticker/includes/bb-sw-news-ticker-module.php';\r\n }\r\n \r\n // Include the next page module.\r\n if ($options['bl_next_page'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-nextpage/bb-sw-nextpage.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-nextpage/includes/bb-sw-nextpage-module.php';\r\n }\r\n \r\n // Include the pinterest layout module.\r\n if ($options['bl_pinterest'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-pinterest-layout/bb-sw-pinterest-layout.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-pinterest-layout/includes/bb-sw-pinterest-layout-module.php';\r\n }\r\n \r\n // Include the popup module.\r\n if ($options['bl_popup'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-popup/bb-sw-popup.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-popup/includes/bb-sw-popup-module.php';\r\n }\r\n \r\n // Include the portfolio module.\r\n if ($options['bl_portfolio'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-portfolio/bb-sw-portfolio.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-portfolio/includes/bb-sw-portfolio-module.php';\r\n }\r\n \r\n // Include the resizer module.\r\n if ($options['bl_resizer'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-resizer/bb-sw-resizer.php';\r\n }\r\n \r\n // Include the social module.\r\n if ($options['bl_social'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/sw-bb-socialshare/sw-bb-socialshare.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/sw-bb-socialshare/includes/bb-sw-socialshare-module.php';\r\n }\r\n \r\n // Include the tables module.\r\n if ($options['bl_tables'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-tables/bb-sw-tables.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-tables/includes/bb-sw-tables-module.php';\r\n }\r\n \r\n // Include the toolbar module.\r\n if ($options['bl_toolbar_cta'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-toolbar-cta/bb-sw-toolbar-cta.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-toolbar-cta/includes/bb-sw-toolbar-cta-module.php';\r\n }\r\n \r\n // Include the tooltips module.\r\n if ($options['bl_tooltips'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-tooltips/bb-sw-tooltip.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-tooltips/includes/bb-sw-tooltip-module.php';\r\n }\r\n \r\n // Include the turbotabs module.\r\n if ($options['bl_turbotabs'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-turbotabs/bb-sw-turbotabs.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-turbotabs/includes/bb-sw-turbotabs-module.php';\r\n }\r\n \r\n // Include the timeline module.\r\n if ($options['bl_vert_timeline'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-vert-timeline/bb-sw-vert-timeline.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-vert-timeline/includes/bb-sw-vert-timeline-module.php';\r\n }\r\n \r\n // Include the viewer module.\r\n if ($options['bl_viewer'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-viewer/bb-sw-viewer.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-viewer/includes/bb-sw-viewer-module.php';\r\n }\r\n \r\n // Include the woo featured module.\r\n if ( class_exists( 'woocommerce' ) ) {\r\n if ($options['bl_woo_featured'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woofeatured/bb-sw-woofeatured.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woofeatured/includes/bb-sw-woofeatured-module.php';\r\n }\r\n }\r\n \r\n // Include the woo recent module.\r\n if ( class_exists( 'woocommerce' ) ) {\r\n if ($options['bl_woo_recent'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woorecent/bb-sw-woorecent.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woorecent/includes/bb-sw-woorecent-module.php';\r\n }\r\n }\r\n \r\n // Include the woo sale module.\r\n if ( class_exists( 'woocommerce' ) ) {\r\n if ($options['bl_woo_sale'] == '2') {\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woosale/bb-sw-woosale.php';\r\n require_once dirname( __FILE__ ) . '/lib/modules/bb-sw-woosale/includes/bb-sw-woosale-module.php';\r\n }\r\n }\r\n \r\n}", "function loadAkademiKuLib($class_name) \n{\n Mod::inc($class_name.\".lib\",'',__DIR__.\"/inc/lib/\");\n}", "public function includes()\n {\n // Incluir functions.php\n include_once( WI_ABSPATH . 'functions.php' );\n }", "function bp_ning_import_bp_init() {\n\trequire( dirname( __FILE__ ) . '/bp-functions.php' );\n}", "function wp_default_packages_scripts($scripts)\n {\n }", "function _creative_include_layout_additional_assets($file_name) {\n foreach (array('css', 'js') as $type) {\n $file_relative_path = CREATIVE_THEME_PATH . \"/$type/includes/$file_name.$type\";\n\n if (file_exists(DRUPAL_ROOT . '/' . $file_relative_path)) {\n call_user_func(\"drupal_add_$type\", $file_relative_path, array(\n 'group' => constant(strtoupper($type) . '_THEME'),\n ));\n }\n }\n}", "function bbboing_oik_add_shortcodes() { \r\n bw_add_shortcode( 'bbboing', 'bbboing_sc', oik_path( \"bbboing.inc\", \"bbboing\" ), false );\r\n}", "public function getIncludeFileMenu(){\r\n global $xoTheme;\r\n\r\n\r\n $xoTheme->addScript(\"$url/modules/simantz/include/validatetext.js\");\r\n $xoTheme->addStylesheet(\"$url/modules/simantz/include/popup.css\");\r\n $xoTheme->addScript(\"$url/modules/simantz/include/popup.js\");\r\n $xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js');\r\n $xoTheme->addScript(\"$url/modules/simantz/include/nitobi/nitobi.toolkit.js\");\r\n\r\n $xoTheme->addScript(\"$url/modules/simantz/include/nitobi/nitobi.grid/paginator.js\");\r\n $xoTheme->addStylesheet(\"$url/modules/simantz/include/nitobi/nitobi.grid/paginator.css\");\r\n\r\n $xoTheme->addStylesheet(\"$url/modules/simantz/include/nitobi/nitobi.grid/nitobi.grid.css\");\r\n $xoTheme->addStylesheet(\"$url/modules/simantz/include/nitobi/nitobi.tabstrip/nitobi.tabstrip.css\");\r\n $xoTheme->addStylesheet(\"$url/modules/simantz/include/nitobi/nitobi.combo/nitobi.combo.css\");\r\n $xoTheme->addScript(\"$url/modules/simantz/include/nitobi/nitobi.grid/nitobi.grid.js\");\r\n $xoTheme->addScript(\"$url/modules/simantz/include/nitobi/nitobi.tabstrip/nitobi.tabstrip.js\");\r\n $xoTheme->addScript(\"$url/modules/simantz/include/nitobi/nitobi.combo/nitobi.combo.js\");\r\n\r\n $xoTheme->addScript(\"$url/modules/simantz/include/firefox3_6fix.js\");\r\n }", "function ubercart_image_pkg_info() {\n // Include the CCK\n module_load_include('inc', 'filefield', 'filefield_widget');\n module_load_include('inc', 'imagefield', 'imagefield_widget');\n\n // Determine the image API plugin module to use.\n $plugin = class_exists('imagick') ? 'imageapi_imagemagick' : 'imageapi_gd';\n\n return array(\n 'title' => t('Image support'),\n 'description' => t('This package installs default image support for Ubercart products and integrates them into various parts of the store. It uses Lightbox2 for popup displays on product pages.'),\n 'modules' => array('content', 'filefield', 'imageapi', $plugin, 'imagefield', 'imagecache', 'imagecache_ui', 'lightbox2'),\n );\n}", "public function library()\n\t{\n\t\n\t}", "function painter_head() {\n\t\techo '<script>window.ideaspace_site_path = \"' . url('/') . '\";</script>';\n\n\t\techo '<script src=\"' . url('public/a-painter/vendor/aframe-input-mapping-component.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/build.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/vendor/aframe-teleport-controls.min.js') . '\"></script>';\n echo '<script src=\"' . url('public/a-painter/vendor/aframe-tooltip-component.min.js') . '\"></script>';\n echo '<link rel=\"stylesheet\" href=\"' . url('public/a-painter/css/main.css') . '\">';\n echo '<link rel=\"manifest\" href=\"' . url('public/a-painter/manifest.webmanifest') . '\">';\n}", "function includes() {\n\t\t// Settings\n\t\trequire_once( 'includes/admin/class-alg-wc-custom-order-numbers-settings-section.php' );\n\t\t$settings = array();\n\t\t$settings[] = require_once( 'includes/admin/class-alg-wc-custom-order-numbers-settings-general.php' );\n\t\tif ( is_admin() && get_option( 'alg_custom_order_numbers_version', '' ) !== $this->version ) {\n\t\t\tforeach ( $settings as $section ) {\n\t\t\t\tforeach ( $section->get_settings() as $value ) {\n\t\t\t\t\tif ( isset( $value['default'] ) && isset( $value['id'] ) ) {\n\t\t\t\t\t\t$autoload = isset( $value['autoload'] ) ? ( bool ) $value['autoload'] : true;\n\t\t\t\t\t\tadd_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tupdate_option( 'alg_custom_order_numbers_version', $this->version );\n\t\t}\n\t\t// Core\n\t\trequire_once( 'includes/class-alg-wc-custom-order-numbers-core.php' );\n\t}", "public function ilio_blocks_include() {\n /* Load the plugin functions file. */\n require_once( ILIO_BLOCKS_INCLUDES_DIR . '/common.php' );\n }", "function spreadshop_designer()\n{\ninclude(plugin_dir_path(__FILE__).'/spreaddesigner.php');\nadd_filter('wp_head', 'sources');\n}", "public function get_additional_packages()\n {\n return array();\n }", "private function autoload_scripts() {\n\t\t\n\t}", "static function autoload()\r\n\t{\r\n\t\t\r\n\t}", "private function require_files() {\n\n /**\n * Fixes plugins_url() for plugins located in /lib\n */\n add_filter( 'plugins_url', function( $plugins_url, $path, $plugin ) {\n if ( false !== stripos( $plugin, get_template_directory() ) ) {\n $plugins_url = get_template_directory_uri() . str_replace( WP_PLUGIN_URL . get_template_directory(), '', $plugins_url );\n }\n return $plugins_url;\n }, 10, 3 );\n\n // Include WP_oEmbed class\n require_once ABSPATH . WPINC . '/class-oembed.php';\n\n if ( defined( 'WP_CLI' ) && WP_CLI ) {\n require_once dirname( __FILE__ ) . '/inc/cli/class-cli.php';\n require_once dirname( __FILE__ ) . '/inc/cli/class-cli-clusters.php';\n }\n\n if ( is_admin() ) {\n $this->admin = Admin\\Admin::get_instance();\n $this->homepage_settings = Admin\\Homepage_Settings::get_instance();\n $this->cluster_tools = Admin\\Cluster_Tools::get_instance();\n $this->taxonomy_tools = Admin\\Taxonomy_Tools::get_instance();\n // Will be reimplemented after our move to MailChimp. See #2426\n // $this->newsletter_testing = Newsletter_Testing::get_instance();\n } else {\n $this->frontend = Frontend::get_instance();\n }\n\n $this->scripts_styles = Scripts_Styles::get_instance();\n $this->utilities = Utils::get_instance();\n $this->taxonomies = Taxonomies::get_instance();\n $this->single_option_taxonomies = Single_Option_Taxonomies::get_instance();\n $this->post_types = Types::get_instance();\n $this->user_management = User_Management::get_instance();\n $this->shortcode_manager = Shortcode_Manager::get_instance();\n $this->adverts = Adverts::get_instance();\n $this->ad_kill_switch = Admin\\Ad_Kill_Switch::get_instance();\n $this->slots = Posts\\Slots\\Slots::get_instance();\n $this->feeds = Feeds::get_instance();\n $this->featured_posts = Featured_Posts::get_instance();\n $this->icons = Icons::get_instance();\n $this->cron_management = Cron_Management::get_instance();\n $this->menus = Menus::get_instance();\n $this->menu_icons = Menu_Icons::get_instance();\n $this->component_previews = Component_Previews::get_instance();\n $this->page_cache = Page_Cache::get_instance();\n\n // Target Audience Messaging\n $this->audience = Audience::get_instance();\n $this->message_spot = Message_Spot::get_instance();\n $this->conversion_prompts = Conversion_Prompts::get_instance();\n $this->message_banner = Message_Banner::get_instance();\n\n // Metrics\n $this->metricbots = MetricBots::get_instance();\n $this->weekly_traffic_metric = Weekly_Traffic_Metric::get_instance();\n $this->newsletter_signups_by_page_metric = Newsletter_Signups_By_Page_Metric::get_instance();\n $this->yesterdays_email_metric = Yesterdays_Email_Metric::get_instance();\n\n // Emails\n $this->emails = Email::get_instance();\n $this->email_groups = Email_Groups::get_instance();\n $this->breaking_news_emails = Breaking_News_Emails::get_instance();\n $this->newsletter_emails = Newsletter_Emails::get_instance();\n $this->follow_updates = Follow_Updates::get_instance();\n $this->schedule_follow_updates = Schedule_Follow_Updates::get_instance();\n\n }", "public function include_files()\n\t{\n\t\trequire_once(WP_PARSI_DIR . 'includes/settings.php');\n\t\tglobal $wpp_settings;\n\t\t$wpp_settings = wp_parsi_get_settings();\n\n\t\t$files = array(\n\t\t\t'parsidate',\n\t\t\t'general',\n\t\t\t'fixes-archive',\n\t\t\t'fixes-permalinks',\n\t\t\t'fixes-dates',\n\t\t\t'fixes-misc',\n\t\t\t'admin/styles-fix',\n\t\t\t'admin/lists-fix',\n\t\t\t'admin/other-fix',\n\t\t\t'fixes-calendar',\n\t\t\t'fixes-archives',\n\t\t\t'plugins/woocommerce',\n\t\t\t'plugins/edd',\n\t\t\t'widget/widget_archive',\n\t\t\t'widget/widget_calendar'\n\t\t);\n\n\t\tforeach ($files as $file)\n\t\t\trequire_once(WP_PARSI_DIR . 'includes/' . $file . '.php');\n\n\t\tif (get_locale() == 'fa_IR')\n\t\t\tload_textdomain('wp-parsidate', WP_PARSI_DIR . 'parsi-languages/fa_IR.mo');\n\n\t\tadd_action('widgets_init', array($this, 'register_widget'));\n\t}", "public function init()\n {\n require_code('banners');\n require_code('banners2');\n require_lang('banners');\n }", "public function includes() {\r\n\t\t//Insert here all needed models\r\n\t\tglobal $wpdb;\r\n\r\n\t\t//Insert here all needed models\r\n\t\trequire_once MD_PLUGIN_DIR.'models/class-md-market-downloads-model.php';\r\n\t\t$this->MD_Model = new MD_Market_Downloads_Model($wpdb);\r\n\r\n\t\trequire_once $this->admin_url.'controller/class-md-browse-files-table.php';\r\n\r\n\t\tif(isset($_GET['post_type']) && $_GET['post_type'] == 'market-reports'){\r\n\t\t\t$this->files_table = new MD_Browse_Files_Table($wpdb);\t\r\n\t\t}\r\n\t\t\r\n\t}", "public function admin_includes()\n {\n\n }", "protected function _addons()\n\t{\n\t\t$addons_files = array_merge(\n\t\t\tglob(APPPATH.'addons/menu', GLOB_ONLYDIR),\n\t\t\tglob(MODPATH.'*/addons/menu', GLOB_ONLYDIR)\n\t\t);\n\n\t\tforeach ($addons_files as $file) {\n\t\t\t$addons = glob($file.'/*.php');\n\t\t\tforeach ($addons as $addon) {\n\t\t\t\tinclude_once($addon);\n\t\t\t}\n\t\t}\n\n\t}", "function atkgetinclude($type, $name)\n{\n\tglobal $config_atkroot;\n\t$a = explode(\".\", $name);\n\tif (count($a) == 2)\n\t$include = moduleDir(strtolower($a[0])).$type.\"s/class.\".strtolower($a[1]).\".inc\";\n\telse $include = $config_atkroot.\"atk/\".$type.\"s/class.\".strtolower($name).\".inc\";\n\treturn $include;\n}", "public function templ_dashboard_extends(){\r\n\t\t\t\r\n\t\tdo_action('templconnector_bundle_box');\r\n\t\t\t\r\n\t\t\r\n\t\t/* to get plugins */\t\r\n\t\r\n\t}", "function scf_resources_dir() {\n $res_modules = array('gene', 'antibody', 'modelorganism', 'researchstatement');\n\n $nodes = array();\n $pagers = array();\n\n $elt = 0;\n foreach ($res_modules as $mod) {\n if (module_exists($mod)) {\n list($n, $pager) = module_invoke($mod, 'load_recent_nodes', 5, $elt++);\n $nodes[$mod] = $n;\n $pagers[$mod] = $pager;\n }\n }\n\n return theme('bio_resources', $nodes, $pagers);\n}", "function asu_isearch_libraries_info() {\n // Expected to be extracted into 'sites/all/libraries/jqtree'.\n $libraries['jqtree'] = array(\n 'name' => 'jQTree Library',\n 'vendor url' => 'http://mbraak.github.io/jqTree/',\n 'download url' => 'https://github.com/mbraak/jqTree/archive/0.22.0.zip',\n 'version callback' => 'asu_isearch_short_circuit_version',\n 'files' => array(\n 'js' => array('tree.jquery.js'),\n 'css' => array('jqtree.css'),\n ),\n );\n\n return $libraries;\n}" ]
[ "0.6765893", "0.668261", "0.6527541", "0.6495936", "0.636896", "0.6366501", "0.62492824", "0.6169877", "0.60848767", "0.607533", "0.605937", "0.60577685", "0.6055839", "0.60166633", "0.59091735", "0.5838983", "0.58351755", "0.58104235", "0.5799905", "0.5790972", "0.5780668", "0.57724184", "0.57707536", "0.5759116", "0.5751911", "0.5741803", "0.572248", "0.57195294", "0.57140344", "0.5713347", "0.5681255", "0.56711644", "0.5656244", "0.56475794", "0.56475633", "0.5643939", "0.56319714", "0.5623499", "0.5617631", "0.56001604", "0.55835855", "0.5567345", "0.5565816", "0.5561095", "0.5535945", "0.551928", "0.5517697", "0.55145574", "0.5503555", "0.55007404", "0.5500097", "0.54988223", "0.5475258", "0.54685926", "0.54604226", "0.5457489", "0.5454816", "0.545303", "0.54505956", "0.5449573", "0.54448396", "0.5435223", "0.54340494", "0.5413025", "0.5411777", "0.54044104", "0.5397617", "0.5392059", "0.5390211", "0.53815216", "0.5378318", "0.5370255", "0.53691685", "0.535684", "0.53542596", "0.53498507", "0.53479433", "0.5345529", "0.53449905", "0.53338945", "0.53337157", "0.53336674", "0.53311765", "0.5330534", "0.5324279", "0.53221995", "0.53218263", "0.53164136", "0.5310635", "0.53022", "0.5295934", "0.5292143", "0.528947", "0.5273463", "0.52697647", "0.52682215", "0.5261186", "0.52608824", "0.52548724", "0.5247504", "0.5247228" ]
0.0
-1
/ brands / products
public function view_products() { $product['view'] = Product::productData(); return view('admin.products', ['product' => $product]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getBrandsProductsAndInv() {\n\t\t$bsql=\"SELECT b.id as value,b.brand_name as label FROM brands b where rstatus='A'\";\t\t\n\t\t$bresult=$this->runQuery('getAll',$bsql);\n\t\t\n\t\t$psql=\"SELECT p.id as value,p.product_name as label FROM products p where rstatus='A'\";\t\t\n\t\t$presult=$this->runQuery('getAll',$psql);\n\t\t\n\t\t$invsql=\"select i.id as inv_item_id, b.brand_name as brand_name,b.id as brand_id, p.product_name as prod_name, p.id as prod_id, i.item_name as item_name, i.entry_date as purchase_date, i.buy_price as buy_price, i.sell_price as sell_price, i.quantity as prod_qty from inventory i,brands b,products p where b.id = i.brand_id and p.id = i.product_id and i.rstatus = 'A'\";\t\t\n\t\t$invresult=$this->runQuery('getAll',$invsql);\n\t\techo '[{\"brandDropdownList\":'.json_encode($bresult).',\"productDropdownList\":'.json_encode($presult).',\"inventoryItemList\":'.json_encode($invresult).'}]';\n\t}", "public function products()\n {\n //$products = $api->getAllProducts();\n //var_dump($products);\n // TODO save products to database\n }", "function getProductsByBrand()\n\t{\n\t\tglobal $con;\n\t\tif (isset($_GET['brand'])) {\n\t\t\t$brand_id = $_GET['brand'];\n\t\t\t$get_products = \"select * from products where prod_brand='$brand_id'\";\n\t\t\t$run_products = mysqli_query($con, $get_products);\n\t\t\t$count = mysqli_num_rows($run_products);\n\n\t\t\tif ($count == 0)\n\t\t\t\techo \"<h2>No Products for this brand</h2>\";\n\t\n\t\t\twhile($row = mysqli_fetch_array($run_products)) {\n\t\t\t\t$prod_id = $row['prod_id'];\n\t\t\t\t$prod_cat = $row['prod_cat'];\n\t\t\t\t$prod_brand = $row['prod_brand'];\n\t\t\t\t$prod_price = $row['prod_price'];\n\t\t\t\t$prod_image = $row['prod_img'];\n\n\t\t\t\techo \"\n\t\t\t\t<div class='single_product'>\n\t\t\t\t\t<h3>$prod_title</h3>\n\t\t\t\t\t<img src='admin_area/product_images/$prod_image'>\t\n\t\t\t\t\t<h2>$prod_price</h2>\n\t\t\t\t\t<a href='details.php?pro_id=$prod_id' style='float:left;'>Details</a>\n\t\t\t\t\t<a href='index.php?add_cart=$prod_id'><button>Add to Cart</button></a>\n\t\t\t\t</div>\n\t\t\t\t\";\n\t\t\t}\n\t\t}\n\t}", "function m_brandResults()\n\t{\n\t\t\n\t\tif(empty($this->request['mode']))\n\t\t{\n\t\t\t$this->request['mode']=\"\";\n\t\t}\n\t\n\t\t\n\t\t$this->ObTpl=new template();\n\t\t$this->ObTpl->set_file(\"TPL_BRAND_FILE\",$this->brandTemplate);\n\t\t$this->ObTpl->set_var(\"TPL_VAR_SITEURL\",SITE_URL);\t\n\t\t$this->ObTpl->set_var(\"TPL_VAR_GRAPHICSURL\",GRAPHICS_PATH);\t\n\t\t$this->ObTpl->set_var(\"TPL_VAR_CURRENCY\",CONST_CURRENCY);\t\n\t\t\n\t\t#SETTING TEMPLATE BLOCKS\n\t\t$this->ObTpl->set_block(\"TPL_BRAND_FILE\",\"TPL_MAINPRODUCT_BLK\",\"mainproduct_blk\");\n\t\t$this->ObTpl->set_block(\"TPL_MAINPRODUCT_BLK\",\"TPL_PRODUCT_BLK\",\"product_blk\");\n\t\t#INTIALIZING \n\t\t$this->ObTpl->set_var(\"mainproduct_blk\",\"\");\n\t\t$this->ObTpl->set_var(\"product_blk\",\"\");\n\t\t#********************************************************************\n\t\t\n\t\t\t\t\n\t\t\n\t\n\t\t\n\t\t#TO QUERY PRODUCT TABLE\n\t\t $this->obDb->query = \"SELECT * FROM \".PRODUCTS.\" as p, \".FUSIONS.\" as f WHERE \";\n\t\t $this->obDb->query .=\"(p.iVendorid_FK = '\".$this->request['mode'].\"' and f.iState = '1' and p.iProdid_PK = f.iSubId_FK and f.vtype = 'product' ) group by p.iProdid_PK\";\n\t\t $row_product = $this->obDb->fetchQuery();\n\t\t $prodCount=$this->obDb->record_count;\n\t\n\t\t\n\t\t$this->totalRecords+=$prodCount;\n\t\tif($prodCount>0)\n\t\t{\n\t\t\tfor($i=0;$i<$prodCount;$i++)\n\t\t\t{\n\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_ONSALE\",\"\");\n\t\t\t\tif($row_product[$i]->iSale ==1)\n\t\t\t\t{\n\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_ONSALE\",\"On Sale\");\n\t\t\t\t}\n\t\t\t\n\t\t\t\t$productUrl=SITE_URL.\"ecom/index.php?action=ecom.pdetails&mode=\".$row_product[$i]->vSeoTitle;\n\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRODUCTURL\",$this->libFunc->m_safeUrl($productUrl));\t$this->ObTpl->set_var(\"TPL_VAR_ID\",$this->libFunc->m_displayContent($row_product[$i]->iProdid_PK));\t$this->ObTpl->set_var(\"TPL_VAR_TITLE\",$this->libFunc->m_displayContent($row_product[$i]->vTitle));\n\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_DESC\",$this->libFunc->m_displayContent($row_product[$i]->tShortDescription));\n\n\t\t\t\t##OVERALL PRODUCT STAR RANKING\t\n\t\t\t\t\t$this->obDb->query = \"SELECT SUM(vRank) as total, COUNT(iItemid_FK) as reviewcount FROM \".REVIEWS.\" WHERE iItemid_FK ='\".$row_product[$i]->iProdid_PK.\"'\";\n\t\t\t\t\t$OverallReviewRating = $this->obDb->fetchQuery();\n\t\t\t\t\t$ReviewRating = $OverallReviewRating[0]->total / $OverallReviewRating[0]->reviewcount;\n\t\t\t\t\t$ReviewRating = number_format($ReviewRating , 0, '.', '');\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_REVIEWCOUNT\", $OverallReviewRating[0]->reviewcount.\" reviews\");\t\t\t\n\t\t\t\t\tswitch ($ReviewRating)\n\t\t\t\t\t{\n\t\t\t\t\t\tcase \"0\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating0\\\" />Rating: 0/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"1\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating1\\\" />Rating: 1/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"2\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating2\\\" />Rating: 2/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"3\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating3\\\" />Rating: 3/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"4\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating4\\\" />Rating: 4/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"5\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating5\\\" />Rating: 5/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"6\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating6\\\" />Rating: 6/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"7\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating7\\\" />Rating: 7/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"8\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating8\\\" />Rating: 8/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"9\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating9\\\" />Rating: 9/10</p>\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"10\":\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_OVERALLRANK\", \"<p class=\\\"review rating10\\\" />Rating: 10/10</p>\");\n\t\t\t\t\t\tbreak;\t\n\t\t\t\t\t}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\tif($row_product[$i]->iTaxable==1)\n\t\t\t\t{\n\t\t\t\t\t#GETTING VAT PRICE\n\t\t\t\t\t$vatPercent=$this->libFunc->m_vatCalculate();\n\t\t\t\t\t$vatPrice=number_format((($vatPercent*$row_product[$i]->fPrice)/100+$row_product[$i]->fPrice),2);\n\t\t\t\t\tif(INC_VAT_FLAG == 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (INC_VAT==1) {\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICEMAIN\",number_format($row_product[0]->fPrice,2).\" (\".CONST_CURRENCY.$vatPrice.\" inc. \".VAT_TAX_TEXT.\")\");\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICE\",$this->libFunc->m_displayContent($row_product[$i]->fPrice).\" (\".CONST_CURRENCY.$vatPrice.\" inc. \".VAT_TAX_TEXT.\")\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICEMAIN\",$vatPrice.\" inc. \".VAT_TAX_TEXT);\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICE\",$vatPrice.\" inc. \".VAT_TAX_TEXT);\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (INC_VAT==1) {\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICEMAIN\",number_format($row_product[0]->fPrice,2).\" (\".CONST_CURRENCY.$vatPrice.\")\");\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICE\",$this->libFunc->m_displayContent($row_product[$i]->fPrice).\" (\".CONST_CURRENCY.$vatPrice.\")\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICEMAIN\",$vatPrice);\n\t\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICE\",$vatPrice);\t\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_PRICE\",$this->libFunc->m_displayContent($row_product[$i]->fPrice));\n\t\t\t\t}\n\n\t\t\t\tif(!empty($row_product[$i]->vImage1))\n\t\t\t\t{\n\t\t\t\t\t$img=$this->libFunc->m_checkFile($row_product[$i]->vImage1,\"product\",$this->libFunc->m_displayContent($row_product[$i]->vTitle));\n\t\t\t\t\tif($img)\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_IMG\",$img);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_IMG\",MSG_NOIMG);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$this->ObTpl->set_var(\"TPL_VAR_IMG\",MSG_NOIMG);\n\t\t\t\t}\n\t\t\t\t$this->ObTpl->parse(\"product_blk\",\"TPL_PRODUCT_BLK\",true);\n\t\t\t}\n\t\t\t$this->ObTpl->parse(\"mainproduct_blk\",\"TPL_MAINPRODUCT_BLK\",true);\n\t\t}\n\t\t\n\t\tif($this->totalRecords==0)\n\t\t{\n\t\t\t$this->ObTpl->set_var(\"TPL_VAR_TOTALRECORDS\",MSG_NO_SEARCHRESULT);\t\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->ObTpl->set_var(\"TPL_VAR_TOTALRECORDS\",$this->totalRecords.\" Records Found\");\t\n\t\t}\n\t\n\t\treturn($this->ObTpl->parse(\"return\",\"TPL_BRAND_FILE\"));\n\t}", "public function products()\n {\n\n }", "public function brandsproductDisplay($bran_id){\n $result= $this->brandsProduct($bran_id);\n\n if($result == \"PRODUCTS_NOT_FOUND\"){\n echo(\"NO_PRODUCT_FOUND_UNDER_BRAND\");\n }\n else{\n foreach($result as $brandsProduct){\n echo('<div class=\"col-lg-6\">'.\n \n '<div class=\"d-block d-md-flex listing vertical\">'.\n '<a href=\"#\" class=\"img d-block\" style=\"background-image: url('.$brandsProduct[\"product_mainimg\"].')\"></a>'.\n '<div class=\"lh-content\">'.\n '<a href=\"#\" class=\"bookmark\"><span class=\"icon-heart\"></span></a>'.\n '<h3><a href=\"#\">'.$brandsProduct[\"product_title\"].'</a></h3>'.\n '<address>Posted time: '.$brandsProduct[\"post_time\"].'</address>'.\n '<p class=\"mb-0\">'.\n '<span class=\"review\">$'.$brandsProduct[\"product_price\"].'.00</span>'.\n '</p>'.\n '</div>'.\n '</div>'.\n\n '</div>');\n }\n }\n \n }", "public function getProduct();", "public function index()\n {\n $brands = brand_product::where('brand_status', 1)->get();\n return Brand::collection($brands);\n }", "public function viewProductAction(){\n $request = $this->getRequest();\n $session = $request->getSession();\n $company_id = $session->get('id');\n $role = $session->get('role');\n if ($role == 'company'){\n $em = $this->getDoctrine()->getEntityManager();\n $productsBrands = $em->getRepository('SiteSavalizeBundle:ProductBrand')->displayCompanyProducts($company_id);\n $brands = $this->getDoctrine()->getEntityManager()->getRepository('SiteSavalizeBundle:Brand')->findByCompany(array('id' =>$company_id));\n\n $p = array();\n $b = array();\n\n for($i=0; $i<count($brands); $i++)\n {\n $b[$i]= $brands[$i]->getName();\n }\n \n for($i=0; $i<count($productsBrands); $i++)\n {\n $p[$i] = $productsBrands[$i]->getProduct()->getName();\n }\n\n $repository = $this->getDoctrine()->getEntityManager()->getRepository('SiteSavalizeBundle:Category');\n $categories = $repository->categoryAutocomplete();\n }\n return $this->render('SiteSavalizeBundle:Company:newproduct.html.twig' , array(\n 'brands' => $b , 'products' => $p,\n 'categories' => $categories));\n \n }", "public function index() {\n\n $categories = $this->categoryRepo->listCategories('name', 'asc')->where('parent_id', 1);\n $brands = $this->brandRepo->listBrands();\n\n return view('admin.products.list', [\n 'categories' => $categories,\n 'brands' => $brands\n ]);\n }", "public function index(){\n\n $allProduct = DB::table('products')->orderBy('id', 'DESC')\n ->leftjoin('categories', 'products.category_id', '=', 'categories.id')\n ->leftjoin('sub_categories', 'products.sub_category_id', '=', 'sub_categories.id')\n ->leftjoin('brands', 'products.brand_id', '=', 'brands.id')\n ->select('products.*', 'categories.category_name', 'sub_categories.sub_category', 'brands.name as brand')\n ->get();\n return view('dashboard.pages.product', compact('allProduct'));\n }", "public function index() {\n return view('admin.products.brands.index')->with([\n 'array' => Brand::orderBy('created_at')->get(),\n 'parent' => false,\n 'color' => false,\n 'array_type' => 'Brand',\n 'route' => route('admin.products.brands.store')\n ]);\n }", "public function index()\n {\n $products=Product::all();\n $brands=Brand::all();\n\n return view('backEnd.admin.product.index' ,['products'=> $products, 'brands'=> $brands]);\n\n }", "public function getCarBrands();", "public function index()\n {\n $brands = ProductBrand::all();\n\n return view('admin.brand.index', ['brandsData' => $brands]);\n }", "public function index()\n {\n //\n $products=Product::orderBy('id', 'desc')->paginate(15);\n\n $brands = Brand::pluck('name','id')->all();\n $categories = Category::pluck('name','id')->all();\n /*$products=Product::all();*/\n /* dd($products);*/\n return view('admin.products.index',compact('products','brands','categories'));\n }", "public function paramsAction() {\n\n$product_collection = Mage::getModel('catalog/category')->load(3)->getProductCollection();\n\n// Now let's loop through the product collection and print the ID of every product \nforeach($product_collection as $product) {\n // Get the product ID\n\n$product_id = $product->getId();\n\n // Load the full product model based on the product ID\n\n$full_product = Mage::getModel('catalog/product')->load($product_id);\n\n // Now that we loaded the full product model, let's access all of it's data\n\n // Let's get the Product Name\n\n $product_name = $full_product->getName();\n\n // Let's get the Product URL path\n\n $product_url = $full_product->getProductUrl();\n\n // Let's get the Product Image URL\n\n $product_image_url = $full_product->getImageUrl();\n\n // Let's print the product information we gathered and continue onto the next one\n\n echo $product_name;\n\n echo $product_image_url;\n}\n }", "public function getProductsByBrowse()\n {\n $collection = new AjaxModel();\n $products = $this->checkCategoryType();\n if($_POST['stock'] == 'true') {\n $allProducts = $collection->getProductsInStock($products);\n } else {\n $allProducts = $collection->getProductsByCategory($products);\n }\n\n foreach ($allProducts as $item) {\n //colon delimiter for each cell, bar delimiter for each row\n echo $item[0].\":\".$item[1].\":\".$item[2].\":\".$item[3].\"|\";\n }\n }", "public function index()\n {\n $productBrands = Brand::orderBy('code')->get();\n return view('brands.index', compact('productBrands'));\n }", "public function index()\n {\n // $products = Product::latest()->paginate(10)->join();\n // $products = Product::join('brands', 'products.brand_id', '=', 'brands.id')->get();\n $products = Product::select(['products.*', 'brands.title as brand_title', 'categories.title as category_title'])\n ->join('categories', 'products.category_id', '=', 'categories.id')\n ->join('brands', 'products.brand_id', '=', 'brands.id')->latest()->paginate(10);\n // return view('backend.products.index',compact('products'))\n // ->with('i', (request()->input('page', 1) - 1) * 5);\n // dd($products);\n return view('backend.products.index', compact('products'));\n }", "function fn_get_brands($feature_id, $lang_code = CART_LANGUAGE)\n{\n\t//var_dump($feature_id);\n $params['feature_id']=$feature_id;\n\t$params['feature_type']=\"E\";\n $params['get_images'] = true;\n\t\n list($brands, $search) = fn_get_product_feature_variants($params,0, DESCR_SL);\n\t\n return array($brands, $params);\n}", "private function productenBeheerAction()\n {\n $producten = $this->model->geefProducten();\n $this->view->set('producten', $producten);\n }", "public function product_list_by_brand(){\n $brand_id = $_REQUEST['brand_id'];\n $product_list = $this->User_Model->get_list_by_id_fields('product_id, product_name, tax_rate, min_ord_limit, max_ord_limit, product_unit, product_details, product_img','product_status',1,'manufacturer_id',$brand_id,'','','product_name','ASC','product');\n if ($product_list) {\n foreach ($product_list as $product_list1) {\n $product_id = $product_list1->product_id;\n $product_attribute_list = $this->API_Model->product_attribute_list($product_id);\n // $product_attribute_list = $this->User_Model->get_list_by_id_fields('pro_attri_id, product_id, pro_attri_weight, pro_attri_mrp, pro_attri_price, pro_attri_dis_per, pro_attri_dis_amt','pro_attri_status',1,'product_id',$product_id,'','','pro_attri_id','ASC','product_attribute');\n\n $product_list1->product_attribute_list = $product_attribute_list;\n $product_img_list = $this->User_Model->get_list_by_id_fields('product_images_id, product_images_name','product_id',$product_id,'','','','','product_images_id','ASC','product_images');\n $product_list1->product_img_list = $product_img_list;\n }\n $response[\"status\"] = TRUE;\n $response[\"img_path\"] = base_url().'assets/images/product/';\n $response[\"product_list\"] = $product_list;\n } else {\n $response[\"status\"] = FALSE;\n $response[\"img_path\"] = base_url().'assets/images/product/';\n $response[\"product_list\"] = $product_list;\n }\n $json_response = json_encode($response,JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);\n echo str_replace('\\\\/','/',$json_response);\n }", "public function list()\n {\n // récupérer les données : toutes les catégories enregistrées\n $productList = Product::findAll();\n\n $this->show('product/list', [\n 'productList' => $productList\n ]);\n }", "function getBrandPro() {\n\n if(isset($_GET['brand'])){\n\n\n\n $brand_id = $_GET['brand'];\n\n\n global $con;\n\n $run_brand_pro = mysqli_query($con,\"SELECT * FROM products WHERE product_brand = '$brand_id'\") or die(mysqli_error($con));\n\n $count_brands = mysqli_num_rows($run_brand_pro);\n\n if($count_brands == 0) {\n\n echo \"<div class='no-cat'>\n\n <h1> We're sorry! There are currently no products for that gender. :(</h1>\n\n </div>\";\n } else {\n\n while($row_brand_pro = mysqli_fetch_array($run_brand_pro)) {\n\n $pro_id = $row_brand_pro['product_id'];\n $pro_cat = $row_brand_pro['product_cat'];\n $pro_brand = $row_brand_pro['product_brand'];\n $pro_title = $row_brand_pro['product_title'];\n $pro_price = $row_brand_pro['product_price'];\n $pro_image = $row_brand_pro['product_image'];\n\n echo \"\n <div class='single-product cf'>\n\n <h4><a href='#'>$pro_title</a></h4>\n <a href='details.php?pro_id=$pro_id'><img src='admin/product_images/$pro_image' /></a>\n <p>\n Price: $ $pro_price\n </p>\n\n <a href='index.php?add_cart=$pro_id'><button>Add To Cart</button></a>\n </div>\n\n \";\n\n }\n }\n }\n\n }", "public function getViewedProduct();", "public function getIndex()\n {\n\t\t\n\n $products = $this->product->getExecuteFormSearch();\n $products->load('brand','variants','styleTypes');\n\n\t\t$this->theme->setTitle('Variant Management');\n\n\t\t$view_data = compact('products');\n return $this->theme->of('variants.index', $view_data)->render();\n }", "public function run()\n {\n $products = [\n ['name' => \"Duracell - AAA Batteries (4-Pack)\", 'description_short' => \"Compatible with select electronic devices; AAA size; DURALOCK Power Preserve technology; 4-pack\", 'description_long' => \"Compatible with select electronic devices; AAA size; DURALOCK Power Preserve technology; 4-pack\", 'price' => 5.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-aaa-batteries-4-pack/43900.p?id=1051384074145&skuId=43900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=43900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4390\\/43900_sa.jpg\"}', 'upc' => '041333424019', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - AA 1.5V CopperTop Batteries (4-Pack)\", 'description_short' => \"Long-lasting energy; DURALOCK Power Preserve technology; for toys, clocks, radios, games, remotes, PDAs and more\", 'description_long' => \"Long-lasting energy; DURALOCK Power Preserve technology; for toys, clocks, radios, games, remotes, PDAs and more\", 'price' => 5.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-aa-1-5v-coppertop-batteries-4-pack/48530.p?id=1099385268988&skuId=48530&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=48530', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4853\\/48530_sa.jpg\"}', 'upc' => '041333415017', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - AA Batteries (8-Pack)\", 'description_short' => \"Compatible with select electronic devices; AA size; DURALOCK Power Preserve technology; 8-pack\", 'description_long' => \"Compatible with select electronic devices; AA size; DURALOCK Power Preserve technology; 8-pack\", 'price' => 7.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-aa-batteries-8-pack/127687.p?id=1051384045676&skuId=127687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=127687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1276\\/127687_sa.jpg\"}', 'upc' => '041333825014', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX Batteries AA (4-Pack)\", 'description_short' => \"4-pack AA alkaline batteries; battery tester included\", 'description_long' => \"4-pack AA alkaline batteries; battery tester included\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-batteries-aa-4-pack/150115.p?id=1051384046217&skuId=150115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=150115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1501\\/150115_sa.jpg\"}', 'upc' => '039800011329', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - C Batteries (4-Pack)\", 'description_short' => \"Compatible with select electronic devices; C size; DURALOCK Power Preserve technology; 4-pack\", 'description_long' => \"Compatible with select electronic devices; C size; DURALOCK Power Preserve technology; 4-pack\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-c-batteries-4-pack/185230.p?id=1051384046486&skuId=185230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=185230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1852\\/185230_sa.jpg\"}', 'upc' => '041333440019', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - D Batteries (4-Pack)\", 'description_short' => \"Compatible with select electronic devices; D size; DURALOCK Power Preserve technology; 4-pack\", 'description_long' => \"Compatible with select electronic devices; D size; DURALOCK Power Preserve technology; 4-pack\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-d-batteries-4-pack/185267.p?id=1051384046551&skuId=185267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=185267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1852\\/185267_sa.jpg\"}', 'upc' => '041333430010', 'provider' => 'bestbuy'],\n ['name' => \"Pioneer - 4\\\" 3-Way Surface-Mount Speakers with IMPP Composite Cones (Pair) - Black\", 'description_short' => \"80W maximum power (20W RMS); 4&quot; IMPP composite cone woofer; 3/4&quot; horn tweeter\", 'description_long' => \"80W maximum power (20W RMS); 4&quot; IMPP composite cone woofer; 3/4&quot; horn tweeter\", 'price' => 144.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pioneer-4-3-way-surface-mount-speakers-with-impp-composite-cones-pair-black/309062.p?id=1218643240258&skuId=309062', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=309062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0309\\/0309062_sa.jpg\"}', 'upc' => '012562165141', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - 9V Batteries (2-Pack)\", 'description_short' => \"Compatible with select electronic devices; alkaline chemistry; 9V size; DURALOCK Power Preserve technology; 2-pack\", 'description_long' => \"Compatible with select electronic devices; alkaline chemistry; 9V size; DURALOCK Power Preserve technology; 2-pack\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-9v-batteries-2-pack/312290.p?id=1051384050321&skuId=312290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=312290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3122\\/312290_sa.jpg\"}', 'upc' => '041333216010', 'provider' => 'bestbuy'],\n ['name' => \"Directed Electronics - Viper Audio Glass Break Sensor\", 'description_short' => \"From our expanded online assortment; compatible with Directed Electronics alarm systems; microphone and microprocessor detect and analyze intrusions; detects quiet glass breaks\", 'description_long' => \"From our expanded online assortment; compatible with Directed Electronics alarm systems; microphone and microprocessor detect and analyze intrusions; detects quiet glass breaks\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/directed-electronics-viper-audio-glass-break-sensor/324884.p?id=1112808077651&skuId=324884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=324884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3248\\/324884_rc.jpg\"}', 'upc' => '093207005060', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - N Cell E90 Batteries (2-Pack)\", 'description_short' => \"Alkaline batteries; 1.5V\", 'description_long' => \"Alkaline batteries; 1.5V\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-n-cell-e90-batteries-2-pack/333179.p?id=1185268509951&skuId=333179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=333179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3331\\/333179_sa.jpg\"}', 'upc' => '039800013200', 'provider' => 'bestbuy'],\n ['name' => \"Salt (Blu-ray Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salt-blu-ray-disc-unrated/341632.p?id=2164505&skuId=341632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=341632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3416\\/341632_sa.jpg\"}', 'upc' => '043396350113', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Radio Installation Dash Kit for Most 1989-2000 Ford, Lincoln & Mercury Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with most 1989-2000 Ford, Lincoln and Mercury vehicles; snap-in TurboKit offers fast installation; spacer/trim ring; rear support bracket\", 'description_long' => \"From our expanded online assortment; compatible with most 1989-2000 Ford, Lincoln and Mercury vehicles; snap-in TurboKit offers fast installation; spacer/trim ring; rear support bracket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-radio-installation-dash-kit-for-most-1989-2000-ford-lincoln-mercury-vehicles-black/346575.p?id=1218118704590&skuId=346575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=346575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3465\\/346575_rc.jpg\"}', 'upc' => '086429002757', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Radio Dash Multikit for Select GM Vehicles - Black\", 'description_short' => \"From our expanded online assortment; compatible with select GM vehicles; plastic material\", 'description_long' => \"From our expanded online assortment; compatible with select GM vehicles; plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-radio-dash-multikit-for-select-gm-vehicles-black/346646.p?id=1210376657731&skuId=346646', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=346646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3466\\/346646_rc.jpg\"}', 'upc' => '086429003273', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Wiring Harness for Select 1998-2008 Ford Vehicles - Multicolored\", 'description_short' => \"Compatible with select 1998-2008 Ford vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'description_long' => \"Compatible with select 1998-2008 Ford vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-wiring-harness-for-select-1998-2008-ford-vehicles-multicolored/347137.p?id=1142290459780&skuId=347137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=347137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9852\\/9852688_sa.jpg\"}', 'upc' => '086429056514', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness Adapter for Select Vehicles\", 'description_short' => \"Compatible with Honda and Acura vehicles; connects an aftermarket radio to your car&#039;s harness\", 'description_long' => \"Compatible with Honda and Acura vehicles; connects an aftermarket radio to your car&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-adapter-for-select-vehicles/347146.p?id=1183160746244&skuId=347146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=347146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3471\\/347146_rc.jpg\"}', 'upc' => '086429056507', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Wiring Harness for Most 1986-1998 Honda Acura Vehicles - Multicolored\", 'description_short' => \"Compatible with most 1986-1998 Honda Acura vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'description_long' => \"Compatible with most 1986-1998 Honda Acura vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-wiring-harness-for-most-1986-1998-honda-acura-vehicles-multicolored/347155.p?id=1142292396747&skuId=347155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=347155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3471\\/347155_rc.jpg\"}', 'upc' => '086429002597', 'provider' => 'bestbuy'],\n ['name' => \"METRA - Antenna Cable Adapter\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-cable-adapter/347324.p?id=1122653249084&skuId=347324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=347324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3473\\/347324_105x210_sc.jpg\"}', 'upc' => '086429007097', 'provider' => 'bestbuy'],\n ['name' => \"METRA - Antenna Cable Adapter - Black\", 'description_short' => \"Compatible with select 1988-2005 vehicles; adapts an aftermarket antenna to OEM radios; flat plug\", 'description_long' => \"Compatible with select 1988-2005 vehicles; adapts an aftermarket antenna to OEM radios; flat plug\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-cable-adapter-black/347333.p?id=1169512349334&skuId=347333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=347333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3473\\/347333_sa.jpg\"}', 'upc' => '086429007189', 'provider' => 'bestbuy'],\n ['name' => \"INSTALL - PORTABLE RADAR DETECTOR INST\", 'description_short' => \"PORTABLE RADAR DETECTOR INST\", 'description_long' => \"PORTABLE RADAR DETECTOR INST\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/install-portable-radar-detector-inst/349572.p?id=1218019625086&skuId=349572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=349572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_m.gif\"}', 'upc' => '400003495726', 'provider' => 'bestbuy'],\n ['name' => \"Pioneer - 4\\\" x 10\\\" 2-Way Car Speakers with Polypropylene Cone (Pair)\", 'description_short' => \"Handles 120 watts peak power (35 watts RMS); 4&quot; x 10&quot; injection-molded polypropylene composite cone woofer; 1-5/8&quot; cone tweeter; 8.8 oz. magnet\", 'description_long' => \"Handles 120 watts peak power (35 watts RMS); 4&quot; x 10&quot; injection-molded polypropylene composite cone woofer; 1-5/8&quot; cone tweeter; 8.8 oz. magnet\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pioneer-4-x-10-2-way-car-speakers-with-polypropylene-cone-pair/354280.p?id=1051826168113&skuId=354280', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=354280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0354\\/0354280_sa.jpg\"}', 'upc' => '012562175287', 'provider' => 'bestbuy'],\n ['name' => \"Backroads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backroads-cd/357946.p?id=273505&skuId=357946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=357946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3579\\/357946.jpg\"}', 'upc' => '074644685527', 'provider' => 'bestbuy'],\n ['name' => \"The City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-city-cd/358801.p?id=102982&skuId=358801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=358801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0358\\/0358801_sa.jpg\"}', 'upc' => '075678224829', 'provider' => 'bestbuy'],\n ['name' => \"Sailing the Seas of Cheese - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sailing-the-seas-of-cheese-cd/358909.p?id=95472&skuId=358909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=358909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0358\\/0358909_sa.jpg\"}', 'upc' => '606949165925', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Favorite Hits [Capitol Special Markets] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-favorite-hits-capitol-special-markets-cd/359276.p?id=245619&skuId=359276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=359276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3592\\/359276.jpg\"}', 'upc' => '077775739626', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Cema/Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cema-atlantic-cd/359301.p?id=93259&skuId=359301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=359301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3593\\/359301.jpg\"}', 'upc' => '077775739824', 'provider' => 'bestbuy'],\n ['name' => \"O.G. (Original Gangster) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/o-g-original-gangster-cd/359846.p?id=2390035&skuId=359846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=359846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0359\\/0359846_sa.jpg\"}', 'upc' => '075992649223', 'provider' => 'bestbuy'],\n ['name' => \"Playground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playground-cd/359980.p?id=70015&skuId=359980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=359980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3599\\/359980.jpg\"}', 'upc' => '077779548026', 'provider' => 'bestbuy'],\n ['name' => \"Seal [1991] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seal-1991-cd/360139.p?id=98170&skuId=360139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3601\\/360139_sa.jpg\"}', 'upc' => '075992662727', 'provider' => 'bestbuy'],\n ['name' => \"Wilson Phillips - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wilson-phillips-cd/360193.p?id=104417&skuId=360193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3601\\/360193.jpg\"}', 'upc' => '077779374526', 'provider' => 'bestbuy'],\n ['name' => \"To The Extreme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-the-extreme-cd/360317.p?id=2292802&skuId=360317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0360\\/0360317_sa.jpg\"}', 'upc' => '077779532520', 'provider' => 'bestbuy'],\n ['name' => \"True Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-love-cd/360415.p?id=1366577&skuId=360415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '762185123522', 'provider' => 'bestbuy'],\n ['name' => \"Pocket Full of Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pocket-full-of-gold-cd/360433.p?id=83624&skuId=360433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3604\\/360433_sa.jpg\"}', 'upc' => '008811014025', 'provider' => 'bestbuy'],\n ['name' => \"Steelheart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steelheart-cd/360451.p?id=100266&skuId=360451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0360\\/0360451_sa.jpg\"}', 'upc' => '076732636824', 'provider' => 'bestbuy'],\n ['name' => \"The Alligator Records 20th Anniversary Collection - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-alligator-records-20th-anniversary-collection-cd-various/360665.p?id=72758&skuId=360665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=360665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3606\\/360665_sa.jpg\"}', 'upc' => '014551105626', 'provider' => 'bestbuy'],\n ['name' => \"Divinyls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/divinyls-cd/361343.p?id=80596&skuId=361343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3613\\/361343.jpg\"}', 'upc' => '077778618522', 'provider' => 'bestbuy'],\n ['name' => \"Mama Said [Edited] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mama-said-edited-pa-cd/361405.p?id=2065353&skuId=361405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0361\\/0361405_sa.jpg\"}', 'upc' => '077778620921', 'provider' => 'bestbuy'],\n ['name' => \"Vagabond Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vagabond-heart-cd/361432.p?id=100421&skuId=361432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0361\\/0361432_sa.jpg\"}', 'upc' => '075992630023', 'provider' => 'bestbuy'],\n ['name' => \"MCMXC A.D. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mcmxc-a-d-cd/361566.p?id=81577&skuId=361566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0361\\/0361566_sa.jpg\"}', 'upc' => '077778622420', 'provider' => 'bestbuy'],\n ['name' => \"Out of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/out-of-time-cd/361600.p?id=95773&skuId=361600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3616\\/361600_sa.jpg\"}', 'upc' => '075992649629', 'provider' => 'bestbuy'],\n ['name' => \"Luck of the Draw - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luck-of-the-draw-cd/361888.p?id=95888&skuId=361888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=361888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0361\\/0361888_sa.jpg\"}', 'upc' => '077779611126', 'provider' => 'bestbuy'],\n ['name' => \"Chill of an Early Fall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chill-of-an-early-fall-cd/362191.p?id=100554&skuId=362191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0362\\/0362191_sa.jpg\"}', 'upc' => '008811020422', 'provider' => 'bestbuy'],\n ['name' => \"Night Ride Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-ride-home-cd/362217.p?id=1535040&skuId=362217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3622\\/362217.jpg\"}', 'upc' => '720642430224', 'provider' => 'bestbuy'],\n ['name' => \"Trixter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trixter-cd/362235.p?id=2416887&skuId=362235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3622\\/362235.jpg\"}', 'upc' => '076732638927', 'provider' => 'bestbuy'],\n ['name' => \"Five Man Acoustical Jam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-man-acoustical-jam-cd/362271.p?id=101475&skuId=362271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0362\\/0362271_sa.jpg\"}', 'upc' => '720642431122', 'provider' => 'bestbuy'],\n ['name' => \"Mama Said Knock You Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mama-said-knock-you-out-cd/362422.p?id=89494&skuId=362422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0362\\/0362422_sa.jpg\"}', 'upc' => '731452347725', 'provider' => 'bestbuy'],\n ['name' => \"Forever My Lady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-my-lady-cd/362912.p?id=2701585&skuId=362912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=362912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0362\\/0362912_sa.jpg\"}', 'upc' => '008811019822', 'provider' => 'bestbuy'],\n ['name' => \"Jahmekya - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jahmekya-cd/363323.p?id=90634&skuId=363323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=363323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3633\\/363323_sa.jpg\"}', 'upc' => '077778621720', 'provider' => 'bestbuy'],\n ['name' => \"Time Passes By - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-passes-by-cd/363387.p?id=90836&skuId=363387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=363387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3633\\/363387.jpg\"}', 'upc' => '042284697521', 'provider' => 'bestbuy'],\n ['name' => \"Extreme II: Pornograffitti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extreme-ii-pornograffitti-cd/363403.p?id=81839&skuId=363403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=363403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0363\\/0363403_sa.jpg\"}', 'upc' => '075021531321', 'provider' => 'bestbuy'],\n ['name' => \"The Soul Cages [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-soul-cages-ecd-cd/363421.p?id=100469&skuId=363421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=363421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0363\\/0363421_sa.jpg\"}', 'upc' => '075021640528', 'provider' => 'bestbuy'],\n ['name' => \"Lynyrd Skynyrd 1991 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lynyrd-skynyrd-1991-cd/364322.p?id=2305112&skuId=364322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=364322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0364\\/0364322_sa.jpg\"}', 'upc' => '075678225826', 'provider' => 'bestbuy'],\n ['name' => \"Sugar Tax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sugar-tax-cd/364377.p?id=93725&skuId=364377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=364377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3643\\/364377_sa.jpg\"}', 'upc' => '077778623427', 'provider' => 'bestbuy'],\n ['name' => \"Unforgettable: With Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unforgettable-with-love-cd/364493.p?id=78310&skuId=364493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=364493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0364\\/0364493_sa.jpg\"}', 'upc' => '075596104920', 'provider' => 'bestbuy'],\n ['name' => \"Keys Of The Kingdom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keys-of-the-kingdom-cd/364867.p?id=1531712&skuId=364867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=364867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0364\\/0364867_sa.jpg\"}', 'upc' => '042284943321', 'provider' => 'bestbuy'],\n ['name' => \"For Unlawful Carnal Knowledge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-unlawful-carnal-knowledge-cd/364901.p?id=2443914&skuId=364901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=364901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0364\\/0364901_sa.jpg\"}', 'upc' => '075992659420', 'provider' => 'bestbuy'],\n ['name' => \"Warm Your Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-your-heart-cd/365143.p?id=93088&skuId=365143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3651\\/365143_sa.jpg\"}', 'upc' => '075021535428', 'provider' => 'bestbuy'],\n ['name' => \"Marc Cohn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marc-cohn-cd/365161.p?id=78240&skuId=365161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0365\\/0365161_sa.jpg\"}', 'upc' => '075678217821', 'provider' => 'bestbuy'],\n ['name' => \"Meant to Be Mint - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meant-to-be-mint-cd/365170.p?id=91850&skuId=365170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3651\\/365170.jpg\"}', 'upc' => '028968100129', 'provider' => 'bestbuy'],\n ['name' => \"New Jack City [Original Soundtrack] [PA] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-jack-city-original-soundtrack-pa-original-soundtrack-cd/365214.p?id=93149&skuId=365214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0365\\/0365214_sa.jpg\"}', 'upc' => '075992440929', 'provider' => 'bestbuy'],\n ['name' => \"Best of Eric Burdon & the Animals, 1966-1968... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-eric-burdon-the-animals-1966-1968-cd/365241.p?id=76320&skuId=365241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0365\\/0365241_sa.jpg\"}', 'upc' => '042284938822', 'provider' => 'bestbuy'],\n ['name' => \"De La Soul Is Dead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/de-la-soul-is-dead-cd/365269.p?id=79942&skuId=365269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0365\\/0365269_sa.jpg\"}', 'upc' => '016998102923', 'provider' => 'bestbuy'],\n ['name' => \"Superstition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superstition-cd/365811.p?id=98941&skuId=365811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=365811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3658\\/365811.jpg\"}', 'upc' => '720642438725', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Stars of Bluegrass Music [CMH 1989] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-stars-of-bluegrass-music-cmh-1989-cd-various/366348.p?id=75182&skuId=366348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3663\\/366348_sa.jpg\"}', 'upc' => '027297590328', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Country Fiddlers [1995] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-country-fiddlers-1995-cd-various/366357.p?id=245447&skuId=366357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3663\\/366357_sa.jpg\"}', 'upc' => '027297590427', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-concertos-cd/366446.p?id=1676938&skuId=366446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0366\\/0366446_sa.jpg\"}', 'upc' => '074644655629', 'provider' => 'bestbuy'],\n ['name' => \"Aces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aces-cd/366525.p?id=75404&skuId=366525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3665\\/366525_sa.jpg\"}', 'upc' => '077779584727', 'provider' => 'bestbuy'],\n ['name' => \"Live & Kickin' All over America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-kickin-all-over-america-cd/366669.p?id=73913&skuId=366669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3666\\/366669_sa.jpg\"}', 'upc' => '022071310321', 'provider' => 'bestbuy'],\n ['name' => \"Jazz [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-bonus-tracks-cd/366758.p?id=95706&skuId=366758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0366\\/0366758_sa.jpg\"}', 'upc' => '720616106223', 'provider' => 'bestbuy'],\n ['name' => \"The Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-game-cd/366776.p?id=95717&skuId=366776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0366\\/0366776_sa.jpg\"}', 'upc' => '720616106322', 'provider' => 'bestbuy'],\n ['name' => \"A Kind of Magic [Bonus Track] [Hollywood] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-kind-of-magic-bonus-track-hollywood-cd/366883.p?id=95697&skuId=366883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0366\\/0366883_sa.jpg\"}', 'upc' => '720616115225', 'provider' => 'bestbuy'],\n ['name' => \"A Future Without a Past... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-future-without-a-past-cd/366945.p?id=88864&skuId=366945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=366945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3669\\/366945_sa.jpg\"}', 'upc' => '075596097628', 'provider' => 'bestbuy'],\n ['name' => \"Attack of the Killer B's [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/attack-of-the-killer-bs-edited-cd/367490.p?id=1365870&skuId=367490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=367490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3674\\/367490_sa.jpg\"}', 'upc' => '042284880428', 'provider' => 'bestbuy'],\n ['name' => \"House of Hope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-hope-cd/367597.p?id=77501&skuId=367597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=367597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3675\\/367597_sa.jpg\"}', 'upc' => '075021535824', 'provider' => 'bestbuy'],\n ['name' => \"Into the Great Wide Open - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-great-wide-open-cd/367819.p?id=94821&skuId=367819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=367819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3678\\/367819_sa.jpg\"}', 'upc' => '008811031725', 'provider' => 'bestbuy'],\n ['name' => \"The Ruler's Back [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rulers-back-pa-cd/368177.p?id=99140&skuId=368177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=368177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3681\\/368177_sa.jpg\"}', 'upc' => '731452348029', 'provider' => 'bestbuy'],\n ['name' => \"God Fodder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-fodder-cd/368373.p?id=92957&skuId=368373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=368373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0368\\/0368373_sa.jpg\"}', 'upc' => '074644792928', 'provider' => 'bestbuy'],\n ['name' => \"Thelma & Louise - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelma-louise-cd-original-soundtrack/368532.p?id=101546&skuId=368532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=368532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3685\\/368532.jpg\"}', 'upc' => '008811023928', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso Guitar 1925-1934 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-guitar-1925-1934-cd/368701.p?id=74919&skuId=368701&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=368701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3687\\/368701_sa.jpg\"}', 'upc' => '016351011923', 'provider' => 'bestbuy'],\n ['name' => \"Different Lifestyles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/different-lifestyles-cd/369247.p?id=104420&skuId=369247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=369247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3692\\/369247_sa.jpg\"}', 'upc' => '077779207824', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Conja - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-conja-cd/369336.p?id=74241&skuId=369336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=369336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0369\\/0369336_sa.jpg\"}', 'upc' => '081227052522', 'provider' => 'bestbuy'],\n ['name' => \"Peaceful Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peaceful-journey-cd/369354.p?id=85158&skuId=369354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=369354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0369\\/0369354_sa.jpg\"}', 'upc' => '008811028923', 'provider' => 'bestbuy'],\n ['name' => \"Good Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-woman-cd/369498.p?id=88279&skuId=369498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=369498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3694\\/369498.jpg\"}', 'upc' => '008811032920', 'provider' => 'bestbuy'],\n ['name' => \"Reality - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reality-cd/369693.p?id=156319&skuId=369693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=369693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0369\\/0369693_sa.jpg\"}', 'upc' => '048021746224', 'provider' => 'bestbuy'],\n ['name' => \"Slave to the Grind [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slave-to-the-grind-pa-cd/370397.p?id=99055&skuId=370397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0370\\/0370397_sa.jpg\"}', 'upc' => '075678224225', 'provider' => 'bestbuy'],\n ['name' => \"Music Of Glass Hendrix & Others - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-glass-hendrix-others-cd/370583.p?id=1681980&skuId=370583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0370\\/0370583_sa.jpg\"}', 'upc' => '075597911121', 'provider' => 'bestbuy'],\n ['name' => \"Nocturnes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nocturnes-cd/370645.p?id=1685148&skuId=370645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0370\\/0370645_sa.jpg\"}', 'upc' => '075597923322', 'provider' => 'bestbuy'],\n ['name' => \"Robin Hood, Prince of Thieves [Original... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robin-hood-prince-of-thieves-original-cd-original-soundtrack/370789.p?id=96866&skuId=370789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3707\\/370789.jpg\"}', 'upc' => '729592000426', 'provider' => 'bestbuy'],\n ['name' => \"Draped - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/draped-cd/370896.p?id=74426&skuId=370896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3708\\/370896.jpg\"}', 'upc' => '075679170828', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/370976.p?id=99695&skuId=370976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=370976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3709\\/370976_sa.jpg\"}', 'upc' => '075992658225', 'provider' => 'bestbuy'],\n ['name' => \"The Best of 1968-1973 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-1968-1973-cd/372386.p?id=2389786&skuId=372386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3723\\/372386.jpg\"}', 'upc' => '077779527120', 'provider' => 'bestbuy'],\n ['name' => \"Harder...Faster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harder-faster-cd/372411.p?id=73179&skuId=372411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0372\\/0372411_sa.jpg\"}', 'upc' => '077774606820', 'provider' => 'bestbuy'],\n ['name' => \"Nature of the Beast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nature-of-the-beast-cd/372420.p?id=73181&skuId=372420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3724\\/372420_sa.jpg\"}', 'upc' => '077774606721', 'provider' => 'bestbuy'],\n ['name' => \"As Far as Siam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-far-as-siam-cd/372439.p?id=96200&skuId=372439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3724\\/372439.jpg\"}', 'upc' => '077779593828', 'provider' => 'bestbuy'],\n ['name' => \"Live Two Five - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-two-five-cd/372448.p?id=93426&skuId=372448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3724\\/372448_sa.jpg\"}', 'upc' => '077779312825', 'provider' => 'bestbuy'],\n ['name' => \"The Early Years, Vol. 1 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-early-years-vol-1-digipak-cd/372475.p?id=103329&skuId=372475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3724\\/372475_sa.jpg\"}', 'upc' => '767004060125', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Polka Hits of All Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-polka-hits-of-all-time-cd/372493.p?id=103170&skuId=372493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3724\\/372493.jpg\"}', 'upc' => '715187749924', 'provider' => 'bestbuy'],\n ['name' => \"Crazy World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crazy-world-cd/372947.p?id=98090&skuId=372947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=372947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3729\\/372947.jpg\"}', 'upc' => '042284690829', 'provider' => 'bestbuy'],\n ['name' => \"Jensen - 3.6V NiCad Battery for 900MHz Phones\", 'description_short' => \"Rechargeable 3.6V 300 mAh NiCad battery for GE 2-9614 model cordless phones\", 'description_long' => \"Rechargeable 3.6V 300 mAh NiCad battery for GE 2-9614 model cordless phones\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jensen-3-6v-nicad-battery-for-900mhz-phones/373642.p?id=1051384793767&skuId=373642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=373642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3736\\/373642_rc.jpg\"}', 'upc' => '044476085840', 'provider' => 'bestbuy'],\n ['name' => \"Can't Stop the Rock: The Stryper Collection... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-stop-the-rock-the-stryper-collection-cd/373786.p?id=100634&skuId=373786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=373786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3737\\/373786_sa.jpg\"}', 'upc' => '720616110626', 'provider' => 'bestbuy'],\n ['name' => \"See What Tomorrow Brings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/see-what-tomorrow-brings-cd/374080.p?id=94802&skuId=374080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=374080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0374\\/0374080_sa.jpg\"}', 'upc' => '075992665421', 'provider' => 'bestbuy'],\n ['name' => \"Album 1700 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/album-1700-cd/374099.p?id=94788&skuId=374099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=374099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3740\\/374099_sa.jpg\"}', 'upc' => '075992716826', 'provider' => 'bestbuy'],\n ['name' => \"Altered State - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altered-state-cd/374160.p?id=72844&skuId=374160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=374160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3741\\/374160.jpg\"}', 'upc' => '075992650229', 'provider' => 'bestbuy'],\n ['name' => \"Western Underground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/western-underground-cd/375819.p?id=88927&skuId=375819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=375819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3758\\/375819.jpg\"}', 'upc' => '077779649921', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Robin Trower - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-robin-trower-cd/375855.p?id=102355&skuId=375855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=375855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0375\\/0375855_sa.jpg\"}', 'upc' => '094632185327', 'provider' => 'bestbuy'],\n ['name' => \"Halloween Hits [Rhino] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/halloween-hits-rhino-cd-various/375944.p?id=84690&skuId=375944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=375944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0375\\/0375944_sa.jpg\"}', 'upc' => '081227053529', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bluegrass - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bluegrass-cd-various/376168.p?id=75191&skuId=376168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=376168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0376\\/0376168_sa.jpg\"}', 'upc' => '042284897921', 'provider' => 'bestbuy'],\n ['name' => \"Blue Lines - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-lines-cd/376578.p?id=90752&skuId=376578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=376578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3765\\/376578.jpg\"}', 'upc' => '077778622826', 'provider' => 'bestbuy'],\n ['name' => \"Let Me In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-me-in-cd/376630.p?id=104504&skuId=376630&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=376630', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0376\\/0376630_sa.jpg\"}', 'upc' => '077778624424', 'provider' => 'bestbuy'],\n ['name' => \"Songs of the Civil War [Columbia] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-the-civil-war-columbia-cd-original-soundtrack/377130.p?id=77848&skuId=377130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=377130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0377\\/0377130_sa.jpg\"}', 'upc' => '074644860726', 'provider' => 'bestbuy'],\n ['name' => \"Love Talk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-talk-cd/378790.p?id=100670&skuId=378790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=378790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0378\\/0378790_sa.jpg\"}', 'upc' => '051617440420', 'provider' => 'bestbuy'],\n ['name' => \"Spirit Horses (Concerto for Native American... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-horses-concerto-for-native-american-cd/378807.p?id=92802&skuId=378807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=378807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0378\\/0378807_sa.jpg\"}', 'upc' => '729337701427', 'provider' => 'bestbuy'],\n ['name' => \"Sirens - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sirens-cd/378834.p?id=79744&skuId=378834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=378834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3788\\/378834_sa.jpg\"}', 'upc' => '025041102629', 'provider' => 'bestbuy'],\n ['name' => \"All I Ever Need Is You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-i-ever-need-is-you-cd/379021.p?id=99467&skuId=379021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3790\\/379021_sa.jpg\"}', 'upc' => '076732202524', 'provider' => 'bestbuy'],\n ['name' => \"All Our Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-our-love-cd/379030.p?id=88281&skuId=379030&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379030', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3790\\/379030.jpg\"}', 'upc' => '076742200428', 'provider' => 'bestbuy'],\n ['name' => \"Sedona Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sedona-suite-cd/379502.p?id=1397930&skuId=379502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3795\\/379502_sa.jpg\"}', 'upc' => '096507714229', 'provider' => 'bestbuy'],\n ['name' => \"Somery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somery-cd/379511.p?id=80256&skuId=379511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379511_sa.jpg\"}', 'upc' => '018861025926', 'provider' => 'bestbuy'],\n ['name' => \"Feeding Frenzy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feeding-frenzy-cd/379548.p?id=2292768&skuId=379548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379548_sa.jpg\"}', 'upc' => '008811002220', 'provider' => 'bestbuy'],\n ['name' => \"Poison - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poison-cd/379557.p?id=283323&skuId=379557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3795\\/379557.jpg\"}', 'upc' => '076732638729', 'provider' => 'bestbuy'],\n ['name' => \"Slip of the Tongue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slip-of-the-tongue-cd/379575.p?id=103887&skuId=379575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379575_sa.jpg\"}', 'upc' => '720642424926', 'provider' => 'bestbuy'],\n ['name' => \"The Simpsons Sing the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-simpsons-sing-the-blues-cd/379593.p?id=98825&skuId=379593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379593_sa.jpg\"}', 'upc' => '720642430828', 'provider' => 'bestbuy'],\n ['name' => \"Full Moon Fever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-moon-fever-cd/379619.p?id=94816&skuId=379619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3796\\/379619_sa.jpg\"}', 'upc' => '076732625323', 'provider' => 'bestbuy'],\n ['name' => \"Pump Up the Volume [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pump-up-the-volume-original-soundtrack-cd-original-soundtrack/379628.p?id=95654&skuId=379628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379628_sa.jpg\"}', 'upc' => '076732803929', 'provider' => 'bestbuy'],\n ['name' => \"The Great Radio Controversy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-radio-controversy-cd/379664.p?id=101478&skuId=379664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379664_sa.jpg\"}', 'upc' => '720642422427', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Three Dog Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-three-dog-night-cd/379673.p?id=101795&skuId=379673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379673_sa.jpg\"}', 'upc' => '076732601822', 'provider' => 'bestbuy'],\n ['name' => \"The End of the Innocence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-end-of-the-innocence-cd/379708.p?id=85241&skuId=379708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379708_sa.jpg\"}', 'upc' => '720642421727', 'provider' => 'bestbuy'],\n ['name' => \"Appetite for Destruction [Edited] [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/appetite-for-destruction-edited-edited-cd/379717.p?id=84437&skuId=379717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3797\\/379717_sa.jpg\"}', 'upc' => '720642414828', 'provider' => 'bestbuy'],\n ['name' => \"G N' R Lies [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-n-r-lies-pa-cd/379726.p?id=84438&skuId=379726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379726_sa.jpg\"}', 'upc' => '720642419823', 'provider' => 'bestbuy'],\n ['name' => \"Havana [Original Motion Picture Soundtrack] - CD - Original Soundtrack Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/havana-original-motion-picture-soundtrack-cd-original-soundtrack-germany/379753.p?id=2434537&skuId=379753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3797\\/379753.jpg\"}', 'upc' => '011105200325', 'provider' => 'bestbuy'],\n ['name' => \"In the Digital Mood: Gold Limited Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-digital-mood-gold-limited-edition-cd/379824.p?id=69140&skuId=379824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379824_sa.jpg\"}', 'upc' => '011105200424', 'provider' => 'bestbuy'],\n ['name' => \"16 of Their Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-of-their-greatest-hits-cd/379842.p?id=90295&skuId=379842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3798\\/379842_sa.jpg\"}', 'upc' => '076732570128', 'provider' => 'bestbuy'],\n ['name' => \"Fore! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fore-cd/379888.p?id=89137&skuId=379888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379888_sa.jpg\"}', 'upc' => '094632153425', 'provider' => 'bestbuy'],\n ['name' => \"Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthology-cd/379897.p?id=91727&skuId=379897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3798\\/379897_sa.jpg\"}', 'upc' => '077779448821', 'provider' => 'bestbuy'],\n ['name' => \"Medicine Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/medicine-music-cd/379904.p?id=68916&skuId=379904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0379\\/0379904_sa.jpg\"}', 'upc' => '077779204823', 'provider' => 'bestbuy'],\n ['name' => \"The John Lennon Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-john-lennon-collection-cd/379931.p?id=89036&skuId=379931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3799\\/379931_sa.jpg\"}', 'upc' => '077779151622', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/379986.p?id=2387434&skuId=379986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=379986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3799\\/379986_sa.jpg\"}', 'upc' => '077779341627', 'provider' => 'bestbuy'],\n ['name' => \"Foreign Affair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foreign-affair-cd/380000.p?id=240351&skuId=380000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380000_sa.jpg\"}', 'upc' => '762185159323', 'provider' => 'bestbuy'],\n ['name' => \"Red Hot + Blue: A Tribute To Cole Porter - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-hot-blue-a-tribute-to-cole-porter-cd-various/380028.p?id=96194&skuId=380028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3800\\/380028.jpg\"}', 'upc' => '094632179920', 'provider' => 'bestbuy'],\n ['name' => \"I Remember - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-remember-cd/380037.p?id=70276&skuId=380037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380037_sa.jpg\"}', 'upc' => '077779026425', 'provider' => 'bestbuy'],\n ['name' => \"Open Up and Say...Ahh! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/open-up-and-say-ahh-cd/380046.p?id=95127&skuId=380046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380046_sa.jpg\"}', 'upc' => '077774849326', 'provider' => 'bestbuy'],\n ['name' => \"Meant to Be - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meant-to-be-cd/380073.p?id=70710&skuId=380073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3800\\/380073_sa.jpg\"}', 'upc' => '077779547920', 'provider' => 'bestbuy'],\n ['name' => \"Nick of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nick-of-time-cd/380082.p?id=95890&skuId=380082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380082_sa.jpg\"}', 'upc' => '077779126828', 'provider' => 'bestbuy'],\n ['name' => \"Pretty Woman [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-woman-original-soundtrack-cd-original-soundtrack/380126.p?id=95407&skuId=380126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380126_sa.jpg\"}', 'upc' => '077779349227', 'provider' => 'bestbuy'],\n ['name' => \"M.U.: The Best of Jethro Tull - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-u--the-best-of-jethro-tull-cd/380153.p?id=86945&skuId=380153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3801\\/380153_sa.jpg\"}', 'upc' => '094632107824', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: John Lennon [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-john-lennon-original-soundtrack-cd-original-soundtrack/380180.p?id=89032&skuId=380180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3801\\/380180.jpg\"}', 'upc' => '077779080328', 'provider' => 'bestbuy'],\n ['name' => \"Brigade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brigade-cd/380206.p?id=2443689&skuId=380206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3802\\/380206_sa.jpg\"}', 'upc' => '077779182022', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-years-cd/380484.p?id=98896&skuId=380484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3804\\/380484_sa.jpg\"}', 'upc' => '077779431724', 'provider' => 'bestbuy'],\n ['name' => \"The Revival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-revival-cd/380509.p?id=101977&skuId=380509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3805\\/380509_sa.jpg\"}', 'upc' => '042284190220', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Like the Sun [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-like-the-sun-ecd-cd/380518.p?id=100466&skuId=380518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380518_sa.jpg\"}', 'upc' => '075021640221', 'provider' => 'bestbuy'],\n ['name' => \"Their Greatest Hits [ABKCO] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/their-greatest-hits-abkco-cd/380536.p?id=2291990&skuId=380536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3805\\/380536.jpg\"}', 'upc' => '018771422723', 'provider' => 'bestbuy'],\n ['name' => \"Slow Turning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slow-turning-cd/380545.p?id=85327&skuId=380545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380545_sa.jpg\"}', 'upc' => '075021520622', 'provider' => 'bestbuy'],\n ['name' => \"Smashes, Thrashes & Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smashes-thrashes-hits-cd/380572.p?id=88181&skuId=380572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3805\\/380572_sa.jpg\"}', 'upc' => '042283642720', 'provider' => 'bestbuy'],\n ['name' => \"Hot in the Shade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-in-the-shade-cd/380581.p?id=88182&skuId=380581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380581_sa.jpg\"}', 'upc' => '042283891326', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm Nation 1814 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-nation-1814-cd/380590.p?id=86482&skuId=380590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380590_sa.jpg\"}', 'upc' => '075021392021', 'provider' => 'bestbuy'],\n ['name' => \"Chariots of Fire [Original Score] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chariots-of-fire-original-score-cd/380625.p?id=77238&skuId=380625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3806\\/380625_sa.jpg\"}', 'upc' => '042280002022', 'provider' => 'bestbuy'],\n ['name' => \"Yellow Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yellow-moon-cd/380634.p?id=93099&skuId=380634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380634_sa.jpg\"}', 'upc' => '075021524026', 'provider' => 'bestbuy'],\n ['name' => \"Level Best - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/level-best-cd/380661.p?id=89099&skuId=380661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380661_sa.jpg\"}', 'upc' => '042284139922', 'provider' => 'bestbuy'],\n ['name' => \"Eclipse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eclipse-cd/380670.p?id=90279&skuId=380670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380670_sa.jpg\"}', 'upc' => '042284336123', 'provider' => 'bestbuy'],\n ['name' => \"Long Distance Voyager - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-distance-voyager-cd/380778.p?id=92172&skuId=380778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3807\\/380778_sa.jpg\"}', 'upc' => '042282010520', 'provider' => 'bestbuy'],\n ['name' => \"Cocked and Loaded - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cocked-and-loaded-cd/380787.p?id=88483&skuId=380787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380787_sa.jpg\"}', 'upc' => '042283859227', 'provider' => 'bestbuy'],\n ['name' => \"Themes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/themes-cd/380867.p?id=102983&skuId=380867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380867_sa.jpg\"}', 'upc' => '042283951822', 'provider' => 'bestbuy'],\n ['name' => \"Addictions, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/addictions-vol-1-cd/380901.p?id=94310&skuId=380901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=380901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0380\\/0380901_sa.jpg\"}', 'upc' => '042284230124', 'provider' => 'bestbuy'],\n ['name' => \"Dead Letter Office - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-letter-office-cd/381009.p?id=95765&skuId=381009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381009_sa.jpg\"}', 'upc' => '044797005428', 'provider' => 'bestbuy'],\n ['name' => \"Murmur - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/murmur-cd/381018.p?id=95772&skuId=381018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3810\\/381018_sa.jpg\"}', 'upc' => '044797001420', 'provider' => 'bestbuy'],\n ['name' => \"Reckoning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reckoning-cd/381027.p?id=95775&skuId=381027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3810\\/381027.jpg\"}', 'upc' => '044797004421', 'provider' => 'bestbuy'],\n ['name' => \"Highlights from the Phantom of the Opera... - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highlights-from-the-phantom-of-the-opera-cd-original-cast-recording/381036.p?id=2222817&skuId=381036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3810\\/381036_sa.jpg\"}', 'upc' => '042283156326', 'provider' => 'bestbuy'],\n ['name' => \"Waking Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waking-hours-cd/381090.p?id=80120&skuId=381090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3810\\/381090_sa.jpg\"}', 'upc' => '075021528727', 'provider' => 'bestbuy'],\n ['name' => \"Pyromania - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pyromania-cd/381107.p?id=80093&skuId=381107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3811\\/381107.jpg\"}', 'upc' => '042281030826', 'provider' => 'bestbuy'],\n ['name' => \"Hysteria - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hysteria-cd/381116.p?id=80095&skuId=381116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3811\\/381116_sa.jpg\"}', 'upc' => '042283067523', 'provider' => 'bestbuy'],\n ['name' => \"Long Cold Winter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-cold-winter-cd/381143.p?id=77815&skuId=381143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3811\\/381143_sa.jpg\"}', 'upc' => '042283461222', 'provider' => 'bestbuy'],\n ['name' => \"Melissa Etheridge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melissa-etheridge-cd/381152.p?id=81708&skuId=381152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3811\\/381152_sa.jpg\"}', 'upc' => '042284230322', 'provider' => 'bestbuy'],\n ['name' => \"Rattle & Hum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rattle-hum-cd/381170.p?id=1953674&skuId=381170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381170_sa.jpg\"}', 'upc' => '042284229920', 'provider' => 'bestbuy'],\n ['name' => \"Persistence Of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/persistence-of-time-cd/381198.p?id=2305280&skuId=381198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3811\\/381198_sa.jpg\"}', 'upc' => '042284648028', 'provider' => 'bestbuy'],\n ['name' => \"Blaze of Glory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blaze-of-glory-cd/381214.p?id=75468&skuId=381214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3812\\/381214_sa.jpg\"}', 'upc' => '042284647328', 'provider' => 'bestbuy'],\n ['name' => \"Among the Living - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/among-the-living-cd/381232.p?id=73123&skuId=381232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381232_sa.jpg\"}', 'upc' => '042284244725', 'provider' => 'bestbuy'],\n ['name' => \"Spreading The Disease - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spreading-the-disease-cd/381241.p?id=3185920&skuId=381241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3812\\/381241.jpg\"}', 'upc' => '042282666826', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Animals [Abkco] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-animals-abkco-cd/381250.p?id=73067&skuId=381250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3812\\/381250_sa.jpg\"}', 'upc' => '018771432425', 'provider' => 'bestbuy'],\n ['name' => \"Union - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/union-cd/381269.p?id=77503&skuId=381269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381269_sa.jpg\"}', 'upc' => '075021517523', 'provider' => 'bestbuy'],\n ['name' => \"Three Tenors In Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-tenors-in-concert-cd/381474.p?id=1676910&skuId=381474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381474_sa.jpg\"}', 'upc' => '028943043328', 'provider' => 'bestbuy'],\n ['name' => \"By Request - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-request-cd/381508.p?id=2126308&skuId=381508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3815\\/381508.jpg\"}', 'upc' => '028942017825', 'provider' => 'bestbuy'],\n ['name' => \"Peter & The Wolf - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-the-wolf-cd/381553.p?id=1697577&skuId=381553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3815\\/381553.jpg\"}', 'upc' => '028942939622', 'provider' => 'bestbuy'],\n ['name' => \"Chronicles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicles-cd/381580.p?id=97603&skuId=381580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381580_sa.jpg\"}', 'upc' => '042283893627', 'provider' => 'bestbuy'],\n ['name' => \"Borrasca - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borrasca-cd/381660.p?id=89212&skuId=381660&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381660', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381660_sa.jpg\"}', 'upc' => '018317703620', 'provider' => 'bestbuy'],\n ['name' => \"I Got What It Takes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-got-what-it-takes-cd/381713.p?id=101264&skuId=381713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3817\\/381713.jpg\"}', 'upc' => '014551470625', 'provider' => 'bestbuy'],\n ['name' => \"To the East, Blackwards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-the-east-blackwards-cd/381731.p?id=104817&skuId=381731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381731_sa.jpg\"}', 'upc' => '016244401923', 'provider' => 'bestbuy'],\n ['name' => \"Sax Appeal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sax-appeal-cd/381740.p?id=103599&skuId=381740&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381740', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3817\\/381740.jpg\"}', 'upc' => '026656272622', 'provider' => 'bestbuy'],\n ['name' => \"Hot Flash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-flash-cd/381759.p?id=97710&skuId=381759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3817\\/381759_sa.jpg\"}', 'upc' => '014551479628', 'provider' => 'bestbuy'],\n ['name' => \"Bad Influence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-influence-cd/381786.p?id=79123&skuId=381786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3817\\/381786_sa.jpg\"}', 'upc' => '012928800129', 'provider' => 'bestbuy'],\n ['name' => \"Whitney - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whitney-cd/381884.p?id=85842&skuId=381884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381884_sa.jpg\"}', 'upc' => '078221840521', 'provider' => 'bestbuy'],\n ['name' => \"Highlights from Jekyll & Hyde [Concept] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highlights-from-jekyll-hyde-concept-cd-original-cast-recording/381919.p?id=86858&skuId=381919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381919_sa.jpg\"}', 'upc' => '090266041626', 'provider' => 'bestbuy'],\n ['name' => \"Hell to Pay - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hell-to-pay-cd/381928.p?id=85100&skuId=381928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=381928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0381\\/0381928_sa.jpg\"}', 'upc' => '078221863223', 'provider' => 'bestbuy'],\n ['name' => \"In Effect Mode - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-effect-mode-cd/382231.p?id=100896&skuId=382231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3822\\/382231_sa.jpg\"}', 'upc' => '075992566223', 'provider' => 'bestbuy'],\n ['name' => \"Beaches [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/beaches-original-soundtrack-cd-original-soundtrack/382268.p?id=74151&skuId=382268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382268_sa.jpg\"}', 'upc' => '075678193323', 'provider' => 'bestbuy'],\n ['name' => \"Rei Momo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rei-momo-cd/382277.p?id=76475&skuId=382277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382277_sa.jpg\"}', 'upc' => '075992599023', 'provider' => 'bestbuy'],\n ['name' => \"Giving You the Best That I Got - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giving-you-the-best-that-i-got-cd/382320.p?id=73742&skuId=382320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3823\\/382320_sa.jpg\"}', 'upc' => '075596082723', 'provider' => 'bestbuy'],\n ['name' => \"Strange Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strange-angels-cd/382348.p?id=72968&skuId=382348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382348_sa.jpg\"}', 'upc' => '075992590020', 'provider' => 'bestbuy'],\n ['name' => \"5150 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5150-cd/382400.p?id=102934&skuId=382400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3824\\/382400_sa.jpg\"}', 'upc' => '075992539425', 'provider' => 'bestbuy'],\n ['name' => \"I'll Give All My Love to You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-give-all-my-love-to-you-cd/382419.p?id=2479200&skuId=382419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3824\\/382419_sa.jpg\"}', 'upc' => '075596086127', 'provider' => 'bestbuy'],\n ['name' => \"Kill Uncle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-uncle-cd/382455.p?id=92297&skuId=382455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382455_sa.jpg\"}', 'upc' => '075992651424', 'provider' => 'bestbuy'],\n ['name' => \"The Neighborhood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-neighborhood-cd/382464.p?id=89694&skuId=382464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382464_sa.jpg\"}', 'upc' => '075992613125', 'provider' => 'bestbuy'],\n ['name' => \"Like a Prayer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/like-a-prayer-cd/382516.p?id=90140&skuId=382516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3825\\/382516_sa.jpg\"}', 'upc' => '075992584425', 'provider' => 'bestbuy'],\n ['name' => \"I'M Breathless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-breathless-cd/382525.p?id=90141&skuId=382525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3825\\/382525_sa.jpg\"}', 'upc' => '075992620925', 'provider' => 'bestbuy'],\n ['name' => \"Waiting For Columbus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waiting-for-columbus-cd/382534.p?id=2387845&skuId=382534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3825\\/382534.jpg\"}', 'upc' => '075992734424', 'provider' => 'bestbuy'],\n ['name' => \"Ou812 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/ou812-cd/382589.p?id=2487429&skuId=382589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382589_sa.jpg\"}', 'upc' => '075992573221', 'provider' => 'bestbuy'],\n ['name' => \"Violator - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/violator-cd/382598.p?id=80233&skuId=382598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382598_sa.jpg\"}', 'upc' => '075992608121', 'provider' => 'bestbuy'],\n ['name' => \"Behind the Mask [Limited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behind-the-mask-limited-cd/382614.p?id=2065344&skuId=382614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3826\\/382614_sa.jpg\"}', 'upc' => '075992611121', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Warner Bros.] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-warner-bros--cd/382623.p?id=82436&skuId=382623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382623_sa.jpg\"}', 'upc' => '075992580120', 'provider' => 'bestbuy'],\n ['name' => \"Environments 1: Psychologically Ultimate Seashore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/environments-1-psychologically-ultimate-seashore-cd/382641.p?id=81636&skuId=382641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382641_sa.jpg\"}', 'upc' => '075678176425', 'provider' => 'bestbuy'],\n ['name' => \"Blue Pacific - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-pacific-cd/382650.p?id=2304988&skuId=382650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3826\\/382650_sa.jpg\"}', 'upc' => '075992618328', 'provider' => 'bestbuy'],\n ['name' => \"The Doors [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-doors-original-soundtrack-cd-original-soundtrack/382669.p?id=80779&skuId=382669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382669_sa.jpg\"}', 'upc' => '075596104722', 'provider' => 'bestbuy'],\n ['name' => \"So Far - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-far-cd/382687.p?id=79273&skuId=382687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382687_sa.jpg\"}', 'upc' => '075678264825', 'provider' => 'bestbuy'],\n ['name' => \"Crosby, Stills & Nash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crosby-stills-nash-cd/382703.p?id=79266&skuId=382703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382703_sa.jpg\"}', 'upc' => '075678265129', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Like A Rose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-like-a-rose-cd/382712.p?id=2390378&skuId=382712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382712_sa.jpg\"}', 'upc' => '075992657525', 'provider' => 'bestbuy'],\n ['name' => \"...But Seriously - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-but-seriously-cd/382721.p?id=78359&skuId=382721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382721_sa.jpg\"}', 'upc' => '075678205026', 'provider' => 'bestbuy'],\n ['name' => \"Mixed Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mixed-up-cd/382730.p?id=79475&skuId=382730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382730_sa.jpg\"}', 'upc' => '075596097826', 'provider' => 'bestbuy'],\n ['name' => \"Disintegration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disintegration-cd/382749.p?id=79474&skuId=382749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382749_sa.jpg\"}', 'upc' => '075596085526', 'provider' => 'bestbuy'],\n ['name' => \"The Civil War [Original TV Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-civil-war-original-tv-soundtrack-cd-original-soundtrack/382758.p?id=77847&skuId=382758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3827\\/382758_sa.jpg\"}', 'upc' => '075597925623', 'provider' => 'bestbuy'],\n ['name' => \"Journeyman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/journeyman-cd/382767.p?id=77902&skuId=382767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3827\\/382767_sa.jpg\"}', 'upc' => '075992607421', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Strange - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-strange-cd/382874.p?id=97138&skuId=382874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3828\\/382874_sa.jpg\"}', 'upc' => '075992628921', 'provider' => 'bestbuy'],\n ['name' => \"Songs for Drella - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-for-drella-cd/382883.p?id=96303&skuId=382883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382883_sa.jpg\"}', 'upc' => '075992614023', 'provider' => 'bestbuy'],\n ['name' => \"Ashes to Ashes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ashes-to-ashes-cd/382909.p?id=3522151&skuId=382909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382909_sa.jpg\"}', 'upc' => '075992631822', 'provider' => 'bestbuy'],\n ['name' => \"News of the World [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/news-of-the-world-bonus-track-cd/382918.p?id=95710&skuId=382918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0382\\/0382918_sa.jpg\"}', 'upc' => '720616103727', 'provider' => 'bestbuy'],\n ['name' => \"Innuendo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/innuendo-cd/382936.p?id=95705&skuId=382936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3829\\/382936_sa.jpg\"}', 'upc' => '720616102027', 'provider' => 'bestbuy'],\n ['name' => \"Green - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/green-cd/382945.p?id=2387427&skuId=382945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3829\\/382945_sa.jpg\"}', 'upc' => '075992579520', 'provider' => 'bestbuy'],\n ['name' => \"1999 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1999-cd/382954.p?id=2387776&skuId=382954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=382954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3829\\/382954_sa.jpg\"}', 'upc' => '075992372022', 'provider' => 'bestbuy'],\n ['name' => \"All the Stuff (And More), Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-stuff-and-more-vol-1-cd/383007.p?id=95910&skuId=383007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3830\\/383007_sa.jpg\"}', 'upc' => '075992622028', 'provider' => 'bestbuy'],\n ['name' => \"Ramones Mania - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ramones-mania-cd/383025.p?id=95921&skuId=383025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383025_sa.jpg\"}', 'upc' => '075992570923', 'provider' => 'bestbuy'],\n ['name' => \"Why Do Birds Sing? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-do-birds-sing-cd/383043.p?id=103185&skuId=383043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383043_sa.jpg\"}', 'upc' => '075992647625', 'provider' => 'bestbuy'],\n ['name' => \"Hack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hack-cd/383114.p?id=86192&skuId=383114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3831\\/383114.jpg\"}', 'upc' => '075992625821', 'provider' => 'bestbuy'],\n ['name' => \"Glory [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glory-original-motion-picture-soundtrack-cd-original-soundtrack/383141.p?id=83727&skuId=383141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3831\\/383141_sa.jpg\"}', 'upc' => '077778615026', 'provider' => 'bestbuy'],\n ['name' => \"A Brief History of the Twentieth Century - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-brief-history-of-the-twentieth-century-cd/383150.p?id=83232&skuId=383150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383150_sa.jpg\"}', 'upc' => '075992644822', 'provider' => 'bestbuy'],\n ['name' => \"Afterburner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afterburner-cd/383187.p?id=105361&skuId=383187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3831\\/383187_sa.jpg\"}', 'upc' => '075992534222', 'provider' => 'bestbuy'],\n ['name' => \"El Loco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-loco-cd/383196.p?id=105359&skuId=383196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383196_sa.jpg\"}', 'upc' => '075992359320', 'provider' => 'bestbuy'],\n ['name' => \"Tejas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tejas-cd/383203.p?id=105356&skuId=383203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3832\\/383203_sa.jpg\"}', 'upc' => '075992738323', 'provider' => 'bestbuy'],\n ['name' => \"Recycler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recycler-cd/383221.p?id=2387204&skuId=383221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383221_sa.jpg\"}', 'upc' => '075992626521', 'provider' => 'bestbuy'],\n ['name' => \"Rio Grande Mud - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rio-grande-mud-cd/383230.p?id=105352&skuId=383230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3832\\/383230_sa.jpg\"}', 'upc' => '075992738026', 'provider' => 'bestbuy'],\n ['name' => \"Eliminator - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eliminator-cd/383249.p?id=105360&skuId=383249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3832\\/383249_sa.jpg\"}', 'upc' => '075992377423', 'provider' => 'bestbuy'],\n ['name' => \"ZZ Top's First Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zz-tops-first-album-cd/383267.p?id=105351&skuId=383267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3832\\/383267_sa.jpg\"}', 'upc' => '075992737920', 'provider' => 'bestbuy'],\n ['name' => \"Refugees of the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/refugees-of-the-heart-cd/383285.p?id=3254618&skuId=383285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383285_sa.jpg\"}', 'upc' => '077778618928', 'provider' => 'bestbuy'],\n ['name' => \"Live Rust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/live-rust-cd/383294.p?id=105069&skuId=383294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383294_sa.jpg\"}', 'upc' => '075992725026', 'provider' => 'bestbuy'],\n ['name' => \"Ragged Glory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragged-glory-cd/383301.p?id=105075&skuId=383301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383301_sa.jpg\"}', 'upc' => '075992631525', 'provider' => 'bestbuy'],\n ['name' => \"In The Heart Of The Young - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-heart-of-the-young-cd/383310.p?id=2393582&skuId=383310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383310_sa.jpg\"}', 'upc' => '075678210327', 'provider' => 'bestbuy'],\n ['name' => \"Mane Attraction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mane-attraction-cd/383329.p?id=103893&skuId=383329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383329_sa.jpg\"}', 'upc' => '075678219320', 'provider' => 'bestbuy'],\n ['name' => \"Graffiti Bridge [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/graffiti-bridge-pa-cd/383374.p?id=95483&skuId=383374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383374_sa.jpg\"}', 'upc' => '075992749329', 'provider' => 'bestbuy'],\n ['name' => \"Yessongs [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yessongs-remaster-cd/383409.p?id=2983078&skuId=383409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0383\\/0383409_sa.jpg\"}', 'upc' => '075678268229', 'provider' => 'bestbuy'],\n ['name' => \"Decade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/decade-cd/383702.p?id=105066&skuId=383702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=383702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3837\\/383702_sa.jpg\"}', 'upc' => '075992723329', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dave Mason [Columbia] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dave-mason-columbia-cd/384051.p?id=90738&skuId=384051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=384051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3840\\/384051.jpg\"}', 'upc' => '074643708920', 'provider' => 'bestbuy'],\n ['name' => \"The Wild, The Innocent & the E Street Shuffle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-the-innocent-the-e-street-shuffle-cd/384355.p?id=99921&skuId=384355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=384355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0384\\/0384355_sa.jpg\"}', 'upc' => '074643243223', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/384792.p?id=78231&skuId=384792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=384792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0384\\/0384792_sa.jpg\"}', 'upc' => '074643407724', 'provider' => 'bestbuy'],\n ['name' => \"ELO's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elos-greatest-hits-cd/384881.p?id=81431&skuId=384881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=384881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3848\\/384881_sa.jpg\"}', 'upc' => '074643631020', 'provider' => 'bestbuy'],\n ['name' => \"The Pros and Cons of Hitch Hiking - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pros-and-cons-of-hitch-hiking-cd/384989.p?id=1820107&skuId=384989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=384989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0384\\/0384989_sa.jpg\"}', 'upc' => '886972296326', 'provider' => 'bestbuy'],\n ['name' => \"Faith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faith-cd/385256.p?id=91584&skuId=385256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3852\\/385256_sa.jpg\"}', 'upc' => '074644086720', 'provider' => 'bestbuy'],\n ['name' => \"Listen Without Prejudice, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-without-prejudice-vol-1-cd/385265.p?id=91585&skuId=385265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3852\\/385265_sa.jpg\"}', 'upc' => '074644689822', 'provider' => 'bestbuy'],\n ['name' => \"Fear of a Black Planet [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-of-a-black-planet-pa-cd/385283.p?id=95631&skuId=385283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3852\\/385283_sa.jpg\"}', 'upc' => '731452344625', 'provider' => 'bestbuy'],\n ['name' => \"A Collection: Greatest Hits...And More - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-collection-greatest-hits-and-more-cd/385336.p?id=100588&skuId=385336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3853\\/385336_sa.jpg\"}', 'upc' => '074644536928', 'provider' => 'bestbuy'],\n ['name' => \"Memories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-cd/385345.p?id=100605&skuId=385345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3853\\/385345_sa.jpg\"}', 'upc' => '074643767828', 'provider' => 'bestbuy'],\n ['name' => \"Double Live Gonzo! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-live-gonzo-cd/385586.p?id=93570&skuId=385586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0385\\/0385586_sa.jpg\"}', 'upc' => '074643506922', 'provider' => 'bestbuy'],\n ['name' => \"The Forgotten Trail (1969-1974) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-forgotten-trail-1969-1974-cd/385611.p?id=95091&skuId=385611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3856\\/385611_sa.jpg\"}', 'upc' => '074644616224', 'provider' => 'bestbuy'],\n ['name' => \"Lotus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lotus-cd/385675.p?id=97882&skuId=385675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3856\\/385675_sa.jpg\"}', 'upc' => '074644676426', 'provider' => 'bestbuy'],\n ['name' => \"Hair of the Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hair-of-the-dog-cd/385826.p?id=92925&skuId=385826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3858\\/385826_sa.jpg\"}', 'upc' => '075021322523', 'provider' => 'bestbuy'],\n ['name' => \"The Other Side of Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-side-of-life-cd/385862.p?id=92179&skuId=385862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3858\\/385862_sa.jpg\"}', 'upc' => '042282917928', 'provider' => 'bestbuy'],\n ['name' => \"Sur La Mer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sur-la-mer-cd/385880.p?id=2387815&skuId=385880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0385\\/0385880_sa.jpg\"}', 'upc' => '042283575622', 'provider' => 'bestbuy'],\n ['name' => \"Thru the Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thru-the-years-cd/385942.p?id=90893&skuId=385942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0385\\/0385942_sa.jpg\"}', 'upc' => '042284402828', 'provider' => 'bestbuy'],\n ['name' => \"L.A. Guns - CD - Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/l-a-guns-cd-remastered/385979.p?id=88486&skuId=385979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0385\\/0385979_sa.jpg\"}', 'upc' => '042283414426', 'provider' => 'bestbuy'],\n ['name' => \"Night and Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-and-day-cd/385988.p?id=86491&skuId=385988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=385988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3859\\/385988_sa.jpg\"}', 'upc' => '075021333420', 'provider' => 'bestbuy'],\n ['name' => \"20th Century Masters -... [Digipak] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20th-century-masters-digipak-remaster-cd/386004.p?id=1635723&skuId=386004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386004_sa.jpg\"}', 'upc' => '075021333826', 'provider' => 'bestbuy'],\n ['name' => \"History Never Repeats: The Best of Split Enz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/history-never-repeats-the-best-of-split-enz-cd/386022.p?id=99893&skuId=386022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3860\\/386022_sa.jpg\"}', 'upc' => '075021328921', 'provider' => 'bestbuy'],\n ['name' => \"Shoot Out at the Fantasy Factory [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shoot-out-at-the-fantasy-factory-remaster-cd/386059.p?id=102130&skuId=386059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386059_sa.jpg\"}', 'upc' => '042284278126', 'provider' => 'bestbuy'],\n ['name' => \"Flat as a Pancake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flat-as-a-pancake-cd/386095.p?id=85089&skuId=386095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3860\\/386095.jpg\"}', 'upc' => '075021319622', 'provider' => 'bestbuy'],\n ['name' => \"Louder Than Love [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louder-than-love-pa-cd/386175.p?id=99670&skuId=386175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386175_sa.jpg\"}', 'upc' => '075021525221', 'provider' => 'bestbuy'],\n ['name' => \"Extreme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extreme-cd/386200.p?id=81837&skuId=386200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3862\\/386200_sa.jpg\"}', 'upc' => '075021523821', 'provider' => 'bestbuy'],\n ['name' => \"Compact Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/compact-jazz-cd/386255.p?id=66286&skuId=386255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3862\\/386255_sa.jpg\"}', 'upc' => '042283531321', 'provider' => 'bestbuy'],\n ['name' => \"On Through the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-through-the-night-cd/386264.p?id=80091&skuId=386264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386264_sa.jpg\"}', 'upc' => '042282253323', 'provider' => 'bestbuy'],\n ['name' => \"Strong Persuader - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strong-persuader-cd/386273.p?id=79127&skuId=386273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386273_sa.jpg\"}', 'upc' => '042283056824', 'provider' => 'bestbuy'],\n ['name' => \"Time Pieces, Vol. 2: Live in the '70s - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-pieces-vol-2-live-in-the-70s-cd/386291.p?id=77905&skuId=386291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386291_sa.jpg\"}', 'upc' => '042281183522', 'provider' => 'bestbuy'],\n ['name' => \"Time Pieces: The Best of Eric Clapton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-pieces-the-best-of-eric-clapton-cd/386326.p?id=77904&skuId=386326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3863\\/386326.jpg\"}', 'upc' => '042280001421', 'provider' => 'bestbuy'],\n ['name' => \"Night Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-songs-cd/386344.p?id=77816&skuId=386344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3863\\/386344.jpg\"}', 'upc' => '042283007628', 'provider' => 'bestbuy'],\n ['name' => \"Paradise Theater - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paradise-theater-cd/386399.p?id=100687&skuId=386399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3863\\/386399_sa.jpg\"}', 'upc' => '075021324022', 'provider' => 'bestbuy'],\n ['name' => \"Pieces of Eight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pieces-of-eight-cd/386406.p?id=100688&skuId=386406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386406_sa.jpg\"}', 'upc' => '075021322424', 'provider' => 'bestbuy'],\n ['name' => \"Equinox - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/equinox-cd/386424.p?id=100682&skuId=386424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386424_sa.jpg\"}', 'upc' => '075021321724', 'provider' => 'bestbuy'],\n ['name' => \"Crystal Ball - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crystal-ball-cd/386433.p?id=100680&skuId=386433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386433_sa.jpg\"}', 'upc' => '075021321823', 'provider' => 'bestbuy'],\n ['name' => \"The Grand Illusion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-grand-illusion-cd/386442.p?id=100690&skuId=386442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386442_sa.jpg\"}', 'upc' => '075021322325', 'provider' => 'bestbuy'],\n ['name' => \"Bird: The Original Recordings of Charlie Parker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bird-the-original-recordings-of-charlie-parker-cd/386647.p?id=69757&skuId=386647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386647_sa.jpg\"}', 'upc' => '042283717626', 'provider' => 'bestbuy'],\n ['name' => \"Riptide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riptide-cd/386674.p?id=1431313&skuId=386674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3866\\/386674_sa.jpg\"}', 'upc' => '042282646323', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Velvet Underground: Words and... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-velvet-underground-words-and-cd/386683.p?id=103076&skuId=386683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386683_sa.jpg\"}', 'upc' => '042284116428', 'provider' => 'bestbuy'],\n ['name' => \"The Sky's Gone Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-skys-gone-out-cd/386692.p?id=74092&skuId=386692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386692_sa.jpg\"}', 'upc' => '075021332423', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/386718.p?id=76794&skuId=386718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386718_sa.jpg\"}', 'upc' => '075021310520', 'provider' => 'bestbuy'],\n ['name' => \"Blind Faith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blind-faith-cd/386736.p?id=2389705&skuId=386736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3867\\/386736.jpg\"}', 'upc' => '042282509420', 'provider' => 'bestbuy'],\n ['name' => \"Good Times Are So Hard to Find - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-times-are-so-hard-to-find-cd/386754.p?id=75121&skuId=386754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3867\\/386754.jpg\"}', 'upc' => '042283403024', 'provider' => 'bestbuy'],\n ['name' => \"Chuck Berry's Golden Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chuck-berrys-golden-hits-cd/386763.p?id=74517&skuId=386763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386763_sa.jpg\"}', 'upc' => '042282625625', 'provider' => 'bestbuy'],\n ['name' => \"BTO's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/btos-greatest-hits-cd/386898.p?id=1575983&skuId=386898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3868\\/386898.jpg\"}', 'upc' => '042283003927', 'provider' => 'bestbuy'],\n ['name' => \"Not Fragile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-fragile-cd/386905.p?id=73623&skuId=386905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386905_sa.jpg\"}', 'upc' => '042283017825', 'provider' => 'bestbuy'],\n ['name' => \"Wild-Eyed Southern Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-eyed-southern-boys-cd/386978.p?id=101629&skuId=386978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0386\\/0386978_sa.jpg\"}', 'upc' => '075021329829', 'provider' => 'bestbuy'],\n ['name' => \"Special Forces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/special-forces-cd/386987.p?id=101625&skuId=386987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3869\\/386987_sa.jpg\"}', 'upc' => '075021329928', 'provider' => 'bestbuy'],\n ['name' => \"Tour de Force - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tour-de-force-cd/386996.p?id=101628&skuId=386996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=386996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3869\\/386996_sa.jpg\"}', 'upc' => '075021331020', 'provider' => 'bestbuy'],\n ['name' => \"Wide Awake in America [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wide-awake-in-america-ep-cd/387058.p?id=102701&skuId=387058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0387\\/0387058_sa.jpg\"}', 'upc' => '042284247924', 'provider' => 'bestbuy'],\n ['name' => \"Rain Dogs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rain-dogs-cd/387076.p?id=2281286&skuId=387076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/3870\\/387076_sa.jpg\"}', 'upc' => '042282638229', 'provider' => 'bestbuy'],\n ['name' => \"Bring the Family - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bring-the-family-cd/387156.p?id=85322&skuId=387156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3871\\/387156.jpg\"}', 'upc' => '075021515826', 'provider' => 'bestbuy'],\n ['name' => \"China - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/china-cd/387183.p?id=102974&skuId=387183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0387\\/0387183_sa.jpg\"}', 'upc' => '042281365324', 'provider' => 'bestbuy'],\n ['name' => \"Marching Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marching-out-cd/387209.p?id=90281&skuId=387209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0387\\/0387209_sa.jpg\"}', 'upc' => '042282573322', 'provider' => 'bestbuy'],\n ['name' => \"Cuts Like a Knife - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuts-like-a-knife-cd/387254.p?id=72464&skuId=387254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=387254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/3872\\/387254.jpg\"}', 'upc' => '075021328822', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-vol-2-cd/409445.p?id=79159&skuId=409445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0409\\/0409445_sa.jpg\"}', 'upc' => '025218000321', 'provider' => 'bestbuy'],\n ['name' => \"Serious Hits...Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serious-hits-live-cd/409588.p?id=78364&skuId=409588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0409\\/0409588_sa.jpg\"}', 'upc' => '075678215728', 'provider' => 'bestbuy'],\n ['name' => \"Eagles Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eagles-live-cd/409597.p?id=81202&skuId=409597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0409\\/0409597_sa.jpg\"}', 'upc' => '075596059121', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits on Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-on-earth-cd/409677.p?id=82177&skuId=409677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4096\\/409677.jpg\"}', 'upc' => '078221833523', 'provider' => 'bestbuy'],\n ['name' => \"Welcome to the Real World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-to-the-real-world-cd/409800.p?id=92544&skuId=409800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4098\\/409800_sa.jpg\"}', 'upc' => '078635804522', 'provider' => 'bestbuy'],\n ['name' => \"Why Not Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-not-me-cd/409953.p?id=3323839&skuId=409953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=409953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '078635531923', 'provider' => 'bestbuy'],\n ['name' => \"Mountain Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mountain-music-cd/410503.p?id=72643&skuId=410503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=410503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0410\\/0410503_sa.jpg\"}', 'upc' => '078635422924', 'provider' => 'bestbuy'],\n ['name' => \"Pillow Lips - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pillow-lips-cd/410816.p?id=91975&skuId=410816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=410816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4108\\/410816.jpg\"}', 'upc' => '016581281028', 'provider' => 'bestbuy'],\n ['name' => \"Nowhere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nowhere-cd/411094.p?id=96650&skuId=411094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411094_sa.jpg\"}', 'upc' => '075992646222', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Mind [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-mind-pa-cd/411101.p?id=95480&skuId=411101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411101_sa.jpg\"}', 'upc' => '075992740821', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Otis Redding - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-ultimate-otis-redding-cd/411110.p?id=96232&skuId=411110&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411110', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411110_sa.jpg\"}', 'upc' => '075992760829', 'provider' => 'bestbuy'],\n ['name' => \"Controversy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/controversy-cd/411129.p?id=95479&skuId=411129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4111\\/411129_sa.jpg\"}', 'upc' => '075992360128', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Carly Simon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-carly-simon-cd/411138.p?id=98779&skuId=411138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411138_sa.jpg\"}', 'upc' => '075596051521', 'provider' => 'bestbuy'],\n ['name' => \"Never Mind the Bollocks Here's the... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-mind-the-bollocks-heres-the-pa-cd/411147.p?id=98416&skuId=411147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4111\\/411147_sa.jpg\"}', 'upc' => '075992734721', 'provider' => 'bestbuy'],\n ['name' => \"Prime Prine: The Best of John Prine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prime-prine-the-best-of-john-prine-cd/411156.p?id=95519&skuId=411156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4111\\/411156.jpg\"}', 'upc' => '075678150425', 'provider' => 'bestbuy'],\n ['name' => \"Pretenders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretenders-cd/411174.p?id=95404&skuId=411174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4111\\/411174.jpg\"}', 'upc' => '075992743020', 'provider' => 'bestbuy'],\n ['name' => \"Straight to the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-to-the-heart-cd/411192.p?id=70592&skuId=411192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4111\\/411192_sa.jpg\"}', 'upc' => '075992515023', 'provider' => 'bestbuy'],\n ['name' => \"A Change of Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-change-of-heart-cd/411218.p?id=70596&skuId=411218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411218_sa.jpg\"}', 'upc' => '075992547925', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/411263.p?id=98183&skuId=411263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411263_sa.jpg\"}', 'upc' => '075992733229', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-1-cd/411361.p?id=97284&skuId=411361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4113\\/411361_sa.jpg\"}', 'upc' => '075596051224', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/411370.p?id=97285&skuId=411370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411370_sa.jpg\"}', 'upc' => '075596056724', 'provider' => 'bestbuy'],\n ['name' => \"Roll with It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roll-with-it-cd/411389.p?id=104541&skuId=411389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411389_sa.jpg\"}', 'upc' => '077778606925', 'provider' => 'bestbuy'],\n ['name' => \"Gorilla - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gorilla-cd/411405.p?id=101232&skuId=411405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411405_sa.jpg\"}', 'upc' => '075992729321', 'provider' => 'bestbuy'],\n ['name' => \"Hope Chest: The Fredonia Recordings 1982-1983 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hope-chest-the-fredonia-recordings-1982-1983-cd/411414.p?id=101410&skuId=411414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411414_sa.jpg\"}', 'upc' => '075596096225', 'provider' => 'bestbuy'],\n ['name' => \"The Wishing Chair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wishing-chair-cd/411423.p?id=101415&skuId=411423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411423_sa.jpg\"}', 'upc' => '075596042826', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/411432.p?id=1486991&skuId=411432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411432_sa.jpg\"}', 'upc' => '081227809423', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Baby James - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-baby-james-cd/411441.p?id=2466524&skuId=411441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4114\\/411441_sa.jpg\"}', 'upc' => '075992718325', 'provider' => 'bestbuy'],\n ['name' => \"Out of Order - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-order-cd/411450.p?id=100412&skuId=411450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411450_sa.jpg\"}', 'upc' => '075992568425', 'provider' => 'bestbuy'],\n ['name' => \"Take 6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-6-cd/411478.p?id=101109&skuId=411478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4114\\/411478.jpg\"}', 'upc' => '075992567022', 'provider' => 'bestbuy'],\n ['name' => \"A Quiet Normal Life: The Best of Warren Zevon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-quiet-normal-life-the-best-of-warren-zevon-cd/411502.p?id=105298&skuId=411502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411502_sa.jpg\"}', 'upc' => '075596050326', 'provider' => 'bestbuy'],\n ['name' => \"Excitable Boy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/excitable-boy-cd/411511.p?id=105300&skuId=411511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411511_sa.jpg\"}', 'upc' => '075596052122', 'provider' => 'bestbuy'],\n ['name' => \"Going for the One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-for-the-one-cd/411520.p?id=104979&skuId=411520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411520_sa.jpg\"}', 'upc' => '075678267024', 'provider' => 'bestbuy'],\n ['name' => \"Fragile (Remastered) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fragile-remastered-cd/411539.p?id=2229012&skuId=411539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411539_sa.jpg\"}', 'upc' => '075678266720', 'provider' => 'bestbuy'],\n ['name' => \"The Yes Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-yes-album-cd/411548.p?id=1548545&skuId=411548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411548_sa.jpg\"}', 'upc' => '075678266522', 'provider' => 'bestbuy'],\n ['name' => \"Close to the Edge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-to-the-edge-cd/411566.p?id=104974&skuId=411566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411566_sa.jpg\"}', 'upc' => '075678266621', 'provider' => 'bestbuy'],\n ['name' => \"Relayer [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relayer-remaster-cd/411575.p?id=104980&skuId=411575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411575_sa.jpg\"}', 'upc' => '075678266423', 'provider' => 'bestbuy'],\n ['name' => \"The Dream Weaver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dream-weaver-cd/411593.p?id=104774&skuId=411593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4115\\/411593_sa.jpg\"}', 'upc' => '075992729420', 'provider' => 'bestbuy'],\n ['name' => \"Big Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-game-cd/411637.p?id=103891&skuId=411637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411637_sa.jpg\"}', 'upc' => '075678196928', 'provider' => 'bestbuy'],\n ['name' => \"Guitars, Cadillacs, Etc., Etc. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitars-cadillacs-etc--etc-cd/411664.p?id=105022&skuId=411664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411664_sa.jpg\"}', 'upc' => '075992537223', 'provider' => 'bestbuy'],\n ['name' => \"After the Gold Rush - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-the-gold-rush-cd/411673.p?id=105061&skuId=411673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4116\\/411673_sa.jpg\"}', 'upc' => '075992724326', 'provider' => 'bestbuy'],\n ['name' => \"Harvest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harvest-cd/411682.p?id=105063&skuId=411682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411682_sa.jpg\"}', 'upc' => '075992723923', 'provider' => 'bestbuy'],\n ['name' => \"Paranoid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paranoid-cd/411726.p?id=148631&skuId=411726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411726_sa.jpg\"}', 'upc' => '075992732727', 'provider' => 'bestbuy'],\n ['name' => \"Crossroads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crossroads-cd/411744.p?id=2305036&skuId=411744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411744_sa.jpg\"}', 'upc' => '075596088824', 'provider' => 'bestbuy'],\n ['name' => \"Tracy Chapman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tracy-chapman-cd/411753.p?id=2224952&skuId=411753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411753_sa.jpg\"}', 'upc' => '075596077422', 'provider' => 'bestbuy'],\n ['name' => \"Candy-O - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/candy-o-cd/411771.p?id=76968&skuId=411771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4117\\/411771_sa.jpg\"}', 'upc' => '075596055925', 'provider' => 'bestbuy'],\n ['name' => \"The Cars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cars-cd/411780.p?id=76965&skuId=411780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4117\\/411780_sa.jpg\"}', 'upc' => '075596052429', 'provider' => 'bestbuy'],\n ['name' => \"Retrospective: The Best of Buffalo Springfield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/retrospective-the-best-of-buffalo-springfield-cd/411806.p?id=76253&skuId=411806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411806_sa.jpg\"}', 'upc' => '075679041722', 'provider' => 'bestbuy'],\n ['name' => \"Jackson Browne - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jackson-browne-cd/411833.p?id=75930&skuId=411833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4118\\/411833.jpg\"}', 'upc' => '075596062220', 'provider' => 'bestbuy'],\n ['name' => \"The Pretender - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/the-pretender-cd/411842.p?id=75937&skuId=411842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411842_sa.jpg\"}', 'upc' => '075596051323', 'provider' => 'bestbuy'],\n ['name' => \"Running on Empty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/running-on-empty-cd/411851.p?id=75936&skuId=411851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411851_sa.jpg\"}', 'upc' => '075596051927', 'provider' => 'bestbuy'],\n ['name' => \"Breezin' [Bonus Tracks] [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breezin-bonus-tracks-ecd-cd/411913.p?id=198411&skuId=411913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4119\\/411913_sa.jpg\"}', 'upc' => '075992733427', 'provider' => 'bestbuy'],\n ['name' => \"Run with the Pack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/run-with-the-pack-cd/411931.p?id=73658&skuId=411931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4119\\/411931_sa.jpg\"}', 'upc' => '075679243522', 'provider' => 'bestbuy'],\n ['name' => \"Bad Company - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-company-cd/411959.p?id=73650&skuId=411959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411959_sa.jpg\"}', 'upc' => '075679244123', 'provider' => 'bestbuy'],\n ['name' => \"Dangerous Age - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dangerous-age-cd/411977.p?id=73652&skuId=411977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=411977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0411\\/0411977_sa.jpg\"}', 'upc' => '075678188428', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hit [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hit-pa-cd/412020.p?id=77325&skuId=412020&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412020', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4120\\/412020_sa.jpg\"}', 'upc' => '075992361422', 'provider' => 'bestbuy'],\n ['name' => \"Long Live the Kane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-live-the-kane-cd/412048.p?id=87592&skuId=412048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412048_sa.jpg\"}', 'upc' => '075992573122', 'provider' => 'bestbuy'],\n ['name' => \"Workingman's Dead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workingmans-dead-cd/412075.p?id=2484223&skuId=412075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412075_sa.jpg\"}', 'upc' => '075992718424', 'provider' => 'bestbuy'],\n ['name' => \"Miami - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miami-cd/412093.p?id=86671&skuId=412093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4120\\/412093_sa.jpg\"}', 'upc' => '075678036521', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Skeletons From The Closet: Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-skeletons-from-the-closet-greatest-hits-cd/412128.p?id=2434652&skuId=412128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4121\\/412128.jpg\"}', 'upc' => '081227646622', 'provider' => 'bestbuy'],\n ['name' => \"Miki Howard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miki-howard-cd/412137.p?id=85851&skuId=412137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4121\\/412137_sa.jpg\"}', 'upc' => '075678202421', 'provider' => 'bestbuy'],\n ['name' => \"Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-cd/412146.p?id=2389720&skuId=412146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412146_sa.jpg\"}', 'upc' => '075992576529', 'provider' => 'bestbuy'],\n ['name' => \"American Beauty [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-beauty-remaster-cd/412155.p?id=2444119&skuId=412155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412155_sa.jpg\"}', 'upc' => '075992719025', 'provider' => 'bestbuy'],\n ['name' => \"Jive Bunny: The Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jive-bunny-the-album-cd/412164.p?id=87021&skuId=412164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412164_sa.jpg\"}', 'upc' => '075679132222', 'provider' => 'bestbuy'],\n ['name' => \"Blow My Fuse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blow-my-fuse-cd/412173.p?id=88220&skuId=412173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4121\\/412173_sa.jpg\"}', 'upc' => '075678187728', 'provider' => 'bestbuy'],\n ['name' => \"Supersonic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supersonic-cd/412217.p?id=81871&skuId=412217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4122\\/412217.jpg\"}', 'upc' => '075679095923', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Emmylou Harris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-emmylou-harris-cd/412262.p?id=84866&skuId=412262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4122\\/412262_sa.jpg\"}', 'upc' => '075992737524', 'provider' => 'bestbuy'],\n ['name' => \"Pirates - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pirates-cd/412280.p?id=3454894&skuId=412280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412280_sa.jpg\"}', 'upc' => '075992343220', 'provider' => 'bestbuy'],\n ['name' => \"Rickie Lee Jones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rickie-lee-jones-cd/412299.p?id=87302&skuId=412299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4122\\/412299_sa.jpg\"}', 'upc' => '075992738927', 'provider' => 'bestbuy'],\n ['name' => \"Alice's Restaurant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/alices-restaurant-cd/412306.p?id=84446&skuId=412306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412306_sa.jpg\"}', 'upc' => '075992743921', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/412351.p?id=2390384&skuId=412351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4123\\/412351_sa.jpg\"}', 'upc' => '075992734028', 'provider' => 'bestbuy'],\n ['name' => \"Oh, Good Grief! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-good-grief-cd/412360.p?id=67035&skuId=412360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4123\\/412360_sa.jpg\"}', 'upc' => '075992717229', 'provider' => 'bestbuy'],\n ['name' => \"Music for the Masses [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-the-masses-bonus-tracks-cd/412422.p?id=80227&skuId=412422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412422_sa.jpg\"}', 'upc' => '075992561426', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/412440.p?id=1535072&skuId=412440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4124\\/412440_sa.jpg\"}', 'upc' => '075992644921', 'provider' => 'bestbuy'],\n ['name' => \"Cocktail - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cocktail-cd-original-soundtrack/412468.p?id=78189&skuId=412468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412468_sa.jpg\"}', 'upc' => '075596080620', 'provider' => 'bestbuy'],\n ['name' => \"Fleetwood Mac - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fleetwood-mac-cd/412477.p?id=1535086&skuId=412477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412477_sa.jpg\"}', 'upc' => '075992724128', 'provider' => 'bestbuy'],\n ['name' => \"Mystery to Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-to-me-cd/412486.p?id=82441&skuId=412486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4124\\/412486_sa.jpg\"}', 'upc' => '075992598224', 'provider' => 'bestbuy'],\n ['name' => \"Tango in the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tango-in-the-night-cd/412495.p?id=82444&skuId=412495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412495_sa.jpg\"}', 'upc' => '075992547123', 'provider' => 'bestbuy'],\n ['name' => \"The Nightfly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-nightfly-cd/412510.p?id=81878&skuId=412510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4125\\/412510_sa.jpg\"}', 'upc' => '075992369626', 'provider' => 'bestbuy'],\n ['name' => \"Faster Pussycat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faster-pussycat-cd/412529.p?id=81989&skuId=412529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412529_sa.jpg\"}', 'upc' => '075596073028', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dave Edmunds [Swan Song] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dave-edmunds-swan-song-cd/412556.p?id=81320&skuId=412556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4125\\/412556_sa.jpg\"}', 'upc' => '075679033826', 'provider' => 'bestbuy'],\n ['name' => \"Jonathan Edwards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonathan-edwards-cd/412583.p?id=81337&skuId=412583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412583_sa.jpg\"}', 'upc' => '075679031020', 'provider' => 'bestbuy'],\n ['name' => \"Holy Diver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/holy-diver-cd/412609.p?id=80498&skuId=412609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4126\\/412609_sa.jpg\"}', 'upc' => '075992383622', 'provider' => 'bestbuy'],\n ['name' => \"Deepest Purple: The Very Best of Deep Purple - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deepest-purple-the-very-best-of-deep-purple-cd/412636.p?id=80052&skuId=412636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412636_sa.jpg\"}', 'upc' => '075992348621', 'provider' => 'bestbuy'],\n ['name' => \"Crossroads - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crossroads-cd-original-soundtrack/412654.p?id=79288&skuId=412654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4126\\/412654_sa.jpg\"}', 'upc' => '075992539920', 'provider' => 'bestbuy'],\n ['name' => \"Déjà Vu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deja-vu-cd/412663.p?id=79272&skuId=412663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412663_sa.jpg\"}', 'upc' => '075678264924', 'provider' => 'bestbuy'],\n ['name' => \"On the Border - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-border-cd/412681.p?id=81203&skuId=412681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412681_sa.jpg\"}', 'upc' => '075596059527', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/412707.p?id=81198&skuId=412707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4127\\/412707_sa.jpg\"}', 'upc' => '075596020527', 'provider' => 'bestbuy'],\n ['name' => \"One of These Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-of-these-nights-cd/412716.p?id=81205&skuId=412716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4127\\/412716_sa.jpg\"}', 'upc' => '075596060127', 'provider' => 'bestbuy'],\n ['name' => \"Eagles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eagles-cd/412725.p?id=81207&skuId=412725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412725_sa.jpg\"}', 'upc' => '075596062329', 'provider' => 'bestbuy'],\n ['name' => \"Desperado - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desperado-cd/412734.p?id=81197&skuId=412734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4127\\/412734_sa.jpg\"}', 'upc' => '075596062725', 'provider' => 'bestbuy'],\n ['name' => \"Their Greatest Hits 1971-1975 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/their-greatest-hits-1971-1975-cd/412743.p?id=81209&skuId=412743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4127\\/412743_sa.jpg\"}', 'upc' => '075596051125', 'provider' => 'bestbuy'],\n ['name' => \"Long Run - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-run-cd/412752.p?id=2640520&skuId=412752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4127\\/412752.jpg\"}', 'upc' => '075596056021', 'provider' => 'bestbuy'],\n ['name' => \"Hotel California - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hotel-california-cd/412761.p?id=3356021&skuId=412761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4127\\/412761_sa.jpg\"}', 'upc' => '075596050920', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/412798.p?id=1543573&skuId=412798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412798_sa.jpg\"}', 'upc' => '081227812928', 'provider' => 'bestbuy'],\n ['name' => \"Billion Dollar Babies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billion-dollar-babies-cd/412805.p?id=78643&skuId=412805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412805_sa.jpg\"}', 'upc' => '075992726924', 'provider' => 'bestbuy'],\n ['name' => \"No Jacket Required - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-jacket-required-cd/412814.p?id=78363&skuId=412814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412814_sa.jpg\"}', 'upc' => '075678124020', 'provider' => 'bestbuy'],\n ['name' => \"Foreigner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foreigner-cd/412850.p?id=3165208&skuId=412850&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412850', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4128\\/412850.jpg\"}', 'upc' => '075678151125', 'provider' => 'bestbuy'],\n ['name' => \"Dr. John's Gumbo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dr-johns-gumbo-cd/412949.p?id=80886&skuId=412949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412949_sa.jpg\"}', 'upc' => '075678039829', 'provider' => 'bestbuy'],\n ['name' => \"The Best of John Coltrane [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-john-coltrane-atlantic-cd/412976.p?id=65129&skuId=412976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412976_sa.jpg\"}', 'upc' => '075678136627', 'provider' => 'bestbuy'],\n ['name' => \"Nighthawks at the Diner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nighthawks-at-the-diner-cd/412994.p?id=103324&skuId=412994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=412994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0412\\/0412994_sa.jpg\"}', 'upc' => '075596062022', 'provider' => 'bestbuy'],\n ['name' => \"Alannah Myles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alannah-myles-cd/413001.p?id=92750&skuId=413001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4130\\/413001_sa.jpg\"}', 'upc' => '075678195624', 'provider' => 'bestbuy'],\n ['name' => \"Bella Donna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/bella-donna-cd/413029.p?id=93300&skuId=413029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4130\\/413029_sa.jpg\"}', 'upc' => '075679042729', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-heart-cd/413038.p?id=93303&skuId=413038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4130\\/413038_sa.jpg\"}', 'upc' => '075679008428', 'provider' => 'bestbuy'],\n ['name' => \"Mike & The Mechanics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mike-the-mechanics-cd/413074.p?id=91698&skuId=413074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413074_sa.jpg\"}', 'upc' => '075678128721', 'provider' => 'bestbuy'],\n ['name' => \"The Land of Rape and Honey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-land-of-rape-and-honey-cd/413083.p?id=91824&skuId=413083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4130\\/413083.jpg\"}', 'upc' => '075992579926', 'provider' => 'bestbuy'],\n ['name' => \"The Living Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-living-years-cd/413092.p?id=91697&skuId=413092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413092_sa.jpg\"}', 'upc' => '075678192326', 'provider' => 'bestbuy'],\n ['name' => \"Conscious Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conscious-party-cd/413109.p?id=2443809&skuId=413109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4131\\/413109_sa.jpg\"}', 'upc' => '077778603825', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Manhattan Transfer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-manhattan-transfer-cd/413118.p?id=90375&skuId=413118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4131\\/413118.jpg\"}', 'upc' => '075678158223', 'provider' => 'bestbuy'],\n ['name' => \"Montrose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/montrose-cd/413127.p?id=92150&skuId=413127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413127_sa.jpg\"}', 'upc' => '075992732925', 'provider' => 'bestbuy'],\n ['name' => \"Court and Spark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/court-and-spark-cd/413136.p?id=91919&skuId=413136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4131\\/413136_sa.jpg\"}', 'upc' => '075596059329', 'provider' => 'bestbuy'],\n ['name' => \"Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/blue-cd/413145.p?id=91916&skuId=413145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413145_sa.jpg\"}', 'upc' => '075992719926', 'provider' => 'bestbuy'],\n ['name' => \"Into the Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-music-cd/413172.p?id=92312&skuId=413172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4131\\/413172_sa.jpg\"}', 'upc' => '075992624824', 'provider' => 'bestbuy'],\n ['name' => \"The Lost Boys [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-boys-original-soundtrack-cd-original-soundtrack/413181.p?id=89771&skuId=413181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4131\\/413181_sa.jpg\"}', 'upc' => '075678176722', 'provider' => 'bestbuy'],\n ['name' => \"Feats Don't Fail Me Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feats-dont-fail-me-now-cd/413190.p?id=89357&skuId=413190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413190_sa.jpg\"}', 'upc' => '075992728423', 'provider' => 'bestbuy'],\n ['name' => \"Shadowland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shadowland-cd/413305.p?id=88638&skuId=413305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4133\\/413305.jpg\"}', 'upc' => '075992572422', 'provider' => 'bestbuy'],\n ['name' => \"Let Love Rule - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-love-rule-cd/413323.p?id=88423&skuId=413323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413323_sa.jpg\"}', 'upc' => '077778612827', 'provider' => 'bestbuy'],\n ['name' => \"Attitude - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/attitude-cd/413387.p?id=102320&skuId=413387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4133\\/413387_sa.jpg\"}', 'upc' => '075678203527', 'provider' => 'bestbuy'],\n ['name' => \"Astral Weeks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/astral-weeks-cd/413421.p?id=92303&skuId=413421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4134\\/413421_sa.jpg\"}', 'upc' => '075992717625', 'provider' => 'bestbuy'],\n ['name' => \"Winelight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/winelight-cd/413430.p?id=71901&skuId=413430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4134\\/413430_sa.jpg\"}', 'upc' => '075596055529', 'provider' => 'bestbuy'],\n ['name' => \"As We Speak - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-we-speak-cd/413476.p?id=70585&skuId=413476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4134\\/413476_sa.jpg\"}', 'upc' => '075992365024', 'provider' => 'bestbuy'],\n ['name' => \"Giant Steps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giant-steps-cd/413494.p?id=176552&skuId=413494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413494_sa.jpg\"}', 'upc' => '075678133725', 'provider' => 'bestbuy'],\n ['name' => \"The London Howlin' Wolf Sessions [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-london-howlin-wolf-sessions-bonus-tracks-cd/413840.p?id=85873&skuId=413840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413840_sa.jpg\"}', 'upc' => '076732929728', 'provider' => 'bestbuy'],\n ['name' => \"Hot Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-water-cd/413993.p?id=76270&skuId=413993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=413993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0413\\/0413993_sa.jpg\"}', 'upc' => '076742209322', 'provider' => 'bestbuy'],\n ['name' => \"Ridin' High - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ridin-high-cd/414028.p?id=103363&skuId=414028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4140\\/414028_sa.jpg\"}', 'upc' => '076732092026', 'provider' => 'bestbuy'],\n ['name' => \"Legend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-cd/414117.p?id=95087&skuId=414117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414117_sa.jpg\"}', 'upc' => '076731101927', 'provider' => 'bestbuy'],\n ['name' => \"Southern Accents - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southern-accents-cd/414126.p?id=94825&skuId=414126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4141\\/414126_sa.jpg\"}', 'upc' => '076732548622', 'provider' => 'bestbuy'],\n ['name' => \"Let Me Up (I've Had Enough) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-me-up-ive-had-enough-cd/414135.p?id=94822&skuId=414135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414135_sa.jpg\"}', 'upc' => '076732583623', 'provider' => 'bestbuy'],\n ['name' => \"Heart Break - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-break-cd/414162.p?id=93124&skuId=414162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4141\\/414162_sa.jpg\"}', 'upc' => '076742220723', 'provider' => 'bestbuy'],\n ['name' => \"Whoever's in New England - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whoevers-in-new-england-cd/414171.p?id=91161&skuId=414171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4141\\/414171_sa.jpg\"}', 'upc' => '076743130427', 'provider' => 'bestbuy'],\n ['name' => \"Legend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-cd/414215.p?id=90002&skuId=414215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414215_sa.jpg\"}', 'upc' => '076742208424', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Caroline - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-caroline-cd/414297.p?id=80360&skuId=414297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414297_sa.jpg\"}', 'upc' => '076731105024', 'provider' => 'bestbuy'],\n ['name' => \"The Smoker You Drink, the Player You Get - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-smoker-you-drink-the-player-you-get-cd/414322.p?id=103427&skuId=414322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414322_sa.jpg\"}', 'upc' => '076731112121', 'provider' => 'bestbuy'],\n ['name' => \"Argus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/argus-cd/414386.p?id=257657&skuId=414386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4143\\/414386.jpg\"}', 'upc' => '008811023423', 'provider' => 'bestbuy'],\n ['name' => \"The 20 Greatest Hits: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-20-greatest-hits-live-cd/414563.p?id=82755&skuId=414563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4145\\/414563.jpg\"}', 'upc' => '715187731929', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/414581.p?id=82115&skuId=414581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4145\\/414581_sa.jpg\"}', 'upc' => '715187733824', 'provider' => 'bestbuy'],\n ['name' => \"Hits Digitally Enhanced - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hits-digitally-enhanced-cd/414590.p?id=82762&skuId=414590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4145\\/414590.jpg\"}', 'upc' => '715187730427', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/414616.p?id=81747&skuId=414616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4146\\/414616.jpg\"}', 'upc' => '715187731127', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-songs-cd/414634.p?id=79813&skuId=414634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4146\\/414634_sa.jpg\"}', 'upc' => '715187727229', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/414652.p?id=93424&skuId=414652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414652_sa.jpg\"}', 'upc' => '715187735729', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-curb-cd/414661.p?id=246243&skuId=414661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4146\\/414661.jpg\"}', 'upc' => '715187737228', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/414670.p?id=93258&skuId=414670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4146\\/414670_sa.jpg\"}', 'upc' => '715187736726', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/414698.p?id=89499&skuId=414698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4146\\/414698.jpg\"}', 'upc' => '715187730229', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Steve & Eydie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-steve-eydie-cd/414723.p?id=88824&skuId=414723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4147\\/414723.jpg\"}', 'upc' => '715187731622', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/414732.p?id=88958&skuId=414732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4147\\/414732.jpg\"}', 'upc' => '715187737921', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/414778.p?id=97134&skuId=414778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414778_sa.jpg\"}', 'upc' => '715187735828', 'provider' => 'bestbuy'],\n ['name' => \"City to City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/city-to-city-cd/414787.p?id=95814&skuId=414787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414787_sa.jpg\"}', 'upc' => '077774604925', 'provider' => 'bestbuy'],\n ['name' => \"Unchained Melody [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/unchained-melody-curb-cd/414796.p?id=96700&skuId=414796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4147\\/414796_sa.jpg\"}', 'upc' => '715187738126', 'provider' => 'bestbuy'],\n ['name' => \"Blue Jungle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-jungle-cd/414812.p?id=84578&skuId=414812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414812_sa.jpg\"}', 'upc' => '715187731325', 'provider' => 'bestbuy'],\n ['name' => \"Billboard Top Rock & Roll Hits: 1969 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billboard-top-rock-roll-hits-1969-cd-various/414821.p?id=74684&skuId=414821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4148\\/414821_sa.jpg\"}', 'upc' => '081227063023', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Canned Heat [EMI] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-canned-heat-emi-cd/414830.p?id=76732&skuId=414830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=414830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0414\\/0414830_sa.jpg\"}', 'upc' => '077774837729', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/415072.p?id=73019&skuId=415072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4150\\/415072.jpg\"}', 'upc' => '715187740020', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/415081.p?id=104191&skuId=415081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4150\\/415081.jpg\"}', 'upc' => '715187726727', 'provider' => 'bestbuy'],\n ['name' => \"Paul Butterfield's Better Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paul-butterfields-better-days-cd/415134.p?id=3356012&skuId=415134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415134_sa.jpg\"}', 'upc' => '081227087722', 'provider' => 'bestbuy'],\n ['name' => \"Bad Animals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-animals-cd/415152.p?id=85107&skuId=415152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4151\\/415152_sa.jpg\"}', 'upc' => '077774667623', 'provider' => 'bestbuy'],\n ['name' => \"Dreamboat Annie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreamboat-annie-cd/415161.p?id=85112&skuId=415161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415161_sa.jpg\"}', 'upc' => '077774649124', 'provider' => 'bestbuy'],\n ['name' => \"Paul'S Boutique - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pauls-boutique-cd/415385.p?id=2444169&skuId=415385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415385_sa.jpg\"}', 'upc' => '077779174324', 'provider' => 'bestbuy'],\n ['name' => \"Vixen [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vixen-remaster-cd/415394.p?id=1392423&skuId=415394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415394_sa.jpg\"}', 'upc' => '077774699129', 'provider' => 'bestbuy'],\n ['name' => \"Desolation Boulevard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desolation-boulevard-cd/415429.p?id=100976&skuId=415429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4154\\/415429.jpg\"}', 'upc' => '077774845229', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 1974-78 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1974-78-cd/415483.p?id=91737&skuId=415483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4154\\/415483.jpg\"}', 'upc' => '077774610124', 'provider' => 'bestbuy'],\n ['name' => \"Fly Like an Eagle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fly-like-an-eagle-cd/415492.p?id=91735&skuId=415492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415492_sa.jpg\"}', 'upc' => '077774647526', 'provider' => 'bestbuy'],\n ['name' => \"Proud Mary: The Best of Ike & Tina Turner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proud-mary-the-best-of-ike-tina-turner-cd/415580.p?id=102514&skuId=415580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415580_sa.jpg\"}', 'upc' => '077779584628', 'provider' => 'bestbuy'],\n ['name' => \"State of Euphoria [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/state-of-euphoria-pa-cd/415642.p?id=73130&skuId=415642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4156\\/415642_sa.jpg\"}', 'upc' => '042284236324', 'provider' => 'bestbuy'],\n ['name' => \"The Tonight Show Band, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tonight-show-band-vol-2-cd/415884.p?id=71473&skuId=415884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=415884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0415\\/0415884_sa.jpg\"}', 'upc' => '051617331223', 'provider' => 'bestbuy'],\n ['name' => \"Obsession - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/obsession-cd/416393.p?id=67818&skuId=416393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4163\\/416393_sa.jpg\"}', 'upc' => '075992549523', 'provider' => 'bestbuy'],\n ['name' => \"Double Vision - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-vision-cd/416419.p?id=67825&skuId=416419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4164\\/416419_sa.jpg\"}', 'upc' => '075992539326', 'provider' => 'bestbuy'],\n ['name' => \"Information Society - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/information-society-cd/416473.p?id=86193&skuId=416473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4164\\/416473_sa.jpg\"}', 'upc' => '075992569125', 'provider' => 'bestbuy'],\n ['name' => \"Freedom Of Speech - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freedom-of-speech-cd/416482.p?id=86042&skuId=416482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4164\\/416482_sa.jpg\"}', 'upc' => '075992602822', 'provider' => 'bestbuy'],\n ['name' => \"Faith Hope Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faith-hope-love-cd/416507.p?id=88065&skuId=416507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416507_sa.jpg\"}', 'upc' => '075678214523', 'provider' => 'bestbuy'],\n ['name' => \"Bellybutton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bellybutton-cd/416570.p?id=86862&skuId=416570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416570_sa.jpg\"}', 'upc' => '077778618621', 'provider' => 'bestbuy'],\n ['name' => \"Nothing's Shocking [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothings-shocking-pa-cd/416589.p?id=86714&skuId=416589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416589_sa.jpg\"}', 'upc' => '075992572729', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits (1987-90) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1987-90-cd/416598.p?id=85365&skuId=416598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4165\\/416598_sa.jpg\"}', 'upc' => '075992625326', 'provider' => 'bestbuy'],\n ['name' => \"Shortstop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shortstop-cd/416623.p?id=85337&skuId=416623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416623_sa.jpg\"}', 'upc' => '075596096423', 'provider' => 'bestbuy'],\n ['name' => \"Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duets-cd/416641.p?id=84860&skuId=416641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4166\\/416641_sa.jpg\"}', 'upc' => '075992579124', 'provider' => 'bestbuy'],\n ['name' => \"Lalah Hathaway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lalah-hathaway-cd/416650.p?id=84962&skuId=416650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416650_sa.jpg\"}', 'upc' => '077778617426', 'provider' => 'bestbuy'],\n ['name' => \"Brand New Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brand-new-dance-cd/416669.p?id=2389914&skuId=416669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4166\\/416669_sa.jpg\"}', 'upc' => '075992630924', 'provider' => 'bestbuy'],\n ['name' => \"88 Elmira St. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/88-elmira-st-cd/416703.p?id=83368&skuId=416703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416703_sa.jpg\"}', 'upc' => '075596103220', 'provider' => 'bestbuy'],\n ['name' => \"Goddess - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goddess-cd/416721.p?id=99392&skuId=416721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4167\\/416721_sa.jpg\"}', 'upc' => '075679158529', 'provider' => 'bestbuy'],\n ['name' => \"Texas Tornados - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-tornados-cd/416810.p?id=101503&skuId=416810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416810_sa.jpg\"}', 'upc' => '075992625128', 'provider' => 'bestbuy'],\n ['name' => \"Souls of Black - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/souls-of-black-cd/416829.p?id=101485&skuId=416829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4168\\/416829_sa.jpg\"}', 'upc' => '075678214325', 'provider' => 'bestbuy'],\n ['name' => \"In My Tribe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-my-tribe-cd/416838.p?id=101411&skuId=416838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416838_sa.jpg\"}', 'upc' => '075596073820', 'provider' => 'bestbuy'],\n ['name' => \"Little Creatures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-creatures-cd/416865.p?id=101130&skuId=416865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416865_sa.jpg\"}', 'upc' => '075992530521', 'provider' => 'bestbuy'],\n ['name' => \"More Songs About Buildings and Food - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-songs-about-buildings-and-food-cd/416874.p?id=1509002&skuId=416874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416874_sa.jpg\"}', 'upc' => '075992742528', 'provider' => 'bestbuy'],\n ['name' => \"Remain in Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remain-in-light-cd/416892.p?id=101134&skuId=416892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0416\\/0416892_sa.jpg\"}', 'upc' => '075992609524', 'provider' => 'bestbuy'],\n ['name' => \"Speaking in Tongues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speaking-in-tongues-cd/416909.p?id=101135&skuId=416909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4169\\/416909_sa.jpg\"}', 'upc' => '075992388320', 'provider' => 'bestbuy'],\n ['name' => \"Keep on Movin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-on-movin-cd/416981.p?id=99524&skuId=416981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4169\\/416981.jpg\"}', 'upc' => '077778612223', 'provider' => 'bestbuy'],\n ['name' => \"Skid Row - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/skid-row-cd/416990.p?id=99054&skuId=416990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=416990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4169\\/416990.jpg\"}', 'upc' => '075678193620', 'provider' => 'bestbuy'],\n ['name' => \"Vision Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vision-thing-cd/417016.p?id=98977&skuId=417016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417016_sa.jpg\"}', 'upc' => '075596101721', 'provider' => 'bestbuy'],\n ['name' => \"I Fell in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-fell-in-love-cd/417025.p?id=76978&skuId=417025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417025_sa.jpg\"}', 'upc' => '075992613927', 'provider' => 'bestbuy'],\n ['name' => \"Outside Looking In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outside-looking-in-cd/417061.p?id=75380&skuId=417061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417061_sa.jpg\"}', 'upc' => '075992562928', 'provider' => 'bestbuy'],\n ['name' => \"Cosmic Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cosmic-thing-cd/417098.p?id=73549&skuId=417098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4170\\/417098.jpg\"}', 'upc' => '075992585422', 'provider' => 'bestbuy'],\n ['name' => \"Rapture - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rapture-cd/417132.p?id=73743&skuId=417132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417132_sa.jpg\"}', 'upc' => '075596044424', 'provider' => 'bestbuy'],\n ['name' => \"After 7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-7-cd/417150.p?id=72579&skuId=417150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4171\\/417150_sa.jpg\"}', 'upc' => '077778610427', 'provider' => 'bestbuy'],\n ['name' => \"East Of The Sun West Of The Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-of-the-sun-west-of-the-moon-cd/417169.p?id=1441817&skuId=417169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417169_sa.jpg\"}', 'upc' => '075992631426', 'provider' => 'bestbuy'],\n ['name' => \"Forever Your Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-your-girl-cd/417178.p?id=72325&skuId=417178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417178_sa.jpg\"}', 'upc' => '077778606727', 'provider' => 'bestbuy'],\n ['name' => \"3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-cd/417187.p?id=103179&skuId=417187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4171\\/417187_sa.jpg\"}', 'upc' => '075992581929', 'provider' => 'bestbuy'],\n ['name' => \"Spellbound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spellbound-cd/417196.p?id=70577&skuId=417196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417196_sa.jpg\"}', 'upc' => '075992578127', 'provider' => 'bestbuy'],\n ['name' => \"Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trio-cd/417203.p?id=94471&skuId=417203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417203_sa.jpg\"}', 'upc' => '075992549127', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-atlantic-cd/417276.p?id=97450&skuId=417276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417276_sa.jpg\"}', 'upc' => '075678219924', 'provider' => 'bestbuy'],\n ['name' => \"Eat 'Em and Smile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eat-em-and-smile-cd/417294.p?id=2390280&skuId=417294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417294_sa.jpg\"}', 'upc' => '075992547024', 'provider' => 'bestbuy'],\n ['name' => \"Rude Awakening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rude-awakening-cd/417301.p?id=97495&skuId=417301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417301_sa.jpg\"}', 'upc' => '075678212123', 'provider' => 'bestbuy'],\n ['name' => \"Something Inside So Strong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-inside-so-strong-cd/417329.p?id=97140&skuId=417329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4173\\/417329_sa.jpg\"}', 'upc' => '075992579223', 'provider' => 'bestbuy'],\n ['name' => \"Brick by Brick - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brick-by-brick-cd/417347.p?id=95181&skuId=417347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417347_sa.jpg\"}', 'upc' => '077778617327', 'provider' => 'bestbuy'],\n ['name' => \"What's New - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/whats-new-cd/417365.p?id=97297&skuId=417365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417365_sa.jpg\"}', 'upc' => '075596026024', 'provider' => 'bestbuy'],\n ['name' => \"The Rembrandts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rembrandts-cd/417392.p?id=96418&skuId=417392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417392_sa.jpg\"}', 'upc' => '075679141224', 'provider' => 'bestbuy'],\n ['name' => \"Auberge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/auberge-cd/417409.p?id=96133&skuId=417409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4174\\/417409.jpg\"}', 'upc' => '075679166227', 'provider' => 'bestbuy'],\n ['name' => \"New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-cd/417418.p?id=96292&skuId=417418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417418_sa.jpg\"}', 'upc' => '075992582926', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits So Far - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-so-far-cd/417427.p?id=2305014&skuId=417427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417427_sa.jpg\"}', 'upc' => '077778619628', 'provider' => 'bestbuy'],\n ['name' => \"Purple Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/purple-rain-cd/417454.p?id=95497&skuId=417454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417454_sa.jpg\"}', 'upc' => '075992511025', 'provider' => 'bestbuy'],\n ['name' => \"The Blind Leading the Naked - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blind-leading-the-naked-cd/417481.p?id=103183&skuId=417481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4174\\/417481_sa.jpg\"}', 'upc' => '075992534024', 'provider' => 'bestbuy'],\n ['name' => \"Wicked Sensation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wicked-sensation-cd/417604.p?id=89955&skuId=417604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4176\\/417604_sa.jpg\"}', 'upc' => '075596095426', 'provider' => 'bestbuy'],\n ['name' => \"Missing... Presumed Having a Good Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/missing-presumed-having-a-good-time-cd/417668.p?id=93522&skuId=417668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4176\\/417668_sa.jpg\"}', 'upc' => '075992614726', 'provider' => 'bestbuy'],\n ['name' => \"Still Got the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-got-the-blues-cd/417686.p?id=92220&skuId=417686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4176\\/417686_sa.jpg\"}', 'upc' => '077778616726', 'provider' => 'bestbuy'],\n ['name' => \"Cowboy Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/cowboy-songs-cd/417711.p?id=92636&skuId=417711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4177\\/417711_sa.jpg\"}', 'upc' => '075992630825', 'provider' => 'bestbuy'],\n ['name' => \"Lean Into It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lean-into-it-cd/417720.p?id=92534&skuId=417720&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417720', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417720_sa.jpg\"}', 'upc' => '075678220920', 'provider' => 'bestbuy'],\n ['name' => \"A Day in the Life: A Pokadelick Adventure [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-day-in-the-life-a-pokadelick-adventure-pa-cd/417739.p?id=88469&skuId=417739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417739_sa.jpg\"}', 'upc' => '075678210020', 'provider' => 'bestbuy'],\n ['name' => \"Mind Is A Terrible Thing To Taste - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mind-is-a-terrible-thing-to-taste-cd/417748.p?id=2416870&skuId=417748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4177\\/417748_sa.jpg\"}', 'upc' => '075992600422', 'provider' => 'bestbuy'],\n ['name' => \"Brickyard Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brickyard-road-cd/417766.p?id=102953&skuId=417766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417766_sa.jpg\"}', 'upc' => '075678211027', 'provider' => 'bestbuy'],\n ['name' => \"Old 8x10 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-8x10-cd/417784.p?id=102193&skuId=417784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417784_sa.jpg\"}', 'upc' => '075992573825', 'provider' => 'bestbuy'],\n ['name' => \"No Holdin' Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-holdin-back-cd/417793.p?id=102192&skuId=417793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4177\\/417793_sa.jpg\"}', 'upc' => '075992598828', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Doobies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-doobies-cd/417837.p?id=1548425&skuId=417837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417837_sa.jpg\"}', 'upc' => '081227809621', 'provider' => 'bestbuy'],\n ['name' => \"The Five Heartbeats - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-five-heartbeats-cd-original-soundtrack/417846.p?id=82317&skuId=417846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4178\\/417846.jpg\"}', 'upc' => '077778620822', 'provider' => 'bestbuy'],\n ['name' => \"World Clique - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-clique-cd/417962.p?id=80046&skuId=417962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4179\\/417962_sa.jpg\"}', 'upc' => '075596095723', 'provider' => 'bestbuy'],\n ['name' => \"Wake Me When It's Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wake-me-when-its-over-cd/417980.p?id=81990&skuId=417980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417980_sa.jpg\"}', 'upc' => '075596088329', 'provider' => 'bestbuy'],\n ['name' => \"Real Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/real-thing-cd/417999.p?id=81909&skuId=417999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=417999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0417\\/0417999_sa.jpg\"}', 'upc' => '075992587822', 'provider' => 'bestbuy'],\n ['name' => \"Spartacus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spartacus-cd/418006.p?id=81974&skuId=418006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418006_sa.jpg\"}', 'upc' => '075992660020', 'provider' => 'bestbuy'],\n ['name' => \"Wild! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-cd/418033.p?id=81660&skuId=418033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418033_sa.jpg\"}', 'upc' => '075992602624', 'provider' => 'bestbuy'],\n ['name' => \"Dollars & Sex - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dollars-sex-cd/418042.p?id=81678&skuId=418042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4180\\/418042.jpg\"}', 'upc' => '075678219825', 'provider' => 'bestbuy'],\n ['name' => \"Damn Yankees - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/damn-yankees-cd/418088.p?id=79641&skuId=418088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418088_sa.jpg\"}', 'upc' => '075992615921', 'provider' => 'bestbuy'],\n ['name' => \"Floating into the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/floating-into-the-night-cd/418122.p?id=79344&skuId=418122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4181\\/418122_sa.jpg\"}', 'upc' => '075992585927', 'provider' => 'bestbuy'],\n ['name' => \"Rumours [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rumours-ecd-cd/418177.p?id=82443&skuId=418177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4181\\/418177_sa.jpg\"}', 'upc' => '075992731324', 'provider' => 'bestbuy'],\n ['name' => \"A View from 3rd Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-view-from-3rd-street-cd/418195.p?id=78250&skuId=418195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418195_sa.jpg\"}', 'upc' => '075992616423', 'provider' => 'bestbuy'],\n ['name' => \"Minute by Minute - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/minute-by-minute-cd/418220.p?id=2387698&skuId=418220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4182\\/418220_sa.jpg\"}', 'upc' => '075992735421', 'provider' => 'bestbuy'],\n ['name' => \"Freedom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freedom-cd/418266.p?id=105074&skuId=418266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418266_sa.jpg\"}', 'upc' => '075992589925', 'provider' => 'bestbuy'],\n ['name' => \"Tonight's the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tonights-the-night-cd/418275.p?id=105064&skuId=418275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4182\\/418275_sa.jpg\"}', 'upc' => '075992722124', 'provider' => 'bestbuy'],\n ['name' => \"Comes a Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/comes-a-time-cd/418284.p?id=3286551&skuId=418284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418284_sa.jpg\"}', 'upc' => '075992723527', 'provider' => 'bestbuy'],\n ['name' => \"Rust Never Sleeps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/rust-never-sleeps-cd/418319.p?id=105068&skuId=418319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4183\\/418319_sa.jpg\"}', 'upc' => '075992724920', 'provider' => 'bestbuy'],\n ['name' => \"Return - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-cd/418337.p?id=104433&skuId=418337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4183\\/418337.jpg\"}', 'upc' => '075992616126', 'provider' => 'bestbuy'],\n ['name' => \"Labour of Love II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/labour-of-love-ii-cd/418444.p?id=102714&skuId=418444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4184\\/418444.jpg\"}', 'upc' => '077778614623', 'provider' => 'bestbuy'],\n ['name' => \"Twin Peaks [Original TV Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twin-peaks-original-tv-soundtrack-cd-original-soundtrack/418453.p?id=102577&skuId=418453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4184\\/418453_sa.jpg\"}', 'upc' => '075992631624', 'provider' => 'bestbuy'],\n ['name' => \"Anthology of Bread - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthology-of-bread-cd/418532.p?id=2305361&skuId=418532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418532_sa.jpg\"}', 'upc' => '075596041423', 'provider' => 'bestbuy'],\n ['name' => \"Just Say Mao: Volume III of Just Say Yes - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-say-mao-volume-iii-of-just-say-yes-various-cd/418676.p?id=87521&skuId=418676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4186\\/418676.jpg\"}', 'upc' => '075992594721', 'provider' => 'bestbuy'],\n ['name' => \"12\\\" Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-anthology-cd/418952.p?id=262611&skuId=418952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0418\\/0418952_sa.jpg\"}', 'upc' => '067003004121', 'provider' => 'bestbuy'],\n ['name' => \"Suicidal Tendencies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suicidal-tendencies-cd/418961.p?id=2434664&skuId=418961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=418961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4189\\/418961.jpg\"}', 'upc' => '018663101125', 'provider' => 'bestbuy'],\n ['name' => \"Crossroads [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crossroads-box-cd/419238.p?id=77901&skuId=419238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0419\\/0419238_sa.jpg\"}', 'upc' => '042283526129', 'provider' => 'bestbuy'],\n ['name' => \"Star Time [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-time-box-cd/419256.p?id=75968&skuId=419256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0419\\/0419256_sa.jpg\"}', 'upc' => '042284910828', 'provider' => 'bestbuy'],\n ['name' => \"If This Bass Could Only Talk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-this-bass-could-only-talk-cd/419318.p?id=64994&skuId=419318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4193\\/419318_sa.jpg\"}', 'upc' => '074644092325', 'provider' => 'bestbuy'],\n ['name' => \"Harry Connick, Jr. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harry-connick-jr-cd/419434.p?id=65228&skuId=419434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0419\\/0419434_sa.jpg\"}', 'upc' => '074644070224', 'provider' => 'bestbuy'],\n ['name' => \"Truth and Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truth-and-soul-cd/419522.p?id=82290&skuId=419522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4195\\/419522_sa.jpg\"}', 'upc' => '074644089127', 'provider' => 'bestbuy'],\n ['name' => \"Antics in the Forbidden Zone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/antics-in-the-forbidden-zone-cd/419586.p?id=73102&skuId=419586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4195\\/419586_sa.jpg\"}', 'upc' => '074644681925', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/419602.p?id=97879&skuId=419602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4196\\/419602_sa.jpg\"}', 'upc' => '074643305020', 'provider' => 'bestbuy'],\n ['name' => \"Midnight To Midnight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-to-midnight-cd/419684.p?id=95618&skuId=419684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0419\\/0419684_sa.jpg\"}', 'upc' => '074644046625', 'provider' => 'bestbuy'],\n ['name' => \"Yo! Bum Rush the Show [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yo-bum-rush-the-show-pa-cd/419693.p?id=95635&skuId=419693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0419\\/0419693_sa.jpg\"}', 'upc' => '731452735720', 'provider' => 'bestbuy'],\n ['name' => \"Welcome Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-home-cd/419942.p?id=101857&skuId=419942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=419942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4199\\/419942_sa.jpg\"}', 'upc' => '074644031423', 'provider' => 'bestbuy'],\n ['name' => \"Licensed to Ill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/licensed-to-ill-cd/420084.p?id=74158&skuId=420084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4200\\/420084_sa.jpg\"}', 'upc' => '731452735126', 'provider' => 'bestbuy'],\n ['name' => \"Time and Tide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-and-tide-cd/420093.p?id=74022&skuId=420093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0420\\/0420093_sa.jpg\"}', 'upc' => '074644076721', 'provider' => 'bestbuy'],\n ['name' => \"The Great Adventures of Slick Rick [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-adventures-of-slick-rick-pa-cd/420164.p?id=99139&skuId=420164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4201\\/420164_sa.jpg\"}', 'upc' => '731452735928', 'provider' => 'bestbuy'],\n ['name' => \"Any Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/any-love-cd/420734.p?id=102962&skuId=420734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4207\\/420734_sa.jpg\"}', 'upc' => '074644430820', 'provider' => 'bestbuy'],\n ['name' => \"Super Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hits-cd/420770.p?id=1643135&skuId=420770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4207\\/420770_sa.jpg\"}', 'upc' => '886970528429', 'provider' => 'bestbuy'],\n ['name' => \"The Innocent Age - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-innocent-age-cd/420832.p?id=82546&skuId=420832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4208\\/420832_sa.jpg\"}', 'upc' => '074643739320', 'provider' => 'bestbuy'],\n ['name' => \"Social Distortion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/social-distortion-cd/420903.p?id=99370&skuId=420903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0420\\/0420903_sa.jpg\"}', 'upc' => '074644605525', 'provider' => 'bestbuy'],\n ['name' => \"Who's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whos-greatest-hits-cd/420985.p?id=104025&skuId=420985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=420985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0420\\/0420985_sa.jpg\"}', 'upc' => '076732149621', 'provider' => 'bestbuy'],\n ['name' => \"Night Ranger's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-rangers-greatest-hits-cd/421010.p?id=93319&skuId=421010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4210\\/421010.jpg\"}', 'upc' => '076742230722', 'provider' => 'bestbuy'],\n ['name' => \"Miami Vice [Original TV Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miami-vice-original-tv-soundtrack-cd-original-soundtrack/421029.p?id=91575&skuId=421029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421029_sa.jpg\"}', 'upc' => '076732615027', 'provider' => 'bestbuy'],\n ['name' => \"Reba McEntire's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reba-mcentires-greatest-hits-cd/421038.p?id=91144&skuId=421038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421038_sa.jpg\"}', 'upc' => '076732597927', 'provider' => 'bestbuy'],\n ['name' => \"Skynyrd's Innyrds: Their Greatest Hits [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skynyrds-innyrds-their-greatest-hits-pa-cd/421047.p?id=90013&skuId=421047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4210\\/421047_sa.jpg\"}', 'upc' => '076742229320', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-1-cd/421065.p?id=93736&skuId=421065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4210\\/421065.jpg\"}', 'upc' => '076732515020', 'provider' => 'bestbuy'],\n ['name' => \"Out of Africa [Original Motion Picture... - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-africa-original-motion-picture-original-soundtrack-cd/421092.p?id=2069184&skuId=421092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421092_sa.jpg\"}', 'upc' => '076732615829', 'provider' => 'bestbuy'],\n ['name' => \"The Continuing Story of Radar Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-continuing-story-of-radar-love-cd/421243.p?id=83787&skuId=421243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421243_sa.jpg\"}', 'upc' => '076732635520', 'provider' => 'bestbuy'],\n ['name' => \"Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guy-cd/421289.p?id=84494&skuId=421289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4212\\/421289_sa.jpg\"}', 'upc' => '076742217624', 'provider' => 'bestbuy'],\n ['name' => \"Standing Hampton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standing-hampton-cd/421298.p?id=84556&skuId=421298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421298_sa.jpg\"}', 'upc' => '720642200629', 'provider' => 'bestbuy'],\n ['name' => \"One Fair Summer Evening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-fair-summer-evening-cd/421314.p?id=84276&skuId=421314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421314_sa.jpg\"}', 'upc' => '076742225520', 'provider' => 'bestbuy'],\n ['name' => \"Storms - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storms-cd/421323.p?id=84279&skuId=421323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421323_sa.jpg\"}', 'upc' => '076732631928', 'provider' => 'bestbuy'],\n ['name' => \"Asia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asia-cd/421387.p?id=73329&skuId=421387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421387_sa.jpg\"}', 'upc' => '720642200827', 'provider' => 'bestbuy'],\n ['name' => \"Don't Be Cruel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-be-cruel-cd/421396.p?id=75878&skuId=421396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4213\\/421396_sa.jpg\"}', 'upc' => '076742218522', 'provider' => 'bestbuy'],\n ['name' => \"Living and Dying in 3/4 Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-and-dying-in-3-4-time-cd/421412.p?id=76272&skuId=421412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4214\\/421412_sa.jpg\"}', 'upc' => '076731105925', 'provider' => 'bestbuy'],\n ['name' => \"Changes in Latitudes, Changes in Attitudes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/changes-in-latitudes-changes-in-attitudes-cd/421458.p?id=76263&skuId=421458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4214\\/421458_sa.jpg\"}', 'upc' => '076731107028', 'provider' => 'bestbuy'],\n ['name' => \"Son of a Son of a Sailor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/son-of-a-son-of-a-sailor-cd/421467.p?id=76279&skuId=421467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4214\\/421467_sa.jpg\"}', 'upc' => '076731109121', 'provider' => 'bestbuy'],\n ['name' => \"Songs You Know by Heart: Jimmy... [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-you-know-by-heart-jimmy-ecd-cd/421476.p?id=76280&skuId=421476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4214\\/421476_sa.jpg\"}', 'upc' => '076732563328', 'provider' => 'bestbuy'],\n ['name' => \"A-1-A - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-1-a-cd/421485.p?id=76259&skuId=421485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4214\\/421485_sa.jpg\"}', 'upc' => '076732159026', 'provider' => 'bestbuy'],\n ['name' => \"Third Stage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-stage-cd/421519.p?id=75607&skuId=421519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421519_sa.jpg\"}', 'upc' => '076732618820', 'provider' => 'bestbuy'],\n ['name' => \"One Thing Leads to Another: Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-thing-leads-to-another-greatest-hits-cd/421555.p?id=257430&skuId=421555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4215\\/421555_sa.jpg\"}', 'upc' => '076742231620', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-town-cd/421573.p?id=2168710&skuId=421573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4215\\/421573_sa.jpg\"}', 'upc' => '076743130526', 'provider' => 'bestbuy'],\n ['name' => \"Slide It In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slide-it-in-cd/421671.p?id=103886&skuId=421671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421671_sa.jpg\"}', 'upc' => '720642401828', 'provider' => 'bestbuy'],\n ['name' => \"To Live and Die in L.A. [Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-live-and-die-in-l-a-original-motion-cd-original-soundtrack/421680.p?id=101928&skuId=421680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4216\\/421680.jpg\"}', 'upc' => '720642408124', 'provider' => 'bestbuy'],\n ['name' => \"Ocean Front Property - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocean-front-property-cd/421706.p?id=100547&skuId=421706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4217\\/421706_sa.jpg\"}', 'upc' => '076732591321', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/421715.p?id=100541&skuId=421715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421715_sa.jpg\"}', 'upc' => '076744203526', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/421724.p?id=100540&skuId=421724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421724_sa.jpg\"}', 'upc' => '076732556726', 'provider' => 'bestbuy'],\n ['name' => \"Up to Here - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-to-here-cd/421779.p?id=257176&skuId=421779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421779_sa.jpg\"}', 'upc' => '076732631027', 'provider' => 'bestbuy'],\n ['name' => \"Quarterflash: Limited - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quarterflash-limited-cd/421788.p?id=95693&skuId=421788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4217\\/421788.jpg\"}', 'upc' => '720642200322', 'provider' => 'bestbuy'],\n ['name' => \"Dead Man's Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-mans-party-cd/421804.p?id=93832&skuId=421804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4218\\/421804_sa.jpg\"}', 'upc' => '076732566527', 'provider' => 'bestbuy'],\n ['name' => \"Color Rit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/color-rit-cd/421886.p?id=70348&skuId=421886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421886_sa.jpg\"}', 'upc' => '011105959421', 'provider' => 'bestbuy'],\n ['name' => \"Stolen Moments - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stolen-moments-cd/421895.p?id=70357&skuId=421895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4218\\/421895_sa.jpg\"}', 'upc' => '011105961523', 'provider' => 'bestbuy'],\n ['name' => \"Moonlighting - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonlighting-cd/421911.p?id=70341&skuId=421911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4219\\/421911_sa.jpg\"}', 'upc' => '011105960526', 'provider' => 'bestbuy'],\n ['name' => \"Tourist in Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tourist-in-paradise-cd/421920.p?id=70342&skuId=421920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421920_sa.jpg\"}', 'upc' => '011105958820', 'provider' => 'bestbuy'],\n ['name' => \"Road to Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-to-hell-cd/421948.p?id=96137&skuId=421948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0421\\/0421948_sa.jpg\"}', 'upc' => '075679173324', 'provider' => 'bestbuy'],\n ['name' => \"Pure Schuur - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-schuur-cd/421975.p?id=70691&skuId=421975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=421975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4219\\/421975.jpg\"}', 'upc' => '011105962827', 'provider' => 'bestbuy'],\n ['name' => \"After The Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-the-rain-cd/422091.p?id=92981&skuId=422091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422091_sa.jpg\"}', 'upc' => '720642429020', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Apollo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-apollo-cd/422206.p?id=87926&skuId=422206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4222\\/422206_sa.jpg\"}', 'upc' => '011105963725', 'provider' => 'bestbuy'],\n ['name' => \"Personal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/personal-cd/422251.p?id=67627&skuId=422251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422251_sa.jpg\"}', 'upc' => '076732633526', 'provider' => 'bestbuy'],\n ['name' => \"Migration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/migration-cd/422279.p?id=67013&skuId=422279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422279_sa.jpg\"}', 'upc' => '011105959223', 'provider' => 'bestbuy'],\n ['name' => \"The Future - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-future-cd/422288.p?id=84495&skuId=422288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4222\\/422288_sa.jpg\"}', 'upc' => '008811011529', 'provider' => 'bestbuy'],\n ['name' => \"When I Call Your Name - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-i-call-your-name-cd/422359.p?id=83628&skuId=422359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422359_sa.jpg\"}', 'upc' => '076742232122', 'provider' => 'bestbuy'],\n ['name' => \"Johnny Gill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-gill-cd/422386.p?id=83618&skuId=422386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4223\\/422386_sa.jpg\"}', 'upc' => '737463628327', 'provider' => 'bestbuy'],\n ['name' => \"Building the Perfect Beast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/building-the-perfect-beast-cd/422411.p?id=85239&skuId=422411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4224\\/422411.jpg\"}', 'upc' => '720642402627', 'provider' => 'bestbuy'],\n ['name' => \"Happy Anniversary, Charlie Brown! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-anniversary-charlie-brown-cd-various/422439.p?id=67177&skuId=422439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422439_sa.jpg\"}', 'upc' => '011105959629', 'provider' => 'bestbuy'],\n ['name' => \"Heart of Stone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-of-stone-cd/422448.p?id=77369&skuId=422448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4224\\/422448_sa.jpg\"}', 'upc' => '720642423929', 'provider' => 'bestbuy'],\n ['name' => \"Ralph Tresvant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ralph-tresvant-cd/422466.p?id=102223&skuId=422466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422466_sa.jpg\"}', 'upc' => '008811011628', 'provider' => 'bestbuy'],\n ['name' => \"Cats [Selections from the Orig. Broadway] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cats-selections-from-the-orig-broadway-cd-original-broadway-cast/422475.p?id=2066571&skuId=422475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422475_sa.jpg\"}', 'upc' => '731452146229', 'provider' => 'bestbuy'],\n ['name' => \"Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collection-cd/422509.p?id=64821&skuId=422509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4225\\/422509_sa.jpg\"}', 'upc' => '011105961127', 'provider' => 'bestbuy'],\n ['name' => \"Red Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-moon-cd/422527.p?id=257286&skuId=422527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4225\\/422527.jpg\"}', 'upc' => '008811003326', 'provider' => 'bestbuy'],\n ['name' => \"Shooting Rubberbands at the Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shooting-rubberbands-at-the-stars-cd/422545.p?id=75829&skuId=422545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422545_sa.jpg\"}', 'upc' => '720642419229', 'provider' => 'bestbuy'],\n ['name' => \"Dance!...Ya Know It! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-ya-know-it-cd/422563.p?id=75877&skuId=422563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422563_sa.jpg\"}', 'upc' => '076732634226', 'provider' => 'bestbuy'],\n ['name' => \"Then & Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-now-cd/422581.p?id=73332&skuId=422581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4225\\/422581_sa.jpg\"}', 'upc' => '720642429822', 'provider' => 'bestbuy'],\n ['name' => \"Inner Motion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inner-motion-cd/422634.p?id=64156&skuId=422634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4226\\/422634_sa.jpg\"}', 'upc' => '011105962124', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Berlin 1979-1988 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-berlin-1979-1988-cd/422643.p?id=74482&skuId=422643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422643_sa.jpg\"}', 'upc' => '720642418727', 'provider' => 'bestbuy'],\n ['name' => \"Livin' It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livin-it-up-cd/422723.p?id=100544&skuId=422723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422723_sa.jpg\"}', 'upc' => '076732641521', 'provider' => 'bestbuy'],\n ['name' => \"Reading, Writing and Arithmetic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reading-writing-and-arithmetic-cd/422750.p?id=100833&skuId=422750&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422750', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422750_sa.jpg\"}', 'upc' => '720642427729', 'provider' => 'bestbuy'],\n ['name' => \"Go West Young Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-west-young-man-cd/422796.p?id=99225&skuId=422796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4227\\/422796_sa.jpg\"}', 'upc' => '012414920324', 'provider' => 'bestbuy'],\n ['name' => \"Mechanical Resonance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mechanical-resonance-cd/422803.p?id=101476&skuId=422803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422803_sa.jpg\"}', 'upc' => '720642412022', 'provider' => 'bestbuy'],\n ['name' => \"Edward Scissorhands [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edward-scissorhands-original-motion-picture-cd-original-soundtrack/422876.p?id=81341&skuId=422876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422876_sa.jpg\"}', 'upc' => '008811013325', 'provider' => 'bestbuy'],\n ['name' => \"Let the Rhythm Hit 'Em - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-the-rhythm-hit-em-cd/422894.p?id=81665&skuId=422894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4228\\/422894_sa.jpg\"}', 'upc' => '076732641620', 'provider' => 'bestbuy'],\n ['name' => \"The Hard Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hard-way-cd/422910.p?id=1446310&skuId=422910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4229\\/422910.jpg\"}', 'upc' => '076732643020', 'provider' => 'bestbuy'],\n ['name' => \"Ten - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ten-cd/422974.p?id=2231322&skuId=422974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0422\\/0422974_sa.jpg\"}', 'upc' => '720642428320', 'provider' => 'bestbuy'],\n ['name' => \"Whitesnake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whitesnake-cd/422983.p?id=103889&skuId=422983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=422983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4229\\/422983_sa.jpg\"}', 'upc' => '720642409923', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Delaney & Bonnie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-delaney-bonnie-cd/423143.p?id=80138&skuId=423143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4231\\/423143_sa.jpg\"}', 'upc' => '081227077723', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Foghat [1989] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-best-of-foghat-1989-cd/423170.p?id=82556&skuId=423170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0423\\/0423170_sa.jpg\"}', 'upc' => '081227008826', 'provider' => 'bestbuy'],\n ['name' => \"Cadence Classics: Their 20 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cadence-classics-their-20-greatest-hits-cd/423205.p?id=81750&skuId=423205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4232\\/423205.jpg\"}', 'upc' => '081227525828', 'provider' => 'bestbuy'],\n ['name' => \"I Do Not Want What I Haven't Got - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-do-not-want-what-i-havent-got-cd/423358.p?id=93669&skuId=423358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4233\\/423358_sa.jpg\"}', 'upc' => '094632175922', 'provider' => 'bestbuy'],\n ['name' => \"I'M With You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-with-you-cd/423367.p?id=91060&skuId=423367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4233\\/423367_sa.jpg\"}', 'upc' => '715187725225', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Delbert McClinton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-delbert-mcclinton-cd/423376.p?id=91056&skuId=423376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4233\\/423376.jpg\"}', 'upc' => '715187741522', 'provider' => 'bestbuy'],\n ['name' => \"Ah Via Musicom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ah-via-musicom-cd/423571.p?id=87110&skuId=423571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0423\\/0423571_sa.jpg\"}', 'upc' => '077779051724', 'provider' => 'bestbuy'],\n ['name' => \"Freeze Frame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freeze-frame-cd/423697.p?id=83446&skuId=423697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4236\\/423697.jpg\"}', 'upc' => '077774601429', 'provider' => 'bestbuy'],\n ['name' => \"More of the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-of-the-night-cd/423704.p?id=103865&skuId=423704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4237\\/423704_sa.jpg\"}', 'upc' => '077779295722', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/423731.p?id=158582&skuId=423731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4237\\/423731.jpg\"}', 'upc' => '715187757820', 'provider' => 'bestbuy'],\n ['name' => \"Buick - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buick-cd/423759.p?id=97975&skuId=423759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4237\\/423759.jpg\"}', 'upc' => '715187757622', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Marie Osmond - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-marie-osmond-cd/423768.p?id=94136&skuId=423768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4237\\/423768_sa.jpg\"}', 'upc' => '715187726321', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/423786.p?id=98176&skuId=423786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4237\\/423786_sa.jpg\"}', 'upc' => '077779575725', 'provider' => 'bestbuy'],\n ['name' => \"Operation: Mindcrime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operation-mindcrime-cd/423820.p?id=243537&skuId=423820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0423\\/0423820_sa.jpg\"}', 'upc' => '077774864022', 'provider' => 'bestbuy'],\n ['name' => \"The Boys Are Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-boys-are-back-cd/423848.p?id=97982&skuId=423848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4238\\/423848_sa.jpg\"}', 'upc' => '715187757721', 'provider' => 'bestbuy'],\n ['name' => \"Right Down the Line: The Best of Gerry Rafferty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/right-down-the-line-the-best-of-gerry-rafferty-cd/423884.p?id=95816&skuId=423884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4238\\/423884.jpg\"}', 'upc' => '077779326426', 'provider' => 'bestbuy'],\n ['name' => \"The Miracle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-miracle-cd/423893.p?id=95716&skuId=423893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=423893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4238\\/423893_sa.jpg\"}', 'upc' => '720616123428', 'provider' => 'bestbuy'],\n ['name' => \"Loud Plowed & Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loud-plowed-live-cd/424035.p?id=74166&skuId=424035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4240\\/424035_sa.jpg\"}', 'upc' => '715187726529', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Badfinger, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-badfinger-vol-2-cd/424044.p?id=73681&skuId=424044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4240\\/424044.jpg\"}', 'upc' => '081227097820', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-rhino-cd/424106.p?id=101652&skuId=424106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0424\\/0424106_sa.jpg\"}', 'upc' => '081227075224', 'provider' => 'bestbuy'],\n ['name' => \"Born to Be Bad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-be-bad-cd/424133.p?id=101742&skuId=424133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4241\\/424133_sa.jpg\"}', 'upc' => '077774697323', 'provider' => 'bestbuy'],\n ['name' => \"Natural History 1982-1988 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/natural-history-1982-1988-cd/424188.p?id=101124&skuId=424188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4241\\/424188.jpg\"}', 'upc' => '077779397624', 'provider' => 'bestbuy'],\n ['name' => \"Rumor and Sigh - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rumor-and-sigh-cd/424259.p?id=101697&skuId=424259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4242\\/424259.jpg\"}', 'upc' => '077779571321', 'provider' => 'bestbuy'],\n ['name' => \"Past The Point Of Rescue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/past-the-point-of-rescue-cd/424295.p?id=87783&skuId=424295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4242\\/424295.jpg\"}', 'upc' => '715187745025', 'provider' => 'bestbuy'],\n ['name' => \"Ain't No Shame in My Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-no-shame-in-my-game-cd/424375.p?id=76728&skuId=424375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4243\\/424375.jpg\"}', 'upc' => '074644694727', 'provider' => 'bestbuy'],\n ['name' => \"Barbra Streisand's Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbra-streisands-greatest-hits-vol-2-cd/424623.p?id=100598&skuId=424623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4246\\/424623_sa.jpg\"}', 'upc' => '074643567923', 'provider' => 'bestbuy'],\n ['name' => \"State of the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/state-of-the-heart-cd/424641.p?id=76910&skuId=424641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0424\\/0424641_sa.jpg\"}', 'upc' => '074644422825', 'provider' => 'bestbuy'],\n ['name' => \"Shooting Straight in the Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shooting-straight-in-the-dark-cd/424650.p?id=76909&skuId=424650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4246\\/424650_sa.jpg\"}', 'upc' => '074644607727', 'provider' => 'bestbuy'],\n ['name' => \"The Disregard of Timekeeping - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-disregard-of-timekeeping-cd/424703.p?id=75484&skuId=424703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0424\\/0424703_sa.jpg\"}', 'upc' => '074644500929', 'provider' => 'bestbuy'],\n ['name' => \"Violin Sonatas (Comp) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-sonatas-comp-cd/424758.p?id=1692293&skuId=424758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4247\\/424758.jpg\"}', 'upc' => '074644581928', 'provider' => 'bestbuy'],\n ['name' => \"It Takes a Nation of Millions to... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-takes-a-nation-of-millions-to-pa-cd/424838.p?id=95633&skuId=424838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=424838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4248\\/424838.jpg\"}', 'upc' => '731452735829', 'provider' => 'bestbuy'],\n ['name' => \"12 Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-greatest-hits-vol-2-cd/425203.p?id=80333&skuId=425203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=425203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4252\\/425203_sa.jpg\"}', 'upc' => '074643806824', 'provider' => 'bestbuy'],\n ['name' => \"Business as Usual [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/business-as-usual-pa-cd/425249.p?id=81644&skuId=425249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=425249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4252\\/425249_sa.jpg\"}', 'upc' => '731452351029', 'provider' => 'bestbuy'],\n ['name' => \"Steady On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steady-on-cd/425383.p?id=78412&skuId=425383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=425383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4253\\/425383_sa.jpg\"}', 'upc' => '074644520927', 'provider' => 'bestbuy'],\n ['name' => \"RVS III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rvs-iii-cd/425436.p?id=102948&skuId=425436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=425436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4254\\/425436_sa.jpg\"}', 'upc' => '074644525021', 'provider' => 'bestbuy'],\n ['name' => \"Alive! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alive-cd/425542.p?id=263458&skuId=425542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=425542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4255\\/425542.jpg\"}', 'upc' => '042282278029', 'provider' => 'bestbuy'],\n ['name' => \"Oedipus Tex & Other Choral Calamities - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oedipus-tex-other-choral-calamities-cd/427096.p?id=276534&skuId=427096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0427\\/0427096_sa.jpg\"}', 'upc' => '089408023927', 'provider' => 'bestbuy'],\n ['name' => \"Legendary Oscar Peterson Trio Live at the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legendary-oscar-peterson-trio-live-at-the-cd/427112.p?id=69962&skuId=427112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0427\\/0427112_sa.jpg\"}', 'upc' => '089408330421', 'provider' => 'bestbuy'],\n ['name' => \"Ringo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ringo-cd/427292.p?id=100130&skuId=427292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4272\\/427292.jpg\"}', 'upc' => '077779563722', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Chet Baker Sings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-chet-baker-sings-cd/427390.p?id=63887&skuId=427390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4273\\/427390.jpg\"}', 'upc' => '077779293223', 'provider' => 'bestbuy'],\n ['name' => \"Steve Miller Band: Live! [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-miller-band-live-capitol-cd/427540.p?id=91742&skuId=427540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0427\\/0427540_sa.jpg\"}', 'upc' => '077779131525', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Don McLean [EMI 1988] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-don-mclean-emi-1988-cd/427577.p?id=91239&skuId=427577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4275\\/427577.jpg\"}', 'upc' => '077779147625', 'provider' => 'bestbuy'],\n ['name' => \"Picture This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/picture-this-cd/427639.p?id=1367053&skuId=427639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4276\\/427639_sa.jpg\"}', 'upc' => '094632134028', 'provider' => 'bestbuy'],\n ['name' => \"The Singles Collection\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-singles-collection/427657.p?id=99809&skuId=427657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4276\\/427657_sa.jpg\"}', 'upc' => '094632182326', 'provider' => 'bestbuy'],\n ['name' => \"Distance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/distance-cd/427764.p?id=98300&skuId=427764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4277\\/427764_sa.jpg\"}', 'upc' => '077774600521', 'provider' => 'bestbuy'],\n ['name' => \"The Abbey Road EP - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-abbey-road-ep-cd/427782.p?id=96186&skuId=427782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4277\\/427782_sa.jpg\"}', 'upc' => '077779086924', 'provider' => 'bestbuy'],\n ['name' => \"The Power Station - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-power-station-cd/427817.p?id=2444207&skuId=427817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4278\\/427817.jpg\"}', 'upc' => '077774612722', 'provider' => 'bestbuy'],\n ['name' => \"Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-cd/427880.p?id=2393445&skuId=427880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0427\\/0427880_sa.jpg\"}', 'upc' => '077774615723', 'provider' => 'bestbuy'],\n ['name' => \"Magic Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-touch-cd/427915.p?id=68114&skuId=427915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4279\\/427915_sa.jpg\"}', 'upc' => '077774609227', 'provider' => 'bestbuy'],\n ['name' => \"The Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-capitol-collectors-series-cd/427951.p?id=88077&skuId=427951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0427\\/0427951_sa.jpg\"}', 'upc' => '077779271023', 'provider' => 'bestbuy'],\n ['name' => \"Whiplash Smile (Holiday) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whiplash-smile-holiday-cd/427960.p?id=3391602&skuId=427960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=427960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '762185116821', 'provider' => 'bestbuy'],\n ['name' => \"Original Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-masters-cd/428004.p?id=86947&skuId=428004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428004_sa.jpg\"}', 'upc' => '094632151520', 'provider' => 'bestbuy'],\n ['name' => \"Crowded House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crowded-house-cd/428102.p?id=79318&skuId=428102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4281\\/428102.jpg\"}', 'upc' => '077774669320', 'provider' => 'bestbuy'],\n ['name' => \"Cocker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cocker-cd/428120.p?id=1993642&skuId=428120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '077774626828', 'provider' => 'bestbuy'],\n ['name' => \"Go West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-west-cd/428184.p?id=2393502&skuId=428184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4281\\/428184_sa.jpg\"}', 'upc' => '094632149527', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Doug & Rusty Kershaw - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-doug-rusty-kershaw-cd/428200.p?id=87775&skuId=428200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4282\\/428200_sa.jpg\"}', 'upc' => '715187745629', 'provider' => 'bestbuy'],\n ['name' => \"Pickin' on Nashville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pickin-on-nashville-cd/428219.p?id=87763&skuId=428219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4282\\/428219.jpg\"}', 'upc' => '042283874428', 'provider' => 'bestbuy'],\n ['name' => \"Control - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/control-cd/428228.p?id=86477&skuId=428228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4282\\/428228_sa.jpg\"}', 'upc' => '075021390522', 'provider' => 'bestbuy'],\n ['name' => \"You Won't Forget Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-wont-forget-me-cd/428237.p?id=67605&skuId=428237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428237_sa.jpg\"}', 'upc' => '042284748223', 'provider' => 'bestbuy'],\n ['name' => \"Grease [The Soundtrack from the... [ECD] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grease-the-soundtrack-from-the-ecd-cd-original-soundtrack/428255.p?id=84120&skuId=428255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428255_sa.jpg\"}', 'upc' => '042282509529', 'provider' => 'bestbuy'],\n ['name' => \"Sticking To My Guns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sticking-to-my-guns-cd/428282.p?id=86636&skuId=428282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428282_sa.jpg\"}', 'upc' => '042284292627', 'provider' => 'bestbuy'],\n ['name' => \"Mall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mall-cd/428335.p?id=2631651&skuId=428335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4283\\/428335.jpg\"}', 'upc' => '042284912426', 'provider' => 'bestbuy'],\n ['name' => \"Back in the High Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-in-the-high-life-cd/428344.p?id=104538&skuId=428344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4283\\/428344_sa.jpg\"}', 'upc' => '042283014824', 'provider' => 'bestbuy'],\n ['name' => \"Temple of the Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/temple-of-the-dog-cd/428406.p?id=101372&skuId=428406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4284\\/428406_sa.jpg\"}', 'upc' => '075021535022', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/428433.p?id=100875&skuId=428433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428433_sa.jpg\"}', 'upc' => '075021250727', 'provider' => 'bestbuy'],\n ['name' => \"The Dream of the Blue Turtles [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dream-of-the-blue-turtles-ecd-cd/428460.p?id=100470&skuId=428460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428460_sa.jpg\"}', 'upc' => '075021375024', 'provider' => 'bestbuy'],\n ['name' => \"Stone Cold Rhymin' (Uk) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stone-cold-rhymin-uk-cd/428512.p?id=3188271&skuId=428512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '042284237529', 'provider' => 'bestbuy'],\n ['name' => \"Arc of a Diver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arc-of-a-diver-cd/428521.p?id=104536&skuId=428521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4285\\/428521_sa.jpg\"}', 'upc' => '042284236522', 'provider' => 'bestbuy'],\n ['name' => \"Best of '81 to '85 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-81-to-85-cd/428530.p?id=104862&skuId=428530&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428530', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428530_sa.jpg\"}', 'upc' => '075021530928', 'provider' => 'bestbuy'],\n ['name' => \"Willow In The Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/willow-in-the-wind-cd/428727.p?id=2305080&skuId=428727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4287\\/428727.jpg\"}', 'upc' => '042283695023', 'provider' => 'bestbuy'],\n ['name' => \"A Collection of Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-collection-of-hits-cd/428736.p?id=3565172&skuId=428736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4287\\/428736.jpg\"}', 'upc' => '042284233026', 'provider' => 'bestbuy'],\n ['name' => \"Brother's Keeper - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brothers-keeper-cd/428772.p?id=93091&skuId=428772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4287\\/428772_sa.jpg\"}', 'upc' => '075021531222', 'provider' => 'bestbuy'],\n ['name' => \"Move to This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/move-to-this-cd/428861.p?id=80187&skuId=428861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4288\\/428861_sa.jpg\"}', 'upc' => '042284726726', 'provider' => 'bestbuy'],\n ['name' => \"Blues Traveler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-traveler-cd/428898.p?id=75196&skuId=428898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428898_sa.jpg\"}', 'upc' => '075021530829', 'provider' => 'bestbuy'],\n ['name' => \"The Singles 1969-1973 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-singles-1969-1973-cd/428932.p?id=239887&skuId=428932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4289\\/428932_sa.jpg\"}', 'upc' => '082839360128', 'provider' => 'bestbuy'],\n ['name' => \"Kilroy Was Here - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kilroy-was-here-cd/428996.p?id=100684&skuId=428996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=428996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0428\\/0428996_sa.jpg\"}', 'upc' => '075021373426', 'provider' => 'bestbuy'],\n ['name' => \"Serenity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serenity-cd/429012.p?id=66600&skuId=429012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4290\\/429012_sa.jpg\"}', 'upc' => '042283877023', 'provider' => 'bestbuy'],\n ['name' => \"Peggy Suicide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peggy-suicide-cd/429067.p?id=78680&skuId=429067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4290\\/429067.jpg\"}', 'upc' => '042284838825', 'provider' => 'bestbuy'],\n ['name' => \"Living in the Danger Zone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-in-the-danger-zone-cd/429272.p?id=98187&skuId=429272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4292\\/429272.jpg\"}', 'upc' => '014551479826', 'provider' => 'bestbuy'],\n ['name' => \"Live from Austin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-austin-cd/429307.p?id=91063&skuId=429307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4293\\/429307.jpg\"}', 'upc' => '014551477327', 'provider' => 'bestbuy'],\n ['name' => \"More Creedence Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-creedence-gold-cd/429325.p?id=79173&skuId=429325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429325_sa.jpg\"}', 'upc' => '025218943024', 'provider' => 'bestbuy'],\n ['name' => \"Creedence Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creedence-gold-cd/429334.p?id=79167&skuId=429334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429334_sa.jpg\"}', 'upc' => '025218941822', 'provider' => 'bestbuy'],\n ['name' => \"The Big Easy - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-easy-cd-original-soundtrack/429343.p?id=74622&skuId=429343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429343_sa.jpg\"}', 'upc' => '016253990920', 'provider' => 'bestbuy'],\n ['name' => \"Cold Snap - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cold-snap-cd/429352.p?id=78326&skuId=429352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429352_sa.jpg\"}', 'upc' => '014551475224', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-vol-1-cd/429361.p?id=79158&skuId=429361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429361_sa.jpg\"}', 'upc' => '025218000222', 'provider' => 'bestbuy'],\n ['name' => \"Music to Disappear In, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-to-disappear-in-vol-2-cd/429405.p?id=96033&skuId=429405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4294\\/429405.jpg\"}', 'upc' => '025041102322', 'provider' => 'bestbuy'],\n ['name' => \"Nightsongs and Lullabies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nightsongs-and-lullabies-cd/429423.p?id=77230&skuId=429423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429423_sa.jpg\"}', 'upc' => '046286013525', 'provider' => 'bestbuy'],\n ['name' => \"Nouveau Flamenco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nouveau-flamenco-cd/429432.p?id=89213&skuId=429432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429432_sa.jpg\"}', 'upc' => '018317702623', 'provider' => 'bestbuy'],\n ['name' => \"Time After Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-after-time-cd/429441.p?id=101895&skuId=429441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4294\\/429441.jpg\"}', 'upc' => '063961510322', 'provider' => 'bestbuy'],\n ['name' => \"Hearts of Space: Universe Sampler 90 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hearts-of-space-universe-sampler-90-cd-various/429469.p?id=102800&skuId=429469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4294\\/429469_sa.jpg\"}', 'upc' => '025041120029', 'provider' => 'bestbuy'],\n ['name' => \"As Kosher as They Wanna Be - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-kosher-as-they-wanna-be-cd/429487.p?id=102646&skuId=429487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4294\\/429487.jpg\"}', 'upc' => '053993332825', 'provider' => 'bestbuy'],\n ['name' => \"50 Years of Bluegrass Hits, Vol. 1 [1995] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-years-of-bluegrass-hits-vol-1-1995-cd-various/429557.p?id=75175&skuId=429557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429557_sa.jpg\"}', 'upc' => '027297903326', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Bluegrass Bands - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-bluegrass-bands-cd-various/429566.p?id=245448&skuId=429566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4295\\/429566_sa.jpg\"}', 'upc' => '027297590021', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Bluegrass Bands, Vol. 2 [CMH... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-bluegrass-bands-vol-2-cmh-cd-various/429575.p?id=287315&skuId=429575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0429\\/0429575_sa.jpg\"}', 'upc' => '027297590120', 'provider' => 'bestbuy'],\n ['name' => \"Genuine Houserockin Blues 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-houserockin-blues-1-cd-various/429940.p?id=1416336&skuId=429940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=429940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4299\\/429940.jpg\"}', 'upc' => '014551010128', 'provider' => 'bestbuy'],\n ['name' => \"Concerto Royal Philharmonic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concerto-royal-philharmonic-cd/430064.p?id=273812&skuId=430064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0430\\/0430064_sa.jpg\"}', 'upc' => '074644473926', 'provider' => 'bestbuy'],\n ['name' => \"Life Is...Too Short [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-is-too-short-pa-cd/430199.p?id=101990&skuId=430199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4301\\/430199.jpg\"}', 'upc' => '012414114921', 'provider' => 'bestbuy'],\n ['name' => \"The Stone Roses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-stone-roses-cd/430251.p?id=100494&skuId=430251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4302\\/430251.jpg\"}', 'upc' => '012414118424', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/430411.p?id=103941&skuId=430411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4304\\/430411_sa.jpg\"}', 'upc' => '078635227727', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [RCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-rca-cd/430457.p?id=95117&skuId=430457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4304\\/430457_sa.jpg\"}', 'upc' => '078635981629', 'provider' => 'bestbuy'],\n ['name' => \"Love Can Build a Bridge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-can-build-a-bridge-cd/430670.p?id=3435029&skuId=430670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=430670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0430\\/0430670_sa.jpg\"}', 'upc' => '078635207026', 'provider' => 'bestbuy'],\n ['name' => \"Tales from Topographic Oceans [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tales-from-topographic-oceans-remaster-cd/431054.p?id=104981&skuId=431054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0431\\/0431054_sa.jpg\"}', 'upc' => '075678268328', 'provider' => 'bestbuy'],\n ['name' => \"Dionne Warwick Collection: Her All-Time... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dionne-warwick-collection-her-all-time-cd/431090.p?id=103528&skuId=431090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0431\\/0431090_sa.jpg\"}', 'upc' => '081227110024', 'provider' => 'bestbuy'],\n ['name' => \"My Dear Old Southern Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-dear-old-southern-home-cd/431232.p?id=103624&skuId=431232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0431\\/0431232_sa.jpg\"}', 'upc' => '015891379524', 'provider' => 'bestbuy'],\n ['name' => \"Sex Packets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sex-packets-cd/431330.p?id=80452&skuId=431330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4313\\/431330_sa.jpg\"}', 'upc' => '016998102626', 'provider' => 'bestbuy'],\n ['name' => \"Best of Howlin' Wolf [JDC] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-howlin-wolf-jdc-cd/431697.p?id=3353622&skuId=431697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '051091350048', 'provider' => 'bestbuy'],\n ['name' => \"Unfinished Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unfinished-business-cd/431811.p?id=3170335&skuId=431811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0431\\/0431811_sa.jpg\"}', 'upc' => '049925713626', 'provider' => 'bestbuy'],\n ['name' => \"This Is the Moody Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-the-moody-blues-cd/431937.p?id=92181&skuId=431937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=431937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4319\\/431937_sa.jpg\"}', 'upc' => '042282000729', 'provider' => 'bestbuy'],\n ['name' => \"Jane'S Addiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/janes-addiction-cd/432785.p?id=86713&skuId=432785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=432785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0432\\/0432785_sa.jpg\"}', 'upc' => '021075100426', 'provider' => 'bestbuy'],\n ['name' => \"Down in There - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-in-there-cd/433007.p?id=75920&skuId=433007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=433007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0433\\/0433007_sa.jpg\"}', 'upc' => '033651003526', 'provider' => 'bestbuy'],\n ['name' => \"Layla Sessions: 20th... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/layla-sessions-20th-box-cd/438556.p?id=80242&skuId=438556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=438556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4385\\/438556_sa.jpg\"}', 'upc' => '042284708326', 'provider' => 'bestbuy'],\n ['name' => \"The Original Singles Collection...Plus [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-singles-collection-plus-box-cd/438565.p?id=104123&skuId=438565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=438565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4385\\/438565_sa.jpg\"}', 'upc' => '042284719421', 'provider' => 'bestbuy'],\n ['name' => \"The Young Big Bill Broonzy (1928-1935) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-young-big-bill-broonzy-1928-1935-cd/438592.p?id=76073&skuId=438592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=438592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4385\\/438592_sa.jpg\"}', 'upc' => '016351011121', 'provider' => 'bestbuy'],\n ['name' => \"Disney's Silly Songs: 20 Simply... [Blister] - CD - Various Blister\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disneys-silly-songs-20-simply-blister-cd-various-blister/438798.p?id=149088&skuId=438798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=438798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0438\\/0438798_sa.jpg\"}', 'upc' => '050086081929', 'provider' => 'bestbuy'],\n ['name' => \"The Immaculate Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-immaculate-collection-cd/439582.p?id=2472927&skuId=439582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4395\\/439582_sa.jpg\"}', 'upc' => '075992644020', 'provider' => 'bestbuy'],\n ['name' => \"Yellowstone: The Music of Nature - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yellowstone-the-music-of-nature-cd/439671.p?id=317147&skuId=439671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0439\\/0439671_sa.jpg\"}', 'upc' => '012805308922', 'provider' => 'bestbuy'],\n ['name' => \"Fresh Aire Interludes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-aire-interludes-cd/439715.p?id=90446&skuId=439715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4397\\/439715.jpg\"}', 'upc' => '012805037327', 'provider' => 'bestbuy'],\n ['name' => \"Classical Gas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classical-gas-cd/439742.p?id=104305&skuId=439742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4397\\/439742_sa.jpg\"}', 'upc' => '012805080026', 'provider' => 'bestbuy'],\n ['name' => \"Miss Saigon [Original London Cast Recording] - CD - London Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miss-saigon-original-london-cast-recording-cd-london-cast-recording/439886.p?id=91884&skuId=439886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4398\\/439886_sa.jpg\"}', 'upc' => '720642427125', 'provider' => 'bestbuy'],\n ['name' => \"Les Misérables [Original Broadway Cast Recording] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/les-miserables-original-broadway-cast-recording-cd-original-cast-recording/439939.p?id=89062&skuId=439939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=439939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4399\\/439939.jpg\"}', 'upc' => '720642415122', 'provider' => 'bestbuy'],\n ['name' => \"Sharing The Night Together (EMI) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharing-the-night-together-emi-cd/440525.p?id=309754&skuId=440525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4405\\/440525_sa.jpg\"}', 'upc' => '077775724226', 'provider' => 'bestbuy'],\n ['name' => \"All Time Greatest Hits (EMI) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-emi-cd/440552.p?id=245530&skuId=440552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0440\\/0440552_sa.jpg\"}', 'upc' => '077775736021', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/440561.p?id=83816&skuId=440561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4405\\/440561.jpg\"}', 'upc' => '077775740721', 'provider' => 'bestbuy'],\n ['name' => \"Play the Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/play-the-hits-cd/440614.p?id=103344&skuId=440614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0440\\/0440614_sa.jpg\"}', 'upc' => '077775725322', 'provider' => 'bestbuy'],\n ['name' => \"Anthology: SST Years 1985-1989 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthology-sst-years-1985-1989-cd/440641.p?id=98132&skuId=440641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4406\\/440641_sa.jpg\"}', 'upc' => '018861026022', 'provider' => 'bestbuy'],\n ['name' => \"On Flame with Rock and Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-flame-with-rock-and-roll-cd/440721.p?id=75137&skuId=440721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4407\\/440721.jpg\"}', 'upc' => '079892156621', 'provider' => 'bestbuy'],\n ['name' => \"Listen Up! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-up-cd/440909.p?id=154312&skuId=440909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4409\\/440909_sa.jpg\"}', 'upc' => '079892156126', 'provider' => 'bestbuy'],\n ['name' => \"Long Time Coming - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-time-coming-cd/440936.p?id=96139&skuId=440936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0440\\/0440936_sa.jpg\"}', 'upc' => '076732582923', 'provider' => 'bestbuy'],\n ['name' => \"Backlash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backlash-cd/440990.p?id=73661&skuId=440990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=440990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4409\\/440990_sa.jpg\"}', 'upc' => '074644693522', 'provider' => 'bestbuy'],\n ['name' => \"Super Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hits-cd/441178.p?id=80876&skuId=441178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4411\\/441178_sa.jpg\"}', 'upc' => '077775739725', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/441285.p?id=86706&skuId=441285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4412\\/441285_sa.jpg\"}', 'upc' => '077775740820', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Cema] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cema-cd/441310.p?id=83419&skuId=441310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4413\\/441310.jpg\"}', 'upc' => '077775740523', 'provider' => 'bestbuy'],\n ['name' => \"Love Songs [Collectables] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-songs-collectables-cd/441338.p?id=92663&skuId=441338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4413\\/441338_sa.jpg\"}', 'upc' => '077775725629', 'provider' => 'bestbuy'],\n ['name' => \"Tom Dooley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-dooley-cd/441347.p?id=88086&skuId=441347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0441\\/0441347_sa.jpg\"}', 'upc' => '077775724721', 'provider' => 'bestbuy'],\n ['name' => \"One Believer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-believer-cd/441506.p?id=76676&skuId=441506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0441\\/0441506_sa.jpg\"}', 'upc' => '075596108621', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Sings Cole Porter: Anything Goes - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-sings-cole-porter-anything-goes-cd-various/441980.p?id=95208&skuId=441980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=441980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0441\\/0441980_sa.jpg\"}', 'upc' => '077779636129', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Johnny Cash [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-johnny-cash-curb-cd/442079.p?id=77022&skuId=442079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=442079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4420\\/442079_sa.jpg\"}', 'upc' => '715187749429', 'provider' => 'bestbuy'],\n ['name' => \"The Commitments - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-commitments-cd-original-soundtrack/442248.p?id=78442&skuId=442248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=442248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0442\\/0442248_sa.jpg\"}', 'upc' => '008811028626', 'provider' => 'bestbuy'],\n ['name' => \"We Can't Be Stopped [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-cant-be-stopped-pa-cd/443336.p?id=1534931&skuId=443336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=443336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0443\\/0443336_sa.jpg\"}', 'upc' => '034744199225', 'provider' => 'bestbuy'],\n ['name' => \"Anthology (1956-1980) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthology-1956-1980-cd/444264.p?id=88947&skuId=444264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=444264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4442\\/444264_sa.jpg\"}', 'upc' => '008811038427', 'provider' => 'bestbuy'],\n ['name' => \"Zucchero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zucchero-cd/444709.p?id=105332&skuId=444709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=444709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0444\\/0444709_sa.jpg\"}', 'upc' => '042284906326', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night at the Blue Note - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-at-the-blue-note-cd/444816.p?id=69970&skuId=444816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=444816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4448\\/444816_sa.jpg\"}', 'upc' => '089408330629', 'provider' => 'bestbuy'],\n ['name' => \"Fear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-cd/445361.p?id=101931&skuId=445361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=445361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0445\\/0445361_sa.jpg\"}', 'upc' => '074644730920', 'provider' => 'bestbuy'],\n ['name' => \"Ten - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ten-cd/445441.p?id=94586&skuId=445441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=445441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4454\\/445441.jpg\"}', 'upc' => '074644785722', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Ten Years After - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-ten-years-after-cd/445691.p?id=101418&skuId=445691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=445691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4456\\/445691_sa.jpg\"}', 'upc' => '094632185723', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Imperial Recordings: 1950-1954 [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-imperial-recordings-1950-1954-box-cd/445879.p?id=103376&skuId=445879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=445879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4458\\/445879_sa.jpg\"}', 'upc' => '077779673728', 'provider' => 'bestbuy'],\n ['name' => \"In Your Face - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-your-face-cd/446208.p?id=82287&skuId=446208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446208_sa.jpg\"}', 'upc' => '074644033328', 'provider' => 'bestbuy'],\n ['name' => \"Psychotic Supper - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/psychotic-supper-cd/446413.p?id=101477&skuId=446413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4464\\/446413.jpg\"}', 'upc' => '720642442425', 'provider' => 'bestbuy'],\n ['name' => \"Use Your Illusion I - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/use-your-illusion-i-cd/446431.p?id=84440&skuId=446431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4464\\/446431.jpg\"}', 'upc' => '720642441527', 'provider' => 'bestbuy'],\n ['name' => \"Use Your Illusion II [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/use-your-illusion-ii-pa-cd/446459.p?id=84441&skuId=446459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446459_sa.jpg\"}', 'upc' => '720642442029', 'provider' => 'bestbuy'],\n ['name' => \"Ain't a Damn Thing Changed [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-a-damn-thing-changed-pa-cd/446556.p?id=93286&skuId=446556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446556_sa.jpg\"}', 'upc' => '731452347824', 'provider' => 'bestbuy'],\n ['name' => \"Only Love: The Best of Nana - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-love-the-best-of-nana-cd/446654.p?id=92487&skuId=446654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446654_sa.jpg\"}', 'upc' => '731451022920', 'provider' => 'bestbuy'],\n ['name' => \"Stranger in This Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stranger-in-this-town-cd/446707.p?id=97804&skuId=446707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446707_sa.jpg\"}', 'upc' => '042284889520', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/446994.p?id=96806&skuId=446994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=446994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0446\\/0446994_sa.jpg\"}', 'upc' => '074643136129', 'provider' => 'bestbuy'],\n ['name' => \"Say No More - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/say-no-more-cd/447038.p?id=81018&skuId=447038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4470\\/447038.jpg\"}', 'upc' => '074643439725', 'provider' => 'bestbuy'],\n ['name' => \"Ratt & Roll 8191 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ratt-roll-8191-cd/447270.p?id=96085&skuId=447270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0447\\/0447270_sa.jpg\"}', 'upc' => '075678226021', 'provider' => 'bestbuy'],\n ['name' => \"Horrorscope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/horrorscope-cd/447396.p?id=94196&skuId=447396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0447\\/0447396_sa.jpg\"}', 'upc' => '075678228322', 'provider' => 'bestbuy'],\n ['name' => \"Timespace: The Best of Stevie Nicks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timespace-the-best-of-stevie-nicks-cd/447412.p?id=93305&skuId=447412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0447\\/0447412_sa.jpg\"}', 'upc' => '075679171122', 'provider' => 'bestbuy'],\n ['name' => \"Pop Pop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pop-pop-cd/447537.p?id=87301&skuId=447537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0447\\/0447537_sa.jpg\"}', 'upc' => '720642442623', 'provider' => 'bestbuy'],\n ['name' => \"Muddy & the Wolf - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/muddy-the-wolf-cd/447582.p?id=103582&skuId=447582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0447\\/0447582_sa.jpg\"}', 'upc' => '076732910023', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds and Pearls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-and-pearls-cd/447760.p?id=3434957&skuId=447760&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=447760', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4477\\/447760_sa.jpg\"}', 'upc' => '075992537926', 'provider' => 'bestbuy'],\n ['name' => \"Zone of Our Own - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zone-of-our-own-cd/448607.p?id=101505&skuId=448607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=448607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4486\\/448607_sa.jpg\"}', 'upc' => '075992668323', 'provider' => 'bestbuy'],\n ['name' => \"Cerulean - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cerulean-cd/448634.p?id=93781&skuId=448634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=448634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0448\\/0448634_sa.jpg\"}', 'upc' => '075992655026', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Best of Merle Haggard [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-best-of-merle-haggard-capitol-cd/449358.p?id=84576&skuId=449358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=449358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4493\\/449358.jpg\"}', 'upc' => '077779125425', 'provider' => 'bestbuy'],\n ['name' => \"Waking Up the Neighbours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waking-up-the-neighbours-cd/449820.p?id=72467&skuId=449820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=449820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4498\\/449820.jpg\"}', 'upc' => '075021536722', 'provider' => 'bestbuy'],\n ['name' => \"Late Night Grande Hotel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/late-night-grande-hotel-cd/450023.p?id=84272&skuId=450023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4500\\/450023.jpg\"}', 'upc' => '008811030629', 'provider' => 'bestbuy'],\n ['name' => \"Shut Up and Die Like an Aviator - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shut-up-and-die-like-an-aviator-cd/450069.p?id=81237&skuId=450069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4500\\/450069.jpg\"}', 'upc' => '008811031527', 'provider' => 'bestbuy'],\n ['name' => \"Best O' Boingo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-o-boingo-cd/450087.p?id=93829&skuId=450087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4500\\/450087_sa.jpg\"}', 'upc' => '008811042424', 'provider' => 'bestbuy'],\n ['name' => \"Endless Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/endless-boogie-cd/450112.p?id=85604&skuId=450112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0450\\/0450112_sa.jpg\"}', 'upc' => '008811041328', 'provider' => 'bestbuy'],\n ['name' => \"Truckin' with Albert Collins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truckin-with-albert-collins-cd/450130.p?id=78335&skuId=450130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0450\\/0450130_sa.jpg\"}', 'upc' => '008811042325', 'provider' => 'bestbuy'],\n ['name' => \"Pärt: Miserere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/part-miserere-cd/450390.p?id=2276172&skuId=450390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '781182143029', 'provider' => 'bestbuy'],\n ['name' => \"Set the Night to Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/set-the-night-to-music-cd/450489.p?id=82355&skuId=450489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4504\\/450489_sa.jpg\"}', 'upc' => '075678232121', 'provider' => 'bestbuy'],\n ['name' => \"Rechordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rechordings-cd/450568.p?id=82713&skuId=450568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0450\\/0450568_sa.jpg\"}', 'upc' => '075678229626', 'provider' => 'bestbuy'],\n ['name' => \"Act Like You Know [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/act-like-you-know-pa-cd/450666.p?id=90970&skuId=450666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=450666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0450\\/0450666_sa.jpg\"}', 'upc' => '075679173126', 'provider' => 'bestbuy'],\n ['name' => \"Lionel Hampton and the Golden Men of Jazz:... - Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lionel-hampton-and-the-golden-men-of-jazz-live-cd/451246.p?id=67141&skuId=451246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4512\\/451246_sa.jpg\"}', 'upc' => '089408330827', 'provider' => 'bestbuy'],\n ['name' => \"Blood Sugar Sex Magik [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-sugar-sex-magik-pa-cd/451317.p?id=96180&skuId=451317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0451\\/0451317_sa.jpg\"}', 'upc' => '075992668125', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Hits: The Power of Great Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-hits-the-power-of-great-music-cd/451415.p?id=86198&skuId=451415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0451\\/0451415_sa.jpg\"}', 'upc' => '075992670029', 'provider' => 'bestbuy'],\n ['name' => \"Tyranny of the Beat: Throbbing... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyranny-of-the-beat-throbbing-cd/451629.p?id=3183468&skuId=451629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4516\\/451629.jpg\"}', 'upc' => '724596123720', 'provider' => 'bestbuy'],\n ['name' => \"The Missing Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-missing-years-cd/451914.p?id=95522&skuId=451914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4519\\/451914_sa.jpg\"}', 'upc' => '094012000929', 'provider' => 'bestbuy'],\n ['name' => \"Captured Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/captured-live-cd/451978.p?id=81008&skuId=451978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=451978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0451\\/0451978_sa.jpg\"}', 'upc' => '016351439024', 'provider' => 'bestbuy'],\n ['name' => \"Three Sides to My Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-sides-to-my-story-cd/452003.p?id=79444&skuId=452003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452003_sa.jpg\"}', 'upc' => '016351438829', 'provider' => 'bestbuy'],\n ['name' => \"Johnny Adams Sings Doc Pomus: The Real Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-adams-sings-doc-pomus-the-real-me-cd/452021.p?id=72476&skuId=452021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4520\\/452021.jpg\"}', 'upc' => '011661210929', 'provider' => 'bestbuy'],\n ['name' => \"The Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-touch-cd/452101.p?id=85123&skuId=452101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452101_sa.jpg\"}', 'upc' => '014551480020', 'provider' => 'bestbuy'],\n ['name' => \"I Know It's Wrong, But I...Just Can't Do Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-know-its-wrong-but-i-just-cant-do-right-cd/452165.p?id=101250&skuId=452165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4521\\/452165_sa.jpg\"}', 'upc' => '048021746026', 'provider' => 'bestbuy'],\n ['name' => \"Ain't No Doubt About It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-no-doubt-about-it-cd/452218.p?id=80643&skuId=452218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4522\\/452218_sa.jpg\"}', 'upc' => '021257940529', 'provider' => 'bestbuy'],\n ['name' => \"The Life and Times of Country Joe & the Fish - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-life-and-times-of-country-joe-the-fish-cd/452245.p?id=78821&skuId=452245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4522\\/452245.jpg\"}', 'upc' => '015707272827', 'provider' => 'bestbuy'],\n ['name' => \"Storyville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storyville-cd/452450.p?id=96838&skuId=452450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452450_sa.jpg\"}', 'upc' => '720642430323', 'provider' => 'bestbuy'],\n ['name' => \"The Very Big Carla Bley Band [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-big-carla-bley-band-digdownload-cd/452520.p?id=2393522&skuId=452520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4525\\/452520.jpg\"}', 'upc' => '042284794220', 'provider' => 'bestbuy'],\n ['name' => \"Shake Me Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-me-up-cd/452637.p?id=89365&skuId=452637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4526\\/452637_sa.jpg\"}', 'upc' => '729592000525', 'provider' => 'bestbuy'],\n ['name' => \"Badmotorfinger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/badmotorfinger-cd/452806.p?id=99668&skuId=452806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452806_sa.jpg\"}', 'upc' => '075021537422', 'provider' => 'bestbuy'],\n ['name' => \"The Low End Theory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-low-end-theory-cd/452904.p?id=102236&skuId=452904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452904_sa.jpg\"}', 'upc' => '012414141828', 'provider' => 'bestbuy'],\n ['name' => \"Curtis Stigers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/curtis-stigers-cd/452940.p?id=240736&skuId=452940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=452940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0452\\/0452940_sa.jpg\"}', 'upc' => '078221866026', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Righteous Brothers, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-righteous-brothers-vol-2-cd/453324.p?id=96699&skuId=453324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=453324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4533\\/453324.jpg\"}', 'upc' => '715187752221', 'provider' => 'bestbuy'],\n ['name' => \"Street Corner Talking - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-corner-talking-cd/453823.p?id=97969&skuId=453823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=453823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4538\\/453823.jpg\"}', 'upc' => '042284401821', 'provider' => 'bestbuy'],\n ['name' => \"Hellbound Train - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hellbound-train-cd/453832.p?id=97958&skuId=453832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=453832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0453\\/0453832_sa.jpg\"}', 'upc' => '042284401920', 'provider' => 'bestbuy'],\n ['name' => \"Burnin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burnin-cd/453869.p?id=88553&skuId=453869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=453869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4538\\/453869_sa.jpg\"}', 'upc' => '008811043926', 'provider' => 'bestbuy'],\n ['name' => \"Shadows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shadows-cd/454038.p?id=64159&skuId=454038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4540\\/454038_sa.jpg\"}', 'upc' => '011105965422', 'provider' => 'bestbuy'],\n ['name' => \"Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stars-cd/454163.p?id=98822&skuId=454163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0454\\/0454163_sa.jpg\"}', 'upc' => '075679177322', 'provider' => 'bestbuy'],\n ['name' => \"Memorabilia: Singles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorabilia-singles-cd/454519.p?id=99378&skuId=454519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4545\\/454519_sa.jpg\"}', 'upc' => '731451017827', 'provider' => 'bestbuy'],\n ['name' => \"Don't Go Near the Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-go-near-the-water-cd/454555.p?id=87779&skuId=454555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4545\\/454555.jpg\"}', 'upc' => '731451016127', 'provider' => 'bestbuy'],\n ['name' => \"Put Me In Your Mix - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/put-me-in-your-mix-cd/454706.p?id=1386497&skuId=454706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4547\\/454706_sa.jpg\"}', 'upc' => '075021537729', 'provider' => 'bestbuy'],\n ['name' => \"Apocalypse 91...The Enemy Strikes Black [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apocalypse-91-the-enemy-strikes-black-pa-cd/454840.p?id=95630&skuId=454840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0454\\/0454840_sa.jpg\"}', 'upc' => '731452347923', 'provider' => 'bestbuy'],\n ['name' => \"Essence Of Billie Holiday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essence-of-billie-holiday-cd/454957.p?id=67525&skuId=454957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=454957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0454\\/0454957_sa.jpg\"}', 'upc' => '074644791723', 'provider' => 'bestbuy'],\n ['name' => \"24 Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-nights-cd/455108.p?id=77886&skuId=455108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=455108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0455\\/0455108_sa.jpg\"}', 'upc' => '075992642026', 'provider' => 'bestbuy'],\n ['name' => \"Naughty By Nature - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naughty-by-nature-cd/455661.p?id=92904&skuId=455661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=455661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4556\\/455661_sa.jpg\"}', 'upc' => '016998104422', 'provider' => 'bestbuy'],\n ['name' => \"Weld - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weld-cd/455929.p?id=105078&skuId=455929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=455929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0455\\/0455929_sa.jpg\"}', 'upc' => '075992667128', 'provider' => 'bestbuy'],\n ['name' => \"Day Parts: Sunday Morning Coffee - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-parts-sunday-morning-coffee-cd-various/456492.p?id=79897&skuId=456492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=456492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0456\\/0456492_sa.jpg\"}', 'upc' => '012805010023', 'provider' => 'bestbuy'],\n ['name' => \"The Bells of Dublin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bells-of-dublin-cd/456722.p?id=77485&skuId=456722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=456722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0456\\/0456722_sa.jpg\"}', 'upc' => '090266082421', 'provider' => 'bestbuy'],\n ['name' => \"Streets: A Rock Opera - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/streets-a-rock-opera-cd/457552.p?id=97951&skuId=457552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=457552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0457\\/0457552_sa.jpg\"}', 'upc' => '075678232022', 'provider' => 'bestbuy'],\n ['name' => \"Private Line - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-line-cd/457598.p?id=89110&skuId=457598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=457598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4575\\/457598_sa.jpg\"}', 'upc' => '075679177728', 'provider' => 'bestbuy'],\n ['name' => \"The Earl Klugh Trio, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-earl-klugh-trio-vol-1-cd/457927.p?id=68300&skuId=457927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=457927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0457\\/0457927_sa.jpg\"}', 'upc' => '075992675024', 'provider' => 'bestbuy'],\n ['name' => \"Live Killers [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-killers-ecd-cd/457954.p?id=95708&skuId=457954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=457954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0457\\/0457954_sa.jpg\"}', 'upc' => '720616106629', 'provider' => 'bestbuy'],\n ['name' => \"Singer/Songwriter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singer-songwriter-cd/458034.p?id=88438&skuId=458034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0458\\/0458034_sa.jpg\"}', 'upc' => '074644862126', 'provider' => 'bestbuy'],\n ['name' => \"Better Together: The Duet Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/better-together-the-duet-album-cd/458043.p?id=90788&skuId=458043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4580\\/458043.jpg\"}', 'upc' => '074644798227', 'provider' => 'bestbuy'],\n ['name' => \"Live Your Life Be Free - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-your-life-be-free-cd/458114.p?id=3454937&skuId=458114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '008811044626', 'provider' => 'bestbuy'],\n ['name' => \"And Along Came Jones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/and-along-came-jones-cd/458187.p?id=87230&skuId=458187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4581\\/458187_sa.jpg\"}', 'upc' => '008811039820', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Missing Persons [1987] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-missing-persons-1987-cd/458374.p?id=91892&skuId=458374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0458\\/0458374_sa.jpg\"}', 'upc' => '077774662826', 'provider' => 'bestbuy'],\n ['name' => \"Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collection-cd/458383.p?id=70571&skuId=458383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0458\\/0458383_sa.jpg\"}', 'upc' => '011105965828', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-music-cd/458436.p?id=1366588&skuId=458436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=458436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0458\\/0458436_sa.jpg\"}', 'upc' => '762185114223', 'provider' => 'bestbuy'],\n ['name' => \"With My Lover Beside Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-my-lover-beside-me-cd/459890.p?id=72149&skuId=459890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=459890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0459\\/0459890_sa.jpg\"}', 'upc' => '074644866520', 'provider' => 'bestbuy'],\n ['name' => \"All Time Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-best-of-cd/459925.p?id=63750&skuId=459925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=459925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0459\\/0459925_sa.jpg\"}', 'upc' => '715187733923', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/459961.p?id=75568&skuId=459961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=459961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4599\\/459961.jpg\"}', 'upc' => '715187729827', 'provider' => 'bestbuy'],\n ['name' => \"Best of Sammy Davis, Jr. [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-sammy-davis-jr-curb-cd/459970.p?id=79809&skuId=459970&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=459970', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4599\\/459970.jpg\"}', 'upc' => '715187744424', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Exile [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-exile-curb-cd/459989.p?id=81803&skuId=459989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=459989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4599\\/459989.jpg\"}', 'upc' => '715187729629', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/460003.p?id=83814&skuId=460003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4600\\/460003.jpg\"}', 'upc' => '715187732728', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Robert Goulet [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-robert-goulet-curb-cd/460012.p?id=83998&skuId=460012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4600\\/460012.jpg\"}', 'upc' => '715187725720', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/460021.p?id=85982&skuId=460021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460021_sa.jpg\"}', 'upc' => '715187734128', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/460030.p?id=86398&skuId=460030&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460030', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460030_sa.jpg\"}', 'upc' => '715187733329', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-country-hits-cd/460049.p?id=87238&skuId=460049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4600\\/460049_sa.jpg\"}', 'upc' => '715187736924', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/460101.p?id=87347&skuId=460101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4601\\/460101.jpg\"}', 'upc' => '715187732421', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/460110.p?id=90360&skuId=460110&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460110', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4601\\/460110_sa.jpg\"}', 'upc' => '715187736320', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/460138.p?id=91186&skuId=460138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460138_sa.jpg\"}', 'upc' => '715187733725', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-country-cd/460147.p?id=92634&skuId=460147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4601\\/460147.jpg\"}', 'upc' => '715187733626', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-songs-cd/460156.p?id=93010&skuId=460156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4601\\/460156.jpg\"}', 'upc' => '715187736627', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/460165.p?id=95410&skuId=460165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4601\\/460165_sa.jpg\"}', 'upc' => '715187730526', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/460174.p?id=96095&skuId=460174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4601\\/460174.jpg\"}', 'upc' => '715187736429', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/460192.p?id=98115&skuId=460192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4601\\/460192.jpg\"}', 'upc' => '715187725522', 'provider' => 'bestbuy'],\n ['name' => \"Best of Dinah Shore [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-dinah-shore-curb-cd/460209.p?id=98639&skuId=460209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4602\\/460209.jpg\"}', 'upc' => '715187745926', 'provider' => 'bestbuy'],\n ['name' => \"Music That You Can Dance To - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-that-you-can-dance-to-cd/460218.p?id=99791&skuId=460218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4602\\/460218.jpg\"}', 'upc' => '715187733527', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/460227.p?id=101683&skuId=460227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4602\\/460227_sa.jpg\"}', 'upc' => '715187732926', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/460236.p?id=102511&skuId=460236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4602\\/460236.jpg\"}', 'upc' => '715187733220', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/460245.p?id=105045&skuId=460245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4602\\/460245.jpg\"}', 'upc' => '715187733428', 'provider' => 'bestbuy'],\n ['name' => \"Simply the Best - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simply-the-best-cd/460414.p?id=102526&skuId=460414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460414_sa.jpg\"}', 'upc' => '077779715220', 'provider' => 'bestbuy'],\n ['name' => \"Spontaneous Inventions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spontaneous-inventions-cd/460487.p?id=68918&skuId=460487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4604\\/460487_sa.jpg\"}', 'upc' => '077774629829', 'provider' => 'bestbuy'],\n ['name' => \"The Other Side of Round Midnight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-side-of-round-midnight-cd/460496.p?id=66846&skuId=460496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460496_sa.jpg\"}', 'upc' => '077774639729', 'provider' => 'bestbuy'],\n ['name' => \"Babes in the Wood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/babes-in-the-wood-cd/460502.p?id=243677&skuId=460502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460502_sa.jpg\"}', 'upc' => '739341000324', 'provider' => 'bestbuy'],\n ['name' => \"Home For Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-for-christmas-cd/460575.p?id=93692&skuId=460575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4605\\/460575.jpg\"}', 'upc' => '077779642021', 'provider' => 'bestbuy'],\n ['name' => \"Can't Slow Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-slow-down-cd/460646.p?id=96629&skuId=460646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460646_sa.jpg\"}', 'upc' => '737463605922', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Herbie Hancock: The Blue Note Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-herbie-hancock-the-blue-note-years-cd/460762.p?id=67144&skuId=460762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4607\\/460762_sa.jpg\"}', 'upc' => '077779114221', 'provider' => 'bestbuy'],\n ['name' => \"Essential - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-cd/460824.p?id=88390&skuId=460824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=460824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0460\\/0460824_sa.jpg\"}', 'upc' => '094632185228', 'provider' => 'bestbuy'],\n ['name' => \"Two Rooms: Celebrating the Songs of Elton... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-rooms-celebrating-the-songs-of-elton-cd-various/461057.p?id=87099&skuId=461057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461057_sa.jpg\"}', 'upc' => '042284575027', 'provider' => 'bestbuy'],\n ['name' => \"20 All-Time Greatest Hits! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-all-time-greatest-hits-cd/461093.p?id=75941&skuId=461093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4610\\/461093_sa.jpg\"}', 'upc' => '731451132629', 'provider' => 'bestbuy'],\n ['name' => \"A Decade of Hits 1969-1979 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-decade-of-hits-1969-1979-cd/461119.p?id=72771&skuId=461119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461119_sa.jpg\"}', 'upc' => '731451115622', 'provider' => 'bestbuy'],\n ['name' => \"Wolf In Sheep'S Clothing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wolf-in-sheeps-clothing-cd/461182.p?id=2387418&skuId=461182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461182_sa.jpg\"}', 'upc' => '042284836821', 'provider' => 'bestbuy'],\n ['name' => \"Lady in Autumn: The Best of the Verve Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lady-in-autumn-the-best-of-the-verve-years-cd/461315.p?id=2389788&skuId=461315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461315_sa.jpg\"}', 'upc' => '042284943420', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Platters [Mercury] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-platters-mercury-cd/461333.p?id=95057&skuId=461333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4613\\/461333.jpg\"}', 'upc' => '731451031724', 'provider' => 'bestbuy'],\n ['name' => \"Loveless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loveless-cd/461609.p?id=92723&skuId=461609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4616\\/461609_sa.jpg\"}', 'upc' => '075992675925', 'provider' => 'bestbuy'],\n ['name' => \"Dance, Dance, Dance: The Best of Chic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-dance-dance-the-best-of-chic-cd/461725.p?id=77423&skuId=461725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461725_sa.jpg\"}', 'upc' => '075678233326', 'provider' => 'bestbuy'],\n ['name' => \"The Beat Goes On: The Best of Sonny & Cher - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-beat-goes-on-the-best-of-sonny-cher-cd/461734.p?id=99470&skuId=461734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461734_sa.jpg\"}', 'upc' => '075679179623', 'provider' => 'bestbuy'],\n ['name' => \"Heather Mullen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heather-mullen-cd/461770.p?id=92587&skuId=461770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461770_sa.jpg\"}', 'upc' => '075679179128', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-me-cd/461841.p?id=95455&skuId=461841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461841_sa.jpg\"}', 'upc' => '077778625926', 'provider' => 'bestbuy'],\n ['name' => \"Stolen Moments - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stolen-moments-cd/461903.p?id=2416891&skuId=461903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0461\\/0461903_sa.jpg\"}', 'upc' => '077779715923', 'provider' => 'bestbuy'],\n ['name' => \"She Hangs Brightly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-hangs-brightly-cd/461921.p?id=90950&skuId=461921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=461921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4619\\/461921_sa.jpg\"}', 'upc' => '077779650828', 'provider' => 'bestbuy'],\n ['name' => \"Discography: The Complete Singles Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/discography-the-complete-singles-collection-cd/462001.p?id=94764&skuId=462001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0462\\/0462001_sa.jpg\"}', 'upc' => '077779709724', 'provider' => 'bestbuy'],\n ['name' => \"Hooker 'n Heat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooker-n-heat-cd/462065.p?id=85611&skuId=462065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4620\\/462065_sa.jpg\"}', 'upc' => '077779789627', 'provider' => 'bestbuy'],\n ['name' => \"Songs of Rodeo Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-rodeo-life-cd/462289.p?id=88920&skuId=462289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4622\\/462289.jpg\"}', 'upc' => '077779687527', 'provider' => 'bestbuy'],\n ['name' => \"Dream Letter: Live in London 1968 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-letter-live-in-london-1968-cd/462476.p?id=76216&skuId=462476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0462\\/0462476_sa.jpg\"}', 'upc' => '767004070322', 'provider' => 'bestbuy'],\n ['name' => \"Your Favorite Songs - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/your-favorite-songs-cd-various/462485.p?id=105122&skuId=462485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4624\\/462485.jpg\"}', 'upc' => '715187753228', 'provider' => 'bestbuy'],\n ['name' => \"All Time Greatest Rock N Roll, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-rock-n-roll-vol-2-cd-various/462500.p?id=96917&skuId=462500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0462\\/0462500_sa.jpg\"}', 'upc' => '715187752528', 'provider' => 'bestbuy'],\n ['name' => \"Beguiled - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beguiled-cd/462626.p?id=100531&skuId=462626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4626\\/462626.jpg\"}', 'upc' => '025041102728', 'provider' => 'bestbuy'],\n ['name' => \"Gaudi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gaudi-cd/462635.p?id=96612&skuId=462635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0462\\/0462635_sa.jpg\"}', 'upc' => '025041102827', 'provider' => 'bestbuy'],\n ['name' => \"Dance of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-of-love-cd/462715.p?id=85375&skuId=462715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4627\\/462715.jpg\"}', 'upc' => '063961518120', 'provider' => 'bestbuy'],\n ['name' => \"Angel Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angel-baby-cd/462724.p?id=73037&skuId=462724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4627\\/462724.jpg\"}', 'upc' => '063961518328', 'provider' => 'bestbuy'],\n ['name' => \"The Infidel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-infidel-cd/462742.p?id=80820&skuId=462742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4627\\/462742_sa.jpg\"}', 'upc' => '016581713628', 'provider' => 'bestbuy'],\n ['name' => \"Pablo Meets Mr. Bassie: Original Rockers, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pablo-meets-mr-bassie-original-rockers-vol-2-cd/462877.p?id=94251&skuId=462877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4628\\/462877_sa.jpg\"}', 'upc' => '016351438522', 'provider' => 'bestbuy'],\n ['name' => \"The Roots Is There - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-roots-is-there-cd/462886.p?id=91668&skuId=462886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4628\\/462886_sa.jpg\"}', 'upc' => '016351430922', 'provider' => 'bestbuy'],\n ['name' => \"Country Blues Bottleneck Guitar Classics:... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-blues-bottleneck-guitar-classics-cd-various/462902.p?id=180680&skuId=462902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4629\\/462902_sa.jpg\"}', 'upc' => '016351012623', 'provider' => 'bestbuy'],\n ['name' => \"Signature - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/signature-cd/462920.p?id=2389930&skuId=462920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=462920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0462\\/0462920_sa.jpg\"}', 'upc' => '014551480129', 'provider' => 'bestbuy'],\n ['name' => \"Ramblin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ramblin-cd/463000.p?id=104182&skuId=463000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4630\\/463000_sa.jpg\"}', 'upc' => '093074004227', 'provider' => 'bestbuy'],\n ['name' => \"That Was Then-This Is Now! [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-was-then-this-is-now-pa-cd/463055.p?id=167509&skuId=463055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0463\\/0463055_sa.jpg\"}', 'upc' => '054291881626', 'provider' => 'bestbuy'],\n ['name' => \"A Charlie Brown Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-charlie-brown-christmas-cd/463064.p?id=67029&skuId=463064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0463\\/0463064_sa.jpg\"}', 'upc' => '025218843126', 'provider' => 'bestbuy'],\n ['name' => \"David Grisman's Acoustic Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/david-grismans-acoustic-christmas-cd/463108.p?id=84290&skuId=463108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0463\\/0463108_sa.jpg\"}', 'upc' => '011661019027', 'provider' => 'bestbuy'],\n ['name' => \"I Ain't Studdi' You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-aint-studdi-you-cd/463153.p?id=97572&skuId=463153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4631\\/463153.jpg\"}', 'upc' => '019011411729', 'provider' => 'bestbuy'],\n ['name' => \"Live from Chicago Mr. Superharp Himself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-chicago-mr-superharp-himself-cd/463171.p?id=78790&skuId=463171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4631\\/463171_sa.jpg\"}', 'upc' => '014551474623', 'provider' => 'bestbuy'],\n ['name' => \"Third Degree - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-degree-cd/463180.p?id=104517&skuId=463180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4631\\/463180.jpg\"}', 'upc' => '014551474821', 'provider' => 'bestbuy'],\n ['name' => \"Genuine Houserockin Blues 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-houserockin-blues-2-cd-various/463199.p?id=1416337&skuId=463199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4631\\/463199.jpg\"}', 'upc' => '014551010227', 'provider' => 'bestbuy'],\n ['name' => \"Genuine Houserockin' Music, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-houserockin-music-vol-3-cd-various/463206.p?id=75289&skuId=463206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4632\\/463206.jpg\"}', 'upc' => '014551010326', 'provider' => 'bestbuy'],\n ['name' => \"Genuine Houserockin' Music, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-houserockin-music-vol-4-cd-various/463215.p?id=75290&skuId=463215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4632\\/463215.jpg\"}', 'upc' => '014551010425', 'provider' => 'bestbuy'],\n ['name' => \"While We Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/while-we-live-cd/463242.p?id=98035&skuId=463242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4632\\/463242_sa.jpg\"}', 'upc' => '033651004523', 'provider' => 'bestbuy'],\n ['name' => \"Pain in My Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pain-in-my-heart-cd/463849.p?id=96228&skuId=463849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4638\\/463849_sa.jpg\"}', 'upc' => '075678025327', 'provider' => 'bestbuy'],\n ['name' => \"Comfort Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comfort-me-cd/463910.p?id=101709&skuId=463910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4639\\/463910.jpg\"}', 'upc' => '075678032929', 'provider' => 'bestbuy'],\n ['name' => \"Double Dynamite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-dynamite-cd/463938.p?id=97788&skuId=463938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=463938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4639\\/463938.jpg\"}', 'upc' => '075678030529', 'provider' => 'bestbuy'],\n ['name' => \"Lynyrd Skynyrd [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lynyrd-skynyrd-box-cd/464928.p?id=90004&skuId=464928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=464928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4649\\/464928_sa.jpg\"}', 'upc' => '008811039028', 'provider' => 'bestbuy'],\n ['name' => \"Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-cd/464982.p?id=100271&skuId=464982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=464982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4649\\/464982_sa.jpg\"}', 'upc' => '008811038724', 'provider' => 'bestbuy'],\n ['name' => \"Return to the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-to-the-heart-cd/465053.p?id=88652&skuId=465053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=465053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4650\\/465053.jpg\"}', 'upc' => '083616400525', 'provider' => 'bestbuy'],\n ['name' => \"Walt Disney's Fantasia [Original Soundtrack] - CD - Remastered Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walt-disneys-fantasia-original-soundtrack-cd-remastered-original-soundtrack/465240.p?id=3558067&skuId=465240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=465240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0465\\/0465240_sa.jpg\"}', 'upc' => '050086000777', 'provider' => 'bestbuy'],\n ['name' => \"Otello - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otello-cd/466016.p?id=1682209&skuId=466016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4660\\/466016.jpg\"}', 'upc' => '028943366922', 'provider' => 'bestbuy'],\n ['name' => \"Keep It Comin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-it-comin-cd/466276.p?id=100962&skuId=466276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466276_sa.jpg\"}', 'upc' => '075596121620', 'provider' => 'bestbuy'],\n ['name' => \"The Songstress - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-songstress-cd/466356.p?id=73745&skuId=466356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4663\\/466356_sa.jpg\"}', 'upc' => '075596111621', 'provider' => 'bestbuy'],\n ['name' => \"The Works [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-works-bonus-tracks-cd/466374.p?id=95718&skuId=466374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4663\\/466374_sa.jpg\"}', 'upc' => '720616123329', 'provider' => 'bestbuy'],\n ['name' => \"Kick Out The Jams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kick-out-the-jams-cd/466409.p?id=2116997&skuId=466409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466409_sa.jpg\"}', 'upc' => '075596089425', 'provider' => 'bestbuy'],\n ['name' => \"Shepherd Moons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shepherd-moons-cd/466454.p?id=81639&skuId=466454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466454_sa.jpg\"}', 'upc' => '075992677523', 'provider' => 'bestbuy'],\n ['name' => \"Back Home Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-home-again-cd/466542.p?id=97123&skuId=466542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466542_sa.jpg\"}', 'upc' => '075992674027', 'provider' => 'bestbuy'],\n ['name' => \"Arc - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arc-cd/466622.p?id=105076&skuId=466622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466622_sa.jpg\"}', 'upc' => '075992676922', 'provider' => 'bestbuy'],\n ['name' => \"Commitments (Original Artists Recordings of... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/commitments-original-artists-recordings-of-cd-various/466659.p?id=78444&skuId=466659&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4666\\/466659_sa.jpg\"}', 'upc' => '075679181329', 'provider' => 'bestbuy'],\n ['name' => \"Sticks and Stones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sticks-and-stones-cd/466695.p?id=88827&skuId=466695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4666\\/466695_sa.jpg\"}', 'upc' => '075678232626', 'provider' => 'bestbuy'],\n ['name' => \"Live at Birdland West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-birdland-west-cd/466711.p?id=63587&skuId=466711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466711_sa.jpg\"}', 'upc' => '075678233425', 'provider' => 'bestbuy'],\n ['name' => \"The Music of Andrew Lloyd Webber - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-of-andrew-lloyd-webber-cd/466748.p?id=79113&skuId=466748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466748_sa.jpg\"}', 'upc' => '075678234729', 'provider' => 'bestbuy'],\n ['name' => \"Natural Selection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/natural-selection-cd/466766.p?id=92899&skuId=466766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4667\\/466766.jpg\"}', 'upc' => '075679178725', 'provider' => 'bestbuy'],\n ['name' => \"2Pacalypse Now [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2pacalypse-now-pa-cd/466784.p?id=102648&skuId=466784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466784_sa.jpg\"}', 'upc' => '012414163325', 'provider' => 'bestbuy'],\n ['name' => \"Once More...With Feeling! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-more-with-feeling-cd/466926.p?id=70775&skuId=466926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=466926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0466\\/0466926_sa.jpg\"}', 'upc' => '051617440529', 'provider' => 'bestbuy'],\n ['name' => \"The Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-collection-cd/467266.p?id=78309&skuId=467266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=467266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4672\\/467266_sa.jpg\"}', 'upc' => '077774661928', 'provider' => 'bestbuy'],\n ['name' => \"The Best of George Harrison - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-george-harrison-cd/467275.p?id=84873&skuId=467275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=467275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0467\\/0467275_sa.jpg\"}', 'upc' => '077774668224', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits Live [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-live-capitol-cd/467300.p?id=73615&skuId=467300&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=467300', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4673\\/467300.jpg\"}', 'upc' => '715187732827', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits of Maze Featuring Frankie... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-of-maze-featuring-frankie-cd/467328.p?id=90927&skuId=467328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=467328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4673\\/467328_sa.jpg\"}', 'upc' => '077779281022', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Collection (1948-1990) [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-collection-1948-1990-box-cd/468023.p?id=85629&skuId=468023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0468\\/0468023_sa.jpg\"}', 'upc' => '081227057220', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bob Welch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bob-welch-cd/468069.p?id=103746&skuId=468069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0468\\/0468069_sa.jpg\"}', 'upc' => '081227059729', 'provider' => 'bestbuy'],\n ['name' => \"Mardi Gras in Baton Rouge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mardi-gras-in-baton-rouge-cd/468078.p?id=95567&skuId=468078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4680\\/468078_sa.jpg\"}', 'upc' => '081227073626', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Lightning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-lightning-cd/468372.p?id=76040&skuId=468372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4683\\/468372_sa.jpg\"}', 'upc' => '014551471424', 'provider' => 'bestbuy'],\n ['name' => \"Crawfish Fiesta - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crawfish-fiesta-cd/468381.p?id=95562&skuId=468381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4683\\/468381.jpg\"}', 'upc' => '014551471820', 'provider' => 'bestbuy'],\n ['name' => \"Live in Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-japan-cd/468390.p?id=78332&skuId=468390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0468\\/0468390_sa.jpg\"}', 'upc' => '014551473329', 'provider' => 'bestbuy'],\n ['name' => \"High Compression - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-compression-cd/468425.p?id=3370629&skuId=468425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4684\\/468425_sa.jpg\"}', 'upc' => '014551473725', 'provider' => 'bestbuy'],\n ['name' => \"Strike Like Lightning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strike-like-lightning-cd/468434.p?id=90072&skuId=468434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4684\\/468434_sa.jpg\"}', 'upc' => '014551473923', 'provider' => 'bestbuy'],\n ['name' => \"When a Guitar Plays the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-a-guitar-plays-the-blues-cd/468443.p?id=76200&skuId=468443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4684\\/468443.jpg\"}', 'upc' => '014551474128', 'provider' => 'bestbuy'],\n ['name' => \"Serious Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serious-business-cd/468452.p?id=104512&skuId=468452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4684\\/468452_sa.jpg\"}', 'upc' => '014551474227', 'provider' => 'bestbuy'],\n ['name' => \"Second Sight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-sight-cd/468461.p?id=90071&skuId=468461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4684\\/468461_sa.jpg\"}', 'upc' => '014551475026', 'provider' => 'bestbuy'],\n ['name' => \"Smiling Phases: Best Of 1967-1974 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smiling-phases-best-of-1967-1974-cd/468559.p?id=1531713&skuId=468559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4685\\/468559_sa.jpg\"}', 'upc' => '731451055324', 'provider' => 'bestbuy'],\n ['name' => \"Laughing Stock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laughing-stock-cd/468657.p?id=101123&skuId=468657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0468\\/0468657_sa.jpg\"}', 'upc' => '042284771726', 'provider' => 'bestbuy'],\n ['name' => \"Frankie and Johnny - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frankie-and-johnny-cd-original-soundtrack/468835.p?id=82889&skuId=468835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0468\\/0468835_sa.jpg\"}', 'upc' => '715187753426', 'provider' => 'bestbuy'],\n ['name' => \"Por Fin Juntos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/por-fin-juntos-cd/468871.p?id=80727&skuId=468871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=468871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4688\\/468871.jpg\"}', 'upc' => '077774262422', 'provider' => 'bestbuy'],\n ['name' => \"From Time to Time: The Singles Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-time-to-time-the-singles-collection-cd/469004.p?id=105084&skuId=469004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0469\\/0469004_sa.jpg\"}', 'upc' => '074644882926', 'provider' => 'bestbuy'],\n ['name' => \"Romance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romance-cd/469120.p?id=1373933&skuId=469120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0469\\/0469120_sa.jpg\"}', 'upc' => '090317580524', 'provider' => 'bestbuy'],\n ['name' => \"Monty Python Sings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monty-python-sings-cd/469246.p?id=92156&skuId=469246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4692\\/469246_sa.jpg\"}', 'upc' => '077778625322', 'provider' => 'bestbuy'],\n ['name' => \"Knocking at Your Back Door: The Best of Deep... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/knocking-at-your-back-door-the-best-of-deep-cd/469273.p?id=1811413&skuId=469273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0469\\/0469273_sa.jpg\"}', 'upc' => '731451143823', 'provider' => 'bestbuy'],\n ['name' => \"The Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-collection-cd/469308.p?id=90284&skuId=469308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4693\\/469308_sa.jpg\"}', 'upc' => '042284927123', 'provider' => 'bestbuy'],\n ['name' => \"Live from Chicago - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-chicago-cd/469362.p?id=3331231&skuId=469362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0469\\/0469362_sa.jpg\"}', 'upc' => '014551475422', 'provider' => 'bestbuy'],\n ['name' => \"Hot Wires - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-wires-cd/469399.p?id=76191&skuId=469399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4693\\/469399.jpg\"}', 'upc' => '014551475620', 'provider' => 'bestbuy'],\n ['name' => \"Edge of the City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edge-of-the-city-cd/469406.p?id=88152&skuId=469406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4694\\/469406.jpg\"}', 'upc' => '014551475828', 'provider' => 'bestbuy'],\n ['name' => \"Live from Chicago - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-chicago-cd/469415.p?id=76035&skuId=469415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0469\\/0469415_sa.jpg\"}', 'upc' => '014551475927', 'provider' => 'bestbuy'],\n ['name' => \"The Swamp Boogie Queen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-swamp-boogie-queen-cd/469424.p?id=103716&skuId=469424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=469424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4694\\/469424.jpg\"}', 'upc' => '014551476627', 'provider' => 'bestbuy'],\n ['name' => \"Portrait of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-of-the-blues-cd/470662.p?id=74996&skuId=470662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0470\\/0470662_sa.jpg\"}', 'upc' => '048021745821', 'provider' => 'bestbuy'],\n ['name' => \"The Best Part of the Fat Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-part-of-the-fat-boys-cd/470797.p?id=1365886&skuId=470797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '019011411828', 'provider' => 'bestbuy'],\n ['name' => \"Stuck on You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stuck-on-you-cd/470877.p?id=2390062&skuId=470877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0470\\/0470877_sa.jpg\"}', 'upc' => '715776889321', 'provider' => 'bestbuy'],\n ['name' => \"Alone & Acoustic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-acoustic-cd/470902.p?id=84490&skuId=470902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4709\\/470902.jpg\"}', 'upc' => '014551480228', 'provider' => 'bestbuy'],\n ['name' => \"No Foolin'! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-foolin-cd/470911.p?id=103715&skuId=470911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4709\\/470911.jpg\"}', 'upc' => '014551480327', 'provider' => 'bestbuy'],\n ['name' => \"Fine and Mellow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fine-and-mellow-cd/470966.p?id=75983&skuId=470966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=470966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0470\\/0470966_sa.jpg\"}', 'upc' => '025218966320', 'provider' => 'bestbuy'],\n ['name' => \"This Is Big Audio Dynamite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-big-audio-dynamite-cd/471000.p?id=74583&skuId=471000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0471\\/0471000_sa.jpg\"}', 'upc' => '074644022025', 'provider' => 'bestbuy'],\n ['name' => \"Bleach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-cd/471055.p?id=93414&skuId=471055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4710\\/471055_sa.jpg\"}', 'upc' => '098787003420', 'provider' => 'bestbuy'],\n ['name' => \"Original Dueling Banjos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-dueling-banjos-cd/471233.p?id=287311&skuId=471233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0471\\/0471233_sa.jpg\"}', 'upc' => '027297490024', 'provider' => 'bestbuy'],\n ['name' => \"Boomtown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boomtown-cd/471590.p?id=79825&skuId=471590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0471\\/0471590_sa.jpg\"}', 'upc' => '075021513426', 'provider' => 'bestbuy'],\n ['name' => \"Seven Year Itch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven-year-itch-cd/471616.p?id=86635&skuId=471616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4716\\/471616_sa.jpg\"}', 'upc' => '042284265522', 'provider' => 'bestbuy'],\n ['name' => \"A Very Special Christmas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-very-special-christmas-cd-various/471947.p?id=77621&skuId=471947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4719\\/471947_sa.jpg\"}', 'upc' => '075021391123', 'provider' => 'bestbuy'],\n ['name' => \"Reckless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reckless-cd/471965.p?id=72465&skuId=471965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=471965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4719\\/471965.jpg\"}', 'upc' => '075021501324', 'provider' => 'bestbuy'],\n ['name' => \"Chicken, Gravy and Biscuits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicken-gravy-and-biscuits-cd/472401.p?id=89269&skuId=472401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0472\\/0472401_sa.jpg\"}', 'upc' => '014551477228', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/472731.p?id=73018&skuId=472731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4727\\/472731.jpg\"}', 'upc' => '077779407828', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/472768.p?id=82750&skuId=472768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4727\\/472768.jpg\"}', 'upc' => '077779319725', 'provider' => 'bestbuy'],\n ['name' => \"The Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-capitol-collectors-series-cd/472777.p?id=91444&skuId=472777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0472\\/0472777_sa.jpg\"}', 'upc' => '077779212521', 'provider' => 'bestbuy'],\n ['name' => \"The Capitol Collector's Series - CASSETTE\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-capitol-collectors-series-cassette/472802.p?id=286555&skuId=472802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0472\\/0472802_sa.jpg\"}', 'upc' => '762185181744', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-1-cd/472900.p?id=82760&skuId=472900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0472\\/0472900_sa.jpg\"}', 'upc' => '081227059422', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/472928.p?id=82761&skuId=472928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=472928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4729\\/472928_sa.jpg\"}', 'upc' => '081227059521', 'provider' => 'bestbuy'],\n ['name' => \"The Hermit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hermit-cd/473222.p?id=323585&skuId=473222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4732\\/473222_sa.jpg\"}', 'upc' => '016351971425', 'provider' => 'bestbuy'],\n ['name' => \"Airs and Graces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/airs-and-graces-cd/473277.p?id=101077&skuId=473277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4732\\/473277_sa.jpg\"}', 'upc' => '016351795526', 'provider' => 'bestbuy'],\n ['name' => \"Bandwagonesque - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bandwagonesque-cd/473295.p?id=101333&skuId=473295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4732\\/473295.jpg\"}', 'upc' => '720642446126', 'provider' => 'bestbuy'],\n ['name' => \"Ten Strait Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ten-strait-hits-cd/473339.p?id=1540124&skuId=473339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0473\\/0473339_sa.jpg\"}', 'upc' => '008811045029', 'provider' => 'bestbuy'],\n ['name' => \"Juice [PA] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juice-pa-cd-original-soundtrack/473384.p?id=87489&skuId=473384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4733\\/473384.jpg\"}', 'upc' => '008811046224', 'provider' => 'bestbuy'],\n ['name' => \"Masters of the Delta Blues: The Friends of... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masters-of-the-delta-blues-the-friends-of-cd-various/473400.p?id=94528&skuId=473400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4734\\/473400_sa.jpg\"}', 'upc' => '016351020222', 'provider' => 'bestbuy'],\n ['name' => \"Black Melodies on a Clear Afternoon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-melodies-on-a-clear-afternoon-cd/473419.p?id=84312&skuId=473419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4734\\/473419_sa.jpg\"}', 'upc' => '016351981127', 'provider' => 'bestbuy'],\n ['name' => \"Do That Guitar Rag (1928-1935) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-that-guitar-rag-1928-1935-cd/473455.p?id=156042&skuId=473455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0473\\/0473455_sa.jpg\"}', 'upc' => '016351013521', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/473464.p?id=91318&skuId=473464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0473\\/0473464_sa.jpg\"}', 'upc' => '016351431523', 'provider' => 'bestbuy'],\n ['name' => \"Fried Green Tomatoes [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fried-green-tomatoes-original-soundtrack-cd-original-soundtrack/473721.p?id=82986&skuId=473721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=473721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4737\\/473721_sa.jpg\"}', 'upc' => '008811046125', 'provider' => 'bestbuy'],\n ['name' => \"Copperhead Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/copperhead-road-cd/474132.p?id=81232&skuId=474132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=474132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0474\\/0474132_sa.jpg\"}', 'upc' => '039405000728', 'provider' => 'bestbuy'],\n ['name' => \"DJ Laz featuring Mami El Negro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-laz-featuring-mami-el-negro-cd/474597.p?id=167515&skuId=474597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=474597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4745\\/474597.jpg\"}', 'upc' => '054291881725', 'provider' => 'bestbuy'],\n ['name' => \"Crosscut Saw: Albert King in San Francisco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crosscut-saw-albert-king-in-san-francisco-cd/474631.p?id=87881&skuId=474631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=474631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0474\\/0474631_sa.jpg\"}', 'upc' => '025218857123', 'provider' => 'bestbuy'],\n ['name' => \"Dirt Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirt-road-cd/474800.p?id=97983&skuId=474800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=474800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4748\\/474800.jpg\"}', 'upc' => '715187757523', 'provider' => 'bestbuy'],\n ['name' => \"Foxbase Alpha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foxbase-alpha-cd/475471.p?id=97737&skuId=475471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=475471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4754\\/475471_sa.jpg\"}', 'upc' => '075992679329', 'provider' => 'bestbuy'],\n ['name' => \"Magic & Loss - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-loss-cd/475523.p?id=2390270&skuId=475523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=475523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4755\\/475523_sa.jpg\"}', 'upc' => '075992666220', 'provider' => 'bestbuy'],\n ['name' => \"At the Ryman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-ryman-cd/475569.p?id=84854&skuId=475569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=475569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0475\\/0475569_sa.jpg\"}', 'upc' => '075992666428', 'provider' => 'bestbuy'],\n ['name' => \"The Remix Hit Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-remix-hit-collection-cd/475916.p?id=81930&skuId=475916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=475916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4759\\/475916_sa.jpg\"}', 'upc' => '075992679626', 'provider' => 'bestbuy'],\n ['name' => \"N.W.A and the Posse [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/n-w-a-and-the-posse-pa-cd/476078.p?id=93611&skuId=476078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4760\\/476078_sa.jpg\"}', 'upc' => '049925711929', 'provider' => 'bestbuy'],\n ['name' => \"Here I Go Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-i-go-again-cd/476675.p?id=87270&skuId=476675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4766\\/476675_sa.jpg\"}', 'upc' => '075678235221', 'provider' => 'bestbuy'],\n ['name' => \"Spotlight on Lucille - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spotlight-on-lucille-cd/476719.p?id=87939&skuId=476719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0476\\/0476719_sa.jpg\"}', 'upc' => '077778623120', 'provider' => 'bestbuy'],\n ['name' => \"Shoot Out the Lights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shoot-out-the-lights-cd/476791.p?id=101691&skuId=476791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0476\\/0476791_sa.jpg\"}', 'upc' => '031257130325', 'provider' => 'bestbuy'],\n ['name' => \"Havana Daydreamin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/havana-daydreamin-cd/476808.p?id=76269&skuId=476808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0476\\/0476808_sa.jpg\"}', 'upc' => '076731109329', 'provider' => 'bestbuy'],\n ['name' => \"The Major Works of John Coltrane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-major-works-of-john-coltrane-cd/476951.p?id=65176&skuId=476951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0476\\/0476951_sa.jpg\"}', 'upc' => '011105011327', 'provider' => 'bestbuy'],\n ['name' => \"Father of the Bride [Music from the Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/father-of-the-bride-music-from-the-motion-cd-original-soundtrack/476988.p?id=82020&skuId=476988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=476988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0476\\/0476988_sa.jpg\"}', 'upc' => '030206534825', 'provider' => 'bestbuy'],\n ['name' => \"Finally - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finally-cd/477120.p?id=94636&skuId=477120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4771\\/477120_sa.jpg\"}', 'upc' => '075021538122', 'provider' => 'bestbuy'],\n ['name' => \"People Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/people-time-cd/477200.p?id=66629&skuId=477200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4772\\/477200_sa.jpg\"}', 'upc' => '731451082320', 'provider' => 'bestbuy'],\n ['name' => \"A Man Called E - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-man-called-e-cd/477282.p?id=81188&skuId=477282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4772\\/477282_sa.jpg\"}', 'upc' => '731451157028', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Con Funk Shun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-con-funk-shun-cd/477308.p?id=78492&skuId=477308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0477\\/0477308_sa.jpg\"}', 'upc' => '731451027529', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Chet Baker Plays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-chet-baker-plays-cd/477460.p?id=63888&skuId=477460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0477\\/0477460_sa.jpg\"}', 'upc' => '077779716128', 'provider' => 'bestbuy'],\n ['name' => \"No Looking Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-looking-back-cd/477488.p?id=75893&skuId=477488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4774\\/477488.jpg\"}', 'upc' => '014551480426', 'provider' => 'bestbuy'],\n ['name' => \"Every Good Boy Deserves Fudge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/every-good-boy-deserves-fudge-cd/477754.p?id=92572&skuId=477754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0477\\/0477754_sa.jpg\"}', 'upc' => '098787010527', 'provider' => 'bestbuy'],\n ['name' => \"Screaming Life/Fopp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/screaming-life-fopp-cd/477772.p?id=99671&skuId=477772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0477\\/0477772_sa.jpg\"}', 'upc' => '098787001228', 'provider' => 'bestbuy'],\n ['name' => \"Smoke 'Em If You Got 'Em - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smoke-em-if-you-got-em-cd/477834.p?id=85138&skuId=477834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=477834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4778\\/477834_sa.jpg\"}', 'upc' => '098787009620', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Radio Installation Dash Kit for Select Ford, Mazda and Mercury Vehicles (Pair) - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Ford, Mazda and Mercury vehicles; allows the installation of an aftermarket radio into the factory dash location; high-grade ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with select Ford, Mazda and Mercury vehicles; allows the installation of an aftermarket radio into the factory dash location; high-grade ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-radio-installation-dash-kit-for-select-ford-mazda-and-mercury-vehicles-pair-black/478398.p?id=1185268614282&skuId=478398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=478398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4783\\/478398_rc.jpg\"}', 'upc' => '086429018871', 'provider' => 'bestbuy'],\n ['name' => \"Moods & Moment [Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moods-moment-reissue-cd/479039.p?id=93276&skuId=479039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479039_sa.jpg\"}', 'upc' => '715187755628', 'provider' => 'bestbuy'],\n ['name' => \"Dark Horse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-horse-cd/479084.p?id=84876&skuId=479084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479084_sa.jpg\"}', 'upc' => '077779807925', 'provider' => 'bestbuy'],\n ['name' => \"Extra Texture - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extra-texture-cd/479093.p?id=2451431&skuId=479093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479093_sa.jpg\"}', 'upc' => '077779808021', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lee Greenwood [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lee-greenwood-curb-cd/479137.p?id=84207&skuId=479137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4791\\/479137.jpg\"}', 'upc' => '715187755925', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bob Wills, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bob-wills-vol-1-cd/479173.p?id=104350&skuId=479173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479173_sa.jpg\"}', 'upc' => '076732591727', 'provider' => 'bestbuy'],\n ['name' => \"20 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-greatest-hits-cd/479235.p?id=104079&skuId=479235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4792\\/479235_sa.jpg\"}', 'upc' => '076732594421', 'provider' => 'bestbuy'],\n ['name' => \"Live [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-mca-cd/479262.p?id=100315&skuId=479262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479262_sa.jpg\"}', 'upc' => '076732601327', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Liberace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-liberace-cd/479306.p?id=89196&skuId=479306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479306_sa.jpg\"}', 'upc' => '076732406021', 'provider' => 'bestbuy'],\n ['name' => \"Flying Cowboys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flying-cowboys-cd/479315.p?id=1365898&skuId=479315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479315_sa.jpg\"}', 'upc' => '720642424629', 'provider' => 'bestbuy'],\n ['name' => \"Great Moments with B.B. King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-moments-with-b-b-king-cd/479360.p?id=87920&skuId=479360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479360_sa.jpg\"}', 'upc' => '076732412428', 'provider' => 'bestbuy'],\n ['name' => \"In The Spirit Of Things - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-spirit-of-things-cd/479379.p?id=87602&skuId=479379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479379_sa.jpg\"}', 'upc' => '076732625422', 'provider' => 'bestbuy'],\n ['name' => \"Man from Snowy River [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-from-snowy-river-original-motion-picture-cd-original-soundtrack/479422.p?id=90311&skuId=479422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479422_sa.jpg\"}', 'upc' => '030206816723', 'provider' => 'bestbuy'],\n ['name' => \"Southern by the Grace of God: Lynyrd Skynyrd... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southern-by-the-grace-of-god-lynyrd-skynyrd-cd/479468.p?id=90016&skuId=479468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479468_sa.jpg\"}', 'upc' => '076732802724', 'provider' => 'bestbuy'],\n ['name' => \"20 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-greatest-hits-cd/479495.p?id=102618&skuId=479495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4794\\/479495_sa.jpg\"}', 'upc' => '076732597521', 'provider' => 'bestbuy'],\n ['name' => \"Up From the Ashes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-from-the-ashes-cd/479529.p?id=1543859&skuId=479529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479529_sa.jpg\"}', 'upc' => '720642430125', 'provider' => 'bestbuy'],\n ['name' => \"Cry-Baby [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-baby-original-soundtrack-cd-original-soundtrack/479583.p?id=79380&skuId=479583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479583_sa.jpg\"}', 'upc' => '076732803820', 'provider' => 'bestbuy'],\n ['name' => \"Will the Circle Be Unbroken, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/will-the-circle-be-unbroken-vol-2-cd/479645.p?id=93432&skuId=479645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4796\\/479645_sa.jpg\"}', 'upc' => '076731250021', 'provider' => 'bestbuy'],\n ['name' => \"Les Incontournables de Salsa - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/les-incontournables-de-salsa-cd-original-soundtrack/479734.p?id=97770&skuId=479734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4797\\/479734_sa.jpg\"}', 'upc' => '076732623220', 'provider' => 'bestbuy'],\n ['name' => \"Hairspray - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hairspray-cd-original-soundtrack/479841.p?id=84625&skuId=479841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479841_sa.jpg\"}', 'upc' => '076732622827', 'provider' => 'bestbuy'],\n ['name' => \"Pack Up the Plantation: Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pack-up-the-plantation-live-cd/479869.p?id=94824&skuId=479869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479869_sa.jpg\"}', 'upc' => '076732802120', 'provider' => 'bestbuy'],\n ['name' => \"In Square Circle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-square-circle-cd/479896.p?id=2293792&skuId=479896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479896_sa.jpg\"}', 'upc' => '737463613422', 'provider' => 'bestbuy'],\n ['name' => \"Rev It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rev-it-up-cd/479912.p?id=1392424&skuId=479912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479912_sa.jpg\"}', 'upc' => '077779292325', 'provider' => 'bestbuy'],\n ['name' => \"Recorded Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recorded-live-cd/479949.p?id=101421&skuId=479949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0479\\/0479949_sa.jpg\"}', 'upc' => '094632104922', 'provider' => 'bestbuy'],\n ['name' => \"Yule Struttin' - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yule-struttin-cd-various/479967.p?id=64977&skuId=479967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4799\\/479967_sa.jpg\"}', 'upc' => '077779485727', 'provider' => 'bestbuy'],\n ['name' => \"Sunshine on Leith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunshine-on-leith-cd/479994.p?id=243729&skuId=479994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=479994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4799\\/479994_sa.jpg\"}', 'upc' => '094632166821', 'provider' => 'bestbuy'],\n ['name' => \"Anthology 1961-1968 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthology-1961-1968-cd/480009.p?id=95008&skuId=480009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=480009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0480\\/0480009_sa.jpg\"}', 'upc' => '081227589622', 'provider' => 'bestbuy'],\n ['name' => \"Live in New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-new-orleans-cd/480036.p?id=90924&skuId=480036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=480036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4800\\/480036_sa.jpg\"}', 'upc' => '077774665926', 'provider' => 'bestbuy'],\n ['name' => \"Shaved Fish - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shaved-fish-cd/480107.p?id=89043&skuId=480107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=480107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0480\\/0480107_sa.jpg\"}', 'upc' => '077774664226', 'provider' => 'bestbuy'],\n ['name' => \"Walls & Bridges - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walls-bridges-cd/480134.p?id=89041&skuId=480134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=480134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4801\\/480134_sa.jpg\"}', 'upc' => '077774676823', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jon & Vangelis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jon-vangelis-cd/481286.p?id=87222&skuId=481286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0481\\/0481286_sa.jpg\"}', 'upc' => '042282192929', 'provider' => 'bestbuy'],\n ['name' => \"The Köln Concert [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-koln-concert-digdownload-cd/481295.p?id=67875&skuId=481295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4812\\/481295.jpg\"}', 'upc' => '042281006722', 'provider' => 'bestbuy'],\n ['name' => \"Eyes of the Heart [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eyes-of-the-heart-digdownload-cd/481302.p?id=67877&skuId=481302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4813\\/481302.jpg\"}', 'upc' => '042282547620', 'provider' => 'bestbuy'],\n ['name' => \"My Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-song-cd/481320.p?id=67878&skuId=481320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0481\\/0481320_sa.jpg\"}', 'upc' => '042282140623', 'provider' => 'bestbuy'],\n ['name' => \"Jazzvisions: Rio Revisited - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazzvisions-rio-revisited-cd-various/481375.p?id=70337&skuId=481375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4813\\/481375_sa.jpg\"}', 'upc' => '042284128629', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' the Fillmore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-the-fillmore-cd/481400.p?id=85916&skuId=481400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4814\\/481400_sa.jpg\"}', 'upc' => '075021600829', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/481419.p?id=1383366&skuId=481419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4814\\/481419.jpg\"}', 'upc' => '042282036728', 'provider' => 'bestbuy'],\n ['name' => \"On the Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-road-cd/481525.p?id=2305096&skuId=481525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4815\\/481525.jpg\"}', 'upc' => '042284289320', 'provider' => 'bestbuy'],\n ['name' => \"Stay Awake: Various Interpretations of Music... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-awake-various-interpretations-of-music-cd-various/481570.p?id=100214&skuId=481570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4815\\/481570_sa.jpg\"}', 'upc' => '075021391826', 'provider' => 'bestbuy'],\n ['name' => \"Oscar Peterson Plays the Cole Porter Song Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oscar-peterson-plays-the-cole-porter-song-book-cd/481650.p?id=69946&skuId=481650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4816\\/481650_sa.jpg\"}', 'upc' => '042282198723', 'provider' => 'bestbuy'],\n ['name' => \"Mantovani's Golden Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mantovanis-golden-hits-cd/481785.p?id=90465&skuId=481785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0481\\/0481785_sa.jpg\"}', 'upc' => '042280008529', 'provider' => 'bestbuy'],\n ['name' => \"A Hard Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-hard-road-cd/481829.p?id=2276476&skuId=481829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0481\\/0481829_sa.jpg\"}', 'upc' => '042282047427', 'provider' => 'bestbuy'],\n ['name' => \"Carved in Sand - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carved-in-sand-cd/481927.p?id=91905&skuId=481927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4819\\/481927_sa.jpg\"}', 'upc' => '042284225120', 'provider' => 'bestbuy'],\n ['name' => \"Pat Metheny Group [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pat-metheny-group-digdownload-cd/481972.p?id=69075&skuId=481972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4819\\/481972.jpg\"}', 'upc' => '042282559326', 'provider' => 'bestbuy'],\n ['name' => \"Bright Size Life [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bright-size-life-digdownload-cd/481981.p?id=2434344&skuId=481981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=481981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4819\\/481981.jpg\"}', 'upc' => '042282713322', 'provider' => 'bestbuy'],\n ['name' => \"Watercolors [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/watercolors-digdownload-cd/482007.p?id=2411925&skuId=482007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4820\\/482007.jpg\"}', 'upc' => '042282740922', 'provider' => 'bestbuy'],\n ['name' => \"As Falls Wichita, So... [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-falls-wichita-so-digdownload-cd/482016.p?id=69080&skuId=482016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4820\\/482016.jpg\"}', 'upc' => '042282141620', 'provider' => 'bestbuy'],\n ['name' => \"Odyssey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/odyssey-cd/482123.p?id=90282&skuId=482123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482123_sa.jpg\"}', 'upc' => '042283545120', 'provider' => 'bestbuy'],\n ['name' => \"Ella in Rome: The Birthday Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-in-rome-the-birthday-concert-cd/482221.p?id=66296&skuId=482221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4822\\/482221_sa.jpg\"}', 'upc' => '042283545427', 'provider' => 'bestbuy'],\n ['name' => \"Porgy & Bess - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/porgy-bess-cd/482230.p?id=3382805&skuId=482230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4822\\/482230_sa.jpg\"}', 'upc' => '042282747525', 'provider' => 'bestbuy'],\n ['name' => \"These Are the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/these-are-the-blues-cd/482249.p?id=66351&skuId=482249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4822\\/482249_sa.jpg\"}', 'upc' => '042282953629', 'provider' => 'bestbuy'],\n ['name' => \"Ella Fitzgerald Sings the Cole Porter... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-fitzgerald-sings-the-cole-porter-cd/482276.p?id=66282&skuId=482276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4822\\/482276_sa.jpg\"}', 'upc' => '042282198921', 'provider' => 'bestbuy'],\n ['name' => \"Nobody's Perfect [1-CD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nobodys-perfect-1-cd-cd/482374.p?id=172481&skuId=482374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482374_sa.jpg\"}', 'upc' => '042283589728', 'provider' => 'bestbuy'],\n ['name' => \"Alone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-cd/482409.p?id=263833&skuId=482409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482409_sa.jpg\"}', 'upc' => '042283380127', 'provider' => 'bestbuy'],\n ['name' => \"Empathy/A Simple Matter of Conviction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empathy-a-simple-matter-of-conviction-cd/482418.p?id=66100&skuId=482418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482418_sa.jpg\"}', 'upc' => '042283775725', 'provider' => 'bestbuy'],\n ['name' => \"Liege & Lief - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liege-lief-cd/482436.p?id=81904&skuId=482436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482436_sa.jpg\"}', 'upc' => '075021425729', 'provider' => 'bestbuy'],\n ['name' => \"Blazing Away: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blazing-away-live-cd/482445.p?id=1531709&skuId=482445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4824\\/482445.jpg\"}', 'upc' => '042284279420', 'provider' => 'bestbuy'],\n ['name' => \"Marianne Faithfull's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marianne-faithfulls-greatest-hits-cd/482463.p?id=81914&skuId=482463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4824\\/482463_sa.jpg\"}', 'upc' => '018771754725', 'provider' => 'bestbuy'],\n ['name' => \"The Hot Spot [Original Soundtrack] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hot-spot-original-soundtrack-original-soundtrack-cd/482757.p?id=85773&skuId=482757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482757_sa.jpg\"}', 'upc' => '042284681322', 'provider' => 'bestbuy'],\n ['name' => \"Stan Getz & Bill Evans - CD - Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-getz-bill-evans-cd-germany/482793.p?id=66621&skuId=482793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482793_sa.jpg\"}', 'upc' => '042283380226', 'provider' => 'bestbuy'],\n ['name' => \"The Silver Collection: The Astrud Gilberto Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-silver-collection-the-astrud-gilberto-album-cd/482819.p?id=66654&skuId=482819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4828\\/482819_sa.jpg\"}', 'upc' => '042282345127', 'provider' => 'bestbuy'],\n ['name' => \"Anniversary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anniversary-cd/482828.p?id=66582&skuId=482828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482828_sa.jpg\"}', 'upc' => '042283876927', 'provider' => 'bestbuy'],\n ['name' => \"Return to Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-to-forever-cd/482953.p?id=65270&skuId=482953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=482953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0482\\/0482953_sa.jpg\"}', 'upc' => '042281197826', 'provider' => 'bestbuy'],\n ['name' => \"Sextet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sextet-cd/483051.p?id=64385&skuId=483051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4830\\/483051.jpg\"}', 'upc' => '042283169722', 'provider' => 'bestbuy'],\n ['name' => \"Dinner Music [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dinner-music-digdownload-cd/483088.p?id=64378&skuId=483088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4830\\/483088.jpg\"}', 'upc' => '042282581525', 'provider' => 'bestbuy'],\n ['name' => \"Grease - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grease-cd-original-cast-recording/483195.p?id=2186762&skuId=483195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4831\\/483195_sa.jpg\"}', 'upc' => '042282754820', 'provider' => 'bestbuy'],\n ['name' => \"On the Radio: Greatest Hits, Vols. 1-2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-radio-greatest-hits-vols-1-2-cd/483239.p?id=2169944&skuId=483239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4832\\/483239_sa.jpg\"}', 'upc' => '042282255822', 'provider' => 'bestbuy'],\n ['name' => \"Offramp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/offramp-cd/483293.p?id=2434345&skuId=483293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4832\\/483293_sa.jpg\"}', 'upc' => '042281713828', 'provider' => 'bestbuy'],\n ['name' => \"Dressed to Kill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dressed-to-kill-cd/483337.p?id=263501&skuId=483337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4833\\/483337.jpg\"}', 'upc' => '042282414823', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Boston Pops - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-boston-pops-cd/483462.p?id=1675387&skuId=483462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=483462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4834\\/483462.jpg\"}', 'upc' => '028943280228', 'provider' => 'bestbuy'],\n ['name' => \"Favorite Tenor Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/favorite-tenor-arias-cd/484050.p?id=1676832&skuId=484050&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=484050', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0484\\/0484050_sa.jpg\"}', 'upc' => '028940005329', 'provider' => 'bestbuy'],\n ['name' => \"Spanking Machine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spanking-machine-cd/486192.p?id=73571&skuId=486192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486192_sa.jpg\"}', 'upc' => '035058918328', 'provider' => 'bestbuy'],\n ['name' => \"Zen Arcade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zen-arcade-cd/486343.p?id=85980&skuId=486343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486343_sa.jpg\"}', 'upc' => '018861002729', 'provider' => 'bestbuy'],\n ['name' => \"Show No Mercy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/show-no-mercy-cd/486352.p?id=1365918&skuId=486352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486352_sa.jpg\"}', 'upc' => '018777103428', 'provider' => 'bestbuy'],\n ['name' => \"Wednesday Night in San Francisco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wednesday-night-in-san-francisco-cd/486487.p?id=87903&skuId=486487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4864\\/486487.jpg\"}', 'upc' => '025218855624', 'provider' => 'bestbuy'],\n ['name' => \"Thursday Night in San Francisco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thursday-night-in-san-francisco-cd/486496.p?id=87901&skuId=486496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4864\\/486496_sa.jpg\"}', 'upc' => '025218855723', 'provider' => 'bestbuy'],\n ['name' => \"Attack of the Killer V: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/attack-of-the-killer-v-live-cd/486557.p?id=90069&skuId=486557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4865\\/486557.jpg\"}', 'upc' => '014551478621', 'provider' => 'bestbuy'],\n ['name' => \"Heart Attack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-attack-cd/486566.p?id=89434&skuId=486566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4865\\/486566.jpg\"}', 'upc' => '019148399020', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Malaco] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-malaco-cd/486637.p?id=85388&skuId=486637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486637_sa.jpg\"}', 'upc' => '048021743728', 'provider' => 'bestbuy'],\n ['name' => \"The Last of the True Believers [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-of-the-true-believers-ecd-cd/486646.p?id=84271&skuId=486646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486646_sa.jpg\"}', 'upc' => '011671110929', 'provider' => 'bestbuy'],\n ['name' => \"Juju Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juju-music-cd/486735.p?id=72498&skuId=486735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0486\\/0486735_sa.jpg\"}', 'upc' => '016253971226', 'provider' => 'bestbuy'],\n ['name' => \"Have I Got a Deal for You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/have-i-got-a-deal-for-you-cd/486860.p?id=91146&skuId=486860&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=486860', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4868\\/486860.jpg\"}', 'upc' => '076743110924', 'provider' => 'bestbuy'],\n ['name' => \"Love Warriors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-warriors-cd/487191.p?id=71550&skuId=487191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=487191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4871\\/487191_sa.jpg\"}', 'upc' => '019341011620', 'provider' => 'bestbuy'],\n ['name' => \"Mendelssohn: Complete String Symphonies Vol 1 / Boughton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mendelssohn-complete-string-symphonies-vol-1-boughton-cd/487379.p?id=1879959&skuId=487379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=487379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4873\\/487379.jpg\"}', 'upc' => '710357514128', 'provider' => 'bestbuy'],\n ['name' => \"Nothin' But the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothin-but-the-blues-cd/487672.p?id=72100&skuId=487672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=487672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4876\\/487672.jpg\"}', 'upc' => '013491400129', 'provider' => 'bestbuy'],\n ['name' => \"Field of Dreams - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/field-of-dreams-cd-original-soundtrack/487743.p?id=82166&skuId=487743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=487743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4877\\/487743.jpg\"}', 'upc' => '012416306027', 'provider' => 'bestbuy'],\n ['name' => \"Whispers and Promises - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whispers-and-promises-cd/488190.p?id=68298&skuId=488190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4881\\/488190.jpg\"}', 'upc' => '075992590228', 'provider' => 'bestbuy'],\n ['name' => \"Warehouse: Songs and Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warehouse-songs-and-stories-cd/488225.p?id=85979&skuId=488225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4882\\/488225_sa.jpg\"}', 'upc' => '075992554428', 'provider' => 'bestbuy'],\n ['name' => \"Life Is a Dance (The Remix Project) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-is-a-dance-the-remix-project-cd/488234.p?id=87797&skuId=488234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4882\\/488234_sa.jpg\"}', 'upc' => '075992594622', 'provider' => 'bestbuy'],\n ['name' => \"There But for Fortune - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-but-for-fortune-cd/488323.p?id=93790&skuId=488323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4883\\/488323_sa.jpg\"}', 'upc' => '075596083225', 'provider' => 'bestbuy'],\n ['name' => \"G.P./Grievous Angel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-p-grievous-angel-cd/488350.p?id=94437&skuId=488350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4883\\/488350_sa.jpg\"}', 'upc' => '075992610827', 'provider' => 'bestbuy'],\n ['name' => \"Land of Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/land-of-dreams-cd/488369.p?id=93245&skuId=488369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488369_sa.jpg\"}', 'upc' => '075992577328', 'provider' => 'bestbuy'],\n ['name' => \"The Years of Decay - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-years-of-decay-cd/488378.p?id=94199&skuId=488378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488378_sa.jpg\"}', 'upc' => '075678204524', 'provider' => 'bestbuy'],\n ['name' => \"Brotherhood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brotherhood-cd/488412.p?id=93165&skuId=488412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488412_sa.jpg\"}', 'upc' => '075992551120', 'provider' => 'bestbuy'],\n ['name' => \"Technique - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/technique-cd/488421.p?id=93172&skuId=488421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4884\\/488421_sa.jpg\"}', 'upc' => '075992584524', 'provider' => 'bestbuy'],\n ['name' => \"Naked City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naked-city-cd/488449.p?id=72284&skuId=488449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488449_sa.jpg\"}', 'upc' => '075597923827', 'provider' => 'bestbuy'],\n ['name' => \"Steve Reich: Electric Counterpoint; Different... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-reich-electric-counterpoint-different-cd/488537.p?id=1675630&skuId=488537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488537_sa.jpg\"}', 'upc' => '075597917628', 'provider' => 'bestbuy'],\n ['name' => \"Hoy-Hoy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoy-hoy-cd/488591.p?id=89362&skuId=488591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488591_sa.jpg\"}', 'upc' => '075992741323', 'provider' => 'bestbuy'],\n ['name' => \"La Pistola y el Corazón - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-pistola-y-el-corazon-cd/488608.p?id=89693&skuId=488608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488608_sa.jpg\"}', 'upc' => '075992579025', 'provider' => 'bestbuy'],\n ['name' => \"For Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-ellington-cd/488617.p?id=69238&skuId=488617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4886\\/488617.jpg\"}', 'upc' => '075679092625', 'provider' => 'bestbuy'],\n ['name' => \"Shadows and Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shadows-and-light-cd/488626.p?id=91930&skuId=488626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488626_sa.jpg\"}', 'upc' => '075596059022', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Stories Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-stories-live-cd/488644.p?id=77195&skuId=488644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488644_sa.jpg\"}', 'upc' => '075596063029', 'provider' => 'bestbuy'],\n ['name' => \"One More Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-story-cd/488662.p?id=77135&skuId=488662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488662_sa.jpg\"}', 'upc' => '075992570428', 'provider' => 'bestbuy'],\n ['name' => \"Ellington Masterpieces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ellington-masterpieces-cd/488680.p?id=63666&skuId=488680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4886\\/488680.jpg\"}', 'upc' => '075679142320', 'provider' => 'bestbuy'],\n ['name' => \"The New Order - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-order-cd/488715.p?id=101487&skuId=488715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488715_sa.jpg\"}', 'upc' => '075678184925', 'provider' => 'bestbuy'],\n ['name' => \"Live and Dangerous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-and-dangerous-cd/488733.p?id=101588&skuId=488733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488733_sa.jpg\"}', 'upc' => '075992735827', 'provider' => 'bestbuy'],\n ['name' => \"Superman: The Movie - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superman-the-movie-cd-original-soundtrack/488760.p?id=1604237&skuId=488760&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488760', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4887\\/488760_sa.jpg\"}', 'upc' => '075992737425', 'provider' => 'bestbuy'],\n ['name' => \"Absolutely Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/absolutely-live-cd/488779.p?id=100399&skuId=488779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488779_sa.jpg\"}', 'upc' => '075992374323', 'provider' => 'bestbuy'],\n ['name' => \"Made in Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/made-in-japan-cd/488868.p?id=80059&skuId=488868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488868_sa.jpg\"}', 'upc' => '075992727327', 'provider' => 'bestbuy'],\n ['name' => \"Amandla - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amandla-cd/488939.p?id=65514&skuId=488939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4889\\/488939_sa.jpg\"}', 'upc' => '075992587327', 'provider' => 'bestbuy'],\n ['name' => \"CSN - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/csn-cd/488948.p?id=79264&skuId=488948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488948_sa.jpg\"}', 'upc' => '075678265020', 'provider' => 'bestbuy'],\n ['name' => \"American Dream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dream-cd/488957.p?id=79271&skuId=488957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4889\\/488957_sa.jpg\"}', 'upc' => '075678188824', 'provider' => 'bestbuy'],\n ['name' => \"The Gospel at Colonus [Original Cast] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gospel-at-colonus-original-cast-cd-original-broadway-cast/488993.p?id=83925&skuId=488993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=488993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0488\\/0488993_sa.jpg\"}', 'upc' => '075597919127', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/489055.p?id=279713&skuId=489055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4890\\/489055_sa.jpg\"}', 'upc' => '075992718127', 'provider' => 'bestbuy'],\n ['name' => \"A Donny Hathaway Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/a-donny-hathaway-collection-cd/489082.p?id=84955&skuId=489082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489082_sa.jpg\"}', 'upc' => '075678209222', 'provider' => 'bestbuy'],\n ['name' => \"We Sold Our Soul for Rock N Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-sold-our-soul-for-rock-n-roll-cd/489162.p?id=74838&skuId=489162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489162_sa.jpg\"}', 'upc' => '075992730228', 'provider' => 'bestbuy'],\n ['name' => \"Livin' Inside Your Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livin-inside-your-love-cd/489199.p?id=64182&skuId=489199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4891\\/489199.jpg\"}', 'upc' => '075992738521', 'provider' => 'bestbuy'],\n ['name' => \"Weekend in L.A. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weekend-in-l-a-cd/489224.p?id=64193&skuId=489224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489224_sa.jpg\"}', 'upc' => '075992734325', 'provider' => 'bestbuy'],\n ['name' => \"Miles of Aisles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miles-of-aisles-cd/489288.p?id=91935&skuId=489288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4892\\/489288_sa.jpg\"}', 'upc' => '075596053921', 'provider' => 'bestbuy'],\n ['name' => \"Mission - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mission-cd-original-soundtrack/489297.p?id=2067083&skuId=489297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4892\\/489297_sa.jpg\"}', 'upc' => '077778600121', 'provider' => 'bestbuy'],\n ['name' => \"He Is Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/he-is-christmas-cd/489331.p?id=101107&skuId=489331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489331_sa.jpg\"}', 'upc' => '075992666527', 'provider' => 'bestbuy'],\n ['name' => \"The Final Rip Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-final-rip-off-cd/489368.p?id=92157&skuId=489368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489368_sa.jpg\"}', 'upc' => '077778603320', 'provider' => 'bestbuy'],\n ['name' => \"What a Long Strange Trip It's Been: The Best... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-a-long-strange-trip-its-been-the-best-cd/489395.p?id=84095&skuId=489395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489395_sa.jpg\"}', 'upc' => '075992732222', 'provider' => 'bestbuy'],\n ['name' => \"The Kink Kronikles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kink-kronikles-cd/489411.p?id=88134&skuId=489411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4894\\/489411_sa.jpg\"}', 'upc' => '075992745727', 'provider' => 'bestbuy'],\n ['name' => \"30 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/30-greatest-hits-cd/489457.p?id=82829&skuId=489457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4894\\/489457_sa.jpg\"}', 'upc' => '075678166822', 'provider' => 'bestbuy'],\n ['name' => \"Sign 'O' the Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sign-o-the-times-cd/489536.p?id=95486&skuId=489536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489536_sa.jpg\"}', 'upc' => '075992557726', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Albert King, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-albert-king-vol-1-cd/489974.p?id=87894&skuId=489974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=489974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0489\\/0489974_sa.jpg\"}', 'upc' => '025218300520', 'provider' => 'bestbuy'],\n ['name' => \"Live at Carnegie Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-carnegie-hall-cd/490007.p?id=100988&skuId=490007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=490007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4900\\/490007_sa.jpg\"}', 'upc' => '018964010621', 'provider' => 'bestbuy'],\n ['name' => \"Live in Europe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-europe-cd/490070.p?id=79171&skuId=490070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=490070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0490\\/0490070_sa.jpg\"}', 'upc' => '025218452625', 'provider' => 'bestbuy'],\n ['name' => \"Havin' a Party with Southside Johnny - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/havin-a-party-with-southside-johnny-cd/490604.p?id=99702&skuId=490604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=490604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0490\\/0490604_sa.jpg\"}', 'upc' => '074643624626', 'provider' => 'bestbuy'],\n ['name' => \"Marathon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marathon-cd/490757.p?id=97883&skuId=490757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=490757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4907\\/490757_sa.jpg\"}', 'upc' => '074643615426', 'provider' => 'bestbuy'],\n ['name' => \"Peter Nero's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-neros-greatest-hits-cd/491006.p?id=93061&skuId=491006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0491\\/0491006_sa.jpg\"}', 'upc' => '074643313629', 'provider' => 'bestbuy'],\n ['name' => \"Ray Price's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ray-prices-greatest-hits-cd/491131.p?id=95425&skuId=491131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4911\\/491131.jpg\"}', 'upc' => '074640886621', 'provider' => 'bestbuy'],\n ['name' => \"Crescent City Christmas Card - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crescent-city-christmas-card-cd/491710.p?id=68822&skuId=491710&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491710', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0491\\/0491710_sa.jpg\"}', 'upc' => '074644528725', 'provider' => 'bestbuy'],\n ['name' => \"Native Sons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/native-sons-cd/491854.p?id=89534&skuId=491854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4918\\/491854_sa.jpg\"}', 'upc' => '074643357821', 'provider' => 'bestbuy'],\n ['name' => \"Mountain Music of Peru, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mountain-music-of-peru-vol-1-cd-various/491863.p?id=94753&skuId=491863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4918\\/491863.jpg\"}', 'upc' => '093074002025', 'provider' => 'bestbuy'],\n ['name' => \"High Adventure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-adventure-cd/491881.p?id=89524&skuId=491881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=491881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4918\\/491881.jpg\"}', 'upc' => '074643812726', 'provider' => 'bestbuy'],\n ['name' => \"Rock On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-on-cd/492247.p?id=81688&skuId=492247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=492247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0492\\/0492247_sa.jpg\"}', 'upc' => '074643256025', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/492602.p?id=79806&skuId=492602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=492602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4926\\/492602.jpg\"}', 'upc' => '074643631723', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/492862.p?id=77161&skuId=492862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=492862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0492\\/0492862_sa.jpg\"}', 'upc' => '074643087124', 'provider' => 'bestbuy'],\n ['name' => \"Appalachian Spring Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/appalachian-spring-suite-cd/493013.p?id=1676750&skuId=493013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=493013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4930\\/493013.jpg\"}', 'upc' => '074643725729', 'provider' => 'bestbuy'],\n ['name' => \"Hometown Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hometown-girl-cd/493175.p?id=76908&skuId=493175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=493175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0493\\/0493175_sa.jpg\"}', 'upc' => '074644075823', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Blues: Best of David Bromberg - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-blues-best-of-david-bromberg-cd/493282.p?id=76024&skuId=493282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=493282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0493\\/0493282_sa.jpg\"}', 'upc' => '074643446723', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Patti LaBelle [Epic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-patti-labelle-epic-cd/493674.p?id=88552&skuId=493674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=493674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4936\\/493674_sa.jpg\"}', 'upc' => '074643699723', 'provider' => 'bestbuy'],\n ['name' => \"Ricky Van Shelton Sings Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricky-van-shelton-sings-christmas-cd/493736.p?id=319418&skuId=493736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=493736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4937\\/493736.jpg\"}', 'upc' => '074644526929', 'provider' => 'bestbuy'],\n ['name' => \"The Revölution by Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-revolution-by-night-cd/494129.p?id=75142&skuId=494129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4941\\/494129_sa.jpg\"}', 'upc' => '074643894722', 'provider' => 'bestbuy'],\n ['name' => \"Argent Anthology: A Collection of Greatest... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/argent-anthology-a-collection-of-greatest-cd/494281.p?id=73210&skuId=494281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0494\\/0494281_sa.jpg\"}', 'upc' => '074643395526', 'provider' => 'bestbuy'],\n ['name' => \"Russian Roulette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russian-roulette-cd/494361.p?id=72385&skuId=494361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0494\\/0494361_sa.jpg\"}', 'upc' => '074644035421', 'provider' => 'bestbuy'],\n ['name' => \"Chasing Rainbows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chasing-rainbows-cd/494520.p?id=93907&skuId=494520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4945\\/494520_sa.jpg\"}', 'upc' => '074643491723', 'provider' => 'bestbuy'],\n ['name' => \"Two Wheels Good - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-wheels-good-cd/494548.p?id=95294&skuId=494548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4945\\/494548_sa.jpg\"}', 'upc' => '074644010022', 'provider' => 'bestbuy'],\n ['name' => \"99 Luftballons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/99-luftballons-cd/494575.p?id=93058&skuId=494575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0494\\/0494575_sa.jpg\"}', 'upc' => '074643929424', 'provider' => 'bestbuy'],\n ['name' => \"I'm in Love Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-in-love-again-cd/494593.p?id=3245439&skuId=494593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '074643853927', 'provider' => 'bestbuy'],\n ['name' => \"Alf - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alf-cd/494673.p?id=92528&skuId=494673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4946\\/494673_sa.jpg\"}', 'upc' => '074643995627', 'provider' => 'bestbuy'],\n ['name' => \"Windows & Walls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/windows-walls-cd/494744.p?id=82548&skuId=494744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=494744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0494\\/0494744_sa.jpg\"}', 'upc' => '074643900423', 'provider' => 'bestbuy'],\n ['name' => \"City Of Angels - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/city-of-angels-cd-original-broadway-cast/495315.p?id=2069535&skuId=495315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4953\\/495315.jpg\"}', 'upc' => '074644606720', 'provider' => 'bestbuy'],\n ['name' => \"Ben & Sweets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-sweets-cd/495333.p?id=71991&skuId=495333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495333_sa.jpg\"}', 'upc' => '074644085327', 'provider' => 'bestbuy'],\n ['name' => \"One Voice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-voice-cd/495413.p?id=100608&skuId=495413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495413_sa.jpg\"}', 'upc' => '074644078824', 'provider' => 'bestbuy'],\n ['name' => \"Out of This World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-this-world-cd/495431.p?id=81721&skuId=495431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4954\\/495431_sa.jpg\"}', 'upc' => '074644418521', 'provider' => 'bestbuy'],\n ['name' => \"Music from West Side Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-west-side-story-cd/495636.p?id=64627&skuId=495636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4956\\/495636.jpg\"}', 'upc' => '074644045529', 'provider' => 'bestbuy'],\n ['name' => \"Pangaea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pangaea-cd/495725.p?id=65560&skuId=495725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495725_sa.jpg\"}', 'upc' => '074644611526', 'provider' => 'bestbuy'],\n ['name' => \"Decade of Rock & Roll '70-'80 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/decade-of-rock-roll-70-80-cd/495770.p?id=96461&skuId=495770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495770_sa.jpg\"}', 'upc' => '074643644426', 'provider' => 'bestbuy'],\n ['name' => \"Opera Sauvage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/opera-sauvage-cd/495930.p?id=102978&skuId=495930&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495930', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495930_sa.jpg\"}', 'upc' => '042282966322', 'provider' => 'bestbuy'],\n ['name' => \"The Gist of the Gemini - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gist-of-the-gemini-cd/495949.p?id=3293641&skuId=495949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4959\\/495949.jpg\"}', 'upc' => '075021311220', 'provider' => 'bestbuy'],\n ['name' => \"Powerful People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/powerful-people-cd/495967.p?id=2444182&skuId=495967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4959\\/495967.jpg\"}', 'upc' => '075021312029', 'provider' => 'bestbuy'],\n ['name' => \"Brother to Brother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-to-brother-cd/495985.p?id=103002&skuId=495985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=495985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0495\\/0495985_sa.jpg\"}', 'upc' => '075021317024', 'provider' => 'bestbuy'],\n ['name' => \"Cornerstone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cornerstone-cd/496001.p?id=100679&skuId=496001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4960\\/496001_sa.jpg\"}', 'upc' => '075021323926', 'provider' => 'bestbuy'],\n ['name' => \"1969: Velvet Underground Live with Lou Reed,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1969-velvet-underground-live-with-lou-reed-cd/496010.p?id=103073&skuId=496010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496010_sa.jpg\"}', 'upc' => '042283482326', 'provider' => 'bestbuy'],\n ['name' => \"V.U. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-u-cd/496029.p?id=2387779&skuId=496029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496029_sa.jpg\"}', 'upc' => '042282372123', 'provider' => 'bestbuy'],\n ['name' => \"It's Better to Travel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-better-to-travel-cd/496092.p?id=101016&skuId=496092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496092_sa.jpg\"}', 'upc' => '042283221321', 'provider' => 'bestbuy'],\n ['name' => \"Sonny & Brownie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-brownie-cd/496163.p?id=101465&skuId=496163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4961\\/496163_sa.jpg\"}', 'upc' => '075021082922', 'provider' => 'bestbuy'],\n ['name' => \"Strength in Numbers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strength-in-numbers-cd/496172.p?id=2305155&skuId=496172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4961\\/496172.jpg\"}', 'upc' => '075021511521', 'provider' => 'bestbuy'],\n ['name' => \"Johnny the Fox - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-the-fox-cd/496181.p?id=101586&skuId=496181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496181_sa.jpg\"}', 'upc' => '042282268723', 'provider' => 'bestbuy'],\n ['name' => \"Jailbreak - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jailbreak-cd/496190.p?id=101585&skuId=496190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4961\\/496190_sa.jpg\"}', 'upc' => '042282278524', 'provider' => 'bestbuy'],\n ['name' => \"Alvin Lee & Company - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alvin-lee-company-cd/496234.p?id=1434438&skuId=496234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496234_sa.jpg\"}', 'upc' => '042282056627', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Waitresses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-waitresses-cd/496396.p?id=103315&skuId=496396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4963\\/496396_sa.jpg\"}', 'upc' => '042284724920', 'provider' => 'bestbuy'],\n ['name' => \"Franks Wild Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/franks-wild-years-cd/496403.p?id=103322&skuId=496403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4964\\/496403.jpg\"}', 'upc' => '042284235723', 'provider' => 'bestbuy'],\n ['name' => \"Swordfishtrombones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swordfishtrombones-cd/496412.p?id=103327&skuId=496412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4964\\/496412_sa.jpg\"}', 'upc' => '042284246927', 'provider' => 'bestbuy'],\n ['name' => \"Pardners In Rhyme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pardners-in-rhyme-cd/496421.p?id=2387957&skuId=496421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4964\\/496421.jpg\"}', 'upc' => '042282442024', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Statler Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-statler-brothers-cd/496458.p?id=100160&skuId=496458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4964\\/496458_sa.jpg\"}', 'upc' => '042282252425', 'provider' => 'bestbuy'],\n ['name' => \"Statler Brothers Live :Sold Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/statler-brothers-live-sold-out-cd/496476.p?id=100176&skuId=496476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496476_sa.jpg\"}', 'upc' => '042283823129', 'provider' => 'bestbuy'],\n ['name' => \"Blah-Blah-Blah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blah-blah-blah-cd/496494.p?id=95180&skuId=496494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4964\\/496494_sa.jpg\"}', 'upc' => '075021514522', 'provider' => 'bestbuy'],\n ['name' => \"Skin Tight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skin-tight-cd/496537.p?id=93825&skuId=496537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4965\\/496537_sa.jpg\"}', 'upc' => '042284834520', 'provider' => 'bestbuy'],\n ['name' => \"Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-cd/496564.p?id=93820&skuId=496564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496564_sa.jpg\"}', 'upc' => '042284834629', 'provider' => 'bestbuy'],\n ['name' => \"Gloryhallastoopid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gloryhallastoopid-cd/496573.p?id=2389915&skuId=496573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496573_sa.jpg\"}', 'upc' => '042284262224', 'provider' => 'bestbuy'],\n ['name' => \"Tales of Mystery and Imagination: Edgar Allan Poe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tales-of-mystery-and-imagination-edgar-allan-poe-cd/496582.p?id=94448&skuId=496582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496582_sa.jpg\"}', 'upc' => '042283282025', 'provider' => 'bestbuy'],\n ['name' => \"Honey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honey-cd/496591.p?id=93822&skuId=496591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496591_sa.jpg\"}', 'upc' => '042284834728', 'provider' => 'bestbuy'],\n ['name' => \"Only a Lad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-a-lad-cd/496608.p?id=93835&skuId=496608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4966\\/496608_sa.jpg\"}', 'upc' => '075021325029', 'provider' => 'bestbuy'],\n ['name' => \"At Yankee Stadium - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-yankee-stadium-cd/496617.p?id=93532&skuId=496617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496617_sa.jpg\"}', 'upc' => '042282446220', 'provider' => 'bestbuy'],\n ['name' => \"Sneakin' Sally Through the Alley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sneakin-sally-through-the-alley-cd/496715.p?id=94316&skuId=496715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496715_sa.jpg\"}', 'upc' => '042284260725', 'provider' => 'bestbuy'],\n ['name' => \"Good Morning Vietnam [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-morning-vietnam-original-soundtrack-cd-original-soundtrack/496886.p?id=83856&skuId=496886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4968\\/496886_sa.jpg\"}', 'upc' => '075021334021', 'provider' => 'bestbuy'],\n ['name' => \"All the Rage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-rage-cd/496939.p?id=83465&skuId=496939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496939_sa.jpg\"}', 'upc' => '044797504624', 'provider' => 'bestbuy'],\n ['name' => \"Blue Jays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-jays-cd/496957.p?id=85080&skuId=496957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=496957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0496\\/0496957_sa.jpg\"}', 'upc' => '042282049124', 'provider' => 'bestbuy'],\n ['name' => \"Stan Getz Plays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-getz-plays-cd/497000.p?id=66602&skuId=497000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4970\\/497000.jpg\"}', 'upc' => '042283353527', 'provider' => 'bestbuy'],\n ['name' => \"The Original Misty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-misty-cd/497028.p?id=66551&skuId=497028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4970\\/497028_sa.jpg\"}', 'upc' => '042283491021', 'provider' => 'bestbuy'],\n ['name' => \"Present - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/present-cd/497073.p?id=2542483&skuId=497073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4970\\/497073_sa.jpg\"}', 'upc' => '042281011924', 'provider' => 'bestbuy'],\n ['name' => \"A Day in the Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-day-in-the-life-cd/497171.p?id=69319&skuId=497171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497171_sa.jpg\"}', 'upc' => '075021081628', 'provider' => 'bestbuy'],\n ['name' => \"Road Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-song-cd/497180.p?id=69339&skuId=497180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497180_sa.jpg\"}', 'upc' => '075021082229', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/497224.p?id=91431&skuId=497224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497224_sa.jpg\"}', 'upc' => '075021325821', 'provider' => 'bestbuy'],\n ['name' => \"Crusade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crusade-cd/497260.p?id=90882&skuId=497260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497260_sa.jpg\"}', 'upc' => '042282053725', 'provider' => 'bestbuy'],\n ['name' => \"Looking Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-back-cd/497288.p?id=90884&skuId=497288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4972\\/497288_sa.jpg\"}', 'upc' => '042282033123', 'provider' => 'bestbuy'],\n ['name' => \"Land of Make Believe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/land-of-make-believe-cd/497377.p?id=68718&skuId=497377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497377_sa.jpg\"}', 'upc' => '042282253927', 'provider' => 'bestbuy'],\n ['name' => \"Feels So Good - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feels-so-good-cd/497386.p?id=68715&skuId=497386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4973\\/497386_sa.jpg\"}', 'upc' => '075021321922', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Chuck Mangione [A&M] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-chuck-mangione-a-m-cd/497395.p?id=68708&skuId=497395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4973\\/497395_sa.jpg\"}', 'upc' => '075021328228', 'provider' => 'bestbuy'],\n ['name' => \"Trilogy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trilogy-cd/497411.p?id=90286&skuId=497411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497411_sa.jpg\"}', 'upc' => '042283107328', 'provider' => 'bestbuy'],\n ['name' => \"Trial by Fire: Live in Leningrad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trial-by-fire-live-in-leningrad-cd/497420.p?id=90285&skuId=497420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4974\\/497420.jpg\"}', 'upc' => '042283972629', 'provider' => 'bestbuy'],\n ['name' => \"Wave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wave-cd/497527.p?id=68003&skuId=497527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497527_sa.jpg\"}', 'upc' => '075021081222', 'provider' => 'bestbuy'],\n ['name' => \"Miles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miles-cd/497554.p?id=86803&skuId=497554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4975\\/497554.jpg\"}', 'upc' => '042284281621', 'provider' => 'bestbuy'],\n ['name' => \"Koyaanisqatsi: Life Out of Balance - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/koyaanisqatsi-life-out-of-balance-cd-original-soundtrack/497563.p?id=2066138&skuId=497563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497563_sa.jpg\"}', 'upc' => '042281404221', 'provider' => 'bestbuy'],\n ['name' => \"The Dude - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dude-cd/497643.p?id=68076&skuId=497643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4976\\/497643_sa.jpg\"}', 'upc' => '075021324824', 'provider' => 'bestbuy'],\n ['name' => \"Portfolio (Reissue) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portfolio-reissue-cd/497689.p?id=2229003&skuId=497689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4976\\/497689.jpg\"}', 'upc' => '042284261425', 'provider' => 'bestbuy'],\n ['name' => \"Kingdom Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kingdom-come-cd/497698.p?id=1486785&skuId=497698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497698_sa.jpg\"}', 'upc' => '042283536821', 'provider' => 'bestbuy'],\n ['name' => \"In Your Face - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-your-face-cd/497705.p?id=1457936&skuId=497705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497705_sa.jpg\"}', 'upc' => '042283919228', 'provider' => 'bestbuy'],\n ['name' => \"Raw Sienna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raw-sienna-cd/497876.p?id=97965&skuId=497876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0497\\/0497876_sa.jpg\"}', 'upc' => '042284401623', 'provider' => 'bestbuy'],\n ['name' => \"Looking In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-in-cd/497885.p?id=97963&skuId=497885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=497885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4978\\/497885.jpg\"}', 'upc' => '042284401722', 'provider' => 'bestbuy'],\n ['name' => \"Broken English - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-english-cd/498045.p?id=2387961&skuId=498045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4980\\/498045_sa.jpg\"}', 'upc' => '042284235525', 'provider' => 'bestbuy'],\n ['name' => \"Light as a Feather - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/light-as-a-feather-cd/498189.p?id=172358&skuId=498189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498189_sa.jpg\"}', 'upc' => '042282714824', 'provider' => 'bestbuy'],\n ['name' => \"Old and New Dreams [1979] [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-and-new-dreams-1979-digdownload-cd/498223.p?id=69685&skuId=498223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4982\\/498223.jpg\"}', 'upc' => '042282937926', 'provider' => 'bestbuy'],\n ['name' => \"Naturally - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naturally-cd/498287.p?id=76584&skuId=498287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498287_sa.jpg\"}', 'upc' => '042283004221', 'provider' => 'bestbuy'],\n ['name' => \"Word Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/word-up-cd/498296.p?id=76649&skuId=498296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498296_sa.jpg\"}', 'upc' => '042283026520', 'provider' => 'bestbuy'],\n ['name' => \"8 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/8-cd/498303.p?id=76586&skuId=498303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498303_sa.jpg\"}', 'upc' => '042281115226', 'provider' => 'bestbuy'],\n ['name' => \"Shades - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shades-cd/498312.p?id=76589&skuId=498312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4983\\/498312_sa.jpg\"}', 'upc' => '042280010522', 'provider' => 'bestbuy'],\n ['name' => \"Butch Cassidy and the Sundance Kid [Original... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/butch-cassidy-and-the-sundance-kid-original-cd-original-soundtrack/498321.p?id=76402&skuId=498321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498321_sa.jpg\"}', 'upc' => '075021315921', 'provider' => 'bestbuy'],\n ['name' => \"The Breakfast Club [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-breakfast-club-original-soundtrack-cd-original-soundtrack/498394.p?id=75800&skuId=498394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4983\\/498394_sa.jpg\"}', 'upc' => '075021329423', 'provider' => 'bestbuy'],\n ['name' => \"Dead City Radio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-city-radio-cd/498438.p?id=76380&skuId=498438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4984\\/498438_sa.jpg\"}', 'upc' => '042284626422', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds & Rust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-rust-cd/498713.p?id=73697&skuId=498713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498713_sa.jpg\"}', 'upc' => '075021323322', 'provider' => 'bestbuy'],\n ['name' => \"Bill & Ted's Excellent Adventure - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-teds-excellent-adventure-cd-original-soundtrack/498777.p?id=74661&skuId=498777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498777_sa.jpg\"}', 'upc' => '075021391529', 'provider' => 'bestbuy'],\n ['name' => \"Blues in the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-in-the-night-cd/498811.p?id=3522199&skuId=498811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4988\\/498811.jpg\"}', 'upc' => '042283329324', 'provider' => 'bestbuy'],\n ['name' => \"Into The Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-fire-cd/498839.p?id=2293973&skuId=498839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4988\\/498839.jpg\"}', 'upc' => '075021331327', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' into the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-into-the-night-cd/498928.p?id=101623&skuId=498928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4989\\/498928.jpg\"}', 'upc' => '075021321625', 'provider' => 'bestbuy'],\n ['name' => \"Laid Back [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laid-back-remaster-cd/498991.p?id=72795&skuId=498991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=498991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0498\\/0498991_sa.jpg\"}', 'upc' => '042283194120', 'provider' => 'bestbuy'],\n ['name' => \"Barry White's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barry-whites-greatest-hits-cd/499053.p?id=103874&skuId=499053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/4990\\/499053_sa.jpg\"}', 'upc' => '042282278227', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Nina Simone [PolyGram] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-nina-simone-polygram-cd/499106.p?id=70950&skuId=499106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499106_sa.jpg\"}', 'upc' => '042282284624', 'provider' => 'bestbuy'],\n ['name' => \"Nothing to Fear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-to-fear-cd/499268.p?id=93834&skuId=499268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499268_sa.jpg\"}', 'upc' => '075021325128', 'provider' => 'bestbuy'],\n ['name' => \"Rising Force - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rising-force-cd/499286.p?id=90283&skuId=499286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499286_sa.jpg\"}', 'upc' => '042282532428', 'provider' => 'bestbuy'],\n ['name' => \"Nightclubbing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nightclubbing-cd/499339.p?id=2484338&skuId=499339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499339_sa.jpg\"}', 'upc' => '042284236829', 'provider' => 'bestbuy'],\n ['name' => \"Island Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/island-life-cd/499348.p?id=87273&skuId=499348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499348_sa.jpg\"}', 'upc' => '042284245326', 'provider' => 'bestbuy'],\n ['name' => \"Warm Leatherette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-leatherette-cd/499357.p?id=87278&skuId=499357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499357_sa.jpg\"}', 'upc' => '042284261128', 'provider' => 'bestbuy'],\n ['name' => \"Dynasty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynasty-cd/499384.p?id=281460&skuId=499384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/4993\\/499384.jpg\"}', 'upc' => '042281277023', 'provider' => 'bestbuy'],\n ['name' => \"Walkman Jazz: Astrud Gilberto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walkman-jazz-astrud-gilberto-cd/499393.p?id=66650&skuId=499393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499393_sa.jpg\"}', 'upc' => '042283136922', 'provider' => 'bestbuy'],\n ['name' => \"Very Best Of Connie Francis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-best-of-connie-francis-cd/499437.p?id=82812&skuId=499437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=499437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0499\\/0499437_sa.jpg\"}', 'upc' => '042282756923', 'provider' => 'bestbuy'],\n ['name' => \"There's No Stopping Your Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theres-no-stopping-your-heart-cd/500817.p?id=94138&skuId=500817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=500817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5008\\/500817_sa.jpg\"}', 'upc' => '715187743427', 'provider' => 'bestbuy'],\n ['name' => \"Back Together Again (Arg) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-together-again-arg-cd/501905.p?id=3186964&skuId=501905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=501905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0501\\/0501905_sa.jpg\"}', 'upc' => '081227960049', 'provider' => 'bestbuy'],\n ['name' => \"The Legacy [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legacy-pa-cd/510272.p?id=101486&skuId=510272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=510272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0510\\/0510272_sa.jpg\"}', 'upc' => '075678174124', 'provider' => 'bestbuy'],\n ['name' => \"Chicken Skin Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicken-skin-music-cd/512289.p?id=78602&skuId=512289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=512289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5122\\/512289_sa.jpg\"}', 'upc' => '075992723121', 'provider' => 'bestbuy'],\n ['name' => \"The Patsy Cline Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-patsy-cline-story-cd/517596.p?id=78071&skuId=517596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=517596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0517\\/0517596_sa.jpg\"}', 'upc' => '076732403822', 'provider' => 'bestbuy'],\n ['name' => \"Dance My Children, Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-my-children-dance-cd/518096.p?id=97812&skuId=518096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0518\\/0518096_sa.jpg\"}', 'upc' => '016351650320', 'provider' => 'bestbuy'],\n ['name' => \"No More to the Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-more-to-the-dance-cd/518112.p?id=98733&skuId=518112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5181\\/518112_sa.jpg\"}', 'upc' => '016351796929', 'provider' => 'bestbuy'],\n ['name' => \"Nobody Move Nobody Get Hurt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nobody-move-nobody-get-hurt-cd/518121.p?id=104953&skuId=518121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5181\\/518121.jpg\"}', 'upc' => '016351481528', 'provider' => 'bestbuy'],\n ['name' => \"Black Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-woman-cd/518149.p?id=92519&skuId=518149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5181\\/518149_sa.jpg\"}', 'upc' => '016351431127', 'provider' => 'bestbuy'],\n ['name' => \"Reggae Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reggae-street-cd/518158.p?id=91666&skuId=518158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5181\\/518158_sa.jpg\"}', 'upc' => '016351430427', 'provider' => 'bestbuy'],\n ['name' => \"Big Ship - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-ship-cd/518176.p?id=91192&skuId=518176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5181\\/518176_sa.jpg\"}', 'upc' => '016351480828', 'provider' => 'bestbuy'],\n ['name' => \"Yemenite Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yemenite-songs-cd/518201.p?id=85083&skuId=518201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0518\\/0518201_sa.jpg\"}', 'upc' => '016351640222', 'provider' => 'bestbuy'],\n ['name' => \"The Indestructible Beat of Soweto, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-indestructible-beat-of-soweto-vol-1-cd-various/518247.p?id=99746&skuId=518247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0518\\/0518247_sa.jpg\"}', 'upc' => '016351433329', 'provider' => 'bestbuy'],\n ['name' => \"Two Sevens Clash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-sevens-clash-cd/518309.p?id=79447&skuId=518309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0518\\/0518309_sa.jpg\"}', 'upc' => '016351440129', 'provider' => 'bestbuy'],\n ['name' => \"God, Time & Casuality - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-time-casuality-cd/518318.p?id=81883&skuId=518318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5183\\/518318_sa.jpg\"}', 'upc' => '016351970626', 'provider' => 'bestbuy'],\n ['name' => \"Prisoner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prisoner-cd/518336.p?id=81010&skuId=518336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5183\\/518336_sa.jpg\"}', 'upc' => '016351437327', 'provider' => 'bestbuy'],\n ['name' => \"Culture at Work - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/culture-at-work-cd/518345.p?id=79436&skuId=518345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5183\\/518345_sa.jpg\"}', 'upc' => '016351434722', 'provider' => 'bestbuy'],\n ['name' => \"Clannad in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clannad-in-concert-cd/518559.p?id=77876&skuId=518559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=518559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5185\\/518559_sa.jpg\"}', 'upc' => '016351793027', 'provider' => 'bestbuy'],\n ['name' => \"Dr. Buzzard's Original Savannah Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dr-buzzards-original-savannah-band-cd/519674.p?id=80859&skuId=519674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=519674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0519\\/0519674_sa.jpg\"}', 'upc' => '078635150421', 'provider' => 'bestbuy'],\n ['name' => \"The Legendary Italian Westerns - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legendary-italian-westerns-cd-original-soundtrack/520010.p?id=92287&skuId=520010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=520010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0520\\/0520010_sa.jpg\"}', 'upc' => '078635997422', 'provider' => 'bestbuy'],\n ['name' => \"The Instant Monty Python CD Collection, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-instant-monty-python-cd-collection-vol-2-cd/520065.p?id=92159&skuId=520065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=520065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5200\\/520065_sa.jpg\"}', 'upc' => '078221829625', 'provider' => 'bestbuy'],\n ['name' => \"Gone With The Wind: Classic Film Score - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gone-with-the-wind-classic-film-score-cd/520314.p?id=2066501&skuId=520314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=520314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0520\\/0520314_sa.jpg\"}', 'upc' => '078635045222', 'provider' => 'bestbuy'],\n ['name' => \"All Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/520626.p?id=98233&skuId=520626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=520626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0520\\/0520626_sa.jpg\"}', 'upc' => '078635687620', 'provider' => 'bestbuy'],\n ['name' => \"Steelbands of Trinidad & Tobago [Delos 4011] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steelbands-of-trinidad-tobago-delos-4011-cd-various/521527.p?id=100289&skuId=521527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=521527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5215\\/521527.jpg\"}', 'upc' => '013491401126', 'provider' => 'bestbuy'],\n ['name' => \"Winds of Change - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winds-of-change-cd/521732.p?id=86852&skuId=521732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=521732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5217\\/521732.jpg\"}', 'upc' => '078635437225', 'provider' => 'bestbuy'],\n ['name' => \"Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friends-cd/521750.p?id=103522&skuId=521750&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=521750', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5217\\/521750_sa.jpg\"}', 'upc' => '078221839822', 'provider' => 'bestbuy'],\n ['name' => \"Clam Dip & Other Delights [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clam-dip-other-delights-ep-cd/521867.p?id=99514&skuId=521867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=521867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5218\\/521867_sa.jpg\"}', 'upc' => '035058814422', 'provider' => 'bestbuy'],\n ['name' => \"Klez! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/klez-cd/522599.p?id=88235&skuId=522599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5225\\/522599.jpg\"}', 'upc' => '015707944922', 'provider' => 'bestbuy'],\n ['name' => \"Wild Wild West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-wild-west-cd/522740.p?id=81679&skuId=522740&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522740', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0522\\/0522740_sa.jpg\"}', 'upc' => '075678187124', 'provider' => 'bestbuy'],\n ['name' => \"The Best of England Dan & John Ford Coley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-england-dan-john-ford-coley-cd/522768.p?id=81569&skuId=522768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5227\\/522768.jpg\"}', 'upc' => '075679044129', 'provider' => 'bestbuy'],\n ['name' => \"What Were Once Vices Are Now Habits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-were-once-vices-are-now-habits-cd/522777.p?id=80776&skuId=522777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0522\\/0522777_sa.jpg\"}', 'upc' => '075992728027', 'provider' => 'bestbuy'],\n ['name' => \"Mean Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mean-business-cd/522795.p?id=82269&skuId=522795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0522\\/0522795_sa.jpg\"}', 'upc' => '075678162824', 'provider' => 'bestbuy'],\n ['name' => \"In the Right Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-right-place-cd/522802.p?id=80889&skuId=522802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5228\\/522802_sa.jpg\"}', 'upc' => '075678036026', 'provider' => 'bestbuy'],\n ['name' => \"Stampede - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stampede-cd/522875.p?id=80772&skuId=522875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5228\\/522875_sa.jpg\"}', 'upc' => '075992728928', 'provider' => 'bestbuy'],\n ['name' => \"Livin' on the Fault Line - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livin-on-the-fault-line-cd/522884.p?id=80769&skuId=522884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5228\\/522884_sa.jpg\"}', 'upc' => '075992731522', 'provider' => 'bestbuy'],\n ['name' => \"Penguin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penguin-cd/522919.p?id=82442&skuId=522919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5229\\/522919_sa.jpg\"}', 'upc' => '075992617826', 'provider' => 'bestbuy'],\n ['name' => \"Mirage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mirage-cd/522928.p?id=82440&skuId=522928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5229\\/522928_sa.jpg\"}', 'upc' => '075992360722', 'provider' => 'bestbuy'],\n ['name' => \"Heroes Are Hard to Find - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heroes-are-hard-to-find-cd/522937.p?id=82437&skuId=522937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5229\\/522937_sa.jpg\"}', 'upc' => '075992721622', 'provider' => 'bestbuy'],\n ['name' => \"Bare Trees - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bare-trees-cd/522946.p?id=82428&skuId=522946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5229\\/522946_sa.jpg\"}', 'upc' => '075992724029', 'provider' => 'bestbuy'],\n ['name' => \"Best Of [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-import-cd/522955.p?id=1391314&skuId=522955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5229\\/522955.jpg\"}', 'upc' => '075678158124', 'provider' => 'bestbuy'],\n ['name' => \"Then Play On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-play-on-cd/522982.p?id=2750275&skuId=522982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0522\\/0522982_sa.jpg\"}', 'upc' => '075992744829', 'provider' => 'bestbuy'],\n ['name' => \"Kiln House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kiln-house-cd/522991.p?id=82439&skuId=522991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=522991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0522\\/0522991_sa.jpg\"}', 'upc' => '075992745321', 'provider' => 'bestbuy'],\n ['name' => \"Future Games - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/future-games-cd/523008.p?id=82435&skuId=523008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5230\\/523008_sa.jpg\"}', 'upc' => '075992745826', 'provider' => 'bestbuy'],\n ['name' => \"Cool from the Wire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cool-from-the-wire-cd/523017.p?id=80538&skuId=523017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523017_sa.jpg\"}', 'upc' => '075678183621', 'provider' => 'bestbuy'],\n ['name' => \"Freedom of Choice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freedom-of-choice-cd/523044.p?id=80298&skuId=523044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5230\\/523044.jpg\"}', 'upc' => '075992343527', 'provider' => 'bestbuy'],\n ['name' => \"Q: Are We Not Men? A: We Are Devo! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/q-are-we-not-men-a-we-are-devo-cd/523062.p?id=80304&skuId=523062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5230\\/523062.jpg\"}', 'upc' => '075992736428', 'provider' => 'bestbuy'],\n ['name' => \"The Drifters' Golden Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-drifters-golden-hits-cd/523080.p?id=80969&skuId=523080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5230\\/523080_sa.jpg\"}', 'upc' => '075678144028', 'provider' => 'bestbuy'],\n ['name' => \"Dueling Banjos - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dueling-banjos-cd-original-soundtrack/523115.p?id=80152&skuId=523115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5231\\/523115_sa.jpg\"}', 'upc' => '075992726825', 'provider' => 'bestbuy'],\n ['name' => \"On Tour with Eric Clapton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-tour-with-eric-clapton-cd/523124.p?id=2292053&skuId=523124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5231\\/523124_sa.jpg\"}', 'upc' => '075679039729', 'provider' => 'bestbuy'],\n ['name' => \"Affinity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/affinity-cd/523213.p?id=66090&skuId=523213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523213_sa.jpg\"}', 'upc' => '075992738729', 'provider' => 'bestbuy'],\n ['name' => \"The Golden Hits of the Everly Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-golden-hits-of-the-everly-brothers-cd/523222.p?id=81752&skuId=523222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523222_sa.jpg\"}', 'upc' => '075992715928', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Everly Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-everly-brothers-cd/523231.p?id=81761&skuId=523231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5232\\/523231_sa.jpg\"}', 'upc' => '075992716123', 'provider' => 'bestbuy'],\n ['name' => \"Broadcast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broadcast-cd/523295.p?id=79499&skuId=523295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5232\\/523295_sa.jpg\"}', 'upc' => '077778600220', 'provider' => 'bestbuy'],\n ['name' => \"Christopher Cross - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christopher-cross-cd/523357.p?id=79280&skuId=523357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5233\\/523357_sa.jpg\"}', 'upc' => '075992338325', 'provider' => 'bestbuy'],\n ['name' => \"The Rodney Crowell Collection [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rodney-crowell-collection-slipcase-cd/523428.p?id=79335&skuId=523428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523428_sa.jpg\"}', 'upc' => '075992596527', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Collection: When a Man Loves a Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-collection-when-a-man-loves-a-woman-cd/523464.p?id=99127&skuId=523464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5234\\/523464_sa.jpg\"}', 'upc' => '075678021220', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Percy Sledge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-percy-sledge-cd/523473.p?id=99124&skuId=523473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5234\\/523473_sa.jpg\"}', 'upc' => '075678144325', 'provider' => 'bestbuy'],\n ['name' => \"Boz Scaggs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boz-scaggs-cd/523482.p?id=97994&skuId=523482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523482_sa.jpg\"}', 'upc' => '075678154522', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Spinners [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-spinners-atlantic-cd/523516.p?id=99857&skuId=523516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523516_sa.jpg\"}', 'upc' => '075678154720', 'provider' => 'bestbuy'],\n ['name' => \"No Secrets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-secrets-cd/523543.p?id=98776&skuId=523543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523543_sa.jpg\"}', 'upc' => '075596068420', 'provider' => 'bestbuy'],\n ['name' => \"Carly Simon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carly-simon-cd/523552.p?id=98769&skuId=523552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5235\\/523552_sa.jpg\"}', 'upc' => '075596067225', 'provider' => 'bestbuy'],\n ['name' => \"Hotcakes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hotcakes-cd/523561.p?id=98774&skuId=523561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523561_sa.jpg\"}', 'upc' => '075596059428', 'provider' => 'bestbuy'],\n ['name' => \"Hall of the Mountain King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hall-of-the-mountain-king-cd/523614.p?id=97948&skuId=523614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523614_sa.jpg\"}', 'upc' => '075678177521', 'provider' => 'bestbuy'],\n ['name' => \"Gutter Ballet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gutter-ballet-cd/523623.p?id=97947&skuId=523623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5236\\/523623.jpg\"}', 'upc' => '075678200823', 'provider' => 'bestbuy'],\n ['name' => \"Power of the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-of-the-night-cd/523632.p?id=97949&skuId=523632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523632_sa.jpg\"}', 'upc' => '075678124723', 'provider' => 'bestbuy'],\n ['name' => \"Hasten Down the Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hasten-down-the-wind-cd/523776.p?id=97287&skuId=523776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523776_sa.jpg\"}', 'upc' => '075596061025', 'provider' => 'bestbuy'],\n ['name' => \"Simple Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simple-dreams-cd/523785.p?id=97295&skuId=523785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523785_sa.jpg\"}', 'upc' => '075596051026', 'provider' => 'bestbuy'],\n ['name' => \"Talk Is Cheap - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-is-cheap-cd/523801.p?id=96618&skuId=523801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523801_sa.jpg\"}', 'upc' => '077778607922', 'provider' => 'bestbuy'],\n ['name' => \"Romance 1600 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romance-1600-cd/523829.p?id=1441882&skuId=523829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5238\\/523829_sa.jpg\"}', 'upc' => '075992531726', 'provider' => 'bestbuy'],\n ['name' => \"Nurds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nurds-cd/523847.p?id=96901&skuId=523847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5238\\/523847_sa.jpg\"}', 'upc' => '075992347525', 'provider' => 'bestbuy'],\n ['name' => \"Floodland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/floodland-cd/523856.p?id=98975&skuId=523856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523856_sa.jpg\"}', 'upc' => '075596076227', 'provider' => 'bestbuy'],\n ['name' => \"Double Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-time-cd/523883.p?id=96207&skuId=523883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523883_sa.jpg\"}', 'upc' => '075992730624', 'provider' => 'bestbuy'],\n ['name' => \"In Harmony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-harmony-cd/523892.p?id=98355&skuId=523892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0523\\/0523892_sa.jpg\"}', 'upc' => '075992348126', 'provider' => 'bestbuy'],\n ['name' => \"Cupid & Psyche 85 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cupid-psyche-85-cd/523936.p?id=98159&skuId=523936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5239\\/523936_sa.jpg\"}', 'upc' => '075992530224', 'provider' => 'bestbuy'],\n ['name' => \"Rock a Little - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-a-little-cd/523972.p?id=93301&skuId=523972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=523972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5239\\/523972_sa.jpg\"}', 'upc' => '075679047922', 'provider' => 'bestbuy'],\n ['name' => \"The Other Side of the Mirror - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-side-of-the-mirror-cd/524007.p?id=93304&skuId=524007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524007_sa.jpg\"}', 'upc' => '075679124524', 'provider' => 'bestbuy'],\n ['name' => \"On the Track - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/on-the-track-cd/524016.p?id=96210&skuId=524016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524016_sa.jpg\"}', 'upc' => '075992729727', 'provider' => 'bestbuy'],\n ['name' => \"Can't Look Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-look-away-cd/524025.p?id=95788&skuId=524025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524025_sa.jpg\"}', 'upc' => '075596078122', 'provider' => 'bestbuy'],\n ['name' => \"John Prine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-prine-cd/524034.p?id=95516&skuId=524034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5240\\/524034_sa.jpg\"}', 'upc' => '075678154126', 'provider' => 'bestbuy'],\n ['name' => \"Lovesexy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovesexy-cd/524043.p?id=2387866&skuId=524043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524043_sa.jpg\"}', 'upc' => '075992572026', 'provider' => 'bestbuy'],\n ['name' => \"Around the World in a Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/around-the-world-in-a-day-cd/524052.p?id=95495&skuId=524052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524052_sa.jpg\"}', 'upc' => '075992528627', 'provider' => 'bestbuy'],\n ['name' => \"Parade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parade-cd/524061.p?id=95496&skuId=524061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524061_sa.jpg\"}', 'upc' => '075992539524', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Revenge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-revenge-cd/524070.p?id=95521&skuId=524070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524070_sa.jpg\"}', 'upc' => '075678143021', 'provider' => 'bestbuy'],\n ['name' => \"Common Sense - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-sense-cd/524089.p?id=95512&skuId=524089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5240\\/524089_sa.jpg\"}', 'upc' => '075678149122', 'provider' => 'bestbuy'],\n ['name' => \"Prince - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-cd/524098.p?id=95485&skuId=524098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524098_sa.jpg\"}', 'upc' => '075992740227', 'provider' => 'bestbuy'],\n ['name' => \"Maxi Priest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maxi-priest-cd/524105.p?id=95459&skuId=524105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524105_sa.jpg\"}', 'upc' => '077778607526', 'provider' => 'bestbuy'],\n ['name' => \"The Idiot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-idiot-cd/524132.p?id=95185&skuId=524132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5241\\/524132_sa.jpg\"}', 'upc' => '077778615224', 'provider' => 'bestbuy'],\n ['name' => \"Lust for Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lust-for-life-cd/524141.p?id=95184&skuId=524141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524141_sa.jpg\"}', 'upc' => '077778615323', 'provider' => 'bestbuy'],\n ['name' => \"Imaginary Voyage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imaginary-voyage-cd/524276.p?id=70094&skuId=524276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524276_sa.jpg\"}', 'upc' => '075678153525', 'provider' => 'bestbuy'],\n ['name' => \"Enigmatic Ocean - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enigmatic-ocean-cd/524285.p?id=70092&skuId=524285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524285_sa.jpg\"}', 'upc' => '075678151224', 'provider' => 'bestbuy'],\n ['name' => \"Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/album-cd/524329.p?id=95636&skuId=524329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524329_sa.jpg\"}', 'upc' => '075596043823', 'provider' => 'bestbuy'],\n ['name' => \"The Flowers of Romance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-flowers-of-romance-cd/524356.p?id=95640&skuId=524356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5243\\/524356_sa.jpg\"}', 'upc' => '075992353625', 'provider' => 'bestbuy'],\n ['name' => \"Taking Over [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taking-over-pa-cd/524365.p?id=94198&skuId=524365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524365_sa.jpg\"}', 'upc' => '075678173523', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Rascals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-rascals-cd/524427.p?id=96064&skuId=524427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524427_sa.jpg\"}', 'upc' => '075992760522', 'provider' => 'bestbuy'],\n ['name' => \"Reach for the Sky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reach-for-the-sky-cd/524436.p?id=96086&skuId=524436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524436_sa.jpg\"}', 'upc' => '075678192920', 'provider' => 'bestbuy'],\n ['name' => \"Dancing Undercover - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-undercover-cd/524454.p?id=96080&skuId=524454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524454_sa.jpg\"}', 'upc' => '075678168321', 'provider' => 'bestbuy'],\n ['name' => \"Sail Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sail-away-cd/524472.p?id=279593&skuId=524472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524472_sa.jpg\"}', 'upc' => '075992720328', 'provider' => 'bestbuy'],\n ['name' => \"Little Criminals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-criminals-cd/524490.p?id=93246&skuId=524490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524490_sa.jpg\"}', 'upc' => '075992732123', 'provider' => 'bestbuy'],\n ['name' => \"Beautiful Vision - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/beautiful-vision-cd/524560.p?id=92305&skuId=524560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524560_sa.jpg\"}', 'upc' => '075992365222', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/524588.p?id=92290&skuId=524588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524588_sa.jpg\"}', 'upc' => '075992630528', 'provider' => 'bestbuy'],\n ['name' => \"A Woman's Point of View - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-womans-point-of-view-cd/524711.p?id=92617&skuId=524711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524711_sa.jpg\"}', 'upc' => '075596079129', 'provider' => 'bestbuy'],\n ['name' => \"Lonely Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lonely-woman-cd/524739.p?id=69239&skuId=524739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5247\\/524739.jpg\"}', 'upc' => '075679066527', 'provider' => 'bestbuy'],\n ['name' => \"Song to a Seagull - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-to-a-seagull-cd/524775.p?id=91931&skuId=524775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524775_sa.jpg\"}', 'upc' => '075992744126', 'provider' => 'bestbuy'],\n ['name' => \"Clouds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clouds-cd/524784.p?id=91918&skuId=524784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5247\\/524784_sa.jpg\"}', 'upc' => '075992744621', 'provider' => 'bestbuy'],\n ['name' => \"Ladies of the Canyon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ladies-of-the-canyon-cd/524793.p?id=91926&skuId=524793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524793_sa.jpg\"}', 'upc' => '075992745024', 'provider' => 'bestbuy'],\n ['name' => \"The Voice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-voice-cd/524828.p?id=68919&skuId=524828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524828_sa.jpg\"}', 'upc' => '075596036627', 'provider' => 'bestbuy'],\n ['name' => \"Metal Church - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/metal-church-cd/524846.p?id=91498&skuId=524846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5248\\/524846_sa.jpg\"}', 'upc' => '075596047128', 'provider' => 'bestbuy'],\n ['name' => \"Blessing in Disguise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blessing-in-disguise-cd/524855.p?id=91496&skuId=524855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5248\\/524855_sa.jpg\"}', 'upc' => '075596081726', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Herbie Mann - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-herbie-mann-cd/524917.p?id=68731&skuId=524917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524917_sa.jpg\"}', 'upc' => '075678136924', 'provider' => 'bestbuy'],\n ['name' => \"Vocalese - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vocalese-cd/524926.p?id=90389&skuId=524926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5249\\/524926_sa.jpg\"}', 'upc' => '075678126628', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/524935.p?id=2389761&skuId=524935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524935_sa.jpg\"}', 'upc' => '075678172328', 'provider' => 'bestbuy'],\n ['name' => \"The Manhattan Transfer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-manhattan-transfer-cd/524953.p?id=90383&skuId=524953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0524\\/0524953_sa.jpg\"}', 'upc' => '075678149320', 'provider' => 'bestbuy'],\n ['name' => \"Forever Changes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-changes-cd/524980.p?id=216471&skuId=524980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=524980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5249\\/524980_sa.jpg\"}', 'upc' => '075596065627', 'provider' => 'bestbuy'],\n ['name' => \"Dixie Chicken - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dixie-chicken-cd/525015.p?id=3454890&skuId=525015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5250\\/525015_sa.jpg\"}', 'upc' => '075992727020', 'provider' => 'bestbuy'],\n ['name' => \"Last Record Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-record-album-cd/525024.p?id=89358&skuId=525024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5250\\/525024_sa.jpg\"}', 'upc' => '075992729628', 'provider' => 'bestbuy'],\n ['name' => \"Sailin' Shoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sailin-shoes-cd/525042.p?id=89355&skuId=525042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525042_sa.jpg\"}', 'upc' => '075992725828', 'provider' => 'bestbuy'],\n ['name' => \"Paradise and Lunch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paradise-and-lunch-cd/525051.p?id=78606&skuId=525051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5250\\/525051_sa.jpg\"}', 'upc' => '075992721226', 'provider' => 'bestbuy'],\n ['name' => \"Midnite Dynamite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnite-dynamite-cd/525060.p?id=88225&skuId=525060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525060_sa.jpg\"}', 'upc' => '075678126727', 'provider' => 'bestbuy'],\n ['name' => \"Kwamé the Boy Genius: Featuring a New Beginning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kwame-the-boy-genius-featuring-a-new-beginning-cd/525079.p?id=88468&skuId=525079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5250\\/525079.jpg\"}', 'upc' => '075678194122', 'provider' => 'bestbuy'],\n ['name' => \"The Big Throwdown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-throwdown-cd/525140.p?id=89115&skuId=525140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5251\\/525140_sa.jpg\"}', 'upc' => '075678177323', 'provider' => 'bestbuy'],\n ['name' => \"El Rayo-X - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-rayo-x-cd/525159.p?id=89300&skuId=525159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5251\\/525159_sa.jpg\"}', 'upc' => '075596057325', 'provider' => 'bestbuy'],\n ['name' => \"If You Could Read My Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-you-could-read-my-mind-cd/525186.p?id=89253&skuId=525186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5251\\/525186_sa.jpg\"}', 'upc' => '075992745123', 'provider' => 'bestbuy'],\n ['name' => \"The Wonderful World of Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wonderful-world-of-jazz-cd/525202.p?id=68540&skuId=525202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5252\\/525202_sa.jpg\"}', 'upc' => '075679097927', 'provider' => 'bestbuy'],\n ['name' => \"Lola Versus the Powerman and the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lola-versus-the-powerman-and-the-cd/525211.p?id=88121&skuId=525211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525211_sa.jpg\"}', 'upc' => '075992745529', 'provider' => 'bestbuy'],\n ['name' => \"2 Hype - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-hype-cd/525220.p?id=274639&skuId=525220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5252\\/525220.jpg\"}', 'upc' => '010912162826', 'provider' => 'bestbuy'],\n ['name' => \"In-A-Gadda-Da-Vida - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/in-a-gadda-da-vida-cd/525284.p?id=86321&skuId=525284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525284_sa.jpg\"}', 'upc' => '075679039224', 'provider' => 'bestbuy'],\n ['name' => \"Candy Apple Grey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/candy-apple-grey-cd/525346.p?id=85971&skuId=525346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5253\\/525346_sa.jpg\"}', 'upc' => '075992538527', 'provider' => 'bestbuy'],\n ['name' => \"Cross That Line - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-that-line-cd/525408.p?id=87280&skuId=525408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5254\\/525408_sa.jpg\"}', 'upc' => '075596079426', 'provider' => 'bestbuy'],\n ['name' => \"Human's Lib - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/humans-lib-cd/525417.p?id=87282&skuId=525417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5254\\/525417_sa.jpg\"}', 'upc' => '075596034623', 'provider' => 'bestbuy'],\n ['name' => \"Dream into Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-into-action-cd/525426.p?id=87281&skuId=525426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5254\\/525426_sa.jpg\"}', 'upc' => '075596039024', 'provider' => 'bestbuy'],\n ['name' => \"The Heart of Saturday Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-heart-of-saturday-night-cd/525462.p?id=2389889&skuId=525462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525462_sa.jpg\"}', 'upc' => '075596059725', 'provider' => 'bestbuy'],\n ['name' => \"Small Change - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/small-change-cd/525471.p?id=103326&skuId=525471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525471_sa.jpg\"}', 'upc' => '075596061223', 'provider' => 'bestbuy'],\n ['name' => \"Vanilla Fudge [1967] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanilla-fudge-1967-cd/525505.p?id=102989&skuId=525505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525505_sa.jpg\"}', 'upc' => '075679039026', 'provider' => 'bestbuy'],\n ['name' => \"Stay Hungry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-hungry-cd/525569.p?id=1997513&skuId=525569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525569_sa.jpg\"}', 'upc' => '075678015625', 'provider' => 'bestbuy'],\n ['name' => \"Tom Tom Club - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-tom-club-cd/525612.p?id=2277152&skuId=525612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525612_sa.jpg\"}', 'upc' => '075992362825', 'provider' => 'bestbuy'],\n ['name' => \"What Time Is It? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-time-is-it-cd/525621.p?id=101887&skuId=525621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525621_sa.jpg\"}', 'upc' => '075992370127', 'provider' => 'bestbuy'],\n ['name' => \"Marquee Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marquee-moon-cd/525630.p?id=1534841&skuId=525630&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525630', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5256\\/525630_sa.jpg\"}', 'upc' => '075596061629', 'provider' => 'bestbuy'],\n ['name' => \"Mud Slide Slim and the Blue Horizon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mud-slide-slim-and-the-blue-horizon-cd/525685.p?id=101238&skuId=525685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525685_sa.jpg\"}', 'upc' => '075992725224', 'provider' => 'bestbuy'],\n ['name' => \"Here Today, Tomorrow Next Week! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-today-tomorrow-next-week-cd/525756.p?id=100732&skuId=525756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0525\\/0525756_sa.jpg\"}', 'upc' => '075596086028', 'provider' => 'bestbuy'],\n ['name' => \"Tower of Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tower-of-power-cd/525783.p?id=102095&skuId=525783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5257\\/525783_sa.jpg\"}', 'upc' => '075992726726', 'provider' => 'bestbuy'],\n ['name' => \"Back to Oakland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-oakland-cd/525792.p?id=102085&skuId=525792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5257\\/525792_sa.jpg\"}', 'upc' => '075992727921', 'provider' => 'bestbuy'],\n ['name' => \"The Stooges - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-stooges-cd/525827.p?id=100501&skuId=525827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5258\\/525827_sa.jpg\"}', 'upc' => '075596066723', 'provider' => 'bestbuy'],\n ['name' => \"Funhouse [Limited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funhouse-limited-cd/525836.p?id=100500&skuId=525836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5258\\/525836_sa.jpg\"}', 'upc' => '075596066921', 'provider' => 'bestbuy'],\n ['name' => \"Profile, Vol. 2: The Best of Emmylou Harris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/profile-vol-2-the-best-of-emmylou-harris-cd/525952.p?id=84865&skuId=525952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=525952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5259\\/525952_sa.jpg\"}', 'upc' => '075992516129', 'provider' => 'bestbuy'],\n ['name' => \"The Art of Tea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-of-tea-cd/526014.p?id=82885&skuId=526014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5260\\/526014_sa.jpg\"}', 'upc' => '075992722421', 'provider' => 'bestbuy'],\n ['name' => \"Highway 101 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highway-101-cd/526041.p?id=85366&skuId=526041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526041_sa.jpg\"}', 'upc' => '075992560825', 'provider' => 'bestbuy'],\n ['name' => \"Skin Dive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skin-dive-cd/526069.p?id=82883&skuId=526069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526069_sa.jpg\"}', 'upc' => '075992527521', 'provider' => 'bestbuy'],\n ['name' => \"Blow Your Cool! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blow-your-cool-cd/526078.p?id=85583&skuId=526078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5260\\/526078_sa.jpg\"}', 'upc' => '075596072823', 'provider' => 'bestbuy'],\n ['name' => \"Grateful Dead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grateful-dead-cd/526130.p?id=2065746&skuId=526130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5261\\/526130_sa.jpg\"}', 'upc' => '075992716727', 'provider' => 'bestbuy'],\n ['name' => \"Anthem of the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthem-of-the-sun-cd/526149.p?id=2305152&skuId=526149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526149_sa.jpg\"}', 'upc' => '075992717328', 'provider' => 'bestbuy'],\n ['name' => \"Aoxomoxoa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aoxomoxoa-cd/526158.p?id=279543&skuId=526158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5261\\/526158_sa.jpg\"}', 'upc' => '075992717823', 'provider' => 'bestbuy'],\n ['name' => \"Burchfield Nines - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burchfield-nines-cd/526167.p?id=82888&skuId=526167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526167_sa.jpg\"}', 'upc' => '075992735124', 'provider' => 'bestbuy'],\n ['name' => \"Best of the J. Geils Band [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-j-geils-band-atlantic-cd/526247.p?id=83442&skuId=526247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526247_sa.jpg\"}', 'upc' => '075678155727', 'provider' => 'bestbuy'],\n ['name' => \"Objects of Desire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/objects-of-desire-cd/526283.p?id=82879&skuId=526283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5262\\/526283_sa.jpg\"}', 'upc' => '075992364829', 'provider' => 'bestbuy'],\n ['name' => \"Blank Generation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blank-generation-cd/526345.p?id=85178&skuId=526345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526345_sa.jpg\"}', 'upc' => '075992613729', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/526381.p?id=85453&skuId=526381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5263\\/526381_sa.jpg\"}', 'upc' => '075992744720', 'provider' => 'bestbuy'],\n ['name' => \"Ready or Not - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ready-or-not-cd/526425.p?id=84014&skuId=526425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5264\\/526425.jpg\"}', 'upc' => '075678172823', 'provider' => 'bestbuy'],\n ['name' => \"Talk to Your Daughter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-to-your-daughter-cd/526434.p?id=82652&skuId=526434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526434_sa.jpg\"}', 'upc' => '075992564724', 'provider' => 'bestbuy'],\n ['name' => \"The Golden Age of Black Music: 1960-1970 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-golden-age-of-black-music-1960-1970-cd-various/526443.p?id=74937&skuId=526443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5264\\/526443.jpg\"}', 'upc' => '075678191121', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-blue-cd/526470.p?id=83584&skuId=526470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5264\\/526470_sa.jpg\"}', 'upc' => '075678178023', 'provider' => 'bestbuy'],\n ['name' => \"Live [ECD] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-ecd-remaster-cd/526522.p?id=83476&skuId=526522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526522_sa.jpg\"}', 'upc' => '075678267628', 'provider' => 'bestbuy'],\n ['name' => \"Aretha's Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arethas-jazz-cd/526540.p?id=82834&skuId=526540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526540_sa.jpg\"}', 'upc' => '075678123023', 'provider' => 'bestbuy'],\n ['name' => \"Frehley's Comet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frehleys-comet-cd/526577.p?id=82956&skuId=526577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526577_sa.jpg\"}', 'upc' => '075678174926', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Aretha Franklin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-aretha-franklin-cd/526586.p?id=82856&skuId=526586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526586_sa.jpg\"}', 'upc' => '075678128028', 'provider' => 'bestbuy'],\n ['name' => \"School's Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/schools-out-cd/526602.p?id=78658&skuId=526602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526602_sa.jpg\"}', 'upc' => '075992726023', 'provider' => 'bestbuy'],\n ['name' => \"Love It to Death - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-it-to-death-cd/526611.p?id=78653&skuId=526611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526611_sa.jpg\"}', 'upc' => '075992718721', 'provider' => 'bestbuy'],\n ['name' => \"Borderline - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/borderline-cd/526620.p?id=78601&skuId=526620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5266\\/526620_sa.jpg\"}', 'upc' => '075992348928', 'provider' => 'bestbuy'],\n ['name' => \"The Slide Area - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-slide-area-cd/526639.p?id=78607&skuId=526639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5266\\/526639_sa.jpg\"}', 'upc' => '075992365123', 'provider' => 'bestbuy'],\n ['name' => \"Get Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-rhythm-cd/526648.p?id=78603&skuId=526648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526648_sa.jpg\"}', 'upc' => '075992563925', 'provider' => 'bestbuy'],\n ['name' => \"Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-cd/526657.p?id=78605&skuId=526657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526657_sa.jpg\"}', 'upc' => '075992735520', 'provider' => 'bestbuy'],\n ['name' => \"Into the Purple Valley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-purple-valley-cd/526666.p?id=78604&skuId=526666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5266\\/526666_sa.jpg\"}', 'upc' => '075992720021', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Coasters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-coasters-cd/526862.p?id=78140&skuId=526862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5268\\/526862_sa.jpg\"}', 'upc' => '075992760423', 'provider' => 'bestbuy'],\n ['name' => \"Life, Love & Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-love-pain-cd/526871.p?id=78122&skuId=526871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5268\\/526871_sa.jpg\"}', 'upc' => '075992553124', 'provider' => 'bestbuy'],\n ['name' => \"Shake It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-it-up-cd/526906.p?id=76970&skuId=526906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526906_sa.jpg\"}', 'upc' => '075596058520', 'provider' => 'bestbuy'],\n ['name' => \"Key Lime Pie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/key-lime-pie-cd/526924.p?id=76686&skuId=526924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5269\\/526924.jpg\"}', 'upc' => '077778612728', 'provider' => 'bestbuy'],\n ['name' => \"Our Beloved Revolutionary Sweetheart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-beloved-revolutionary-sweetheart-cd/526933.p?id=76687&skuId=526933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526933_sa.jpg\"}', 'upc' => '077778605522', 'provider' => 'bestbuy'],\n ['name' => \"Reconciled - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reconciled-cd/526951.p?id=76616&skuId=526951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526951_sa.jpg\"}', 'upc' => '075596044028', 'provider' => 'bestbuy'],\n ['name' => \"Methods of Silence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/methods-of-silence-cd/526960.p?id=76651&skuId=526960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5269\\/526960.jpg\"}', 'upc' => '075678200229', 'provider' => 'bestbuy'],\n ['name' => \"Camelot - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/camelot-cd-original-soundtrack/526979.p?id=2224947&skuId=526979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5269\\/526979_sa.jpg\"}', 'upc' => '075992732529', 'provider' => 'bestbuy'],\n ['name' => \"The Catherine Wheel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-catherine-wheel-cd/526997.p?id=76476&skuId=526997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=526997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0526\\/0526997_sa.jpg\"}', 'upc' => '075992741828', 'provider' => 'bestbuy'],\n ['name' => \"The Paul Butterfield Blues Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-paul-butterfield-blues-band-cd/527013.p?id=76426&skuId=527013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527013_sa.jpg\"}', 'upc' => '075596064729', 'provider' => 'bestbuy'],\n ['name' => \"Buffalo Springfield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buffalo-springfield-cd/527031.p?id=176927&skuId=527031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5270\\/527031_sa.jpg\"}', 'upc' => '075679038920', 'provider' => 'bestbuy'],\n ['name' => \"Lives in the Balance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lives-in-the-balance-cd/527040.p?id=75935&skuId=527040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527040_sa.jpg\"}', 'upc' => '075596045728', 'provider' => 'bestbuy'],\n ['name' => \"Self Control - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/self-control-cd/527095.p?id=75740&skuId=527095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5270\\/527095_sa.jpg\"}', 'upc' => '075678014727', 'provider' => 'bestbuy'],\n ['name' => \"Lawyers in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lawyers-in-love-cd/527120.p?id=75934&skuId=527120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527120_sa.jpg\"}', 'upc' => '075596026826', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits (Rpkg) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/greatest-hits-rpkg-cd/527184.p?id=1378360&skuId=527184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5271\\/527184.jpg\"}', 'upc' => '081227646929', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Music Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-music-head-cd/527200.p?id=74356&skuId=527200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527200_sa.jpg\"}', 'upc' => '075678195921', 'provider' => 'bestbuy'],\n ['name' => \"Just Between Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-between-us-cd/527228.p?id=63586&skuId=527228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5272\\/527228.jpg\"}', 'upc' => '075678181320', 'provider' => 'bestbuy'],\n ['name' => \"Let Them Eat Bingo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-them-eat-bingo-cd/527237.p?id=74230&skuId=527237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5272\\/527237.jpg\"}', 'upc' => '075596092128', 'provider' => 'bestbuy'],\n ['name' => \"Strikes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/strikes-cd/527264.p?id=74865&skuId=527264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527264_sa.jpg\"}', 'upc' => '075679041920', 'provider' => 'bestbuy'],\n ['name' => \"Escenas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escenas-cd/527282.p?id=74945&skuId=527282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5272\\/527282_sa.jpg\"}', 'upc' => '075596043229', 'provider' => 'bestbuy'],\n ['name' => \"Agua de Luna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/agua-de-luna-cd/527291.p?id=74941&skuId=527291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5272\\/527291_sa.jpg\"}', 'upc' => '075596072120', 'provider' => 'bestbuy'],\n ['name' => \"Marauder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marauder-cd/527308.p?id=74863&skuId=527308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5273\\/527308.jpg\"}', 'upc' => '075679038524', 'provider' => 'bestbuy'],\n ['name' => \"Rough Diamonds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rough-diamonds-cd/527335.p?id=73657&skuId=527335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527335_sa.jpg\"}', 'upc' => '075679245229', 'provider' => 'bestbuy'],\n ['name' => \"Technical Ecstasy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/technical-ecstasy-cd/527344.p?id=74834&skuId=527344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5273\\/527344_sa.jpg\"}', 'upc' => '075992730525', 'provider' => 'bestbuy'],\n ['name' => \"Never Say Die! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-say-die-cd/527353.p?id=74830&skuId=527353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5273\\/527353_sa.jpg\"}', 'upc' => '075992735223', 'provider' => 'bestbuy'],\n ['name' => \"Heaven and Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heaven-and-hell-cd/527362.p?id=74826&skuId=527362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527362_sa.jpg\"}', 'upc' => '075992337229', 'provider' => 'bestbuy'],\n ['name' => \"Master of Reality - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/master-of-reality-cd/527371.p?id=74828&skuId=527371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527371_sa.jpg\"}', 'upc' => '075992725323', 'provider' => 'bestbuy'],\n ['name' => \"Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/vol-4-cd/527380.p?id=74837&skuId=527380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5273\\/527380_sa.jpg\"}', 'upc' => '075992725927', 'provider' => 'bestbuy'],\n ['name' => \"Sabbath Bloody Sabbath - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/sabbath-bloody-sabbath-cd/527399.p?id=74832&skuId=527399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5273\\/527399_sa.jpg\"}', 'upc' => '075992727228', 'provider' => 'bestbuy'],\n ['name' => \"Sabotage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sabotage-cd/527406.p?id=74833&skuId=527406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527406_sa.jpg\"}', 'upc' => '075992728720', 'provider' => 'bestbuy'],\n ['name' => \"Black Sabbath - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-sabbath-cd/527415.p?id=74822&skuId=527415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527415_sa.jpg\"}', 'upc' => '075992718523', 'provider' => 'bestbuy'],\n ['name' => \"Straight Shooter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/straight-shooter-cd/527433.p?id=73659&skuId=527433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527433_sa.jpg\"}', 'upc' => '075679243621', 'provider' => 'bestbuy'],\n ['name' => \"The Singles Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-singles-collection-cd/527479.p?id=72831&skuId=527479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5274\\/527479_sa.jpg\"}', 'upc' => '075678190421', 'provider' => 'bestbuy'],\n ['name' => \"In Flight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-flight-cd/527558.p?id=2389691&skuId=527558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5275\\/527558_sa.jpg\"}', 'upc' => '075992730822', 'provider' => 'bestbuy'],\n ['name' => \"Happiness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happiness-cd/527567.p?id=74402&skuId=527567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527567_sa.jpg\"}', 'upc' => '075678204722', 'provider' => 'bestbuy'],\n ['name' => \"Give Me the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/give-me-the-night-cd/527594.p?id=3356025&skuId=527594&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527594', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527594_sa.jpg\"}', 'upc' => '075992740623', 'provider' => 'bestbuy'],\n ['name' => \"Zebra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zebra-cd/527718.p?id=105283&skuId=527718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527718_sa.jpg\"}', 'upc' => '075678005428', 'provider' => 'bestbuy'],\n ['name' => \"Let My People Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-my-people-go-cd/527754.p?id=104431&skuId=527754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527754_sa.jpg\"}', 'upc' => '075992534420', 'provider' => 'bestbuy'],\n ['name' => \"Zapp II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zapp-ii-cd/527790.p?id=105189&skuId=527790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527790_sa.jpg\"}', 'upc' => '075992358323', 'provider' => 'bestbuy'],\n ['name' => \"Everybody Knows This Is Nowhere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everybody-knows-this-is-nowhere-cd/527898.p?id=2403069&skuId=527898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5278\\/527898_sa.jpg\"}', 'upc' => '075992724227', 'provider' => 'bestbuy'],\n ['name' => \"Neil Young - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/neil-young-cd/527905.p?id=105059&skuId=527905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5279\\/527905.jpg\"}', 'upc' => '075992744423', 'provider' => 'bestbuy'],\n ['name' => \"Yesterdays [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yesterdays-remaster-cd/527941.p?id=104992&skuId=527941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5279\\/527941_sa.jpg\"}', 'upc' => '075678268427', 'provider' => 'bestbuy'],\n ['name' => \"Time & A Word (Remastered) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-a-word-remastered-cd/527969.p?id=2434599&skuId=527969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0527\\/0527969_sa.jpg\"}', 'upc' => '075678268120', 'provider' => 'bestbuy'],\n ['name' => \"Yes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yes-cd/527978.p?id=104988&skuId=527978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=527978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5279\\/527978_sa.jpg\"}', 'upc' => '075678268021', 'provider' => 'bestbuy'],\n ['name' => \"The Best Is Yet to Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-is-yet-to-come-cd/528058.p?id=71898&skuId=528058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528058_sa.jpg\"}', 'upc' => '075596021524', 'provider' => 'bestbuy'],\n ['name' => \"Camouflage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/camouflage-cd/528129.p?id=100404&skuId=528129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528129_sa.jpg\"}', 'upc' => '075992509527', 'provider' => 'bestbuy'],\n ['name' => \"Loaded - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loaded-cd/528147.p?id=103082&skuId=528147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5281\\/528147_sa.jpg\"}', 'upc' => '075992761321', 'provider' => 'bestbuy'],\n ['name' => \"The Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-time-cd/528165.p?id=101886&skuId=528165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5281\\/528165_sa.jpg\"}', 'upc' => '075992359825', 'provider' => 'bestbuy'],\n ['name' => \"Stand By Me - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-by-me-cd-original-soundtrack/528209.p?id=100021&skuId=528209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528209_sa.jpg\"}', 'upc' => '075678167720', 'provider' => 'bestbuy'],\n ['name' => \"Poolside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poolside-cd/528245.p?id=93550&skuId=528245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5282\\/528245.jpg\"}', 'upc' => '075678164729', 'provider' => 'bestbuy'],\n ['name' => \"Cosmic Messenger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cosmic-messenger-cd/528281.p?id=70091&skuId=528281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528281_sa.jpg\"}', 'upc' => '075678155024', 'provider' => 'bestbuy'],\n ['name' => \"Trouble in Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trouble-in-paradise-cd/528290.p?id=93249&skuId=528290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528290_sa.jpg\"}', 'upc' => '075992375528', 'provider' => 'bestbuy'],\n ['name' => \"London 0 Hull 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/london-0-hull-4-cd/528307.p?id=85799&skuId=528307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5283\\/528307_sa.jpg\"}', 'upc' => '075596050128', 'provider' => 'bestbuy'],\n ['name' => \"Computer World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/computer-world-cd/528316.p?id=88405&skuId=528316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5283\\/528316.jpg\"}', 'upc' => '075596078924', 'provider' => 'bestbuy'],\n ['name' => \"Life Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-stories-cd/528334.p?id=68290&skuId=528334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5283\\/528334_sa.jpg\"}', 'upc' => '075992547826', 'provider' => 'bestbuy'],\n ['name' => \"The Magazine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-magazine-cd/528343.p?id=87304&skuId=528343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5283\\/528343_sa.jpg\"}', 'upc' => '075992511728', 'provider' => 'bestbuy'],\n ['name' => \"Sundown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sundown-cd/528352.p?id=89256&skuId=528352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528352_sa.jpg\"}', 'upc' => '075992721127', 'provider' => 'bestbuy'],\n ['name' => \"Summertime Dream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summertime-dream-cd/528361.p?id=2599482&skuId=528361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528361_sa.jpg\"}', 'upc' => '075992722827', 'provider' => 'bestbuy'],\n ['name' => \"Angel Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angel-band-cd/528414.p?id=84853&skuId=528414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528414_sa.jpg\"}', 'upc' => '075992558525', 'provider' => 'bestbuy'],\n ['name' => \"Another Page - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-page-cd/528432.p?id=79279&skuId=528432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528432_sa.jpg\"}', 'upc' => '075992375726', 'provider' => 'bestbuy'],\n ['name' => \"The Firm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-firm-cd/528450.p?id=82270&skuId=528450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528450_sa.jpg\"}', 'upc' => '075678123924', 'provider' => 'bestbuy'],\n ['name' => \"The Last in Line - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-in-line-cd/528478.p?id=80500&skuId=528478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528478_sa.jpg\"}', 'upc' => '075992510028', 'provider' => 'bestbuy'],\n ['name' => \"A Broken Frame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-broken-frame-cd/528487.p?id=80223&skuId=528487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528487_sa.jpg\"}', 'upc' => '075992375122', 'provider' => 'bestbuy'],\n ['name' => \"The Ultimate Bobby Darin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ultimate-bobby-darin-cd/528502.p?id=79765&skuId=528502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5285\\/528502_sa.jpg\"}', 'upc' => '075992760621', 'provider' => 'bestbuy'],\n ['name' => \"The Circus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-circus-cd/528511.p?id=81654&skuId=528511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528511_sa.jpg\"}', 'upc' => '075992555425', 'provider' => 'bestbuy'],\n ['name' => \"My Favorite Things - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-favorite-things-cd/528539.p?id=176554&skuId=528539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528539_sa.jpg\"}', 'upc' => '075678134623', 'provider' => 'bestbuy'],\n ['name' => \"The Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dark-cd/528548.p?id=91499&skuId=528548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5285\\/528548_sa.jpg\"}', 'upc' => '075596049320', 'provider' => 'bestbuy'],\n ['name' => \"Mingus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mingus-cd/528584.p?id=91927&skuId=528584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5285\\/528584_sa.jpg\"}', 'upc' => '075596055727', 'provider' => 'bestbuy'],\n ['name' => \"The Hissing of Summer Lawns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hissing-of-summer-lawns-cd/528593.p?id=91932&skuId=528593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528593_sa.jpg\"}', 'upc' => '075596060622', 'provider' => 'bestbuy'],\n ['name' => \"Hejira - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hejira-cd/528600.p?id=91925&skuId=528600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528600_sa.jpg\"}', 'upc' => '075596061421', 'provider' => 'bestbuy'],\n ['name' => \"We're All Together Again (For the First Time) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/were-all-together-again-for-the-first-time-cd/528673.p?id=64638&skuId=528673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5286\\/528673_sa.jpg\"}', 'upc' => '075678139024', 'provider' => 'bestbuy'],\n ['name' => \"Branigan 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/branigan-2-cd/528708.p?id=75737&skuId=528708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0528\\/0528708_sa.jpg\"}', 'upc' => '075678005220', 'provider' => 'bestbuy'],\n ['name' => \"The Shape of Jazz to Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-shape-of-jazz-to-come-cd/528717.p?id=65097&skuId=528717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5287\\/528717_sa.jpg\"}', 'upc' => '075678133923', 'provider' => 'bestbuy'],\n ['name' => \"Liza Minnelli at Carnegie Hall (The Complete... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liza-minnelli-at-carnegie-hall-the-complete-cd/528726.p?id=91830&skuId=528726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5287\\/528726_sa.jpg\"}', 'upc' => '089408550225', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Waltzes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-waltzes-cd/528771.p?id=103753&skuId=528771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=528771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5287\\/528771_sa.jpg\"}', 'upc' => '014921700420', 'provider' => 'bestbuy'],\n ['name' => \"Alone Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-together-cd/529048.p?id=90736&skuId=529048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5290\\/529048.jpg\"}', 'upc' => '076731117027', 'provider' => 'bestbuy'],\n ['name' => \"Deliver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deliver-cd/529084.p?id=90299&skuId=529084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5290\\/529084.jpg\"}', 'upc' => '076731104423', 'provider' => 'bestbuy'],\n ['name' => \"Moonlighting - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonlighting-cd-original-soundtrack/529100.p?id=92195&skuId=529100&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529100', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529100_sa.jpg\"}', 'upc' => '076732621424', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Sixteen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-sixteen-cd/529182.p?id=223883&skuId=529182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529182_sa.jpg\"}', 'upc' => '076732629420', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonk Angel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonk-angel-cd/529208.p?id=89845&skuId=529208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529208_sa.jpg\"}', 'upc' => '076742222321', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Madness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-madness-cd/529253.p?id=93321&skuId=529253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5292\\/529253_sa.jpg\"}', 'upc' => '076731116020', 'provider' => 'bestbuy'],\n ['name' => \"Dawn Patrol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dawn-patrol-cd/529280.p?id=93318&skuId=529280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5292\\/529280_sa.jpg\"}', 'upc' => '076731103129', 'provider' => 'bestbuy'],\n ['name' => \"New Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-edition-cd/529379.p?id=93125&skuId=529379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529379_sa.jpg\"}', 'upc' => '076731102825', 'provider' => 'bestbuy'],\n ['name' => \"All for Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-for-love-cd/529397.p?id=93120&skuId=529397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529397_sa.jpg\"}', 'upc' => '076732567920', 'provider' => 'bestbuy'],\n ['name' => \"Jesus Christ Superstar - CD - Holiday Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jesus-christ-superstar-cd-holiday-original-soundtrack/529422.p?id=3166045&skuId=529422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5294\\/529422.jpg\"}', 'upc' => '076731100029', 'provider' => 'bestbuy'],\n ['name' => \"Meeting in the Ladies Room - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meeting-in-the-ladies-room-cd/529486.p?id=88254&skuId=529486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5294\\/529486_sa.jpg\"}', 'upc' => '076731106427', 'provider' => 'bestbuy'],\n ['name' => \"King of Blues: 1989 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-blues-1989-cd/529510.p?id=87924&skuId=529510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529510_sa.jpg\"}', 'upc' => '076742218324', 'provider' => 'bestbuy'],\n ['name' => \"Six Silver Strings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/six-silver-strings-cd/529529.p?id=87938&skuId=529529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529529_sa.jpg\"}', 'upc' => '076732561621', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Thom Bell Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-thom-bell-sessions-cd/529583.p?id=87082&skuId=529583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529583_sa.jpg\"}', 'upc' => '076741911523', 'provider' => 'bestbuy'],\n ['name' => \"Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-cd/529654.p?id=87609&skuId=529654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529654_sa.jpg\"}', 'upc' => '076732583821', 'provider' => 'bestbuy'],\n ['name' => \"Hail! Hail! Rock 'N' Roll - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hail-hail-rock-n-roll-cd-original-soundtrack/529770.p?id=84619&skuId=529770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5297\\/529770_sa.jpg\"}', 'upc' => '076732621721', 'provider' => 'bestbuy'],\n ['name' => \"Striking It Rich - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/striking-it-rich-cd/529903.p?id=85342&skuId=529903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529903_sa.jpg\"}', 'upc' => '076731118727', 'provider' => 'bestbuy'],\n ['name' => \"Last Train to Hicksville: The Home of Happy Feet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-train-to-hicksville-the-home-of-happy-feet-cd/529912.p?id=85341&skuId=529912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5299\\/529912_sa.jpg\"}', 'upc' => '076731118826', 'provider' => 'bestbuy'],\n ['name' => \"Where's the Money? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheres-the-money-cd/529921.p?id=85343&skuId=529921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=529921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0529\\/0529921_sa.jpg\"}', 'upc' => '076743133725', 'provider' => 'bestbuy'],\n ['name' => \"Who's Missing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whos-missing-cd/530045.p?id=1481163&skuId=530045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5300\\/530045.jpg\"}', 'upc' => '076731122120', 'provider' => 'bestbuy'],\n ['name' => \"My Generation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-generation-cd/530063.p?id=2276460&skuId=530063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530063_sa.jpg\"}', 'upc' => '076731133027', 'provider' => 'bestbuy'],\n ['name' => \"Magic Bus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-bus-cd/530090.p?id=1548541&skuId=530090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5300\\/530090.jpg\"}', 'upc' => '076743133329', 'provider' => 'bestbuy'],\n ['name' => \"You Can't Argue with a Sick Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-cant-argue-with-a-sick-mind-cd/530170.p?id=160277&skuId=530170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530170_sa.jpg\"}', 'upc' => '076731112022', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-mca-cd/530250.p?id=103483&skuId=530250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530250_sa.jpg\"}', 'upc' => '076744203229', 'provider' => 'bestbuy'],\n ['name' => \"Harmony (Universal) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harmony-universal-cd/530508.p?id=101789&skuId=530508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5305\\/530508_sa.jpg\"}', 'upc' => '076743132926', 'provider' => 'bestbuy'],\n ['name' => \"Does Fort Worth Ever Cross Your Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/does-fort-worth-ever-cross-your-mind-cd/530544.p?id=100538&skuId=530544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530544_sa.jpg\"}', 'upc' => '076743103223', 'provider' => 'bestbuy'],\n ['name' => \"Right Or Wrong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-or-wrong-cd/530553.p?id=1535067&skuId=530553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530553_sa.jpg\"}', 'upc' => '076743106828', 'provider' => 'bestbuy'],\n ['name' => \"Strait Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strait-country-cd/530562.p?id=100551&skuId=530562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5305\\/530562_sa.jpg\"}', 'upc' => '076743108723', 'provider' => 'bestbuy'],\n ['name' => \"At Your Birthday Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-your-birthday-party-cd/530599.p?id=100311&skuId=530599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5305\\/530599.jpg\"}', 'upc' => '076732166826', 'provider' => 'bestbuy'],\n ['name' => \"Monster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-cd/530642.p?id=100317&skuId=530642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5306\\/530642_sa.jpg\"}', 'upc' => '076743132827', 'provider' => 'bestbuy'],\n ['name' => \"For Once in My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-once-in-my-life-cd/530704.p?id=2416993&skuId=530704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5307\\/530704_sa.jpg\"}', 'upc' => '737463523424', 'provider' => 'bestbuy'],\n ['name' => \"John Schneider's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-schneiders-greatest-hits-cd/530759.p?id=98040&skuId=530759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530759_sa.jpg\"}', 'upc' => '076744203328', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonk Masquerade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonk-masquerade-cd/530937.p?id=81496&skuId=530937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5309\\/530937.jpg\"}', 'upc' => '008811022020', 'provider' => 'bestbuy'],\n ['name' => \"Stones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stones-cd/530973.p?id=80358&skuId=530973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=530973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0530\\/0530973_sa.jpg\"}', 'upc' => '076731104928', 'provider' => 'bestbuy'],\n ['name' => \"Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moods-cd/531008.p?id=1535057&skuId=531008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5310\\/531008_sa.jpg\"}', 'upc' => '076731106120', 'provider' => 'bestbuy'],\n ['name' => \"Tap Root Manuscript - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tap-root-manuscript-cd/531017.p?id=80362&skuId=531017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531017_sa.jpg\"}', 'upc' => '076731107127', 'provider' => 'bestbuy'],\n ['name' => \"Raise Your Fist and Yell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raise-your-fist-and-yell-cd/531080.p?id=78657&skuId=531080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531080_sa.jpg\"}', 'upc' => '076742209124', 'provider' => 'bestbuy'],\n ['name' => \"Lost in the Ozone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-in-the-ozone-cd/531099.p?id=78430&skuId=531099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5310\\/531099_sa.jpg\"}', 'upc' => '076731118529', 'provider' => 'bestbuy'],\n ['name' => \"Mama's Big Ones: The Best of Mama Cass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mamas-big-ones-the-best-of-mama-cass-cd/531133.p?id=81461&skuId=531133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531133_sa.jpg\"}', 'upc' => '076731114729', 'provider' => 'bestbuy'],\n ['name' => \"Volcano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/volcano-cd/531142.p?id=76281&skuId=531142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531142_sa.jpg\"}', 'upc' => '076732165720', 'provider' => 'bestbuy'],\n ['name' => \"A White Sport Coat and a Pink Crustacean - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-white-sport-coat-and-a-pink-crustacean-cd/531151.p?id=76257&skuId=531151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531151_sa.jpg\"}', 'upc' => '076731109022', 'provider' => 'bestbuy'],\n ['name' => \"Coconut Telegraph - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coconut-telegraph-cd/531160.p?id=76265&skuId=531160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531160_sa.jpg\"}', 'upc' => '076731109220', 'provider' => 'bestbuy'],\n ['name' => \"One Particular Harbour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-particular-harbour-cd/531188.p?id=76275&skuId=531188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5311\\/531188_sa.jpg\"}', 'upc' => '076731109428', 'provider' => 'bestbuy'],\n ['name' => \"Last Mango in Paris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-mango-in-paris-cd/531197.p?id=76271&skuId=531197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531197_sa.jpg\"}', 'upc' => '076731115726', 'provider' => 'bestbuy'],\n ['name' => \"Off to See the Lizard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/off-to-see-the-lizard-cd/531204.p?id=76274&skuId=531204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531204_sa.jpg\"}', 'upc' => '076732631423', 'provider' => 'bestbuy'],\n ['name' => \"Floridays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/floridays-cd/531213.p?id=76267&skuId=531213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531213_sa.jpg\"}', 'upc' => '076732573020', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Opry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-opry-cd/531268.p?id=78061&skuId=531268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5312\\/531268.jpg\"}', 'upc' => '076742214227', 'provider' => 'bestbuy'],\n ['name' => \"Those Southern Knights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/those-southern-knights-cd/531320.p?id=65402&skuId=531320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531320_sa.jpg\"}', 'upc' => '076732164921', 'provider' => 'bestbuy'],\n ['name' => \"Hot Tamale Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-tamale-baby-cd/531491.p?id=2412359&skuId=531491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5314\\/531491.jpg\"}', 'upc' => '011661309524', 'provider' => 'bestbuy'],\n ['name' => \"Me Oh My, How the Time Does Fly: A John... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/me-oh-my-how-the-time-does-fly-a-john-cd/531516.p?id=84932&skuId=531516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5315\\/531516_sa.jpg\"}', 'upc' => '018964044022', 'provider' => 'bestbuy'],\n ['name' => \"Columbia River Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/columbia-river-collection-cd/531543.p?id=2389679&skuId=531543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531543_sa.jpg\"}', 'upc' => '011661103627', 'provider' => 'bestbuy'],\n ['name' => \"Blake & Rice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blake-rice-cd/531589.p?id=74972&skuId=531589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531589_sa.jpg\"}', 'upc' => '011661023321', 'provider' => 'bestbuy'],\n ['name' => \"Best Blues & Originals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-blues-originals-cd/531614.p?id=75043&skuId=531614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531614_sa.jpg\"}', 'upc' => '011661152526', 'provider' => 'bestbuy'],\n ['name' => \"American Finger Style Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-finger-style-guitar-cd/531678.p?id=102912&skuId=531678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5316\\/531678_sa.jpg\"}', 'upc' => '011661153325', 'provider' => 'bestbuy'],\n ['name' => \"Brand New - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brand-new-cd/531703.p?id=100432&skuId=531703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5317\\/531703_sa.jpg\"}', 'upc' => '012928801423', 'provider' => 'bestbuy'],\n ['name' => \"The Bluegrass Compact Disc - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bluegrass-compact-disc-cd-various/531712.p?id=75158&skuId=531712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531712_sa.jpg\"}', 'upc' => '011661150225', 'provider' => 'bestbuy'],\n ['name' => \"Right Place, Wrong Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-place-wrong-time-cd/531721.p?id=97582&skuId=531721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5317\\/531721_sa.jpg\"}', 'upc' => '012928800723', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-blues-cd/531749.p?id=96855&skuId=531749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5317\\/531749_sa.jpg\"}', 'upc' => '011661154827', 'provider' => 'bestbuy'],\n ['name' => \"Dressed Up to Get Messed Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dressed-up-to-get-messed-up-cd/531758.p?id=97302&skuId=531758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531758_sa.jpg\"}', 'upc' => '011671001821', 'provider' => 'bestbuy'],\n ['name' => \"Make Me Sweat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/make-me-sweat-cd/531776.p?id=97964&skuId=531776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531776_sa.jpg\"}', 'upc' => '052824219328', 'provider' => 'bestbuy'],\n ['name' => \"Modern Lovers '88 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-lovers-88-cd/531794.p?id=96640&skuId=531794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531794_sa.jpg\"}', 'upc' => '011661901421', 'provider' => 'bestbuy'],\n ['name' => \"Manzanita - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manzanita-cd/531810.p?id=96598&skuId=531810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5318\\/531810.jpg\"}', 'upc' => '011661009226', 'provider' => 'bestbuy'],\n ['name' => \"Cold on the Shoulder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cold-on-the-shoulder-cd/531829.p?id=96590&skuId=531829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5318\\/531829_sa.jpg\"}', 'upc' => '011661018327', 'provider' => 'bestbuy'],\n ['name' => \"Caught in the Act - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caught-in-the-act-cd/531892.p?id=95722&skuId=531892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5318\\/531892_sa.jpg\"}', 'upc' => '052824218123', 'provider' => 'bestbuy'],\n ['name' => \"House Party New Orleans Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-party-new-orleans-style-cd/531918.p?id=95565&skuId=531918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531918_sa.jpg\"}', 'upc' => '011661205727', 'provider' => 'bestbuy'],\n ['name' => \"Retrospective - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/retrospective-cd/531927.p?id=2387154&skuId=531927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531927_sa.jpg\"}', 'upc' => '011661150720', 'provider' => 'bestbuy'],\n ['name' => \"Beau Woes and Other Problems of Modern Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beau-woes-and-other-problems-of-modern-life-cd/531963.p?id=88801&skuId=531963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0531\\/0531963_sa.jpg\"}', 'upc' => '011671110721', 'provider' => 'bestbuy'],\n ['name' => \"My Number One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-number-one-cd/531990.p?id=86365&skuId=531990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=531990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5319\\/531990.jpg\"}', 'upc' => '011661756120', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-boogie-cd/532007.p?id=74239&skuId=532007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532007_sa.jpg\"}', 'upc' => '011661601529', 'provider' => 'bestbuy'],\n ['name' => \"Lion Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lion-rock-cd/532061.p?id=79442&skuId=532061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532061_sa.jpg\"}', 'upc' => '011661751224', 'provider' => 'bestbuy'],\n ['name' => \"Lord of the Highway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lord-of-the-highway-cd/532098.p?id=81500&skuId=532098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5320\\/532098.jpg\"}', 'upc' => '012928800822', 'provider' => 'bestbuy'],\n ['name' => \"Daybreak - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daybreak-cd/532114.p?id=82416&skuId=532114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5321\\/532114_sa.jpg\"}', 'upc' => '011661151826', 'provider' => 'bestbuy'],\n ['name' => \"J.D. Crowe & the New South - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/j-d-crowe-the-new-south-cd/532178.p?id=79323&skuId=532178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5321\\/532178_sa.jpg\"}', 'upc' => '011661004429', 'provider' => 'bestbuy'],\n ['name' => \"Room with a View of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/room-with-a-view-of-the-blues-cd/532187.p?id=72475&skuId=532187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5321\\/532187_sa.jpg\"}', 'upc' => '011661205925', 'provider' => 'bestbuy'],\n ['name' => \"Texas Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-swing-cd/532196.p?id=75898&skuId=532196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532196_sa.jpg\"}', 'upc' => '011661152724', 'provider' => 'bestbuy'],\n ['name' => \"False Accusations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/false-accusations-cd/532249.p?id=79132&skuId=532249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5322\\/532249.jpg\"}', 'upc' => '012928800525', 'provider' => 'bestbuy'],\n ['name' => \"60 Minutes with the King of Zydeco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/60-minutes-with-the-king-of-zydeco-cd/532285.p?id=77340&skuId=532285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532285_sa.jpg\"}', 'upc' => '096297030127', 'provider' => 'bestbuy'],\n ['name' => \"Live at St. Mark's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-st-marks-cd/532294.p?id=77351&skuId=532294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5322\\/532294.jpg\"}', 'upc' => '096297031322', 'provider' => 'bestbuy'],\n ['name' => \"Mel Tormé, Rob McConnell and the Boss Brass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mel-torme-rob-mcconnell-and-the-boss-brass-cd/532356.p?id=71508&skuId=532356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5323\\/532356_sa.jpg\"}', 'upc' => '013431430629', 'provider' => 'bestbuy'],\n ['name' => \"Rosemary Clooney Sings Ballads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosemary-clooney-sings-ballads-cd/532383.p?id=65031&skuId=532383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5323\\/532383_sa.jpg\"}', 'upc' => '013431428220', 'provider' => 'bestbuy'],\n ['name' => \"Rosemary Clooney Sings the Lyrics of Johnny... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosemary-clooney-sings-the-lyrics-of-johnny-cd/532409.p?id=65034&skuId=532409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532409_sa.jpg\"}', 'upc' => '013431433323', 'provider' => 'bestbuy'],\n ['name' => \"Moscow Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moscow-night-cd/532427.p?id=64626&skuId=532427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532427_sa.jpg\"}', 'upc' => '013431435327', 'provider' => 'bestbuy'],\n ['name' => \"Brazilian Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brazilian-soul-cd/532436.p?id=63647&skuId=532436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5324\\/532436_sa.jpg\"}', 'upc' => '013431415022', 'provider' => 'bestbuy'],\n ['name' => \"I'm Wanted - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-wanted-cd/532472.p?id=2484108&skuId=532472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5324\\/532472_sa.jpg\"}', 'upc' => '011661304529', 'provider' => 'bestbuy'],\n ['name' => \"His All-Time Greatest Comic Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/his-all-time-greatest-comic-hits-cd/532481.p?id=100351&skuId=532481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5324\\/532481.jpg\"}', 'upc' => '715187731226', 'provider' => 'bestbuy'],\n ['name' => \"Juice Newton's Greatest Hits (And More) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juice-newtons-greatest-hits-and-more-cd/532613.p?id=93257&skuId=532613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5326\\/532613_sa.jpg\"}', 'upc' => '077774648929', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/532631.p?id=93082&skuId=532631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5326\\/532631_sa.jpg\"}', 'upc' => '715187730328', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/532677.p?id=83502&skuId=532677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532677_sa.jpg\"}', 'upc' => '715187738720', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/532720.p?id=83412&skuId=532720&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532720', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5327\\/532720_sa.jpg\"}', 'upc' => '715187736023', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Woody Herman [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-woody-herman-curb-capitol-cd/532766.p?id=67389&skuId=532766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532766_sa.jpg\"}', 'upc' => '715187739420', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Benny Goodman [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-benny-goodman-curb-capitol-cd/532775.p?id=66809&skuId=532775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5327\\/532775_sa.jpg\"}', 'upc' => '715187738621', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hymns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hymns-cd/532873.p?id=82657&skuId=532873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5328\\/532873_sa.jpg\"}', 'upc' => '715187732629', 'provider' => 'bestbuy'],\n ['name' => \"Come Fly with Me [Mono] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-fly-with-me-mono-remaster-cd/532917.p?id=3232185&skuId=532917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532917_sa.jpg\"}', 'upc' => '762185150627', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere in the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-in-the-night-cd/532944.p?id=97981&skuId=532944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0532\\/0532944_sa.jpg\"}', 'upc' => '715187758421', 'provider' => 'bestbuy'],\n ['name' => \"Out Goin' Cattin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-goin-cattin-cd/532953.p?id=97977&skuId=532953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5329\\/532953.jpg\"}', 'upc' => '715187757929', 'provider' => 'bestbuy'],\n ['name' => \"Shakin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shakin-cd/532962.p?id=97980&skuId=532962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=532962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5329\\/532962_sa.jpg\"}', 'upc' => '715187758322', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Spencer Davis Group [EMI 1987] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-spencer-davis-group-emi-1987-cd/533079.p?id=79822&skuId=533079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0533\\/0533079_sa.jpg\"}', 'upc' => '077774659826', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/533088.p?id=79758&skuId=533088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5330\\/533088.jpg\"}', 'upc' => '715187732520', 'provider' => 'bestbuy'],\n ['name' => \"Piano Reflections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-reflections-cd/533104.p?id=65958&skuId=533104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5331\\/533104_sa.jpg\"}', 'upc' => '077779286324', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/533140.p?id=91113&skuId=533140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5331\\/533140.jpg\"}', 'upc' => '077774686723', 'provider' => 'bestbuy'],\n ['name' => \"The Music Man [Original Broadway Cast] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-man-original-broadway-cast-cd-original-broadway-cast/533168.p?id=92681&skuId=533168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5331\\/533168_sa.jpg\"}', 'upc' => '077774663328', 'provider' => 'bestbuy'],\n ['name' => \"Transitions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transitions-cd/533195.p?id=1441867&skuId=533195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5331\\/533195.jpg\"}', 'upc' => '077774646123', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Guy Lombardo [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-guy-lombardo-capitol-cd/533275.p?id=89548&skuId=533275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0533\\/0533275_sa.jpg\"}', 'upc' => '715187739024', 'provider' => 'bestbuy'],\n ['name' => \"Billboard Top R&B Hits: 1961 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billboard-top-r-b-hits-1961-cd/533382.p?id=74699&skuId=533382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5333\\/533382.jpg\"}', 'upc' => '081227064723', 'provider' => 'bestbuy'],\n ['name' => \"Finger Paintings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finger-paintings-cd/533587.p?id=68285&skuId=533587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5335\\/533587_sa.jpg\"}', 'upc' => '077774838627', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Gordon Lightfoot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-gordon-lightfoot-cd/533612.p?id=89248&skuId=533612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5336\\/533612_sa.jpg\"}', 'upc' => '715187742826', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Harry James [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-harry-james-curb-cd/533685.p?id=67846&skuId=533685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0533\\/0533685_sa.jpg\"}', 'upc' => '715187739123', 'provider' => 'bestbuy'],\n ['name' => \"Live in Branson Mo. Usa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-branson-mo-usa-cd/533729.p?id=1365883&skuId=533729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0533\\/0533729_sa.jpg\"}', 'upc' => '715187739529', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/533747.p?id=76667&skuId=533747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5337\\/533747_sa.jpg\"}', 'upc' => '715187736221', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/533818.p?id=78152&skuId=533818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5338\\/533818.jpg\"}', 'upc' => '715187737129', 'provider' => 'bestbuy'],\n ['name' => \"A Space in Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/a-space-in-time-cd/533998.p?id=101416&skuId=533998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=533998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5339\\/533998_sa.jpg\"}', 'upc' => '094632100122', 'provider' => 'bestbuy'],\n ['name' => \"Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-cd/534078.p?id=70011&skuId=534078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=534078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0534\\/0534078_sa.jpg\"}', 'upc' => '077779256327', 'provider' => 'bestbuy'],\n ['name' => \"This Is the Sea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-the-sea-cd/534274.p?id=1412616&skuId=534274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=534274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0534\\/0534274_sa.jpg\"}', 'upc' => '094632154323', 'provider' => 'bestbuy'],\n ['name' => \"Moonstruck - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonstruck-cd-original-soundtrack/534345.p?id=92199&skuId=534345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=534345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5343\\/534345.jpg\"}', 'upc' => '077779023127', 'provider' => 'bestbuy'],\n ['name' => \"Book of Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/book-of-dreams-cd/534363.p?id=91729&skuId=534363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=534363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5343\\/534363.jpg\"}', 'upc' => '077774647625', 'provider' => 'bestbuy'],\n ['name' => \"At Budokan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-budokan-cd/535521.p?id=81156&skuId=535521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=535521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5355\\/535521_sa.jpg\"}', 'upc' => '074643606721', 'provider' => 'bestbuy'],\n ['name' => \"The Princess Bride - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-princess-bride-cd-original-soundtrack/536833.p?id=2752958&skuId=536833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=536833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0536\\/0536833_sa.jpg\"}', 'upc' => '075992561020', 'provider' => 'bestbuy'],\n ['name' => \"Peter, Paul and Mary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-paul-and-mary-cd/536888.p?id=94798&skuId=536888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=536888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5368\\/536888_sa.jpg\"}', 'upc' => '075992715720', 'provider' => 'bestbuy'],\n ['name' => \"The Ocean Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ocean-blue-cd/536986.p?id=93782&skuId=536986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=536986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0536\\/0536986_sa.jpg\"}', 'upc' => '075992590624', 'provider' => 'bestbuy'],\n ['name' => \"Halfway to Sanity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/halfway-to-sanity-cd/537066.p?id=95915&skuId=537066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537066_sa.jpg\"}', 'upc' => '075992564120', 'provider' => 'bestbuy'],\n ['name' => \"Christmas in America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-in-america-cd/537574.p?id=97126&skuId=537574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537574_sa.jpg\"}', 'upc' => '075992597326', 'provider' => 'bestbuy'],\n ['name' => \"Strangeways, Here We Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strangeways-here-we-come-cd/537618.p?id=99247&skuId=537618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5376\\/537618_sa.jpg\"}', 'upc' => '075992564922', 'provider' => 'bestbuy'],\n ['name' => \"In Dub - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-dub-cd/537636.p?id=96448&skuId=537636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5376\\/537636.jpg\"}', 'upc' => '075596100625', 'provider' => 'bestbuy'],\n ['name' => \"Ray Charles Live [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ray-charles-live-atlantic-cd/537663.p?id=77256&skuId=537663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5376\\/537663_sa.jpg\"}', 'upc' => '075678173226', 'provider' => 'bestbuy'],\n ['name' => \"Land of Enchantment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/land-of-enchantment-cd/537690.p?id=92639&skuId=537690&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537690', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5376\\/537690_sa.jpg\"}', 'upc' => '075992589420', 'provider' => 'bestbuy'],\n ['name' => \"20 Anos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-anos-cd/537789.p?id=1373930&skuId=537789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5377\\/537789_sa.jpg\"}', 'upc' => '090317153520', 'provider' => 'bestbuy'],\n ['name' => \"Eyes on This - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eyes-on-this-cd/537869.p?id=90974&skuId=537869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537869_sa.jpg\"}', 'upc' => '075679130426', 'provider' => 'bestbuy'],\n ['name' => \"You Can Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-can-dance-cd/537887.p?id=3338784&skuId=537887&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537887', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537887_sa.jpg\"}', 'upc' => '075992553520', 'provider' => 'bestbuy'],\n ['name' => \"How Will the Wolf Survive? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-will-the-wolf-survive-cd/537949.p?id=89690&skuId=537949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537949_sa.jpg\"}', 'upc' => '075992517720', 'provider' => 'bestbuy'],\n ['name' => \"By the Light of the Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-the-light-of-the-moon-cd/537958.p?id=89689&skuId=537958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=537958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0537\\/0537958_sa.jpg\"}', 'upc' => '075992552325', 'provider' => 'bestbuy'],\n ['name' => \"La Bamba - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-bamba-cd-original-soundtrack/538038.p?id=88495&skuId=538038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538038_sa.jpg\"}', 'upc' => '075992560528', 'provider' => 'bestbuy'],\n ['name' => \"Just Coolin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-coolin-cd/538074.p?id=89113&skuId=538074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5380\\/538074_sa.jpg\"}', 'upc' => '075678192623', 'provider' => 'bestbuy'],\n ['name' => \"Gretchen Goes to Nebraska - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gretchen-goes-to-nebraska-cd/538145.p?id=88066&skuId=538145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538145_sa.jpg\"}', 'upc' => '075678199721', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Collection: Stand by Me/Best of Ben... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-collection-stand-by-me-best-of-ben-cd/538163.p?id=87948&skuId=538163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5381\\/538163_sa.jpg\"}', 'upc' => '075678021329', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Silent Planet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-silent-planet-cd/538172.p?id=88068&skuId=538172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538172_sa.jpg\"}', 'upc' => '075678182525', 'provider' => 'bestbuy'],\n ['name' => \"Move to Move - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/move-to-move-cd/538225.p?id=88333&skuId=538225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538225_sa.jpg\"}', 'upc' => '075678198427', 'provider' => 'bestbuy'],\n ['name' => \"Breakin Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/breakin-away-cd/538270.p?id=86749&skuId=538270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5382\\/538270_sa.jpg\"}', 'upc' => '075992357623', 'provider' => 'bestbuy'],\n ['name' => \"This Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-time-cd/538323.p?id=86759&skuId=538323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538323_sa.jpg\"}', 'upc' => '075992343428', 'provider' => 'bestbuy'],\n ['name' => \"Paw Paw Patch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paw-paw-patch-cd/538467.p?id=1967964&skuId=538467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '075679134028', 'provider' => 'bestbuy'],\n ['name' => \"Gipsy Kings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gipsy-kings-cd/538546.p?id=83668&skuId=538546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538546_sa.jpg\"}', 'upc' => '075596084529', 'provider' => 'bestbuy'],\n ['name' => \"River of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/river-of-love-cd/538617.p?id=82714&skuId=538617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538617_sa.jpg\"}', 'upc' => '075678216121', 'provider' => 'bestbuy'],\n ['name' => \"Bluebird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluebird-cd/538644.p?id=84855&skuId=538644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538644_sa.jpg\"}', 'upc' => '075992577625', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/538742.p?id=82689&skuId=538742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5387\\/538742_sa.jpg\"}', 'upc' => '075992589727', 'provider' => 'bestbuy'],\n ['name' => \"An Old Time Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-old-time-christmas-cd/538831.p?id=102187&skuId=538831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538831_sa.jpg\"}', 'upc' => '075992597227', 'provider' => 'bestbuy'],\n ['name' => \"Ancient Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-heart-cd/538877.p?id=101851&skuId=538877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5388\\/538877_sa.jpg\"}', 'upc' => '075992583923', 'provider' => 'bestbuy'],\n ['name' => \"Hunkpapa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hunkpapa-cd/538886.p?id=101816&skuId=538886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5388\\/538886_sa.jpg\"}', 'upc' => '075992585521', 'provider' => 'bestbuy'],\n ['name' => \"Practice What You Preach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/practice-what-you-preach-cd/538911.p?id=101483&skuId=538911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538911_sa.jpg\"}', 'upc' => '075678200922', 'provider' => 'bestbuy'],\n ['name' => \"Talking Heads 77 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talking-heads-77-cd/538957.p?id=101137&skuId=538957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538957_sa.jpg\"}', 'upc' => '075992742320', 'provider' => 'bestbuy'],\n ['name' => \"Long May You Run - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-may-you-run-cd/538993.p?id=100456&skuId=538993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=538993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0538\\/0538993_sa.jpg\"}', 'upc' => '075992723022', 'provider' => 'bestbuy'],\n ['name' => \"Fear of Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-of-music-cd/539000.p?id=101129&skuId=539000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5390\\/539000_sa.jpg\"}', 'upc' => '075992742825', 'provider' => 'bestbuy'],\n ['name' => \"True Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-stories-cd/539037.p?id=101140&skuId=539037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5390\\/539037_sa.jpg\"}', 'upc' => '075992551229', 'provider' => 'bestbuy'],\n ['name' => \"Rich & Poor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rich-poor-cd/539082.p?id=79118&skuId=539082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539082_sa.jpg\"}', 'upc' => '075992600224', 'provider' => 'bestbuy'],\n ['name' => \"Back for the Attack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-for-the-attack-cd/539108.p?id=80694&skuId=539108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539108_sa.jpg\"}', 'upc' => '075596073523', 'provider' => 'bestbuy'],\n ['name' => \"All Nite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-nite-cd/539279.p?id=81611&skuId=539279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539279_sa.jpg\"}', 'upc' => '075596085823', 'provider' => 'bestbuy'],\n ['name' => \"No One Can Do It Better [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-one-can-do-it-better-pa-cd/539411.p?id=79575&skuId=539411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539411_sa.jpg\"}', 'upc' => '075679127525', 'provider' => 'bestbuy'],\n ['name' => \"No Fuel Left For Pilgrims - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-fuel-left-for-pilgrims-cd/539420.p?id=2310042&skuId=539420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539420_sa.jpg\"}', 'upc' => '075992599924', 'provider' => 'bestbuy'],\n ['name' => \"The Captain and Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-captain-and-me-cd/539484.p?id=80774&skuId=539484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5394\\/539484_sa.jpg\"}', 'upc' => '075992727129', 'provider' => 'bestbuy'],\n ['name' => \"Tutu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tutu-cd/539545.p?id=65578&skuId=539545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539545_sa.jpg\"}', 'upc' => '075992549028', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/539796.p?id=2412253&skuId=539796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5397\\/539796.jpg\"}', 'upc' => '075678128127', 'provider' => 'bestbuy'],\n ['name' => \"Blade Runner - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blade-runner-cd-original-soundtrack/539830.p?id=74940&skuId=539830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0539\\/0539830_sa.jpg\"}', 'upc' => '075992374828', 'provider' => 'bestbuy'],\n ['name' => \"Antecedente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/antecedente-cd/539858.p?id=74942&skuId=539858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5398\\/539858_sa.jpg\"}', 'upc' => '075596079525', 'provider' => 'bestbuy'],\n ['name' => \"It's a Big Daddy Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-a-big-daddy-thing-cd/539876.p?id=87591&skuId=539876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5398\\/539876_sa.jpg\"}', 'upc' => '075992594127', 'provider' => 'bestbuy'],\n ['name' => \"Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-cd/539885.p?id=75378&skuId=539885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5398\\/539885_sa.jpg\"}', 'upc' => '075992587624', 'provider' => 'bestbuy'],\n ['name' => \"Collaboration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collaboration-cd/539910.p?id=64197&skuId=539910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=539910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5399\\/539910_sa.jpg\"}', 'upc' => '075992558020', 'provider' => 'bestbuy'],\n ['name' => \"Bermuda Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bermuda-nights-cd/540034.p?id=63584&skuId=540034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5400\\/540034.jpg\"}', 'upc' => '075678191923', 'provider' => 'bestbuy'],\n ['name' => \"Zuma - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zuma-cd/540098.p?id=105065&skuId=540098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540098_sa.jpg\"}', 'upc' => '075992722629', 'provider' => 'bestbuy'],\n ['name' => \"This Note's for You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-notes-for-you-cd/540132.p?id=105073&skuId=540132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540132_sa.jpg\"}', 'upc' => '075992571920', 'provider' => 'bestbuy'],\n ['name' => \"Pure Gershwin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-gershwin-cd/540267.p?id=82048&skuId=540267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5402\\/540267_sa.jpg\"}', 'upc' => '075596074223', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Algonquin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-algonquin-cd/540285.p?id=82047&skuId=540285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5402\\/540285_sa.jpg\"}', 'upc' => '075596074322', 'provider' => 'bestbuy'],\n ['name' => \"Remember: Michael Feinstein Sings Irving Berlin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-michael-feinstein-sings-irving-berlin-cd/540294.p?id=82050&skuId=540294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540294_sa.jpg\"}', 'upc' => '075596074421', 'provider' => 'bestbuy'],\n ['name' => \"Wilson Pickett's Greatest Hits [1985] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wilson-picketts-greatest-hits-1985-cd/540310.p?id=94930&skuId=540310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5403\\/540310_sa.jpg\"}', 'upc' => '075678173721', 'provider' => 'bestbuy'],\n ['name' => \"Hold On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hold-on-cd/540329.p?id=93425&skuId=540329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540329_sa.jpg\"}', 'upc' => '075992557320', 'provider' => 'bestbuy'],\n ['name' => \"The Drill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-drill-cd/540409.p?id=247899&skuId=540409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5404\\/540409_sa.jpg\"}', 'upc' => '024596110325', 'provider' => 'bestbuy'],\n ['name' => \"Cowboy Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cowboy-christmas-cd/540436.p?id=92637&skuId=540436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5404\\/540436_sa.jpg\"}', 'upc' => '075992664721', 'provider' => 'bestbuy'],\n ['name' => \"A Brenda Lee Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-brenda-lee-christmas-cd/540445.p?id=88946&skuId=540445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540445_sa.jpg\"}', 'upc' => '075992666022', 'provider' => 'bestbuy'],\n ['name' => \"Portrait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-cd/540463.p?id=103628&skuId=540463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=540463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0540\\/0540463_sa.jpg\"}', 'upc' => '015891375922', 'provider' => 'bestbuy'],\n ['name' => \"In Concert: The Best of Jimmy Cliff - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-concert-the-best-of-jimmy-cliff-cd/541934.p?id=78027&skuId=541934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=541934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5419\\/541934.jpg\"}', 'upc' => '075992723220', 'provider' => 'bestbuy'],\n ['name' => \"The Art of the Improvisers [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-of-the-improvisers-bonus-tracks-cd/541952.p?id=65096&skuId=541952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=541952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0541\\/0541952_sa.jpg\"}', 'upc' => '075679097828', 'provider' => 'bestbuy'],\n ['name' => \"Something/Anything? [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-anything-pa-cd/542023.p?id=97552&skuId=542023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5420\\/542023_sa.jpg\"}', 'upc' => '081227110727', 'provider' => 'bestbuy'],\n ['name' => \"Prime Evil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prime-evil-cd/542103.p?id=247076&skuId=542103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5421\\/542103.jpg\"}', 'upc' => '032751106427', 'provider' => 'bestbuy'],\n ['name' => \"Hell Awaits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hell-awaits-cd/542167.p?id=268932&skuId=542167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '018777229722', 'provider' => 'bestbuy'],\n ['name' => \"Too Far Gone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-far-gone-cd/542201.p?id=1981704&skuId=542201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '026245104822', 'provider' => 'bestbuy'],\n ['name' => \"Project: Driver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-driver-cd/542210.p?id=80980&skuId=542210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5422\\/542210_sa.jpg\"}', 'upc' => '026245102828', 'provider' => 'bestbuy'],\n ['name' => \"Dragon's Kiss - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragons-kiss-cd/542274.p?id=82984&skuId=542274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5422\\/542274.jpg\"}', 'upc' => '026245103528', 'provider' => 'bestbuy'],\n ['name' => \"Michael Lee Firkins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michael-lee-firkins-cd/542309.p?id=82267&skuId=542309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5423\\/542309_sa.jpg\"}', 'upc' => '026245104525', 'provider' => 'bestbuy'],\n ['name' => \"Go Off! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-off-cd/542363.p?id=76503&skuId=542363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0542\\/0542363_sa.jpg\"}', 'upc' => '026245104020', 'provider' => 'bestbuy'],\n ['name' => \"Speed Metal Symphony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speed-metal-symphony-cd/542372.p?id=76504&skuId=542372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0542\\/0542372_sa.jpg\"}', 'upc' => '026245103122', 'provider' => 'bestbuy'],\n ['name' => \"QR III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/qr-iii-cd/542880.p?id=95753&skuId=542880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=542880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5428\\/542880_sa.jpg\"}', 'upc' => '074644032123', 'provider' => 'bestbuy'],\n ['name' => \"Earthquake Weather - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earthquake-weather-cd/543095.p?id=100631&skuId=543095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5430\\/543095.jpg\"}', 'upc' => '074644537222', 'provider' => 'bestbuy'],\n ['name' => \"2nd Wave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2nd-wave-cd/543102.p?id=100908&skuId=543102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0543\\/0543102_sa.jpg\"}', 'upc' => '074644428421', 'provider' => 'bestbuy'],\n ['name' => \"Another Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-place-cd/543193.p?id=67458&skuId=543193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5431\\/543193_sa.jpg\"}', 'upc' => '074643993821', 'provider' => 'bestbuy'],\n ['name' => \"Warrior - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warrior-cd/543273.p?id=98006&skuId=543273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0543\\/0543273_sa.jpg\"}', 'upc' => '074643917322', 'provider' => 'bestbuy'],\n ['name' => \"Hollywood Musicals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hollywood-musicals-cd/543497.p?id=90822&skuId=543497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0543\\/0543497_sa.jpg\"}', 'upc' => '074644037227', 'provider' => 'bestbuy'],\n ['name' => \"Walking with a Panther [Clean] [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-with-a-panther-clean-edited-cd/543594.p?id=89493&skuId=543594&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543594', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5435\\/543594_sa.jpg\"}', 'upc' => '731452735522', 'provider' => 'bestbuy'],\n ['name' => \"Jingle Bell Jazz - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jingle-bell-jazz-cd-various/543692.p?id=67987&skuId=543692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5436\\/543692_sa.jpg\"}', 'upc' => '074644016628', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Big Bands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-big-bands-cd/543941.p?id=64788&skuId=543941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=543941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5439\\/543941_sa.jpg\"}', 'upc' => '074644533620', 'provider' => 'bestbuy'],\n ['name' => \"She Was Too Good to Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-was-too-good-to-me-cd/544405.p?id=63912&skuId=544405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=544405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5444\\/544405_sa.jpg\"}', 'upc' => '074644080421', 'provider' => 'bestbuy'],\n ['name' => \"Shake You Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-you-down-cd/544432.p?id=72316&skuId=544432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=544432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0544\\/0544432_sa.jpg\"}', 'upc' => '074644043723', 'provider' => 'bestbuy'],\n ['name' => \"Radio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-cd/544655.p?id=89489&skuId=544655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=544655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5446\\/544655.jpg\"}', 'upc' => '731452735225', 'provider' => 'bestbuy'],\n ['name' => \"Lisa Lisa & Cult Jam with Full Force - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lisa-lisa-cult-jam-with-full-force-cd/544682.p?id=89332&skuId=544682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=544682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5446\\/544682_sa.jpg\"}', 'upc' => '074644013528', 'provider' => 'bestbuy'],\n ['name' => \"Rip It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rip-it-up-cd/545164.p?id=79971&skuId=545164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545164_sa.jpg\"}', 'upc' => '074644425529', 'provider' => 'bestbuy'],\n ['name' => \"Beverly Hills Cop [Original Motion Picture... - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beverly-hills-cop-original-motion-picture-original-soundtrack-cd/545360.p?id=74556&skuId=545360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545360_sa.jpg\"}', 'upc' => '076732555323', 'provider' => 'bestbuy'],\n ['name' => \"Alpha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpha-cd/545397.p?id=73330&skuId=545397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5453\\/545397_sa.jpg\"}', 'upc' => '720642400821', 'provider' => 'bestbuy'],\n ['name' => \"Love Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-life-cd/545413.p?id=74483&skuId=545413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5454\\/545413.jpg\"}', 'upc' => '720642402528', 'provider' => 'bestbuy'],\n ['name' => \"Pleasure Victim - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pleasure-victim-cd/545422.p?id=74484&skuId=545422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5454\\/545422.jpg\"}', 'upc' => '720642203620', 'provider' => 'bestbuy'],\n ['name' => \"Done with Mirrors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/done-with-mirrors-cd/545431.p?id=72533&skuId=545431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545431_sa.jpg\"}', 'upc' => '720642409121', 'provider' => 'bestbuy'],\n ['name' => \"Contagious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contagious-cd/545440.p?id=104864&skuId=545440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5454\\/545440_sa.jpg\"}', 'upc' => '720642414224', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere in Time [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-in-time-original-motion-picture-cd-original-soundtrack/545477.p?id=99423&skuId=545477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545477_sa.jpg\"}', 'upc' => '076731116426', 'provider' => 'bestbuy'],\n ['name' => \"Snakebite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snakebite-cd/545645.p?id=103888&skuId=545645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545645_sa.jpg\"}', 'upc' => '075992417426', 'provider' => 'bestbuy'],\n ['name' => \"Viva Terlingua - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viva-terlingua-cd/545681.p?id=103364&skuId=545681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5456\\/545681_sa.jpg\"}', 'upc' => '076732091920', 'provider' => 'bestbuy'],\n ['name' => \"#7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-cd/545734.p?id=100546&skuId=545734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5457\\/545734_sa.jpg\"}', 'upc' => '076732575024', 'provider' => 'bestbuy'],\n ['name' => \"Something Special - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-special-cd/545743.p?id=100549&skuId=545743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545743_sa.jpg\"}', 'upc' => '076732560525', 'provider' => 'bestbuy'],\n ['name' => \"Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/touch-cd/545958.p?id=68275&skuId=545958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=545958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0545\\/0545958_sa.jpg\"}', 'upc' => '076741715220', 'provider' => 'bestbuy'],\n ['name' => \"Riding with the King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riding-with-the-king-cd/546010.p?id=85326&skuId=546010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5460\\/546010_sa.jpg\"}', 'upc' => '720642401729', 'provider' => 'bestbuy'],\n ['name' => \"Little Love Affairs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-love-affairs-cd/546065.p?id=84273&skuId=546065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5460\\/546065_sa.jpg\"}', 'upc' => '076742210229', 'provider' => 'bestbuy'],\n ['name' => \"Michael Brecker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michael-brecker-cd/546109.p?id=64504&skuId=546109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5461\\/546109_sa.jpg\"}', 'upc' => '076732508022', 'provider' => 'bestbuy'],\n ['name' => \"Follow the Leader - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/follow-the-leader-cd/546136.p?id=81664&skuId=546136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5461\\/546136_sa.jpg\"}', 'upc' => '039405000322', 'provider' => 'bestbuy'],\n ['name' => \"Exit 0 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exit-0-cd/546163.p?id=81236&skuId=546163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546163_sa.jpg\"}', 'upc' => '076732599822', 'provider' => 'bestbuy'],\n ['name' => \"Live from Deep in the Heart of Texas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-deep-in-the-heart-of-texas-cd/546216.p?id=78429&skuId=546216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5462\\/546216_sa.jpg\"}', 'upc' => '076732065921', 'provider' => 'bestbuy'],\n ['name' => \"Vision Quest [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vision-quest-original-soundtrack-cd-original-soundtrack/546261.p?id=103199&skuId=546261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5462\\/546261.jpg\"}', 'upc' => '720642406328', 'provider' => 'bestbuy'],\n ['name' => \"Lone Justice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lone-justice-cd/546289.p?id=89572&skuId=546289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546289_sa.jpg\"}', 'upc' => '720642406021', 'provider' => 'bestbuy'],\n ['name' => \"Points on the Curve - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/points-on-the-curve-cd/546298.p?id=103445&skuId=546298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5462\\/546298_sa.jpg\"}', 'upc' => '720642400425', 'provider' => 'bestbuy'],\n ['name' => \"L'Apocalypse Des Animaux - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lapocalypse-des-animaux-cd/546350.p?id=88479&skuId=546350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5463\\/546350.jpg\"}', 'upc' => '042283150324', 'provider' => 'bestbuy'],\n ['name' => \"1969: Velvet Underground Live with Lou Reed,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1969-velvet-underground-live-with-lou-reed-cd/546369.p?id=103074&skuId=546369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5463\\/546369_sa.jpg\"}', 'upc' => '042283482425', 'provider' => 'bestbuy'],\n ['name' => \"Soil Festivities - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soil-festivities-cd/546378.p?id=102979&skuId=546378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5463\\/546378.jpg\"}', 'upc' => '042282339621', 'provider' => 'bestbuy'],\n ['name' => \"Antarctica [Original soundtrack] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/antarctica-original-soundtrack-cd/546387.p?id=73107&skuId=546387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5463\\/546387_sa.jpg\"}', 'upc' => '042281573224', 'provider' => 'bestbuy'],\n ['name' => \"Second Contribution - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-contribution-cd/546485.p?id=94870&skuId=546485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546485_sa.jpg\"}', 'upc' => '075021312821', 'provider' => 'bestbuy'],\n ['name' => \"Pressure Drop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pressure-drop-cd/546519.p?id=2424821&skuId=546519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5465\\/546519_sa.jpg\"}', 'upc' => '042284259422', 'provider' => 'bestbuy'],\n ['name' => \"New York Dolls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-dolls-cd/546537.p?id=93213&skuId=546537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5465\\/546537_sa.jpg\"}', 'upc' => '042283275225', 'provider' => 'bestbuy'],\n ['name' => \"Show Some Emotion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/show-some-emotion-cd/546546.p?id=73235&skuId=546546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546546_sa.jpg\"}', 'upc' => '075021327320', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Express [Original Soundtrack] - CD - Original Soundtrack Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-express-original-soundtrack-cd-original-soundtrack-germany/546582.p?id=91637&skuId=546582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546582_sa.jpg\"}', 'upc' => '042282420626', 'provider' => 'bestbuy'],\n ['name' => \"Smokin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smokin-cd/546617.p?id=85917&skuId=546617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5466\\/546617_sa.jpg\"}', 'upc' => '075021313224', 'provider' => 'bestbuy'],\n ['name' => \"Emerson, Lake & Powell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emerson-lake-powell-cd/546706.p?id=81513&skuId=546706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5467\\/546706_sa.jpg\"}', 'upc' => '042282929723', 'provider' => 'bestbuy'],\n ['name' => \"Fire and Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-and-water-cd/546742.p?id=82930&skuId=546742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5467\\/546742_sa.jpg\"}', 'upc' => '075021312623', 'provider' => 'bestbuy'],\n ['name' => \"Beauty & The Beat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beauty-the-beat-cd/546751.p?id=2229007&skuId=546751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546751_sa.jpg\"}', 'upc' => '044797502125', 'provider' => 'bestbuy'],\n ['name' => \"Grasshopper - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grasshopper-cd/546779.p?id=76583&skuId=546779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546779_sa.jpg\"}', 'upc' => '042280003821', 'provider' => 'bestbuy'],\n ['name' => \"5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-cd/546840.p?id=76582&skuId=546840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0546\\/0546840_sa.jpg\"}', 'upc' => '042281031328', 'provider' => 'bestbuy'],\n ['name' => \"Roy Buchanan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roy-buchanan-cd/546886.p?id=76196&skuId=546886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5468\\/546886_sa.jpg\"}', 'upc' => '042283141322', 'provider' => 'bestbuy'],\n ['name' => \"Best of Doug Sahm & the Sir Douglas Quintet... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-doug-sahm-the-sir-douglas-quintet-cd/546984.p?id=97720&skuId=546984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=546984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5469\\/546984.jpg\"}', 'upc' => '042284658621', 'provider' => 'bestbuy'],\n ['name' => \"Joan Armatrading - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joan-armatrading-cd/547064.p?id=73232&skuId=547064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547064_sa.jpg\"}', 'upc' => '075021322820', 'provider' => 'bestbuy'],\n ['name' => \"The Six Wives of Henry VIII - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-six-wives-of-henry-viii-cd/547082.p?id=103339&skuId=547082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547082_sa.jpg\"}', 'upc' => '075021322929', 'provider' => 'bestbuy'],\n ['name' => \"Big Tyme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-tyme-cd/547206.p?id=85155&skuId=547206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5472\\/547206_sa.jpg\"}', 'upc' => '076742230227', 'provider' => 'bestbuy'],\n ['name' => \"Mountain Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mountain-dance-cd/547224.p?id=67014&skuId=547224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547224_sa.jpg\"}', 'upc' => '011105950725', 'provider' => 'bestbuy'],\n ['name' => \"Caught in the Act - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caught-in-the-act-cd/547297.p?id=67366&skuId=547297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5472\\/547297.jpg\"}', 'upc' => '011105960021', 'provider' => 'bestbuy'],\n ['name' => \"Outrider - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outrider-cd/547448.p?id=94268&skuId=547448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547448_sa.jpg\"}', 'upc' => '720642418826', 'provider' => 'bestbuy'],\n ['name' => \"Introducing ... David Peaston - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/introducing-david-peaston-cd/547509.p?id=94589&skuId=547509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547509_sa.jpg\"}', 'upc' => '720642422823', 'provider' => 'bestbuy'],\n ['name' => \"Junkyard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/junkyard-cd/547885.p?id=87509&skuId=547885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=547885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0547\\/0547885_sa.jpg\"}', 'upc' => '720642422724', 'provider' => 'bestbuy'],\n ['name' => \"Peepshow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peepshow-cd/548198.p?id=98940&skuId=548198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0548\\/0548198_sa.jpg\"}', 'upc' => '720642420522', 'provider' => 'bestbuy'],\n ['name' => \"Goo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goo-cd/548312.p?id=99453&skuId=548312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0548\\/0548312_sa.jpg\"}', 'upc' => '720642429723', 'provider' => 'bestbuy'],\n ['name' => \"Robbie Robertson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robbie-robertson-cd/548438.p?id=251978&skuId=548438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5484\\/548438_sa.jpg\"}', 'upc' => '720642416020', 'provider' => 'bestbuy'],\n ['name' => \"Portrait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-cd/548447.p?id=70353&skuId=548447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0548\\/0548447_sa.jpg\"}', 'upc' => '011105955324', 'provider' => 'bestbuy'],\n ['name' => \"Chick Corea Akoustic Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chick-corea-akoustic-band-cd/548526.p?id=65281&skuId=548526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5485\\/548526_sa.jpg\"}', 'upc' => '011105958226', 'provider' => 'bestbuy'],\n ['name' => \"Larry Carlton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/larry-carlton-cd/548599.p?id=64825&skuId=548599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5485\\/548599_sa.jpg\"}', 'upc' => '076742224523', 'provider' => 'bestbuy'],\n ['name' => \"Discovery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/discovery-cd/548633.p?id=64822&skuId=548633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0548\\/0548633_sa.jpg\"}', 'upc' => '076742200329', 'provider' => 'bestbuy'],\n ['name' => \"Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reunion-cd/548679.p?id=64732&skuId=548679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5486\\/548679.jpg\"}', 'upc' => '011105959827', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-3-cd/548768.p?id=102598&skuId=548768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0548\\/0548768_sa.jpg\"}', 'upc' => '076732639122', 'provider' => 'bestbuy'],\n ['name' => \"Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-cd/548928.p?id=91772&skuId=548928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=548928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5489\\/548928_sa.jpg\"}', 'upc' => '076732631225', 'provider' => 'bestbuy'],\n ['name' => \"Stones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stones-cd/549160.p?id=3340747&skuId=549160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '076743600524', 'provider' => 'bestbuy'],\n ['name' => \"Dog Eat Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dog-eat-dog-cd/549188.p?id=91921&skuId=549188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549188_sa.jpg\"}', 'upc' => '720642407424', 'provider' => 'bestbuy'],\n ['name' => \"Wild Things Run Fast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-things-run-fast-cd/549204.p?id=91933&skuId=549204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549204_sa.jpg\"}', 'upc' => '720642201923', 'provider' => 'bestbuy'],\n ['name' => \"Act III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/act-iii-cd/549393.p?id=1367279&skuId=549393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549393_sa.jpg\"}', 'upc' => '075992428026', 'provider' => 'bestbuy'],\n ['name' => \"Urban Daydreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urban-daydreams-cd/549446.p?id=64161&skuId=549446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549446_sa.jpg\"}', 'upc' => '011105958721', 'provider' => 'bestbuy'],\n ['name' => \"Beetlejuice [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beetlejuice-original-motion-picture-soundtrack-cd-original-soundtrack/549455.p?id=2390251&skuId=549455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5494\\/549455.jpg\"}', 'upc' => '720642420225', 'provider' => 'bestbuy'],\n ['name' => \"Blue Murder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-murder-cd/549482.p?id=75128&skuId=549482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5494\\/549482_sa.jpg\"}', 'upc' => '720642421222', 'provider' => 'bestbuy'],\n ['name' => \"Country Music Hall of Fame Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-music-hall-of-fame-series-cd/549650.p?id=103787&skuId=549650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5496\\/549650_sa.jpg\"}', 'upc' => '008811008123', 'provider' => 'bestbuy'],\n ['name' => \"Characters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/characters-cd/549758.p?id=2389718&skuId=549758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549758_sa.jpg\"}', 'upc' => '737463624824', 'provider' => 'bestbuy'],\n ['name' => \"Through the Looking Glass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/through-the-looking-glass-cd/549794.p?id=98944&skuId=549794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549794_sa.jpg\"}', 'upc' => '720642413425', 'provider' => 'bestbuy'],\n ['name' => \"Little Shop Of Horrors - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-shop-of-horrors-cd-original-soundtrack/549838.p?id=2068446&skuId=549838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549838_sa.jpg\"}', 'upc' => '720642412527', 'provider' => 'bestbuy'],\n ['name' => \"Christmas [RCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-rca-cd/549883.p?id=99224&skuId=549883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0549\\/0549883_sa.jpg\"}', 'upc' => '012414920829', 'provider' => 'bestbuy'],\n ['name' => \"Evita [Original Broadway Cast] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evita-original-broadway-cast-cd-original-broadway-cast/549972.p?id=2182677&skuId=549972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=549972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5499\\/549972_sa.jpg\"}', 'upc' => '076731010724', 'provider' => 'bestbuy'],\n ['name' => \"You Had to Be There: Recorded Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-had-to-be-there-recorded-live-cd/550059.p?id=76282&skuId=550059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5500\\/550059_sa.jpg\"}', 'upc' => '076732600528', 'provider' => 'bestbuy'],\n ['name' => \"All in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-in-love-cd/550102.p?id=94135&skuId=550102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5501\\/550102.jpg\"}', 'upc' => '715187743120', 'provider' => 'bestbuy'],\n ['name' => \"Runt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/runt-cd/550184.p?id=97550&skuId=550184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5501\\/550184_sa.jpg\"}', 'upc' => '081227086220', 'provider' => 'bestbuy'],\n ['name' => \"Hermit of Mink Hollow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hermit-of-mink-hollow-cd/550193.p?id=97544&skuId=550193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5501\\/550193_sa.jpg\"}', 'upc' => '081227087128', 'provider' => 'bestbuy'],\n ['name' => \"Faithful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faithful-cd/550219.p?id=97542&skuId=550219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0550\\/0550219_sa.jpg\"}', 'upc' => '081227086824', 'provider' => 'bestbuy'],\n ['name' => \"A Wizard, A True Star [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-wizard-a-true-star-pa-cd/550237.p?id=97539&skuId=550237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5502\\/550237_sa.jpg\"}', 'upc' => '081227086428', 'provider' => 'bestbuy'],\n ['name' => \"Time on My Hands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-on-my-hands-cd/550308.p?id=70717&skuId=550308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0550\\/0550308_sa.jpg\"}', 'upc' => '077779289424', 'provider' => 'bestbuy'],\n ['name' => \"Songs That Got Us Through WW2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-that-got-us-through-ww2-cd-various/550380.p?id=104726&skuId=550380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5503\\/550380_sa.jpg\"}', 'upc' => '081227096021', 'provider' => 'bestbuy'],\n ['name' => \"U-Krew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/u-krew-cd/550781.p?id=1981186&skuId=550781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5507\\/550781.jpg\"}', 'upc' => '018777352420', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Wayne Newton Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-wayne-newton-now-cd/550825.p?id=93272&skuId=550825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5508\\/550825.jpg\"}', 'upc' => '715187727021', 'provider' => 'bestbuy'],\n ['name' => \"Lifetime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lifetime-cd/550834.p?id=96152&skuId=550834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5508\\/550834.jpg\"}', 'upc' => '715187727120', 'provider' => 'bestbuy'],\n ['name' => \"Disco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disco-cd/550905.p?id=94763&skuId=550905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=550905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0550\\/0550905_sa.jpg\"}', 'upc' => '077774645027', 'provider' => 'bestbuy'],\n ['name' => \"Love Junk [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-junk-bonus-track-cd/551058.p?id=243478&skuId=551058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0551\\/0551058_sa.jpg\"}', 'upc' => '094632167521', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Melanie [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-melanie-rhino-cd/551174.p?id=91352&skuId=551174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0551\\/0551174_sa.jpg\"}', 'upc' => '081227099121', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/551209.p?id=91135&skuId=551209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5512\\/551209.jpg\"}', 'upc' => '715187725423', 'provider' => 'bestbuy'],\n ['name' => \"Day by Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-by-day-cd/551281.p?id=69521&skuId=551281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5512\\/551281.jpg\"}', 'upc' => '077779009626', 'provider' => 'bestbuy'],\n ['name' => \"Hipsters' Holiday: Vocal Jazz & R&B Classics - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hipsters-holiday-vocal-jazz-r-b-classics-cd-various/551423.p?id=64974&skuId=551423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5514\\/551423_sa.jpg\"}', 'upc' => '081227091026', 'provider' => 'bestbuy'],\n ['name' => \"A Change in the Weather - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-change-in-the-weather-cd/551432.p?id=84248&skuId=551432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0551\\/0551432_sa.jpg\"}', 'upc' => '081227091422', 'provider' => 'bestbuy'],\n ['name' => \"All Night Long - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-night-long-cd/551487.p?id=84570&skuId=551487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5514\\/551487.jpg\"}', 'upc' => '715187741027', 'provider' => 'bestbuy'],\n ['name' => \"Step in the Arena - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-in-the-arena-cd/551575.p?id=83237&skuId=551575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0551\\/0551575_sa.jpg\"}', 'upc' => '094632179821', 'provider' => 'bestbuy'],\n ['name' => \"Foghat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foghat-cd/551753.p?id=82558&skuId=551753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5517\\/551753_sa.jpg\"}', 'upc' => '081227088729', 'provider' => 'bestbuy'],\n ['name' => \"Eliane Elias Plays Jobim - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eliane-elias-plays-jobim-cd/551842.p?id=2443831&skuId=551842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=551842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0551\\/0551842_sa.jpg\"}', 'upc' => '077779308927', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dance Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dance-hits-cd/552397.p?id=87550&skuId=552397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=552397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0552\\/0552397_sa.jpg\"}', 'upc' => '715187726024', 'provider' => 'bestbuy'],\n ['name' => \"The Whole Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-whole-story-cd/552734.p?id=76391&skuId=552734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=552734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0552\\/0552734_sa.jpg\"}', 'upc' => '077774641425', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jesse Winchester - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jesse-winchester-cd/552841.p?id=104444&skuId=552841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=552841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5528\\/552841_sa.jpg\"}', 'upc' => '081227008529', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Beau Brummels: Golden Archive... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-beau-brummels-golden-archive-cd/553056.p?id=74236&skuId=553056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=553056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0553\\/0553056_sa.jpg\"}', 'upc' => '081227577926', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/553065.p?id=73877&skuId=553065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=553065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5530\\/553065.jpg\"}', 'upc' => '715187725928', 'provider' => 'bestbuy'],\n ['name' => \"No Frontiers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-frontiers-cd/553172.p?id=243614&skuId=553172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=553172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0553\\/0553172_sa.jpg\"}', 'upc' => '739341000225', 'provider' => 'bestbuy'],\n ['name' => \"Mission Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mission-earth-cd/553270.p?id=2023283&skuId=553270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=553270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5532\\/553270.jpg\"}', 'upc' => '081227070922', 'provider' => 'bestbuy'],\n ['name' => \"Staying a Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/staying-a-life-cd/554698.p?id=72386&skuId=554698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=554698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5546\\/554698_sa.jpg\"}', 'upc' => '074644694420', 'provider' => 'bestbuy'],\n ['name' => \"Hot House Flowers [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-house-flowers-ecd-cd/554796.p?id=68824&skuId=554796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=554796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0554\\/0554796_sa.jpg\"}', 'upc' => '074643953023', 'provider' => 'bestbuy'],\n ['name' => \"Martika - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/martika-cd/554821.p?id=90695&skuId=554821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=554821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0554\\/0554821_sa.jpg\"}', 'upc' => '074644429022', 'provider' => 'bestbuy'],\n ['name' => \"Into the Mirror Black - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-mirror-black-cd/555027.p?id=97844&skuId=555027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5550\\/555027_sa.jpg\"}', 'upc' => '074644508529', 'provider' => 'bestbuy'],\n ['name' => \"Thundering Herds 1945-1947 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thundering-herds-1945-1947-cd/555205.p?id=67383&skuId=555205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5552\\/555205_sa.jpg\"}', 'upc' => '074644410822', 'provider' => 'bestbuy'],\n ['name' => \"Guilty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guilty-cd/555385.p?id=100599&skuId=555385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5553\\/555385_sa.jpg\"}', 'upc' => '074643675024', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Weapons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-weapons-cd/555492.p?id=271778&skuId=555492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '074644513929', 'provider' => 'bestbuy'],\n ['name' => \"40 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/40-greatest-hits-cd/555786.p?id=104102&skuId=555786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0555\\/0555786_sa.jpg\"}', 'upc' => '042282123329', 'provider' => 'bestbuy'],\n ['name' => \"An Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-anthology-cd/555839.p?id=72790&skuId=555839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5558\\/555839_sa.jpg\"}', 'upc' => '042283144422', 'provider' => 'bestbuy'],\n ['name' => \"Live at Ludlow Garage 1970 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-ludlow-garage-1970-cd/555900.p?id=72781&skuId=555900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5559\\/555900_sa.jpg\"}', 'upc' => '042284326025', 'provider' => 'bestbuy'],\n ['name' => \"An Anthology, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-anthology-vol-2-cd/555919.p?id=72791&skuId=555919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=555919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5559\\/555919.jpg\"}', 'upc' => '042283144521', 'provider' => 'bestbuy'],\n ['name' => \"Just Say Yo: Vol. 2 of Just Say Yes - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-say-yo-vol-2-of-just-say-yes-various-cd/557873.p?id=87520&skuId=557873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=557873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5578\\/557873.jpg\"}', 'upc' => '075992574525', 'provider' => 'bestbuy'],\n ['name' => \"Tain't Nobody's Biz-ness If I Do - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taint-nobodys-biz-ness-if-i-do-cd/557908.p?id=67666&skuId=557908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=557908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0557\\/0557908_sa.jpg\"}', 'upc' => '025218645324', 'provider' => 'bestbuy'],\n ['name' => \"The New Boss Guitar of George Benson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-boss-guitar-of-george-benson-cd/557926.p?id=2551770&skuId=557926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=557926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5579\\/557926.jpg\"}', 'upc' => '025218646123', 'provider' => 'bestbuy'],\n ['name' => \"Music of Espionage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-espionage-cd/558104.p?id=71090&skuId=558104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0558\\/0558104_sa.jpg\"}', 'upc' => '089408550324', 'provider' => 'bestbuy'],\n ['name' => \"1712 Overture & Other Musical Assaults - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1712-overture-other-musical-assaults-cd/558177.p?id=287746&skuId=558177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5581\\/558177.jpg\"}', 'upc' => '089408021022', 'provider' => 'bestbuy'],\n ['name' => \"Uptown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uptown-cd/558541.p?id=70148&skuId=558541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0558\\/0558541_sa.jpg\"}', 'upc' => '089408330322', 'provider' => 'bestbuy'],\n ['name' => \"Highlights from the Carnegie Hall Concerts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highlights-from-the-carnegie-hall-concerts-cd/558676.p?id=91832&skuId=558676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0558\\/0558676_sa.jpg\"}', 'upc' => '089408550522', 'provider' => 'bestbuy'],\n ['name' => \"Piano Sonatas 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-sonatas-3-cd/558756.p?id=1693296&skuId=558756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5587\\/558756_sa.jpg\"}', 'upc' => '089408018527', 'provider' => 'bestbuy'],\n ['name' => \"Big Band Hit Parade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-band-hit-parade-cd/558765.p?id=88461&skuId=558765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=558765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5587\\/558765_sa.jpg\"}', 'upc' => '089408017728', 'provider' => 'bestbuy'],\n ['name' => \"Bebe & Cece Winans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bebe-cece-winans-cd/559675.p?id=2295468&skuId=559675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=559675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5596\\/559675_sa.jpg\"}', 'upc' => '077774688321', 'provider' => 'bestbuy'],\n ['name' => \"Fisherman's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fishermans-blues-cd/559693.p?id=103591&skuId=559693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=559693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5596\\/559693.jpg\"}', 'upc' => '094632158925', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Art Blakey [Blue Note/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-art-blakey-blue-note-capitol-cd/559782.p?id=64322&skuId=559782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=559782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5597\\/559782_sa.jpg\"}', 'upc' => '077779320523', 'provider' => 'bestbuy'],\n ['name' => \"The Capitol Collector's Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-capitol-collectors-series-cd/560048.p?id=90678&skuId=560048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0560\\/0560048_sa.jpg\"}', 'upc' => '077779163328', 'provider' => 'bestbuy'],\n ['name' => \"Born 2B Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-2b-blue-cd/560057.p?id=91731&skuId=560057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5600\\/560057.jpg\"}', 'upc' => '077774830324', 'provider' => 'bestbuy'],\n ['name' => \"Sailor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sailor-cd/560066.p?id=91741&skuId=560066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5600\\/560066.jpg\"}', 'upc' => '077779444922', 'provider' => 'bestbuy'],\n ['name' => \"Abracadabra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abracadabra-cd/560075.p?id=2277110&skuId=560075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5600\\/560075_sa.jpg\"}', 'upc' => '077774610223', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Stanley Turrentine [Blue Note] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-stanley-turrentine-blue-note-cd/560244.p?id=71557&skuId=560244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5602\\/560244_sa.jpg\"}', 'upc' => '077779320127', 'provider' => 'bestbuy'],\n ['name' => \"Break Every Rule - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/break-every-rule-cd/560262.p?id=3443232&skuId=560262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5602\\/560262.jpg\"}', 'upc' => '077774632324', 'provider' => 'bestbuy'],\n ['name' => \"Love Stinks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-stinks-cd/560413.p?id=83450&skuId=560413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5604\\/560413.jpg\"}', 'upc' => '077779270323', 'provider' => 'bestbuy'],\n ['name' => \"Singles Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singles-collection-cd/560495.p?id=2281113&skuId=560495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0560\\/0560495_sa.jpg\"}', 'upc' => '094632149824', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jimmy Smith: The Blue Note Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jimmy-smith-the-blue-note-years-cd/560538.p?id=71020&skuId=560538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0560\\/0560538_sa.jpg\"}', 'upc' => '077779114023', 'provider' => 'bestbuy'],\n ['name' => \"Sheriff - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sheriff-cd/560565.p?id=1432797&skuId=560565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5605\\/560565.jpg\"}', 'upc' => '077779121625', 'provider' => 'bestbuy'],\n ['name' => \"Wide Open - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wide-open-cd/560583.p?id=97984&skuId=560583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5605\\/560583.jpg\"}', 'upc' => '715187758520', 'provider' => 'bestbuy'],\n ['name' => \"Stormy Monday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stormy-monday-cd/560734.p?id=96116&skuId=560734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5607\\/560734_sa.jpg\"}', 'upc' => '077779144129', 'provider' => 'bestbuy'],\n ['name' => \"New York, New York [Original Soundtrack] - CD - Original Soundtrack Italy\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-new-york-original-soundtrack-cd-original-soundtrack-italy/560823.p?id=93222&skuId=560823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=560823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5608\\/560823.jpg\"}', 'upc' => '077774609029', 'provider' => 'bestbuy'],\n ['name' => \"The Golden Age of Wireless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-golden-age-of-wireless-cd/561038.p?id=80701&skuId=561038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5610\\/561038_sa.jpg\"}', 'upc' => '077774600927', 'provider' => 'bestbuy'],\n ['name' => \"Live in New York City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-new-york-city-cd/561323.p?id=89034&skuId=561323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0561\\/0561323_sa.jpg\"}', 'upc' => '077774619622', 'provider' => 'bestbuy'],\n ['name' => \"The Kick Inside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/the-kick-inside-cd/561412.p?id=76390&skuId=561412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0561\\/0561412_sa.jpg\"}', 'upc' => '077774601221', 'provider' => 'bestbuy'],\n ['name' => \"Unchain My Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unchain-my-heart-cd/561467.p?id=2071601&skuId=561467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5614\\/561467_sa.jpg\"}', 'upc' => '077774828529', 'provider' => 'bestbuy'],\n ['name' => \"House Of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-love-cd/561626.p?id=85798&skuId=561626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0561\\/0561626_sa.jpg\"}', 'upc' => '042284229326', 'provider' => 'bestbuy'],\n ['name' => \"Changeless [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/changeless-digdownload-cd/561751.p?id=67882&skuId=561751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=561751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5617\\/561751.jpg\"}', 'upc' => '042283961821', 'provider' => 'bestbuy'],\n ['name' => \"Vesta 4 U - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vesta-4-u-cd/562037.p?id=104219&skuId=562037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5620\\/562037_sa.jpg\"}', 'upc' => '075021522329', 'provider' => 'bestbuy'],\n ['name' => \"Suzanne Vega - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suzanne-vega-cd/562073.p?id=103054&skuId=562073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0562\\/0562073_sa.jpg\"}', 'upc' => '075021507227', 'provider' => 'bestbuy'],\n ['name' => \"Solitude Standing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solitude-standing-cd/562082.p?id=103053&skuId=562082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5620\\/562082_sa.jpg\"}', 'upc' => '075021513624', 'provider' => 'bestbuy'],\n ['name' => \"Southside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southside-cd/562153.p?id=101499&skuId=562153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0562\\/0562153_sa.jpg\"}', 'upc' => '042283817128', 'provider' => 'bestbuy'],\n ['name' => \"Best of Oingo Boingo: Skeletons in the Closet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-oingo-boingo-skeletons-in-the-closet-cd/562484.p?id=93836&skuId=562484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5624\\/562484_sa.jpg\"}', 'upc' => '075021521728', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Portrait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-portrait-cd/562527.p?id=76915&skuId=562527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5625\\/562527.jpg\"}', 'upc' => '075021517325', 'provider' => 'bestbuy'],\n ['name' => \"I 2 (Eye) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-2-eye-cd/562607.p?id=99226&skuId=562607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0562\\/0562607_sa.jpg\"}', 'upc' => '012414920621', 'provider' => 'bestbuy'],\n ['name' => \"2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-cd/562616.p?id=99229&skuId=562616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0562\\/0562616_sa.jpg\"}', 'upc' => '012414920423', 'provider' => 'bestbuy'],\n ['name' => \"Michael W. Smith Project - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michael-w-smith-project-cd/562625.p?id=99228&skuId=562625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5626\\/562625_sa.jpg\"}', 'upc' => '012414920928', 'provider' => 'bestbuy'],\n ['name' => \"Bebe's Kids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bebes-kids-cd/562787.p?id=84905&skuId=562787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5627\\/562787.jpg\"}', 'upc' => '042284196024', 'provider' => 'bestbuy'],\n ['name' => \"Doro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doro-cd/562910.p?id=1433175&skuId=562910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5629\\/562910.jpg\"}', 'upc' => '042284619424', 'provider' => 'bestbuy'],\n ['name' => \"Flying Colours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flying-colours-cd/562929.p?id=79919&skuId=562929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=562929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0562\\/0562929_sa.jpg\"}', 'upc' => '075021522428', 'provider' => 'bestbuy'],\n ['name' => \"Classics, Vol. 18 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-vol-18-cd/563090.p?id=91428&skuId=563090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5630\\/563090_sa.jpg\"}', 'upc' => '075021251625', 'provider' => 'bestbuy'],\n ['name' => \"Classic 50's Hits, Vol. 1 [Intercontinental] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-50s-hits-vol-1-intercontinental-cd-various/563508.p?id=129277&skuId=563508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0563\\/0563508_sa.jpg\"}', 'upc' => '024266104425', 'provider' => 'bestbuy'],\n ['name' => \"Fish Out of Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fish-out-of-water-cd/563688.p?id=102067&skuId=563688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5636\\/563688.jpg\"}', 'upc' => '042284828925', 'provider' => 'bestbuy'],\n ['name' => \"Breaths - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breaths-cd/563866.p?id=100983&skuId=563866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5638\\/563866_sa.jpg\"}', 'upc' => '018964010522', 'provider' => 'bestbuy'],\n ['name' => \"Gathering Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gathering-place-cd/563875.p?id=96412&skuId=563875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5638\\/563875_sa.jpg\"}', 'upc' => '048248107624', 'provider' => 'bestbuy'],\n ['name' => \"Bad Axe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-axe-cd/563900.p?id=98184&skuId=563900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5639\\/563900.jpg\"}', 'upc' => '014551473824', 'provider' => 'bestbuy'],\n ['name' => \"Live at Keystone, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-keystone-vol-1-cd/563991.p?id=83270&skuId=563991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=563991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0563\\/0563991_sa.jpg\"}', 'upc' => '025218770125', 'provider' => 'bestbuy'],\n ['name' => \"Live at Keystone, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-keystone-vol-2-cd/564008.p?id=83271&skuId=564008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5640\\/564008_sa.jpg\"}', 'upc' => '025218770224', 'provider' => 'bestbuy'],\n ['name' => \"Keystone Encores, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keystone-encores-vol-1-cd/564017.p?id=83267&skuId=564017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5640\\/564017.jpg\"}', 'upc' => '025218770323', 'provider' => 'bestbuy'],\n ['name' => \"Thelonious Monk with John Coltrane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelonious-monk-with-john-coltrane-cd/564026.p?id=69306&skuId=564026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5640\\/564026_sa.jpg\"}', 'upc' => '025218603928', 'provider' => 'bestbuy'],\n ['name' => \"Humour Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/humour-me-cd/564240.p?id=104445&skuId=564240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564240_sa.jpg\"}', 'upc' => '015891102320', 'provider' => 'bestbuy'],\n ['name' => \"On Praying Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-praying-ground-cd/564259.p?id=103626&skuId=564259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5642\\/564259_sa.jpg\"}', 'upc' => '015891377926', 'provider' => 'bestbuy'],\n ['name' => \"Blue Ridge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-ridge-cd/564268.p?id=156036&skuId=564268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564268_sa.jpg\"}', 'upc' => '015891374727', 'provider' => 'bestbuy'],\n ['name' => \"Change of Scenery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/change-of-scenery-cd/564277.p?id=98307&skuId=564277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564277_sa.jpg\"}', 'upc' => '015891376325', 'provider' => 'bestbuy'],\n ['name' => \"New Moon Rising - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-moon-rising-cd/564295.p?id=97425&skuId=564295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5642\\/564295_sa.jpg\"}', 'upc' => '015891376226', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-blues-cd/564320.p?id=77343&skuId=564320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564320_sa.jpg\"}', 'upc' => '022211213925', 'provider' => 'bestbuy'],\n ['name' => \"Sweet and Sexy: The Ultimate Collection of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-and-sexy-the-ultimate-collection-of-cd/564366.p?id=103600&skuId=564366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5643\\/564366.jpg\"}', 'upc' => '026656271328', 'provider' => 'bestbuy'],\n ['name' => \"Back to Wreck the Shop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-wreck-the-shop-cd/564393.p?id=102460&skuId=564393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5643\\/564393.jpg\"}', 'upc' => '026656271229', 'provider' => 'bestbuy'],\n ['name' => \"The Wild Tchoupitoulas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wild-tchoupitoulas-cd/564419.p?id=104237&skuId=564419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5644\\/564419.jpg\"}', 'upc' => '016253990821', 'provider' => 'bestbuy'],\n ['name' => \"Solid Gold Cadillac - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solid-gold-cadillac-cd/564446.p?id=104705&skuId=564446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564446_sa.jpg\"}', 'upc' => '019148419124', 'provider' => 'bestbuy'],\n ['name' => \"Mellow Down Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mellow-down-easy-cd/564516.p?id=74367&skuId=564516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5645\\/564516.jpg\"}', 'upc' => '019148429123', 'provider' => 'bestbuy'],\n ['name' => \"Dreams Come True - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreams-come-true-cd/564534.p?id=101782&skuId=564534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5645\\/564534_sa.jpg\"}', 'upc' => '049891001420', 'provider' => 'bestbuy'],\n ['name' => \"Bass Is the Name of the Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-is-the-name-of-the-game-cd/564561.p?id=90159&skuId=564561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5645\\/564561.jpg\"}', 'upc' => '021257940321', 'provider' => 'bestbuy'],\n ['name' => \"Falling in Love with Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/falling-in-love-with-jazz-cd/564605.p?id=70433&skuId=564605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5646\\/564605_sa.jpg\"}', 'upc' => '025218917926', 'provider' => 'bestbuy'],\n ['name' => \"Too Much Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-much-pain-cd/564632.p?id=155049&skuId=564632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564632_sa.jpg\"}', 'upc' => '048021745326', 'provider' => 'bestbuy'],\n ['name' => \"Raw Magic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raw-magic-cd/564641.p?id=90165&skuId=564641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5646\\/564641_sa.jpg\"}', 'upc' => '014551472827', 'provider' => 'bestbuy'],\n ['name' => \"Disturbing the Peace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disturbing-the-peace-cd/564650.p?id=89351&skuId=564650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564650_sa.jpg\"}', 'upc' => '014551476122', 'provider' => 'bestbuy'],\n ['name' => \"The Mississippi Mass Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mississippi-mass-choir-cd/564669.p?id=91899&skuId=564669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564669_sa.jpg\"}', 'upc' => '048021600328', 'provider' => 'bestbuy'],\n ['name' => \"Captured Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/captured-live-cd/564678.p?id=89350&skuId=564678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5646\\/564678.jpg\"}', 'upc' => '014551479420', 'provider' => 'bestbuy'],\n ['name' => \"All the Way Crazy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-way-crazy-cd/564696.p?id=89349&skuId=564696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5646\\/564696_sa.jpg\"}', 'upc' => '014551475323', 'provider' => 'bestbuy'],\n ['name' => \"Big Fun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-fun-cd/564703.p?id=2389831&skuId=564703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5647\\/564703_sa.jpg\"}', 'upc' => '014551476726', 'provider' => 'bestbuy'],\n ['name' => \"2 Low Life Muthas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-low-life-muthas-cd/564721.p?id=95129&skuId=564721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5647\\/564721.jpg\"}', 'upc' => '022471300120', 'provider' => 'bestbuy'],\n ['name' => \"Triple Play - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/triple-play-cd/564758.p?id=94778&skuId=564758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564758_sa.jpg\"}', 'upc' => '014551478928', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Run - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-run-cd/564794.p?id=74995&skuId=564794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5647\\/564794_sa.jpg\"}', 'upc' => '048021745029', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Cadillac - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-cadillac-cd/564801.p?id=2416691&skuId=564801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564801_sa.jpg\"}', 'upc' => '011661602526', 'provider' => 'bestbuy'],\n ['name' => \"Whoopin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whoopin-cd/564874.p?id=101458&skuId=564874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564874_sa.jpg\"}', 'upc' => '014551473428', 'provider' => 'bestbuy'],\n ['name' => \"Jump for Joy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jump-for-joy-cd/564883.p?id=101265&skuId=564883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564883_sa.jpg\"}', 'upc' => '014551478423', 'provider' => 'bestbuy'],\n ['name' => \"Simply The Best Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simply-the-best-live-cd/564892.p?id=2443636&skuId=564892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564892_sa.jpg\"}', 'upc' => '011661211025', 'provider' => 'bestbuy'],\n ['name' => \"Harp Attack! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harp-attack-cd-various/564909.p?id=78795&skuId=564909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564909_sa.jpg\"}', 'upc' => '014551479024', 'provider' => 'bestbuy'],\n ['name' => \"Frozen Alive! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frozen-alive-cd/564927.p?id=78330&skuId=564927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5649\\/564927_sa.jpg\"}', 'upc' => '014551472520', 'provider' => 'bestbuy'],\n ['name' => \"Don't Lose Your Cool - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-lose-your-cool-cd/564936.p?id=78328&skuId=564936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0564\\/0564936_sa.jpg\"}', 'upc' => '014551473022', 'provider' => 'bestbuy'],\n ['name' => \"Frostbite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frostbite-cd/564945.p?id=78329&skuId=564945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5649\\/564945_sa.jpg\"}', 'upc' => '014551471929', 'provider' => 'bestbuy'],\n ['name' => \"Dancing on the Edge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-on-the-edge-cd/564954.p?id=76189&skuId=564954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5649\\/564954.jpg\"}', 'upc' => '014551474722', 'provider' => 'bestbuy'],\n ['name' => \"All My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-my-life-cd/564963.p?id=75881&skuId=564963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5649\\/564963.jpg\"}', 'upc' => '011661950122', 'provider' => 'bestbuy'],\n ['name' => \"Ice Pickin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ice-pickin-cd/564981.p?id=78331&skuId=564981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5649\\/564981_sa.jpg\"}', 'upc' => '014551471325', 'provider' => 'bestbuy'],\n ['name' => \"Queen of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/queen-of-the-blues-cd/564990.p?id=101268&skuId=564990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=564990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5649\\/564990.jpg\"}', 'upc' => '014551474029', 'provider' => 'bestbuy'],\n ['name' => \"Lovejoy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovejoy-cd/565043.p?id=87890&skuId=565043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5650\\/565043_sa.jpg\"}', 'upc' => '025218851725', 'provider' => 'bestbuy'],\n ['name' => \"Charge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charge-cd/565132.p?id=84526&skuId=565132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0565\\/0565132_sa.jpg\"}', 'upc' => '018861025629', 'provider' => 'bestbuy'],\n ['name' => \"Mahogany Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mahogany-nights-cd/565141.p?id=87790&skuId=565141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5651\\/565141_sa.jpg\"}', 'upc' => '025041102025', 'provider' => 'bestbuy'],\n ['name' => \"Set Free - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/set-free-cd/565178.p?id=80170&skuId=565178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5651\\/565178.jpg\"}', 'upc' => '025041101622', 'provider' => 'bestbuy'],\n ['name' => \"Music to Disappear In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-to-disappear-in-cd/565196.p?id=96034&skuId=565196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5651\\/565196_sa.jpg\"}', 'upc' => '025041100526', 'provider' => 'bestbuy'],\n ['name' => \"Starflight 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starflight-1-cd-various/565258.p?id=100104&skuId=565258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5652\\/565258_sa.jpg\"}', 'upc' => '025041110020', 'provider' => 'bestbuy'],\n ['name' => \"Rainforest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rainforest-cd/565267.p?id=96614&skuId=565267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5652\\/565267_sa.jpg\"}', 'upc' => '025041101424', 'provider' => 'bestbuy'],\n ['name' => \"Strata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strata-cd/565276.p?id=96790&skuId=565276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5652\\/565276.jpg\"}', 'upc' => '025041101929', 'provider' => 'bestbuy'],\n ['name' => \"Spinfield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spinfield-cd/565294.p?id=90063&skuId=565294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0565\\/0565294_sa.jpg\"}', 'upc' => '025041101226', 'provider' => 'bestbuy'],\n ['name' => \"Ballot Result [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ballot-result-pa-cd/565310.p?id=91854&skuId=565310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5653\\/565310_sa.jpg\"}', 'upc' => '018861006826', 'provider' => 'bestbuy'],\n ['name' => \"Hearts of Space: Cruisers 1.0 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hearts-of-space-cruisers-1-0-cd-various/565365.p?id=79359&skuId=565365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0565\\/0565365_sa.jpg\"}', 'upc' => '025041110228', 'provider' => 'bestbuy'],\n ['name' => \"I Against I - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-against-i-cd/565454.p?id=73641&skuId=565454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0565\\/0565454_sa.jpg\"}', 'upc' => '018861006529', 'provider' => 'bestbuy'],\n ['name' => \"Wasted Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wasted-again-cd/565515.p?id=74819&skuId=565515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0565\\/0565515_sa.jpg\"}', 'upc' => '018861016627', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' the Boat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-the-boat-cd/565748.p?id=71052&skuId=565748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=565748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5657\\/565748.jpg\"}', 'upc' => '028568802324', 'provider' => 'bestbuy'],\n ['name' => \"Down South - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-south-cd/566104.p?id=103617&skuId=566104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=566104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0566\\/0566104_sa.jpg\"}', 'upc' => '015891374222', 'provider' => 'bestbuy'],\n ['name' => \"The Chess Box [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chess-box-box-cd/566694.p?id=74523&skuId=566694&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=566694', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5666\\/566694.jpg\"}', 'upc' => '076741080120', 'provider' => 'bestbuy'],\n ['name' => \"The Chess Box [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chess-box-box-cd/566701.p?id=2416840&skuId=566701&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=566701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5667\\/566701_sa.jpg\"}', 'upc' => '076741080229', 'provider' => 'bestbuy'],\n ['name' => \"Oldies But Goodies: 21 #1 Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldies-but-goodies-21-1-hits-cd-various/566738.p?id=93883&skuId=566738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=566738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0566\\/0566738_sa.jpg\"}', 'upc' => '081658881524', 'provider' => 'bestbuy'],\n ['name' => \"Forever Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-yours-cd/567835.p?id=102248&skuId=567835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=567835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5678\\/567835_sa.jpg\"}', 'upc' => '054291881220', 'provider' => 'bestbuy'],\n ['name' => \"Ace of Harps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ace-of-harps-cd/567871.p?id=92695&skuId=567871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=567871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5678\\/567871_sa.jpg\"}', 'upc' => '014551478126', 'provider' => 'bestbuy'],\n ['name' => \"Mandy Patinkin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mandy-patinkin-cd/567988.p?id=94503&skuId=567988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=567988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5679\\/567988_sa.jpg\"}', 'upc' => '074644494327', 'provider' => 'bestbuy'],\n ['name' => \"Baroque Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baroque-music-cd/568852.p?id=1764438&skuId=568852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=568852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5688\\/568852.jpg\"}', 'upc' => '074643906128', 'provider' => 'bestbuy'],\n ['name' => \"Short Dog's in the House [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/short-dogs-in-the-house-pa-cd/569129.p?id=101993&skuId=569129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=569129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0569\\/0569129_sa.jpg\"}', 'upc' => '012414134820', 'provider' => 'bestbuy'],\n ['name' => \"Heartbeats Accelerating - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heartbeats-accelerating-cd/569691.p?id=91170&skuId=569691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=569691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5696\\/569691.jpg\"}', 'upc' => '010058207023', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' with the Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-with-the-rhythm-cd/569940.p?id=3323825&skuId=569940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=569940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '078635704228', 'provider' => 'bestbuy'],\n ['name' => \"Breakfast In The Field - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breakfast-in-the-field-cd/570073.p?id=85163&skuId=570073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=570073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0570\\/0570073_sa.jpg\"}', 'upc' => '019341101727', 'provider' => 'bestbuy'],\n ['name' => \"Playa Del Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playa-del-rock-cd/570340.p?id=79549&skuId=570340&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=570340', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5703\\/570340.jpg\"}', 'upc' => '036124483320', 'provider' => 'bestbuy'],\n ['name' => \"Untitled - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/untitled-cd/570386.p?id=2407988&skuId=570386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=570386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5703\\/570386.jpg\"}', 'upc' => '019341009429', 'provider' => 'bestbuy'],\n ['name' => \"The Trinity Session - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-trinity-session-cd/570518.p?id=79034&skuId=570518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=570518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5705\\/570518_sa.jpg\"}', 'upc' => '078635856828', 'provider' => 'bestbuy'],\n ['name' => \"Deep In the Shed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-in-the-shed-cd/570812.p?id=70390&skuId=570812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=570812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0570\\/0570812_sa.jpg\"}', 'upc' => '012416307826', 'provider' => 'bestbuy'],\n ['name' => \"In Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-concert-cd/571125.p?id=94793&skuId=571125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5711\\/571125_sa.jpg\"}', 'upc' => '075992716222', 'provider' => 'bestbuy'],\n ['name' => \"Fleetwood Mac Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fleetwood-mac-live-cd/571152.p?id=82433&skuId=571152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5711\\/571152_sa.jpg\"}', 'upc' => '075992741026', 'provider' => 'bestbuy'],\n ['name' => \"Dr. Demento 20th Anniversary Collection: The... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dr-demento-20th-anniversary-collection-the-cd-various/571269.p?id=80860&skuId=571269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5712\\/571269.jpg\"}', 'upc' => '081227074326', 'provider' => 'bestbuy'],\n ['name' => \"This Is Bass - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-bass-cd-various/571401.p?id=101643&skuId=571401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0571\\/0571401_sa.jpg\"}', 'upc' => '053993331224', 'provider' => 'bestbuy'],\n ['name' => \"Mr Magic'S Rap Attack 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-magics-rap-attack-5-cd-various/571447.p?id=92549&skuId=571447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5714\\/571447.jpg\"}', 'upc' => '015151128725', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Magic's Rap Attack, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-magics-rap-attack-vol-4-cd-various/571456.p?id=92548&skuId=571456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5714\\/571456.jpg\"}', 'upc' => '015151126820', 'provider' => 'bestbuy'],\n ['name' => \"Little Dreamer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-dreamer-cd/571544.p?id=128229&skuId=571544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0571\\/0571544_sa.jpg\"}', 'upc' => '033651003724', 'provider' => 'bestbuy'],\n ['name' => \"Heart of Mine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-of-mine-cd/571624.p?id=76578&skuId=571624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0571\\/0571624_sa.jpg\"}', 'upc' => '715776888829', 'provider' => 'bestbuy'],\n ['name' => \"Hand of Kindness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hand-of-kindness-cd/571991.p?id=101694&skuId=571991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=571991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0571\\/0571991_sa.jpg\"}', 'upc' => '031257131322', 'provider' => 'bestbuy'],\n ['name' => \"Pink Cadillac - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pink-cadillac-cd/572044.p?id=2294065&skuId=572044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5720\\/572044_sa.jpg\"}', 'upc' => '094012000721', 'provider' => 'bestbuy'],\n ['name' => \"Aimless Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aimless-love-cd/572062.p?id=95509&skuId=572062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5720\\/572062_sa.jpg\"}', 'upc' => '094012000226', 'provider' => 'bestbuy'],\n ['name' => \"German Afternoons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/german-afternoons-cd/572071.p?id=95514&skuId=572071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5720\\/572071_sa.jpg\"}', 'upc' => '094012000325', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/572080.p?id=95517&skuId=572080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5720\\/572080_sa.jpg\"}', 'upc' => '094012000523', 'provider' => 'bestbuy'],\n ['name' => \"Santa Ana Winds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/santa-ana-winds-cd/572115.p?id=109732&skuId=572115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5721\\/572115.jpg\"}', 'upc' => '092941100321', 'provider' => 'bestbuy'],\n ['name' => \"Artistic Hair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/artistic-hair-cd/572133.p?id=109728&skuId=572133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5721\\/572133.jpg\"}', 'upc' => '092941100123', 'provider' => 'bestbuy'],\n ['name' => \"I Know - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-know-cd/572142.p?id=83903&skuId=572142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5721\\/572142_sa.jpg\"}', 'upc' => '033651001829', 'provider' => 'bestbuy'],\n ['name' => \"One Big Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-big-town-cd/572151.p?id=75925&skuId=572151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0572\\/0572151_sa.jpg\"}', 'upc' => '033651002826', 'provider' => 'bestbuy'],\n ['name' => \"Fiddling with Tradition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddling-with-tradition-cd/572909.p?id=155261&skuId=572909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=572909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5729\\/572909.jpg\"}', 'upc' => '053993333921', 'provider' => 'bestbuy'],\n ['name' => \"R'Eveillez-Vous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reveillez-vous-cd/573089.p?id=72046&skuId=573089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5730\\/573089.jpg\"}', 'upc' => '028568802720', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Next Generation 1 - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-next-generation-1-cd-original-soundtrack/573114.p?id=2416685&skuId=573114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0573\\/0573114_sa.jpg\"}', 'upc' => '052824801226', 'provider' => 'bestbuy'],\n ['name' => \"Where the Fast Lane Ends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-the-fast-lane-ends-cd/573169.p?id=1576720&skuId=573169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0573\\/0573169_sa.jpg\"}', 'upc' => '021661011228', 'provider' => 'bestbuy'],\n ['name' => \"Flex-Able - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flex-able-cd/573613.p?id=102878&skuId=573613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5736\\/573613_sa.jpg\"}', 'upc' => '074646803325', 'provider' => 'bestbuy'],\n ['name' => \"Tribal Tech - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribal-tech-cd/573631.p?id=67357&skuId=573631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5736\\/573631_sa.jpg\"}', 'upc' => '088561104924', 'provider' => 'bestbuy'],\n ['name' => \"Big Lizard in My Backyard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-lizard-in-my-backyard-cd/573793.p?id=79962&skuId=573793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0573\\/0573793_sa.jpg\"}', 'upc' => '018777205429', 'provider' => 'bestbuy'],\n ['name' => \"The Chenille Sisters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chenille-sisters-cd/573926.p?id=128647&skuId=573926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=573926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5739\\/573926_sa.jpg\"}', 'upc' => '033651002925', 'provider' => 'bestbuy'],\n ['name' => \"Rock for Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-for-light-cd/578119.p?id=73645&skuId=578119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578119_sa.jpg\"}', 'upc' => '017046161329', 'provider' => 'bestbuy'],\n ['name' => \"Quickness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quickness-cd/578137.p?id=73643&skuId=578137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5781\\/578137_sa.jpg\"}', 'upc' => '017046137522', 'provider' => 'bestbuy'],\n ['name' => \"Join the Army - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/join-the-army-cd/578217.p?id=100744&skuId=578217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578217_sa.jpg\"}', 'upc' => '017046133623', 'provider' => 'bestbuy'],\n ['name' => \"Misfits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misfits-cd/578306.p?id=91880&skuId=578306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578306_sa.jpg\"}', 'upc' => '017046190121', 'provider' => 'bestbuy'],\n ['name' => \"Black Bottom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-bottom-cd/578360.p?id=180708&skuId=578360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578360_sa.jpg\"}', 'upc' => '016351017123', 'provider' => 'bestbuy'],\n ['name' => \"Blackman Know Yourself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blackman-know-yourself-cd/578422.p?id=85351&skuId=578422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5784\\/578422.jpg\"}', 'upc' => '016351437723', 'provider' => 'bestbuy'],\n ['name' => \"Yazoo Basin Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yazoo-basin-boogie-cd/578440.p?id=84316&skuId=578440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5784\\/578440_sa.jpg\"}', 'upc' => '016351971326', 'provider' => 'bestbuy'],\n ['name' => \"Sweeter as the Years Go By - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweeter-as-the-years-go-by-cd/578468.p?id=87158&skuId=578468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5784\\/578468.jpg\"}', 'upc' => '016351017826', 'provider' => 'bestbuy'],\n ['name' => \"In His Prime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-his-prime-cd/578486.p?id=2387822&skuId=578486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578486_sa.jpg\"}', 'upc' => '016351015020', 'provider' => 'bestbuy'],\n ['name' => \"1928 Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-sessions-cd/578495.p?id=85963&skuId=578495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578495_sa.jpg\"}', 'upc' => '016351016522', 'provider' => 'bestbuy'],\n ['name' => \"25th Anniversary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25th-anniversary-cd/578565.p?id=104625&skuId=578565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578565_sa.jpg\"}', 'upc' => '016351522429', 'provider' => 'bestbuy'],\n ['name' => \"Oldies But Goodies, Vol. 15 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldies-but-goodies-vol-15-cd-various/578725.p?id=93882&skuId=578725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5787\\/578725_sa.jpg\"}', 'upc' => '081658865524', 'provider' => 'bestbuy'],\n ['name' => \"Oldies But Goodies, Vol. 10 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldies-but-goodies-vol-10-cd-various/578798.p?id=93878&skuId=578798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0578\\/0578798_sa.jpg\"}', 'upc' => '081658860529', 'provider' => 'bestbuy'],\n ['name' => \"Oldies But Goodies, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldies-but-goodies-vol-1-cd-various/578832.p?id=93869&skuId=578832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=578832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5788\\/578832_sa.jpg\"}', 'upc' => '081658850520', 'provider' => 'bestbuy'],\n ['name' => \"Christmas 1984 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-1984-cd/579500.p?id=90438&skuId=579500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=579500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5795\\/579500.jpg\"}', 'upc' => '012805198424', 'provider' => 'bestbuy'],\n ['name' => \"Fresh Aire Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-aire-christmas-cd/579519.p?id=90437&skuId=579519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=579519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0579\\/0579519_sa.jpg\"}', 'upc' => '012805198820', 'provider' => 'bestbuy'],\n ['name' => \"State of Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/state-of-mind-cd/579751.p?id=137046&skuId=579751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=579751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5797\\/579751.jpg\"}', 'upc' => '012414304223', 'provider' => 'bestbuy'],\n ['name' => \"Collectors' Items - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collectors-items-cd/579877.p?id=93686&skuId=579877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=579877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0579\\/0579877_sa.jpg\"}', 'upc' => '074643502429', 'provider' => 'bestbuy'],\n ['name' => \"16 Most Requested Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-most-requested-songs-cd/579966.p?id=90784&skuId=579966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=579966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5799\\/579966_sa.jpg\"}', 'upc' => '074644021721', 'provider' => 'bestbuy'],\n ['name' => \"Anniversary: 20 Years of Hits [20 Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anniversary-20-years-of-hits-20-tracks-cd/580151.p?id=104798&skuId=580151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=580151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0580\\/0580151_sa.jpg\"}', 'upc' => '074644062526', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/580240.p?id=77960&skuId=580240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=580240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0580\\/0580240_sa.jpg\"}', 'upc' => '077775740226', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-capitol-cd/580268.p?id=245574&skuId=580268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=580268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0580\\/0580268_sa.jpg\"}', 'upc' => '077775741025', 'provider' => 'bestbuy'],\n ['name' => \"The Eternal Idol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-eternal-idol-cd/581310.p?id=74835&skuId=581310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0581\\/0581310_sa.jpg\"}', 'upc' => '075992554824', 'provider' => 'bestbuy'],\n ['name' => \"The Gold Medal Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gold-medal-collection-cd/581338.p?id=77205&skuId=581338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5813\\/581338_sa.jpg\"}', 'upc' => '075596077323', 'provider' => 'bestbuy'],\n ['name' => \"Iron Butterfly Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-butterfly-live-cd/581481.p?id=86323&skuId=581481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0581\\/0581481_sa.jpg\"}', 'upc' => '075679039620', 'provider' => 'bestbuy'],\n ['name' => \"Kix - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kix-cd/581515.p?id=88223&skuId=581515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5815\\/581515.jpg\"}', 'upc' => '075678157721', 'provider' => 'bestbuy'],\n ['name' => \"Flash Gordon [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flash-gordon-bonus-track-cd/581524.p?id=95702&skuId=581524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0581\\/0581524_sa.jpg\"}', 'upc' => '720616120328', 'provider' => 'bestbuy'],\n ['name' => \"Hot Space [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-space-bonus-track-cd/581533.p?id=95704&skuId=581533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5815\\/581533.jpg\"}', 'upc' => '720616103826', 'provider' => 'bestbuy'],\n ['name' => \"Adventure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adventure-cd/581613.p?id=2466424&skuId=581613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0581\\/0581613_sa.jpg\"}', 'upc' => '075596052320', 'provider' => 'bestbuy'],\n ['name' => \"Seminole Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seminole-wind-cd/581622.p?id=72960&skuId=581622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=581622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0581\\/0581622_sa.jpg\"}', 'upc' => '078636102924', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Party Classics - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-party-classics-cd-various/582104.p?id=93183&skuId=582104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=582104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0582\\/0582104_sa.jpg\"}', 'upc' => '081227058722', 'provider' => 'bestbuy'],\n ['name' => \"Stick Around for Joy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stick-around-for-joy-cd/583023.p?id=100735&skuId=583023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0583\\/0583023_sa.jpg\"}', 'upc' => '075596112321', 'provider' => 'bestbuy'],\n ['name' => \"South Central Madness [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-central-madness-pa-cd/583087.p?id=99718&skuId=583087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5830\\/583087.jpg\"}', 'upc' => '063961518922', 'provider' => 'bestbuy'],\n ['name' => \"Fire & Ice (Germany) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-ice-germany-cd/583381.p?id=2305249&skuId=583381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5833\\/583381.jpg\"}', 'upc' => '075596113724', 'provider' => 'bestbuy'],\n ['name' => \"Little Earthquakes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-earthquakes-cd/583531.p?id=2479233&skuId=583531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0583\\/0583531_sa.jpg\"}', 'upc' => '075678235825', 'provider' => 'bestbuy'],\n ['name' => \"Spectrum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spectrum-cd/583568.p?id=65057&skuId=583568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0583\\/0583568_sa.jpg\"}', 'upc' => '075678142826', 'provider' => 'bestbuy'],\n ['name' => \"Vulgar Display of Power [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vulgar-display-of-power-pa-cd/583586.p?id=94340&skuId=583586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0583\\/0583586_sa.jpg\"}', 'upc' => '075679175823', 'provider' => 'bestbuy'],\n ['name' => \"King of Hearts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-hearts-cd/583684.p?id=103204&skuId=583684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=583684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5836\\/583684.jpg\"}', 'upc' => '075679178923', 'provider' => 'bestbuy'],\n ['name' => \"Mad Mad World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-mad-world-cd/584264.p?id=78153&skuId=584264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=584264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5842\\/584264.jpg\"}', 'upc' => '077779772322', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Hank & Hank - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-hank-hank-cd/584317.p?id=104127&skuId=584317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=584317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5843\\/584317.jpg\"}', 'upc' => '715187755222', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Nat King Cole Trio: The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-nat-king-cole-trio-the-cd/584460.p?id=78259&skuId=584460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=584460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5844\\/584460.jpg\"}', 'upc' => '077779828821', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Ronnie Laws - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-ronnie-laws-cd/584479.p?id=68469&skuId=584479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=584479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5844\\/584479.jpg\"}', 'upc' => '077779828920', 'provider' => 'bestbuy'],\n ['name' => \"Best of Miles Davis: The Capitol/Blue Note... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-miles-davis-the-capitol-blue-note-cd/584488.p?id=2472918&skuId=584488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=584488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5844\\/584488.jpg\"}', 'upc' => '077779828722', 'provider' => 'bestbuy'],\n ['name' => \"Moonlight Serenade [Avid] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonlight-serenade-avid-cd/585236.p?id=69107&skuId=585236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=585236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0585\\/0585236_sa.jpg\"}', 'upc' => '078636107226', 'provider' => 'bestbuy'],\n ['name' => \"Pure Attraction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-attraction-cd/586093.p?id=1418615&skuId=586093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=586093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5860\\/586093.jpg\"}', 'upc' => '012414922526', 'provider' => 'bestbuy'],\n ['name' => \"Old Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-friends-cd/586146.p?id=70153&skuId=586146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=586146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0586\\/0586146_sa.jpg\"}', 'upc' => '089408330926', 'provider' => 'bestbuy'],\n ['name' => \"...From the \\\"Hungry I\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-from-the-hungry-i-cd/586299.p?id=214573&skuId=586299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=586299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5862\\/586299.jpg\"}', 'upc' => '077779674824', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/586306.p?id=87149&skuId=586306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=586306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0586\\/0586306_sa.jpg\"}', 'upc' => '715187754324', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere Between Heaven and Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-between-heaven-and-hell-cd/586556.p?id=99371&skuId=586556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=586556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0586\\/0586556_sa.jpg\"}', 'upc' => '074644797824', 'provider' => 'bestbuy'],\n ['name' => \"Pretty in Pink [Original Soundtrack] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-in-pink-original-soundtrack-original-soundtrack-cd/587065.p?id=95406&skuId=587065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=587065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0587\\/0587065_sa.jpg\"}', 'upc' => '075021329324', 'provider' => 'bestbuy'],\n ['name' => \"The End of Silence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-end-of-silence-cd/587519.p?id=97201&skuId=587519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=587519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5875\\/587519.jpg\"}', 'upc' => '727872100620', 'provider' => 'bestbuy'],\n ['name' => \"House of Exile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-exile-cd/587779.p?id=81009&skuId=587779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=587779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0587\\/0587779_sa.jpg\"}', 'upc' => '016351439420', 'provider' => 'bestbuy'],\n ['name' => \"Just Gimme Somethin' I'm Used To - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-gimme-somethin-im-used-to-cd/587822.p?id=74959&skuId=587822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=587822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0587\\/0587822_sa.jpg\"}', 'upc' => '016351600127', 'provider' => 'bestbuy'],\n ['name' => \"A Touch of Tranquility - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-touch-of-tranquility-cd/587831.p?id=78797&skuId=587831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=587831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5878\\/587831_sa.jpg\"}', 'upc' => '016351531025', 'provider' => 'bestbuy'],\n ['name' => \"Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-cd/588082.p?id=96695&skuId=588082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5880\\/588082_sa.jpg\"}', 'upc' => '077778627722', 'provider' => 'bestbuy'],\n ['name' => \"In the Running - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-running-cd/588215.p?id=87283&skuId=588215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5882\\/588215_sa.jpg\"}', 'upc' => '075596113526', 'provider' => 'bestbuy'],\n ['name' => \"The Singer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-singer-cd/588233.p?id=83189&skuId=588233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0588\\/0588233_sa.jpg\"}', 'upc' => '724596127827', 'provider' => 'bestbuy'],\n ['name' => \"Apollo 18 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apollo-18-cd/588242.p?id=101566&skuId=588242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5882\\/588242_sa.jpg\"}', 'upc' => '075596125727', 'provider' => 'bestbuy'],\n ['name' => \"Present Arms In Dub - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/present-arms-in-dub-cd/588395.p?id=2387416&skuId=588395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0588\\/0588395_sa.jpg\"}', 'upc' => '077778627128', 'provider' => 'bestbuy'],\n ['name' => \"Big Hits and Nasty Cuts: The Best of... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-hits-and-nasty-cuts-the-best-of-pa-cd/588457.p?id=2472914&skuId=588457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=588457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0588\\/0588457_sa.jpg\"}', 'upc' => '075678238024', 'provider' => 'bestbuy'],\n ['name' => \"Bitch Betta Have My Money - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bitch-betta-have-my-money-cd/589964.p?id=274623&skuId=589964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=589964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5899\\/589964.jpg\"}', 'upc' => '010912164226', 'provider' => 'bestbuy'],\n ['name' => \"Excursion on the Version - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/excursion-on-the-version-cd/590042.p?id=74229&skuId=590042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=590042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5900\\/590042.jpg\"}', 'upc' => '042282830623', 'provider' => 'bestbuy'],\n ['name' => \"Tears Roll Down: Greatest Hits 1982-1992 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tears-roll-down-greatest-hits-1982-1992-cd/590079.p?id=101303&skuId=590079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=590079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5900\\/590079.jpg\"}', 'upc' => '731451093920', 'provider' => 'bestbuy'],\n ['name' => \"Never Enough - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-enough-cd/590097.p?id=81709&skuId=590097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=590097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0590\\/0590097_sa.jpg\"}', 'upc' => '731451212024', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collector Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collector-series-cd/590845.p?id=2280463&skuId=590845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=590845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5908\\/590845.jpg\"}', 'upc' => '077779643028', 'provider' => 'bestbuy'],\n ['name' => \"Ask Rufus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ask-rufus-cd/590881.p?id=97501&skuId=590881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=590881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0590\\/0590881_sa.jpg\"}', 'upc' => '008811044923', 'provider' => 'bestbuy'],\n ['name' => \"La Sexorcisto: Devil Music, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-sexorcisto-devil-music-vol-1-cd/591229.p?id=103927&skuId=591229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=591229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0591\\/0591229_sa.jpg\"}', 'upc' => '720642446027', 'provider' => 'bestbuy'],\n ['name' => \"Remember Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-me-cd/592166.p?id=96229&skuId=592166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=592166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0592\\/0592166_sa.jpg\"}', 'upc' => '025218857222', 'provider' => 'bestbuy'],\n ['name' => \"Inside Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inside-life-cd/592601.p?id=67714&skuId=592601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=592601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5926\\/592601.jpg\"}', 'upc' => '731451208720', 'provider' => 'bestbuy'],\n ['name' => \"Tear It Up: Video - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tear-it-up-video-cd/593138.p?id=74859&skuId=593138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=593138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0593\\/0593138_sa.jpg\"}', 'upc' => '016253969629', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Decca Recordings [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-decca-recordings-box-cd/593771.p?id=64037&skuId=593771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=593771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5937\\/593771_sa.jpg\"}', 'upc' => '011105061124', 'provider' => 'bestbuy'],\n ['name' => \"The Best of John Lee Hooker 1965 to 1974 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-john-lee-hooker-1965-to-1974-cd/593824.p?id=85625&skuId=593824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=593824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0593\\/0593824_sa.jpg\"}', 'upc' => '008811053925', 'provider' => 'bestbuy'],\n ['name' => \"Artistry of Stan Getz: The Best of the Verve... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/artistry-of-stan-getz-the-best-of-the-verve-cd/593879.p?id=66609&skuId=593879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=593879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0593\\/0593879_sa.jpg\"}', 'upc' => '731451146824', 'provider' => 'bestbuy'],\n ['name' => \"Haunting the Chapel [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/haunting-the-chapel-ep-cd/594654.p?id=99116&skuId=594654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=594654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5946\\/594654_sa.jpg\"}', 'upc' => '039841403428', 'provider' => 'bestbuy'],\n ['name' => \"Live Undead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-undead-cd/594663.p?id=255466&skuId=594663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=594663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '018777221726', 'provider' => 'bestbuy'],\n ['name' => \"Ingénue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ingenue-cd/594912.p?id=88637&skuId=594912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=594912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/5949\\/594912_sa.jpg\"}', 'upc' => '075992684026', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Jive] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-jive-cd/597296.p?id=93772&skuId=597296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=597296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0597\\/0597296_sa.jpg\"}', 'upc' => '012414127129', 'provider' => 'bestbuy'],\n ['name' => \"Late Night at the Cafe Carlyle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/late-night-at-the-cafe-carlyle-cd/597571.p?id=98648&skuId=597571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=597571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5975\\/597571.jpg\"}', 'upc' => '089408331121', 'provider' => 'bestbuy'],\n ['name' => \"Dream Come True - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-come-true-cd/597919.p?id=63585&skuId=597919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=597919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0597\\/0597919_sa.jpg\"}', 'upc' => '075678208720', 'provider' => 'bestbuy'],\n ['name' => \"Totally Krossed Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/totally-krossed-out-cd/598026.p?id=88430&skuId=598026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=598026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0598\\/0598026_sa.jpg\"}', 'upc' => '886972572321', 'provider' => 'bestbuy'],\n ['name' => \"I Am the Cosmos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-the-cosmos-cd/598455.p?id=74368&skuId=598455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=598455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0598\\/0598455_sa.jpg\"}', 'upc' => '014431022227', 'provider' => 'bestbuy'],\n ['name' => \"Big Star Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-star-live-cd/598464.p?id=74642&skuId=598464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=598464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5984\\/598464_sa.jpg\"}', 'upc' => '014431022128', 'provider' => 'bestbuy'],\n ['name' => \"Third/Sister Lovers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-sister-lovers-cd/598473.p?id=74644&skuId=598473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=598473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5984\\/598473.jpg\"}', 'upc' => '014431022029', 'provider' => 'bestbuy'],\n ['name' => \"Classic Tracks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-tracks-cd/599016.p?id=88578&skuId=599016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=599016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0599\\/0599016_sa.jpg\"}', 'upc' => '016351437426', 'provider' => 'bestbuy'],\n ['name' => \"Makem & Clancy Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makem-clancy-collection-cd/599025.p?id=90239&skuId=599025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=599025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5990\\/599025.jpg\"}', 'upc' => '016351520128', 'provider' => 'bestbuy'],\n ['name' => \"Adrenalize - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adrenalize-cd/599999.p?id=80097&skuId=599999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=599999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/5999\\/599999.jpg\"}', 'upc' => '731451218521', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1955 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1955-cd-various/600068.p?id=79350&skuId=600068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6000\\/600068.jpg\"}', 'upc' => '015668195524', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1956 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1956-cd-various/600077.p?id=79351&skuId=600077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600077_sa.jpg\"}', 'upc' => '015668195623', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1957 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1957-cd-various/600086.p?id=79352&skuId=600086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6000\\/600086.jpg\"}', 'upc' => '015668195722', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1958 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1958-cd-various/600095.p?id=79353&skuId=600095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6000\\/600095.jpg\"}', 'upc' => '015668195821', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1959 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1959-cd-various/600111.p?id=79354&skuId=600111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6001\\/600111.jpg\"}', 'upc' => '015668195920', 'provider' => 'bestbuy'],\n ['name' => \"The Cruisin' Story 1960 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cruisin-story-1960-cd-various/600120.p?id=79355&skuId=600120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600120_sa.jpg\"}', 'upc' => '015668196026', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1961 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1961-cd-various/600139.p?id=79356&skuId=600139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6001\\/600139_sa.jpg\"}', 'upc' => '015668196125', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1962 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1962-cd-various/600148.p?id=79360&skuId=600148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600148_sa.jpg\"}', 'upc' => '015668196224', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1963 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1963-cd-various/600157.p?id=79361&skuId=600157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6001\\/600157.jpg\"}', 'upc' => '015668196323', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1964 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1964-cd-various/600166.p?id=79346&skuId=600166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600166_sa.jpg\"}', 'upc' => '015668196422', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1965 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1965-cd-various/600175.p?id=79347&skuId=600175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6001\\/600175.jpg\"}', 'upc' => '015668196521', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1966 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1966-cd-various/600184.p?id=79348&skuId=600184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600184_sa.jpg\"}', 'upc' => '015668196620', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1967 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1967-cd-various/600193.p?id=79349&skuId=600193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6001\\/600193.jpg\"}', 'upc' => '015668196729', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1968 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1968-cd-various/600200.p?id=79357&skuId=600200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6002\\/600200.jpg\"}', 'upc' => '015668196828', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' 1969 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-1969-cd-various/600219.p?id=79362&skuId=600219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6002\\/600219_sa.jpg\"}', 'upc' => '015668196927', 'provider' => 'bestbuy'],\n ['name' => \"Making Trouble - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/making-trouble-cd/600228.p?id=1410499&skuId=600228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6002\\/600228.jpg\"}', 'upc' => '034744198921', 'provider' => 'bestbuy'],\n ['name' => \"Longnecks & Short Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/longnecks-short-stories-cd/600745.p?id=77383&skuId=600745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600745_sa.jpg\"}', 'upc' => '008811053024', 'provider' => 'bestbuy'],\n ['name' => \"Racine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/racine-cd/600914.p?id=2390463&skuId=600914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=600914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0600\\/0600914_sa.jpg\"}', 'upc' => '008811052423', 'provider' => 'bestbuy'],\n ['name' => \"Trouble Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trouble-time-cd/601058.p?id=81474&skuId=601058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=601058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6010\\/601058.jpg\"}', 'upc' => '014551480525', 'provider' => 'bestbuy'],\n ['name' => \"Amie & Other Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amie-other-hits-cd/601281.p?id=95666&skuId=601281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=601281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0601\\/0601281_sa.jpg\"}', 'upc' => '078635216325', 'provider' => 'bestbuy'],\n ['name' => \"3 Years 5 Months & 2 Days In The Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-years-5-months-2-days-in-the-life-cd/601673.p?id=2370346&skuId=601673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=601673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6016\\/601673.jpg\"}', 'upc' => '094632192929', 'provider' => 'bestbuy'],\n ['name' => \"No Doubt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-doubt-cd/602011.p?id=1535060&skuId=602011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=602011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6020\\/602011_sa.jpg\"}', 'upc' => '606949210922', 'provider' => 'bestbuy'],\n ['name' => \"Killer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/killer-cd/602725.p?id=78650&skuId=602725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=602725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0602\\/0602725_sa.jpg\"}', 'upc' => '075992725521', 'provider' => 'bestbuy'],\n ['name' => \"Closing Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/closing-time-cd/602743.p?id=103320&skuId=602743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=602743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0602\\/0602743_sa.jpg\"}', 'upc' => '075596083621', 'provider' => 'bestbuy'],\n ['name' => \"All for Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-for-love-cd/603305.p?id=101894&skuId=603305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=603305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6033\\/603305.jpg\"}', 'upc' => '063961519127', 'provider' => 'bestbuy'],\n ['name' => \"Migration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/migration-cd/603323.p?id=125512&skuId=603323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=603323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6033\\/603323.jpg\"}', 'upc' => '021585070424', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere Over China - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-over-china-cd/603779.p?id=76277&skuId=603779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=603779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6037\\/603779_sa.jpg\"}', 'upc' => '076731116822', 'provider' => 'bestbuy'],\n ['name' => \"Que Alegria - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/que-alegria-cd/603840.p?id=68969&skuId=603840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=603840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6038\\/603840.jpg\"}', 'upc' => '042283728028', 'provider' => 'bestbuy'],\n ['name' => \"Poisonous Mentality - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poisonous-mentality-cd/603966.p?id=95130&skuId=603966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=603966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6039\\/603966.jpg\"}', 'upc' => '022471300625', 'provider' => 'bestbuy'],\n ['name' => \"Live in Concert [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-concert-pa-cd/604000.p?id=102640&skuId=604000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0604\\/0604000_sa.jpg\"}', 'upc' => '022471300328', 'provider' => 'bestbuy'],\n ['name' => \"A Quiet Storm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-quiet-storm-cd/604322.p?id=96872&skuId=604322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0604\\/0604322_sa.jpg\"}', 'upc' => '737463519724', 'provider' => 'bestbuy'],\n ['name' => \"Raised by Humans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raised-by-humans-cd/604439.p?id=88314&skuId=604439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0604\\/0604439_sa.jpg\"}', 'upc' => '033651004424', 'provider' => 'bestbuy'],\n ['name' => \"Dream Cafe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-cafe-cd/604457.p?id=75921&skuId=604457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6044\\/604457_sa.jpg\"}', 'upc' => '033651004721', 'provider' => 'bestbuy'],\n ['name' => \"Duo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duo-cd/604466.p?id=94147&skuId=604466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0604\\/0604466_sa.jpg\"}', 'upc' => '033651004028', 'provider' => 'bestbuy'],\n ['name' => \"Hit to Death in the Future Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hit-to-death-in-the-future-head-cd/604698.p?id=82372&skuId=604698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=604698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6046\\/604698_sa.jpg\"}', 'upc' => '075992683821', 'provider' => 'bestbuy'],\n ['name' => \"Young Girl Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/young-girl-blues-cd/605688.p?id=82573&skuId=605688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=605688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6056\\/605688_sa.jpg\"}', 'upc' => '049891001925', 'provider' => 'bestbuy'],\n ['name' => \"Pretty on the Inside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-on-the-inside-cd/605900.p?id=85479&skuId=605900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=605900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0605\\/0605900_sa.jpg\"}', 'upc' => '017046171021', 'provider' => 'bestbuy'],\n ['name' => \"Smell the Magic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smell-the-magic-cd/605964.p?id=88494&skuId=605964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=605964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0605\\/0605964_sa.jpg\"}', 'upc' => '098787007923', 'provider' => 'bestbuy'],\n ['name' => \"Mudhoney - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mudhoney-cd/605982.p?id=92574&skuId=605982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=605982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0605\\/0605982_sa.jpg\"}', 'upc' => '098787004427', 'provider' => 'bestbuy'],\n ['name' => \"Sub Pop 200 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sub-pop-200-cd-various/606035.p?id=100696&skuId=606035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0606\\/0606035_sa.jpg\"}', 'upc' => '098787002522', 'provider' => 'bestbuy'],\n ['name' => \"Congregation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/congregation-cd/606124.p?id=72543&skuId=606124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6061\\/606124.jpg\"}', 'upc' => '098787013023', 'provider' => 'bestbuy'],\n ['name' => \"Lone Ranger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lone-ranger-cd/606240.p?id=103653&skuId=606240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6062\\/606240.jpg\"}', 'upc' => '026245105522', 'provider' => 'bestbuy'],\n ['name' => \"Only the Strong Survive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-the-strong-survive-cd/606446.p?id=96645&skuId=606446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6064\\/606446_sa.jpg\"}', 'upc' => '052824220720', 'provider' => 'bestbuy'],\n ['name' => \"True Love & Other Short Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-love-other-short-stories-cd/606605.p?id=72686&skuId=606605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6066\\/606605.jpg\"}', 'upc' => '015891102924', 'provider' => 'bestbuy'],\n ['name' => \"Dead Serious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-serious-cd/606641.p?id=79795&skuId=606641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=606641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6066\\/606641_sa.jpg\"}', 'upc' => '075679182722', 'provider' => 'bestbuy'],\n ['name' => \"Arc Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arc-angels-cd/607043.p?id=73193&skuId=607043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0607\\/0607043_sa.jpg\"}', 'upc' => '720642446522', 'provider' => 'bestbuy'],\n ['name' => \"Mecca and the Soul Brother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mecca-and-the-soul-brother-cd/607221.p?id=96909&skuId=607221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0607\\/0607221_sa.jpg\"}', 'upc' => '075596094825', 'provider' => 'bestbuy'],\n ['name' => \"Tongues and Tails - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tongues-and-tails-cd/607356.p?id=85029&skuId=607356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6073\\/607356_sa.jpg\"}', 'upc' => '074644679724', 'provider' => 'bestbuy'],\n ['name' => \"Cecilio & Kapono - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cecilio-kapono-cd/607613.p?id=77106&skuId=607613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0607\\/0607613_sa.jpg\"}', 'upc' => '074643292825', 'provider' => 'bestbuy'],\n ['name' => \"Barabajagal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barabajagal-cd/607739.p?id=80740&skuId=607739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6077\\/607739_sa.jpg\"}', 'upc' => '074642648128', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/607891.p?id=104584&skuId=607891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=607891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6078\\/607891_sa.jpg\"}', 'upc' => '074643719926', 'provider' => 'bestbuy'],\n ['name' => \"Third World Child - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-world-child-cd/608140.p?id=1366582&skuId=608140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=608140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0608\\/0608140_sa.jpg\"}', 'upc' => '762185147429', 'provider' => 'bestbuy'],\n ['name' => \"Un-Led-Ed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/un-led-ed-cd/608168.p?id=80935&skuId=608168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=608168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0608\\/0608168_sa.jpg\"}', 'upc' => '022071304825', 'provider' => 'bestbuy'],\n ['name' => \"Some Time in New York City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-time-in-new-york-city-cd/608462.p?id=89039&skuId=608462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=608462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0608\\/0608462_sa.jpg\"}', 'upc' => '077779385027', 'provider' => 'bestbuy'],\n ['name' => \"Legendary Masters Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legendary-masters-series-cd/608471.p?id=89134&skuId=608471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=608471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6084\\/608471.jpg\"}', 'upc' => '077779344925', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Earl Klugh, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-earl-klugh-vol-1-cd/609014.p?id=68297&skuId=609014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6090\\/609014.jpg\"}', 'upc' => '077774662529', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lee Morgan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lee-morgan-cd/609023.p?id=69384&skuId=609023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0609\\/0609023_sa.jpg\"}', 'upc' => '077779113828', 'provider' => 'bestbuy'],\n ['name' => \"Percolater - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/percolater-cd/609041.p?id=72718&skuId=609041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6090\\/609041.jpg\"}', 'upc' => '031895002220', 'provider' => 'bestbuy'],\n ['name' => \"Best of Cannonball Adderley: The Capitol... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cannonball-adderley-the-capitol-cd/609185.p?id=63533&skuId=609185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0609\\/0609185_sa.jpg\"}', 'upc' => '077779548224', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Blue Note Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-blue-note-years-cd/609247.p?id=2416858&skuId=609247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6092\\/609247.jpg\"}', 'upc' => '077779563623', 'provider' => 'bestbuy'],\n ['name' => \"Best of Gerry Mulligan Quartet with Chet... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-gerry-mulligan-quartet-with-chet-cd/609434.p?id=69451&skuId=609434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6094\\/609434_sa.jpg\"}', 'upc' => '077779548125', 'provider' => 'bestbuy'],\n ['name' => \"Ballads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ballads-cd/609461.p?id=2443694&skuId=609461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0609\\/0609461_sa.jpg\"}', 'upc' => '077779657926', 'provider' => 'bestbuy'],\n ['name' => \"Pure Imagination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-imagination-cd/609540.p?id=3522148&skuId=609540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0609\\/0609540_sa.jpg\"}', 'upc' => '075596104623', 'provider' => 'bestbuy'],\n ['name' => \"Grace Under Pressure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grace-under-pressure-cd/609915.p?id=2434397&skuId=609915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=609915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0609\\/0609915_sa.jpg\"}', 'upc' => '077779816729', 'provider' => 'bestbuy'],\n ['name' => \"Too Blind to See It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-blind-to-see-it-cd/610262.p?id=98830&skuId=610262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6102\\/610262.jpg\"}', 'upc' => '075679210425', 'provider' => 'bestbuy'],\n ['name' => \"Here's to Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heres-to-life-cd/610333.p?id=67599&skuId=610333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0610\\/0610333_sa.jpg\"}', 'upc' => '731451187926', 'provider' => 'bestbuy'],\n ['name' => \"Breezy Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breezy-stories-cd/610413.p?id=93703&skuId=610413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6104\\/610413_sa.jpg\"}', 'upc' => '075678142727', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic Blues: Guitar - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-blues-guitar-cd-various/610501.p?id=73431&skuId=610501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6105\\/610501.jpg\"}', 'upc' => '075678169526', 'provider' => 'bestbuy'],\n ['name' => \"For Everyman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-everyman-cd/610645.p?id=75927&skuId=610645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6106\\/610645_sa.jpg\"}', 'upc' => '075596062626', 'provider' => 'bestbuy'],\n ['name' => \"Law and Order - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/law-and-order-cd/610707.p?id=76208&skuId=610707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6107\\/610707_sa.jpg\"}', 'upc' => '075992747820', 'provider' => 'bestbuy'],\n ['name' => \"Goodbye and Hello - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodbye-and-hello-cd/610725.p?id=76217&skuId=610725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6107\\/610725_sa.jpg\"}', 'upc' => '075596089623', 'provider' => 'bestbuy'],\n ['name' => \"Buffalo Springfield Again [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buffalo-springfield-again-remaster-cd/610752.p?id=76250&skuId=610752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0610\\/0610752_sa.jpg\"}', 'upc' => '075679039125', 'provider' => 'bestbuy'],\n ['name' => \"East-West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-west-cd/610770.p?id=76421&skuId=610770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6107\\/610770.jpg\"}', 'upc' => '075596075121', 'provider' => 'bestbuy'],\n ['name' => \"The Resurrection of Pigboy Crabshaw - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-resurrection-of-pigboy-crabshaw-cd/610789.p?id=76425&skuId=610789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0610\\/0610789_sa.jpg\"}', 'upc' => '075596091121', 'provider' => 'bestbuy'],\n ['name' => \"Big Bambu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-bambu-cd/610850.p?id=77322&skuId=610850&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610850', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0610\\/0610850_sa.jpg\"}', 'upc' => '075992736923', 'provider' => 'bestbuy'],\n ['name' => \"Cheech & Chong [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cheech-chong-pa-cd/610869.p?id=77323&skuId=610869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=610869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6108\\/610869_sa.jpg\"}', 'upc' => '075992736824', 'provider' => 'bestbuy'],\n ['name' => \"Marshall Crenshaw [1982] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marshall-crenshaw-1982-cd/611074.p?id=214808&skuId=611074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6110\\/611074_sa.jpg\"}', 'upc' => '075992367325', 'provider' => 'bestbuy'],\n ['name' => \"Repeat When Necessary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repeat-when-necessary-cd/611305.p?id=81326&skuId=611305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0611\\/0611305_sa.jpg\"}', 'upc' => '075679033727', 'provider' => 'bestbuy'],\n ['name' => \"Stone Crazy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stone-crazy-cd/611323.p?id=84486&skuId=611323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6113\\/611323.jpg\"}', 'upc' => '014551472322', 'provider' => 'bestbuy'],\n ['name' => \"Gord'S Gold 2 (Rpkg) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gords-gold-2-rpkg-cd/611733.p?id=1378357&skuId=611733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0611\\/0611733_sa.jpg\"}', 'upc' => '081227646523', 'provider' => 'bestbuy'],\n ['name' => \"Common One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-one-cd/611868.p?id=92306&skuId=611868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0611\\/0611868_sa.jpg\"}', 'upc' => '075992639927', 'provider' => 'bestbuy'],\n ['name' => \"Inarticulate Speech Of The Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inarticulate-speech-of-the-heart-cd/611886.p?id=92311&skuId=611886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6118\\/611886_sa.jpg\"}', 'upc' => '075992380225', 'provider' => 'bestbuy'],\n ['name' => \"Glider - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glider-cd/611902.p?id=92721&skuId=611902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=611902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6119\\/611902.jpg\"}', 'upc' => '075992631327', 'provider' => 'bestbuy'],\n ['name' => \"Cowboys from Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/cowboys-from-hell-cd/612091.p?id=94338&skuId=612091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6120\\/612091_sa.jpg\"}', 'upc' => '075679137227', 'provider' => 'bestbuy'],\n ['name' => \"Confessin' the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/confessin-the-blues-cd/612108.p?id=94852&skuId=612108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612108_sa.jpg\"}', 'upc' => '075679067029', 'provider' => 'bestbuy'],\n ['name' => \"Smile [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smile-ep-cd/612199.p?id=96651&skuId=612199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612199_sa.jpg\"}', 'upc' => '075992639026', 'provider' => 'bestbuy'],\n ['name' => \"One Man Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-man-dog-cd/612402.p?id=101241&skuId=612402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612402_sa.jpg\"}', 'upc' => '075992593328', 'provider' => 'bestbuy'],\n ['name' => \"Big Joe Turner's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-joe-turners-greatest-hits-cd/612420.p?id=102484&skuId=612420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6124\\/612420_sa.jpg\"}', 'upc' => '075678175220', 'provider' => 'bestbuy'],\n ['name' => \"Caetano Veloso [Trilhos Urbanos] - CD - Reissue\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caetano-veloso-trilhos-urbanos-cd-reissue/612475.p?id=103059&skuId=612475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612475_sa.jpg\"}', 'upc' => '075597912722', 'provider' => 'bestbuy'],\n ['name' => \"Foreign Affairs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foreign-affairs-cd/612484.p?id=103321&skuId=612484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612484_sa.jpg\"}', 'upc' => '075596061827', 'provider' => 'bestbuy'],\n ['name' => \"Heartattack and Vine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heartattack-and-vine-cd/612493.p?id=103323&skuId=612493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6124\\/612493_sa.jpg\"}', 'upc' => '075596054720', 'provider' => 'bestbuy'],\n ['name' => \"Concert: The Cure Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concert-the-cure-live-cd/612581.p?id=1443020&skuId=612581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612581_sa.jpg\"}', 'upc' => '759091024029', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 1/4\\\" DIN Trim Ring for Most Vehicles\", 'description_short' => \"Compatible with most vehicles; designed for the installation of an aftermarket radio\", 'description_long' => \"Compatible with most vehicles; designed for the installation of an aftermarket radio\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-1-4-din-trim-ring-for-most-vehicles/612732.p?id=1179531744934&skuId=612732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6127\\/612732_sa.jpg\"}', 'upc' => '086429005536', 'provider' => 'bestbuy'],\n ['name' => \"For the Roses [Limited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-roses-limited-cd/612769.p?id=91923&skuId=612769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6127\\/612769_sa.jpg\"}', 'upc' => '075596062428', 'provider' => 'bestbuy'],\n ['name' => \"Group Sex - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/group-sex-cd/612867.p?id=2730478&skuId=612867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=612867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0612\\/0612867_sa.jpg\"}', 'upc' => '018663100227', 'provider' => 'bestbuy'],\n ['name' => \"Tibetan Tantric Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tibetan-tantric-choir-cd/613081.p?id=84524&skuId=613081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=613081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6130\\/613081.jpg\"}', 'upc' => '019341200123', 'provider' => 'bestbuy'],\n ['name' => \"Born to Mack [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-mack-pa-cd/614008.p?id=101986&skuId=614008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6140\\/614008_sa.jpg\"}', 'upc' => '012414110022', 'provider' => 'bestbuy'],\n ['name' => \"Together for the First Time...Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/together-for-the-first-time-live-cd/614213.p?id=75000&skuId=614213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0614\\/0614213_sa.jpg\"}', 'upc' => '076732416020', 'provider' => 'bestbuy'],\n ['name' => \"Together Again...Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/together-again-live-cd/614231.p?id=75001&skuId=614231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6142\\/614231_sa.jpg\"}', 'upc' => '076742701222', 'provider' => 'bestbuy'],\n ['name' => \"Riddles in the Sand - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riddles-in-the-sand-cd/614295.p?id=76276&skuId=614295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6142\\/614295_sa.jpg\"}', 'upc' => '076731109527', 'provider' => 'bestbuy'],\n ['name' => \"The Chess Box [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chess-box-box-cd/614428.p?id=80621&skuId=614428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6144\\/614428_sa.jpg\"}', 'upc' => '076731650029', 'provider' => 'bestbuy'],\n ['name' => \"Jon Secada - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jon-secada-cd/614437.p?id=98222&skuId=614437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0614\\/0614437_sa.jpg\"}', 'upc' => '077779884520', 'provider' => 'bestbuy'],\n ['name' => \"Plays & Sings The Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-sings-the-blues-cd/614650.p?id=2472982&skuId=614650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0614\\/0614650_sa.jpg\"}', 'upc' => '076732919927', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Believer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-believer-cd/614794.p?id=87934&skuId=614794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6147\\/614794.jpg\"}', 'upc' => '076742701123', 'provider' => 'bestbuy'],\n ['name' => \"Indianola Mississippi Seeds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indianola-mississippi-seeds-cd/614838.p?id=87922&skuId=614838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6148\\/614838_sa.jpg\"}', 'upc' => '076743134326', 'provider' => 'bestbuy'],\n ['name' => \"That Total Age - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-total-age-cd/614972.p?id=1365907&skuId=614972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=614972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '075992415521', 'provider' => 'bestbuy'],\n ['name' => \"Rufus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rufus-cd/615203.p?id=97504&skuId=615203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=615203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0615\\/0615203_sa.jpg\"}', 'upc' => '076743137327', 'provider' => 'bestbuy'],\n ['name' => \"Hyaena - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hyaena-cd/615230.p?id=98934&skuId=615230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=615230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6152\\/615230_sa.jpg\"}', 'upc' => '720642403020', 'provider' => 'bestbuy'],\n ['name' => \"The London Muddy Waters Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-london-muddy-waters-sessions-cd/615748.p?id=103577&skuId=615748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=615748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6157\\/615748.jpg\"}', 'upc' => '076732929827', 'provider' => 'bestbuy'],\n ['name' => \"Power of Three - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-of-three-cd/615793.p?id=70016&skuId=615793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=615793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6157\\/615793.jpg\"}', 'upc' => '077774642729', 'provider' => 'bestbuy'],\n ['name' => \"The Statlers Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-statlers-greatest-hits-cd/615873.p?id=100169&skuId=615873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=615873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0615\\/0615873_sa.jpg\"}', 'upc' => '042283462625', 'provider' => 'bestbuy'],\n ['name' => \"All Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/616097.p?id=95776&skuId=616097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=616097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0616\\/0616097_sa.jpg\"}', 'upc' => '075992646727', 'provider' => 'bestbuy'],\n ['name' => \"Bloodline - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloodline-cd/616444.p?id=96167&skuId=616444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=616444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0616\\/0616444_sa.jpg\"}', 'upc' => '075992685023', 'provider' => 'bestbuy'],\n ['name' => \"Check Your Head [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/check-your-head-pa-cd/616809.p?id=74157&skuId=616809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=616809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6168\\/616809_sa.jpg\"}', 'upc' => '077779893829', 'provider' => 'bestbuy'],\n ['name' => \"Geography - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geography-cd/618825.p?id=83028&skuId=618825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=618825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0618\\/0618825_sa.jpg\"}', 'upc' => '074645240824', 'provider' => 'bestbuy'],\n ['name' => \"East Side Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-side-story-cd/619236.p?id=87823&skuId=619236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=619236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6192\\/619236.jpg\"}', 'upc' => '077778627524', 'provider' => 'bestbuy'],\n ['name' => \"Water to the Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/water-to-the-soul-cd/619806.p?id=78398&skuId=619806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=619806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6198\\/619806.jpg\"}', 'upc' => '075679212320', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Charley Pride [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-charley-pride-curb-cd/619913.p?id=95446&skuId=619913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=619913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6199\\/619913_sa.jpg\"}', 'upc' => '715187747128', 'provider' => 'bestbuy'],\n ['name' => \"Charles Ivesedward Macdowellcharles Griffeslieder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charles-ivesedward-macdowellcharles-griffeslieder-cd/619995.p?id=3165199&skuId=619995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=619995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '090317248622', 'provider' => 'bestbuy'],\n ['name' => \"Wynonna & Naomi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wynonna-naomi-cd/620402.p?id=2282370&skuId=620402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=620402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6204\\/620402_sa.jpg\"}', 'upc' => '078635840223', 'provider' => 'bestbuy'],\n ['name' => \"Bachman-Turner Overdrive II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bachman-turner-overdrive-ii-cd/620849.p?id=73617&skuId=620849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=620849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6208\\/620849.jpg\"}', 'upc' => '042282250421', 'provider' => 'bestbuy'],\n ['name' => \"Four Wheel Drive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-wheel-drive-cd/620858.p?id=73620&skuId=620858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=620858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0620\\/0620858_sa.jpg\"}', 'upc' => '042283097025', 'provider' => 'bestbuy'],\n ['name' => \"Orange Blossom Special: 16 Instumentals - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/orange-blossom-special-16-instumentals-cd-various/621072.p?id=287317&skuId=621072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621072_sa.jpg\"}', 'upc' => '027297490321', 'provider' => 'bestbuy'],\n ['name' => \"Foggy Mountain Breakdown - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foggy-mountain-breakdown-cd-various/621090.p?id=245449&skuId=621090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6210\\/621090_sa.jpg\"}', 'upc' => '027297490222', 'provider' => 'bestbuy'],\n ['name' => \"Crazy World Of Arthur Brown (Germany) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crazy-world-of-arthur-brown-germany-cd/621269.p?id=2305071&skuId=621269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621269_sa.jpg\"}', 'upc' => '042283373624', 'provider' => 'bestbuy'],\n ['name' => \"Live Stock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-stock-cd/621303.p?id=76193&skuId=621303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621303_sa.jpg\"}', 'upc' => '042283141421', 'provider' => 'bestbuy'],\n ['name' => \"Okie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/okie-cd/621367.p?id=76587&skuId=621367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621367_sa.jpg\"}', 'upc' => '042284210225', 'provider' => 'bestbuy'],\n ['name' => \"Troubadour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/troubadour-cd/621385.p?id=76592&skuId=621385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621385_sa.jpg\"}', 'upc' => '042281000126', 'provider' => 'bestbuy'],\n ['name' => \"Bad Music for Bad People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-music-for-bad-people-cd/621474.p?id=79082&skuId=621474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6214\\/621474_sa.jpg\"}', 'upc' => '044797004223', 'provider' => 'bestbuy'],\n ['name' => \"Gravest Hits & Psychedelic Jungle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gravest-hits-psychedelic-jungle-cd/621492.p?id=2387429&skuId=621492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0621\\/0621492_sa.jpg\"}', 'upc' => '044797005824', 'provider' => 'bestbuy'],\n ['name' => \"Carousel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carousel-cd/621704.p?id=84266&skuId=621704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6217\\/621704_sa.jpg\"}', 'upc' => '042284233422', 'provider' => 'bestbuy'],\n ['name' => \"Mixed Bag - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mixed-bag-cd/621722.p?id=84999&skuId=621722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6217\\/621722_sa.jpg\"}', 'upc' => '042283521025', 'provider' => 'bestbuy'],\n ['name' => \"The Cure [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cure-digdownload-cd/621820.p?id=67888&skuId=621820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6218\\/621820.jpg\"}', 'upc' => '042284965026', 'provider' => 'bestbuy'],\n ['name' => \"Second Generation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-generation-cd/621946.p?id=94141&skuId=621946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6219\\/621946_sa.jpg\"}', 'upc' => '715187756328', 'provider' => 'bestbuy'],\n ['name' => \"Serious Intentions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serious-intentions-cd/621973.p?id=77945&skuId=621973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=621973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6219\\/621973_sa.jpg\"}', 'upc' => '014551480624', 'provider' => 'bestbuy'],\n ['name' => \"Two of a Kind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-of-a-kind-cd/622017.p?id=2434628&skuId=622017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=622017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6220\\/622017.jpg\"}', 'upc' => '730182201727', 'provider' => 'bestbuy'],\n ['name' => \"Slave to the Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slave-to-the-rhythm-cd/622142.p?id=87277&skuId=622142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=622142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6221\\/622142.jpg\"}', 'upc' => '042284261227', 'provider' => 'bestbuy'],\n ['name' => \"Bare Wires - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bare-wires-cd/622534.p?id=1524720&skuId=622534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=622534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0622\\/0622534_sa.jpg\"}', 'upc' => '042282053824', 'provider' => 'bestbuy'],\n ['name' => \"Chelsea Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chelsea-girl-cd/622847.p?id=93306&skuId=622847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=622847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6228\\/622847_sa.jpg\"}', 'upc' => '042283520929', 'provider' => 'bestbuy'],\n ['name' => \"Dance Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-collection-cd/623070.p?id=2434357&skuId=623070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6230\\/623070_sa.jpg\"}', 'upc' => '042283053427', 'provider' => 'bestbuy'],\n ['name' => \"Big Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-time-cd/623365.p?id=103317&skuId=623365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0623\\/0623365_sa.jpg\"}', 'upc' => '042284247023', 'provider' => 'bestbuy'],\n ['name' => \"Call of the West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-the-west-cd/623374.p?id=103406&skuId=623374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6233\\/623374_sa.jpg\"}', 'upc' => '044797002625', 'provider' => 'bestbuy'],\n ['name' => \"The Woman in Red [Original Soundtrack] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-woman-in-red-original-soundtrack-cd/623409.p?id=2358864&skuId=623409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6234\\/623409_sa.jpg\"}', 'upc' => '737463610827', 'provider' => 'bestbuy'],\n ['name' => \"After the Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-the-rain-cd/623454.p?id=87289&skuId=623454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6234\\/623454_sa.jpg\"}', 'upc' => '076742602024', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-mca-cd/623506.p?id=68558&skuId=623506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0623\\/0623506_sa.jpg\"}', 'upc' => '076732602126', 'provider' => 'bestbuy'],\n ['name' => \"The Lonely Shepherd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lonely-shepherd-cd/623622.p?id=105164&skuId=623622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=623622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6236\\/623622_sa.jpg\"}', 'upc' => '042282278722', 'provider' => 'bestbuy'],\n ['name' => \"Without a Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/without-a-song-cd/624140.p?id=93038&skuId=624140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6241\\/624140_sa.jpg\"}', 'upc' => '074643911023', 'provider' => 'bestbuy'],\n ['name' => \"Ella Fitzgerald Sings the Cole Porter... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-fitzgerald-sings-the-cole-porter-cd/624364.p?id=66283&skuId=624364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0624\\/0624364_sa.jpg\"}', 'upc' => '042282199027', 'provider' => 'bestbuy'],\n ['name' => \"Stan Getz and the Oscar Peterson Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-getz-and-the-oscar-peterson-trio-cd/624435.p?id=66581&skuId=624435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0624\\/0624435_sa.jpg\"}', 'upc' => '042282782625', 'provider' => 'bestbuy'],\n ['name' => \"Close Enough for Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-enough-for-love-cd/624532.p?id=67598&skuId=624532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6245\\/624532.jpg\"}', 'upc' => '042283793323', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Donald Byrd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-donald-byrd-cd/624649.p?id=64764&skuId=624649&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624649', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6246\\/624649.jpg\"}', 'upc' => '077779863822', 'provider' => 'bestbuy'],\n ['name' => \"Night and Day: The Cole Porter Songbook - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-and-day-the-cole-porter-songbook-cd-various/624667.p?id=95217&skuId=624667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0624\\/0624667_sa.jpg\"}', 'upc' => '042284720229', 'provider' => 'bestbuy'],\n ['name' => \"Golden Hits - Sarah Vaughan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-hits-sarah-vaughan-cd/624676.p?id=71680&skuId=624676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=624676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6246\\/624676_sa.jpg\"}', 'upc' => '042282489128', 'provider' => 'bestbuy'],\n ['name' => \"Last Time Around [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-time-around-remaster-cd/625853.p?id=76252&skuId=625853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=625853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0625\\/0625853_sa.jpg\"}', 'upc' => '075679039323', 'provider' => 'bestbuy'],\n ['name' => \"Double Eclipse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-eclipse-cd/626219.p?id=84815&skuId=626219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=626219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6262\\/626219.jpg\"}', 'upc' => '008811058623', 'provider' => 'bestbuy'],\n ['name' => \"Porgy & Bess - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/porgy-bess-cd-original-cast-recording/626282.p?id=2304925&skuId=626282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=626282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0626\\/0626282_sa.jpg\"}', 'upc' => '008811052027', 'provider' => 'bestbuy'],\n ['name' => \"Stephen Stills 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stephen-stills-2-cd/627058.p?id=100452&skuId=627058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=627058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0627\\/0627058_sa.jpg\"}', 'upc' => '075678238925', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Buddy Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-buddy-guy-cd/627174.p?id=84488&skuId=627174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=627174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0627\\/0627174_sa.jpg\"}', 'upc' => '081227028022', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Gregory Isaacs 1 & 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-gregory-isaacs-1-2-cd/627245.p?id=2542465&skuId=627245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=627245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0627\\/0627245_sa.jpg\"}', 'upc' => '011661759725', 'provider' => 'bestbuy'],\n ['name' => \"Live at Slim's, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-slims-vol-2-cd/627254.p?id=103392&skuId=627254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=627254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6272\\/627254.jpg\"}', 'upc' => '012928803625', 'provider' => 'bestbuy'],\n ['name' => \"Bucky Fellini - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bucky-fellini-cd/628798.p?id=79963&skuId=628798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=628798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0628\\/0628798_sa.jpg\"}', 'upc' => '018777254427', 'provider' => 'bestbuy'],\n ['name' => \"Thrash Zone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thrash-zone-cd/629056.p?id=269068&skuId=629056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=629056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6290\\/629056_sa.jpg\"}', 'upc' => '018777243728', 'provider' => 'bestbuy'],\n ['name' => \"Carmen Without Words - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carmen-without-words-cd/630062.p?id=2069524&skuId=630062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=630062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0630\\/0630062_sa.jpg\"}', 'upc' => '074644628722', 'provider' => 'bestbuy'],\n ['name' => \"Mesas and Mandolins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mesas-and-mandolins-cd/631016.p?id=154364&skuId=631016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6310\\/631016_sa.jpg\"}', 'upc' => '734373740620', 'provider' => 'bestbuy'],\n ['name' => \"How Late'll Ya Play 'Til?, Vol. 1: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-latell-ya-play-til-vol-1-live-cd/631472.p?id=76020&skuId=631472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0631\\/0631472_sa.jpg\"}', 'upc' => '025218770422', 'provider' => 'bestbuy'],\n ['name' => \"How Late'll Ya Play 'Til?, Vol. 2: Studio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-latell-ya-play-til-vol-2-studio-cd/631515.p?id=76021&skuId=631515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6315\\/631515_sa.jpg\"}', 'upc' => '025218770521', 'provider' => 'bestbuy'],\n ['name' => \"Willie's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/willies-blues-cd/631551.p?id=80624&skuId=631551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6315\\/631551_sa.jpg\"}', 'upc' => '025218050128', 'provider' => 'bestbuy'],\n ['name' => \"Hard Travelin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-travelin-cd/631739.p?id=249877&skuId=631739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0631\\/0631739_sa.jpg\"}', 'upc' => '025218242028', 'provider' => 'bestbuy'],\n ['name' => \"To Diz with Love: Diamond Jubilee Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-diz-with-love-diamond-jubilee-recordings-cd/631926.p?id=66704&skuId=631926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=631926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0631\\/0631926_sa.jpg\"}', 'upc' => '089408330728', 'provider' => 'bestbuy'],\n ['name' => \"Soulful Dress - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soulful-dress-cd/632033.p?id=2305037&skuId=632033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6320\\/632033.jpg\"}', 'upc' => '011661307827', 'provider' => 'bestbuy'],\n ['name' => \"Gatorhythms - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gatorhythms-cd/632042.p?id=73787&skuId=632042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6320\\/632042.jpg\"}', 'upc' => '011661310124', 'provider' => 'bestbuy'],\n ['name' => \"Guess Who's Coming to Dinner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guess-whos-coming-to-dinner-cd/632051.p?id=74846&skuId=632051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0632\\/0632051_sa.jpg\"}', 'upc' => '011661751828', 'provider' => 'bestbuy'],\n ['name' => \"Norman Blake & Tony Rice 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/norman-blake-tony-rice-2-cd/632088.p?id=2443921&skuId=632088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6320\\/632088.jpg\"}', 'upc' => '011661026629', 'provider' => 'bestbuy'],\n ['name' => \"Mama's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mamas-blues-cd/632097.p?id=75048&skuId=632097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6320\\/632097_sa.jpg\"}', 'upc' => '011661311725', 'provider' => 'bestbuy'],\n ['name' => \"Alright Again! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alright-again-cd/632275.p?id=75890&skuId=632275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6322\\/632275_sa.jpg\"}', 'upc' => '011661202825', 'provider' => 'bestbuy'],\n ['name' => \"I'll Treat You Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-treat-you-right-cd/632382.p?id=77977&skuId=632382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6323\\/632382.jpg\"}', 'upc' => '011661952027', 'provider' => 'bestbuy'],\n ['name' => \"Avalon Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avalon-blues-cd/632765.p?id=85964&skuId=632765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0632\\/0632765_sa.jpg\"}', 'upc' => '011661108127', 'provider' => 'bestbuy'],\n ['name' => \"Worried Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worried-blues-cd/632774.p?id=85970&skuId=632774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0632\\/0632774_sa.jpg\"}', 'upc' => '011661108226', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Special: The Library of Congress... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-special-the-library-of-congress-cd/632836.p?id=88858&skuId=632836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6328\\/632836_sa.jpg\"}', 'upc' => '011661104426', 'provider' => 'bestbuy'],\n ['name' => \"Gwine Dig a Hole to Put the Devil In: The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gwine-dig-a-hole-to-put-the-devil-in-the-cd/632845.p?id=88854&skuId=632845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6328\\/632845_sa.jpg\"}', 'upc' => '011661104525', 'provider' => 'bestbuy'],\n ['name' => \"The Folkways Years (1945-1959) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-folkways-years-1945-1959-cd/632907.p?id=91176&skuId=632907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6329\\/632907.jpg\"}', 'upc' => '093074003428', 'provider' => 'bestbuy'],\n ['name' => \"The Early Years (1958-1962) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-early-years-1958-1962-cd/632925.p?id=93158&skuId=632925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=632925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6329\\/632925_sa.jpg\"}', 'upc' => '093074003626', 'provider' => 'bestbuy'],\n ['name' => \"Markology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/markology-cd/633041.p?id=93653&skuId=633041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=633041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0633\\/0633041_sa.jpg\"}', 'upc' => '011661009028', 'provider' => 'bestbuy'],\n ['name' => \"Jonathan Richman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonathan-richman-cd/633078.p?id=96635&skuId=633078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=633078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0633\\/0633078_sa.jpg\"}', 'upc' => '011661902121', 'provider' => 'bestbuy'],\n ['name' => \"Jonathan Goes Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonathan-goes-country-cd/633087.p?id=96637&skuId=633087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=633087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6330\\/633087_sa.jpg\"}', 'upc' => '011661902428', 'provider' => 'bestbuy'],\n ['name' => \"Having a Party with Jonathan Richman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/having-a-party-with-jonathan-richman-cd/633096.p?id=96633&skuId=633096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=633096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0633\\/0633096_sa.jpg\"}', 'upc' => '011661902626', 'provider' => 'bestbuy'],\n ['name' => \"The Bassman of the Acropolis - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bassman-of-the-acropolis-cd-various/636805.p?id=181354&skuId=636805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=636805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6368\\/636805.jpg\"}', 'upc' => '054291900426', 'provider' => 'bestbuy'],\n ['name' => \"The Folkways Years, 1944-1963 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-folkways-years-1944-1963-cd/637074.p?id=101457&skuId=637074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6370\\/637074_sa.jpg\"}', 'upc' => '093074003329', 'provider' => 'bestbuy'],\n ['name' => \"Brownie McGhee and Sonny Terry Sing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brownie-mcghee-and-sonny-terry-sing-cd/637083.p?id=101464&skuId=637083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6370\\/637083_sa.jpg\"}', 'upc' => '093074001127', 'provider' => 'bestbuy'],\n ['name' => \"Cowboy Songs from Folkways - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cowboy-songs-from-folkways-various-cd/637109.p?id=79040&skuId=637109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6371\\/637109.jpg\"}', 'upc' => '093074004326', 'provider' => 'bestbuy'],\n ['name' => \"The First Four Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-four-years-cd/637751.p?id=74809&skuId=637751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6377\\/637751_sa.jpg\"}', 'upc' => '018861002125', 'provider' => 'bestbuy'],\n ['name' => \"If'n - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ifn-cd/637804.p?id=82252&skuId=637804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6378\\/637804_sa.jpg\"}', 'upc' => '018861011523', 'provider' => 'bestbuy'],\n ['name' => \"New Day Rising - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-day-rising-cd/637822.p?id=85977&skuId=637822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=637822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6378\\/637822_sa.jpg\"}', 'upc' => '018861003122', 'provider' => 'bestbuy'],\n ['name' => \"Some Gave All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-gave-all-cd/638091.p?id=79521&skuId=638091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=638091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0638\\/0638091_sa.jpg\"}', 'upc' => '731451063527', 'provider' => 'bestbuy'],\n ['name' => \"The Sky Is Falling, and I Want My Mommy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sky-is-falling-and-i-want-my-mommy-cd/638411.p?id=74575&skuId=638411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=638411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6384\\/638411_sa.jpg\"}', 'upc' => '721616008524', 'provider' => 'bestbuy'],\n ['name' => \"Family Groove [UK Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-groove-uk-bonus-track-cd/638554.p?id=93092&skuId=638554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=638554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0638\\/0638554_sa.jpg\"}', 'upc' => '075021538429', 'provider' => 'bestbuy'],\n ['name' => \"Daily Operation [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daily-operation-pa-cd/638778.p?id=83234&skuId=638778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=638778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6387\\/638778_sa.jpg\"}', 'upc' => '094632191021', 'provider' => 'bestbuy'],\n ['name' => \"Never Been Rocked Enough - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-been-rocked-enough-cd/638821.p?id=91064&skuId=638821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=638821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6388\\/638821.jpg\"}', 'upc' => '715187752122', 'provider' => 'bestbuy'],\n ['name' => \"A Week in Hawaii, Vol. 7: Tropical Surf - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-week-in-hawaii-vol-7-tropical-surf-cd/639018.p?id=81618&skuId=639018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6390\\/639018.jpg\"}', 'upc' => '014431006920', 'provider' => 'bestbuy'],\n ['name' => \"A Week in Hawaii, Vol. 8: Midnight Rainshower - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-week-in-hawaii-vol-8-midnight-rainshower-cd/639027.p?id=81619&skuId=639027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6390\\/639027.jpg\"}', 'upc' => '014431007026', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Fattburger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-fattburger-cd/639232.p?id=66213&skuId=639232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6392\\/639232.jpg\"}', 'upc' => '077779816422', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Duke Ellington [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-duke-ellington-capitol-cd/639250.p?id=65928&skuId=639250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0639\\/0639250_sa.jpg\"}', 'upc' => '715187750524', 'provider' => 'bestbuy'],\n ['name' => \"Revenge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenge-cd/639278.p?id=88183&skuId=639278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6392\\/639278.jpg\"}', 'upc' => '042284803724', 'provider' => 'bestbuy'],\n ['name' => \"Warm, In Your Coat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warm-in-your-coat-cd/639376.p?id=97258&skuId=639376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6393\\/639376.jpg\"}', 'upc' => '074644796421', 'provider' => 'bestbuy'],\n ['name' => \"Worlds Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-away-cd/639615.p?id=94258&skuId=639615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0639\\/0639615_sa.jpg\"}', 'upc' => '075021319820', 'provider' => 'bestbuy'],\n ['name' => \"Boats, Beaches, Bars & Ballads [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boats-beaches-bars-ballads-box-cd/639811.p?id=76261&skuId=639811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=639811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0639\\/0639811_sa.jpg\"}', 'upc' => '008811061326', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/640248.p?id=2486406&skuId=640248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=640248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6402\\/640248_sa.jpg\"}', 'upc' => '078221834827', 'provider' => 'bestbuy'],\n ['name' => \"Funkentelechy Vs. The Placebo Syndrome - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funkentelechy-vs-the-placebo-syndrome-cd/641256.p?id=94418&skuId=641256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6412\\/641256_sa.jpg\"}', 'upc' => '042282450128', 'provider' => 'bestbuy'],\n ['name' => \"Motor Booty Affair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/motor-booty-affair-cd/641265.p?id=94421&skuId=641265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0641\\/0641265_sa.jpg\"}', 'upc' => '042284262125', 'provider' => 'bestbuy'],\n ['name' => \"Hot Dawg - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-dawg-cd/641292.p?id=84293&skuId=641292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6412\\/641292_sa.jpg\"}', 'upc' => '075021329225', 'provider' => 'bestbuy'],\n ['name' => \"Sharp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharp-cd/641309.p?id=104442&skuId=641309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0641\\/0641309_sa.jpg\"}', 'upc' => '042283273320', 'provider' => 'bestbuy'],\n ['name' => \"High 'N' Dry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-n-dry-cd/641586.p?id=80092&skuId=641586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0641\\/0641586_sa.jpg\"}', 'upc' => '731451235627', 'provider' => 'bestbuy'],\n ['name' => \"The Ritual - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ritual-cd/641602.p?id=101488&skuId=641602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6416\\/641602.jpg\"}', 'upc' => '075678239229', 'provider' => 'bestbuy'],\n ['name' => \"Levelling the Land - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/levelling-the-land-cd/641899.p?id=89107&skuId=641899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0641\\/0641899_sa.jpg\"}', 'upc' => '075596132527', 'provider' => 'bestbuy'],\n ['name' => \"Warren Zevon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warren-zevon-cd/641924.p?id=105308&skuId=641924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=641924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6419\\/641924_sa.jpg\"}', 'upc' => '075596060820', 'provider' => 'bestbuy'],\n ['name' => \"Grace in Gravity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grace-in-gravity-cd/642059.p?id=100529&skuId=642059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=642059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6420\\/642059_sa.jpg\"}', 'upc' => '075596132121', 'provider' => 'bestbuy'],\n ['name' => \"Great Mass In C - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-mass-in-c-cd/643227.p?id=1675855&skuId=643227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0643\\/0643227_sa.jpg\"}', 'upc' => '028943179126', 'provider' => 'bestbuy'],\n ['name' => \"20 Below [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-below-pa-cd/643405.p?id=105373&skuId=643405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6434\\/643405.jpg\"}', 'upc' => '019011810928', 'provider' => 'bestbuy'],\n ['name' => \"Virus 100: Dead Kennedy Covers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virus-100-dead-kennedy-covers-cd/643520.p?id=79990&skuId=643520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6435\\/643520_sa.jpg\"}', 'upc' => '721616010022', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbowire Radio Harness Adapter for Select Jeep Vehicles\", 'description_short' => \"Compatible with select Jeep vehicles; ABS and vinyl construction; colored-coded wires\", 'description_long' => \"Compatible with select Jeep vehicles; ABS and vinyl construction; colored-coded wires\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbowire-radio-harness-adapter-for-select-jeep-vehicles/643600.p?id=1183160746436&skuId=643600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6436\\/643600_rc.jpg\"}', 'upc' => '086429003341', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Connector for Select Volkswagen Vehicles\", 'description_short' => \"Compatible with select Volkswagen vehicles; connects a speaker to the vehicle&#039;s stereo; easy installation\", 'description_long' => \"Compatible with select Volkswagen vehicles; connects a speaker to the vehicle&#039;s stereo; easy installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-connector-for-select-volkswagen-vehicles/643628.p?id=1183160746500&skuId=643628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6436\\/643628_rc.jpg\"}', 'upc' => '086429113255', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Connector for Select Mitsubishi and Chrysler Vehicles\", 'description_short' => \"From our expanded online assortment; compatible with 1987 - 1993 Mitsubishi and Chrysler vehicles; color-coded wires\", 'description_long' => \"From our expanded online assortment; compatible with 1987 - 1993 Mitsubishi and Chrysler vehicles; color-coded wires\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-connector-for-select-mitsubishi-and-chrysler-vehicles/643691.p?id=1218019642861&skuId=643691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6436\\/643691_rc.jpg\"}', 'upc' => '086429002528', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Wiring Harness for Most 1990-2001 Mazda Vehicles - Multicolored\", 'description_short' => \"Compatible with most 1990-2001 Mazda vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'description_long' => \"Compatible with most 1990-2001 Mazda vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-wiring-harness-for-most-1990-2001-mazda-vehicles-multicolored/643717.p?id=1142291937563&skuId=643717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6437\\/643717_rc.jpg\"}', 'upc' => '086429002627', 'provider' => 'bestbuy'],\n ['name' => \"Tossing Seeds (Singles 89-91) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tossing-seeds-singles-89-91-cd/643771.p?id=100864&skuId=643771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=643771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6437\\/643771_sa.jpg\"}', 'upc' => '036172932023', 'provider' => 'bestbuy'],\n ['name' => \"Slide Rule - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slide-rule-cd/644084.p?id=80842&skuId=644084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0644\\/0644084_sa.jpg\"}', 'upc' => '015891379722', 'provider' => 'bestbuy'],\n ['name' => \"Remembering Merle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remembering-merle-cd/644093.p?id=103620&skuId=644093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0644\\/0644093_sa.jpg\"}', 'upc' => '015891380025', 'provider' => 'bestbuy'],\n ['name' => \"Living Chicago Blues, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-chicago-blues-vol-1-cd-various/644397.p?id=75301&skuId=644397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6443\\/644397_sa.jpg\"}', 'upc' => '014551770121', 'provider' => 'bestbuy'],\n ['name' => \"Living Chicago Blues, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-chicago-blues-vol-2-cd-various/644404.p?id=75302&skuId=644404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6444\\/644404.jpg\"}', 'upc' => '014551770220', 'provider' => 'bestbuy'],\n ['name' => \"Living Chicago Blues, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-chicago-blues-vol-3-cd-various/644413.p?id=75303&skuId=644413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6444\\/644413.jpg\"}', 'upc' => '014551770329', 'provider' => 'bestbuy'],\n ['name' => \"Living Chicago Blues, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-chicago-blues-vol-4-cd-various/644422.p?id=75304&skuId=644422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6444\\/644422.jpg\"}', 'upc' => '014551770428', 'provider' => 'bestbuy'],\n ['name' => \"Soul Finger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-finger-cd/644958.p?id=73925&skuId=644958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=644958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6449\\/644958_sa.jpg\"}', 'upc' => '081227029821', 'provider' => 'bestbuy'],\n ['name' => \"Day Parts: Dinner Gift Pack - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-parts-dinner-gift-pack-cd-various/645298.p?id=79899&skuId=645298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0645\\/0645298_sa.jpg\"}', 'upc' => '012805010122', 'provider' => 'bestbuy'],\n ['name' => \"Rock 'n 70s - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-n-70s-cd-various/645341.p?id=98404&skuId=645341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6453\\/645341_sa.jpg\"}', 'upc' => '079892113624', 'provider' => 'bestbuy'],\n ['name' => \"A World Out of Time: Henry Kaiser & David... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-world-out-of-time-henry-kaiser-david-cd/645573.p?id=90113&skuId=645573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6455\\/645573.jpg\"}', 'upc' => '016351644121', 'provider' => 'bestbuy'],\n ['name' => \"I Ain't Gonna Be Worried No More 1929-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-aint-gonna-be-worried-no-more-1929-1941-cd/645635.p?id=81698&skuId=645635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0645\\/0645635_sa.jpg\"}', 'upc' => '016351020420', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Cradle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-cradle-cd/645680.p?id=76209&skuId=645680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6456\\/645680_sa.jpg\"}', 'upc' => '075992618229', 'provider' => 'bestbuy'],\n ['name' => \"Kiko - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kiko-cd/645831.p?id=89692&skuId=645831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=645831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6458\\/645831_sa.jpg\"}', 'upc' => '075992678629', 'provider' => 'bestbuy'],\n ['name' => \"Fabulous Disaster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabulous-disaster-cd/646251.p?id=81813&skuId=646251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=646251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6462\\/646251_sa.jpg\"}', 'upc' => '088561200121', 'provider' => 'bestbuy'],\n ['name' => \"Wonderful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wonderful-cd/646288.p?id=77826&skuId=646288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=646288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0646\\/0646288_sa.jpg\"}', 'upc' => '088561804824', 'provider' => 'bestbuy'],\n ['name' => \"Radio Free Albemuth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-free-albemuth-cd/646297.p?id=84706&skuId=646297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=646297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6462\\/646297_sa.jpg\"}', 'upc' => '088561820923', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-fire-cd/647125.p?id=98185&skuId=647125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0647\\/0647125_sa.jpg\"}', 'upc' => '014551472025', 'provider' => 'bestbuy'],\n ['name' => \"Short Fuse Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/short-fuse-blues-cd/647143.p?id=85476&skuId=647143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6471\\/647143_sa.jpg\"}', 'upc' => '014551480723', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-cd/647223.p?id=81766&skuId=647223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6472\\/647223_sa.jpg\"}', 'upc' => '075678239526', 'provider' => 'bestbuy'],\n ['name' => \"Men at Large - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/men-at-large-cd/647241.p?id=91411&skuId=647241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0647\\/0647241_sa.jpg\"}', 'upc' => '075679215925', 'provider' => 'bestbuy'],\n ['name' => \"Sir John Alot of Merrie Englandes Musyk Thyng... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sir-john-alot-of-merrie-englandes-musyk-thyng-cd/647492.p?id=96435&skuId=647492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0647\\/0647492_sa.jpg\"}', 'upc' => '016351972125', 'provider' => 'bestbuy'],\n ['name' => \"The Lady and the Unicorn [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lady-and-the-unicorn-remaster-cd/647508.p?id=96436&skuId=647508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6475\\/647508.jpg\"}', 'upc' => '016351972224', 'provider' => 'bestbuy'],\n ['name' => \"Skin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skin-cd/647759.p?id=89174&skuId=647759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0647\\/0647759_sa.jpg\"}', 'upc' => '075596131827', 'provider' => 'bestbuy'],\n ['name' => \"Black and Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-and-blue-cd/647946.p?id=67225&skuId=647946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=647946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6479\\/647946_sa.jpg\"}', 'upc' => '013431448228', 'provider' => 'bestbuy'],\n ['name' => \"Are You Sure Hank Done It This Way? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-sure-hank-done-it-this-way-cd/648197.p?id=1981933&skuId=648197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '078636115627', 'provider' => 'bestbuy'],\n ['name' => \"All American Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-american-country-cd/648295.p?id=93039&skuId=648295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6482\\/648295.jpg\"}', 'upc' => '079892156225', 'provider' => 'bestbuy'],\n ['name' => \"Just a Closer Walk with Thee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-a-closer-walk-with-thee-cd/648428.p?id=78076&skuId=648428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6484\\/648428_sa.jpg\"}', 'upc' => '076742049225', 'provider' => 'bestbuy'],\n ['name' => \"The Green Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-green-album-cd/648525.p?id=2068366&skuId=648525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6485\\/648525_sa.jpg\"}', 'upc' => '074644822427', 'provider' => 'bestbuy'],\n ['name' => \"ELO Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elo-classics-cd/648918.p?id=81426&skuId=648918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6489\\/648918.jpg\"}', 'upc' => '079892158328', 'provider' => 'bestbuy'],\n ['name' => \"It's Your Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-your-thing-cd/648963.p?id=86408&skuId=648963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=648963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6489\\/648963_sa.jpg\"}', 'upc' => '079892218725', 'provider' => 'bestbuy'],\n ['name' => \"Let's Groove [Sony] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-groove-sony-cd/649025.p?id=81252&skuId=649025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649025_sa.jpg\"}', 'upc' => '079892175325', 'provider' => 'bestbuy'],\n ['name' => \"King of the Freight Train - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-the-freight-train-cd/649098.p?id=75668&skuId=649098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6490\\/649098.jpg\"}', 'upc' => '076742054427', 'provider' => 'bestbuy'],\n ['name' => \"Bill Cosby at His Best - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-cosby-at-his-best-cd/649141.p?id=78727&skuId=649141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649141_sa.jpg\"}', 'upc' => '076742067625', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Blues [MCA Special Products] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-blues-mca-special-products-cd-various/649187.p?id=75227&skuId=649187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649187_sa.jpg\"}', 'upc' => '076732202029', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Blind Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-blind-boys-cd/649203.p?id=173256&skuId=649203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649203_sa.jpg\"}', 'upc' => '076742204723', 'provider' => 'bestbuy'],\n ['name' => \"Playing The Field - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playing-the-field-cd/649285.p?id=94181&skuId=649285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649285_sa.jpg\"}', 'upc' => '079892263220', 'provider' => 'bestbuy'],\n ['name' => \"Burning Bright - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burning-bright-cd/649294.p?id=81423&skuId=649294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649294_sa.jpg\"}', 'upc' => '079892263923', 'provider' => 'bestbuy'],\n ['name' => \"Seven Separate Fools - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven-separate-fools-cd/649310.p?id=101793&skuId=649310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6493\\/649310_sa.jpg\"}', 'upc' => '076743133923', 'provider' => 'bestbuy'],\n ['name' => \"People Like Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/people-like-us-cd/649329.p?id=90302&skuId=649329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6493\\/649329.jpg\"}', 'upc' => '076743134425', 'provider' => 'bestbuy'],\n ['name' => \"Naturally - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naturally-cd/649542.p?id=101792&skuId=649542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0649\\/0649542_sa.jpg\"}', 'upc' => '076743135521', 'provider' => 'bestbuy'],\n ['name' => \"Crackin' Up! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crackin-up-cd/649579.p?id=100358&skuId=649579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=649579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6495\\/649579.jpg\"}', 'upc' => '076744202024', 'provider' => 'bestbuy'],\n ['name' => \"Spring Training - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spring-training-cd/650085.p?id=156038&skuId=650085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0650\\/0650085_sa.jpg\"}', 'upc' => '015891378923', 'provider' => 'bestbuy'],\n ['name' => \"13 Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/13-songs-cd/650334.p?id=2305044&skuId=650334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0650\\/0650334_sa.jpg\"}', 'upc' => '718750734020', 'provider' => 'bestbuy'],\n ['name' => \"Repeater - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repeater-cd/650370.p?id=83057&skuId=650370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0650\\/0650370_sa.jpg\"}', 'upc' => '718750734822', 'provider' => 'bestbuy'],\n ['name' => \"Steady Diet of Nothing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steady-diet-of-nothing-cd/650398.p?id=83059&skuId=650398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6503\\/650398_sa.jpg\"}', 'upc' => '718751796027', 'provider' => 'bestbuy'],\n ['name' => \"Legion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legion-cd/650432.p?id=80111&skuId=650432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6504\\/650432_sa.jpg\"}', 'upc' => '016861919221', 'provider' => 'bestbuy'],\n ['name' => \"Leather Jackets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leather-jackets-cd/650478.p?id=87090&skuId=650478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0650\\/0650478_sa.jpg\"}', 'upc' => '008811049829', 'provider' => 'bestbuy'],\n ['name' => \"Kenton in Hi-Fi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kenton-in-hi-fi-cd/650717.p?id=68183&skuId=650717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6507\\/650717_sa.jpg\"}', 'upc' => '077779845125', 'provider' => 'bestbuy'],\n ['name' => \"Who Feels it, Knows it - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-feels-it-knows-it-cd/650913.p?id=90631&skuId=650913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=650913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6509\\/650913_sa.jpg\"}', 'upc' => '016351430328', 'provider' => 'bestbuy'],\n ['name' => \"One More Goodnight Kiss - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-goodnight-kiss-cd/651253.p?id=75924&skuId=651253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=651253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6512\\/651253_sa.jpg\"}', 'upc' => '033651002321', 'provider' => 'bestbuy'],\n ['name' => \"44 & 66 [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/44-66-bonus-track-cd/651271.p?id=75918&skuId=651271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=651271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0651\\/0651271_sa.jpg\"}', 'upc' => '033651000228', 'provider' => 'bestbuy'],\n ['name' => \"Blues & Roots - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-roots-cd/652136.p?id=176546&skuId=652136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=652136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6521\\/652136.jpg\"}', 'upc' => '075678133626', 'provider' => 'bestbuy'],\n ['name' => \"Art Blakey's Jazz Messengers with Thelonious Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-blakeys-jazz-messengers-with-thelonious-monk-cd/652154.p?id=176540&skuId=652154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=652154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6521\\/652154_sa.jpg\"}', 'upc' => '075678133220', 'provider' => 'bestbuy'],\n ['name' => \"Change Everything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/change-everything-cd/653858.p?id=80119&skuId=653858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=653858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6538\\/653858.jpg\"}', 'upc' => '075021538528', 'provider' => 'bestbuy'],\n ['name' => \"Re-Birth of the Cool - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/re-birth-of-the-cool-cd/654474.p?id=69463&skuId=654474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=654474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6544\\/654474.jpg\"}', 'upc' => '011105967921', 'provider' => 'bestbuy'],\n ['name' => \"Carl Stalling Project: Music from Warner... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carl-stalling-project-music-from-warner-cd/654580.p?id=2069643&skuId=654580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=654580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0654\\/0654580_sa.jpg\"}', 'upc' => '075992602723', 'provider' => 'bestbuy'],\n ['name' => \"Elvis in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elvis-in-concert-cd/654688.p?id=95341&skuId=654688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=654688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0654\\/0654688_sa.jpg\"}', 'upc' => '078635258721', 'provider' => 'bestbuy'],\n ['name' => \"Angel Dust [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angel-dust-pa-cd/655115.p?id=81907&skuId=655115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=655115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6551\\/655115.jpg\"}', 'upc' => '075992678520', 'provider' => 'bestbuy'],\n ['name' => \"Symphony 6 \\\" Pathetique \\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-6--pathetique--cd/655179.p?id=1675642&skuId=655179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=655179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6551\\/655179.jpg\"}', 'upc' => '095115844625', 'provider' => 'bestbuy'],\n ['name' => \"For the Record: The First 10 Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-record-the-first-10-years-cd/655286.p?id=78219&skuId=655286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=655286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6552\\/655286.jpg\"}', 'upc' => '074643958523', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Columbia] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-columbia-cd/655482.p?id=102442&skuId=655482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=655482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0655\\/0655482_sa.jpg\"}', 'upc' => '074643335522', 'provider' => 'bestbuy'],\n ['name' => \"A Lifetime of Song (1951-1982) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-lifetime-of-song-1951-1982-cd/655507.p?id=96804&skuId=655507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=655507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6555\\/655507_sa.jpg\"}', 'upc' => '074643887021', 'provider' => 'bestbuy'],\n ['name' => \"Something Else by the Kinks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-else-by-the-kinks-cd/656310.p?id=88132&skuId=656310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=656310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6563\\/656310_sa.jpg\"}', 'upc' => '075992621625', 'provider' => 'bestbuy'],\n ['name' => \"The Village Green Preservation Society - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-village-green-preservation-society-cd/656329.p?id=88139&skuId=656329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=656329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6563\\/656329_sa.jpg\"}', 'upc' => '075992621724', 'provider' => 'bestbuy'],\n ['name' => \"Freedom to Fly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freedom-to-fly-cd/656882.p?id=90051&skuId=656882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=656882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0656\\/0656882_sa.jpg\"}', 'upc' => '026245105829', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Bass Trax, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-bass-trax-vol-1-cd/657088.p?id=155180&skuId=657088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=657088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6570\\/657088_sa.jpg\"}', 'upc' => '054291881824', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Johnnie Taylor on Malaco, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-johnnie-taylor-on-malaco-vol-1-cd/657122.p?id=157384&skuId=657122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=657122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6571\\/657122_sa.jpg\"}', 'upc' => '048021746323', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Without You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-without-you-cd/657186.p?id=2403044&skuId=657186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=657186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0657\\/0657186_sa.jpg\"}', 'upc' => '013431451525', 'provider' => 'bestbuy'],\n ['name' => \"TV Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tv-favorites-cd/657346.p?id=155979&skuId=657346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=657346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6573\\/657346_sa.jpg\"}', 'upc' => '014921300620', 'provider' => 'bestbuy'],\n ['name' => \"Echoes of the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-of-the-night-cd/657907.p?id=1398183&skuId=657907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=657907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6579\\/657907_sa.jpg\"}', 'upc' => '096507714526', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds in the Rough - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-in-the-rough-cd/658069.p?id=95513&skuId=658069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6580\\/658069_sa.jpg\"}', 'upc' => '075678142123', 'provider' => 'bestbuy'],\n ['name' => \"Todd Rundgren's Utopia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todd-rundgrens-utopia-cd/658238.p?id=97564&skuId=658238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658238_sa.jpg\"}', 'upc' => '081227086527', 'provider' => 'bestbuy'],\n ['name' => \"Secret Combination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-combination-cd/658452.p?id=79119&skuId=658452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6584\\/658452_sa.jpg\"}', 'upc' => '075992354127', 'provider' => 'bestbuy'],\n ['name' => \"Back to Basics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-basics-cd/658470.p?id=93261&skuId=658470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6584\\/658470_sa.jpg\"}', 'upc' => '720642447024', 'provider' => 'bestbuy'],\n ['name' => \"Dreamer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreamer-cd/658513.p?id=2107008&skuId=658513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6585\\/658513.jpg\"}', 'upc' => '011105967723', 'provider' => 'bestbuy'],\n ['name' => \"Sangoma - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sangoma-cd/658639.p?id=90235&skuId=658639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6586\\/658639_sa.jpg\"}', 'upc' => '075992567329', 'provider' => 'bestbuy'],\n ['name' => \"Second Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-edition-cd/658648.p?id=95639&skuId=658648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658648_sa.jpg\"}', 'upc' => '075992328821', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Whitfield] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-whitfield-cd/658657.p?id=97327&skuId=658657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658657_sa.jpg\"}', 'upc' => '075992345729', 'provider' => 'bestbuy'],\n ['name' => \"Local Hero - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/local-hero-cd-original-soundtrack/658684.p?id=2517079&skuId=658684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658684_sa.jpg\"}', 'upc' => '075992382724', 'provider' => 'bestbuy'],\n ['name' => \"Spike & Co.: Do It a Cappella - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spike-co--do-it-a-cappella-cd-various/658693.p?id=80660&skuId=658693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658693_sa.jpg\"}', 'upc' => '075596095327', 'provider' => 'bestbuy'],\n ['name' => \"The Music Man [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-man-original-soundtrack-cd-original-soundtrack/658719.p?id=92683&skuId=658719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=658719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0658\\/0658719_sa.jpg\"}', 'upc' => '075992715829', 'provider' => 'bestbuy'],\n ['name' => \"Jerry Garcia/David Grisman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jerry-garcia-david-grisman-cd/659068.p?id=83264&skuId=659068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=659068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6590\\/659068.jpg\"}', 'upc' => '715949100222', 'provider' => 'bestbuy'],\n ['name' => \"Live Live Ju Ju - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-live-ju-ju-cd/659264.p?id=2444204&skuId=659264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=659264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0659\\/0659264_sa.jpg\"}', 'upc' => '014431004728', 'provider' => 'bestbuy'],\n ['name' => \"Official Version - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/official-version-cd/659399.p?id=83030&skuId=659399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=659399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0659\\/0659399_sa.jpg\"}', 'upc' => '074645240527', 'provider' => 'bestbuy'],\n ['name' => \"Backcatalogue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backcatalogue-cd/659415.p?id=83026&skuId=659415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=659415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0659\\/0659415_sa.jpg\"}', 'upc' => '074645240725', 'provider' => 'bestbuy'],\n ['name' => \"Vane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vane-cd/659647.p?id=128198&skuId=659647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=659647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6596\\/659647.jpg\"}', 'upc' => '033651004820', 'provider' => 'bestbuy'],\n ['name' => \"King of the Bayous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-the-bayous-cd/660216.p?id=77350&skuId=660216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6602\\/660216.jpg\"}', 'upc' => '096297033920', 'provider' => 'bestbuy'],\n ['name' => \"Ward of the State - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ward-of-the-state-cd/660305.p?id=3183459&skuId=660305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6603\\/660305.jpg\"}', 'upc' => '747367010029', 'provider' => 'bestbuy'],\n ['name' => \"The Pavilion of Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pavilion-of-dreams-cd/660573.p?id=76239&skuId=660573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0660\\/0660573_sa.jpg\"}', 'upc' => '017046156622', 'provider' => 'bestbuy'],\n ['name' => \"Live at El Morocco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-el-morocco-cd/660840.p?id=64058&skuId=660840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0660\\/0660840_sa.jpg\"}', 'upc' => '089408331220', 'provider' => 'bestbuy'],\n ['name' => \"Mustache Ride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mustache-ride-cd/660886.p?id=82685&skuId=660886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6608\\/660886.jpg\"}', 'upc' => '038161900228', 'provider' => 'bestbuy'],\n ['name' => \"Legacy of Brutality [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legacy-of-brutality-pa-cd/660895.p?id=91879&skuId=660895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=660895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0660\\/0660895_sa.jpg\"}', 'upc' => '017046190626', 'provider' => 'bestbuy'],\n ['name' => \"Infinity Within - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/infinity-within-cd/661000.p?id=80044&skuId=661000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6610\\/661000_sa.jpg\"}', 'upc' => '075596131322', 'provider' => 'bestbuy'],\n ['name' => \"World Falling Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-falling-down-cd/661046.p?id=2310078&skuId=661046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6610\\/661046_sa.jpg\"}', 'upc' => '075992689427', 'provider' => 'bestbuy'],\n ['name' => \"Sister Act - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sister-act-cd-original-soundtrack/661536.p?id=98958&skuId=661536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0661\\/0661536_sa.jpg\"}', 'upc' => '720616133427', 'provider' => 'bestbuy'],\n ['name' => \"Goin' Back to New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goin-back-to-new-orleans-cd/661741.p?id=80884&skuId=661741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0661\\/0661741_sa.jpg\"}', 'upc' => '075992694025', 'provider' => 'bestbuy'],\n ['name' => \"Compact Disc EP Collection [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/compact-disc-ep-collection-box-cd/661803.p?id=74196&skuId=661803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6618\\/661803.jpg\"}', 'upc' => '077771585227', 'provider' => 'bestbuy'],\n ['name' => \"Get in Touch with Yourself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-in-touch-with-yourself-cd/661901.p?id=101015&skuId=661901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=661901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0661\\/0661901_sa.jpg\"}', 'upc' => '731451224126', 'provider' => 'bestbuy'],\n ['name' => \"An Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-anthology-cd/662027.p?id=2472946&skuId=662027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6620\\/662027.jpg\"}', 'upc' => '731451243127', 'provider' => 'bestbuy'],\n ['name' => \"Love Power Peace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-power-peace-cd/662161.p?id=75958&skuId=662161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0662\\/0662161_sa.jpg\"}', 'upc' => '731451338922', 'provider' => 'bestbuy'],\n ['name' => \"Extras (Collection Of Extras) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extras-collection-of-extras-cd/662189.p?id=86599&skuId=662189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0662\\/0662189_sa.jpg\"}', 'upc' => '731451317729', 'provider' => 'bestbuy'],\n ['name' => \"Jazz 'Round Midnight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-round-midnight-cd/662223.p?id=69957&skuId=662223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6622\\/662223.jpg\"}', 'upc' => '731451346026', 'provider' => 'bestbuy'],\n ['name' => \"Ya Rollin' Doo Doo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ya-rollin-doo-doo-cd/662820.p?id=181380&skuId=662820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6628\\/662820.jpg\"}', 'upc' => '026656273025', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/662937.p?id=103809&skuId=662937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6629\\/662937_sa.jpg\"}', 'upc' => '715187755529', 'provider' => 'bestbuy'],\n ['name' => \"Heartbreaker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heartbreaker-cd/662982.p?id=82932&skuId=662982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0662\\/0662982_sa.jpg\"}', 'upc' => '042284236126', 'provider' => 'bestbuy'],\n ['name' => \"Love to Love You Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-to-love-you-baby-cd/662991.p?id=100791&skuId=662991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=662991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6629\\/662991_sa.jpg\"}', 'upc' => '042282279224', 'provider' => 'bestbuy'],\n ['name' => \"A Love Trilogy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-love-trilogy-cd/663008.p?id=100779&skuId=663008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6630\\/663008_sa.jpg\"}', 'upc' => '042282279323', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Dramatics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-dramatics-cd/663106.p?id=80919&skuId=663106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0663\\/0663106_sa.jpg\"}', 'upc' => '025218300322', 'provider' => 'bestbuy'],\n ['name' => \"The Isaac Hayes Movement - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-isaac-hayes-movement-cd/663133.p?id=85068&skuId=663133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0663\\/0663133_sa.jpg\"}', 'upc' => '025218412926', 'provider' => 'bestbuy'],\n ['name' => \"DJ Magic Mike and the Royal Posse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-magic-mike-and-the-royal-posse-cd/663188.p?id=90161&skuId=663188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6631\\/663188.jpg\"}', 'upc' => '021257940123', 'provider' => 'bestbuy'],\n ['name' => \"Twenty Degrees Below Zero [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twenty-degrees-below-zero-pa-cd/663419.p?id=80646&skuId=663419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6634\\/663419_sa.jpg\"}', 'upc' => '021257941229', 'provider' => 'bestbuy'],\n ['name' => \"Bobby McFerrin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bobby-mcferrin-cd/663794.p?id=68915&skuId=663794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=663794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0663\\/0663794_sa.jpg\"}', 'upc' => '075596002325', 'provider' => 'bestbuy'],\n ['name' => \"Thug - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thug-cd/664524.p?id=99394&skuId=664524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6645\\/664524.jpg\"}', 'upc' => '075679214126', 'provider' => 'bestbuy'],\n ['name' => \"Meantime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meantime-cd/664551.p?id=85200&skuId=664551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6645\\/664551_sa.jpg\"}', 'upc' => '606949216221', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [CEMA Special Markets] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cema-special-markets-cd/664588.p?id=94784&skuId=664588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0664\\/0664588_sa.jpg\"}', 'upc' => '077775739923', 'provider' => 'bestbuy'],\n ['name' => \"One Day at a Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-day-at-a-time-cd/664604.p?id=169066&skuId=664604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0664\\/0664604_sa.jpg\"}', 'upc' => '077775724820', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits [Capital] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-capital-cd/664613.p?id=82108&skuId=664613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0664\\/0664613_sa.jpg\"}', 'upc' => '077775740325', 'provider' => 'bestbuy'],\n ['name' => \"French Kiss - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/french-kiss-cd/664757.p?id=156546&skuId=664757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=664757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6647\\/664757_sa.jpg\"}', 'upc' => '077775764826', 'provider' => 'bestbuy'],\n ['name' => \"Scottish Tranquility - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scottish-tranquility-cd/665220.p?id=78803&skuId=665220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6652\\/665220_sa.jpg\"}', 'upc' => '016351530929', 'provider' => 'bestbuy'],\n ['name' => \"Method to the Madness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/method-to-the-madness-cd/665355.p?id=87857&skuId=665355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6653\\/665355.jpg\"}', 'upc' => '074644732221', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Eek-A-Mouse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-eek-a-mouse-cd/665417.p?id=81346&skuId=665417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6654\\/665417.jpg\"}', 'upc' => '016351480125', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Hook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-hook-cd/665499.p?id=80880&skuId=665499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0665\\/0665499_sa.jpg\"}', 'upc' => '074643089821', 'provider' => 'bestbuy'],\n ['name' => \"Don't Sweat the Technique - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-sweat-the-technique-cd/665676.p?id=81663&skuId=665676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0665\\/0665676_sa.jpg\"}', 'upc' => '008811059422', 'provider' => 'bestbuy'],\n ['name' => \"Ready for the World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ready-for-the-world-cd/665836.p?id=96141&skuId=665836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6658\\/665836_sa.jpg\"}', 'upc' => '076731116228', 'provider' => 'bestbuy'],\n ['name' => \"Wanted Dead or Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wanted-dead-or-alive-cd/665890.p?id=76026&skuId=665890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0665\\/0665890_sa.jpg\"}', 'upc' => '074643271721', 'provider' => 'bestbuy'],\n ['name' => \"Phenobarb Bambalam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phenobarb-bambalam-cd/665934.p?id=78537&skuId=665934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6659\\/665934.jpg\"}', 'upc' => '016581718920', 'provider' => 'bestbuy'],\n ['name' => \"Hearts of Space: Universe Sampler 92 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hearts-of-space-universe-sampler-92-cd-various/665943.p?id=179523&skuId=665943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=665943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6659\\/665943.JPG\"}', 'upc' => '025041120128', 'provider' => 'bestbuy'],\n ['name' => \"Wings of a Dove - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wings-of-a-dove-cd/666265.p?id=79448&skuId=666265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0666\\/0666265_sa.jpg\"}', 'upc' => '016351439727', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Ladysmith Black Mambazo [Shanachie] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-ladysmith-black-mambazo-shanachie-cd/666292.p?id=88577&skuId=666292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6662\\/666292.jpg\"}', 'upc' => '016351439826', 'provider' => 'bestbuy'],\n ['name' => \"Pearl of Africa Reborn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pearl-of-africa-reborn-cd/666354.p?id=97813&skuId=666354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0666\\/0666354_sa.jpg\"}', 'upc' => '016351650825', 'provider' => 'bestbuy'],\n ['name' => \"Lawrence of Arabia [Silva] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lawrence-of-arabia-silva-cd-original-soundtrack/666372.p?id=88821&skuId=666372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0666\\/0666372_sa.jpg\"}', 'upc' => '738572101022', 'provider' => 'bestbuy'],\n ['name' => \"Naturally - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naturally-cd/666407.p?id=84268&skuId=666407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6664\\/666407_sa.jpg\"}', 'upc' => '016351441423', 'provider' => 'bestbuy'],\n ['name' => \"Early Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/early-classics-cd/666470.p?id=94661&skuId=666470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6664\\/666470_sa.jpg\"}', 'upc' => '016351797827', 'provider' => 'bestbuy'],\n ['name' => \"Bottleneck Guitar Trendsetters of the 1930s - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bottleneck-guitar-trendsetters-of-the-1930s-cd/666988.p?id=103749&skuId=666988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=666988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6669\\/666988_sa.jpg\"}', 'upc' => '016351014924', 'provider' => 'bestbuy'],\n ['name' => \"Please Warm My Weiner: Old Time Hokum Blues - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/please-warm-my-weiner-old-time-hokum-blues-cd-various/667068.p?id=95068&skuId=667068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=667068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0667\\/0667068_sa.jpg\"}', 'upc' => '016351014320', 'provider' => 'bestbuy'],\n ['name' => \"Amen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amen-cd/667282.p?id=87710&skuId=667282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=667282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6672\\/667282.jpg\"}', 'upc' => '016253991026', 'provider' => 'bestbuy'],\n ['name' => \"Soul Eyes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-eyes-cd/667308.p?id=66194&skuId=667308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=667308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6673\\/667308.jpg\"}', 'upc' => '063757704720', 'provider' => 'bestbuy'],\n ['name' => \"Mardi Gras - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mardi-gras-cd/667656.p?id=244602&skuId=667656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=667656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6676\\/667656_sa.jpg\"}', 'upc' => '025218451826', 'provider' => 'bestbuy'],\n ['name' => \"Doo-Bop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doo-bop-cd/667941.p?id=65534&skuId=667941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=667941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0667\\/0667941_sa.jpg\"}', 'upc' => '075992693820', 'provider' => 'bestbuy'],\n ['name' => \"Disco Inferno - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disco-inferno-cd/668138.p?id=102144&skuId=668138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0668\\/0668138_sa.jpg\"}', 'upc' => '075678223723', 'provider' => 'bestbuy'],\n ['name' => \"Come a Little Bit Closer: The Best of Jay &... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-a-little-bit-closer-the-best-of-jay-cd/668209.p?id=2389713&skuId=668209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0668\\/0668209_sa.jpg\"}', 'upc' => '077779344826', 'provider' => 'bestbuy'],\n ['name' => \"Voice of the Sparrow: The Very Best of Édith... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voice-of-the-sparrow-the-very-best-of-edith-cd/668272.p?id=94896&skuId=668272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6682\\/668272_sa.jpg\"}', 'upc' => '077779663224', 'provider' => 'bestbuy'],\n ['name' => \"The Falcon and the Snowman - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-falcon-and-the-snowman-cd-original-soundtrack/668316.p?id=81932&skuId=668316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6683\\/668316.jpg\"}', 'upc' => '077774841122', 'provider' => 'bestbuy'],\n ['name' => \"Walk Don't Run : The Best of the Ventures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walk-dont-run--the-best-of-the-ventures-cd/668423.p?id=103097&skuId=668423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6684\\/668423.jpg\"}', 'upc' => '077779345120', 'provider' => 'bestbuy'],\n ['name' => \"Images and Words - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/images-and-words-cd/668557.p?id=80953&skuId=668557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0668\\/0668557_sa.jpg\"}', 'upc' => '075679214829', 'provider' => 'bestbuy'],\n ['name' => \"Firefall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firefall-cd/668575.p?id=82247&skuId=668575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6685\\/668575.jpg\"}', 'upc' => '081227037925', 'provider' => 'bestbuy'],\n ['name' => \"The Queen Alone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-queen-alone-cd/668637.p?id=101712&skuId=668637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=668637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6686\\/668637.jpg\"}', 'upc' => '081227101527', 'provider' => 'bestbuy'],\n ['name' => \"Nubian M.O.B. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nubian-m-o-b-cd/669084.p?id=93555&skuId=669084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=669084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0669\\/0669084_sa.jpg\"}', 'upc' => '075992689625', 'provider' => 'bestbuy'],\n ['name' => \"Ruff Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ruff-life-cd/669280.p?id=76088&skuId=669280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=669280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6692\\/669280.jpg\"}', 'upc' => '733686130029', 'provider' => 'bestbuy'],\n ['name' => \"The Hunger [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hunger-original-soundtrack-cd-original-soundtrack/669752.p?id=1365895&skuId=669752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=669752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0669\\/0669752_sa.jpg\"}', 'upc' => '030206726121', 'provider' => 'bestbuy'],\n ['name' => \"Blue Velvet [Original Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-velvet-original-score-cd-original-soundtrack/670401.p?id=1366578&skuId=670401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=670401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6704\\/670401.jpg\"}', 'upc' => '030206727722', 'provider' => 'bestbuy'],\n ['name' => \"Mad Hatter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-hatter-cd/670447.p?id=75483&skuId=670447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=670447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0670\\/0670447_sa.jpg\"}', 'upc' => '074645285320', 'provider' => 'bestbuy'],\n ['name' => \"Committed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/committed-cd/670624.p?id=101610&skuId=670624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=670624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6706\\/670624.jpg\"}', 'upc' => '731451027925', 'provider' => 'bestbuy'],\n ['name' => \"20 More Explosive Fantastic Rockin' Mega... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-more-explosive-fantastic-rockin-mega-various-cd/671160.p?id=102568&skuId=671160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=671160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0671\\/0671160_sa.jpg\"}', 'upc' => '727321634225', 'provider' => 'bestbuy'],\n ['name' => \"Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/671874.p?id=83669&skuId=671874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=671874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6718\\/671874_sa.jpg\"}', 'upc' => '075596139021', 'provider' => 'bestbuy'],\n ['name' => \"Fire Up+ - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-up-cd/672187.p?id=97940&skuId=672187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6721\\/672187_sa.jpg\"}', 'upc' => '025218771122', 'provider' => 'bestbuy'],\n ['name' => \"Conversations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conversations-cd/672196.p?id=71193&skuId=672196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6721\\/672196.jpg\"}', 'upc' => '025218913027', 'provider' => 'bestbuy'],\n ['name' => \"Dry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dry-cd/672267.p?id=95017&skuId=672267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6722\\/672267.jpg\"}', 'upc' => '016255500127', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-live-cd/672285.p?id=69822&skuId=672285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0672\\/0672285_sa.jpg\"}', 'upc' => '025218094825', 'provider' => 'bestbuy'],\n ['name' => \"The Blues Don't Change - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blues-dont-change-cd/672301.p?id=87898&skuId=672301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6723\\/672301_sa.jpg\"}', 'upc' => '025218857024', 'provider' => 'bestbuy'],\n ['name' => \"The Staple Swingers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-staple-swingers-cd/672329.p?id=100077&skuId=672329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6723\\/672329_sa.jpg\"}', 'upc' => '025218857321', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Billie Holiday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-billie-holiday-cd/672347.p?id=65042&skuId=672347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6723\\/672347.jpg\"}', 'upc' => '013431408123', 'provider' => 'bestbuy'],\n ['name' => \"Paper Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paper-moon-cd/672365.p?id=3335018&skuId=672365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6723\\/672365.jpg\"}', 'upc' => '013431417828', 'provider' => 'bestbuy'],\n ['name' => \"It's My Way! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-my-way-cd/672392.p?id=97732&skuId=672392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0672\\/0672392_sa.jpg\"}', 'upc' => '015707914222', 'provider' => 'bestbuy'],\n ['name' => \"My Time After Awhile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-time-after-awhile-cd/672436.p?id=84484&skuId=672436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6724\\/672436.jpg\"}', 'upc' => '015707004121', 'provider' => 'bestbuy'],\n ['name' => \"Taj's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tajs-blues-cd/672695.p?id=90202&skuId=672695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0672\\/0672695_sa.jpg\"}', 'upc' => '074645246529', 'provider' => 'bestbuy'],\n ['name' => \"Father of the Delta Blues: The Complete 1965... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/father-of-the-delta-blues-the-complete-1965-cd/672891.p?id=85816&skuId=672891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6728\\/672891_sa.jpg\"}', 'upc' => '074644886726', 'provider' => 'bestbuy'],\n ['name' => \"Slanted and Enchanted - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slanted-and-enchanted-cd/672908.p?id=2304920&skuId=672908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6729\\/672908_sa.jpg\"}', 'upc' => '744861003823', 'provider' => 'bestbuy'],\n ['name' => \"Stull [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stull-ep-cd/672980.p?id=102839&skuId=672980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=672980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0672\\/0672980_sa.jpg\"}', 'upc' => '036172078622', 'provider' => 'bestbuy'],\n ['name' => \"From the Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-soul-cd/673300.p?id=68629&skuId=673300&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=673300', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0673\\/0673300_sa.jpg\"}', 'upc' => '077779863624', 'provider' => 'bestbuy'],\n ['name' => \"Branch to Branch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/branch-to-branch-cd/673435.p?id=96204&skuId=673435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=673435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0673\\/0673435_sa.jpg\"}', 'upc' => '075679042521', 'provider' => 'bestbuy'],\n ['name' => \"Unlimited! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unlimited-cd/673453.p?id=97161&skuId=673453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=673453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6734\\/673453.jpg\"}', 'upc' => '075992549622', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Professional Installer Series TurboKit\", 'description_short' => \"From our expanded online assortment; compatible with select Chevrolet, Geo and Suzuki vehicles; allows installation of an aftermarket radio; provision for a 1/4&quot; or 1/2&quot; DIN equalizer; mounts precisely to OEM radio mounting positions\", 'description_long' => \"From our expanded online assortment; compatible with select Chevrolet, Geo and Suzuki vehicles; allows installation of an aftermarket radio; provision for a 1/4&quot; or 1/2&quot; DIN equalizer; mounts precisely to OEM radio mounting positions\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-professional-installer-series-turbokit/673890.p?id=1118842643714&skuId=673890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=673890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9852\\/9852688_sa.jpg\"}', 'upc' => '086429003792', 'provider' => 'bestbuy'],\n ['name' => \"Because of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/because-of-you-cd/674274.p?id=95942&skuId=674274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674274_sa.jpg\"}', 'upc' => '090368006325', 'provider' => 'bestbuy'],\n ['name' => \"Havana Cafe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/havana-cafe-cd/674283.p?id=65435&skuId=674283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674283_sa.jpg\"}', 'upc' => '090368006028', 'provider' => 'bestbuy'],\n ['name' => \"New York Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-reunion-cd/674292.p?id=1365938&skuId=674292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674292_sa.jpg\"}', 'upc' => '090368005120', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Village Gate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-village-gate-cd/674309.p?id=71360&skuId=674309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6743\\/674309.jpg\"}', 'upc' => '090368004925', 'provider' => 'bestbuy'],\n ['name' => \"Real Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/real-life-cd/674318.p?id=72208&skuId=674318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6743\\/674318.jpg\"}', 'upc' => '090368004727', 'provider' => 'bestbuy'],\n ['name' => \"My Blue Heaven - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-blue-heaven-cd/674327.p?id=70069&skuId=674327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674327_sa.jpg\"}', 'upc' => '090368003829', 'provider' => 'bestbuy'],\n ['name' => \"A Distortion of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-distortion-of-love-cd/674354.p?id=63949&skuId=674354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674354_sa.jpg\"}', 'upc' => '731451223525', 'provider' => 'bestbuy'],\n ['name' => \"Secret Rooms - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-rooms-cd/674746.p?id=2291994&skuId=674746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6747\\/674746.jpg\"}', 'upc' => '025041101523', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Vic Damone [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-vic-damone-curb-cd/674906.p?id=79660&skuId=674906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0674\\/0674906_sa.jpg\"}', 'upc' => '715187747623', 'provider' => 'bestbuy'],\n ['name' => \"Her Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/her-greatest-hits-cd/674942.p?id=76835&skuId=674942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=674942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6749\\/674942_sa.jpg\"}', 'upc' => '008811060626', 'provider' => 'bestbuy'],\n ['name' => \"Turn of the Decade 1989-90: Ben & Jerry's... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turn-of-the-decade-1989-90-ben-jerrys-cd-various/675228.p?id=82577&skuId=675228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=675228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0675\\/0675228_sa.jpg\"}', 'upc' => '033651003625', 'provider' => 'bestbuy'],\n ['name' => \"Psalm 69: The Way to Succeed & The Way to... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/psalm-69-the-way-to-succeed-the-way-to-cd/675601.p?id=2389689&skuId=675601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=675601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6756\\/675601_sa.jpg\"}', 'upc' => '075992672726', 'provider' => 'bestbuy'],\n ['name' => \"Dirty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-cd/675870.p?id=99450&skuId=675870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=675870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6758\\/675870_sa.jpg\"}', 'upc' => '720642448526', 'provider' => 'bestbuy'],\n ['name' => \"Shorty the Pimp [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shorty-the-pimp-pa-cd/676076.p?id=101994&skuId=676076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0676\\/0676076_sa.jpg\"}', 'upc' => '012414146724', 'provider' => 'bestbuy'],\n ['name' => \"The New Zapp IV U - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-zapp-iv-u-cd/676290.p?id=105186&skuId=676290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0676\\/0676290_sa.jpg\"}', 'upc' => '075992532723', 'provider' => 'bestbuy'],\n ['name' => \"Lowrider Soundtrack Vol. 1 - CD - Various Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowrider-soundtrack-vol-1-cd-various-remastered/676487.p?id=319204&skuId=676487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6764\\/676487_sa.jpg\"}', 'upc' => '720657101027', 'provider' => 'bestbuy'],\n ['name' => \"Lowrider Soundtrack 2 - CD - Various Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowrider-soundtrack-2-cd-various-remastered/676539.p?id=2277003&skuId=676539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6765\\/676539_sa.jpg\"}', 'upc' => '720657102024', 'provider' => 'bestbuy'],\n ['name' => \"Lowrider Magazine Soundtrack Vol. 3 - CD - Various Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lowrider-magazine-soundtrack-vol-3-cd-various-remastered/676557.p?id=2294211&skuId=676557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6765\\/676557_sa.jpg\"}', 'upc' => '720657103021', 'provider' => 'bestbuy'],\n ['name' => \"Barcelona - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barcelona-cd/676593.p?id=91452&skuId=676593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6765\\/676593_sa.jpg\"}', 'upc' => '720616136626', 'provider' => 'bestbuy'],\n ['name' => \"Partners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/partners-cd/676717.p?id=86985&skuId=676717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6767\\/676717_sa.jpg\"}', 'upc' => '075992682220', 'provider' => 'bestbuy'],\n ['name' => \"Isn't It Romantic? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isnt-it-romantic-cd/676806.p?id=64754&skuId=676806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0676\\/0676806_sa.jpg\"}', 'upc' => '013431425229', 'provider' => 'bestbuy'],\n ['name' => \"What You See is What You Get - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-you-see-is-what-you-get-cd/676815.p?id=89271&skuId=676815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6768\\/676815.jpg\"}', 'upc' => '014551480822', 'provider' => 'bestbuy'],\n ['name' => \"Til Their Eyes Shine (The Lullaby Album)... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/til-their-eyes-shine-the-lullaby-album-various-cd/676995.p?id=89907&skuId=676995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=676995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6769\\/676995.jpg\"}', 'upc' => '074645241227', 'provider' => 'bestbuy'],\n ['name' => \"The Last Emperor [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-emperor-original-soundtrack-cd-original-soundtrack/677333.p?id=88701&skuId=677333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=677333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6773\\/677333.jpg\"}', 'upc' => '077778602927', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Wiring Harness for Most 1987 and Later Toyota Scion Vehicles - Multicolored\", 'description_short' => \"Compatible with most 1987 and later Toyota Scion vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'description_long' => \"Compatible with most 1987 and later Toyota Scion vehicles; connects an aftermarket radio to a vehicle&#039;s harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-wiring-harness-for-most-1987-and-later-toyota-scion-vehicles-multicolored/677379.p?id=1142292397025&skuId=677379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=677379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6773\\/677379_rc.jpg\"}', 'upc' => '086429002658', 'provider' => 'bestbuy'],\n ['name' => \"Outward Bound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outward-bound-cd/677547.p?id=2390257&skuId=677547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=677547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0677\\/0677547_sa.jpg\"}', 'upc' => '614223103228', 'provider' => 'bestbuy'],\n ['name' => \"Gig - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gig-cd/677752.p?id=77823&skuId=677752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=677752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6777\\/677752.jpg\"}', 'upc' => '088561106928', 'provider' => 'bestbuy'],\n ['name' => \"Ramblin' Jeffrey Lee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ramblin-jeffrey-lee-cd/677912.p?id=105776&skuId=677912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=677912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0677\\/0677912_sa.jpg\"}', 'upc' => '021075112924', 'provider' => 'bestbuy'],\n ['name' => \"Kirya - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kirya-cd/678127.p?id=85084&skuId=678127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678127_sa.jpg\"}', 'upc' => '016351644329', 'provider' => 'bestbuy'],\n ['name' => \"Stop and Listen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stop-and-listen-cd/678154.p?id=91900&skuId=678154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678154_sa.jpg\"}', 'upc' => '016351200624', 'provider' => 'bestbuy'],\n ['name' => \"Revolutionary Dream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revolutionary-dream-cd/678163.p?id=92353&skuId=678163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678163_sa.jpg\"}', 'upc' => '016351441621', 'provider' => 'bestbuy'],\n ['name' => \"After the Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-the-dance-cd/678181.p?id=86719&skuId=678181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678181_sa.jpg\"}', 'upc' => '016351990624', 'provider' => 'bestbuy'],\n ['name' => \"Images - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/images-cd/678350.p?id=70505&skuId=678350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6783\\/678350_sa.jpg\"}', 'upc' => '077779949229', 'provider' => 'bestbuy'],\n ['name' => \"Strictly the Best, Vol. 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strictly-the-best-vol-5-cd-various/678467.p?id=113690&skuId=678467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6784\\/678467_sa.jpg\"}', 'upc' => '054645122726', 'provider' => 'bestbuy'],\n ['name' => \"House of Pain [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-pain-pa-cd/678680.p?id=85807&skuId=678680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6786\\/678680.jpg\"}', 'upc' => '016998105627', 'provider' => 'bestbuy'],\n ['name' => \"What's the 411? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whats-the-411-cd/678706.p?id=75027&skuId=678706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678706_sa.jpg\"}', 'upc' => '008811068127', 'provider' => 'bestbuy'],\n ['name' => \"Buffy the Vampire Slayer [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buffy-the-vampire-slayer-original-soundtrack-cd-original-soundtrack/678751.p?id=76285&skuId=678751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=678751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0678\\/0678751_sa.jpg\"}', 'upc' => '074645285429', 'provider' => 'bestbuy'],\n ['name' => \"Black Byrd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-byrd-cd/679242.p?id=2443724&skuId=679242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=679242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0679\\/0679242_sa.jpg\"}', 'upc' => '077778446620', 'provider' => 'bestbuy'],\n ['name' => \"Looking Glass: A Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-glass-a-collection-cd/679304.p?id=95642&skuId=679304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=679304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6793\\/679304.jpg\"}', 'upc' => '074644895926', 'provider' => 'bestbuy'],\n ['name' => \"So Alone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-alone-cd/679698.p?id=101820&skuId=679698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=679698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6796\\/679698_sa.jpg\"}', 'upc' => '075992698221', 'provider' => 'bestbuy'],\n ['name' => \"MTV Unplugged - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/mtv-unplugged-cd/680597.p?id=77906&skuId=680597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=680597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0680\\/0680597_sa.jpg\"}', 'upc' => '093624502425', 'provider' => 'bestbuy'],\n ['name' => \"Gordon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gordon-cd/680702.p?id=73946&skuId=680702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=680702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0680\\/0680702_sa.jpg\"}', 'upc' => '075992695626', 'provider' => 'bestbuy'],\n ['name' => \"Ricochet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricochet-cd/680748.p?id=91672&skuId=680748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=680748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6807\\/680748.jpg\"}', 'upc' => '075992699327', 'provider' => 'bestbuy'],\n ['name' => \"Real Live Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/real-live-sound-cd/680944.p?id=72590&skuId=680944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=680944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6809\\/680944_sa.jpg\"}', 'upc' => '018777252928', 'provider' => 'bestbuy'],\n ['name' => \"Short Stories [Universal] [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/short-stories-universal-digdownload-cd/681257.p?id=87225&skuId=681257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=681257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6812\\/681257.jpg\"}', 'upc' => '042280002725', 'provider' => 'bestbuy'],\n ['name' => \"Manhattan Mambo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manhattan-mambo-cd/682461.p?id=70517&skuId=682461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=682461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6824\\/682461_sa.jpg\"}', 'upc' => '089408332227', 'provider' => 'bestbuy'],\n ['name' => \"Haunted Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/haunted-heart-cd/682782.p?id=67067&skuId=682782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=682782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6827\\/682782_sa.jpg\"}', 'upc' => '731451307829', 'provider' => 'bestbuy'],\n ['name' => \"An Evening with Chick Corea & Herbie Hancock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-evening-with-chick-corea-herbie-hancock-cd/682817.p?id=146242&skuId=682817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=682817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0682\\/0682817_sa.jpg\"}', 'upc' => '042283568020', 'provider' => 'bestbuy'],\n ['name' => \"Let It Ride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-it-ride-cd/684584.p?id=290154&skuId=684584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=684584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0684\\/0684584_sa.jpg\"}', 'upc' => '747014400128', 'provider' => 'bestbuy'],\n ['name' => \"Three Dimensional - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-dimensional-cd/684762.p?id=64607&skuId=684762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=684762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6847\\/684762_sa.jpg\"}', 'upc' => '013431452027', 'provider' => 'bestbuy'],\n ['name' => \"Embrace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/embrace-cd/685342.p?id=81504&skuId=685342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=685342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0685\\/0685342_sa.jpg\"}', 'upc' => '718750730022', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-vol-2-cd/686494.p?id=94215&skuId=686494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=686494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0686\\/0686494_sa.jpg\"}', 'upc' => '715187756823', 'provider' => 'bestbuy'],\n ['name' => \"Songs The Lord Taught Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-the-lord-taught-us-cd/686653.p?id=79088&skuId=686653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=686653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0686\\/0686653_sa.jpg\"}', 'upc' => '044797000720', 'provider' => 'bestbuy'],\n ['name' => \"Four Sider - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-sider-cd/686813.p?id=91430&skuId=686813&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=686813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0686\\/0686813_sa.jpg\"}', 'upc' => '075021601222', 'provider' => 'bestbuy'],\n ['name' => \"Dream a Little Dream - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-a-little-dream-cd-original-soundtrack/687108.p?id=80960&skuId=687108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6871\\/687108_sa.jpg\"}', 'upc' => '014166012524', 'provider' => 'bestbuy'],\n ['name' => \"Untouchables [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/untouchables-original-motion-picture-cd-original-soundtrack/687297.p?id=102818&skuId=687297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0687\\/0687297_sa.jpg\"}', 'upc' => '075021390928', 'provider' => 'bestbuy'],\n ['name' => \"Storm at Sunup - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storm-at-sunup-cd/687395.p?id=103007&skuId=687395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0687\\/0687395_sa.jpg\"}', 'upc' => '075021453326', 'provider' => 'bestbuy'],\n ['name' => \"In the Eye of the Storm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-eye-of-the-storm-cd/687475.p?id=85465&skuId=687475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0687\\/0687475_sa.jpg\"}', 'upc' => '075021500426', 'provider' => 'bestbuy'],\n ['name' => \"Journey to the Centre of the Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/journey-to-the-centre-of-the-earth-cd/687938.p?id=103337&skuId=687938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6879\\/687938.jpg\"}', 'upc' => '075021315624', 'provider' => 'bestbuy'],\n ['name' => \"The Tubes [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tubes-pa-cd/687965.p?id=102427&skuId=687965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=687965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0687\\/0687965_sa.jpg\"}', 'upc' => '075021316126', 'provider' => 'bestbuy'],\n ['name' => \"Body Heat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/body-heat-cd/688027.p?id=68070&skuId=688027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=688027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0688\\/0688027_sa.jpg\"}', 'upc' => '075021319127', 'provider' => 'bestbuy'],\n ['name' => \"Myths and Legends of King Arthur and the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/myths-and-legends-of-king-arthur-and-the-cd/688134.p?id=103338&skuId=688134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=688134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6881\\/688134.jpg\"}', 'upc' => '075021323025', 'provider' => 'bestbuy'],\n ['name' => \"A Place in the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-place-in-the-sun-cd/688143.p?id=94256&skuId=688143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=688143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6881\\/688143_sa.jpg\"}', 'upc' => '075021323629', 'provider' => 'bestbuy'],\n ['name' => \"Caliente! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caliente-cd/688189.p?id=63950&skuId=688189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=688189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0688\\/0688189_sa.jpg\"}', 'upc' => '075021324725', 'provider' => 'bestbuy'],\n ['name' => \"Sounds...And Stuff Like That!! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sounds-and-stuff-like-that-cd/688205.p?id=68075&skuId=688205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=688205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0688\\/0688205_sa.jpg\"}', 'upc' => '075021324923', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Drive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-drive-cd/689099.p?id=88153&skuId=689099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6890\\/689099.jpg\"}', 'upc' => '014551477525', 'provider' => 'bestbuy'],\n ['name' => \"The Big Break - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-break-cd/689115.p?id=89353&skuId=689115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689115_sa.jpg\"}', 'upc' => '014551477624', 'provider' => 'bestbuy'],\n ['name' => \"Two-Fisted Mama! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-fisted-mama-cd/689133.p?id=103717&skuId=689133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6891\\/689133.jpg\"}', 'upc' => '014551477723', 'provider' => 'bestbuy'],\n ['name' => \"Fanning the Flames - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fanning-the-flames-cd/689151.p?id=81472&skuId=689151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6891\\/689151.jpg\"}', 'upc' => '014551477822', 'provider' => 'bestbuy'],\n ['name' => \"Standing My Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standing-my-ground-cd/689179.p?id=75897&skuId=689179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689179_sa.jpg\"}', 'upc' => '014551477921', 'provider' => 'bestbuy'],\n ['name' => \"Let's Buzz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-buzz-cd/689213.p?id=94304&skuId=689213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689213_sa.jpg\"}', 'upc' => '014551478225', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Legend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-legend-cd/689231.p?id=92939&skuId=689231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6892\\/689231_sa.jpg\"}', 'upc' => '014551478324', 'provider' => 'bestbuy'],\n ['name' => \"Return of the Thin Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-of-the-thin-man-cd/689259.p?id=103662&skuId=689259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6892\\/689259.jpg\"}', 'upc' => '014551478522', 'provider' => 'bestbuy'],\n ['name' => \"Blowin' Like Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blowin-like-hell-cd/689302.p?id=77944&skuId=689302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689302_sa.jpg\"}', 'upc' => '014551478829', 'provider' => 'bestbuy'],\n ['name' => \"Tore Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tore-up-cd/689357.p?id=76127&skuId=689357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6893\\/689357.jpg\"}', 'upc' => '014551479222', 'provider' => 'bestbuy'],\n ['name' => \"Street Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-party-cd/689375.p?id=91375&skuId=689375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6893\\/689375.jpg\"}', 'upc' => '014551479321', 'provider' => 'bestbuy'],\n ['name' => \"Walking on Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-on-fire-cd/689400.p?id=92937&skuId=689400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6894\\/689400_sa.jpg\"}', 'upc' => '014551479529', 'provider' => 'bestbuy'],\n ['name' => \"Lost in the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-in-the-blues-cd/689437.p?id=97580&skuId=689437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689437_sa.jpg\"}', 'upc' => '014551479727', 'provider' => 'bestbuy'],\n ['name' => \"Live in Chicago with Billy Boy Arnold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-chicago-with-billy-boy-arnold-cd/689534.p?id=87353&skuId=689534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6895\\/689534.jpg\"}', 'upc' => '014551471721', 'provider' => 'bestbuy'],\n ['name' => \"From the Heart of a Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-heart-of-a-woman-cd/689570.p?id=101263&skuId=689570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6895\\/689570.jpg\"}', 'upc' => '014551472421', 'provider' => 'bestbuy'],\n ['name' => \"New Johnny Otis Show - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-johnny-otis-show-cd/689605.p?id=94158&skuId=689605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689605_sa.jpg\"}', 'upc' => '014551472629', 'provider' => 'bestbuy'],\n ['name' => \"Genuine Houserocking Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/genuine-houserocking-music-cd/689623.p?id=2390416&skuId=689623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6896\\/689623.jpg\"}', 'upc' => '014551472728', 'provider' => 'bestbuy'],\n ['name' => \"Playing for Keeps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playing-for-keeps-cd/689650.p?id=74647&skuId=689650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6896\\/689650_sa.jpg\"}', 'upc' => '014551473220', 'provider' => 'bestbuy'],\n ['name' => \"Nightflight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nightflight-cd/689669.p?id=96862&skuId=689669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6896\\/689669.jpg\"}', 'upc' => '014551473626', 'provider' => 'bestbuy'],\n ['name' => \"Bar Room Preacher - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bar-room-preacher-cd/689696.p?id=87176&skuId=689696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6896\\/689696_sa.jpg\"}', 'upc' => '014551474425', 'provider' => 'bestbuy'],\n ['name' => \"Pressure Cooker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pressure-cooker-cd/689703.p?id=75895&skuId=689703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689703_sa.jpg\"}', 'upc' => '014551474524', 'provider' => 'bestbuy'],\n ['name' => \"Roughhousin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roughhousin-cd/689712.p?id=3331232&skuId=689712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6897\\/689712.jpg\"}', 'upc' => '014551474920', 'provider' => 'bestbuy'],\n ['name' => \"Wound Up Tight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wound-up-tight-cd/689721.p?id=76039&skuId=689721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6897\\/689721.jpg\"}', 'upc' => '014551475125', 'provider' => 'bestbuy'],\n ['name' => \"I'm in the Wrong Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-in-the-wrong-business-cd/689749.p?id=96266&skuId=689749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6897\\/689749_sa.jpg\"}', 'upc' => '014551475729', 'provider' => 'bestbuy'],\n ['name' => \"The Siegel-Schwall Reunion Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-siegel-schwall-reunion-concert-cd/689767.p?id=98710&skuId=689767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6897\\/689767_sa.jpg\"}', 'upc' => '014551476023', 'provider' => 'bestbuy'],\n ['name' => \"Years Since Yesterday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/years-since-yesterday-cd/689785.p?id=94306&skuId=689785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689785_sa.jpg\"}', 'upc' => '014551476221', 'provider' => 'bestbuy'],\n ['name' => \"Generic Blues Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/generic-blues-album-cd/689801.p?id=103032&skuId=689801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6898\\/689801_sa.jpg\"}', 'upc' => '014551476320', 'provider' => 'bestbuy'],\n ['name' => \"Georgia Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/georgia-blue-cd/689829.p?id=81473&skuId=689829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689829_sa.jpg\"}', 'upc' => '014551476528', 'provider' => 'bestbuy'],\n ['name' => \"Harp & Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harp-soul-cd/689847.p?id=89075&skuId=689847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0689\\/0689847_sa.jpg\"}', 'upc' => '014551476825', 'provider' => 'bestbuy'],\n ['name' => \"That Woman Is Poison! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-woman-is-poison-cd/689865.p?id=101676&skuId=689865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6898\\/689865.jpg\"}', 'upc' => '014551476924', 'provider' => 'bestbuy'],\n ['name' => \"One More for the Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-for-the-road-cd/689909.p?id=75887&skuId=689909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6899\\/689909.jpg\"}', 'upc' => '014551477129', 'provider' => 'bestbuy'],\n ['name' => \"Devil Child - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-child-cd/689936.p?id=92936&skuId=689936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=689936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6899\\/689936.jpg\"}', 'upc' => '014551477426', 'provider' => 'bestbuy'],\n ['name' => \"Hound Dog Taylor & the Houserockers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hound-dog-taylor-the-houserockers-cd/690041.p?id=101228&skuId=690041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690041_sa.jpg\"}', 'upc' => '014551470120', 'provider' => 'bestbuy'],\n ['name' => \"Big Walter Horton with Carey Bell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-walter-horton-with-carey-bell-cd/690069.p?id=85720&skuId=690069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690069_sa.jpg\"}', 'upc' => '014551470229', 'provider' => 'bestbuy'],\n ['name' => \"Natural Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/natural-boogie-cd/690087.p?id=101229&skuId=690087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6900\\/690087_sa.jpg\"}', 'upc' => '014551470427', 'provider' => 'bestbuy'],\n ['name' => \"Somebody Loan Me a Dime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somebody-loan-me-a-dime-cd/690103.p?id=96863&skuId=690103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690103_sa.jpg\"}', 'upc' => '014551470526', 'provider' => 'bestbuy'],\n ['name' => \"Beware of the Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beware-of-the-dog-cd/690130.p?id=101226&skuId=690130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6901\\/690130_sa.jpg\"}', 'upc' => '014551470724', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Son - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-son-cd/690158.p?id=98188&skuId=690158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6901\\/690158.jpg\"}', 'upc' => '014551470823', 'provider' => 'bestbuy'],\n ['name' => \"I Hear Some Blues Downstairs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-hear-some-blues-downstairs-cd/690176.p?id=96861&skuId=690176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6901\\/690176.jpg\"}', 'upc' => '014551471028', 'provider' => 'bestbuy'],\n ['name' => \"The Earthshaker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-earthshaker-cd/690194.p?id=101270&skuId=690194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6901\\/690194_sa.jpg\"}', 'upc' => '014551471127', 'provider' => 'bestbuy'],\n ['name' => \"The Mozart Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mozart-collection-cd/690229.p?id=2068198&skuId=690229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690229_sa.jpg\"}', 'upc' => '012805058629', 'provider' => 'bestbuy'],\n ['name' => \"Glenn Medeiros [1987] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glenn-medeiros-1987-cd/690434.p?id=2692341&skuId=690434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690434_sa.jpg\"}', 'upc' => '051617331391', 'provider' => 'bestbuy'],\n ['name' => \"Facets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/facets-cd/690461.p?id=70771&skuId=690461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6904\\/690461_sa.jpg\"}', 'upc' => '051617331926', 'provider' => 'bestbuy'],\n ['name' => \"Nothing's Gonna Change My Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothings-gonna-change-my-love-cd/690504.p?id=91308&skuId=690504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690504_sa.jpg\"}', 'upc' => '051617440123', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Stylistics [Amherst] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-stylistics-amherst-cd/690586.p?id=100673&skuId=690586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690586_sa.jpg\"}', 'upc' => '051617074328', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-classics-cd/690595.p?id=100668&skuId=690595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690595_sa.jpg\"}', 'upc' => '051617074427', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Stylistics, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-stylistics-vol-2-cd/690602.p?id=100674&skuId=690602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6906\\/690602_sa.jpg\"}', 'upc' => '051617074526', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Love Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-love-hits-cd/690611.p?id=100669&skuId=690611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=690611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0690\\/0690611_sa.jpg\"}', 'upc' => '051617074625', 'provider' => 'bestbuy'],\n ['name' => \"Godspell [Original Off-Off-Broadway Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/godspell-original-off-off-broadway-cast-cd-original-cast-recording/691380.p?id=83775&skuId=691380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=691380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6913\\/691380.jpg\"}', 'upc' => '078221830423', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection, Vol. 5: The Suites, New... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-vol-5-the-suites-new-cd/692003.p?id=65987&skuId=692003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=692003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6920\\/692003.jpg\"}', 'upc' => '075679104526', 'provider' => 'bestbuy'],\n ['name' => \"4 Way Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-way-street-cd/693663.p?id=79270&skuId=693663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=693663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0693\\/0693663_sa.jpg\"}', 'upc' => '075678240829', 'provider' => 'bestbuy'],\n ['name' => \"The Avant-Garde - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-avant-garde-cd/693770.p?id=64936&skuId=693770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=693770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0693\\/0693770_sa.jpg\"}', 'upc' => '075679004123', 'provider' => 'bestbuy'],\n ['name' => \"Back to Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-back-cd/693976.p?id=90506&skuId=693976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=693976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0693\\/0693976_sa.jpg\"}', 'upc' => '075679030726', 'provider' => 'bestbuy'],\n ['name' => \"Two of a Kind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-of-a-kind-cd/694047.p?id=79767&skuId=694047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=694047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6940\\/694047.jpg\"}', 'upc' => '075679048424', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection, Vol. 7: Studio Sessions,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-vol-7-studio-sessions-cd/694332.p?id=65989&skuId=694332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=694332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0694\\/0694332_sa.jpg\"}', 'upc' => '075679123121', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection, Vol. 9: Studio Sessions,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-vol-9-studio-sessions-cd/694378.p?id=65991&skuId=694378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=694378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0694\\/0694378_sa.jpg\"}', 'upc' => '075679123329', 'provider' => 'bestbuy'],\n ['name' => \"The Great Otis Redding Sings Soul Ballads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-otis-redding-sings-soul-ballads-cd/694895.p?id=96237&skuId=694895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=694895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0694\\/0694895_sa.jpg\"}', 'upc' => '075679170620', 'provider' => 'bestbuy'],\n ['name' => \"Complete & Unbelievable: The Otis Redding... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-unbelievable-the-otis-redding-cd/694911.p?id=96236&skuId=694911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=694911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0694\\/0694911_sa.jpg\"}', 'upc' => '075679170729', 'provider' => 'bestbuy'],\n ['name' => \"Parental Advisory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parental-advisory-cd/695144.p?id=76850&skuId=695144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=695144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6951\\/695144_sa.jpg\"}', 'upc' => '075679159328', 'provider' => 'bestbuy'],\n ['name' => \"When the Night Is Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-night-is-over-cd/695901.p?id=89433&skuId=695901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=695901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0695\\/0695901_sa.jpg\"}', 'upc' => '075678221026', 'provider' => 'bestbuy'],\n ['name' => \"Let There Be Harmony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-there-be-harmony-cd/696018.p?id=3173148&skuId=696018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=696018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6960\\/696018.jpg\"}', 'upc' => '075679139429', 'provider' => 'bestbuy'],\n ['name' => \"Puta's Fever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/putas-fever-cd/696679.p?id=90448&skuId=696679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=696679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6966\\/696679.jpg\"}', 'upc' => '077778615729', 'provider' => 'bestbuy'],\n ['name' => \"Down in the Alley: The Best of the Clovers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-in-the-alley-the-best-of-the-clovers-cd/697437.p?id=78096&skuId=697437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=697437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6974\\/697437_sa.jpg\"}', 'upc' => '075678231223', 'provider' => 'bestbuy'],\n ['name' => \"Soul Christmas [Atlantic] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-christmas-atlantic-cd-various/697473.p?id=116058&skuId=697473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=697473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0697\\/0697473_sa.jpg\"}', 'upc' => '075678231629', 'provider' => 'bestbuy'],\n ['name' => \"In the Christmas Spirit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-christmas-spirit-cd/697507.p?id=75529&skuId=697507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=697507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0697\\/0697507_sa.jpg\"}', 'upc' => '075678233821', 'provider' => 'bestbuy'],\n ['name' => \"Lyte as a Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lyte-as-a-rock-cd/697963.p?id=90975&skuId=697963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=697963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0697\\/0697963_sa.jpg\"}', 'upc' => '075679090522', 'provider' => 'bestbuy'],\n ['name' => \"LaVern Sings Bessie Smith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lavern-sings-bessie-smith-cd/698310.p?id=3552587&skuId=698310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0698\\/0698310_sa.jpg\"}', 'upc' => '075679098023', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection, Vol. 1: Studio Sessions,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-vol-1-studio-sessions-cd/698579.p?id=65983&skuId=698579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/6985\\/698579.jpg\"}', 'upc' => '075679104120', 'provider' => 'bestbuy'],\n ['name' => \"Mingus at Antibes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mingus-at-antibes-cd/698613.p?id=2387493&skuId=698613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0698\\/0698613_sa.jpg\"}', 'upc' => '075679053220', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Half Note - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-half-note-cd/698891.p?id=66196&skuId=698891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6988\\/698891_sa.jpg\"}', 'upc' => '075679066626', 'provider' => 'bestbuy'],\n ['name' => \"Oh Yeah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-yeah-cd/698917.p?id=176923&skuId=698917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0698\\/0698917_sa.jpg\"}', 'upc' => '075679066725', 'provider' => 'bestbuy'],\n ['name' => \"Twisted Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twisted-christmas-cd/698953.p?id=96754&skuId=698953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=698953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0698\\/0698953_sa.jpg\"}', 'upc' => '075679067128', 'provider' => 'bestbuy'],\n ['name' => \"Green Onions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/green-onions-cd/699220.p?id=75526&skuId=699220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=699220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0699\\/0699220_sa.jpg\"}', 'upc' => '075678225529', 'provider' => 'bestbuy'],\n ['name' => \"King & Queen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-queen-cd/699248.p?id=96241&skuId=699248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=699248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/6992\\/699248_sa.jpg\"}', 'upc' => '075678225628', 'provider' => 'bestbuy'],\n ['name' => \"The New Tango - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-tango-cd/699417.p?id=64731&skuId=699417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=699417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0699\\/0699417_sa.jpg\"}', 'upc' => '075678182327', 'provider' => 'bestbuy'],\n ['name' => \"Under The Influence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-influence-cd/699578.p?id=94200&skuId=699578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=699578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0699\\/0699578_sa.jpg\"}', 'upc' => '075678186523', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Last Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-last-concert-cd/700021.p?id=69247&skuId=700021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0700\\/0700021_sa.jpg\"}', 'upc' => '075678197628', 'provider' => 'bestbuy'],\n ['name' => \"Voyage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voyage-cd/700183.p?id=92204&skuId=700183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7001\\/700183_sa.jpg\"}', 'upc' => '075678203428', 'provider' => 'bestbuy'],\n ['name' => \"New Age Of Christmas (Mod) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-age-of-christmas-mod-cd/700236.p?id=3205643&skuId=700236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '075678205422', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/700307.p?id=105285&skuId=700307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7003\\/700307.jpg\"}', 'upc' => '075678209420', 'provider' => 'bestbuy'],\n ['name' => \"Goodfellas [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodfellas-original-motion-picture-soundtrack-cd-original-soundtrack/700441.p?id=83867&skuId=700441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0700\\/0700441_sa.jpg\"}', 'upc' => '075678215223', 'provider' => 'bestbuy'],\n ['name' => \"African Exchange Student - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/african-exchange-student-cd/700487.p?id=66556&skuId=700487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0700\\/0700487_sa.jpg\"}', 'upc' => '075678215629', 'provider' => 'bestbuy'],\n ['name' => \"Sentimental Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sentimental-journey-cd/700780.p?id=67136&skuId=700780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0700\\/0700780_sa.jpg\"}', 'upc' => '075678164422', 'provider' => 'bestbuy'],\n ['name' => \"Upside Downside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/upside-downside-cd/700815.p?id=71142&skuId=700815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0700\\/0700815_sa.jpg\"}', 'upc' => '075678165627', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic Jazz: New Orleans - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-jazz-new-orleans-cd-various/700986.p?id=63834&skuId=700986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=700986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7009\\/700986_sa.jpg\"}', 'upc' => '075678170027', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic Jazz: Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-jazz-piano-cd/701128.p?id=63838&skuId=701128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7011\\/701128.jpg\"}', 'upc' => '075678170720', 'provider' => 'bestbuy'],\n ['name' => \"The Great Ray Charles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-ray-charles-cd/701271.p?id=77262&skuId=701271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0701\\/0701271_sa.jpg\"}', 'upc' => '075678173127', 'provider' => 'bestbuy'],\n ['name' => \"Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/touch-cd/701324.p?id=75741&skuId=701324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0701\\/0701324_sa.jpg\"}', 'upc' => '075678174728', 'provider' => 'bestbuy'],\n ['name' => \"Three Windows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-windows-cd/701404.p?id=69254&skuId=701404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7014\\/701404_sa.jpg\"}', 'upc' => '075678176128', 'provider' => 'bestbuy'],\n ['name' => \"Symphony Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-sessions-cd/701501.p?id=82715&skuId=701501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7015\\/701501_sa.jpg\"}', 'upc' => '075678179921', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere Before - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-before-cd/701592.p?id=67883&skuId=701592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0701\\/0701592_sa.jpg\"}', 'upc' => '075678145520', 'provider' => 'bestbuy'],\n ['name' => \"Civilized Evil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civilized-evil-cd/701654.p?id=70090&skuId=701654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0701\\/0701654_sa.jpg\"}', 'upc' => '075678147425', 'provider' => 'bestbuy'],\n ['name' => \"Coming Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coming-out-cd/701789.p?id=90379&skuId=701789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7017\\/701789_sa.jpg\"}', 'upc' => '075678150227', 'provider' => 'bestbuy'],\n ['name' => \"Last Set at Newport - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-set-at-newport-cd/701967.p?id=64632&skuId=701967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=701967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7019\\/701967_sa.jpg\"}', 'upc' => '075678138225', 'provider' => 'bestbuy'],\n ['name' => \"Blues on Bach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-on-bach-cd/702029.p?id=69229&skuId=702029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702029_sa.jpg\"}', 'upc' => '075678139321', 'provider' => 'bestbuy'],\n ['name' => \"Chick Corea/Herbie Hancock/Keith... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chick-corea-herbie-hancock-keith-cd/702092.p?id=65292&skuId=702092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702092_sa.jpg\"}', 'upc' => '075678140228', 'provider' => 'bestbuy'],\n ['name' => \"Three or Four Shades of Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-or-four-shades-of-blues-cd/702118.p?id=69192&skuId=702118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7021\\/702118_sa.jpg\"}', 'upc' => '075678140327', 'provider' => 'bestbuy'],\n ['name' => \"Wild Tales - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-tales-cd/702314.p?id=92848&skuId=702314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7023\\/702314_sa.jpg\"}', 'upc' => '075678143229', 'provider' => 'bestbuy'],\n ['name' => \"Rock & Roll Queen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-roll-queen-cd/702323.p?id=92436&skuId=702323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7023\\/702323.jpg\"}', 'upc' => '075678218828', 'provider' => 'bestbuy'],\n ['name' => \"T-Bone Blues [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/t-bone-blues-atlantic-cd/702341.p?id=103375&skuId=702341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702341_sa.jpg\"}', 'upc' => '075678195426', 'provider' => 'bestbuy'],\n ['name' => \"You Can't Stop Rock 'N' Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-cant-stop-rock-n-roll-cd/702430.p?id=176537&skuId=702430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702430_sa.jpg\"}', 'upc' => '075678007422', 'provider' => 'bestbuy'],\n ['name' => \"Forever Young - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-young-cd/702555.p?id=72829&skuId=702555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702555_sa.jpg\"}', 'upc' => '075678018626', 'provider' => 'bestbuy'],\n ['name' => \"St. Elmo's Fire - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/st-elmos-fire-cd-original-soundtrack/702699.p?id=99973&skuId=702699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7026\\/702699_sa.jpg\"}', 'upc' => '075678126123', 'provider' => 'bestbuy'],\n ['name' => \"Coltrane Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coltrane-jazz-cd/702895.p?id=65136&skuId=702895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702895_sa.jpg\"}', 'upc' => '075678134425', 'provider' => 'bestbuy'],\n ['name' => \"Bags & Trane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bags-trane-cd/702920.p?id=65190&skuId=702920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702920_sa.jpg\"}', 'upc' => '075678134821', 'provider' => 'bestbuy'],\n ['name' => \"At the Village Gate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-village-gate-cd/702975.p?id=68730&skuId=702975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0702\\/0702975_sa.jpg\"}', 'upc' => '075678135026', 'provider' => 'bestbuy'],\n ['name' => \"Plays the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-the-blues-cd/702993.p?id=65139&skuId=702993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=702993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7029\\/702993_sa.jpg\"}', 'upc' => '075678135125', 'provider' => 'bestbuy'],\n ['name' => \"Stitt Plays Bird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stitt-plays-bird-cd/703037.p?id=71159&skuId=703037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703037_sa.jpg\"}', 'upc' => '075678135729', 'provider' => 'bestbuy'],\n ['name' => \"Swiss Movement - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swiss-movement-cd/703117.p?id=176560&skuId=703117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7031\\/703117.jpg\"}', 'upc' => '075678136528', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Eddie Harris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-eddie-harris-cd/703144.p?id=67217&skuId=703144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703144_sa.jpg\"}', 'upc' => '075678137020', 'provider' => 'bestbuy'],\n ['name' => \"Zawinul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zawinul-cd/703199.p?id=72267&skuId=703199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703199_sa.jpg\"}', 'upc' => '075678137525', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Suite [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-suite-remaster-cd/703215.p?id=65955&skuId=703215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703215_sa.jpg\"}', 'upc' => '075678137624', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Billy Cobham [1992] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-billy-cobham-1992-cd/703288.p?id=3356016&skuId=703288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7032\\/703288_sa.jpg\"}', 'upc' => '075678155826', 'provider' => 'bestbuy'],\n ['name' => \"A Taste for Passion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-taste-for-passion-cd/703304.p?id=70087&skuId=703304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7033\\/703304_sa.jpg\"}', 'upc' => '075678156229', 'provider' => 'bestbuy'],\n ['name' => \"Extensions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extensions-cd/703322.p?id=90380&skuId=703322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703322_sa.jpg\"}', 'upc' => '075678156526', 'provider' => 'bestbuy'],\n ['name' => \"Push Push - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/push-push-cd/703705.p?id=68736&skuId=703705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7037\\/703705_sa.jpg\"}', 'upc' => '075679030627', 'provider' => 'bestbuy'],\n ['name' => \"Plenty, Plenty Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plenty-plenty-soul-cd/703938.p?id=67748&skuId=703938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0703\\/0703938_sa.jpg\"}', 'upc' => '075678197925', 'provider' => 'bestbuy'],\n ['name' => \"No Sun in Venice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-sun-in-venice-cd/703965.p?id=69243&skuId=703965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=703965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7039\\/703965.jpg\"}', 'upc' => '075678133428', 'provider' => 'bestbuy'],\n ['name' => \"Seduzir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seduzir-cd/712820.p?id=80654&skuId=712820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=712820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7128\\/712820_sa.jpg\"}', 'upc' => '077774820622', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Cowboy - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-cowboy-cd-original-soundtrack/712982.p?id=91638&skuId=712982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=712982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7129\\/712982.jpg\"}', 'upc' => '077774840927', 'provider' => 'bestbuy'],\n ['name' => \"Michel Plays Petrucciani - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michel-plays-petrucciani-cd/713106.p?id=70010&skuId=713106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=713106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0713\\/0713106_sa.jpg\"}', 'upc' => '077774867924', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/715943.p?id=95461&skuId=715943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=715943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7159\\/715943_sa.jpg\"}', 'upc' => '077779407224', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/716014.p?id=100118&skuId=716014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=716014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7160\\/716014.jpg\"}', 'upc' => '077779408023', 'provider' => 'bestbuy'],\n ['name' => \"Die unendliche Geschichte [Music from the... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/die-unendliche-geschichte-music-from-the-cd-original-soundtrack/716755.p?id=93080&skuId=716755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=716755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0716\\/0716755_sa.jpg\"}', 'upc' => '077779270828', 'provider' => 'bestbuy'],\n ['name' => \"The Route - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-route-cd/716997.p?id=63926&skuId=716997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=716997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7169\\/716997_sa.jpg\"}', 'upc' => '077779293124', 'provider' => 'bestbuy'],\n ['name' => \"Romeo & Juliet [CD] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romeo-juliet-cd-cd-original-soundtrack/717255.p?id=97253&skuId=717255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=717255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7172\\/717255.jpg\"}', 'upc' => '077779205721', 'provider' => 'bestbuy'],\n ['name' => \"Deer Hunter - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deer-hunter-cd-original-soundtrack/717273.p?id=2069841&skuId=717273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=717273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7172\\/717273_sa.jpg\"}', 'upc' => '077779205820', 'provider' => 'bestbuy'],\n ['name' => \"Where Are You? [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-are-you-remaster-cd/717683.p?id=240284&skuId=717683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=717683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7176\\/717683.jpg\"}', 'upc' => '762185158128', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Classics IV [EMI] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-classics-iv-emi-cd/717781.p?id=77961&skuId=717781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=717781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0717\\/0717781_sa.jpg\"}', 'upc' => '077779147229', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/717889.p?id=86662&skuId=717889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=717889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0717\\/0717889_sa.jpg\"}', 'upc' => '077779163021', 'provider' => 'bestbuy'],\n ['name' => \"Iron Eagle - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-eagle-cd-original-soundtrack/718352.p?id=2280274&skuId=718352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0718\\/0718352_sa.jpg\"}', 'upc' => '077779074723', 'provider' => 'bestbuy'],\n ['name' => \"Cornbread - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cornbread-cd/718414.p?id=2389888&skuId=718414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7184\\/718414.jpg\"}', 'upc' => '077778422228', 'provider' => 'bestbuy'],\n ['name' => \"Unit Structures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unit-structures-cd/718469.p?id=71341&skuId=718469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7184\\/718469.jpg\"}', 'upc' => '077778423720', 'provider' => 'bestbuy'],\n ['name' => \"Super Nova - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-nova-cd/718520.p?id=70913&skuId=718520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7185\\/718520_sa.jpg\"}', 'upc' => '077778433224', 'provider' => 'bestbuy'],\n ['name' => \"Born to Be Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-be-blue-cd/718619.p?id=66929&skuId=718619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7186\\/718619_sa.jpg\"}', 'upc' => '077778443223', 'provider' => 'bestbuy'],\n ['name' => \"Matador - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matador-cd/718673.p?id=66933&skuId=718673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0718\\/0718673_sa.jpg\"}', 'upc' => '077778444220', 'provider' => 'bestbuy'],\n ['name' => \"Charlie Parker at Storyville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charlie-parker-at-storyville-cd/718815.p?id=69750&skuId=718815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=718815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7188\\/718815_sa.jpg\"}', 'upc' => '077778510826', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Bellamy Brothers [1985] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-bellamy-brothers-1985-cd/719315.p?id=74381&skuId=719315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0719\\/0719315_sa.jpg\"}', 'upc' => '715187755420', 'provider' => 'bestbuy'],\n ['name' => \"Sings His Big 10, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-his-big-10-vol-1-cd/719333.p?id=73084&skuId=719333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7193\\/719333.jpg\"}', 'upc' => '715187755727', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Songs of the Islands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-songs-of-the-islands-cd/719388.p?id=104051&skuId=719388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7193\\/719388.jpg\"}', 'upc' => '715187756021', 'provider' => 'bestbuy'],\n ['name' => \"Classic Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-hits-cd/719422.p?id=73078&skuId=719422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0719\\/0719422_sa.jpg\"}', 'upc' => '715187756625', 'provider' => 'bestbuy'],\n ['name' => \"Best of Roger Miller: His Greatest Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-roger-miller-his-greatest-songs-cd/719761.p?id=91719&skuId=719761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7197\\/719761.jpg\"}', 'upc' => '715187751125', 'provider' => 'bestbuy'],\n ['name' => \"Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-cd/719789.p?id=91233&skuId=719789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7197\\/719789.jpg\"}', 'upc' => '715187751224', 'provider' => 'bestbuy'],\n ['name' => \"The Osmond Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-osmond-christmas-album-cd/719805.p?id=94140&skuId=719805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7198\\/719805.jpg\"}', 'upc' => '715187751323', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Country Classics - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-country-classics-cd-various/719823.p?id=77684&skuId=719823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0719\\/0719823_sa.jpg\"}', 'upc' => '715187751422', 'provider' => 'bestbuy'],\n ['name' => \"Christmas All-Time Greatest Records, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-all-time-greatest-records-vol-2-cd-various/719841.p?id=77629&skuId=719841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7198\\/719841_sa.jpg\"}', 'upc' => '715187751521', 'provider' => 'bestbuy'],\n ['name' => \"Best of Patsy Cline [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-patsy-cline-curb-cd/719878.p?id=78046&skuId=719878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7198\\/719878_sa.jpg\"}', 'upc' => '715187751828', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits of Country, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-of-country-vol-1-cd-various/719958.p?id=78865&skuId=719958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=719958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7199\\/719958_sa.jpg\"}', 'upc' => '715187752429', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Live 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-live-1-cd/720027.p?id=80710&skuId=720027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7200\\/720027_sa.jpg\"}', 'upc' => '715187753822', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Fats Domino Live, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-fats-domino-live-vol-2-cd/720045.p?id=80711&skuId=720045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7200\\/720045.jpg\"}', 'upc' => '715187753921', 'provider' => 'bestbuy'],\n ['name' => \"The Best of T.G. Sheppard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-t-g-sheppard-cd/720134.p?id=98584&skuId=720134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7201\\/720134.jpg\"}', 'upc' => '715187754522', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/720170.p?id=77060&skuId=720170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7201\\/720170_sa.jpg\"}', 'upc' => '715187755123', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/720205.p?id=92266&skuId=720205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0720\\/0720205_sa.jpg\"}', 'upc' => '715187747029', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Everly Brothers: Rare Solo Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-everly-brothers-rare-solo-classics-cd/720223.p?id=81754&skuId=720223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7202\\/720223.jpg\"}', 'upc' => '715187747227', 'provider' => 'bestbuy'],\n ['name' => \"Best of Carl Smith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-carl-smith-cd/720241.p?id=99257&skuId=720241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7202\\/720241.jpg\"}', 'upc' => '715187747326', 'provider' => 'bestbuy'],\n ['name' => \"18 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/18-greatest-hits-cd/720269.p?id=83587&skuId=720269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7202\\/720269.jpg\"}', 'upc' => '715187747425', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Kate Smith [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-kate-smith-capitol-cd/720287.p?id=99280&skuId=720287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7202\\/720287.jpg\"}', 'upc' => '715187747524', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dick Haymes [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dick-haymes-curb-cd/720303.p?id=85073&skuId=720303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0720\\/0720303_sa.jpg\"}', 'upc' => '715187747920', 'provider' => 'bestbuy'],\n ['name' => \"The Best of His Rare Solo Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-his-rare-solo-classics-cd/720321.p?id=94035&skuId=720321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0720\\/0720321_sa.jpg\"}', 'upc' => '715187748125', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/720349.p?id=101861&skuId=720349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7203\\/720349.jpg\"}', 'upc' => '715187748224', 'provider' => 'bestbuy'],\n ['name' => \"Best of Ricky Nelson [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-ricky-nelson-curb-cd/720367.p?id=92983&skuId=720367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7203\\/720367.jpg\"}', 'upc' => '715187748422', 'provider' => 'bestbuy'],\n ['name' => \"18 Rare Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/18-rare-classics-cd/720401.p?id=84565&skuId=720401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7204\\/720401.jpg\"}', 'upc' => '715187749023', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/720410.p?id=93086&skuId=720410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0720\\/0720410_sa.jpg\"}', 'upc' => '715187749122', 'provider' => 'bestbuy'],\n ['name' => \"Classic Country Duets - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-country-duets-cd-various/720447.p?id=78874&skuId=720447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7204\\/720447.jpg\"}', 'upc' => '715187749320', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-collection-cd/720544.p?id=81811&skuId=720544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7205\\/720544_sa.jpg\"}', 'upc' => '715187750326', 'provider' => 'bestbuy'],\n ['name' => \"Van Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/van-go-cd/720562.p?id=74169&skuId=720562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7205\\/720562.jpg\"}', 'upc' => '715187750425', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Early Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-early-years-cd/720642.p?id=84575&skuId=720642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7206\\/720642.jpg\"}', 'upc' => '715187743823', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Andy Williams [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-andy-williams-capitol-cd/720660.p?id=104046&skuId=720660&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720660', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7206\\/720660.jpg\"}', 'upc' => '715187743922', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Don Gibson, Vol. 1 [Capitol/Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-don-gibson-vol-1-capitol-curb-cd/720688.p?id=83589&skuId=720688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7206\\/720688.jpg\"}', 'upc' => '715187744028', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Early Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-early-years-cd/720704.p?id=76662&skuId=720704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7207\\/720704_sa.jpg\"}', 'upc' => '715187744127', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jimmie Rodgers [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jimmie-rodgers-curb-cd/720722.p?id=97060&skuId=720722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7207\\/720722_sa.jpg\"}', 'upc' => '715187744226', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/720768.p?id=74468&skuId=720768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7207\\/720768.jpg\"}', 'upc' => '715187744523', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jerry Lee Lewis [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jerry-lee-lewis-capitol-cd/720786.p?id=89145&skuId=720786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7207\\/720786.jpg\"}', 'upc' => '715187744622', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Sonny James - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-sonny-james-cd/720955.p?id=86661&skuId=720955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7209\\/720955.jpg\"}', 'upc' => '715187746022', 'provider' => 'bestbuy'],\n ['name' => \"American Music: Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-music-greatest-hits-cd-various/720973.p?id=72902&skuId=720973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=720973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7209\\/720973.jpg\"}', 'upc' => '715187746121', 'provider' => 'bestbuy'],\n ['name' => \"Five Decades Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-decades-greatest-hits-cd/721053.p?id=73080&skuId=721053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721053_sa.jpg\"}', 'upc' => '715187746725', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/721106.p?id=92265&skuId=721106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721106_sa.jpg\"}', 'upc' => '715187740525', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/721160.p?id=78269&skuId=721160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721160_sa.jpg\"}', 'upc' => '715187740822', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/721204.p?id=65766&skuId=721204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7212\\/721204.jpg\"}', 'upc' => '715187741126', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Lonely: Greatest Songs Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-lonely-greatest-songs-today-cd/721222.p?id=103172&skuId=721222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7212\\/721222.jpg\"}', 'upc' => '715187741225', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Eydie Gorme [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-eydie-gorme-curb-cd/721240.p?id=83909&skuId=721240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7212\\/721240.jpg\"}', 'upc' => '715187741324', 'provider' => 'bestbuy'],\n ['name' => \"Unchained Melody - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unchained-melody-cd/721259.p?id=91136&skuId=721259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721259_sa.jpg\"}', 'upc' => '715187741423', 'provider' => 'bestbuy'],\n ['name' => \"Best of Eddy Arnold [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-eddy-arnold-curb-cd/721277.p?id=73267&skuId=721277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7212\\/721277.jpg\"}', 'upc' => '715187741621', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/721295.p?id=91253&skuId=721295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7212\\/721295.jpg\"}', 'upc' => '715187741720', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Evergreen] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-evergreen-cd/721311.p?id=76410&skuId=721311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721311_sa.jpg\"}', 'upc' => '715187741928', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Solomon Burke [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-solomon-burke-curb-cd/721339.p?id=76344&skuId=721339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7213\\/721339.jpg\"}', 'upc' => '715187742222', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/721393.p?id=96807&skuId=721393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7213\\/721393.jpg\"}', 'upc' => '715187742529', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/721428.p?id=102446&skuId=721428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721428_sa.jpg\"}', 'upc' => '715187742925', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/721446.p?id=95780&skuId=721446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721446_sa.jpg\"}', 'upc' => '715187743021', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Debbie Reynolds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-debbie-reynolds-cd/721473.p?id=96548&skuId=721473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7214\\/721473.jpg\"}', 'upc' => '715187743526', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bill Anderson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bill-anderson-cd/721491.p?id=72975&skuId=721491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7214\\/721491.jpg\"}', 'upc' => '715187743625', 'provider' => 'bestbuy'],\n ['name' => \"The Best of John Conlee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-john-conlee-cd/721516.p?id=78527&skuId=721516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7215\\/721516.jpg\"}', 'upc' => '715187743724', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Country Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-country-hits-cd/721543.p?id=104085&skuId=721543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7215\\/721543.jpg\"}', 'upc' => '715187736122', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-capitol-cd/721561.p?id=102601&skuId=721561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7215\\/721561.jpg\"}', 'upc' => '715187736528', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Country Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-country-blues-cd/721589.p?id=84574&skuId=721589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7215\\/721589_sa.jpg\"}', 'upc' => '715187736825', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/721605.p?id=83297&skuId=721605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721605_sa.jpg\"}', 'upc' => '715187737020', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/721632.p?id=103951&skuId=721632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721632_sa.jpg\"}', 'upc' => '715187737327', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/721641.p?id=86703&skuId=721641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7216\\/721641.jpg\"}', 'upc' => '715187737426', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/721703.p?id=80708&skuId=721703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7217\\/721703.jpg\"}', 'upc' => '715187737822', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/721730.p?id=96107&skuId=721730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7217\\/721730.jpg\"}', 'upc' => '715187738027', 'provider' => 'bestbuy'],\n ['name' => \"Unchained Melody: Greatest Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unchained-melody-greatest-songs-cd/721749.p?id=104062&skuId=721749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7217\\/721749.jpg\"}', 'upc' => '715187738225', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/721767.p?id=90677&skuId=721767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7217\\/721767.jpg\"}', 'upc' => '715187738324', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-hits-curb-cd/721776.p?id=88079&skuId=721776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721776_sa.jpg\"}', 'upc' => '715187738522', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/721794.p?id=104356&skuId=721794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7217\\/721794.jpg\"}', 'upc' => '715187738928', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Roy Rogers [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-roy-rogers-curb-capitol-cd/721801.p?id=97171&skuId=721801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7218\\/721801.jpg\"}', 'upc' => '715187739222', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/721829.p?id=103642&skuId=721829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7218\\/721829.jpg\"}', 'upc' => '715187739321', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Tommy Dorsey & His Orchestra [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-tommy-dorsey-his-orchestra-curb-cd/721847.p?id=65785&skuId=721847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7218\\/721847.jpg\"}', 'upc' => '715187739628', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/721865.p?id=96748&skuId=721865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7218\\/721865.jpg\"}', 'upc' => '715187739727', 'provider' => 'bestbuy'],\n ['name' => \"Best of Cannonball Adderley [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cannonball-adderley-curb-cd/721909.p?id=63541&skuId=721909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7219\\/721909.jpg\"}', 'upc' => '715187739925', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/721918.p?id=90671&skuId=721918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0721\\/0721918_sa.jpg\"}', 'upc' => '715187740129', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Great Instrumental Hits, Vol. 1 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-great-instrumental-hits-vol-1-various-cd/721936.p?id=86236&skuId=721936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7219\\/721936.jpg\"}', 'upc' => '715187740327', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/721972.p?id=100119&skuId=721972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=721972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7219\\/721972.jpg\"}', 'upc' => '715187740426', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 50's Hits... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-50s-hits-cd-various/722043.p?id=78854&skuId=722043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7220\\/722043.jpg\"}', 'upc' => '715187733022', 'provider' => 'bestbuy'],\n ['name' => \"The All-Time Best of Bing Crosby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-all-time-best-of-bing-crosby-cd/722114.p?id=79225&skuId=722114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7221\\/722114.jpg\"}', 'upc' => '715187734029', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-vol-1-cd/722123.p?id=94214&skuId=722123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7221\\/722123.jpg\"}', 'upc' => '715187734227', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 60's Hits... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-60s-hits-cd-various/722141.p?id=78856&skuId=722141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7221\\/722141.jpg\"}', 'upc' => '715187734326', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 70's Hits... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-70s-hits-cd-various/722169.p?id=78857&skuId=722169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7221\\/722169.jpg\"}', 'upc' => '715187734425', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/722187.p?id=103028&skuId=722187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7221\\/722187_sa.jpg\"}', 'upc' => '715187734524', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 40's Hits... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-40s-hits-cd-various/722203.p?id=78853&skuId=722203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7222\\/722203.jpg\"}', 'upc' => '715187734623', 'provider' => 'bestbuy'],\n ['name' => \"Great Songs of Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-songs-of-christmas-cd/722221.p?id=103169&skuId=722221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7222\\/722221.jpg\"}', 'upc' => '715187734722', 'provider' => 'bestbuy'],\n ['name' => \"Merry Christmas from Wayne Newton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merry-christmas-from-wayne-newton-cd/722249.p?id=93275&skuId=722249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7222\\/722249.jpg\"}', 'upc' => '715187734821', 'provider' => 'bestbuy'],\n ['name' => \"Christmas with Buck Owens and His Buckaroos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-with-buck-owens-and-his-buckaroos-cd/722267.p?id=94217&skuId=722267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0722\\/0722267_sa.jpg\"}', 'upc' => '715187734920', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Christmas Records - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-christmas-records-cd-various/722301.p?id=77628&skuId=722301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7223\\/722301_sa.jpg\"}', 'upc' => '715187735125', 'provider' => 'bestbuy'],\n ['name' => \"Merle Haggard's Christmas Present - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merle-haggards-christmas-present-cd/722310.p?id=84567&skuId=722310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7223\\/722310_sa.jpg\"}', 'upc' => '715187735224', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-capitol-cd/722418.p?id=86663&skuId=722418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7224\\/722418.jpg\"}', 'upc' => '715187735927', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bill Medley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bill-medley-cd/722702.p?id=91321&skuId=722702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7227\\/722702.jpg\"}', 'upc' => '715187730724', 'provider' => 'bestbuy'],\n ['name' => \"80's Country Hits of the Decade, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/80s-country-hits-of-the-decade-vol-1-cd-various/722819.p?id=78858&skuId=722819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7228\\/722819.jpg\"}', 'upc' => '715187731820', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb/Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-capitol-cd/722837.p?id=2642614&skuId=722837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7228\\/722837_sa.jpg\"}', 'upc' => '715187732124', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Johnny Lee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-johnny-lee-cd/722855.p?id=88955&skuId=722855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7228\\/722855.jpg\"}', 'upc' => '715187732223', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits of Rock & Roll, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-of-rock-roll-vol-1-cd-various/722873.p?id=96918&skuId=722873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=722873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7228\\/722873.jpg\"}', 'upc' => '715187732322', 'provider' => 'bestbuy'],\n ['name' => \"Bobby Vinton's Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bobby-vintons-greatest-hits-curb-cd/723006.p?id=103167&skuId=723006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=723006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7230\\/723006.jpg\"}', 'upc' => '715187725324', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/723060.p?id=103411&skuId=723060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=723060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7230\\/723060_sa.jpg\"}', 'upc' => '715187726222', 'provider' => 'bestbuy'],\n ['name' => \"St. Cecelia Mass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/st-cecelia-mass-cd/723612.p?id=1675579&skuId=723612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=723612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7236\\/723612.jpg\"}', 'upc' => '077774709422', 'provider' => 'bestbuy'],\n ['name' => \"Sawyer Brown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sawyer-brown-cd/724069.p?id=97979&skuId=724069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7240\\/724069.jpg\"}', 'upc' => '715187758223', 'provider' => 'bestbuy'],\n ['name' => \"Konitz Meets Mulligan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/konitz-meets-mulligan-cd/724130.p?id=68319&skuId=724130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0724\\/0724130_sa.jpg\"}', 'upc' => '077774684729', 'provider' => 'bestbuy'],\n ['name' => \"Modern Art: The Complete Art Pepper Aladdin... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-art-the-complete-art-pepper-aladdin-cd/724149.p?id=69904&skuId=724149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7241\\/724149_sa.jpg\"}', 'upc' => '077774684828', 'provider' => 'bestbuy'],\n ['name' => \"Bach: Concertos for Two Violins, etc / Mutter, Accardo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bach-concertos-for-two-violins-etc-mutter-accardo-cd/724318.p?id=1683709&skuId=724318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0724\\/0724318_sa.jpg\"}', 'upc' => '077774700528', 'provider' => 'bestbuy'],\n ['name' => \"4 Seasons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-seasons-cd/724416.p?id=1687566&skuId=724416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7244\\/724416_sa.jpg\"}', 'upc' => '077774704328', 'provider' => 'bestbuy'],\n ['name' => \"Blues Walk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-walk-cd/724513.p?id=2466648&skuId=724513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0724\\/0724513_sa.jpg\"}', 'upc' => '077774652520', 'provider' => 'bestbuy'],\n ['name' => \"About Last Night [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/about-last-night-original-soundtrack-cd-original-soundtrack/724700.p?id=72335&skuId=724700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0724\\/0724700_sa.jpg\"}', 'upc' => '077774656023', 'provider' => 'bestbuy'],\n ['name' => \"Menlove Ave. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/menlove-ave-cd/724808.p?id=89035&skuId=724808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7248\\/724808.jpg\"}', 'upc' => '077774657624', 'provider' => 'bestbuy'],\n ['name' => \"Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duets-cd/724835.p?id=97129&skuId=724835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=724835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7248\\/724835.jpg\"}', 'upc' => '077774659529', 'provider' => 'bestbuy'],\n ['name' => \"Pianism - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pianism-cd/725022.p?id=70014&skuId=725022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=725022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7250\\/725022_sa.jpg\"}', 'upc' => '077774629522', 'provider' => 'bestbuy'],\n ['name' => \"Entre a Mi Mundo: Selena 20 Years of Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/entre-a-mi-mundo-selena-20-years-of-music-cd/726307.p?id=248641&skuId=726307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=726307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0726\\/0726307_sa.jpg\"}', 'upc' => '077774263528', 'provider' => 'bestbuy'],\n ['name' => \"Lo Hare Por Ti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-hare-por-ti-cd/726744.p?id=90939&skuId=726744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=726744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0726\\/0726744_sa.jpg\"}', 'upc' => '077774259323', 'provider' => 'bestbuy'],\n ['name' => \"Live!! Una Noche Juntos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-una-noche-juntos-cd/727850.p?id=90949&skuId=727850&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=727850', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0727\\/0727850_sa.jpg\"}', 'upc' => '077774254922', 'provider' => 'bestbuy'],\n ['name' => \"Ven Conmigo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ven-conmigo-cd/731015.p?id=253131&skuId=731015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=731015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7310\\/731015.jpg\"}', 'upc' => '077774235921', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Collectors Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-collectors-series-cd/733433.p?id=89090&skuId=733433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=733433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7334\\/733433.jpg\"}', 'upc' => '077779853724', 'provider' => 'bestbuy'],\n ['name' => \"Gold Buckle Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-buckle-dreams-cd/734058.p?id=88908&skuId=734058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=734058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7340\\/734058_sa.jpg\"}', 'upc' => '077779686926', 'provider' => 'bestbuy'],\n ['name' => \"Chris Ledoux and the Saddle Boogie Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chris-ledoux-and-the-saddle-boogie-band-cd/734076.p?id=88906&skuId=734076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=734076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0734\\/0734076_sa.jpg\"}', 'upc' => '077779687022', 'provider' => 'bestbuy'],\n ['name' => \"Radio & Rodeo Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-rodeo-hits-cd/734539.p?id=88916&skuId=734539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=734539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0734\\/0734539_sa.jpg\"}', 'upc' => '077779659326', 'provider' => 'bestbuy'],\n ['name' => \"Rodeo Songs \\\"Old & New\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rodeo-songs-old-new-cd/734557.p?id=88918&skuId=734557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=734557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7345\\/734557_sa.jpg\"}', 'upc' => '077779659425', 'provider' => 'bestbuy'],\n ['name' => \"At Last - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-last-cd/736993.p?id=67231&skuId=736993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=736993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0736\\/0736993_sa.jpg\"}', 'upc' => '013431443421', 'provider' => 'bestbuy'],\n ['name' => \"For the Duration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-duration-cd/737091.p?id=65024&skuId=737091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737091_sa.jpg\"}', 'upc' => '013431444428', 'provider' => 'bestbuy'],\n ['name' => \"Retrospective, Vol. 1: Standards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/retrospective-vol-1-standards-cd/737171.p?id=70304&skuId=737171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7371\\/737171.jpg\"}', 'upc' => '013431445326', 'provider' => 'bestbuy'],\n ['name' => \"Live at Maybeck Recital Hall, Vol. 9 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-maybeck-recital-hall-vol-9-cd/737242.p?id=69004&skuId=737242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7372\\/737242_sa.jpg\"}', 'upc' => '013431446026', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/737260.p?id=66447&skuId=737260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7372\\/737260_sa.jpg\"}', 'upc' => '013431446224', 'provider' => 'bestbuy'],\n ['name' => \"Shadows 'N Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shadows-n-dreams-cd/737313.p?id=68948&skuId=737313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737313_sa.jpg\"}', 'upc' => '013431446729', 'provider' => 'bestbuy'],\n ['name' => \"The Bossa Nova Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bossa-nova-years-cd/737322.p?id=64755&skuId=737322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737322_sa.jpg\"}', 'upc' => '013431446828', 'provider' => 'bestbuy'],\n ['name' => \"A Night at Kimball's East - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-night-at-kimballs-east-cd/737368.p?id=70598&skuId=737368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737368_sa.jpg\"}', 'upc' => '013431447221', 'provider' => 'bestbuy'],\n ['name' => \"Sambahia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sambahia-cd/737386.p?id=69085&skuId=737386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737386_sa.jpg\"}', 'upc' => '013431447429', 'provider' => 'bestbuy'],\n ['name' => \"A Vintage Year - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-vintage-year-cd/737457.p?id=71503&skuId=737457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737457_sa.jpg\"}', 'upc' => '013431434122', 'provider' => 'bestbuy'],\n ['name' => \"Salsa Meets Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salsa-meets-jazz-cd/737554.p?id=70190&skuId=737554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7375\\/737554_sa.jpg\"}', 'upc' => '013431435426', 'provider' => 'bestbuy'],\n ['name' => \"Only Trust Your Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-trust-your-heart-cd/737563.p?id=71387&skuId=737563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7375\\/737563_sa.jpg\"}', 'upc' => '013431435525', 'provider' => 'bestbuy'],\n ['name' => \"East to Wes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-to-wes-cd/737572.p?id=70302&skuId=737572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7375\\/737572_sa.jpg\"}', 'upc' => '013431435624', 'provider' => 'bestbuy'],\n ['name' => \"No More Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-more-blues-cd/737705.p?id=2472689&skuId=737705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7377\\/737705_sa.jpg\"}', 'upc' => '013431437024', 'provider' => 'bestbuy'],\n ['name' => \"Listen Here! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-here-cd/737858.p?id=67227&skuId=737858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7378\\/737858_sa.jpg\"}', 'upc' => '013431438526', 'provider' => 'bestbuy'],\n ['name' => \"Soular Energy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soular-energy-cd/737885.p?id=64604&skuId=737885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7378\\/737885_sa.jpg\"}', 'upc' => '013431426820', 'provider' => 'bestbuy'],\n ['name' => \"Grand Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grand-piano-cd/737929.p?id=70848&skuId=737929&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737929', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737929_sa.jpg\"}', 'upc' => '013431428121', 'provider' => 'bestbuy'],\n ['name' => \"Mambo Diablo [Concord Picante] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mambo-diablo-concord-picante-cd/737938.p?id=70188&skuId=737938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7379\\/737938_sa.jpg\"}', 'upc' => '013431428329', 'provider' => 'bestbuy'],\n ['name' => \"El Conguero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-conguero-cd/737965.p?id=70604&skuId=737965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0737\\/0737965_sa.jpg\"}', 'upc' => '013431428626', 'provider' => 'bestbuy'],\n ['name' => \"Tango: Laurindo Almeida and Charlie Byrd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tango-laurindo-almeida-and-charlie-byrd-cd/737992.p?id=2283174&skuId=737992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=737992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7379\\/737992.jpg\"}', 'upc' => '013431429029', 'provider' => 'bestbuy'],\n ['name' => \"Dancing in the Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-in-the-dark-cd/738009.p?id=68944&skuId=738009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7380\\/738009_sa.jpg\"}', 'upc' => '013431429227', 'provider' => 'bestbuy'],\n ['name' => \"An Elegant Evening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-elegant-evening-cd/738018.p?id=70840&skuId=738018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738018_sa.jpg\"}', 'upc' => '013431429425', 'provider' => 'bestbuy'],\n ['name' => \"The Gene Harris Trio Plus One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gene-harris-trio-plus-one-cd/738063.p?id=67228&skuId=738063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7380\\/738063_sa.jpg\"}', 'upc' => '013431430322', 'provider' => 'bestbuy'],\n ['name' => \"Sings the Music of Jimmy Van Heusen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-the-music-of-jimmy-van-heusen-cd/738081.p?id=65033&skuId=738081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738081_sa.jpg\"}', 'upc' => '013431430827', 'provider' => 'bestbuy'],\n ['name' => \"Papa Gato - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/papa-gato-cd/738107.p?id=70609&skuId=738107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738107_sa.jpg\"}', 'upc' => '013431431022', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rondo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rondo-cd/738170.p?id=64641&skuId=738170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7381\\/738170_sa.jpg\"}', 'upc' => '013431431725', 'provider' => 'bestbuy'],\n ['name' => \"Un Poco Loco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/un-poco-loco-cd/738223.p?id=70192&skuId=738223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738223_sa.jpg\"}', 'upc' => '013431432920', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Count Basie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-count-basie-cd/738287.p?id=67223&skuId=738287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7382\\/738287_sa.jpg\"}', 'upc' => '013431433729', 'provider' => 'bestbuy'],\n ['name' => \"Rosemary Clooney Sings the Music of Cole Porter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosemary-clooney-sings-the-music-of-cole-porter-cd/738456.p?id=65035&skuId=738456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7384\\/738456_sa.jpg\"}', 'upc' => '013431418528', 'provider' => 'bestbuy'],\n ['name' => \"Pure Getz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-getz-cd/738465.p?id=66616&skuId=738465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738465_sa.jpg\"}', 'upc' => '013431418825', 'provider' => 'bestbuy'],\n ['name' => \"Heatwave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heatwave-cd/738474.p?id=71464&skuId=738474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7384\\/738474_sa.jpg\"}', 'upc' => '013431418924', 'provider' => 'bestbuy'],\n ['name' => \"An Evening With George Shearing & Mel Torme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-evening-with-george-shearing-mel-torme-cd/738483.p?id=70839&skuId=738483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738483_sa.jpg\"}', 'upc' => '013431419020', 'provider' => 'bestbuy'],\n ['name' => \"Keystone 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keystone-3-cd/738517.p?id=64351&skuId=738517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738517_sa.jpg\"}', 'upc' => '013431419624', 'provider' => 'bestbuy'],\n ['name' => \"Concord on a Summer Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concord-on-a-summer-night-cd/738535.p?id=64642&skuId=738535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738535_sa.jpg\"}', 'upc' => '013431419822', 'provider' => 'bestbuy'],\n ['name' => \"Come with Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-with-me-cd/738553.p?id=68787&skuId=738553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7385\\/738553_sa.jpg\"}', 'upc' => '013431420026', 'provider' => 'bestbuy'],\n ['name' => \"On Broadway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-broadway-cd/738571.p?id=70189&skuId=738571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738571_sa.jpg\"}', 'upc' => '013431420729', 'provider' => 'bestbuy'],\n ['name' => \"Top Drawer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-drawer-cd/738615.p?id=70866&skuId=738615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738615_sa.jpg\"}', 'upc' => '013431421924', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Baby Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-baby-blues-cd/738713.p?id=64932&skuId=738713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7387\\/738713_sa.jpg\"}', 'upc' => '013431425823', 'provider' => 'bestbuy'],\n ['name' => \"For Iola - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-iola-cd/738722.p?id=64618&skuId=738722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738722_sa.jpg\"}', 'upc' => '013431425922', 'provider' => 'bestbuy'],\n ['name' => \"A Sign of the Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-sign-of-the-times-cd/738811.p?id=66183&skuId=738811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0738\\/0738811_sa.jpg\"}', 'upc' => '013431402626', 'provider' => 'bestbuy'],\n ['name' => \"Everything's Coming Up Rosie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everythings-coming-up-rosie-cd/738900.p?id=65023&skuId=738900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7389\\/738900_sa.jpg\"}', 'upc' => '013431404729', 'provider' => 'bestbuy'],\n ['name' => \"Blue Byrd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-byrd-cd/738982.p?id=2305292&skuId=738982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=738982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7389\\/738982.jpg\"}', 'upc' => '013431408222', 'provider' => 'bestbuy'],\n ['name' => \"Rosemary Clooney Sings the Songs of Ira Gershwin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosemary-clooney-sings-the-songs-of-ira-gershwin-cd/739080.p?id=65037&skuId=739080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=739080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7390\\/739080.jpg\"}', 'upc' => '013431411222', 'provider' => 'bestbuy'],\n ['name' => \"La Onda Va Bien - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-onda-va-bien-cd/739099.p?id=71451&skuId=739099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=739099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7390\\/739099_sa.jpg\"}', 'upc' => '013431411321', 'provider' => 'bestbuy'],\n ['name' => \"Tenorshoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tenorshoes-cd/739142.p?id=67110&skuId=739142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=739142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7391\\/739142_sa.jpg\"}', 'upc' => '013431412724', 'provider' => 'bestbuy'],\n ['name' => \"Two For The Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-for-the-road-cd/739151.p?id=70867&skuId=739151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=739151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7391\\/739151.jpg\"}', 'upc' => '013431412823', 'provider' => 'bestbuy'],\n ['name' => \"Plays Music of Cole Porter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-music-of-cole-porter-cd/741932.p?id=70862&skuId=741932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=741932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7419\\/741932_sa.jpg\"}', 'upc' => '013431201021', 'provider' => 'bestbuy'],\n ['name' => \"Moore Makes 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moore-makes-4-cd/742030.p?id=64608&skuId=742030&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742030', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7420\\/742030_sa.jpg\"}', 'upc' => '013431447726', 'provider' => 'bestbuy'],\n ['name' => \"Sabor Flamenco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sabor-flamenco-cd/742156.p?id=70764&skuId=742156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0742\\/0742156_sa.jpg\"}', 'upc' => '013431449027', 'provider' => 'bestbuy'],\n ['name' => \"I'LL Take Romance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-take-romance-cd/742165.p?id=2305248&skuId=742165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0742\\/0742165_sa.jpg\"}', 'upc' => '013431449126', 'provider' => 'bestbuy'],\n ['name' => \"Live at Maybeck Recital Hall, Vol. 16 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-maybeck-recital-hall-vol-16-cd/742245.p?id=68054&skuId=742245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7422\\/742245.jpg\"}', 'upc' => '013431450221', 'provider' => 'bestbuy'],\n ['name' => \"Hand-Crafted Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hand-crafted-swing-cd/742352.p?id=63597&skuId=742352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7423\\/742352_sa.jpg\"}', 'upc' => '013431451327', 'provider' => 'bestbuy'],\n ['name' => \"Great Guitars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-guitars-cd/742469.p?id=64758&skuId=742469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0742\\/0742469_sa.jpg\"}', 'upc' => '013431600428', 'provider' => 'bestbuy'],\n ['name' => \"Goza Mi Timbal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goza-mi-timbal-cd/742619.p?id=70174&skuId=742619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7426\\/742619_sa.jpg\"}', 'upc' => '013431439929', 'provider' => 'bestbuy'],\n ['name' => \"Chile con Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chile-con-soul-cd/742673.p?id=70603&skuId=742673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7426\\/742673_sa.jpg\"}', 'upc' => '013431440628', 'provider' => 'bestbuy'],\n ['name' => \"Live at Maybeck Recital Hall, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-maybeck-recital-hall-vol-2-cd/742717.p?id=68946&skuId=742717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7427\\/742717.jpg\"}', 'upc' => '013431441021', 'provider' => 'bestbuy'],\n ['name' => \"Music of 1937 (Maybeck Recital Hall Series,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-1937-maybeck-recital-hall-series-cd/742762.p?id=67687&skuId=742762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7427\\/742762_sa.jpg\"}', 'upc' => '013431441526', 'provider' => 'bestbuy'],\n ['name' => \"Sabia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sabia-cd/742799.p?id=68905&skuId=742799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7427\\/742799_sa.jpg\"}', 'upc' => '013431441823', 'provider' => 'bestbuy'],\n ['name' => \"Summer Wind: Live at the Loa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summer-wind-live-at-the-loa-cd/742879.p?id=2390152&skuId=742879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=742879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7428\\/742879.jpg\"}', 'upc' => '013431442622', 'provider' => 'bestbuy'],\n ['name' => \"Hear It Is - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hear-it-is-cd/745830.p?id=82371&skuId=745830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=745830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7458\\/745830_sa.jpg\"}', 'upc' => '018777217323', 'provider' => 'bestbuy'],\n ['name' => \"What a Life! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-a-life-cd/746688.p?id=2018796&skuId=746688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=746688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0746\\/0746688_sa.jpg\"}', 'upc' => '094632151124', 'provider' => 'bestbuy'],\n ['name' => \"Joseph and the Amazing Technicolor Dreamcoat... - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joseph-and-the-amazing-technicolor-dreamcoat-cd-original-cast-recording/747240.p?id=87417&skuId=747240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=747240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0747\\/0747240_sa.jpg\"}', 'upc' => '094632138729', 'provider' => 'bestbuy'],\n ['name' => \"Christmas with Mahalia [CBS] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-with-mahalia-cbs-cd/748105.p?id=86497&skuId=748105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=748105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7481\\/748105.jpg\"}', 'upc' => '074640972720', 'provider' => 'bestbuy'],\n ['name' => \"Give Me Your Love for Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/give-me-your-love-for-christmas-cd/748294.p?id=90794&skuId=748294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=748294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7482\\/748294.jpg\"}', 'upc' => '074640992322', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere My Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-my-love-cd/748588.p?id=78566&skuId=748588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=748588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7485\\/748588_sa.jpg\"}', 'upc' => '074640931925', 'provider' => 'bestbuy'],\n ['name' => \"We Wish You a Merry Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-wish-you-a-merry-christmas-cd/749113.p?id=78569&skuId=749113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=749113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7491\\/749113_sa.jpg\"}', 'upc' => '074640869228', 'provider' => 'bestbuy'],\n ['name' => \"The Andy Williams Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-andy-williams-christmas-album-cd/749239.p?id=104060&skuId=749239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=749239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7492\\/749239_sa.jpg\"}', 'upc' => '074640888724', 'provider' => 'bestbuy'],\n ['name' => \"All Time Great Polkas: Frankie Yankovic Plays... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-great-polkas-frankie-yankovic-plays-cd/749756.p?id=104893&skuId=749756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=749756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7497\\/749756.JPG\"}', 'upc' => '886972571423', 'provider' => 'bestbuy'],\n ['name' => \"Christmas with Conniff - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-with-conniff-cd/749765.p?id=78555&skuId=749765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=749765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0749\\/0749765_sa.jpg\"}', 'upc' => '074640818523', 'provider' => 'bestbuy'],\n ['name' => \"Head to the Sky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/head-to-the-sky-cd/751252.p?id=81248&skuId=751252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=751252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7512\\/751252_sa.jpg\"}', 'upc' => '074643219426', 'provider' => 'bestbuy'],\n ['name' => \"Barbra Streisand...and Other Musical Instruments - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbra-streisand-and-other-musical-instruments-cd/751699.p?id=100592&skuId=751699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=751699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0751\\/0751699_sa.jpg\"}', 'upc' => '074643265522', 'provider' => 'bestbuy'],\n ['name' => \"Ian Hunter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ian-hunter-cd/752206.p?id=85943&skuId=752206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=752206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7522\\/752206_sa.jpg\"}', 'upc' => '074643348027', 'provider' => 'bestbuy'],\n ['name' => \"Fillmore: The Last Days - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fillmore-the-last-days-cd-various/752876.p?id=82214&skuId=752876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=752876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0752\\/0752876_sa.jpg\"}', 'upc' => '074643139021', 'provider' => 'bestbuy'],\n ['name' => \"From the Inside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-inside-cd/753786.p?id=95083&skuId=753786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=753786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7537\\/753786_sa.jpg\"}', 'upc' => '074643075329', 'provider' => 'bestbuy'],\n ['name' => \"We Shall Overcome: The Complete Carnegie Hall... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-shall-overcome-the-complete-carnegie-hall-cd/754507.p?id=98277&skuId=754507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=754507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0754\\/0754507_sa.jpg\"}', 'upc' => '074644531220', 'provider' => 'bestbuy'],\n ['name' => \"The Creole Christmas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-creole-christmas-cd-various/754767.p?id=77609&skuId=754767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=754767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0754\\/0754767_sa.jpg\"}', 'upc' => '074644704525', 'provider' => 'bestbuy'],\n ['name' => \"Harpin' the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harpin-the-blues-cd/754927.p?id=91088&skuId=754927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=754927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7549\\/754927.jpg\"}', 'upc' => '074644708721', 'provider' => 'bestbuy'],\n ['name' => \"Complete Piano Trios - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-piano-trios-cd/756248.p?id=1693298&skuId=756248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=756248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0756\\/0756248_sa.jpg\"}', 'upc' => '074644673821', 'provider' => 'bestbuy'],\n ['name' => \"Agharta - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/agharta-cd/756471.p?id=65513&skuId=756471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=756471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0756\\/0756471_sa.jpg\"}', 'upc' => '074644679922', 'provider' => 'bestbuy'],\n ['name' => \"Ionisation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ionisation-cd/760171.p?id=1675736&skuId=760171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=760171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7601\\/760171.jpg\"}', 'upc' => '074644584424', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Big Bands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-big-bands-cd/760714.p?id=67829&skuId=760714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=760714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0760\\/0760714_sa.jpg\"}', 'upc' => '074644534122', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Big Bands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-big-bands-cd/760741.p?id=64585&skuId=760741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=760741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7607\\/760741.jpg\"}', 'upc' => '074644534429', 'provider' => 'bestbuy'],\n ['name' => \"Concertos For 2 & 3 Pianos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concertos-for-2-3-pianos-cd/767281.p?id=1684342&skuId=767281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=767281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0767\\/0767281_sa.jpg\"}', 'upc' => '074644491524', 'provider' => 'bestbuy'],\n ['name' => \"Benny Goodman Sextet Featuring Charlie Christian - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benny-goodman-sextet-featuring-charlie-christian-cd/767441.p?id=66811&skuId=767441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=767441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7674\\/767441_sa.jpg\"}', 'upc' => '074644514421', 'provider' => 'bestbuy'],\n ['name' => \"Supp¿: Overtures / Zubin Mehta, Wiener Philharmoniker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supp-overtures-zubin-mehta-wiener-philharmoniker-cd/767842.p?id=1675709&skuId=767842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=767842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7678\\/767842.jpg\"}', 'upc' => '074644493221', 'provider' => 'bestbuy'],\n ['name' => \"Metropolis [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metropolis-original-soundtrack-cd-original-soundtrack/769724.p?id=91545&skuId=769724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=769724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0769\\/0769724_sa.jpg\"}', 'upc' => '074643952620', 'provider' => 'bestbuy'],\n ['name' => \"Starchild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starchild-cd/769751.p?id=90569&skuId=769751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=769751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7697\\/769751.jpg\"}', 'upc' => '074643952828', 'provider' => 'bestbuy'],\n ['name' => \"Yentl - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yentl-cd-original-soundtrack/770419.p?id=104968&skuId=770419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=770419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7704\\/770419_sa.jpg\"}', 'upc' => '074643915229', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Sing-Along with Mitch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-sing-along-with-mitch-cd/772989.p?id=91713&skuId=772989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=772989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0772\\/0772989_sa.jpg\"}', 'upc' => '074643829823', 'provider' => 'bestbuy'],\n ['name' => \"Christmas with Johnny Mathis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-with-johnny-mathis-cd/773069.p?id=90790&skuId=773069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=773069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7730\\/773069_sa.jpg\"}', 'upc' => '074643830621', 'provider' => 'bestbuy'],\n ['name' => \"Symphonic Variations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonic-variations-cd/773185.p?id=1675684&skuId=773185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=773185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7731\\/773185.jpg\"}', 'upc' => '074643781220', 'provider' => 'bestbuy'],\n ['name' => \"Concert For Violin, Piano & String Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concert-for-violin-piano-string-quartet-cd/773210.p?id=1684284&skuId=773210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=773210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0773\\/0773210_sa.jpg\"}', 'upc' => '074643781428', 'provider' => 'bestbuy'],\n ['name' => \"The Jacksons: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jacksons-live-cd/774086.p?id=1818899&skuId=774086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=774086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7740\\/774086.jpg\"}', 'upc' => '886972789620', 'provider' => 'bestbuy'],\n ['name' => \"Gershwin Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gershwin-live-cd/774567.p?id=1692873&skuId=774567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=774567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0774\\/0774567_sa.jpg\"}', 'upc' => '074643727723', 'provider' => 'bestbuy'],\n ['name' => \"I've Got the Rock'n'Rolls Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ive-got-the-rocknrolls-again-cd/774807.p?id=94723&skuId=774807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=774807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7748\\/774807.jpg\"}', 'upc' => '074643736428', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/776841.p?id=92371&skuId=776841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=776841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0776\\/0776841_sa.jpg\"}', 'upc' => '074643597623', 'provider' => 'bestbuy'],\n ['name' => \"Muddy \\\"Mississippi\\\" Waters Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/muddy-mississippi-waters-live-cd/777243.p?id=2293095&skuId=777243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=777243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0777\\/0777243_sa.jpg\"}', 'upc' => '074643571227', 'provider' => 'bestbuy'],\n ['name' => \"Restless Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/restless-nights-cd/777350.p?id=75494&skuId=777350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=777350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0777\\/0777350_sa.jpg\"}', 'upc' => '074643579926', 'provider' => 'bestbuy'],\n ['name' => \"Writer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/writer-cd/778091.p?id=87964&skuId=778091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=778091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7780\\/778091_sa.jpg\"}', 'upc' => '074643494427', 'provider' => 'bestbuy'],\n ['name' => \"Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-cd/778108.p?id=87958&skuId=778108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=778108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0778\\/0778108_sa.jpg\"}', 'upc' => '074643494922', 'provider' => 'bestbuy'],\n ['name' => \"Thoroughbred - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thoroughbred-cd/778162.p?id=87962&skuId=778162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=778162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7781\\/778162_sa.jpg\"}', 'upc' => '074643496322', 'provider' => 'bestbuy'],\n ['name' => \"Rejoice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rejoice-cd/778778.p?id=81548&skuId=778778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=778778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0778\\/0778778_sa.jpg\"}', 'upc' => '074643476225', 'provider' => 'bestbuy'],\n ['name' => \"Trombone Master - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trombone-master-cd/780391.p?id=68016&skuId=780391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=780391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7803\\/780391_sa.jpg\"}', 'upc' => '074644444322', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Monument] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-monument-cd/781336.p?id=91087&skuId=781336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=781336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0781\\/0781336_sa.jpg\"}', 'upc' => '079894435328', 'provider' => 'bestbuy'],\n ['name' => \"Big Deal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-deal-cd/782193.p?id=273705&skuId=782193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=782193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '074644409826', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Lament - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-lament-cd/782264.p?id=67449&skuId=782264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=782264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7822\\/782264.jpg\"}', 'upc' => '074644411928', 'provider' => 'bestbuy'],\n ['name' => \"Symphony In 3 Movements - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-in-3-movements-cd/782353.p?id=1675625&skuId=782353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=782353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0782\\/0782353_sa.jpg\"}', 'upc' => '074644243420', 'provider' => 'bestbuy'],\n ['name' => \"Cello Sonata 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cello-sonata-4-cd/784119.p?id=1676835&skuId=784119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=784119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0784\\/0784119_sa.jpg\"}', 'upc' => '074644212129', 'provider' => 'bestbuy'],\n ['name' => \"Bigger & Deffer [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bigger-deffer-pa-cd/784681.p?id=89490&skuId=784681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=784681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7846\\/784681_sa.jpg\"}', 'upc' => '731452735324', 'provider' => 'bestbuy'],\n ['name' => \"Refuge Denied - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/refuge-denied-cd/785216.p?id=97845&skuId=785216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=785216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0785\\/0785216_sa.jpg\"}', 'upc' => '074644092028', 'provider' => 'bestbuy'],\n ['name' => \"Libra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/libra-cd/786590.p?id=86082&skuId=786590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=786590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7865\\/786590.jpg\"}', 'upc' => '074644018028', 'provider' => 'bestbuy'],\n ['name' => \"17 Most Requested Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/17-most-requested-songs-cd/787250.p?id=102885&skuId=787250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=787250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7872\\/787250.jpg\"}', 'upc' => '074644021622', 'provider' => 'bestbuy'],\n ['name' => \"Two Steps from the Move - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-steps-from-the-move-cd/787633.p?id=84764&skuId=787633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=787633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7876\\/787633_sa.jpg\"}', 'upc' => '074643961424', 'provider' => 'bestbuy'],\n ['name' => \"Dream of a Lifetime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-of-a-lifetime-cd/788259.p?id=83387&skuId=788259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7882\\/788259_sa.jpg\"}', 'upc' => '074643991629', 'provider' => 'bestbuy'],\n ['name' => \"Columbia Historic Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/columbia-historic-edition-cd/788464.p?id=72444&skuId=788464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788464_sa.jpg\"}', 'upc' => '074643999823', 'provider' => 'bestbuy'],\n ['name' => \"From Rocky Top to Muddy Bottom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-rocky-top-to-muddy-bottom-cd/788767.p?id=287321&skuId=788767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788767_sa.jpg\"}', 'upc' => '027297900820', 'provider' => 'bestbuy'],\n ['name' => \"The Bluegrass Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bluegrass-collection-cd/788794.p?id=94109&skuId=788794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788794_sa.jpg\"}', 'upc' => '027297901124', 'provider' => 'bestbuy'],\n ['name' => \"24 Greatest Bluegrass Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-greatest-bluegrass-hits-cd-various/788801.p?id=287307&skuId=788801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788801_sa.jpg\"}', 'upc' => '027297901223', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Bluegrass Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-bluegrass-album-cd/788847.p?id=94111&skuId=788847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788847_sa.jpg\"}', 'upc' => '027297901629', 'provider' => 'bestbuy'],\n ['name' => \"Merle Travis Story: 24 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merle-travis-story-24-greatest-hits-cd/788865.p?id=102182&skuId=788865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788865_sa.jpg\"}', 'upc' => '027297901827', 'provider' => 'bestbuy'],\n ['name' => \"The Jim & Jesse Story: 24 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jim-jesse-story-24-greatest-hits-cd/788892.p?id=1548484&skuId=788892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788892_sa.jpg\"}', 'upc' => '027297902220', 'provider' => 'bestbuy'],\n ['name' => \"The Texas Fiddle Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-texas-fiddle-collection-cd/788918.p?id=83654&skuId=788918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788918_sa.jpg\"}', 'upc' => '027297902725', 'provider' => 'bestbuy'],\n ['name' => \"50 Years of Bluegrass Hits, Vol. 2 [1995] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-years-of-bluegrass-hits-vol-2-1995-various-cd/788954.p?id=75176&skuId=788954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7889\\/788954.jpg\"}', 'upc' => '027297903425', 'provider' => 'bestbuy'],\n ['name' => \"50 Years of Bluegrass Hits, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-years-of-bluegrass-hits-vol-3-cd-various/788972.p?id=75177&skuId=788972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0788\\/0788972_sa.jpg\"}', 'upc' => '027297903524', 'provider' => 'bestbuy'],\n ['name' => \"50 Years of Bluegrass Hits, Vol. 4 [1995] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-years-of-bluegrass-hits-vol-4-1995-cd-various/788990.p?id=245450&skuId=788990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=788990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7889\\/788990.jpg\"}', 'upc' => '027297903623', 'provider' => 'bestbuy'],\n ['name' => \"Fiddlers' Hall of Fame: 28 Old-Time Swing &... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddlers-hall-of-fame-28-old-time-swing-cd-various/789016.p?id=82152&skuId=789016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=789016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0789\\/0789016_sa.jpg\"}', 'upc' => '027297903722', 'provider' => 'bestbuy'],\n ['name' => \"Grassroots to Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grassroots-to-bluegrass-cd/789070.p?id=104573&skuId=789070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=789070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7890\\/789070_sa.jpg\"}', 'upc' => '027297904125', 'provider' => 'bestbuy'],\n ['name' => \"Country Guitar Thunder (1977-1981) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-guitar-thunder-1977-1981-cd/789150.p?id=287310&skuId=789150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=789150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0789\\/0789150_sa.jpg\"}', 'upc' => '027297490123', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Bluegrass Pickers - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-bluegrass-pickers-cd-various/789212.p?id=287305&skuId=789212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=789212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7892\\/789212_sa.jpg\"}', 'upc' => '027297590526', 'provider' => 'bestbuy'],\n ['name' => \"Dixie Fried - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dixie-fried-cd/789338.p?id=72488&skuId=789338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=789338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7893\\/789338_sa.jpg\"}', 'upc' => '027297627024', 'provider' => 'bestbuy'],\n ['name' => \"Freddie Freeloader - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freddie-freeloader-cd/790996.p?id=67360&skuId=790996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=790996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7909\\/790996.jpg\"}', 'upc' => '081757630221', 'provider' => 'bestbuy'],\n ['name' => \"Catalogue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/catalogue-cd/792896.p?id=86021&skuId=792896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=792896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0792\\/0792896_sa.jpg\"}', 'upc' => '024596103327', 'provider' => 'bestbuy'],\n ['name' => \"Plague Mass (1984 End of the Epidemic) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plague-mass-1984-end-of-the-epidemic-cd/792958.p?id=83187&skuId=792958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=792958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0792\\/0792958_sa.jpg\"}', 'upc' => '024596104324', 'provider' => 'bestbuy'],\n ['name' => \"Estrangeiro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/estrangeiro-cd/793699.p?id=103062&skuId=793699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=793699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0793\\/0793699_sa.jpg\"}', 'upc' => '075596089821', 'provider' => 'bestbuy'],\n ['name' => \"Still the One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-the-one-cd/793733.p?id=94084&skuId=793733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=793733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7937\\/793733.jpg\"}', 'upc' => '075596090926', 'provider' => 'bestbuy'],\n ['name' => \"Robin Holcomb - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robin-holcomb-cd/793877.p?id=85474&skuId=793877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=793877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/7938\\/793877.jpg\"}', 'upc' => '075596098328', 'provider' => 'bestbuy'],\n ['name' => \"Authentic Sound Effects, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/authentic-sound-effects-vol-2-cd-various/794108.p?id=99610&skuId=794108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=794108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7941\\/794108_sa.jpg\"}', 'upc' => '075596073226', 'provider' => 'bestbuy'],\n ['name' => \"Authentic Sound Effects, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/authentic-sound-effects-vol-3-cd-various/794117.p?id=99611&skuId=794117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=794117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0794\\/0794117_sa.jpg\"}', 'upc' => '075596073325', 'provider' => 'bestbuy'],\n ['name' => \"I Commit to Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-commit-to-love-cd/794849.p?id=85306&skuId=794849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=794849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0794\\/0794849_sa.jpg\"}', 'upc' => '075596048729', 'provider' => 'bestbuy'],\n ['name' => \"All-Stars of Polkaland, USA - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-stars-of-polkaland-usa-cd/798113.p?id=95156&skuId=798113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=798113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0798\\/0798113_sa.jpg\"}', 'upc' => '012676024921', 'provider' => 'bestbuy'],\n ['name' => \"Reel to Reel [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reel-to-reel-pa-cd/799005.p?id=84035&skuId=799005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=799005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7990\\/799005_sa.jpg\"}', 'upc' => '075596131421', 'provider' => 'bestbuy'],\n ['name' => \"John Adams: Nixon in China - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-adams-nixon-in-china-cd/799274.p?id=2193526&skuId=799274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=799274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/7992\\/799274_sa.jpg\"}', 'upc' => '075597917727', 'provider' => 'bestbuy'],\n ['name' => \"Music for Two Guitars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-two-guitars-cd/800592.p?id=2275425&skuId=800592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=800592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0800\\/0800592_sa.jpg\"}', 'upc' => '075597911626', 'provider' => 'bestbuy'],\n ['name' => \"Japan: Traditional Vocal and Instrumental Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/japan-traditional-vocal-and-instrumental-music-cd/801109.p?id=86740&skuId=801109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=801109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0801\\/0801109_sa.jpg\"}', 'upc' => '075597207224', 'provider' => 'bestbuy'],\n ['name' => \"Piano Pieces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-pieces-cd/801403.p?id=1675626&skuId=801403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=801403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8014\\/801403.jpg\"}', 'upc' => '075597915426', 'provider' => 'bestbuy'],\n ['name' => \"Tibet: Buddhists - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tibet-buddhists-cd-various/802073.p?id=2222820&skuId=802073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=802073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0802\\/0802073_sa.jpg\"}', 'upc' => '075597919820', 'provider' => 'bestbuy'],\n ['name' => \"Playing Possum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playing-possum-cd/806854.p?id=98777&skuId=806854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=806854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8068\\/806854_sa.jpg\"}', 'upc' => '075596086523', 'provider' => 'bestbuy'],\n ['name' => \"24 Classic Originals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-classic-originals-cd/807997.p?id=1416342&skuId=807997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=807997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8079\\/807997.jpg\"}', 'upc' => '025218242622', 'provider' => 'bestbuy'],\n ['name' => \"Dave Brubeck & Paul Desmond - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dave-brubeck-paul-desmond-cd/808004.p?id=64661&skuId=808004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808004_sa.jpg\"}', 'upc' => '025218242721', 'provider' => 'bestbuy'],\n ['name' => \"Stardust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stardust-cd/808013.p?id=64652&skuId=808013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808013_sa.jpg\"}', 'upc' => '025218242820', 'provider' => 'bestbuy'],\n ['name' => \"Featuring Paul Desmond in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/featuring-paul-desmond-in-concert-cd/808059.p?id=64643&skuId=808059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8080\\/808059_sa.jpg\"}', 'upc' => '025218301329', 'provider' => 'bestbuy'],\n ['name' => \"The Lenny Bruce Originals, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lenny-bruce-originals-vol-1-cd/808068.p?id=76151&skuId=808068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8080\\/808068_sa.jpg\"}', 'upc' => '025218302326', 'provider' => 'bestbuy'],\n ['name' => \"Bread & Roses Festival 1977 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bread-roses-festival-1977-cd-various/808086.p?id=75797&skuId=808086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808086_sa.jpg\"}', 'upc' => '025218790925', 'provider' => 'bestbuy'],\n ['name' => \"Living Proof - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-proof-cd/808095.p?id=101037&skuId=808095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8080\\/808095_sa.jpg\"}', 'upc' => '025218791021', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/808157.p?id=67032&skuId=808157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808157_sa.jpg\"}', 'upc' => '025218770620', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Mr. T - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-mr-t-cd/808175.p?id=71555&skuId=808175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808175_sa.jpg\"}', 'upc' => '025218770828', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/808184.p?id=91118&skuId=808184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808184_sa.jpg\"}', 'upc' => '025218770927', 'provider' => 'bestbuy'],\n ['name' => \"A Boy Named Charlie Brown [Original Soundtrack] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-boy-named-charlie-brown-original-soundtrack-cd/808200.p?id=67028&skuId=808200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8082\\/808200_sa.jpg\"}', 'upc' => '025218843027', 'provider' => 'bestbuy'],\n ['name' => \"Blues in the Night, Vol. 1: The Early Show - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-in-the-night-vol-1-the-early-show-cd/808264.p?id=86643&skuId=808264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808264_sa.jpg\"}', 'upc' => '025218964722', 'provider' => 'bestbuy'],\n ['name' => \"The Late Show: Blues in the Night, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-late-show-blues-in-the-night-vol-2-cd/808326.p?id=86644&skuId=808326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8083\\/808326_sa.jpg\"}', 'upc' => '025218965521', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/808433.p?id=101283&skuId=808433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808433_sa.jpg\"}', 'upc' => '025218451024', 'provider' => 'bestbuy'],\n ['name' => \"One Flew Over the Cuckoo's Nest [Original... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-flew-over-the-cuckoos-nest-original-cd-original-soundtrack/808530.p?id=93955&skuId=808530&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808530', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8085\\/808530.jpg\"}', 'upc' => '025218453127', 'provider' => 'bestbuy'],\n ['name' => \"Blues on Broadway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-on-broadway-cd/808629.p?id=75982&skuId=808629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808629_sa.jpg\"}', 'upc' => '025218966221', 'provider' => 'bestbuy'],\n ['name' => \"Mosquito Coast (Original Soundtrack... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mosquito-coast-original-soundtrack-cd-original-soundtrack/808656.p?id=92356&skuId=808656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808656_sa.jpg\"}', 'upc' => '025218210522', 'provider' => 'bestbuy'],\n ['name' => \"The Unbearable Lightness of Being, Film Score - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-unbearable-lightness-of-being-film-score-cd-original-soundtrack/808665.p?id=102762&skuId=808665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808665_sa.jpg\"}', 'upc' => '025218210621', 'provider' => 'bestbuy'],\n ['name' => \"At Play in the Fields of the Lord - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-play-in-the-fields-of-the-lord-cd-original-soundtrack/808674.p?id=73380&skuId=808674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808674_sa.jpg\"}', 'upc' => '025218210720', 'provider' => 'bestbuy'],\n ['name' => \"Spoon Concerts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spoon-concerts-cd/808683.p?id=1366055&skuId=808683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8086\\/808683_sa.jpg\"}', 'upc' => '025218240123', 'provider' => 'bestbuy'],\n ['name' => \"Double Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-blues-cd/808692.p?id=85655&skuId=808692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8086\\/808692_sa.jpg\"}', 'upc' => '025218240222', 'provider' => 'bestbuy'],\n ['name' => \"Cal Tjader Plays Harold Arlen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cal-tjader-plays-harold-arlen-cd/808709.p?id=225504&skuId=808709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808709_sa.jpg\"}', 'upc' => '025218247528', 'provider' => 'bestbuy'],\n ['name' => \"Boogie Chillun [Charly] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-chillun-charly-cd/808718.p?id=85599&skuId=808718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8087\\/808718_sa.jpg\"}', 'upc' => '025218240628', 'provider' => 'bestbuy'],\n ['name' => \"Blues, Songs and Ballads [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-songs-and-ballads-compilation-cd/808727.p?id=2295189&skuId=808727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8087\\/808727_sa.jpg\"}', 'upc' => '025218240925', 'provider' => 'bestbuy'],\n ['name' => \"Inside Dave Van Ronk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inside-dave-van-ronk-cd/808736.p?id=102942&skuId=808736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8087\\/808736_sa.jpg\"}', 'upc' => '025218241021', 'provider' => 'bestbuy'],\n ['name' => \"Ragas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ragas-cd/808745.p?id=98498&skuId=808745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808745_sa.jpg\"}', 'upc' => '025218241427', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Special - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-special-cd/808754.p?id=1562188&skuId=808754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808754_sa.jpg\"}', 'upc' => '025218242127', 'provider' => 'bestbuy'],\n ['name' => \"Best of Max Roach and Clifford Brown in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-max-roach-and-clifford-brown-in-concert-cd/808889.p?id=64578&skuId=808889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808889_sa.jpg\"}', 'upc' => '052824001824', 'provider' => 'bestbuy'],\n ['name' => \"Machito at the Crescendo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/machito-at-the-crescendo-cd/808914.p?id=68672&skuId=808914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8089\\/808914.jpg\"}', 'upc' => '052824005822', 'provider' => 'bestbuy'],\n ['name' => \"The Original Reunion of the Glenn Miller Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-reunion-of-the-glenn-miller-band-cd/808923.p?id=69142&skuId=808923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8089\\/808923_sa.jpg\"}', 'upc' => '052824007628', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Parade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-parade-cd/808932.p?id=72726&skuId=808932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8089\\/808932_sa.jpg\"}', 'upc' => '052824051829', 'provider' => 'bestbuy'],\n ['name' => \"Magic [EP] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-ep-ep-cd/808941.p?id=82475&skuId=808941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '052841208220', 'provider' => 'bestbuy'],\n ['name' => \"Eartha Kitt In Person at the Plaza - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eartha-kitt-in-person-at-the-plaza-cd/808969.p?id=88218&skuId=808969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808969_sa.jpg\"}', 'upc' => '052824200821', 'provider' => 'bestbuy'],\n ['name' => \"Seeds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seeds-cd/808978.p?id=2398762&skuId=808978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=808978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0808\\/0808978_sa.jpg\"}', 'upc' => '052824202320', 'provider' => 'bestbuy'],\n ['name' => \"Railroad Man [1991] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/railroad-man-1991-cd/809003.p?id=100560&skuId=809003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8090\\/809003_sa.jpg\"}', 'upc' => '052824204126', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Royal Albert Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-royal-albert-hall-cd/809021.p?id=77928&skuId=809021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8090\\/809021.jpg\"}', 'upc' => '052824206922', 'provider' => 'bestbuy'],\n ['name' => \"Knockers Up/Songs for Sinners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/knockers-up-songs-for-sinners-cd/809049.p?id=103506&skuId=809049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8090\\/809049.jpg\"}', 'upc' => '052824207929', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/809058.p?id=79618&skuId=809058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8090\\/809058_sa.jpg\"}', 'upc' => '052824209527', 'provider' => 'bestbuy'],\n ['name' => \"Best of Acker Bilk [GNP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-acker-bilk-gnp-cd/809085.p?id=64301&skuId=809085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8090\\/809085.jpg\"}', 'upc' => '052824211629', 'provider' => 'bestbuy'],\n ['name' => \"Dave Pell's Prez Conference - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dave-pells-prez-conference-cd/809101.p?id=69870&skuId=809101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8091\\/809101_sa.jpg\"}', 'upc' => '052824212428', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Moms & Dads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-moms-dads-cd/809138.p?id=92037&skuId=809138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8091\\/809138.jpg\"}', 'upc' => '052824212923', 'provider' => 'bestbuy'],\n ['name' => \"20 Polkas & Waltzes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-polkas-waltzes-cd/809147.p?id=84785&skuId=809147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8091\\/809147.jpg\"}', 'upc' => '052824213425', 'provider' => 'bestbuy'],\n ['name' => \"In San Francisco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-san-francisco-cd/809165.p?id=95724&skuId=809165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0809\\/0809165_sa.jpg\"}', 'upc' => '052824215825', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Science Fiction Hits, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-science-fiction-hits-vol-3-cd/809183.p?id=98076&skuId=809183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0809\\/0809183_sa.jpg\"}', 'upc' => '052824216327', 'provider' => 'bestbuy'],\n ['name' => \"The Prodigious Piano of Bobby Enriquez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-prodigious-piano-of-bobby-enriquez-cd/809263.p?id=66053&skuId=809263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8092\\/809263.jpg\"}', 'upc' => '052824217928', 'provider' => 'bestbuy'],\n ['name' => \"Behind the Iron Curtain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behind-the-iron-curtain-cd/809307.p?id=90899&skuId=809307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8093\\/809307_sa.jpg\"}', 'upc' => '052824218420', 'provider' => 'bestbuy'],\n ['name' => \"Alive in Concert, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alive-in-concert-vol-1-cd/809325.p?id=89292&skuId=809325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0809\\/0809325_sa.jpg\"}', 'upc' => '052824218826', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek, Vol. 1: The Cage/Where No Man Has... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-vol-1-the-cage-where-no-man-has-cd-original-soundtrack/809469.p?id=2387191&skuId=809469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8094\\/809469.jpg\"}', 'upc' => '052824800625', 'provider' => 'bestbuy'],\n ['name' => \"Children Of A Lesser God - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/children-of-a-lesser-god-cd-original-soundtrack/809478.p?id=2067332&skuId=809478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8094\\/809478.jpg\"}', 'upc' => '052824800724', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Sound Effects from the Original TV... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-sound-effects-from-the-original-tv-cd/809511.p?id=100093&skuId=809511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8095\\/809511.jpg\"}', 'upc' => '052824801028', 'provider' => 'bestbuy'],\n ['name' => \"High Spirits [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-spirits-original-soundtrack-cd-original-soundtrack/809600.p?id=85355&skuId=809600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8096\\/809600_sa.jpg\"}', 'upc' => '052824801622', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek, Vol. 2 [GNP] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-vol-2-gnp-cd-original-soundtrack/809753.p?id=100096&skuId=809753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8097\\/809753_sa.jpg\"}', 'upc' => '052824802520', 'provider' => 'bestbuy'],\n ['name' => \"Live and Kickin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-and-kickin-cd/809968.p?id=97962&skuId=809968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8099\\/809968.jpg\"}', 'upc' => '052824220225', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: Next Generation 2 - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-next-generation-2-cd-original-soundtrack/809977.p?id=2743499&skuId=809977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=809977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0809\\/0809977_sa.jpg\"}', 'upc' => '052824802629', 'provider' => 'bestbuy'],\n ['name' => \"Art Tatum at the Crescendo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-tatum-at-the-crescendo-cd/810028.p?id=71303&skuId=810028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=810028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8100\\/810028_sa.jpg\"}', 'upc' => '052824902527', 'provider' => 'bestbuy'],\n ['name' => \"Los Angeles Concert (1954) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-angeles-concert-1954-cd/810082.p?id=65971&skuId=810082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=810082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8100\\/810082.jpg\"}', 'upc' => '052824904927', 'provider' => 'bestbuy'],\n ['name' => \"Django Reinhardt and Stephane Grappelli - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/django-reinhardt-and-stephane-grappelli-cd/810135.p?id=70291&skuId=810135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=810135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8101\\/810135.jpg\"}', 'upc' => '052824905320', 'provider' => 'bestbuy'],\n ['name' => \"Live in Japan [4CD] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-japan-4cd-box-cd/810206.p?id=65156&skuId=810206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=810206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8102\\/810206_sa.jpg\"}', 'upc' => '011105010221', 'provider' => 'bestbuy'],\n ['name' => \"Deedles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deedles-cd/810304.p?id=70687&skuId=810304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=810304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8103\\/810304_sa.jpg\"}', 'upc' => '011105951029', 'provider' => 'bestbuy'],\n ['name' => \"Fair & Square - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fair-square-cd/812277.p?id=83648&skuId=812277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=812277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0812\\/0812277_sa.jpg\"}', 'upc' => '012928801126', 'provider' => 'bestbuy'],\n ['name' => \"Jimmie Dale Gilmore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jimmie-dale-gilmore-cd/812400.p?id=83649&skuId=812400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=812400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0812\\/0812400_sa.jpg\"}', 'upc' => '012928801829', 'provider' => 'bestbuy'],\n ['name' => \"Blue Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-soul-cd/812428.p?id=103388&skuId=812428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=812428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8124\\/812428.jpg\"}', 'upc' => '012928801928', 'provider' => 'bestbuy'],\n ['name' => \"Live at Slim's, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-slims-vol-1-cd/812605.p?id=103391&skuId=812605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=812605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0812\\/0812605_sa.jpg\"}', 'upc' => '012928802529', 'provider' => 'bestbuy'],\n ['name' => \"Vanessa Bell Armstrong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanessa-bell-armstrong-cd/812767.p?id=73255&skuId=812767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=812767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8127\\/812767_sa.jpg\"}', 'upc' => '012414107428', 'provider' => 'bestbuy'],\n ['name' => \"The Truth About Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-truth-about-christmas-cd/813748.p?id=73254&skuId=813748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=813748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0813\\/0813748_sa.jpg\"}', 'upc' => '012414137227', 'provider' => 'bestbuy'],\n ['name' => \"Blues You Can Use - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-you-can-use-cd/821187.p?id=74982&skuId=821187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821187_sa.jpg\"}', 'upc' => '048021744428', 'provider' => 'bestbuy'],\n ['name' => \"Movin' to the Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/movin-to-the-country-cd/821203.p?id=89376&skuId=821203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8212\\/821203.jpg\"}', 'upc' => '048021744527', 'provider' => 'bestbuy'],\n ['name' => \"Hittin' Where It Hurts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hittin-where-it-hurts-cd/821221.p?id=88689&skuId=821221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8212\\/821221_sa.jpg\"}', 'upc' => '048021744725', 'provider' => 'bestbuy'],\n ['name' => \"Back to Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-back-cd/821230.p?id=89368&skuId=821230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8212\\/821230_sa.jpg\"}', 'upc' => '048021744824', 'provider' => 'bestbuy'],\n ['name' => \"Blues Is Alright, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-is-alright-vol-3-cd-various/821258.p?id=75234&skuId=821258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821258_sa.jpg\"}', 'upc' => '048021744923', 'provider' => 'bestbuy'],\n ['name' => \"Crazy 'Bout You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crazy-bout-you-cd/821294.p?id=101247&skuId=821294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821294_sa.jpg\"}', 'upc' => '048021745227', 'provider' => 'bestbuy'],\n ['name' => \"Still Trapped - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-trapped-cd/821301.p?id=154146&skuId=821301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8213\\/821301_sa.jpg\"}', 'upc' => '048021745425', 'provider' => 'bestbuy'],\n ['name' => \"Champaign IV - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/champaign-iv-cd/821365.p?id=77165&skuId=821365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8213\\/821365_sa.jpg\"}', 'upc' => '048021746125', 'provider' => 'bestbuy'],\n ['name' => \"Love Me Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-me-right-cd/821392.p?id=154217&skuId=821392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821392_sa.jpg\"}', 'upc' => '048021746422', 'provider' => 'bestbuy'],\n ['name' => \"The Legend Lives On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legend-lives-on-cd/821427.p?id=132486&skuId=821427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8214\\/821427_sa.jpg\"}', 'upc' => '048021444922', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/821445.p?id=93517&skuId=821445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821445_sa.jpg\"}', 'upc' => '048021445028', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-hits-vol-1-cd/821463.p?id=104331&skuId=821463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821463_sa.jpg\"}', 'upc' => '048021445127', 'provider' => 'bestbuy'],\n ['name' => \"City Beat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/city-beat-cd/821481.p?id=156315&skuId=821481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821481_sa.jpg\"}', 'upc' => '048021150229', 'provider' => 'bestbuy'],\n ['name' => \"Blues from the Montreux Jazz Festival - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-from-the-montreux-jazz-festival-cd-various/821524.p?id=116031&skuId=821524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8215\\/821524_sa.jpg\"}', 'upc' => '048021200825', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/821579.p?id=86565&skuId=821579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8215\\/821579_sa.jpg\"}', 'upc' => '048021440221', 'provider' => 'bestbuy'],\n ['name' => \"I'll Never Forget - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-never-forget-cd/821793.p?id=87334&skuId=821793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821793_sa.jpg\"}', 'upc' => '048021444021', 'provider' => 'bestbuy'],\n ['name' => \"Thank You Mama - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thank-you-mama-cd/821828.p?id=129910&skuId=821828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821828_sa.jpg\"}', 'upc' => '048021444526', 'provider' => 'bestbuy'],\n ['name' => \"He's My Ever Present Help - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hes-my-ever-present-help-cd/821837.p?id=72770&skuId=821837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821837_sa.jpg\"}', 'upc' => '048021444724', 'provider' => 'bestbuy'],\n ['name' => \"It's Hammertime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-hammertime-cd/821864.p?id=130597&skuId=821864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8218\\/821864.jpg\"}', 'upc' => '048021445226', 'provider' => 'bestbuy'],\n ['name' => \"Stay on the Boat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-on-the-boat-cd/821882.p?id=98335&skuId=821882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821882_sa.jpg\"}', 'upc' => '048021445325', 'provider' => 'bestbuy'],\n ['name' => \"Higher Hope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/higher-hope-cd/821926.p?id=82490&skuId=821926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8219\\/821926.jpg\"}', 'upc' => '048021600526', 'provider' => 'bestbuy'],\n ['name' => \"Live with the Mississippi Mass Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-with-the-mississippi-mass-choir-cd/821944.p?id=112551&skuId=821944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8219\\/821944_sa.jpg\"}', 'upc' => '048021600625', 'provider' => 'bestbuy'],\n ['name' => \"Love Alive IV - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-alive-iv-cd/821953.p?id=85039&skuId=821953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821953_sa.jpg\"}', 'upc' => '048021600724', 'provider' => 'bestbuy'],\n ['name' => \"God Gets the Glory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-gets-the-glory-cd/821971.p?id=91897&skuId=821971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0821\\/0821971_sa.jpg\"}', 'upc' => '048021600823', 'provider' => 'bestbuy'],\n ['name' => \"Live in Detroit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-detroit-cd/821999.p?id=129948&skuId=821999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=821999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8219\\/821999_sa.jpg\"}', 'upc' => '048021600922', 'provider' => 'bestbuy'],\n ['name' => \"The Country Boy Goes Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-country-boy-goes-home-cd/822015.p?id=87205&skuId=822015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=822015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0822\\/0822015_sa.jpg\"}', 'upc' => '048021601028', 'provider' => 'bestbuy'],\n ['name' => \"Misty Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misty-blue-cd/822033.p?id=92206&skuId=822033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=822033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0822\\/0822033_sa.jpg\"}', 'upc' => '048021635122', 'provider' => 'bestbuy'],\n ['name' => \"Down Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-home-cd/822060.p?id=85387&skuId=822060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=822060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8220\\/822060_sa.jpg\"}', 'upc' => '048021740628', 'provider' => 'bestbuy'],\n ['name' => \"This Guy's in Love with You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-guys-in-love-with-you-cd/822998.p?id=70165&skuId=822998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=822998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8229\\/822998.jpg\"}', 'upc' => '025218914628', 'provider' => 'bestbuy'],\n ['name' => \"Jazzhouse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazzhouse-cd/823103.p?id=66103&skuId=823103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823103_sa.jpg\"}', 'upc' => '025218915120', 'provider' => 'bestbuy'],\n ['name' => \"Blue to the 'Bone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-to-the-bone-cd/823247.p?id=68927&skuId=823247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823247_sa.jpg\"}', 'upc' => '025218916325', 'provider' => 'bestbuy'],\n ['name' => \"You're Gonna Hear from Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/youre-gonna-hear-from-me-cd/823265.p?id=66125&skuId=823265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823265_sa.jpg\"}', 'upc' => '025218916424', 'provider' => 'bestbuy'],\n ['name' => \"Uptown/Downtown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uptown-downtown-cd/823327.p?id=71616&skuId=823327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8233\\/823327_sa.jpg\"}', 'upc' => '025218916721', 'provider' => 'bestbuy'],\n ['name' => \"The Solo Sessions, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-solo-sessions-vol-1-cd/823363.p?id=66117&skuId=823363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823363_sa.jpg\"}', 'upc' => '025218917025', 'provider' => 'bestbuy'],\n ['name' => \"Enlightenment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enlightenment-cd/823746.p?id=71596&skuId=823746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823746_sa.jpg\"}', 'upc' => '025218550123', 'provider' => 'bestbuy'],\n ['name' => \"Supertrios - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/supertrios-cd/823755.p?id=71609&skuId=823755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8237\\/823755_sa.jpg\"}', 'upc' => '025218550321', 'provider' => 'bestbuy'],\n ['name' => \"One on One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-on-one-cd/823782.p?id=66889&skuId=823782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8237\\/823782_sa.jpg\"}', 'upc' => '025218918121', 'provider' => 'bestbuy'],\n ['name' => \"Fourmost - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fourmost-cd/823844.p?id=71026&skuId=823844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823844_sa.jpg\"}', 'upc' => '025218918428', 'provider' => 'bestbuy'],\n ['name' => \"Blue in Green [Milestone] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-in-green-milestone-cd/823862.p?id=66097&skuId=823862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=823862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0823\\/0823862_sa.jpg\"}', 'upc' => '025218918527', 'provider' => 'bestbuy'],\n ['name' => \"Portrait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-cd/824004.p?id=65360&skuId=824004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824004_sa.jpg\"}', 'upc' => '025218919227', 'provider' => 'bestbuy'],\n ['name' => \"The Solo Sessions, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-solo-sessions-vol-2-cd/824031.p?id=66118&skuId=824031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8240\\/824031_sa.jpg\"}', 'upc' => '025218919524', 'provider' => 'bestbuy'],\n ['name' => \"Louis Armstrong and King Oliver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louis-armstrong-and-king-oliver-cd/824068.p?id=63763&skuId=824068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824068_sa.jpg\"}', 'upc' => '025218471725', 'provider' => 'bestbuy'],\n ['name' => \"1923-1924 [Milestone] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1923-1924-milestone-cd/824077.p?id=69411&skuId=824077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824077_sa.jpg\"}', 'upc' => '025218471824', 'provider' => 'bestbuy'],\n ['name' => \"Bix Beiderbecke & the Chicago Cornets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bix-beiderbecke-the-chicago-cornets-cd/824086.p?id=64114&skuId=824086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8240\\/824086_sa.jpg\"}', 'upc' => '025218471923', 'provider' => 'bestbuy'],\n ['name' => \"Ma Rainey [Milestone] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ma-rainey-milestone-cd/824102.p?id=95875&skuId=824102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8241\\/824102_sa.jpg\"}', 'upc' => '025218472128', 'provider' => 'bestbuy'],\n ['name' => \"Blind Lemon Jefferson [Milestone] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blind-lemon-jefferson-milestone-cd/824111.p?id=86824&skuId=824111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8241\\/824111.jpg\"}', 'upc' => '025218472227', 'provider' => 'bestbuy'],\n ['name' => \"Great Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-day-cd/824120.p?id=100072&skuId=824120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8241\\/824120_sa.jpg\"}', 'upc' => '025218472821', 'provider' => 'bestbuy'],\n ['name' => \"Don't Stop the Carnival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-stop-the-carnival-cd/824148.p?id=70431&skuId=824148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824148_sa.jpg\"}', 'upc' => '025218550529', 'provider' => 'bestbuy'],\n ['name' => \"His California Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/his-california-album-cd/824344.p?id=74988&skuId=824344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824344_sa.jpg\"}', 'upc' => '008811034924', 'provider' => 'bestbuy'],\n ['name' => \"Wishbone Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wishbone-four-cd/824362.p?id=104581&skuId=824362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0824\\/0824362_sa.jpg\"}', 'upc' => '008811035020', 'provider' => 'bestbuy'],\n ['name' => \"Streets of Fire - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/streets-of-fire-cd-original-soundtrack/824709.p?id=100582&skuId=824709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=824709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8247\\/824709_sa.jpg\"}', 'upc' => '076732549223', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Louis Jordan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-louis-jordan-cd/825325.p?id=87388&skuId=825325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0825\\/0825325_sa.jpg\"}', 'upc' => '076732407929', 'provider' => 'bestbuy'],\n ['name' => \"Patsy Cline Showcase - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/patsy-cline-showcase-cd/825575.p?id=78066&skuId=825575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0825\\/0825575_sa.jpg\"}', 'upc' => '076732008720', 'provider' => 'bestbuy'],\n ['name' => \"Sentimentally Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sentimentally-yours-cd/825600.p?id=78064&skuId=825600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8256\\/825600_sa.jpg\"}', 'upc' => '076732009024', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/825664.p?id=1321319&skuId=825664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0825\\/0825664_sa.jpg\"}', 'upc' => '076732154526', 'provider' => 'bestbuy'],\n ['name' => \"Steppenwolf 7 [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steppenwolf-7-remaster-cd/825799.p?id=100323&skuId=825799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0825\\/0825799_sa.jpg\"}', 'upc' => '076732159828', 'provider' => 'bestbuy'],\n ['name' => \"Chain Reaction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chain-reaction-cd/825977.p?id=65387&skuId=825977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=825977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0825\\/0825977_sa.jpg\"}', 'upc' => '076732164822', 'provider' => 'bestbuy'],\n ['name' => \"I Was Walkin' Through the Woods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-was-walkin-through-the-woods-cd/827270.p?id=84482&skuId=827270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=827270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8272\\/827270_sa.jpg\"}', 'upc' => '076732931523', 'provider' => 'bestbuy'],\n ['name' => \"Silver Anniversary Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silver-anniversary-collection-cd/827911.p?id=102611&skuId=827911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=827911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8279\\/827911_sa.jpg\"}', 'upc' => '076732803523', 'provider' => 'bestbuy'],\n ['name' => \"At the Pershing: But Not for Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-pershing-but-not-for-me-cd/827975.p?id=67795&skuId=827975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=827975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0827\\/0827975_sa.jpg\"}', 'upc' => '076732910825', 'provider' => 'bestbuy'],\n ['name' => \"Hunt for Red October [Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hunt-for-red-october-original-motion-cd-original-soundtrack/828359.p?id=85931&skuId=828359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=828359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0828\\/0828359_sa.jpg\"}', 'upc' => '076732642825', 'provider' => 'bestbuy'],\n ['name' => \"Moanin' in the Moonlight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moanin-in-the-moonlight-cd/829018.p?id=85869&skuId=829018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=829018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8290\\/829018_sa.jpg\"}', 'upc' => '076732590829', 'provider' => 'bestbuy'],\n ['name' => \"Southern Comfort - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southern-comfort-cd/829152.p?id=65397&skuId=829152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=829152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8291\\/829152.jpg\"}', 'upc' => '076732601624', 'provider' => 'bestbuy'],\n ['name' => \"One More Time: The Chess Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-time-the-chess-years-cd/830140.p?id=100429&skuId=830140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8301\\/830140_sa.jpg\"}', 'upc' => '076732602720', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Future [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-future-original-soundtrack-cd-original-soundtrack/830202.p?id=73628&skuId=830202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830202_sa.jpg\"}', 'upc' => '076732614426', 'provider' => 'bestbuy'],\n ['name' => \"Big River: The Adventures Of Huckleberry Finn... - Original Cast Recording - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-river-the-adventures-of-huckleberry-finn-original-cast-recording-cd/830211.p?id=2066095&skuId=830211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8302\\/830211.jpg\"}', 'upc' => '076732614723', 'provider' => 'bestbuy'],\n ['name' => \"Miami Vice II - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miami-vice-ii-cd-original-soundtrack/830373.p?id=2416706&skuId=830373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8303\\/830373_sa.jpg\"}', 'upc' => '076732619223', 'provider' => 'bestbuy'],\n ['name' => \"Me & My Girl - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/me-my-girl-cd-original-cast-recording/830382.p?id=2135549&skuId=830382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8303\\/830382_sa.jpg\"}', 'upc' => '076732619629', 'provider' => 'bestbuy'],\n ['name' => \"Some Kind of Wonderful [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-kind-of-wonderful-original-soundtrack-cd-original-soundtrack/830426.p?id=99414&skuId=830426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8304\\/830426_sa.jpg\"}', 'upc' => '076732620021', 'provider' => 'bestbuy'],\n ['name' => \"Carousel [1987 Studio Cast] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carousel-1987-studio-cast-cd/830505.p?id=2066437&skuId=830505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830505_sa.jpg\"}', 'upc' => '076732620922', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/830774.p?id=91199&skuId=830774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830774_sa.jpg\"}', 'upc' => '076743134128', 'provider' => 'bestbuy'],\n ['name' => \"Captured Live at the Forum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/captured-live-at-the-forum-cd/830783.p?id=101785&skuId=830783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830783_sa.jpg\"}', 'upc' => '076743134227', 'provider' => 'bestbuy'],\n ['name' => \"Cry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-cd/830881.p?id=68269&skuId=830881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830881_sa.jpg\"}', 'upc' => '076743135224', 'provider' => 'bestbuy'],\n ['name' => \"For Ladies Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-ladies-only-cd/830890.p?id=100314&skuId=830890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0830\\/0830890_sa.jpg\"}', 'upc' => '076743135422', 'provider' => 'bestbuy'],\n ['name' => \"Rags to Rufus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rags-to-rufus-cd/830961.p?id=97503&skuId=830961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=830961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8309\\/830961_sa.jpg\"}', 'upc' => '076743136528', 'provider' => 'bestbuy'],\n ['name' => \"The Pointer Sisters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pointer-sisters-cd/831032.p?id=95122&skuId=831032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=831032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8310\\/831032.jpg\"}', 'upc' => '076743137723', 'provider' => 'bestbuy'],\n ['name' => \"50th Anniversary Collection, Vol.1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50th-anniversary-collection-vol-1-cd/833307.p?id=73009&skuId=833307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=833307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8333\\/833307_sa.jpg\"}', 'upc' => '076742204426', 'provider' => 'bestbuy'],\n ['name' => \"Scratch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scratch-cd/834271.p?id=65396&skuId=834271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=834271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0834\\/0834271_sa.jpg\"}', 'upc' => '076741707225', 'provider' => 'bestbuy'],\n ['name' => \"Free as the Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-as-the-wind-cd/834299.p?id=65389&skuId=834299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=834299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0834\\/0834299_sa.jpg\"}', 'upc' => '076741707324', 'provider' => 'bestbuy'],\n ['name' => \"Christmas All over the World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-all-over-the-world-cd/834459.p?id=93122&skuId=834459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=834459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8344\\/834459_sa.jpg\"}', 'upc' => '076741904020', 'provider' => 'bestbuy'],\n ['name' => \"An American Tail - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-american-tail-cd-original-soundtrack/834486.p?id=72898&skuId=834486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=834486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8344\\/834486_sa.jpg\"}', 'upc' => '076741909629', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Memories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-memories-cd/835145.p?id=103481&skuId=835145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8351\\/835145.jpg\"}', 'upc' => '008811006723', 'provider' => 'bestbuy'],\n ['name' => \"Following Yonder Star - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/following-yonder-star-cd/835154.p?id=81781&skuId=835154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8351\\/835154_sa.jpg\"}', 'upc' => '008811006822', 'provider' => 'bestbuy'],\n ['name' => \"Country Music Hall of Fame Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-music-hall-of-fame-series-cd/835270.p?id=89979&skuId=835270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8352\\/835270_sa.jpg\"}', 'upc' => '008811008321', 'provider' => 'bestbuy'],\n ['name' => \"Country Music Hall of Fame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-music-hall-of-fame-cd/835378.p?id=99486&skuId=835378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835378_sa.jpg\"}', 'upc' => '008811009021', 'provider' => 'bestbuy'],\n ['name' => \"Come on Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-on-over-cd/835476.p?id=93262&skuId=835476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8354\\/835476_sa.jpg\"}', 'upc' => '076731108223', 'provider' => 'bestbuy'],\n ['name' => \"Strait from the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strait-from-the-heart-cd/835519.p?id=100552&skuId=835519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835519_sa.jpg\"}', 'upc' => '076743111723', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-mca-cd/835528.p?id=103641&skuId=835528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8355\\/835528.jpg\"}', 'upc' => '076743112829', 'provider' => 'bestbuy'],\n ['name' => \"Hawaiian Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaiian-favorites-cd/835537.p?id=73160&skuId=835537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8355\\/835537.jpg\"}', 'upc' => '076731113821', 'provider' => 'bestbuy'],\n ['name' => \"White Christmas [MCA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-christmas-mca-cd/835573.p?id=79235&skuId=835573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835573_sa.jpg\"}', 'upc' => '076731114323', 'provider' => 'bestbuy'],\n ['name' => \"Hawaii's Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaiis-greatest-hits-vol-1-cd/835591.p?id=93142&skuId=835591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835591_sa.jpg\"}', 'upc' => '076731114927', 'provider' => 'bestbuy'],\n ['name' => \"T.N.T. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/t-n-t-cd/835617.p?id=102452&skuId=835617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835617_sa.jpg\"}', 'upc' => '076743115226', 'provider' => 'bestbuy'],\n ['name' => \"Memorial Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-album-cd/835662.p?id=72394&skuId=835662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8356\\/835662_sa.jpg\"}', 'upc' => '076731118321', 'provider' => 'bestbuy'],\n ['name' => \"The Cowboy Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cowboy-way-cd/835699.p?id=96665&skuId=835699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0835\\/0835699_sa.jpg\"}', 'upc' => '076731124421', 'provider' => 'bestbuy'],\n ['name' => \"Chuck Berry Is on Top - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chuck-berry-is-on-top-cd/835724.p?id=74516&skuId=835724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=835724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8357\\/835724_sa.jpg\"}', 'upc' => '076731126029', 'provider' => 'bestbuy'],\n ['name' => \"Best Little Whorehouse In Texas - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-little-whorehouse-in-texas-cd-original-soundtrack/836251.p?id=2416680&skuId=836251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=836251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0836\\/0836251_sa.jpg\"}', 'upc' => '076731100722', 'provider' => 'bestbuy'],\n ['name' => \"Steppenwolf - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steppenwolf-cd/836260.p?id=100321&skuId=836260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=836260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0836\\/0836260_sa.jpg\"}', 'upc' => '076731102023', 'provider' => 'bestbuy'],\n ['name' => \"Steppenwolf the Second - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steppenwolf-the-second-cd/836279.p?id=100322&skuId=836279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=836279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0836\\/0836279_sa.jpg\"}', 'upc' => '076731102122', 'provider' => 'bestbuy'],\n ['name' => \"Have a Holly Jolly Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/have-a-holly-jolly-christmas-cd/836625.p?id=86452&skuId=836625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=836625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0836\\/0836625_sa.jpg\"}', 'upc' => '076742599225', 'provider' => 'bestbuy'],\n ['name' => \"12 Songs from Call Me Madam [Remaster] - Remastered Original Broadway Cast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-songs-from-call-me-madam-remaster-remastered-original-broadway-cast-cd/837438.p?id=2069397&skuId=837438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=837438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8374\\/837438.jpg\"}', 'upc' => '008811052126', 'provider' => 'bestbuy'],\n ['name' => \"Door To Door - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/door-to-door-cd/837615.p?id=2387546&skuId=837615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=837615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8376\\/837615_sa.jpg\"}', 'upc' => '076732932223', 'provider' => 'bestbuy'],\n ['name' => \"The Godfather - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-godfather-cd-original-soundtrack/837893.p?id=83760&skuId=837893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=837893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0837\\/0837893_sa.jpg\"}', 'upc' => '008811023126', 'provider' => 'bestbuy'],\n ['name' => \"The Godfather, Pt. 2 - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-godfather-pt-2-cd-original-soundtrack/837900.p?id=83761&skuId=837900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=837900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8379\\/837900.jpg\"}', 'upc' => '008811023225', 'provider' => 'bestbuy'],\n ['name' => \"Rufusized - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rufusized-cd/837919.p?id=97505&skuId=837919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=837919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0837\\/0837919_sa.jpg\"}', 'upc' => '008811023621', 'provider' => 'bestbuy'],\n ['name' => \"Lady Sings the Blues [Original Soundtrack] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lady-sings-the-blues-original-soundtrack-cd/841771.p?id=2065354&skuId=841771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=841771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0841\\/0841771_sa.jpg\"}', 'upc' => '737463075824', 'provider' => 'bestbuy'],\n ['name' => \"Signed, Sealed and Delivered - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/signed-sealed-and-delivered-cd/843289.p?id=104680&skuId=843289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=843289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0843\\/0843289_sa.jpg\"}', 'upc' => '737463517621', 'provider' => 'bestbuy'],\n ['name' => \"My Cherie Amour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-cherie-amour-cd/843323.p?id=2412085&skuId=843323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=843323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8433\\/843323.jpg\"}', 'upc' => '737463517928', 'provider' => 'bestbuy'],\n ['name' => \"Irons in the Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irons-in-the-fire-cd/843564.p?id=90564&skuId=843564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=843564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8435\\/843564.jpg\"}', 'upc' => '737463537223', 'provider' => 'bestbuy'],\n ['name' => \"In a Special Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-a-special-way-cd/843822.p?id=80027&skuId=843822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=843822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8438\\/843822.jpg\"}', 'upc' => '737463539326', 'provider' => 'bestbuy'],\n ['name' => \"Bill Cosby Himself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-cosby-himself-cd/844297.p?id=78732&skuId=844297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=844297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8442\\/844297_sa.jpg\"}', 'upc' => '737463536424', 'provider' => 'bestbuy'],\n ['name' => \"To Be Continued... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-be-continued-cd/844368.p?id=1588457&skuId=844368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=844368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0844\\/0844368_sa.jpg\"}', 'upc' => '050109620722', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Card - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-card-cd/845447.p?id=101380&skuId=845447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=845447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8454\\/845447_sa.jpg\"}', 'upc' => '737463525121', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Spinners [Atlantic] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-spinners-atlantic-cd/845599.p?id=99861&skuId=845599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=845599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0845\\/0845599_sa.jpg\"}', 'upc' => '737463519922', 'provider' => 'bestbuy'],\n ['name' => \"Commodores - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/commodores-cd/846302.p?id=78458&skuId=846302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=846302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/846302.jpg\"}', 'upc' => '737463522229', 'provider' => 'bestbuy'],\n ['name' => \"Come Get It! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-get-it-cd/847025.p?id=86651&skuId=847025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=847025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0847\\/0847025_sa.jpg\"}', 'upc' => '737463526326', 'provider' => 'bestbuy'],\n ['name' => \"Songs Of Chivalry Medieval Songs & Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-chivalry-medieval-songs-dances-cd/847999.p?id=1763284&skuId=847999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=847999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8479\\/847999.jpg\"}', 'upc' => '710357500626', 'provider' => 'bestbuy'],\n ['name' => \"12 Nocturnes From Op 9, 15, 27, 48, 55, 62 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-nocturnes-from-op-9-15-27-48-55-62-cd/848051.p?id=1762352&skuId=848051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8480\\/848051.jpg\"}', 'upc' => '710357501227', 'provider' => 'bestbuy'],\n ['name' => \"Catigas Of Santa Maria Of Alfonso X El Sabio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/catigas-of-santa-maria-of-alfonso-x-el-sabio-cd/848239.p?id=1682455&skuId=848239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8482\\/848239.jpg\"}', 'upc' => '710357508127', 'provider' => 'bestbuy'],\n ['name' => \"Mass For Pentecost/5 Motets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mass-for-pentecost-5-motets-cd/848417.p?id=1779115&skuId=848417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8484\\/848417.jpg\"}', 'upc' => '710357510021', 'provider' => 'bestbuy'],\n ['name' => \"Mozart Horn Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mozart-horn-concertos-cd/848444.p?id=2664896&skuId=848444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8484\\/848444.jpg\"}', 'upc' => '710357510427', 'provider' => 'bestbuy'],\n ['name' => \"24 Preludes For Piano Op11 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/24-preludes-for-piano-op11-cd/848550.p?id=1676803&skuId=848550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8485\\/848550.jpg\"}', 'upc' => '710357502620', 'provider' => 'bestbuy'],\n ['name' => \"Art Of Youra Guller (Prelude & Fugue/Ballade 4) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-youra-guller-prelude-fugue-ballade-4-cd/848578.p?id=1690008&skuId=848578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=848578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8485\\/848578.jpg\"}', 'upc' => '710357503023', 'provider' => 'bestbuy'],\n ['name' => \"Requiem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/requiem-cd/849112.p?id=2666500&skuId=849112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8491\\/849112.jpg\"}', 'upc' => '710357524127', 'provider' => 'bestbuy'],\n ['name' => \"Church & Choral Music Incl Wedding Anthem Wales - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/church-choral-music-incl-wedding-anthem-wales-cd/849130.p?id=1697287&skuId=849130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8491\\/849130.jpg\"}', 'upc' => '710357524325', 'provider' => 'bestbuy'],\n ['name' => \"Cante Flamenco - Live - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cante-flamenco-live-cd-various/849210.p?id=1397311&skuId=849210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8492\\/849210.jpg\"}', 'upc' => '710357525124', 'provider' => 'bestbuy'],\n ['name' => \"Great Singers 2: 1903-39 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-singers-2-1903-39-cd-various/849283.p?id=1676932&skuId=849283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8492\\/849283.jpg\"}', 'upc' => '710357781223', 'provider' => 'bestbuy'],\n ['name' => \"Mendelssohn: Complete String Symphonies Vol 3 / Boughton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mendelssohn-complete-string-symphonies-vol-3-boughton-cd/849611.p?id=1675637&skuId=849611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8496\\/849611.jpg\"}', 'upc' => '710357514326', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies 1-9 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-1-9-cd/849620.p?id=1679040&skuId=849620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0849\\/0849620_sa.jpg\"}', 'upc' => '710357514425', 'provider' => 'bestbuy'],\n ['name' => \"Dance Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-suite-cd/849791.p?id=2666504&skuId=849791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8497\\/849791.jpg\"}', 'upc' => '710357530920', 'provider' => 'bestbuy'],\n ['name' => \"Fiddle Sticks: Irish Traditional Music from... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddle-sticks-irish-traditional-music-from-cd/849835.p?id=1404297&skuId=849835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8498\\/849835.jpg\"}', 'upc' => '710357532023', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/849862.p?id=1760891&skuId=849862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8498\\/849862.jpg\"}', 'upc' => '710357781421', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/849871.p?id=1697301&skuId=849871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8498\\/849871.jpg\"}', 'upc' => '710357781520', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/849880.p?id=1675805&skuId=849880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8498\\/849880.jpg\"}', 'upc' => '710357781629', 'provider' => 'bestbuy'],\n ['name' => \"1925-1940 2: Opera Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1925-1940-2-opera-arias-cd/849899.p?id=1675806&skuId=849899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8498\\/849899.jpg\"}', 'upc' => '710357781728', 'provider' => 'bestbuy'],\n ['name' => \"1909-1940 Vol 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1909-1940-vol-2-cd/849906.p?id=1766491&skuId=849906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8499\\/849906.jpg\"}', 'upc' => '710357781827', 'provider' => 'bestbuy'],\n ['name' => \"Prima Voce - Covent Garden: An Early History on Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prima-voce-covent-garden-an-early-history-on-record-cd/849915.p?id=1910008&skuId=849915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8499\\/849915.jpg\"}', 'upc' => '710357781926', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias (1910-1924)CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-1910-1924cd/849924.p?id=3293600&skuId=849924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8499\\/849924_sa.jpg\"}', 'upc' => '710357782022', 'provider' => 'bestbuy'],\n ['name' => \"Violin Concerto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-concerto-cd/849997.p?id=1822350&skuId=849997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=849997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8499\\/849997.jpg\"}', 'upc' => '710357532924', 'provider' => 'bestbuy'],\n ['name' => \"Sound Of St Johns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sound-of-st-johns-cd/850047.p?id=1879988&skuId=850047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8500\\/850047.jpg\"}', 'upc' => '710357533525', 'provider' => 'bestbuy'],\n ['name' => \"Meditations For A Quiet Night - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meditations-for-a-quiet-night-cd-various/850154.p?id=2065797&skuId=850154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0850\\/0850154_sa.jpg\"}', 'upc' => '710357700729', 'provider' => 'bestbuy'],\n ['name' => \"Great Singers 1909-1938 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-singers-1909-1938-cd-various/850163.p?id=1687999&skuId=850163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8501\\/850163.jpg\"}', 'upc' => '710357780127', 'provider' => 'bestbuy'],\n ['name' => \"1906-1935 Vol 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1906-1935-vol-1-cd/850172.p?id=1675716&skuId=850172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8501\\/850172.jpg\"}', 'upc' => '710357780226', 'provider' => 'bestbuy'],\n ['name' => \"Enrico Caruso In Opera 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enrico-caruso-in-opera-1-cd/850181.p?id=1910028&skuId=850181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8501\\/850181.jpg\"}', 'upc' => '710357780325', 'provider' => 'bestbuy'],\n ['name' => \"1915-1928 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1915-1928-1-cd/850190.p?id=1684763&skuId=850190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8501\\/850190.jpg\"}', 'upc' => '710357780424', 'provider' => 'bestbuy'],\n ['name' => \"Rose Ponselle Recordings From 1923-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rose-ponselle-recordings-from-1923-1939-cd/850207.p?id=1675794&skuId=850207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850207.jpg\"}', 'upc' => '710357780523', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/850216.p?id=1697826&skuId=850216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850216.jpg\"}', 'upc' => '710357780622', 'provider' => 'bestbuy'],\n ['name' => \"1918-1924 1: Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1918-1924-1-operatic-arias-cd/850225.p?id=1684743&skuId=850225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850225.jpg\"}', 'upc' => '710357780721', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias 1909-1914 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-1909-1914-1-cd/850234.p?id=1704626&skuId=850234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8502\\/850234_sa.jpg\"}', 'upc' => '710357780820', 'provider' => 'bestbuy'],\n ['name' => \"Enrico Caruso In Song (1910-1920) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enrico-caruso-in-song-1910-1920-cd/850243.p?id=1910026&skuId=850243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850243.jpg\"}', 'upc' => '710357780929', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias 1907-1926 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-1907-1926-cd/850252.p?id=1756297&skuId=850252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8502\\/850252_sa.jpg\"}', 'upc' => '710357781025', 'provider' => 'bestbuy'],\n ['name' => \"Great Singers In Mozart - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-singers-in-mozart-cd-various/850261.p?id=1909973&skuId=850261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850261.jpg\"}', 'upc' => '710357782220', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/850270.p?id=1759890&skuId=850270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8502\\/850270_sa.jpg\"}', 'upc' => '710357782329', 'provider' => 'bestbuy'],\n ['name' => \"Lawrence Tibbett In Opera - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lawrence-tibbett-in-opera-cd/850289.p?id=1684776&skuId=850289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8502\\/850289_sa.jpg\"}', 'upc' => '710357782527', 'provider' => 'bestbuy'],\n ['name' => \"1913-1923 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1913-1923-2-cd/850298.p?id=1780505&skuId=850298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8502\\/850298.jpg\"}', 'upc' => '710357782626', 'provider' => 'bestbuy'],\n ['name' => \"Operatic Arias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operatic-arias-cd/850341.p?id=1820380&skuId=850341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8503\\/850341.jpg\"}', 'upc' => '710357783227', 'provider' => 'bestbuy'],\n ['name' => \"Enrico Caruso In Ensemble (1906-1918) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enrico-caruso-in-ensemble-1906-1918-cd/850369.p?id=1678022&skuId=850369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8503\\/850369.jpg\"}', 'upc' => '710357783425', 'provider' => 'bestbuy'],\n ['name' => \"Nocturnes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nocturnes-cd/850421.p?id=1678998&skuId=850421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8504\\/850421.jpg\"}', 'upc' => '710357516528', 'provider' => 'bestbuy'],\n ['name' => \"Cante Gitano(Flamenco) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cante-gitanoflamenco-cd/850458.p?id=1397303&skuId=850458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8504\\/850458_sa.jpg\"}', 'upc' => '710357516825', 'provider' => 'bestbuy'],\n ['name' => \"Grande Symphonie Funebre Et Triomphale - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grande-symphonie-funebre-et-triomphale-cd/850519.p?id=1704579&skuId=850519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8505\\/850519.jpg\"}', 'upc' => '710357517525', 'provider' => 'bestbuy'],\n ['name' => \"Complete Symphonies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-symphonies-cd/850591.p?id=1676898&skuId=850591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8505\\/850591.jpg\"}', 'upc' => '710357518423', 'provider' => 'bestbuy'],\n ['name' => \"String Quartets 1 & 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-quartets-1-2-cd/850635.p?id=1702144&skuId=850635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0850\\/0850635_sa.jpg\"}', 'upc' => '710357519123', 'provider' => 'bestbuy'],\n ['name' => \"Encuentro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/encuentro-cd/850680.p?id=1396676&skuId=850680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8506\\/850680.jpg\"}', 'upc' => '710357519628', 'provider' => 'bestbuy'],\n ['name' => \"Mass In G - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mass-in-g-cd/850706.p?id=1757593&skuId=850706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8507\\/850706.jpg\"}', 'upc' => '710357519727', 'provider' => 'bestbuy'],\n ['name' => \"Spirit of England - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-england-cd-various/850797.p?id=1682764&skuId=850797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8507\\/850797_sa.jpg\"}', 'upc' => '710357521027', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies 1 & 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-1-2-cd/850831.p?id=1690019&skuId=850831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8508\\/850831.jpg\"}', 'upc' => '710357526022', 'provider' => 'bestbuy'],\n ['name' => \"Organ Works - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/organ-works-cd/850859.p?id=1698196&skuId=850859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8508\\/850859_sa.jpg\"}', 'upc' => '710357526220', 'provider' => 'bestbuy'],\n ['name' => \"Skaters Waltz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skaters-waltz-cd/850877.p?id=1679233&skuId=850877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8508\\/850877_sa.jpg\"}', 'upc' => '710357526428', 'provider' => 'bestbuy'],\n ['name' => \"Glorias Rv588/Rv589 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glorias-rv588-rv589-cd/850975.p?id=1685962&skuId=850975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=850975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8509\\/850975.jpg\"}', 'upc' => '710357527821', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies 1 & 2/Kleine Dreigroschenmusik - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-1-2-kleine-dreigroschenmusik-cd/851028.p?id=1697833&skuId=851028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=851028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8510\\/851028.jpg\"}', 'upc' => '710357528323', 'provider' => 'bestbuy'],\n ['name' => \"Misa Flamenca - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misa-flamenca-cd/851108.p?id=2244622&skuId=851108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=851108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8511\\/851108.jpg\"}', 'upc' => '710357528828', 'provider' => 'bestbuy'],\n ['name' => \"Triple Concerto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/triple-concerto-cd/851224.p?id=1909972&skuId=851224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=851224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '710357530128', 'provider' => 'bestbuy'],\n ['name' => \"Music From Operettas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-operettas-cd/851242.p?id=1677964&skuId=851242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=851242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8512\\/851242.jpg\"}', 'upc' => '710357530326', 'provider' => 'bestbuy'],\n ['name' => \"Best of 70s Supergroups - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-70s-supergroups-cd-various/853552.p?id=121649&skuId=853552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=853552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0853\\/0853552_sa.jpg\"}', 'upc' => '087248790825', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Magic's Rap Attack: Volume 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-magics-rap-attack-volume-3-cd-various/861008.p?id=92547&skuId=861008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=861008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0861\\/0861008_sa.jpg\"}', 'upc' => '015151124925', 'provider' => 'bestbuy'],\n ['name' => \"Sagn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sagn-cd/861767.p?id=63703&skuId=861767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=861767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0861\\/0861767_sa.jpg\"}', 'upc' => '042284964722', 'provider' => 'bestbuy'],\n ['name' => \"Star [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-digdownload-cd/861776.p?id=66499&skuId=861776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=861776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8617\\/861776.jpg\"}', 'upc' => '042284964920', 'provider' => 'bestbuy'],\n ['name' => \"Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friends-cd/862686.p?id=65263&skuId=862686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=862686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0862\\/0862686_sa.jpg\"}', 'upc' => '042284907125', 'provider' => 'bestbuy'],\n ['name' => \"Anita O'Day Swings Cole Porter with Billy May - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anita-oday-swings-cole-porter-with-billy-may-cd/862784.p?id=69673&skuId=862784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=862784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8627\\/862784_sa.jpg\"}', 'upc' => '042284926621', 'provider' => 'bestbuy'],\n ['name' => \"Getz Meets Mulligan in Hi-Fi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/getz-meets-mulligan-in-hi-fi-cd/862873.p?id=66623&skuId=862873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=862873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8628\\/862873_sa.jpg\"}', 'upc' => '042284939225', 'provider' => 'bestbuy'],\n ['name' => \"Acquiring the Taste - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acquiring-the-taste-cd/863079.p?id=83495&skuId=863079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=863079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0863\\/0863079_sa.jpg\"}', 'upc' => '042284291729', 'provider' => 'bestbuy'],\n ['name' => \"Contradiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contradiction-cd/863444.p?id=93819&skuId=863444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=863444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8634\\/863444.jpg\"}', 'upc' => '042284834827', 'provider' => 'bestbuy'],\n ['name' => \"Road to Saint Ives [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-to-saint-ives-digdownload-cd/863907.p?id=71240&skuId=863907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=863907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8639\\/863907.jpg\"}', 'upc' => '042284384926', 'provider' => 'bestbuy'],\n ['name' => \"A Step Further - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-step-further-cd/864032.p?id=97955&skuId=864032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=864032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8640\\/864032.jpg\"}', 'upc' => '042284401524', 'provider' => 'bestbuy'],\n ['name' => \"The Clones of Dr. Funkenstein - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-clones-of-dr-funkenstein-cd/864425.p?id=3353548&skuId=864425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=864425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0864\\/0864425_sa.jpg\"}', 'upc' => '042284262026', 'provider' => 'bestbuy'],\n ['name' => \"Gentle Giant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gentle-giant-cd/864489.p?id=83497&skuId=864489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=864489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0864\\/0864489_sa.jpg\"}', 'upc' => '042284262422', 'provider' => 'bestbuy'],\n ['name' => \"Canto Do Paje - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canto-do-paje-cd/864611.p?id=74542&skuId=864611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=864611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0864\\/0864611_sa.jpg\"}', 'upc' => '042284850827', 'provider' => 'bestbuy'],\n ['name' => \"Misty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misty-cd/865193.p?id=3392842&skuId=865193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0865\\/0865193_sa.jpg\"}', 'upc' => '042284648820', 'provider' => 'bestbuy'],\n ['name' => \"Zydecajun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zydecajun-cd/865255.p?id=102069&skuId=865255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8652\\/865255_sa.jpg\"}', 'upc' => '042284658423', 'provider' => 'bestbuy'],\n ['name' => \"Pastel Blues/Let It All Out - CD - Germany\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pastel-blues-let-it-all-out-cd-germany/865442.p?id=70962&skuId=865442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8654\\/865442.jpg\"}', 'upc' => '042284666329', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Sea Level - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-sea-level-cd/865843.p?id=98163&skuId=865843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0865\\/0865843_sa.jpg\"}', 'upc' => '042284314022', 'provider' => 'bestbuy'],\n ['name' => \"Music for Large and Small Ensembles [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-large-and-small-ensembles-digdownload-cd/865852.p?id=72034&skuId=865852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8658\\/865852.jpg\"}', 'upc' => '042284315227', 'provider' => 'bestbuy'],\n ['name' => \"Paul Bley With Gary Peacock [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paul-bley-with-gary-peacock-digdownload-cd/865861.p?id=64396&skuId=865861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8658\\/865861.jpg\"}', 'upc' => '042284316224', 'provider' => 'bestbuy'],\n ['name' => \"Paris-Concert [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paris-concert-digdownload-cd/865870.p?id=64980&skuId=865870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8658\\/865870.jpg\"}', 'upc' => '042284316323', 'provider' => 'bestbuy'],\n ['name' => \"Photo with Blue Sky, White Cloud, Wires,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/photo-with-blue-sky-white-cloud-wires-cd/865889.p?id=66501&skuId=865889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8658\\/865889.jpg\"}', 'upc' => '042284316828', 'provider' => 'bestbuy'],\n ['name' => \"80/81 [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/80-81-digdownload-cd/865898.p?id=69062&skuId=865898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8658\\/865898.jpg\"}', 'upc' => '042284316927', 'provider' => 'bestbuy'],\n ['name' => \"Journey's End - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/journeys-end-cd/865905.p?id=1931618&skuId=865905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8659\\/865905.jpg\"}', 'upc' => '042284317122', 'provider' => 'bestbuy'],\n ['name' => \"Widow In The Window - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/widow-in-the-window-cd/865932.p?id=2393590&skuId=865932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8659\\/865932.jpg\"}', 'upc' => '042284319829', 'provider' => 'bestbuy'],\n ['name' => \"Plays the Music of Carla Bley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-the-music-of-carla-bley-cd/865950.p?id=69699&skuId=865950&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=865950', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0865\\/0865950_sa.jpg\"}', 'upc' => '042284320726', 'provider' => 'bestbuy'],\n ['name' => \"Afric Pepperbird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afric-pepperbird-cd/866147.p?id=66504&skuId=866147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0866\\/0866147_sa.jpg\"}', 'upc' => '042284347525', 'provider' => 'bestbuy'],\n ['name' => \"Tribute [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-digdownload-cd/866263.p?id=67889&skuId=866263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8662\\/866263.jpg\"}', 'upc' => '042284713528', 'provider' => 'bestbuy'],\n ['name' => \"Very Best of the Righteous Brothers:... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-best-of-the-righteous-brothers-cd/866343.p?id=96705&skuId=866343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8663\\/866343_sa.jpg\"}', 'upc' => '042284724821', 'provider' => 'bestbuy'],\n ['name' => \"Triptykon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/triptykon-cd/866423.p?id=66500&skuId=866423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8664\\/866423.jpg\"}', 'upc' => '042284732123', 'provider' => 'bestbuy'],\n ['name' => \"Barzakh - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barzakh-cd/866496.p?id=64481&skuId=866496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0866\\/0866496_sa.jpg\"}', 'upc' => '042284754026', 'provider' => 'bestbuy'],\n ['name' => \"Music for Films - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-films-cd/866502.p?id=68129&skuId=866502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8665\\/866502_sa.jpg\"}', 'upc' => '042284760928', 'provider' => 'bestbuy'],\n ['name' => \"Presents a Musical... [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presents-a-musical-digdownload-cd/866511.p?id=66715&skuId=866511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8665\\/866511.jpg\"}', 'upc' => '042284788922', 'provider' => 'bestbuy'],\n ['name' => \"Gitanes Jazz: Charlie Parker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gitanes-jazz-charlie-parker-cd/866557.p?id=2118983&skuId=866557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0866\\/0866557_sa.jpg\"}', 'upc' => '042284791120', 'provider' => 'bestbuy'],\n ['name' => \"Getting There [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/getting-there-digdownload-cd/866717.p?id=63511&skuId=866717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8667\\/866717.jpg\"}', 'upc' => '042283349421', 'provider' => 'bestbuy'],\n ['name' => \"Soulville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soulville-cd/866780.p?id=2389709&skuId=866780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8667\\/866780_sa.jpg\"}', 'upc' => '042283355125', 'provider' => 'bestbuy'],\n ['name' => \"A.R.C. [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-r-c-digdownload-cd/866851.p?id=65294&skuId=866851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=866851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8668\\/866851.jpg\"}', 'upc' => '042283367821', 'provider' => 'bestbuy'],\n ['name' => \"The WATT Works Family Album - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-watt-works-family-album-various-cd/867342.p?id=2629423&skuId=867342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8673\\/867342.jpg\"}', 'upc' => '042284147828', 'provider' => 'bestbuy'],\n ['name' => \"Extrapolation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extrapolation-cd/867397.p?id=68967&skuId=867397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0867\\/0867397_sa.jpg\"}', 'upc' => '042284159821', 'provider' => 'bestbuy'],\n ['name' => \"M.R.C.S - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-r-c-s-cd/867422.p?id=70787&skuId=867422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8674\\/867422_sa.jpg\"}', 'upc' => '042284164221', 'provider' => 'bestbuy'],\n ['name' => \"Gerry Mulligan Meets Ben Webster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gerry-mulligan-meets-ben-webster-cd/867468.p?id=69460&skuId=867468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8674\\/867468_sa.jpg\"}', 'upc' => '042284166126', 'provider' => 'bestbuy'],\n ['name' => \"For the Love of Ella - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-love-of-ella-cd/867538.p?id=66310&skuId=867538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0867\\/0867538_sa.jpg\"}', 'upc' => '042284176521', 'provider' => 'bestbuy'],\n ['name' => \"Aparis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aparis-cd/867556.p?id=71165&skuId=867556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8675\\/867556.jpg\"}', 'upc' => '042284177429', 'provider' => 'bestbuy'],\n ['name' => \"Brain Damaged - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brain-damaged-cd/867663.p?id=98920&skuId=867663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8676\\/867663.jpg\"}', 'upc' => '042284190121', 'provider' => 'bestbuy'],\n ['name' => \"Dinah! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dinah-cd/867752.p?id=71862&skuId=867752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8677\\/867752_sa.jpg\"}', 'upc' => '042284213929', 'provider' => 'bestbuy'],\n ['name' => \"Too Marvelous for Words, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-marvelous-for-words-vol-3-cd/867832.p?id=66553&skuId=867832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8678\\/867832.jpg\"}', 'upc' => '042284241922', 'provider' => 'bestbuy'],\n ['name' => \"Bad Reputation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-reputation-cd/867878.p?id=101580&skuId=867878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0867\\/0867878_sa.jpg\"}', 'upc' => '042284243421', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Composers Orchestra [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-composers-orchestra-digdownload-cd/867912.p?id=1931619&skuId=867912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=867912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8679\\/867912.jpg\"}', 'upc' => '042284112420', 'provider' => 'bestbuy'],\n ['name' => \"Gospel Train [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gospel-train-remaster-cd/868029.p?id=224493&skuId=868029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=868029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8680\\/868029.jpg\"}', 'upc' => '042284113427', 'provider' => 'bestbuy'],\n ['name' => \"Echoes of Ellington, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-of-ellington-vol-1-cd/868136.p?id=66024&skuId=868136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=868136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '042284128827', 'provider' => 'bestbuy'],\n ['name' => \"Escalator Over the Hill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escalator-over-the-hill-cd/868788.p?id=64389&skuId=868788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=868788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0868\\/0868788_sa.jpg\"}', 'upc' => '042283931022', 'provider' => 'bestbuy'],\n ['name' => \"Cantilena [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cantilena-digdownload-cd/868975.p?id=1931621&skuId=868975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=868975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8689\\/868975.jpg\"}', 'upc' => '042283961920', 'provider' => 'bestbuy'],\n ['name' => \"... and She Answered - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-and-she-answered-cd/868984.p?id=63660&skuId=868984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=868984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8689\\/868984.jpg\"}', 'upc' => '042283962026', 'provider' => 'bestbuy'],\n ['name' => \"Wave of Sorrow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wave-of-sorrow-cd/869000.p?id=63657&skuId=869000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8690\\/869000.jpg\"}', 'upc' => '042283962125', 'provider' => 'bestbuy'],\n ['name' => \"The Intimate Ella - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-intimate-ella-cd/869206.p?id=66339&skuId=869206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8692\\/869206_sa.jpg\"}', 'upc' => '042283983823', 'provider' => 'bestbuy'],\n ['name' => \"Paris Concert [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paris-concert-digdownload-cd/869518.p?id=67867&skuId=869518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8695\\/869518.jpg\"}', 'upc' => '042283917323', 'provider' => 'bestbuy'],\n ['name' => \"Rosensfole: Medieval Songs From Norway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rosensfole-medieval-songs-from-norway-cd/869634.p?id=66534&skuId=869634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0869\\/0869634_sa.jpg\"}', 'upc' => '042283929326', 'provider' => 'bestbuy'],\n ['name' => \"Luminessence: Music for String... [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luminessence-music-for-string-digdownload-cd/869661.p?id=67892&skuId=869661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8696\\/869661.jpg\"}', 'upc' => '042283930728', 'provider' => 'bestbuy'],\n ['name' => \"Blossom Dearie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blossom-dearie-cd/869705.p?id=65611&skuId=869705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8697\\/869705_sa.jpg\"}', 'upc' => '042283793422', 'provider' => 'bestbuy'],\n ['name' => \"Sings the Winners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-the-winners-cd/869769.p?id=69672&skuId=869769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0869\\/0869769_sa.jpg\"}', 'upc' => '042283793927', 'provider' => 'bestbuy'],\n ['name' => \"Nightlife - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nightlife-cd/869812.p?id=2466507&skuId=869812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8698\\/869812.jpg\"}', 'upc' => '042283802926', 'provider' => 'bestbuy'],\n ['name' => \"Mel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mel-cd/869956.p?id=263333&skuId=869956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=869956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8699\\/869956.jpg\"}', 'upc' => '042283828728', 'provider' => 'bestbuy'],\n ['name' => \"Dark Intervals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-intervals-cd/870150.p?id=2387160&skuId=870150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8701\\/870150_sa.jpg\"}', 'upc' => '042283734227', 'provider' => 'bestbuy'],\n ['name' => \"Legend of the Seven Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legend-of-the-seven-dreams-cd/870187.p?id=3361869&skuId=870187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8701\\/870187.jpg\"}', 'upc' => '042283734425', 'provider' => 'bestbuy'],\n ['name' => \"Personal Mountains [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/personal-mountains-digdownload-cd/870221.p?id=67893&skuId=870221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8702\\/870221.jpg\"}', 'upc' => '042283736122', 'provider' => 'bestbuy'],\n ['name' => \"For Musicians Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-musicians-only-cd/870267.p?id=66684&skuId=870267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8702\\/870267.jpg\"}', 'upc' => '042283743526', 'provider' => 'bestbuy'],\n ['name' => \"Boss Tenors: Straight Ahead from Chicago... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boss-tenors-straight-ahead-from-chicago-cd/870276.p?id=63699&skuId=870276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8702\\/870276.jpg\"}', 'upc' => '042283744028', 'provider' => 'bestbuy'],\n ['name' => \"Ascenseur Pour l'Échafaud [Complete Recordings] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ascenseur-pour-lechafaud-complete-recordings-cd/870711.p?id=73310&skuId=870711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8707\\/870711_sa.jpg\"}', 'upc' => '042283630529', 'provider' => 'bestbuy'],\n ['name' => \"In Angel City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-angel-city-cd/870864.p?id=67068&skuId=870864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0870\\/0870864_sa.jpg\"}', 'upc' => '042283703124', 'provider' => 'bestbuy'],\n ['name' => \"Mann im Fahrstuhl (The Man in the Elevator) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mann-im-fahrstuhl-the-man-in-the-elevator-cd/870935.p?id=66726&skuId=870935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=870935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8709\\/870935_sa.jpg\"}', 'upc' => '042283711020', 'provider' => 'bestbuy'],\n ['name' => \"Blast from the Bayou - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blast-from-the-bayou-cd/871462.p?id=102066&skuId=871462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=871462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8714\\/871462.jpg\"}', 'upc' => '042283651821', 'provider' => 'bestbuy'],\n ['name' => \"James Brown's Funky People, Pt. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-browns-funky-people-pt-2-cd/871943.p?id=75977&skuId=871943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=871943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0871\\/0871943_sa.jpg\"}', 'upc' => '042283585720', 'provider' => 'bestbuy'],\n ['name' => \"The Paul Bley Quartet [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-paul-bley-quartet-digdownload-cd/872210.p?id=64397&skuId=872210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=872210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8722\\/872210.jpg\"}', 'upc' => '042283525023', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Mandrill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-mandrill-cd/872283.p?id=90370&skuId=872283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=872283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0872\\/0872283_sa.jpg\"}', 'upc' => '042283527621', 'provider' => 'bestbuy'],\n ['name' => \"Still Live [Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-live-reissue-cd/872595.p?id=67887&skuId=872595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=872595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8725\\/872595_sa.jpg\"}', 'upc' => '042283500822', 'provider' => 'bestbuy'],\n ['name' => \"In the Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-light-cd/872611.p?id=3323829&skuId=872611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=872611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '042283501126', 'provider' => 'bestbuy'],\n ['name' => \"Passengers [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passengers-digdownload-cd/872620.p?id=64727&skuId=872620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=872620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8726\\/872620.jpg\"}', 'upc' => '042283501621', 'provider' => 'bestbuy'],\n ['name' => \"L'Integrale 1936-1945 [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 66.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lintegrale-1936-1945-box-cd/873031.p?id=94893&skuId=873031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=873031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8730\\/873031.jpg\"}', 'upc' => '042283450622', 'provider' => 'bestbuy'],\n ['name' => \"Time Odyssey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-odyssey-cd/873120.p?id=92239&skuId=873120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=873120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8731\\/873120_sa.jpg\"}', 'upc' => '042283463424', 'provider' => 'bestbuy'],\n ['name' => \"All About Eve - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-about-eve-cd/873255.p?id=72721&skuId=873255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=873255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8732\\/873255_sa.jpg\"}', 'upc' => '042283426023', 'provider' => 'bestbuy'],\n ['name' => \"Intermodulation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intermodulation-cd/874370.p?id=66141&skuId=874370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=874370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8743\\/874370_sa.jpg\"}', 'upc' => '042283377127', 'provider' => 'bestbuy'],\n ['name' => \"Hollywood Dream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hollywood-dream-cd/874450.p?id=1383367&skuId=874450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=874450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8744\\/874450_sa.jpg\"}', 'upc' => '042283379428', 'provider' => 'bestbuy'],\n ['name' => \"The Individualism of Gil Evans [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-individualism-of-gil-evans-digdownload-cd/874496.p?id=66150&skuId=874496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=874496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8744\\/874496.jpg\"}', 'upc' => '042283380424', 'provider' => 'bestbuy'],\n ['name' => \"Tallis: Lamentations Of Jeremiah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tallis-lamentations-of-jeremiah-cd/874762.p?id=1760884&skuId=874762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=874762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '781182134126', 'provider' => 'bestbuy'],\n ['name' => \"Symphony 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-5-cd/874842.p?id=1693427&skuId=874842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=874842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8748\\/874842.jpg\"}', 'upc' => '028943332927', 'provider' => 'bestbuy'],\n ['name' => \"Danças De Rua - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancas-de-rua-cd/875137.p?id=68355&skuId=875137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=875137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8751\\/875137.jpg\"}', 'upc' => '042283230521', 'provider' => 'bestbuy'],\n ['name' => \"1958: Paris Olympia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1958-paris-olympia-cd/875422.p?id=64339&skuId=875422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=875422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8754\\/875422_sa.jpg\"}', 'upc' => '042283265929', 'provider' => 'bestbuy'],\n ['name' => \"Triumph & Agony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/triumph-agony-cd/875618.p?id=103496&skuId=875618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=875618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8756\\/875618.jpg\"}', 'upc' => '042283280427', 'provider' => 'bestbuy'],\n ['name' => \"Girl From Ipanema: The Bossa... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/girl-from-ipanema-the-bossa-box-cd/876332.p?id=66607&skuId=876332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=876332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0876\\/0876332_sa.jpg\"}', 'upc' => '042282361127', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Samba Encore! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-samba-encore-cd/876369.p?id=66631&skuId=876369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=876369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0876\\/0876369_sa.jpg\"}', 'upc' => '042282361325', 'provider' => 'bestbuy'],\n ['name' => \"Magico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magico-cd/877368.p?id=67072&skuId=877368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=877368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8773\\/877368_sa.jpg\"}', 'upc' => '042282347428', 'provider' => 'bestbuy'],\n ['name' => \"Quartet For End Of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quartet-for-end-of-time-cd/877554.p?id=1699742&skuId=877554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=877554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8775\\/877554.jpg\"}', 'upc' => '028942324725', 'provider' => 'bestbuy'],\n ['name' => \"Cole Porter Songbook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cole-porter-songbook-cd/877616.p?id=2472906&skuId=877616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=877616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0877\\/0877616_sa.jpg\"}', 'upc' => '042282325020', 'provider' => 'bestbuy'],\n ['name' => \"The Little Drummer Boy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-drummer-boy-cd/878081.p?id=263901&skuId=878081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0878\\/0878081_sa.jpg\"}', 'upc' => '042282274427', 'provider' => 'bestbuy'],\n ['name' => \"The Third Decade [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-third-decade-digdownload-cd/878526.p?id=63804&skuId=878526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8785\\/878526.jpg\"}', 'upc' => '042282321329', 'provider' => 'bestbuy'],\n ['name' => \"Cal - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cal-cd-original-soundtrack/878535.p?id=76573&skuId=878535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8785\\/878535_sa.jpg\"}', 'upc' => '042282276926', 'provider' => 'bestbuy'],\n ['name' => \"Don Giovanni - CD - Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-giovanni-cd-edition/878811.p?id=1683831&skuId=878811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0878\\/0878811_sa.jpg\"}', 'upc' => '028942254121', 'provider' => 'bestbuy'],\n ['name' => \"Bad Girls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-girls-cd/878875.p?id=2412192&skuId=878875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8788\\/878875.jpg\"}', 'upc' => '042282255723', 'provider' => 'bestbuy'],\n ['name' => \"The Great Wide World of Quincy Jones: Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-wide-world-of-quincy-jones-live-cd/878991.p?id=68077&skuId=878991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=878991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8789\\/878991.jpg\"}', 'upc' => '042282261328', 'provider' => 'bestbuy'],\n ['name' => \"Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-cd/881353.p?id=70993&skuId=881353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=881353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8813\\/881353_sa.jpg\"}', 'upc' => '042282185921', 'provider' => 'bestbuy'],\n ['name' => \"Impromptus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/impromptus-cd/881692.p?id=1677921&skuId=881692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=881692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8816\\/881692.jpg\"}', 'upc' => '028942223721', 'provider' => 'bestbuy'],\n ['name' => \"Bill Evans Trio with Symphony Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-evans-trio-with-symphony-orchestra-cd/882021.p?id=66137&skuId=882021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=882021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0882\\/0882021_sa.jpg\"}', 'upc' => '042282198327', 'provider' => 'bestbuy'],\n ['name' => \"Vagabonds: Thin Lizzy Tribute - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vagabonds-thin-lizzy-tribute-cd/884092.p?id=1365950&skuId=884092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=884092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0884\\/0884092_sa.jpg\"}', 'upc' => '042282096920', 'provider' => 'bestbuy'],\n ['name' => \"Blue Matter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-matter-cd/884724.p?id=2986164&skuId=884724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=884724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8847\\/884724_sa.jpg\"}', 'upc' => '042282092328', 'provider' => 'bestbuy'],\n ['name' => \"Shades of a Blue Orphanage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shades-of-a-blue-orphanage-cd/885475.p?id=101591&skuId=885475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=885475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0885\\/0885475_sa.jpg\"}', 'upc' => '042282052728', 'provider' => 'bestbuy'],\n ['name' => \"Thin Lizzy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thin-lizzy-cd/885484.p?id=101592&skuId=885484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=885484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8854\\/885484.jpg\"}', 'upc' => '042282052827', 'provider' => 'bestbuy'],\n ['name' => \"Blues from Laurel Canyon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-from-laurel-canyon-cd/885527.p?id=90880&skuId=885527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=885527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8855\\/885527_sa.jpg\"}', 'upc' => '042282053923', 'provider' => 'bestbuy'],\n ['name' => \"Rip Rig and Panic/Now Please Don't You Cry... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rip-rig-and-panic-now-please-dont-you-cry-cd/886287.p?id=68256&skuId=886287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=886287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0886\\/0886287_sa.jpg\"}', 'upc' => '042283216426', 'provider' => 'bestbuy'],\n ['name' => \"Master Serie, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/master-serie-vol-1-cd/886330.p?id=94895&skuId=886330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=886330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8863\\/886330.jpg\"}', 'upc' => '042283218925', 'provider' => 'bestbuy'],\n ['name' => \"Maximum Security - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maximum-security-cd/886385.p?id=90052&skuId=886385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=886385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0886\\/0886385_sa.jpg\"}', 'upc' => '042283224926', 'provider' => 'bestbuy'],\n ['name' => \"She Loves Me [Original Broadway Cast Album] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-loves-me-original-broadway-cast-album-cd-original-cast-recording/886562.p?id=98546&skuId=886562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=886562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0886\\/0886562_sa.jpg\"}', 'upc' => '042283196827', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Connie Francis, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-connie-francis-vol-2-cd/886919.p?id=82811&skuId=886919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=886919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8869\\/886919.jpg\"}', 'upc' => '042283169920', 'provider' => 'bestbuy'],\n ['name' => \"Quartet West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quartet-west-cd/887623.p?id=67065&skuId=887623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=887623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0887\\/0887623_sa.jpg\"}', 'upc' => '042283167322', 'provider' => 'bestbuy'],\n ['name' => \"Pres & Teddy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pres-teddy-cd/888267.p?id=72259&skuId=888267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=888267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0888\\/0888267_sa.jpg\"}', 'upc' => '042283127029', 'provider' => 'bestbuy'],\n ['name' => \"Bill Evans at Town Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-evans-at-town-hall-cd/888276.p?id=66096&skuId=888276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=888276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8882\\/888276_sa.jpg\"}', 'upc' => '042283127128', 'provider' => 'bestbuy'],\n ['name' => \"Crystal Silence [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crystal-silence-digdownload-cd/888418.p?id=65288&skuId=888418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=888418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8884\\/888418.jpg\"}', 'upc' => '042283133129', 'provider' => 'bestbuy'],\n ['name' => \"Free at Last - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-at-last-cd/888436.p?id=3361856&skuId=888436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=888436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8884\\/888436.jpg\"}', 'upc' => '042283133228', 'provider' => 'bestbuy'],\n ['name' => \"All Those Born With Wings [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-those-born-with-wings-digdownload-cd/888579.p?id=66489&skuId=888579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=888579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8885\\/888579.jpg\"}', 'upc' => '042283139428', 'provider' => 'bestbuy'],\n ['name' => \"Burning the Witches - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burning-the-witches-cd/889275.p?id=103494&skuId=889275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=889275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0889\\/0889275_sa.jpg\"}', 'upc' => '042283090224', 'provider' => 'bestbuy'],\n ['name' => \"Siroco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/siroco-cd/889293.p?id=65603&skuId=889293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=889293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8892\\/889293.jpg\"}', 'upc' => '042283091320', 'provider' => 'bestbuy'],\n ['name' => \"Wings over Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wings-over-water-cd/889505.p?id=91605&skuId=889505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=889505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8895\\/889505.jpg\"}', 'upc' => '042283105829', 'provider' => 'bestbuy'],\n ['name' => \"Cloud About Mercury - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cloud-about-mercury-cd/889550.p?id=71509&skuId=889550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=889550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8895\\/889550.jpg\"}', 'upc' => '042283110823', 'provider' => 'bestbuy'],\n ['name' => \"Exploded View [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exploded-view-digdownload-cd/889578.p?id=71427&skuId=889578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=889578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8895\\/889578.jpg\"}', 'upc' => '042283110922', 'provider' => 'bestbuy'],\n ['name' => \"Les Huegenots - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/les-huegenots-cd/890067.p?id=1676934&skuId=890067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=890067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8900\\/890067.jpg\"}', 'upc' => '028943054928', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-blue-cd/891146.p?id=90859&skuId=891146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=891146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0891\\/0891146_sa.jpg\"}', 'upc' => '042283076921', 'provider' => 'bestbuy'],\n ['name' => \"James Brown's Funky People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-browns-funky-people-cd/893368.p?id=75976&skuId=893368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=893368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0893\\/0893368_sa.jpg\"}', 'upc' => '042282941725', 'provider' => 'bestbuy'],\n ['name' => \"Legrand Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legrand-jazz-cd/893625.p?id=68497&skuId=893625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=893625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8936\\/893625_sa.jpg\"}', 'upc' => '042283007420', 'provider' => 'bestbuy'],\n ['name' => \"Diary [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diary-digdownload-cd/894562.p?id=71517&skuId=894562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=894562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8945\\/894562.jpg\"}', 'upc' => '042282915726', 'provider' => 'bestbuy'],\n ['name' => \"Shift in the Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shift-in-the-wind-cd/894615.p?id=69858&skuId=894615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=894615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8946\\/894615.jpg\"}', 'upc' => '042282915924', 'provider' => 'bestbuy'],\n ['name' => \"Implosions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/implosions-cd/895008.p?id=91600&skuId=895008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8950\\/895008.jpg\"}', 'upc' => '042282920126', 'provider' => 'bestbuy'],\n ['name' => \"Anita Sings The Most - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anita-sings-the-most-cd/895295.p?id=2638011&skuId=895295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8952\\/895295_sa.jpg\"}', 'upc' => '042282957726', 'provider' => 'bestbuy'],\n ['name' => \"Smokin' at the Half Note - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smokin-at-the-half-note-cd/895302.p?id=2294633&skuId=895302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8953\\/895302.jpg\"}', 'upc' => '042282957825', 'provider' => 'bestbuy'],\n ['name' => \"Ocean [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocean-digdownload-cd/895428.p?id=91601&skuId=895428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8954\\/895428.jpg\"}', 'upc' => '042282927927', 'provider' => 'bestbuy'],\n ['name' => \"Conference of the Birds [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conference-of-the-birds-digdownload-cd/895516.p?id=67563&skuId=895516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8955\\/895516.jpg\"}', 'upc' => '042282937322', 'provider' => 'bestbuy'],\n ['name' => \"Paths, Prints - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paths-prints-cd/895534.p?id=66496&skuId=895534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0895\\/0895534_sa.jpg\"}', 'upc' => '042282937728', 'provider' => 'bestbuy'],\n ['name' => \"Fluid Rustle [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fluid-rustle-digdownload-cd/895552.p?id=71974&skuId=895552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8955\\/895552.jpg\"}', 'upc' => '042282938121', 'provider' => 'bestbuy'],\n ['name' => \"Later That Evening [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/later-that-evening-digdownload-cd/895561.p?id=71975&skuId=895561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8955\\/895561.jpg\"}', 'upc' => '042282938220', 'provider' => 'bestbuy'],\n ['name' => \"Deer Wan [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deer-wan-digdownload-cd/895589.p?id=72031&skuId=895589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8955\\/895589.jpg\"}', 'upc' => '042282938527', 'provider' => 'bestbuy'],\n ['name' => \"Sanfona - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sanfona-cd/895641.p?id=3361957&skuId=895641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8956\\/895641.jpg\"}', 'upc' => '042282939128', 'provider' => 'bestbuy'],\n ['name' => \"Urban Bushmen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urban-bushmen-cd/895650.p?id=63806&skuId=895650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=895650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8956\\/895650.jpg\"}', 'upc' => '042282939425', 'provider' => 'bestbuy'],\n ['name' => \"Timeless [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-digdownload-cd/896070.p?id=63515&skuId=896070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8960\\/896070.jpg\"}', 'upc' => '042282911421', 'provider' => 'bestbuy'],\n ['name' => \"Belonging - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belonging-cd/896098.p?id=67891&skuId=896098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8960\\/896098.jpg\"}', 'upc' => '042282911520', 'provider' => 'bestbuy'],\n ['name' => \"Sol Do Meio Dia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sol-do-meio-dia-cd/896114.p?id=3361956&skuId=896114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8961\\/896114.jpg\"}', 'upc' => '042282911728', 'provider' => 'bestbuy'],\n ['name' => \"Gurdjieff: Sacred Hymns [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gurdjieff-sacred-hymns-digdownload-cd/896150.p?id=2305081&skuId=896150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8961\\/896150.jpg\"}', 'upc' => '042282912220', 'provider' => 'bestbuy'],\n ['name' => \"Playing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/playing-cd/896169.p?id=69686&skuId=896169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8961\\/896169.jpg\"}', 'upc' => '042282912329', 'provider' => 'bestbuy'],\n ['name' => \"Current Events - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/current-events-cd/896882.p?id=3428188&skuId=896882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=896882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8968\\/896882.jpg\"}', 'upc' => '042282777027', 'provider' => 'bestbuy'],\n ['name' => \"Folk Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folk-songs-cd/897104.p?id=67071&skuId=897104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0897\\/0897104_sa.jpg\"}', 'upc' => '042282770523', 'provider' => 'bestbuy'],\n ['name' => \"Solo Concerts:... [DigDownLoad] [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-concerts-digdownload-single-cd/897131.p?id=67870&skuId=897131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8971\\/897131.jpg\"}', 'upc' => '042282774729', 'provider' => 'bestbuy'],\n ['name' => \"Dança Das Cabeças - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/danca-das-cabecas-cd/897159.p?id=3361958&skuId=897159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8971\\/897159.jpg\"}', 'upc' => '042282775023', 'provider' => 'bestbuy'],\n ['name' => \"Tales of Another [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tales-of-another-digdownload-cd/897220.p?id=69859&skuId=897220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8972\\/897220.jpg\"}', 'upc' => '042282741820', 'provider' => 'bestbuy'],\n ['name' => \"Waves [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waves-digdownload-cd/897239.p?id=70554&skuId=897239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8972\\/897239.jpg\"}', 'upc' => '042282741929', 'provider' => 'bestbuy'],\n ['name' => \"Alien [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alien-digdownload-cd/897685.p?id=68769&skuId=897685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8976\\/897685.jpg\"}', 'upc' => '042282763921', 'provider' => 'bestbuy'],\n ['name' => \"California Dreaming - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-dreaming-cd/897756.p?id=69322&skuId=897756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0897\\/0897756_sa.jpg\"}', 'upc' => '042282784223', 'provider' => 'bestbuy'],\n ['name' => \"Emergence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emergence-cd/897809.p?id=3361871&skuId=897809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8978\\/897809.jpg\"}', 'upc' => '042282785527', 'provider' => 'bestbuy'],\n ['name' => \"Nice Guys [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nice-guys-digdownload-cd/897881.p?id=63802&skuId=897881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=897881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8978\\/897881.jpg\"}', 'upc' => '042282787620', 'provider' => 'bestbuy'],\n ['name' => \"Slide Show - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slide-show-cd/898309.p?id=71525&skuId=898309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8983\\/898309_sa.jpg\"}', 'upc' => '042282725721', 'provider' => 'bestbuy'],\n ['name' => \"Septet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/septet-cd/898318.p?id=297170&skuId=898318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8983\\/898318.jpg\"}', 'upc' => '042282725820', 'provider' => 'bestbuy'],\n ['name' => \"Solo Concert [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-concert-digdownload-cd/898345.p?id=71521&skuId=898345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8983\\/898345.jpg\"}', 'upc' => '042282726827', 'provider' => 'bestbuy'],\n ['name' => \"The Survivor's Suite [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-survivors-suite-digdownload-cd/898470.p?id=2387171&skuId=898470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8984\\/898470.jpg\"}', 'upc' => '042282713124', 'provider' => 'bestbuy'],\n ['name' => \"Solo [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-digdownload-cd/898540.p?id=66719&skuId=898540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8985\\/898540.jpg\"}', 'upc' => '042282713520', 'provider' => 'bestbuy'],\n ['name' => \"No Mystery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-mystery-cd/898595.p?id=65300&skuId=898595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8985\\/898595_sa.jpg\"}', 'upc' => '042282714923', 'provider' => 'bestbuy'],\n ['name' => \"Staircase - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/staircase-cd/898746.p?id=67873&skuId=898746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8987\\/898746.jpg\"}', 'upc' => '042282733726', 'provider' => 'bestbuy'],\n ['name' => \"Dis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dis-cd/898951.p?id=66507&skuId=898951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=898951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/8989\\/898951.jpg\"}', 'upc' => '042282740823', 'provider' => 'bestbuy'],\n ['name' => \"Sing, Sing, Sing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-sing-sing-cd/899601.p?id=70323&skuId=899601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=899601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/8996\\/899601_sa.jpg\"}', 'upc' => '042282698728', 'provider' => 'bestbuy'],\n ['name' => \"Bossa Nova: Trinta Años Depois - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bossa-nova-trinta-anos-depois-cd-various/899969.p?id=64441&skuId=899969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=899969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0899\\/0899969_sa.jpg\"}', 'upc' => '042282687029', 'provider' => 'bestbuy'],\n ['name' => \"Reach Up & Touch the Sky: Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reach-up-touch-the-sky-live-cd/900305.p?id=99705&skuId=900305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=900305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9003\\/900305_sa.jpg\"}', 'upc' => '042282628527', 'provider' => 'bestbuy'],\n ['name' => \"Four Seasons of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-seasons-of-love-cd/901242.p?id=100787&skuId=901242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=901242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9012\\/901242_sa.jpg\"}', 'upc' => '042282623621', 'provider' => 'bestbuy'],\n ['name' => \"Once Upon A Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-upon-a-time-cd/901304.p?id=2615318&skuId=901304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=901304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9013\\/901304.jpg\"}', 'upc' => '042282623829', 'provider' => 'bestbuy'],\n ['name' => \"They're Playing Our Song [Original Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theyre-playing-our-song-original-cast-cd-original-cast-recording/901331.p?id=101573&skuId=901331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=901331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9013\\/901331_sa.jpg\"}', 'upc' => '042282624024', 'provider' => 'bestbuy'],\n ['name' => \"I Only Have Eyes for You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-only-have-eyes-for-you-cd/901563.p?id=64454&skuId=901563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=901563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0901\\/0901563_sa.jpg\"}', 'upc' => '042282590220', 'provider' => 'bestbuy'],\n ['name' => \"Stephan Micus: East of the Night [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stephan-micus-east-of-the-night-digdownload-cd/902394.p?id=91599&skuId=902394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=902394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9023\\/902394.jpg\"}', 'upc' => '042282565525', 'provider' => 'bestbuy'],\n ['name' => \"The Jazz Giants '56 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jazz-giants-56-cd/903357.p?id=72252&skuId=903357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=903357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0903\\/0903357_sa.jpg\"}', 'upc' => '042282567222', 'provider' => 'bestbuy'],\n ['name' => \"Invocations/The Moth and the Flame - Germany - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invocations-the-moth-and-the-flame-germany-cd/903400.p?id=3364707&skuId=903400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=903400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9034\\/903400.jpg\"}', 'upc' => '042282547323', 'provider' => 'bestbuy'],\n ['name' => \"Holly & The Ivy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/holly-the-ivy-cd/903552.p?id=1684253&skuId=903552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=903552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9035\\/903552_sa.jpg\"}', 'upc' => '028942550025', 'provider' => 'bestbuy'],\n ['name' => \"Hymn Of The 7th Galaxy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hymn-of-the-7th-galaxy-cd/903936.p?id=2304989&skuId=903936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=903936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9039\\/903936_sa.jpg\"}', 'upc' => '042282533623', 'provider' => 'bestbuy'],\n ['name' => \"It's OK to Listen to the Gray Voice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-ok-to-listen-to-the-gray-voice-cd/903963.p?id=66494&skuId=903963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=903963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9039\\/903963.jpg\"}', 'upc' => '042282540621', 'provider' => 'bestbuy'],\n ['name' => \"Elis & Tom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elis-tom-cd/904695.p?id=67994&skuId=904695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=904695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0904\\/0904695_sa.jpg\"}', 'upc' => '042282441829', 'provider' => 'bestbuy'],\n ['name' => \"Hellbound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hellbound-cd/904800.p?id=103495&skuId=904800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=904800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9048\\/904800.jpg\"}', 'upc' => '042282466020', 'provider' => 'bestbuy'],\n ['name' => \"Master Serie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/master-serie-cd/904837.p?id=92129&skuId=904837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=904837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0904\\/0904837_sa.jpg\"}', 'upc' => '042282478429', 'provider' => 'bestbuy'],\n ['name' => \"Night Lights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-lights-cd/907889.p?id=69462&skuId=907889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=907889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0907\\/0907889_sa.jpg\"}', 'upc' => '042281827129', 'provider' => 'bestbuy'],\n ['name' => \"Rejoicing [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rejoicing-digdownload-cd/908325.p?id=69067&skuId=908325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=908325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9083\\/908325.jpg\"}', 'upc' => '042281779527', 'provider' => 'bestbuy'],\n ['name' => \"The Harold Arlen Songbook, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-harold-arlen-songbook-vol-1-cd/909823.p?id=66313&skuId=909823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=909823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0909\\/0909823_sa.jpg\"}', 'upc' => '042281752728', 'provider' => 'bestbuy'],\n ['name' => \"Master Serie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/master-serie-cd/911393.p?id=75809&skuId=911393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=911393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0911\\/0911393_sa.jpg\"}', 'upc' => '042281645822', 'provider' => 'bestbuy'],\n ['name' => \"Theatre - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theatre-cd/911589.p?id=1931625&skuId=911589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=911589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '042281567827', 'provider' => 'bestbuy'],\n ['name' => \"The Ballad of the Fallen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ballad-of-the-fallen-cd/913097.p?id=67070&skuId=913097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=913097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0913\\/0913097_sa.jpg\"}', 'upc' => '042281154621', 'provider' => 'bestbuy'],\n ['name' => \"Travels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/travels-cd/915264.p?id=69078&skuId=915264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=915264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9152\\/915264_sa.jpg\"}', 'upc' => '042281062223', 'provider' => 'bestbuy'],\n ['name' => \"The Magic Touch: An Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-magic-touch-an-anthology-cd/915674.p?id=95055&skuId=915674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=915674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9156\\/915674_sa.jpg\"}', 'upc' => '731451031427', 'provider' => 'bestbuy'],\n ['name' => \"Solo Quiero Caminar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-quiero-caminar-cd/916254.p?id=65604&skuId=916254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=916254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9162\\/916254_sa.jpg\"}', 'upc' => '042281000928', 'provider' => 'bestbuy'],\n ['name' => \"Right There - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-there-cd/916441.p?id=71578&skuId=916441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=916441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9164\\/916441.jpg\"}', 'upc' => '731451004025', 'provider' => 'bestbuy'],\n ['name' => \"She Works Hard For The Money - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-works-hard-for-the-money-cd/917306.p?id=2451452&skuId=917306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=917306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0917\\/0917306_sa.jpg\"}', 'upc' => '042281226526', 'provider' => 'bestbuy'],\n ['name' => \"Je Chante Avec Toi Liberte - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/je-chante-avec-toi-liberte-cd/917413.p?id=92478&skuId=917413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=917413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0917\\/0917413_sa.jpg\"}', 'upc' => '042281286124', 'provider' => 'bestbuy'],\n ['name' => \"Requiem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/requiem-cd/917832.p?id=1675595&skuId=917832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=917832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9178\\/917832.jpg\"}', 'upc' => '028941355324', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-cd/918065.p?id=87224&skuId=918065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=918065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0918\\/0918065_sa.jpg\"}', 'upc' => '042281317422', 'provider' => 'bestbuy'],\n ['name' => \"Wayfarer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wayfarer-cd/918500.p?id=3361853&skuId=918500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=918500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9185\\/918500.jpg\"}', 'upc' => '042281196829', 'provider' => 'bestbuy'],\n ['name' => \"Vision [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vision-digdownload-cd/918519.p?id=70793&skuId=918519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=918519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9185\\/918519.jpg\"}', 'upc' => '042281196928', 'provider' => 'bestbuy'],\n ['name' => \"Notes From Big Sur [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/notes-from-big-sur-digdownload-cd/918591.p?id=68611&skuId=918591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=918591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9185\\/918591.jpg\"}', 'upc' => '731451199929', 'provider' => 'bestbuy'],\n ['name' => \"Friends of Mr. Cairo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friends-of-mr-cairo-cd/919233.p?id=87223&skuId=919233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=919233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0919\\/0919233_sa.jpg\"}', 'upc' => '042280002121', 'provider' => 'bestbuy'],\n ['name' => \"Dinah Jams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dinah-jams-cd/920542.p?id=71860&skuId=920542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=920542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9205\\/920542_sa.jpg\"}', 'upc' => '042281463921', 'provider' => 'bestbuy'],\n ['name' => \"Helen Merrill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/helen-merrill-cd/920604.p?id=3535110&skuId=920604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=920604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0920\\/0920604_sa.jpg\"}', 'upc' => '042281464324', 'provider' => 'bestbuy'],\n ['name' => \"Brown and Roach Incorporated - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brown-and-roach-incorporated-cd/920613.p?id=64576&skuId=920613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=920613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0920\\/0920613_sa.jpg\"}', 'upc' => '042281464423', 'provider' => 'bestbuy'],\n ['name' => \"Study in Brown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/study-in-brown-cd/920631.p?id=64580&skuId=920631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=920631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9206\\/920631.jpg\"}', 'upc' => '042281464621', 'provider' => 'bestbuy'],\n ['name' => \"At Basin Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-basin-street-cd/920659.p?id=64575&skuId=920659&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=920659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0920\\/0920659_sa.jpg\"}', 'upc' => '042281464829', 'provider' => 'bestbuy'],\n ['name' => \"Entre Dos Aguas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/entre-dos-aguas-cd/921337.p?id=65601&skuId=921337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=921337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9213\\/921337_sa.jpg\"}', 'upc' => '042281410628', 'provider' => 'bestbuy'],\n ['name' => \"Brigadoon [Original Broadway Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brigadoon-original-broadway-cast-cd-original-cast-recording/924325.p?id=2103090&skuId=924325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=924325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9243\\/924325.jpg\"}', 'upc' => '078635100129', 'provider' => 'bestbuy'],\n ['name' => \"I Do! I Do! - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-do-i-do-cd-original-broadway-cast/924593.p?id=86016&skuId=924593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=924593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0924\\/0924593_sa.jpg\"}', 'upc' => '078635112825', 'provider' => 'bestbuy'],\n ['name' => \"Secretos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secretos-cd/927769.p?id=87411&skuId=927769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=927769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0927\\/0927769_sa.jpg\"}', 'upc' => '078635600025', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mejor de Juan Gabriel con Mariachi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mejor-de-juan-gabriel-con-mariachi-cd/927830.p?id=83159&skuId=927830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=927830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9278\\/927830_sa.jpg\"}', 'upc' => '078635601428', 'provider' => 'bestbuy'],\n ['name' => \"Native Sons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/native-sons-cd/928982.p?id=1459176&skuId=928982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=928982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9289\\/928982.jpg\"}', 'upc' => '018663101323', 'provider' => 'bestbuy'],\n ['name' => \"Once Upon a Time in the West [Original... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-upon-a-time-in-the-west-original-cd-original-soundtrack/930229.p?id=93945&skuId=930229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=930229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0930\\/0930229_sa.jpg\"}', 'upc' => '078635473629', 'provider' => 'bestbuy'],\n ['name' => \"Intimamente...Emmanuel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intimamente-emmanuel-cd/932003.p?id=81533&skuId=932003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=932003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0932\\/0932003_sa.jpg\"}', 'upc' => '078635730128', 'provider' => 'bestbuy'],\n ['name' => \"The Revolution Will Not Be Televised - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-revolution-will-not-be-televised-cd/932744.p?id=70725&skuId=932744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=932744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9327\\/932744_sa.jpg\"}', 'upc' => '078635699425', 'provider' => 'bestbuy'],\n ['name' => \"Piano Concerto 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-concerto-2-cd/934822.p?id=1678063&skuId=934822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=934822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9348\\/934822.jpg\"}', 'upc' => '078635651829', 'provider' => 'bestbuy'],\n ['name' => \"14 Exitos Originales: Para Ti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/14-exitos-originales-para-ti-cd/935046.p?id=83151&skuId=935046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=935046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0935\\/0935046_sa.jpg\"}', 'upc' => '078635628920', 'provider' => 'bestbuy'],\n ['name' => \"Canta Lo Romantico de Juan Gabriel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canta-lo-romantico-de-juan-gabriel-cd/936036.p?id=81082&skuId=936036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=936036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9360\\/936036.jpg\"}', 'upc' => '078635602722', 'provider' => 'bestbuy'],\n ['name' => \"Recuerdos 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recuerdos-2-cd/936125.p?id=83153&skuId=936125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=936125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0936\\/0936125_sa.jpg\"}', 'upc' => '078635603521', 'provider' => 'bestbuy'],\n ['name' => \"Canta a Juan Gabriel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canta-a-juan-gabriel-cd/936161.p?id=81091&skuId=936161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=936161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9361\\/936161.jpg\"}', 'upc' => '078635604320', 'provider' => 'bestbuy'],\n ['name' => \"Frente a Frente, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frente-a-frente-vol-2-cd/937516.p?id=81097&skuId=937516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=937516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9375\\/937516.jpg\"}', 'upc' => '078635609622', 'provider' => 'bestbuy'],\n ['name' => \"Sing, Sing, Sing [Bluebird] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-sing-sing-bluebird-cd/937785.p?id=66779&skuId=937785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=937785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0937\\/0937785_sa.jpg\"}', 'upc' => '078635563023', 'provider' => 'bestbuy'],\n ['name' => \"The Glory of the Human Voice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-glory-of-the-human-voice-cd/943224.p?id=2065997&skuId=943224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=943224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9432\\/943224.jpg\"}', 'upc' => '090266117529', 'provider' => 'bestbuy'],\n ['name' => \"Dancin' Magic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancin-magic-cd/944642.p?id=73998&skuId=944642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=944642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9446\\/944642.jpg\"}', 'upc' => '021849440826', 'provider' => 'bestbuy'],\n ['name' => \"Top Percussion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-percussion-cd/946463.p?id=70184&skuId=946463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=946463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0946\\/0946463_sa.jpg\"}', 'upc' => '078635326420', 'provider' => 'bestbuy'],\n ['name' => \"15 Años de Exitos.. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-anos-de-exitos-cd/947676.p?id=83143&skuId=947676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=947676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9476\\/947676_sa.jpg\"}', 'upc' => '078635320824', 'provider' => 'bestbuy'],\n ['name' => \"The King and I [1977 Broadway Revival Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-king-and-i-1977-broadway-revival-cast-cd-original-cast-recording/948461.p?id=2068873&skuId=948461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=948461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9484\\/948461.jpg\"}', 'upc' => '078635261028', 'provider' => 'bestbuy'],\n ['name' => \"Ain't Misbehavin' [Original Broadway Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-misbehavin-original-broadway-cast-cd-original-cast-recording/948746.p?id=72615&skuId=948746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=948746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9487\\/948746_sa.jpg\"}', 'upc' => '078635296525', 'provider' => 'bestbuy'],\n ['name' => \"25 Aniversario, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25-aniversario-vol-2-cd/950313.p?id=168243&skuId=950313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=950313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9503\\/950313_sa.jpg\"}', 'upc' => '078635249224', 'provider' => 'bestbuy'],\n ['name' => \"My Favorite Encores - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-favorite-encores-cd/951606.p?id=1760928&skuId=951606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=951606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9516\\/951606.jpg\"}', 'upc' => '090266072620', 'provider' => 'bestbuy'],\n ['name' => \"Forever Plaid - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forever-plaid-cd-original-broadway-cast/952320.p?id=82697&skuId=952320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=952320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9523\\/952320_sa.jpg\"}', 'upc' => '090266070220', 'provider' => 'bestbuy'],\n ['name' => \"Roar of the Greasepaint -- The Smell of the... - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roar-of-the-greasepaint-the-smell-of-the-cd-original-cast-recording/955112.p?id=96796&skuId=955112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=955112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0955\\/0955112_sa.jpg\"}', 'upc' => '090266035120', 'provider' => 'bestbuy'],\n ['name' => \"Paint Your Wagon [Original Broadway Cast ] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paint-your-wagon-original-broadway-cast--cd-original-broadway-cast/956219.p?id=94291&skuId=956219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=956219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9562\\/956219_sa.jpg\"}', 'upc' => '090266024322', 'provider' => 'bestbuy'],\n ['name' => \"Mancini Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mancini-country-cd/958468.p?id=90333&skuId=958468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=958468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0958\\/0958468_sa.jpg\"}', 'upc' => '078635366822', 'provider' => 'bestbuy'],\n ['name' => \"Opiate [EP] [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/opiate-ep-ep-pa-cd/959895.p?id=101999&skuId=959895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=959895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0959\\/0959895_sa.jpg\"}', 'upc' => '614223102726', 'provider' => 'bestbuy'],\n ['name' => \"10 Grandes Exitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-grandes-exitos-cd/961613.p?id=160723&skuId=961613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=961613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9616\\/961613_sa.jpg\"}', 'upc' => '078635974126', 'provider' => 'bestbuy'],\n ['name' => \"Siempre Estoy Pensando en Ti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/siempre-estoy-pensando-en-ti-cd/962015.p?id=83155&skuId=962015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=962015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0962\\/0962015_sa.jpg\"}', 'upc' => '078635961621', 'provider' => 'bestbuy'],\n ['name' => \"15 Exitos Inolvidables - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-exitos-inolvidables-cd/962088.p?id=86990&skuId=962088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=962088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9620\\/962088_sa.jpg\"}', 'upc' => '078635962420', 'provider' => 'bestbuy'],\n ['name' => \"Dr. Demento Presents: Greatest Xmas Novelty CD - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dr-demento-presents-greatest-xmas-novelty-cd-cd-various/967074.p?id=80868&skuId=967074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0967\\/0967074_sa.jpg\"}', 'upc' => '081227575526', 'provider' => 'bestbuy'],\n ['name' => \"My Son, the Greatest: The Best of Allan... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-son-the-greatest-the-best-of-allan-cd/967136.p?id=98590&skuId=967136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9671\\/967136_sa.jpg\"}', 'upc' => '081227577124', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Girl Groups, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-girl-groups-vol-2-cd-various/967305.p?id=83677&skuId=967305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9673\\/967305_sa.jpg\"}', 'upc' => '081227098926', 'provider' => 'bestbuy'],\n ['name' => \"Back in the USA - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-in-the-usa-cd/967617.p?id=3454889&skuId=967617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0967\\/0967617_sa.jpg\"}', 'upc' => '081227103323', 'provider' => 'bestbuy'],\n ['name' => \"High Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-time-cd/967635.p?id=3454887&skuId=967635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9676\\/967635.jpg\"}', 'upc' => '081227103422', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Ronnie Hawkins & the Hawks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-ronnie-hawkins-the-hawks-cd/967886.p?id=85024&skuId=967886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9678\\/967886_sa.jpg\"}', 'upc' => '081227096625', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Flamingos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-flamingos-cd/967902.p?id=82378&skuId=967902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=967902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9679\\/967902_sa.jpg\"}', 'upc' => '081227096724', 'provider' => 'bestbuy'],\n ['name' => \"Best of Little Anthony & the Imperials... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-little-anthony-the-imperials-cd/968279.p?id=89344&skuId=968279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=968279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9682\\/968279_sa.jpg\"}', 'upc' => '081227091927', 'provider' => 'bestbuy'],\n ['name' => \"The Best of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/the-best-of-cd/968395.p?id=87671&skuId=968395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=968395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9683\\/968395.jpg\"}', 'upc' => '081227094027', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Jimmie Rodgers [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-jimmie-rodgers-rhino-cd/968411.p?id=97059&skuId=968411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=968411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0968\\/0968411_sa.jpg\"}', 'upc' => '081227094225', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/968769.p?id=82561&skuId=968769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=968769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0968\\/0968769_sa.jpg\"}', 'upc' => '081227088422', 'provider' => 'bestbuy'],\n ['name' => \"Live: The Best of Vanilla Fudge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-the-best-of-vanilla-fudge-cd/969198.p?id=102990&skuId=969198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=969198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0969\\/0969198_sa.jpg\"}', 'upc' => '081227079826', 'provider' => 'bestbuy'],\n ['name' => \"Naked Movie Star - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naked-movie-star-cd/969385.p?id=74527&skuId=969385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=969385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '081227084523', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Harmony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-harmony-cd/970033.p?id=86220&skuId=970033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=970033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0970\\/0970033_sa.jpg\"}', 'upc' => '081227071424', 'provider' => 'bestbuy'],\n ['name' => \"Solitude/Solitaire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solitude-solitaire-cd/970550.p?id=2679309&skuId=970550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=970550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0970\\/0970550_sa.jpg\"}', 'upc' => '081227965716', 'provider' => 'bestbuy'],\n ['name' => \"Turn Me Loose! (Uk) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turn-me-loose-uk-cd/970596.p?id=2877852&skuId=970596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=970596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0970\\/0970596_sa.jpg\"}', 'upc' => '081227966829', 'provider' => 'bestbuy'],\n ['name' => \"Music World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-world-cd/970676.p?id=71279&skuId=970676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=970676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0970\\/0970676_sa.jpg\"}', 'upc' => '798387943729', 'provider' => 'bestbuy'],\n ['name' => \"Long As You're Living - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-as-youre-living-cd/971425.p?id=70372&skuId=971425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9714\\/971425_sa.jpg\"}', 'upc' => '063757407423', 'provider' => 'bestbuy'],\n ['name' => \"Roots (Arg) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roots-arg-cd/971620.p?id=3194431&skuId=971620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9716\\/971620.jpg\"}', 'upc' => '081227960124', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic Jazz Legends - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-jazz-legends-cd-various/971657.p?id=3185156&skuId=971657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '081227960247', 'provider' => 'bestbuy'],\n ['name' => \"Cosby & The Kids (Remastered) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cosby-the-kids-remastered-cd/971737.p?id=1418614&skuId=971737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9717\\/971737.jpg\"}', 'upc' => '081227461621', 'provider' => 'bestbuy'],\n ['name' => \"Some Great Reward [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-great-reward-lp-lp-vinyl/971746.p?id=2980111&skuId=971746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9717\\/971746_sa.jpg\"}', 'upc' => '081227960841', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Bill Cosby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-bill-cosby-cd/971755.p?id=1416478&skuId=971755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0971\\/0971755_sa.jpg\"}', 'upc' => '081227461423', 'provider' => 'bestbuy'],\n ['name' => \"Clarke-Boland Big Band (Arg) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clarke-boland-big-band-arg-cd/971862.p?id=3196674&skuId=971862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=971862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '081227965846', 'provider' => 'bestbuy'],\n ['name' => \"Billboard Top Hits: 1979 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billboard-top-hits-1979-cd-various/972282.p?id=74726&skuId=972282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=972282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9722\\/972282_sa.jpg\"}', 'upc' => '081227067427', 'provider' => 'bestbuy'],\n ['name' => \"LaVern Baker Live in Hollywood '91 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lavern-baker-live-in-hollywood-91-cd/973343.p?id=73761&skuId=973343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=973343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9733\\/973343_sa.jpg\"}', 'upc' => '081227056520', 'provider' => 'bestbuy'],\n ['name' => \"Blue Yule: Christmas Blues and R&B Classics - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-yule-christmas-blues-and-r-b-classics-cd-various/973398.p?id=77634&skuId=973398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=973398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0973\\/0973398_sa.jpg\"}', 'upc' => '081227056827', 'provider' => 'bestbuy'],\n ['name' => \"Loozanteen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loozanteen-cd/973520.p?id=2098472&skuId=973520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=973520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '081227051723', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/974333.p?id=103218&skuId=974333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=974333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0974\\/0974333_sa.jpg\"}', 'upc' => '081227024529', 'provider' => 'bestbuy'],\n ['name' => \"Hellooo Baby!: The Best of the Big Bopper,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hellooo-baby-the-best-of-the-big-bopper-cd/974495.p?id=74594&skuId=974495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=974495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9744\\/974495.jpg\"}', 'upc' => '081227016425', 'provider' => 'bestbuy'],\n ['name' => \"Kings of Sleep - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kings-of-sleep-cd/976251.p?id=84705&skuId=976251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=976251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0976\\/0976251_sa.jpg\"}', 'upc' => '088561101329', 'provider' => 'bestbuy'],\n ['name' => \"Bonded by Blood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bonded-by-blood-cd/977401.p?id=81812&skuId=977401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=977401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9774\\/977401_sa.jpg\"}', 'upc' => '088561801922', 'provider' => 'bestbuy'],\n ['name' => \"Liberty & Justice For... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liberty-justice-for-cd/977713.p?id=72602&skuId=977713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=977713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0977\\/0977713_sa.jpg\"}', 'upc' => '088561820428', 'provider' => 'bestbuy'],\n ['name' => \"Forbidden Evil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forbidden-evil-cd/978197.p?id=82623&skuId=978197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=978197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0978\\/0978197_sa.jpg\"}', 'upc' => '088561825720', 'provider' => 'bestbuy'],\n ['name' => \"A Day on Cape Cod: Early Cape Morning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-day-on-cape-cod-early-cape-morning-cd/979472.p?id=99604&skuId=979472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=979472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9794\\/979472.jpg\"}', 'upc' => '014431001420', 'provider' => 'bestbuy'],\n ['name' => \"Le Hoogie Boogie: Louisiana French Music for... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/le-hoogie-boogie-louisiana-french-music-for-cd/980264.p?id=80826&skuId=980264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=980264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9802\\/980264_sa.jpg\"}', 'upc' => '011661802223', 'provider' => 'bestbuy'],\n ['name' => \"Polkatharsis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polkatharsis-cd/980326.p?id=75760&skuId=980326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=980326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9803\\/980326_sa.jpg\"}', 'upc' => '011661900929', 'provider' => 'bestbuy'],\n ['name' => \"Zouk Attack - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zouk-attack-various-cd/980843.p?id=105329&skuId=980843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=980843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0980\\/0980843_sa.jpg\"}', 'upc' => '011661503724', 'provider' => 'bestbuy'],\n ['name' => \"Brazil Forr¢: Music for Maids and Taxi Drivers - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brazil-forr-music-for-maids-and-taxi-drivers-cd-various/980941.p?id=75781&skuId=980941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=980941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9809\\/980941.jpg\"}', 'upc' => '011661504424', 'provider' => 'bestbuy'],\n ['name' => \"Brazil -- Roots -- Samba - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brazil-roots-samba-cd-various/980969.p?id=75776&skuId=980969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=980969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0980\\/0980969_sa.jpg\"}', 'upc' => '011661504523', 'provider' => 'bestbuy'],\n ['name' => \"Mardi Gras Mambo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mardi-gras-mambo-cd/981085.p?id=96623&skuId=981085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=981085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0981\\/0981085_sa.jpg\"}', 'upc' => '011661603721', 'provider' => 'bestbuy'],\n ['name' => \"Steve Riley & the Mamou Playboys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-riley-the-mamou-playboys-cd/981101.p?id=96717&skuId=981101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=981101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9811\\/981101_sa.jpg\"}', 'upc' => '011661603820', 'provider' => 'bestbuy'],\n ['name' => \"Tit Galop Pour Mamou... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tit-galop-pour-mamou-cd/981307.p?id=2387294&skuId=981307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=981307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9813\\/981307.jpg\"}', 'upc' => '011661604827', 'provider' => 'bestbuy'],\n ['name' => \"Have Moicy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/have-moicy-cd/981389.p?id=84990&skuId=981389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=981389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0981\\/0981389_sa.jpg\"}', 'upc' => '011661301023', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-life-cd/981450.p?id=2304902&skuId=981450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=981450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9814\\/981450_sa.jpg\"}', 'upc' => '011661304925', 'provider' => 'bestbuy'],\n ['name' => \"I Won'T Cry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-wont-cry-cd/982164.p?id=2542459&skuId=982164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0982\\/0982164_sa.jpg\"}', 'upc' => '011661208322', 'provider' => 'bestbuy'],\n ['name' => \"Blue Side of Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-side-of-town-cd/982271.p?id=91082&skuId=982271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0982\\/0982271_sa.jpg\"}', 'upc' => '011661029224', 'provider' => 'bestbuy'],\n ['name' => \"Songs That Tell a Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-that-tell-a-story-cd/982388.p?id=3440146&skuId=982388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0982\\/0982388_sa.jpg\"}', 'upc' => '011661103023', 'provider' => 'bestbuy'],\n ['name' => \"Weeds & Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weeds-water-cd/982413.p?id=96667&skuId=982413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9824\\/982413.jpg\"}', 'upc' => '011661103825', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Class of 1990 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-class-of-1990-cd-various/982592.p?id=75171&skuId=982592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0982\\/0982592_sa.jpg\"}', 'upc' => '011661850729', 'provider' => 'bestbuy'],\n ['name' => \"Rembetica: Historic Urban Folk Songs From Greece - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rembetica-historic-urban-folk-songs-from-greece-cd-various/982832.p?id=84153&skuId=982832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0982\\/0982832_sa.jpg\"}', 'upc' => '011661107922', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Piano Wizard: Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-piano-wizard-live-cd/982994.p?id=75544&skuId=982994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=982994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9829\\/982994_sa.jpg\"}', 'upc' => '011661202726', 'provider' => 'bestbuy'],\n ['name' => \"Classified - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classified-cd/983047.p?id=75542&skuId=983047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0983\\/0983047_sa.jpg\"}', 'upc' => '011661203624', 'provider' => 'bestbuy'],\n ['name' => \"Too Late to Cry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-late-to-cry-cd/983136.p?id=88416&skuId=983136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9831\\/983136.jpg\"}', 'upc' => '011661023529', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Album 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-album-5-cd-various/983207.p?id=2729964&skuId=983207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0983\\/0983207_sa.jpg\"}', 'upc' => '011661024021', 'provider' => 'bestbuy'],\n ['name' => \"Don't Stop the Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-stop-the-music-cd/983252.p?id=91077&skuId=983252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0983\\/0983252_sa.jpg\"}', 'upc' => '011661024526', 'provider' => 'bestbuy'],\n ['name' => \"Solo Banjo Works - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-banjo-works-cd/983289.p?id=102296&skuId=983289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0983\\/0983289_sa.jpg\"}', 'upc' => '011661024724', 'provider' => 'bestbuy'],\n ['name' => \"Drive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drive-cd/983369.p?id=82418&skuId=983369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9833\\/983369.jpg\"}', 'upc' => '011661025523', 'provider' => 'bestbuy'],\n ['name' => \"At the Old Schoolhouse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-old-schoolhouse-cd/983449.p?id=87113&skuId=983449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9834\\/983449.jpg\"}', 'upc' => '011661026025', 'provider' => 'bestbuy'],\n ['name' => \"The Original Peacock Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-peacock-recordings-cd/983500.p?id=75899&skuId=983500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0983\\/0983500_sa.jpg\"}', 'upc' => '011661203921', 'provider' => 'bestbuy'],\n ['name' => \"Waitin' for My Ya Ya - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waitin-for-my-ya-ya-cd/983608.p?id=76232&skuId=983608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9836\\/983608_sa.jpg\"}', 'upc' => '011661205123', 'provider' => 'bestbuy'],\n ['name' => \"Live: Mardi Gras in Montreux - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-mardi-gras-in-montreux-cd/983617.p?id=65691&skuId=983617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9836\\/983617.jpg\"}', 'upc' => '011661205222', 'provider' => 'bestbuy'],\n ['name' => \"A Change Is Gonna Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-change-is-gonna-come-cd/983635.p?id=76343&skuId=983635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9836\\/983635.jpg\"}', 'upc' => '011661205321', 'provider' => 'bestbuy'],\n ['name' => \"Two Highways - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-highways-cd/983742.p?id=88418&skuId=983742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=983742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9837\\/983742_sa.jpg\"}', 'upc' => '011661026520', 'provider' => 'bestbuy'],\n ['name' => \"Tony Rice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-rice-cd/984064.p?id=96595&skuId=984064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9840\\/984064_sa.jpg\"}', 'upc' => '011661008526', 'provider' => 'bestbuy'],\n ['name' => \"I've Got That Old Feeling - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ive-got-that-old-feeling-cd/984260.p?id=88415&skuId=984260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9842\\/984260.jpg\"}', 'upc' => '011661027527', 'provider' => 'bestbuy'],\n ['name' => \"The Bluegrass Album, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bluegrass-album-vol-1-cd-various/984304.p?id=75153&skuId=984304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0984\\/0984304_sa.jpg\"}', 'upc' => '011661014022', 'provider' => 'bestbuy'],\n ['name' => \"The Bluegrass Album, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bluegrass-album-vol-2-cd-various/984386.p?id=75154&skuId=984386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9843\\/984386_sa.jpg\"}', 'upc' => '011661016422', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Album, Vol. 3: California... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-album-vol-3-california-cd-various/984466.p?id=75155&skuId=984466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9844\\/984466_sa.jpg\"}', 'upc' => '011661018020', 'provider' => 'bestbuy'],\n ['name' => \"Me & My Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/me-my-guitar-cd/984741.p?id=96592&skuId=984741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9847\\/984741_sa.jpg\"}', 'upc' => '011661020122', 'provider' => 'bestbuy'],\n ['name' => \"Steady Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steady-rock-cd/984992.p?id=92868&skuId=984992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=984992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0984\\/0984992_sa.jpg\"}', 'upc' => '011661209220', 'provider' => 'bestbuy'],\n ['name' => \"Your Mama Don't Know - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/your-mama-dont-know-cd/985287.p?id=155913&skuId=985287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9852\\/985287_sa.jpg\"}', 'upc' => '011661210721', 'provider' => 'bestbuy'],\n ['name' => \"One-Dime Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-dime-blues-cd/985349.p?id=73753&skuId=985349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9853\\/985349_sa.jpg\"}', 'upc' => '011661211223', 'provider' => 'bestbuy'],\n ['name' => \"Saddle Pals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saddle-pals-cd/985492.p?id=96663&skuId=985492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9854\\/985492_sa.jpg\"}', 'upc' => '011661801127', 'provider' => 'bestbuy'],\n ['name' => \"Modern New Orleans Masters - CD - Various Holiday\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-new-orleans-masters-cd-various-holiday/985651.p?id=93176&skuId=985651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985651_sa.jpg\"}', 'upc' => '011661151420', 'provider' => 'bestbuy'],\n ['name' => \"The Bluegrass Compact Disc, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bluegrass-compact-disc-vol-2-cd-various/985679.p?id=2444264&skuId=985679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985679_sa.jpg\"}', 'upc' => '011661151628', 'provider' => 'bestbuy'],\n ['name' => \"Best of the West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-west-cd/985688.p?id=96652&skuId=985688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985688_sa.jpg\"}', 'upc' => '011661151727', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the West Rides Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-west-rides-again-cd/985697.p?id=2387156&skuId=985697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985697_sa.jpg\"}', 'upc' => '011661152427', 'provider' => 'bestbuy'],\n ['name' => \"Buckwheat's Zydeco Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buckwheats-zydeco-party-cd/985713.p?id=2304900&skuId=985713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9857\\/985713_sa.jpg\"}', 'upc' => '011661152823', 'provider' => 'bestbuy'],\n ['name' => \"A Few Old Memories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-few-old-memories-cd/985722.p?id=80379&skuId=985722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9857\\/985722_sa.jpg\"}', 'upc' => '011661152922', 'provider' => 'bestbuy'],\n ['name' => \"Mandolin Abstractions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mandolin-abstractions-cd/985795.p?id=84298&skuId=985795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9857\\/985795.jpg\"}', 'upc' => '011661154025', 'provider' => 'bestbuy'],\n ['name' => \"Musical Varieties - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musical-varieties-cd/985839.p?id=75758&skuId=985839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985839_sa.jpg\"}', 'upc' => '011661154629', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Spice - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-spice-cd-various/985866.p?id=76546&skuId=985866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0985\\/0985866_sa.jpg\"}', 'upc' => '011661155022', 'provider' => 'bestbuy'],\n ['name' => \"Water from Another Time: A Retrospective - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/water-from-another-time-a-retrospective-cd/985893.p?id=91108&skuId=985893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=985893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9858\\/985893_sa.jpg\"}', 'upc' => '011661155527', 'provider' => 'bestbuy'],\n ['name' => \"The First Million Miles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-million-miles-cd/986400.p?id=100008&skuId=986400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9864\\/986400_sa.jpg\"}', 'upc' => '011661156029', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Brass Bands: Down Yonder - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-brass-bands-down-yonder-cd-various/986428.p?id=69584&skuId=986428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0986\\/0986428_sa.jpg\"}', 'upc' => '011661156227', 'provider' => 'bestbuy'],\n ['name' => \"Rounder Fiddle - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rounder-fiddle-cd-various/986473.p?id=97413&skuId=986473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9864\\/986473_sa.jpg\"}', 'upc' => '011661156524', 'provider' => 'bestbuy'],\n ['name' => \"Mardi Gras Party [Rounder] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mardi-gras-party-rounder-cd-various/986491.p?id=90523&skuId=986491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9864\\/986491_sa.jpg\"}', 'upc' => '011661156722', 'provider' => 'bestbuy'],\n ['name' => \"Live From Left Coast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-left-coast-cd/986936.p?id=2472687&skuId=986936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9869\\/986936.jpg\"}', 'upc' => '011661603523', 'provider' => 'bestbuy'],\n ['name' => \"Mouseketeer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mouseketeer-cd/986972.p?id=81344&skuId=986972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=986972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0986\\/0986972_sa.jpg\"}', 'upc' => '016351481429', 'provider' => 'bestbuy'],\n ['name' => \"Galong Galong Galong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/galong-galong-galong-cd/987007.p?id=104945&skuId=987007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987007_sa.jpg\"}', 'upc' => '016351481825', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of the Wailing Souls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-the-wailing-souls-cd/987025.p?id=103303&skuId=987025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9870\\/987025_sa.jpg\"}', 'upc' => '016351481924', 'provider' => 'bestbuy'],\n ['name' => \"Tommy Makem & Liam Clancy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tommy-makem-liam-clancy-cd/987043.p?id=90247&skuId=987043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987043_sa.jpg\"}', 'upc' => '016351520227', 'provider' => 'bestbuy'],\n ['name' => \"Sparrows Point - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sparrows-point-cd/987098.p?id=98598&skuId=987098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987098_sa.jpg\"}', 'upc' => '016351800220', 'provider' => 'bestbuy'],\n ['name' => \"The Makem & Clancy Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-makem-clancy-concert-cd/987150.p?id=90237&skuId=987150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9871\\/987150_sa.jpg\"}', 'upc' => '016351520326', 'provider' => 'bestbuy'],\n ['name' => \"Two for the Early Dew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-for-the-early-dew-cd/987169.p?id=90240&skuId=987169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9871\\/987169_sa.jpg\"}', 'upc' => '016351520425', 'provider' => 'bestbuy'],\n ['name' => \"Live: National Concert Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-national-concert-hall-cd/987178.p?id=90238&skuId=987178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9871\\/987178_sa.jpg\"}', 'upc' => '016351520623', 'provider' => 'bestbuy'],\n ['name' => \"Spirit of the Nation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-the-nation-cd/987230.p?id=104635&skuId=987230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987230_sa.jpg\"}', 'upc' => '016351522825', 'provider' => 'bestbuy'],\n ['name' => \"Live Alive-Oh - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-alive-oh-cd/987258.p?id=104631&skuId=987258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987258_sa.jpg\"}', 'upc' => '016351522924', 'provider' => 'bestbuy'],\n ['name' => \"Rifles of the I.R.A. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rifles-of-the-i-r-a-cd/987276.p?id=104633&skuId=987276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987276_sa.jpg\"}', 'upc' => '016351523020', 'provider' => 'bestbuy'],\n ['name' => \"Let the People Sing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-the-people-sing-cd/987294.p?id=104630&skuId=987294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9872\\/987294_sa.jpg\"}', 'upc' => '016351523129', 'provider' => 'bestbuy'],\n ['name' => \"Three Swedish Fiddlers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-swedish-fiddlers-cd/987445.p?id=101801&skuId=987445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9874\\/987445_sa.jpg\"}', 'upc' => '016351210128', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Norwegian Fiddle Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-norwegian-fiddle-music-cd/987454.p?id=93617&skuId=987454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987454_sa.jpg\"}', 'upc' => '016351210326', 'provider' => 'bestbuy'],\n ['name' => \"Andy Statman Klezmer Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andy-statman-klezmer-orchestra-cd/987463.p?id=100193&skuId=987463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9874\\/987463_sa.jpg\"}', 'upc' => '016351210425', 'provider' => 'bestbuy'],\n ['name' => \"Noel Hill & Tony MacMahon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/noel-hill-tony-macmahon-cd/987533.p?id=85384&skuId=987533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9875\\/987533_sa.jpg\"}', 'upc' => '016351340320', 'provider' => 'bestbuy'],\n ['name' => \"Earth's Rightful Ruler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earths-rightful-ruler-cd/987891.p?id=94245&skuId=987891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0987\\/0987891_sa.jpg\"}', 'upc' => '016351441126', 'provider' => 'bestbuy'],\n ['name' => \"Omana Wapi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omana-wapi-cd/987917.p?id=82817&skuId=987917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=987917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9879\\/987917_sa.jpg\"}', 'upc' => '016351432421', 'provider' => 'bestbuy'],\n ['name' => \"Fire House Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-house-rock-cd/988033.p?id=103298&skuId=988033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988033_sa.jpg\"}', 'upc' => '016351480422', 'provider' => 'bestbuy'],\n ['name' => \"Black Sounds of Freedom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-sounds-of-freedom-cd/988051.p?id=74841&skuId=988051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988051_sa.jpg\"}', 'upc' => '016351480521', 'provider' => 'bestbuy'],\n ['name' => \"Wa-Do-Dem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wa-do-dem-cd/988079.p?id=81349&skuId=988079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9880\\/988079_sa.jpg\"}', 'upc' => '016351480620', 'provider' => 'bestbuy'],\n ['name' => \"Mister Yellowman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mister-yellowman-cd/988097.p?id=104952&skuId=988097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988097_sa.jpg\"}', 'upc' => '016351480729', 'provider' => 'bestbuy'],\n ['name' => \"Skidip! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skidip-cd/988122.p?id=81345&skuId=988122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988122_sa.jpg\"}', 'upc' => '016351480927', 'provider' => 'bestbuy'],\n ['name' => \"Words & Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/words-music-cd/988266.p?id=95038&skuId=988266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9882\\/988266.jpg\"}', 'upc' => '016351793522', 'provider' => 'bestbuy'],\n ['name' => \"Bad Boy Skanking - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-boy-skanking-cd/988284.p?id=104962&skuId=988284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988284_sa.jpg\"}', 'upc' => '016351481023', 'provider' => 'bestbuy'],\n ['name' => \"The Mouse and the Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mouse-and-the-man-cd/988300.p?id=81347&skuId=988300&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988300', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9883\\/988300_sa.jpg\"}', 'upc' => '016351481122', 'provider' => 'bestbuy'],\n ['name' => \"Zungguzungguguzungguzeng - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zungguzungguguzungguzeng-cd/988328.p?id=104960&skuId=988328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9883\\/988328_sa.jpg\"}', 'upc' => '016351481221', 'provider' => 'bestbuy'],\n ['name' => \"Hark! The Village Wait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hark-the-village-wait-cd/988337.p?id=100259&skuId=988337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988337_sa.jpg\"}', 'upc' => '016351795229', 'provider' => 'bestbuy'],\n ['name' => \"Now We Are Six - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-we-are-six-cd/988346.p?id=288667&skuId=988346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9883\\/988346_sa.jpg\"}', 'upc' => '016351796028', 'provider' => 'bestbuy'],\n ['name' => \"Please to See the King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/please-to-see-the-king-cd/988373.p?id=100261&skuId=988373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988373_sa.jpg\"}', 'upc' => '016351797520', 'provider' => 'bestbuy'],\n ['name' => \"Art of Fingerstyle Jazz Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-fingerstyle-jazz-guitar-cd/988499.p?id=73752&skuId=988499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9884\\/988499_sa.jpg\"}', 'upc' => '016351980526', 'provider' => 'bestbuy'],\n ['name' => \"When I Was on Horseback - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-i-was-on-horseback-cd/988587.p?id=98824&skuId=988587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988587_sa.jpg\"}', 'upc' => '016351971623', 'provider' => 'bestbuy'],\n ['name' => \"How to Play Blues Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-play-blues-guitar-cd/988658.p?id=84399&skuId=988658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9886\\/988658.jpg\"}', 'upc' => '016351980120', 'provider' => 'bestbuy'],\n ['name' => \"Flatpicking Guitar Festival - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flatpicking-guitar-festival-cd-various/988676.p?id=82398&skuId=988676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988676_sa.jpg\"}', 'upc' => '016351980328', 'provider' => 'bestbuy'],\n ['name' => \"Bounty Hunter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bounty-hunter-cd/988747.p?id=177097&skuId=988747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988747_sa.jpg\"}', 'upc' => '015891100326', 'provider' => 'bestbuy'],\n ['name' => \"Carolina Sky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carolina-sky-cd/988756.p?id=79285&skuId=988756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9887\\/988756.jpg\"}', 'upc' => '015891100623', 'provider' => 'bestbuy'],\n ['name' => \"Irregular Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irregular-guy-cd/988783.p?id=156034&skuId=988783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988783_sa.jpg\"}', 'upc' => '015891100920', 'provider' => 'bestbuy'],\n ['name' => \"At My Window - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-my-window-cd/988809.p?id=105171&skuId=988809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9888\\/988809_sa.jpg\"}', 'upc' => '015891102023', 'provider' => 'bestbuy'],\n ['name' => \"The Live Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-live-album-cd/988872.p?id=87705&skuId=988872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988872_sa.jpg\"}', 'upc' => '015891102429', 'provider' => 'bestbuy'],\n ['name' => \"Old Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-friends-cd/988890.p?id=77918&skuId=988890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988890_sa.jpg\"}', 'upc' => '015891102528', 'provider' => 'bestbuy'],\n ['name' => \"When It Rains - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-it-rains-cd/988943.p?id=177160&skuId=988943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0988\\/0988943_sa.jpg\"}', 'upc' => '015891378824', 'provider' => 'bestbuy'],\n ['name' => \"Odd Man In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/odd-man-in-cd/988961.p?id=177155&skuId=988961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9889\\/988961_sa.jpg\"}', 'upc' => '015891379029', 'provider' => 'bestbuy'],\n ['name' => \"All on a Rising Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-on-a-rising-day-cd/988989.p?id=97421&skuId=988989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=988989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9889\\/988989_sa.jpg\"}', 'upc' => '015891379128', 'provider' => 'bestbuy'],\n ['name' => \"Home of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-of-the-blues-cd/989023.p?id=92851&skuId=989023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989023_sa.jpg\"}', 'upc' => '015891379326', 'provider' => 'bestbuy'],\n ['name' => \"Blue Blazes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-blazes-cd/989041.p?id=95932&skuId=989041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9890\\/989041.jpg\"}', 'upc' => '015891379425', 'provider' => 'bestbuy'],\n ['name' => \"Sugar Plums: Holiday Treats from Sugar Hill - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sugar-plums-holiday-treats-from-sugar-hill-cd-various/989078.p?id=100739&skuId=989078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9890\\/989078.jpg\"}', 'upc' => '015891379623', 'provider' => 'bestbuy'],\n ['name' => \"Rambler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rambler-cd/989103.p?id=96174&skuId=989103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9891\\/989103_sa.jpg\"}', 'upc' => '015891379821', 'provider' => 'bestbuy'],\n ['name' => \"The New Frontier - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-frontier-cd/989149.p?id=83039&skuId=989149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9891\\/989149.jpg\"}', 'upc' => '015891380124', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-of-love-cd/989185.p?id=104317&skuId=989185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9891\\/989185_sa.jpg\"}', 'upc' => '015891102726', 'provider' => 'bestbuy'],\n ['name' => \"West Textures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-textures-cd/989201.p?id=87706&skuId=989201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989201_sa.jpg\"}', 'upc' => '015891102825', 'provider' => 'bestbuy'],\n ['name' => \"Far North - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-north-cd/989407.p?id=177102&skuId=989407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989407_sa.jpg\"}', 'upc' => '015891850221', 'provider' => 'bestbuy'],\n ['name' => \"The Gospel Collection 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gospel-collection-1-cd/989434.p?id=88832&skuId=989434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989434_sa.jpg\"}', 'upc' => '015891910420', 'provider' => 'bestbuy'],\n ['name' => \"Hymn Time in the Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hymn-time-in-the-country-cd/989531.p?id=88828&skuId=989531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9895\\/989531_sa.jpg\"}', 'upc' => '015891376523', 'provider' => 'bestbuy'],\n ['name' => \"Take Me Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-me-back-cd/989559.p?id=101875&skuId=989559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9895\\/989559_sa.jpg\"}', 'upc' => '015891376622', 'provider' => 'bestbuy'],\n ['name' => \"Shades of the Past - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shades-of-the-past-cd/989577.p?id=85769&skuId=989577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9895\\/989577.jpg\"}', 'upc' => '015891376721', 'provider' => 'bestbuy'],\n ['name' => \"Blue Rose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-rose-cd/989595.p?id=75104&skuId=989595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9895\\/989595_sa.jpg\"}', 'upc' => '015891376820', 'provider' => 'bestbuy'],\n ['name' => \"Cool of the Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cool-of-the-day-cd/989639.p?id=106574&skuId=989639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989639_sa.jpg\"}', 'upc' => '015891113227', 'provider' => 'bestbuy'],\n ['name' => \"The Great Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-road-cd/989648.p?id=170663&skuId=989648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9896\\/989648_sa.jpg\"}', 'upc' => '015891113425', 'provider' => 'bestbuy'],\n ['name' => \"Thunderation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thunderation-cd/989657.p?id=79097&skuId=989657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9896\\/989657.jpg\"}', 'upc' => '015891113524', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass: World's Greatest Show - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-worlds-greatest-show-cd-various/989675.p?id=79009&skuId=989675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9896\\/989675_sa.jpg\"}', 'upc' => '015891220123', 'provider' => 'bestbuy'],\n ['name' => \"15th Anniversary Celebration - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15th-anniversary-celebration-cd-various/989684.p?id=98306&skuId=989684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9896\\/989684_sa.jpg\"}', 'upc' => '015891220222', 'provider' => 'bestbuy'],\n ['name' => \"Once More, Vols. 1 & 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/once-more-vols-1-2-cd/989700.p?id=177159&skuId=989700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9897\\/989700.jpg\"}', 'upc' => '015891220321', 'provider' => 'bestbuy'],\n ['name' => \"One Way Track - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-way-track-cd/989719.p?id=75558&skuId=989719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989719_sa.jpg\"}', 'upc' => '015891370125', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Temptation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-temptation-cd/989728.p?id=99039&skuId=989728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9897\\/989728_sa.jpg\"}', 'upc' => '015891370620', 'provider' => 'bestbuy'],\n ['name' => \"Skaggs & Rice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skaggs-rice-cd/989755.p?id=99042&skuId=989755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989755_sa.jpg\"}', 'upc' => '015891371122', 'provider' => 'bestbuy'],\n ['name' => \"The Walls of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-walls-of-time-cd/989808.p?id=97427&skuId=989808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9898\\/989808_sa.jpg\"}', 'upc' => '015891372228', 'provider' => 'bestbuy'],\n ['name' => \"Eight String Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eight-string-swing-cd/989817.p?id=73457&skuId=989817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989817_sa.jpg\"}', 'upc' => '015891372525', 'provider' => 'bestbuy'],\n ['name' => \"Busy Bee Cafe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/busy-bee-cafe-cd/989826.p?id=100640&skuId=989826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9898\\/989826.jpg\"}', 'upc' => '015891372624', 'provider' => 'bestbuy'],\n ['name' => \"Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-cd/989844.p?id=79095&skuId=989844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9898\\/989844_sa.jpg\"}', 'upc' => '015891373027', 'provider' => 'bestbuy'],\n ['name' => \"Church Street Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/church-street-blues-cd/989862.p?id=107533&skuId=989862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989862_sa.jpg\"}', 'upc' => '015891373225', 'provider' => 'bestbuy'],\n ['name' => \"At the Scene - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-scene-cd/989899.p?id=98310&skuId=989899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9898\\/989899.jpg\"}', 'upc' => '015891373621', 'provider' => 'bestbuy'],\n ['name' => \"Desert Rose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desert-rose-cd/989915.p?id=156035&skuId=989915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9899\\/989915_sa.jpg\"}', 'upc' => '015891374321', 'provider' => 'bestbuy'],\n ['name' => \"On the Boulevard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-boulevard-cd/989924.p?id=93139&skuId=989924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989924_sa.jpg\"}', 'upc' => '015891374529', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Ties - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-ties-cd/989951.p?id=85767&skuId=989951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=989951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0989\\/0989951_sa.jpg\"}', 'upc' => '015891374826', 'provider' => 'bestbuy'],\n ['name' => \"Heaven's Joy Awaits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavens-joy-awaits-cd/990002.p?id=177113&skuId=990002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9900\\/990002.jpg\"}', 'upc' => '015891376028', 'provider' => 'bestbuy'],\n ['name' => \"I'll Wander Back Someday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-wander-back-someday-cd/990057.p?id=88829&skuId=990057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990057_sa.jpg\"}', 'upc' => '015891376929', 'provider' => 'bestbuy'],\n ['name' => \"Take a Step over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-a-step-over-cd/990075.p?id=177095&skuId=990075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9900\\/990075_sa.jpg\"}', 'upc' => '015891377025', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/990093.p?id=93138&skuId=990093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9900\\/990093.jpg\"}', 'upc' => '015891377124', 'provider' => 'bestbuy'],\n ['name' => \"Classic Country Gents Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-country-gents-reunion-cd/990119.p?id=156037&skuId=990119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9901\\/990119_sa.jpg\"}', 'upc' => '015891377223', 'provider' => 'bestbuy'],\n ['name' => \"Now They Are Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-they-are-four-cd/990137.p?id=74487&skuId=990137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990137_sa.jpg\"}', 'upc' => '015891377322', 'provider' => 'bestbuy'],\n ['name' => \"I Heard the Angels Singing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-heard-the-angels-singing-cd/990155.p?id=177114&skuId=990155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990155_sa.jpg\"}', 'upc' => '015891377421', 'provider' => 'bestbuy'],\n ['name' => \"Cathy Fink & Marcy Marxer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cathy-fink-marcy-marxer-cd/990173.p?id=82234&skuId=990173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990173_sa.jpg\"}', 'upc' => '015891377520', 'provider' => 'bestbuy'],\n ['name' => \"High Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-time-cd/990191.p?id=73458&skuId=990191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990191_sa.jpg\"}', 'upc' => '015891377629', 'provider' => 'bestbuy'],\n ['name' => \"I Know a Good Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-know-a-good-thing-cd/990217.p?id=94428&skuId=990217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9902\\/990217_sa.jpg\"}', 'upc' => '015891377728', 'provider' => 'bestbuy'],\n ['name' => \"The Boys Are Back in Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-boys-are-back-in-town-cd/990235.p?id=177153&skuId=990235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9902\\/990235_sa.jpg\"}', 'upc' => '015891377827', 'provider' => 'bestbuy'],\n ['name' => \"Treasures Untold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/treasures-untold-cd/990262.p?id=73456&skuId=990262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9902\\/990262_sa.jpg\"}', 'upc' => '015891378022', 'provider' => 'bestbuy'],\n ['name' => \"Dust Bowl Children - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dust-bowl-children-cd/990280.p?id=97423&skuId=990280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9902\\/990280_sa.jpg\"}', 'upc' => '015891378121', 'provider' => 'bestbuy'],\n ['name' => \"My Heart Is Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-heart-is-yours-cd/990306.p?id=88830&skuId=990306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990306_sa.jpg\"}', 'upc' => '015891378220', 'provider' => 'bestbuy'],\n ['name' => \"Take It Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-it-home-cd/990342.p?id=85766&skuId=990342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9903\\/990342_sa.jpg\"}', 'upc' => '015891378428', 'provider' => 'bestbuy'],\n ['name' => \"Scenic Roots - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scenic-roots-cd/990360.p?id=177162&skuId=990360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990360_sa.jpg\"}', 'upc' => '015891378527', 'provider' => 'bestbuy'],\n ['name' => \"The Power of Expression - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-power-of-expression-cd/990422.p?id=75013&skuId=990422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9904\\/990422_sa.jpg\"}', 'upc' => '018861014821', 'provider' => 'bestbuy'],\n ['name' => \"Past Lives - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/past-lives-cd/990440.p?id=97684&skuId=990440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9904\\/990440_sa.jpg\"}', 'upc' => '018861014920', 'provider' => 'bestbuy'],\n ['name' => \"Invisible Lantern - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invisible-lantern-cd/990663.p?id=98136&skuId=990663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990663_sa.jpg\"}', 'upc' => '018861018829', 'provider' => 'bestbuy'],\n ['name' => \"Land Speed Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/land-speed-record-cd/990798.p?id=85975&skuId=990798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990798_sa.jpg\"}', 'upc' => '018861019529', 'provider' => 'bestbuy'],\n ['name' => \"Hallraker: Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hallraker-live-cd/990967.p?id=80253&skuId=990967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=990967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0990\\/0990967_sa.jpg\"}', 'upc' => '018861020525', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/991154.p?id=73642&skuId=991154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9911\\/991154_sa.jpg\"}', 'upc' => '018861016023', 'provider' => 'bestbuy'],\n ['name' => \"Mournful Cries - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mournful-cries-cd/991172.p?id=2434683&skuId=991172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9911\\/991172_sa.jpg\"}', 'upc' => '018861016122', 'provider' => 'bestbuy'],\n ['name' => \"Buzz Factory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buzz-factory-cd/991261.p?id=98133&skuId=991261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0991\\/0991261_sa.jpg\"}', 'upc' => '018861024820', 'provider' => 'bestbuy'],\n ['name' => \"Helter Stupid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/helter-stupid-cd/991341.p?id=92965&skuId=991341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9913\\/991341_sa.jpg\"}', 'upc' => '018861025223', 'provider' => 'bestbuy'],\n ['name' => \"Heavier Than Thou - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavier-than-thou-cd/991528.p?id=97743&skuId=991528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0991\\/0991528_sa.jpg\"}', 'upc' => '018861026626', 'provider' => 'bestbuy'],\n ['name' => \"Annihilate This Week - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/annihilate-this-week-cd/991699.p?id=74818&skuId=991699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9916\\/991699_sa.jpg\"}', 'upc' => '018861008127', 'provider' => 'bestbuy'],\n ['name' => \"Born Too Late - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-too-late-cd/991715.p?id=97740&skuId=991715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0991\\/0991715_sa.jpg\"}', 'upc' => '018861008226', 'provider' => 'bestbuy'],\n ['name' => \"Gone II: But Never Too Gone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gone-ii-but-never-too-gone-cd/991733.p?id=83823&skuId=991733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9917\\/991733_sa.jpg\"}', 'upc' => '018861008622', 'provider' => 'bestbuy'],\n ['name' => \"Other Worlds [EP] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/other-worlds-ep-ep-cd/991911.p?id=98137&skuId=991911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0991\\/0991911_sa.jpg\"}', 'upc' => '018861010526', 'provider' => 'bestbuy'],\n ['name' => \"It's in My Blood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-in-my-blood-cd/991939.p?id=75012&skuId=991939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9919\\/991939_sa.jpg\"}', 'upc' => '018861010625', 'provider' => 'bestbuy'],\n ['name' => \"All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-cd/991975.p?id=80250&skuId=991975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=991975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9919\\/991975_sa.jpg\"}', 'upc' => '018861011226', 'provider' => 'bestbuy'],\n ['name' => \"Post-Mersh, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/post-mersh-vol-3-cd/992000.p?id=91862&skuId=992000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9920\\/992000_sa.jpg\"}', 'upc' => '018861016528', 'provider' => 'bestbuy'],\n ['name' => \"Paranoid Time [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paranoid-time-ep-cd/992037.p?id=91858&skuId=992037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992037_sa.jpg\"}', 'upc' => '018861000220', 'provider' => 'bestbuy'],\n ['name' => \"Jealous Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jealous-again-cd/992046.p?id=74804&skuId=992046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992046_sa.jpg\"}', 'upc' => '018861000329', 'provider' => 'bestbuy'],\n ['name' => \"The Punch Line - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-punch-line-cd/992064.p?id=107768&skuId=992064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9920\\/992064_sa.jpg\"}', 'upc' => '018861000428', 'provider' => 'bestbuy'],\n ['name' => \"Six Pack [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/six-pack-ep-cd/992082.p?id=74805&skuId=992082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992082_sa.jpg\"}', 'upc' => '018861000527', 'provider' => 'bestbuy'],\n ['name' => \"TV Party [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tv-party-ep-cd/992117.p?id=74807&skuId=992117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992117_sa.jpg\"}', 'upc' => '018861001227', 'provider' => 'bestbuy'],\n ['name' => \"What Makes a Man Start Fires? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-makes-a-man-start-fires-cd/992135.p?id=91864&skuId=992135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992135_sa.jpg\"}', 'upc' => '018861001425', 'provider' => 'bestbuy'],\n ['name' => \"Everything Went Black - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everything-went-black-cd/992153.p?id=74808&skuId=992153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992153_sa.jpg\"}', 'upc' => '018861001524', 'provider' => 'bestbuy'],\n ['name' => \"Buzz or Howl Under the... [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buzz-or-howl-under-the-ep-pa-cd/992171.p?id=2443666&skuId=992171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9921\\/992171_sa.jpg\"}', 'upc' => '018861001623', 'provider' => 'bestbuy'],\n ['name' => \"Metal Circus [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metal-circus-ep-cd/992206.p?id=85976&skuId=992206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992206_sa.jpg\"}', 'upc' => '018861002026', 'provider' => 'bestbuy'],\n ['name' => \"My War - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-war-cd/992224.p?id=74810&skuId=992224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992224_sa.jpg\"}', 'upc' => '018861002323', 'provider' => 'bestbuy'],\n ['name' => \"Family Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-man-cd/992242.p?id=74811&skuId=992242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992242_sa.jpg\"}', 'upc' => '018861002620', 'provider' => 'bestbuy'],\n ['name' => \"Double Nickels on the Dime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-nickels-on-the-dime-cd/992260.p?id=91856&skuId=992260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992260_sa.jpg\"}', 'upc' => '018861002828', 'provider' => 'bestbuy'],\n ['name' => \"The Process of Weeding Out [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-process-of-weeding-out-ep-cd/992304.p?id=74815&skuId=992304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992304_sa.jpg\"}', 'upc' => '018861003726', 'provider' => 'bestbuy'],\n ['name' => \"Let's Get Real, Real Gone for a Change - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-get-real-real-gone-for-a-change-cd/992420.p?id=83824&skuId=992420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9924\\/992420_sa.jpg\"}', 'upc' => '018861006123', 'provider' => 'bestbuy'],\n ['name' => \"Human Rights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-rights-cd/992509.p?id=84527&skuId=992509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9925\\/992509_sa.jpg\"}', 'upc' => '018861011721', 'provider' => 'bestbuy'],\n ['name' => \"Sometimes [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sometimes-ep-cd/992616.p?id=82255&skuId=992616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992616_sa.jpg\"}', 'upc' => '018861013121', 'provider' => 'bestbuy'],\n ['name' => \"Escape from Noise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escape-from-noise-cd/992643.p?id=92963&skuId=992643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992643_sa.jpg\"}', 'upc' => '018861013329', 'provider' => 'bestbuy'],\n ['name' => \"Post-Mersh, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/post-mersh-vol-1-cd/992723.p?id=91860&skuId=992723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9927\\/992723.jpg\"}', 'upc' => '018861013824', 'provider' => 'bestbuy'],\n ['name' => \"Post-Mersh, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/post-mersh-vol-2-pa-cd/992741.p?id=91861&skuId=992741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9927\\/992741_sa.jpg\"}', 'upc' => '018861013923', 'provider' => 'bestbuy'],\n ['name' => \"Milo Goes to College - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/milo-goes-to-college-cd/992803.p?id=107755&skuId=992803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992803_sa.jpg\"}', 'upc' => '018861014227', 'provider' => 'bestbuy'],\n ['name' => \"I Don'T Want To Grow Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-dont-want-to-grow-up-cd/992821.p?id=80254&skuId=992821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0992\\/0992821_sa.jpg\"}', 'upc' => '018861014326', 'provider' => 'bestbuy'],\n ['name' => \"Bonus Fat [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bonus-fat-ep-cd/992849.p?id=80251&skuId=992849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9928\\/992849_sa.jpg\"}', 'upc' => '018861014425', 'provider' => 'bestbuy'],\n ['name' => \"Two Things at Once (Milo Goes to... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-things-at-once-milo-goes-to-cd/992867.p?id=80257&skuId=992867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=992867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9928\\/992867_sa.jpg\"}', 'upc' => '018861014524', 'provider' => 'bestbuy'],\n ['name' => \"HR Tapes 84-86 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hr-tapes-84-86-cd/993027.p?id=2484284&skuId=993027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993027_sa.jpg\"}', 'upc' => '018861017129', 'provider' => 'bestbuy'],\n ['name' => \"Louie Louie [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louie-louie-single-cd/993063.p?id=74821&skuId=993063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9930\\/993063_sa.jpg\"}', 'upc' => '018861017525', 'provider' => 'bestbuy'],\n ['name' => \"Intolerance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intolerance-cd/993143.p?id=84917&skuId=993143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993143_sa.jpg\"}', 'upc' => '018861021522', 'provider' => 'bestbuy'],\n ['name' => \"Singin' in the Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singin-in-the-heart-cd/993287.p?id=84528&skuId=993287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993287_sa.jpg\"}', 'upc' => '018861022420', 'provider' => 'bestbuy'],\n ['name' => \"Take That Manic Ride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-that-manic-ride-cd/993303.p?id=75014&skuId=993303&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993303', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9933\\/993303_sa.jpg\"}', 'upc' => '018861022529', 'provider' => 'bestbuy'],\n ['name' => \"I Can See You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-can-see-you-cd/993321.p?id=74820&skuId=993321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993321_sa.jpg\"}', 'upc' => '018861022628', 'provider' => 'bestbuy'],\n ['name' => \"Spirit Electricity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-electricity-cd/993349.p?id=73646&skuId=993349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993349_sa.jpg\"}', 'upc' => '018861022826', 'provider' => 'bestbuy'],\n ['name' => \"Fromohio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fromohio-cd/993438.p?id=82251&skuId=993438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0993\\/0993438_sa.jpg\"}', 'upc' => '018861023526', 'provider' => 'bestbuy'],\n ['name' => \"Eight Miles High/Makes No Sense at All [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eight-miles-high-makes-no-sense-at-all-ep-cd/993483.p?id=85972&skuId=993483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9934\\/993483_sa.jpg\"}', 'upc' => '018861027029', 'provider' => 'bestbuy'],\n ['name' => \"The Politics of Time [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-politics-of-time-pa-cd/993580.p?id=91859&skuId=993580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9935\\/993580.jpg\"}', 'upc' => '018861027722', 'provider' => 'bestbuy'],\n ['name' => \"Guns [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guns-ep-cd/993768.p?id=107775&skuId=993768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=993768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9937\\/993768_sa.jpg\"}', 'upc' => '018861029122', 'provider' => 'bestbuy'],\n ['name' => \"The History of the JAMS a.k.a. The Timelords - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-history-of-the-jams-a-k-a-the-timelords-cd/994534.p?id=101890&skuId=994534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=994534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0994\\/0994534_sa.jpg\"}', 'upc' => '016581404021', 'provider' => 'bestbuy'],\n ['name' => \"All Fools Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-fools-day-cd/994570.p?id=97748&skuId=994570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=994570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0994\\/0994570_sa.jpg\"}', 'upc' => '016581211124', 'provider' => 'bestbuy'],\n ['name' => \"The Art of Rolling - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-of-rolling-cd/994767.p?id=1421838&skuId=994767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=994767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9947\\/994767_sa.jpg\"}', 'upc' => '016581271029', 'provider' => 'bestbuy'],\n ['name' => \"Witness - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/witness-cd-original-soundtrack/995668.p?id=104598&skuId=995668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=995668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9956\\/995668.jpg\"}', 'upc' => '030206823721', 'provider' => 'bestbuy'],\n ['name' => \"Game of Thrones: Season Two [Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/game-of-thrones-season-two-score-cd-original-soundtrack/996006.p?id=2459051&skuId=996006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9960\\/996006_sa.jpg\"}', 'upc' => '030206714821', 'provider' => 'bestbuy'],\n ['name' => \"Ice Age: Continental Drift (Score) - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ice-age-continental-drift-score-cd-original-soundtrack/996015.p?id=2479196&skuId=996015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0996\\/0996015_sa.jpg\"}', 'upc' => '030206715224', 'provider' => 'bestbuy'],\n ['name' => \"The Star Wars Trilogy [1 Disc] - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-star-wars-trilogy-1-disc-original-soundtrack-cd/996024.p?id=2771044&skuId=996024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0996\\/0996024_sa.jpg\"}', 'upc' => '030206742121', 'provider' => 'bestbuy'],\n ['name' => \"Christine [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christine-original-motion-picture-soundtrack-cd-original-soundtrack/996202.p?id=77593&skuId=996202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0996\\/0996202_sa.jpg\"}', 'upc' => '030206524024', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Future, Pt. 3 [Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-future-pt-3-original-motion-cd-original-soundtrack/996453.p?id=73630&skuId=996453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9964\\/996453_sa.jpg\"}', 'upc' => '030206527223', 'provider' => 'bestbuy'],\n ['name' => \"Original Scores by Bill Conti: The Right... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-scores-by-bill-conti-the-right-cd-original-soundtrack/996514.p?id=96691&skuId=996514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9965\\/996514.jpg\"}', 'upc' => '030206743128', 'provider' => 'bestbuy'],\n ['name' => \"Halloween [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/halloween-original-motion-picture-soundtrack-cd-original-soundtrack/996569.p?id=1366048&skuId=996569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9965\\/996569.jpg\"}', 'upc' => '030206826227', 'provider' => 'bestbuy'],\n ['name' => \"Pee-Wee's Big Adventure/Back to School [Music... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pee-wees-big-adventure-back-to-school-music-cd-original-soundtrack/996587.p?id=2069859&skuId=996587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=996587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0996\\/0996587_sa.jpg\"}', 'upc' => '030206428124', 'provider' => 'bestbuy'],\n ['name' => \"Predator 2 [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/predator-2-original-motion-picture-soundtrack-cd-original-soundtrack/997586.p?id=95289&skuId=997586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=997586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9975\\/997586.jpg\"}', 'upc' => '030206530223', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Bungle [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-bungle-pa-cd/998166.p?id=92536&skuId=998166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9981\\/998166_sa.jpg\"}', 'upc' => '075992664028', 'provider' => 'bestbuy'],\n ['name' => \"Rock 'N' Roll High School - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-n-roll-high-school-cd-original-soundtrack/998567.p?id=96907&skuId=998567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/9985\\/998567.jpg\"}', 'upc' => '075992742726', 'provider' => 'bestbuy'],\n ['name' => \"In the Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-wind-cd/998816.p?id=94794&skuId=998816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0998\\/0998816_sa.jpg\"}', 'upc' => '075992622424', 'provider' => 'bestbuy'],\n ['name' => \"A Song Will Rise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-song-will-rise-cd/998825.p?id=94787&skuId=998825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9988\\/998825_sa.jpg\"}', 'upc' => '075992622523', 'provider' => 'bestbuy'],\n ['name' => \"That Was the Year That Was - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-was-the-year-that-was-cd/998843.p?id=89014&skuId=998843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9988\\/998843_sa.jpg\"}', 'upc' => '075992743426', 'provider' => 'bestbuy'],\n ['name' => \"Sleeping Gypsy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleeping-gypsy-cd/998870.p?id=82884&skuId=998870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=998870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0998\\/0998870_sa.jpg\"}', 'upc' => '075992731126', 'provider' => 'bestbuy'],\n ['name' => \"A Wild and Crazy Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-wild-and-crazy-guy-cd/999076.p?id=90703&skuId=999076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=999076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0999\\/0999076_sa.jpg\"}', 'upc' => '075992596329', 'provider' => 'bestbuy'],\n ['name' => \"One Bad Habit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-bad-habit-cd/999236.p?id=82880&skuId=999236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=999236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/0999\\/0999236_sa.jpg\"}', 'upc' => '075992342728', 'provider' => 'bestbuy'],\n ['name' => \"Moving - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moving-cd/999904.p?id=94796&skuId=999904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=999904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9999\\/999904_sa.jpg\"}', 'upc' => '075992598125', 'provider' => 'bestbuy'],\n ['name' => \"The Sea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sea-cd/999931.p?id=97832&skuId=999931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=999931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/pdpimages\\/999931.jpg\"}', 'upc' => '075992716529', 'provider' => 'bestbuy'],\n ['name' => \"Peter, Paul and Mommy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-paul-and-mommy-cd/999986.p?id=94799&skuId=999986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=999986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/9999\\/999986_sa.jpg\"}', 'upc' => '075992717724', 'provider' => 'bestbuy'],\n ['name' => \"Spy Kids: All the Time in the World (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spy-kids-all-the-time-in-the-world-blu-ray-disc-ultraviolet-digital-copy/1000006.p?id=2266824&skuId=1000006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1000\\/1000006.jpg\"}', 'upc' => '013132620237', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1000016.p?id=1218228675633&skuId=1000016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010000166', 'provider' => 'bestbuy'],\n ['name' => \"4-Year Standard Geek Squad Protection\", 'description_short' => \"4-Year Standard Geek Squad Protection\", 'description_long' => \"4-Year Standard Geek Squad Protection\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-year-standard-geek-squad-protection/1000034.p?id=1218228664503&skuId=1000034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010000340', 'provider' => 'bestbuy'],\n ['name' => \"Hunting High and Low - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hunting-high-and-low-cd/1000384.p?id=2390193&skuId=1000384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1000\\/1000384_sa.jpg\"}', 'upc' => '075992530026', 'provider' => 'bestbuy'],\n ['name' => \"Mentalist: Complete Fifth Season [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mentalist-complete-fifth-season-5-discs-dvd-boxed-set/1000592.p?id=2718175&skuId=1000592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1000\\/1000592_sa.jpg\"}', 'upc' => '883929278619', 'provider' => 'bestbuy'],\n ['name' => \"Big Trash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-trash-cd/1000847.p?id=101704&skuId=1000847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1000\\/1000847.jpg\"}', 'upc' => '075992592123', 'provider' => 'bestbuy'],\n ['name' => \"Song Cycle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-cycle-cd/1000990.p?id=94414&skuId=1000990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1000990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1000\\/1000990_sa.jpg\"}', 'upc' => '075992585620', 'provider' => 'bestbuy'],\n ['name' => \"Hot Tub Time Machine (Blu-ray Disc) (2 Disc) (Unrated) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-tub-time-machine-blu-ray-disc-2-disc-unrated-digital-copy/1001121.p?id=2111949&skuId=1001121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001121_sa.jpg\"}', 'upc' => '883904205982', 'provider' => 'bestbuy'],\n ['name' => \"Rambo (Blu-ray Disc) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rambo-blu-ray-disc-extended-edition/1001149.p?id=1844107&skuId=1001149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001149_sa.jpg\"}', 'upc' => '012236110422', 'provider' => 'bestbuy'],\n ['name' => \"Our Family Wedding (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-family-wedding-dvd/1001158.p?id=2111964&skuId=1001158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001158_sa.jpg\"}', 'upc' => '024543689775', 'provider' => 'bestbuy'],\n ['name' => \"Predator 1 & 2 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/predator-1-2-blu-ray-disc-2-disc/1001167.p?id=2133970&skuId=1001167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001167_sa.jpg\"}', 'upc' => '024543676416', 'provider' => 'bestbuy'],\n ['name' => \"Johnny Handsome (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-handsome-blu-ray-disc/1001176.p?id=58691&skuId=1001176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001176_sa.jpg\"}', 'upc' => '012236110446', 'provider' => 'bestbuy'],\n ['name' => \"Lock Up (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lock-up-blu-ray-disc/1001185.p?id=47839&skuId=1001185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001185_sa.jpg\"}', 'upc' => '012236110439', 'provider' => 'bestbuy'],\n ['name' => \"The Joneses (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-joneses-blu-ray-disc/1001228.p?id=2123553&skuId=1001228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001228_sa.jpg\"}', 'upc' => '024543691921', 'provider' => 'bestbuy'],\n ['name' => \"Hot Tub Time Machine (DVD) (Unrated) (Remastered)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/hot-tub-time-machine-dvd-unrated-remastered/1001246.p?id=2111949&skuId=1001246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001246.jpg\"}', 'upc' => '883904206040', 'provider' => 'bestbuy'],\n ['name' => \"Predator (Blu-ray Disc) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/predator-blu-ray-disc-2-disc-special-edition/1001255.p?id=23924&skuId=1001255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001255_sa.jpg\"}', 'upc' => '024543663959', 'provider' => 'bestbuy'],\n ['name' => \"Date Night (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/date-night-dvd/1001273.p?id=2123476&skuId=1001273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001273_sa.jpg\"}', 'upc' => '024543665311', 'provider' => 'bestbuy'],\n ['name' => \"Diary of a Wimpy Kid (Blu-ray/DVD)(Digital Copy)(with Movie Money)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diary-of-a-wimpy-kid-blu-ray-dvddigital-copywith-movie-money/1001291.p?id=2118251&skuId=1001291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001291_sa.jpg\"}', 'upc' => '024543669289', 'provider' => 'bestbuy'],\n ['name' => \"Diary of a Wimpy Kid (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diary-of-a-wimpy-kid-dvd/1001307.p?id=2118251&skuId=1001307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001307_sa.jpg\"}', 'upc' => '024543669197', 'provider' => 'bestbuy'],\n ['name' => \"Full Metal Jacket - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-metal-jacket-cd-original-soundtrack/1001418.p?id=83069&skuId=1001418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001418_sa.jpg\"}', 'upc' => '075992561327', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Such a Funny Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-such-a-funny-game-cd/1001542.p?id=78668&skuId=1001542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001542_sa.jpg\"}', 'upc' => '075992565325', 'provider' => 'bestbuy'],\n ['name' => \"Strip Mine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strip-mine-cd/1001597.p?id=86649&skuId=1001597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001597_sa.jpg\"}', 'upc' => '075992565721', 'provider' => 'bestbuy'],\n ['name' => \"Empire of the Sun - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empire-of-the-sun-cd-original-soundtrack/1001604.p?id=81553&skuId=1001604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001604_sa.jpg\"}', 'upc' => '075992566827', 'provider' => 'bestbuy'],\n ['name' => \"Brian Wilson (Port) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brian-wilson-port-cd/1001622.p?id=2857502&skuId=1001622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1001622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1001\\/1001622.jpg\"}', 'upc' => '075992566926', 'provider' => 'bestbuy'],\n ['name' => \"Stay on These Roads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-on-these-roads-cd/1002220.p?id=72292&skuId=1002220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1002220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1002\\/1002220_sa.jpg\"}', 'upc' => '075992573320', 'provider' => 'bestbuy'],\n ['name' => \"Ritual de lo Habitual [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ritual-de-lo-habitual-pa-cd/1002408.p?id=86715&skuId=1002408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1002408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1002\\/1002408_sa.jpg\"}', 'upc' => '075992599320', 'provider' => 'bestbuy'],\n ['name' => \"An Evening Wasted with Tom Lehrer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-evening-wasted-with-tom-lehrer-cd/1002738.p?id=89013&skuId=1002738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1002738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1002\\/1002738_sa.jpg\"}', 'upc' => '075992743525', 'provider' => 'bestbuy'],\n ['name' => \"Arthur (Or the Decline and Fall of the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arthur-or-the-decline-and-fall-of-the-cd/1002783.p?id=88112&skuId=1002783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1002783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1002\\/1002783_sa.jpg\"}', 'upc' => '075992621823', 'provider' => 'bestbuy'],\n ['name' => \"Why Lady Why - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-lady-why-cd/1002961.p?id=92295&skuId=1002961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1002961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1002\\/1002961_sa.jpg\"}', 'upc' => '075992373821', 'provider' => 'bestbuy'],\n ['name' => \"Hard Rock TrackPak - Mac\", 'description_short' => \"HAL LEONARD Hard Rock TrackPak: Features 12 hard rock and metal Apple Loops; compatible with GarageBand; includes guitars, bass, drums and synth parts\", 'description_long' => \"HAL LEONARD Hard Rock TrackPak: Features 12 hard rock and metal Apple Loops; compatible with GarageBand; includes guitars, bass, drums and synth parts\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-rock-trackpak-mac/1003003.p?id=1219460773621&skuId=1003003', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003003_sa.jpg\"}', 'upc' => '884088157425', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Fender Playing Cards Gift Tin - Red/Black\", 'description_short' => \"AQUARIUS Fender Playing Cards Gift Tin: 2 decks; hinged gift tin; 52 different images per deck\", 'description_long' => \"AQUARIUS Fender Playing Cards Gift Tin: 2 decks; hinged gift tin; 52 different images per deck\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-fender-playing-cards-gift-tin-red-black/1003012.p?id=1219460762329&skuId=1003012', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003012_sa.jpg\"}', 'upc' => '840391103474', 'provider' => 'bestbuy'],\n ['name' => \"LoDuca Bros Inc - Deluxe Keyboard Bench - Black\", 'description_short' => \"LODUCA BROS. INC. Deluxe Keyboard Bench: Metal base; 13&quot; x 24&quot; padded seat; cross brace for support; adjusts to 3 different heights; can fit up to 2 people; folding design\", 'description_long' => \"LODUCA BROS. INC. Deluxe Keyboard Bench: Metal base; 13&quot; x 24&quot; padded seat; cross brace for support; adjusts to 3 different heights; can fit up to 2 people; folding design\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loduca-bros-inc-deluxe-keyboard-bench-black/1003021.p?id=1219460755391&skuId=1003021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003021_sa.jpg\"}', 'upc' => '013148475753', 'provider' => 'bestbuy'],\n ['name' => \"Trumpet Multimedia - Trumpets That Work 2015 Calendar - Black\", 'description_short' => \"TRUMPET MULTIMEDIA Trumpets That Work 2015 Calendar: 2015 calendar; Trumpets That Work design\", 'description_long' => \"TRUMPET MULTIMEDIA Trumpets That Work 2015 Calendar: 2015 calendar; Trumpets That Work design\", 'price' => 23.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpet-multimedia-trumpets-that-work-2015-calendar-black/1003049.p?id=1219460775571&skuId=1003049', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003049_sa.jpg\"}', 'upc' => '888680029050', 'provider' => 'bestbuy'],\n ['name' => \"Pro Tools Tier 1 Audio Plug-In for PC and Mac Activation Card - Windows|Mac\", 'description_short' => \"AVID Pro Tools Tier 1 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for a (TL) Aggro, Bruno/Reso, Cosmonaut Voice, DINR, (TL) Drum Rehab, (TL) EveryPhase, Reel Tape Saturation or other Avid Tier 1-level plug-in\", 'description_long' => \"AVID Pro Tools Tier 1 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for a (TL) Aggro, Bruno/Reso, Cosmonaut Voice, DINR, (TL) Drum Rehab, (TL) EveryPhase, Reel Tape Saturation or other Avid Tier 1-level plug-in\", 'price' => 99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-tools-tier-1-audio-plug-in-for-pc-and-mac-activation-card-windowsmac/1003067.p?id=1219460762559&skuId=1003067', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003067_sa.jpg\"}', 'upc' => '724643116026', 'provider' => 'bestbuy'],\n ['name' => \"M-Audio - BX8 D2 Studio Monitors (Pair) - Black\", 'description_short' => \"M-AUDIO BX8 D2 Studio Monitors (Pair): Custom Class AB analog amplifiers; woven low-frequency driver; waveguide-loaded silk-dome tweeter; XLR and 1/4&quot; inputs\", 'description_long' => \"M-AUDIO BX8 D2 Studio Monitors (Pair): Custom Class AB analog amplifiers; woven low-frequency driver; waveguide-loaded silk-dome tweeter; XLR and 1/4&quot; inputs\", 'price' => 599.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-audio-bx8-d2-studio-monitors-pair-black/1003076.p?id=1219460756365&skuId=1003076', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003076_sa.jpg\"}', 'upc' => '724643114053', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Grateful Dead Skull Logo Chunky Magnet - Red/White/Blue\", 'description_short' => \"AQUARIUS Grateful Dead Skull Logo Chunky Magnet: Features the iconic Grateful Dead skull logo; magnet; chunky design\", 'description_long' => \"AQUARIUS Grateful Dead Skull Logo Chunky Magnet: Features the iconic Grateful Dead skull logo; magnet; chunky design\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-grateful-dead-skull-logo-chunky-magnet-red-white-blue/1003085.p?id=1219460769143&skuId=1003085', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003085_sa.jpg\"}', 'upc' => '184709950580', 'provider' => 'bestbuy'],\n ['name' => \"Alesis - AcousticLink Guitar Recording Pack - White\", 'description_short' => \"ALESIS AcousticLink Guitar Recording Pack: Compatible with most guitars with a 1/4&quot; connector; built-in analog-to-digital conversion; includes a 16.5&#039; GuitarLink 1/4&quot;-to-USB cable, no-drill acoustic guitar pickup and Cubase LE recording software\", 'description_long' => \"ALESIS AcousticLink Guitar Recording Pack: Compatible with most guitars with a 1/4&quot; connector; built-in analog-to-digital conversion; includes a 16.5&#039; GuitarLink 1/4&quot;-to-USB cable, no-drill acoustic guitar pickup and Cubase LE recording software\", 'price' => 79, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alesis-acousticlink-guitar-recording-pack-white/1003109.p?id=1219460761542&skuId=1003109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003109_sa.jpg\"}', 'upc' => '694318010211', 'provider' => 'bestbuy'],\n ['name' => \"Modern Rock TrackPak - Mac\", 'description_short' => \"HAL LEONARD Modern Rock TrackPak: Features 12 modern rock Apple Loops; compatible with GarageBand; includes complete songs, plus individual loops, beats, grooves and riffs for each song&#039;s instruments\", 'description_long' => \"HAL LEONARD Modern Rock TrackPak: Features 12 modern rock Apple Loops; compatible with GarageBand; includes complete songs, plus individual loops, beats, grooves and riffs for each song&#039;s instruments\", 'price' => 29.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-rock-trackpak-mac/1003127.p?id=1219460761655&skuId=1003127', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003127_sa.jpg\"}', 'upc' => '073999891799', 'provider' => 'bestbuy'],\n ['name' => \"1970s Rock TrackPak - Mac\", 'description_short' => \"HAL LEONARD 1970s Rock TrackPak: Features 12 classic rock songs; compatible with GarageBand; includes loops for each instrument\", 'description_long' => \"HAL LEONARD 1970s Rock TrackPak: Features 12 classic rock songs; compatible with GarageBand; includes loops for each instrument\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1970s-rock-trackpak-mac/1003136.p?id=1219460771903&skuId=1003136', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003136_sa.jpg\"}', 'upc' => '884088157449', 'provider' => 'bestbuy'],\n ['name' => \"LoDuca Bros Inc - Professional Digital Photo Studio Kit - Black/White/Blue\", 'description_short' => \"LODUCA BROS INC Professional Digital Photo Studio Kit: Lets you take professional-quality photos; includes 2 high-output tabletop lights, a 16&quot; cubed soft-lighting frame and an adjustable mini tabletop tripod; multicompartment, padded carrying case\", 'description_long' => \"LODUCA BROS INC Professional Digital Photo Studio Kit: Lets you take professional-quality photos; includes 2 high-output tabletop lights, a 16&quot; cubed soft-lighting frame and an adjustable mini tabletop tripod; multicompartment, padded carrying case\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loduca-bros-inc-professional-digital-photo-studio-kit-black-white-blue/1003145.p?id=1219460763926&skuId=1003145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003145_rc.jpg\"}', 'upc' => '013148051254', 'provider' => 'bestbuy'],\n ['name' => \"Groovy Shapes Volume 1 - Windows|Mac\", 'description_short' => \"SIBELIUS Groovy Shapes Volume 1: Teaches the basics of sound, rhythm, pitch and composition; guides students through progressive exercises; lets students create original music; for ages 5 to 7 years\", 'description_long' => \"SIBELIUS Groovy Shapes Volume 1: Teaches the basics of sound, rhythm, pitch and composition; guides students through progressive exercises; lets students create original music; for ages 5 to 7 years\", 'price' => 69.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groovy-shapes-volume-1-windowsmac/1003163.p?id=1219460764898&skuId=1003163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312451498\\/1312451498_sa.jpg\"}', 'upc' => '884088084479', 'provider' => 'bestbuy'],\n ['name' => \"PreSonus - AudioBox iTwo Recording System - Blue/Gray\", 'description_short' => \"PRESONUS AudioBox iTwo Recording System: Compatible with Apple iPad, Windows and Mac recording software; 2 combo microphone/line/instrument inputs; Class A microphone preamplifier; balanced TRS monitor output; MIDI I/O; 24-bit/96kHz converters\", 'description_long' => \"PRESONUS AudioBox iTwo Recording System: Compatible with Apple iPad, Windows and Mac recording software; 2 combo microphone/line/instrument inputs; Class A microphone preamplifier; balanced TRS monitor output; MIDI I/O; 24-bit/96kHz converters\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presonus-audiobox-itwo-recording-system-blue-gray/1003172.p?id=1219460769814&skuId=1003172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003172_sa.jpg\"}', 'upc' => '673454002939', 'provider' => 'bestbuy'],\n ['name' => \"PreSonus - AudioBox iOne Recording System - Blue/Gray\", 'description_short' => \"PRESONUS AudioBox iOne Recording System: Compatible with Apple iPad, Windows and Mac recording software; instrument and microphone inputs; Class A microphone preamplifier; balanced TRS monitor output; 24-bit/96kHz converters\", 'description_long' => \"PRESONUS AudioBox iOne Recording System: Compatible with Apple iPad, Windows and Mac recording software; instrument and microphone inputs; Class A microphone preamplifier; balanced TRS monitor output; 24-bit/96kHz converters\", 'price' => 159.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presonus-audiobox-ione-recording-system-blue-gray/1003214.p?id=1219460761184&skuId=1003214', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003214_sa.jpg\"}', 'upc' => '673454002922', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Grateful Dead Bear Logo Chunky Magnet - Green/Yellow/Blue/Purple/Red/Orange/Black\", 'description_short' => \"AQUARIUS Grateful Dead Bear Logo Chunky Magnet: Tie-dyed Grateful Dead bear logo; chunky design\", 'description_long' => \"AQUARIUS Grateful Dead Bear Logo Chunky Magnet: Tie-dyed Grateful Dead bear logo; chunky design\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-grateful-dead-bear-logo-chunky-magnet-green-yellow-blue-purple-red-orange-black/1003232.p?id=1219460765073&skuId=1003232', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003232_sa.jpg\"}', 'upc' => '184709950603', 'provider' => 'bestbuy'],\n ['name' => \"Addictive Keys: Studio Collection - Mac|Windows\", 'description_short' => \"XLN AUDIO Addictive Keys: Studio Collection: Ideal for music producers and musicians; features virtual keyboard instruments; compatible with newer major hosts and DAWs\", 'description_long' => \"XLN AUDIO Addictive Keys: Studio Collection: Ideal for music producers and musicians; features virtual keyboard instruments; compatible with newer major hosts and DAWs\", 'price' => 179, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/addictive-keys-studio-collection-macwindows/1003269.p?id=1219460752588&skuId=1003269', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003269_sa.jpg\"}', 'upc' => '884088867195', 'provider' => 'bestbuy'],\n ['name' => \"Pro Tools Tier 2 Audio Plug-In for PC and Mac Activation Card - Windows|Mac\", 'description_short' => \"AVID Pro Tools Tier 2 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for a Classic Compressors Bundle, Focusrite d2/d3, Impact, JOEMEEK Bundle, Moogerfooger Bundle or other Avid Tier 2-level plug-in\", 'description_long' => \"AVID Pro Tools Tier 2 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for a Classic Compressors Bundle, Focusrite d2/d3, Impact, JOEMEEK Bundle, Moogerfooger Bundle or other Avid Tier 2-level plug-in\", 'price' => 299, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-tools-tier-2-audio-plug-in-for-pc-and-mac-activation-card-windowsmac/1003278.p?id=1219460772921&skuId=1003278', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003278_sa.jpg\"}', 'upc' => '724643116033', 'provider' => 'bestbuy'],\n ['name' => \"Korg - nanoKey2 25-Key USB MIDI Controller - White/Gray\", 'description_short' => \"KORG nanoKey2 25-Key USB MIDI Controller: USB MIDI connectivity; 25 velocity-sensitive keys; compatible with the Korg microKEY; PC and Mac compatible\", 'description_long' => \"KORG nanoKey2 25-Key USB MIDI Controller: USB MIDI connectivity; 25 velocity-sensitive keys; compatible with the Korg microKEY; PC and Mac compatible\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/korg-nanokey2-25-key-usb-midi-controller-white-gray/1003287.p?id=1219460771659&skuId=1003287', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003287_sa.jpg\"}', 'upc' => '884088605926', 'provider' => 'bestbuy'],\n ['name' => \"M-Audio - Nova Condenser Microphone - Silver\", 'description_short' => \"M-AUDIO Nova Condenser Microphone: 1.1&quot; evaporated gold diaphragm; solid brass body and capsule; 20Hz - 18kHz frequency response; hard mount and soft case included\", 'description_long' => \"M-AUDIO Nova Condenser Microphone: 1.1&quot; evaporated gold diaphragm; solid brass body and capsule; 20Hz - 18kHz frequency response; hard mount and soft case included\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-audio-nova-condenser-microphone-silver/1003296.p?id=1219460764049&skuId=1003296', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003296_sa.jpg\"}', 'upc' => '694318014851', 'provider' => 'bestbuy'],\n ['name' => \"IK Multimedia - iRig Stomp - Black\", 'description_short' => \"IK MULTIMEDIA iRig Stomp: Compatible with select Apple iPhone, iPad and iPod touch models, Android and Mac computers; allows use inline with other effects pedals and more; active battery-powered output circuit\", 'description_long' => \"IK MULTIMEDIA iRig Stomp: Compatible with select Apple iPhone, iPad and iPod touch models, Android and Mac computers; allows use inline with other effects pedals and more; active battery-powered output circuit\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ik-multimedia-irig-stomp-black/1003319.p?id=1219460771904&skuId=1003319', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003319_sa.jpg\"}', 'upc' => '884088652456', 'provider' => 'bestbuy'],\n ['name' => \"IK Multimedia - iKlip Xpand Microphone Stand Mount - Black\", 'description_short' => \"IK MULTIMEDIA iKlip Xpand Microphone Stand Mount: Compatible with most tablets from 7&quot; to 12.1&quot;; adjustable holder with 4 expandable grips; 2 sure-grip rubber gripping points; rubber padded base; ball joint; smart bracket design; iKlip Stage app\", 'description_long' => \"IK MULTIMEDIA iKlip Xpand Microphone Stand Mount: Compatible with most tablets from 7&quot; to 12.1&quot;; adjustable holder with 4 expandable grips; 2 sure-grip rubber gripping points; rubber padded base; ball joint; smart bracket design; iKlip Stage app\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ik-multimedia-iklip-xpand-microphone-stand-mount-black/1003328.p?id=1219460768678&skuId=1003328', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003328_sa.jpg\"}', 'upc' => '888680030773', 'provider' => 'bestbuy'],\n ['name' => \"M-Audio - AM1 Cardioid Dynamic Microphone - Black/Gray\", 'description_short' => \"M-AUDIO AM1 Cardioid Dynamic Microphone: For amplifying and recording vocals and instruments; dynamic design; cardioid pickup pattern; steel mesh, foam-lined head grille; die-cast, zinc-alloy housing\", 'description_long' => \"M-AUDIO AM1 Cardioid Dynamic Microphone: For amplifying and recording vocals and instruments; dynamic design; cardioid pickup pattern; steel mesh, foam-lined head grille; die-cast, zinc-alloy housing\", 'price' => 29.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-audio-am1-cardioid-dynamic-microphone-black-gray/1003337.p?id=1219460755566&skuId=1003337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003337_sa.jpg\"}', 'upc' => '694318009925', 'provider' => 'bestbuy'],\n ['name' => \"Elements Pack - Mac|Windows\", 'description_short' => \"STEINBERG Elements Pack: Includes Cubase Elements 6 and WaveLab Elements 7 software; lets you produce music and edit audio on your Mac or PC\", 'description_long' => \"STEINBERG Elements Pack: Includes Cubase Elements 6 and WaveLab Elements 7 software; lets you produce music and edit audio on your Mac or PC\", 'price' => 174.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elements-pack-macwindows/1003346.p?id=1219460763407&skuId=1003346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003346_sa.jpg\"}', 'upc' => '802240127758', 'provider' => 'bestbuy'],\n ['name' => \"IK Multimedia - iKlip Xpand Mini Microphone Stand Mount - Black\", 'description_short' => \"IK MULTIMEDIA iKlip Xpand Mini Microphone Stand Mount: Compatible with select Apple iPhone and iPod touch models and most smartphones with 3.5&quot; to 6&quot; screens; rubberized Gorilla Grip technology; adjustable clamp; ball joint\", 'description_long' => \"IK MULTIMEDIA iKlip Xpand Mini Microphone Stand Mount: Compatible with select Apple iPhone and iPod touch models and most smartphones with 3.5&quot; to 6&quot; screens; rubberized Gorilla Grip technology; adjustable clamp; ball joint\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ik-multimedia-iklip-xpand-mini-microphone-stand-mount-black/1003364.p?id=1219460775226&skuId=1003364', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003364_rc.jpg\"}', 'upc' => '888680029074', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic Rock TrackPak - Mac\", 'description_short' => \"HAL LEONARD Acoustic Rock TrackPak: 12 acoustic Apple Loops; compatible with GarageBand; includes guitars, bass, drums and keyboard parts\", 'description_long' => \"HAL LEONARD Acoustic Rock TrackPak: 12 acoustic Apple Loops; compatible with GarageBand; includes guitars, bass, drums and keyboard parts\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-rock-trackpak-mac/1003373.p?id=1219460754207&skuId=1003373', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003373_sa.jpg\"}', 'upc' => '884088157432', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Elvis Heartthrob Chunky Magnet - Black/White\", 'description_short' => \"AQUARIUS Elvis Heartthrob Chunky Magnet: Features a black-and-white photo of Elvis Presley; chunky design\", 'description_long' => \"AQUARIUS Elvis Heartthrob Chunky Magnet: Features a black-and-white photo of Elvis Presley; chunky design\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-elvis-heartthrob-chunky-magnet-black-white/1003415.p?id=1219460773094&skuId=1003415', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003415_sa.jpg\"}', 'upc' => '840391103931', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Elvis Presley Jailhouse Rock 1,000-Piece Jigsaw Puzzle - Black/White/Red/Yellow/Blue/Green/Orange\", 'description_short' => \"AQUARIUS Elvis Presley Jailhouse Rock 1,000-Piece Jigsaw Puzzle: 1,000 pieces; features Elvis on the set of the iconic film; measures 12&quot; x 36&quot; when completed\", 'description_long' => \"AQUARIUS Elvis Presley Jailhouse Rock 1,000-Piece Jigsaw Puzzle: 1,000 pieces; features Elvis on the set of the iconic film; measures 12&quot; x 36&quot; when completed\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-elvis-presley-jailhouse-rock-1000-piece-jigsaw-puzzle-black-white-red-yellow-blue-green-orange/1003424.p?id=1219460761303&skuId=1003424', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003424_sa.jpg\"}', 'upc' => '840391103825', 'provider' => 'bestbuy'],\n ['name' => \"Pro Tools Tier 3 Audio Plug-In for PC and Mac Activation Card - Windows|Mac\", 'description_short' => \"AVID Pro Tools Tier 3 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for an Eleven, ReVibe, (TL) Space (DSP + native) or X-Form Avid Tier 3-level plug-in\", 'description_long' => \"AVID Pro Tools Tier 3 Audio Plug-In for PC and Mac Activation Card: Compatible with PC and Mac; redeemable for an Eleven, ReVibe, (TL) Space (DSP + native) or X-Form Avid Tier 3-level plug-in\", 'price' => 499, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-tools-tier-3-audio-plug-in-for-pc-and-mac-activation-card-windowsmac/1003433.p?id=1219460754208&skuId=1003433', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003433_sa.jpg\"}', 'upc' => '724643116040', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Genesis Playing Cards - Yellow/Purple/Black/Red\", 'description_short' => \"AQUARIUS Genesis Playing Cards: 2.5&quot; x 3.5&quot; playing cards; linen-type finish\", 'description_long' => \"AQUARIUS Genesis Playing Cards: 2.5&quot; x 3.5&quot; playing cards; linen-type finish\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-genesis-playing-cards-yellow-purple-black-red/1003451.p?id=1219460752589&skuId=1003451', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003451_sa.jpg\"}', 'upc' => '840391101463', 'provider' => 'bestbuy'],\n ['name' => \"Paris, Texas [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paris-texas-original-motion-picture-soundtrack-cd-original-soundtrack/1003461.p?id=94384&skuId=1003461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003461_sa.jpg\"}', 'upc' => '075992527026', 'provider' => 'bestbuy'],\n ['name' => \"Korg - nanoKONTROL2 USB MIDI Controller - Black\", 'description_short' => \"KORG nanoKONTROL2 USB MIDI Controller: 2 USB ports; compatible with Mac, PC, Apple iPad, Korg microKEY, most computer-based DAWs and most music production software\", 'description_long' => \"KORG nanoKONTROL2 USB MIDI Controller: 2 USB ports; compatible with Mac, PC, Apple iPad, Korg microKEY, most computer-based DAWs and most music production software\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/korg-nanokontrol2-usb-midi-controller-black/1003488.p?id=1219460755218&skuId=1003488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003488_sa.jpg\"}', 'upc' => '884088605964', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Rush Starman Chunky Magnet - Black/Red/White/Brown\", 'description_short' => \"AQUARIUS Rush Starman Chunky Magnet: Features Rush&#039;s Starman logo; chunky design\", 'description_long' => \"AQUARIUS Rush Starman Chunky Magnet: Features Rush&#039;s Starman logo; chunky design\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-rush-starman-chunky-magnet-black-red-white-brown/1003497.p?id=1219460772082&skuId=1003497', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003497_sa.jpg\"}', 'upc' => '840391103177', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Rush Playing Cards - Red/Black/White\", 'description_short' => \"AQUARIUS Rush Playing Cards: 2.5&quot; x 3.5&quot; playing cards; linen-type finish\", 'description_long' => \"AQUARIUS Rush Playing Cards: 2.5&quot; x 3.5&quot; playing cards; linen-type finish\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-rush-playing-cards-red-black-white/1003531.p?id=1219460759315&skuId=1003531', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003531_sa.jpg\"}', 'upc' => '840391100671', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - The Beatles Yellow Submarine 600-Piece Jigsaw Puzzle - Blue/Yellow/Red/White/Green/Pink\", 'description_short' => \"AQUARIUS The Beatles Yellow Submarine 600-Piece Jigsaw Puzzle: 600 pieces; features the artwork of The Beatles&#039; Yellow Submarine album; measures 20&quot; x 27&quot; when completed\", 'description_long' => \"AQUARIUS The Beatles Yellow Submarine 600-Piece Jigsaw Puzzle: 600 pieces; features the artwork of The Beatles&#039; Yellow Submarine album; measures 20&quot; x 27&quot; when completed\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-the-beatles-yellow-submarine-600-piece-jigsaw-puzzle-blue-yellow-red-white-green-pink/1003568.p?id=1219460774340&skuId=1003568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003568_sa.jpg\"}', 'upc' => '840391101555', 'provider' => 'bestbuy'],\n ['name' => \"Alfred - Katy Perry: Teenage Dream Sheet Music - Pink/Blue\", 'description_short' => \"ALFRED Katy Perry: Teenage Dream Sheet Music: Piano, vocal and guitar sheet music for Katy Perry&#039;s Teenage Dream\", 'description_long' => \"ALFRED Katy Perry: Teenage Dream Sheet Music: Piano, vocal and guitar sheet music for Katy Perry&#039;s Teenage Dream\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alfred-katy-perry-teenage-dream-sheet-music-pink-blue/1003604.p?id=1219460759196&skuId=1003604', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003604_sa.jpg\"}', 'upc' => '884088698072', 'provider' => 'bestbuy'],\n ['name' => \"Classic Rock TrackPak - Mac\", 'description_short' => \"HAL LEONARD Classic Rock TrackPak: Features 12 modern rock Apple Loops; compatible with GarageBand; includes complete songs, plus individual loops, beats, grooves and riffs for each song&#039;s instruments\", 'description_long' => \"HAL LEONARD Classic Rock TrackPak: Features 12 modern rock Apple Loops; compatible with GarageBand; includes complete songs, plus individual loops, beats, grooves and riffs for each song&#039;s instruments\", 'price' => 29.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-rock-trackpak-mac/1003613.p?id=1219460758906&skuId=1003613', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003613_sa.jpg\"}', 'upc' => '073999280326', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - Fender Stratocaster 1,000-Piece Jigsaw Puzzle - Black/Red/White/Yellow/Green/Orange/Blue\", 'description_short' => \"AQUARIUS Fender Stratocaster 1,000-Piece Jigsaw Puzzle: 1,000 pieces; lets you show off your fandom for the guitar; measures 20&quot; x 27&quot; when completed\", 'description_long' => \"AQUARIUS Fender Stratocaster 1,000-Piece Jigsaw Puzzle: 1,000 pieces; lets you show off your fandom for the guitar; measures 20&quot; x 27&quot; when completed\", 'price' => 15.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/aquarius-fender-stratocaster-1000-piece-jigsaw-puzzle-black-red-white-yellow-green-orange-blue/1003622.p?id=1219460752587&skuId=1003622', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003622_sa.jpg\"}', 'upc' => '840391101524', 'provider' => 'bestbuy'],\n ['name' => \"IK Multimedia - iRig MIDI 2 Audio Interface - Black\", 'description_short' => \"IK MULTIMEDIA iRig MIDI 2 Audio Interface: Compatible with Mac, PC and select iOS devices; MIDI input, output and thru jacks; USB and Lightning interface\", 'description_long' => \"IK MULTIMEDIA iRig MIDI 2 Audio Interface: Compatible with Mac, PC and select iOS devices; MIDI input, output and thru jacks; USB and Lightning interface\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ik-multimedia-irig-midi-2-audio-interface-black/1003631.p?id=1219460755045&skuId=1003631', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003631_rc.jpg\"}', 'upc' => '888680030889', 'provider' => 'bestbuy'],\n ['name' => \"M. Night Shyamalan: The Last Airbender - Nintendo Wii\", 'description_short' => \"Harness the power of Air and Fire as you join a quest for honor and power\", 'description_long' => \"Harness the power of Air and Fire as you join a quest for honor and power\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-night-shyamalan-the-last-airbender-nintendo-wii/1003641.p?id=1218208317435&skuId=1003641', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003641_500x500_sa.jpg\"}', 'upc' => '785138302515', 'provider' => 'bestbuy'],\n ['name' => \"M-Audio - Keystation Mini 32 II 32-Key USB MIDI Keyboard Controller - Black/White\", 'description_short' => \"M-AUDIO Keystation Mini 32 II 32-Key USB MIDI Keyboard Controller: Ignite and Ableton Live Lite software; USB MIDI connectivity; pitch-bend, modulation and octave controls; 32 velocity-sensitive synth-action keys\", 'description_long' => \"M-AUDIO Keystation Mini 32 II 32-Key USB MIDI Keyboard Controller: Ignite and Ableton Live Lite software; USB MIDI connectivity; pitch-bend, modulation and octave controls; 32 velocity-sensitive synth-action keys\", 'price' => 99.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/m-audio-keystation-mini-32-ii-32-key-usb-midi-keyboard-controller-black-white/1003659.p?id=1219460760217&skuId=1003659', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003659_sa.jpg\"}', 'upc' => '694318015858', 'provider' => 'bestbuy'],\n ['name' => \"Aquarius - The Beatles Street 1,000-Piece Jigsaw Puzzle - Black/White/Brown\", 'description_short' => \"AQUARIUS The Beatles Street 1,000-Piece Jigsaw Puzzle: 1,000 pieces; features an image of The Beatles walking down the street; measures 20&quot; x 27&quot; when completed\", 'description_long' => \"AQUARIUS The Beatles Street 1,000-Piece Jigsaw Puzzle: 1,000 pieces; features an image of The Beatles walking down the street; measures 20&quot; x 27&quot; when completed\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aquarius-the-beatles-street-1000-piece-jigsaw-puzzle-black-white-brown/1003668.p?id=1219460763580&skuId=1003668', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003668_sa.jpg\"}', 'upc' => '840391103801', 'provider' => 'bestbuy'],\n ['name' => \"White Shoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-shoes-cd/1003693.p?id=84870&skuId=1003693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1003693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1003\\/1003693_sa.jpg\"}', 'upc' => '075992369121', 'provider' => 'bestbuy'],\n ['name' => \"Canon - EOS Rebel T5 DSLR Camera with 18-55mm and 75-300mm Lenses - Black\", 'description_short' => \"18.0-megapixel APS-C CMOS sensorISO 100-6400, expandable to 12,800Shooting speeds up to 3 fpsFull high-definition movie mode\", 'description_long' => \"18.0-megapixel APS-C CMOS sensorISO 100-6400, expandable to 12,800Shooting speeds up to 3 fpsFull high-definition movie mode\", 'price' => 749.99, 'sale_price' => 499.99, 'url' => 'http://www.bestbuy.com/site/canon-eos-rebel-t5-dslr-camera-with-18-55mm-and-75-300mm-lenses-black/1004002.p?id=1219459331617&skuId=1004002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004002_sa.jpg\"}', 'upc' => '660685134881', 'provider' => 'bestbuy'],\n ['name' => \"Tercer Mundo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tercer-mundo-cd/1004291.p?id=1577034&skuId=1004291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004291.jpg\"}', 'upc' => '090317272122', 'provider' => 'bestbuy'],\n ['name' => \"Life (Attenborough,David) (4 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/life-attenboroughdavid-4-disc-blu-ray-disc/1004613.p?id=2099261&skuId=1004613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1850\\/18505774.jpg\"}', 'upc' => '883929099252', 'provider' => 'bestbuy'],\n ['name' => \"Sniper: Ghost Warrior - Xbox 360\", 'description_short' => \"Control the power of death as you ghost through the jungle\", 'description_long' => \"Control the power of death as you ghost through the jungle\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sniper-ghost-warrior-xbox-360/1004622.p?id=1218207306495&skuId=1004622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004622_sa.jpg\"}', 'upc' => '897749002569', 'provider' => 'bestbuy'],\n ['name' => \"GoPro - Camera Roll Bar Mount - Black\", 'description_short' => \"Compatible with most GoPro cameras; clamps to tubes or frames ranging from 1.4-2.5&quot; in diameter; pivoting orientation arms\", 'description_long' => \"Compatible with most GoPro cameras; clamps to tubes or frames ranging from 1.4-2.5&quot; in diameter; pivoting orientation arms\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gopro-camera-roll-bar-mount-black/1004668.p?id=1218249515093&skuId=1004668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004668_rc.jpg\"}', 'upc' => '185323000132', 'provider' => 'bestbuy'],\n ['name' => \"GoPro - Camera Mount Accessory Kit - Black\", 'description_short' => \"Compatible with most GoPro cameras; includes a variety of camera mounting accessories\", 'description_long' => \"Compatible with most GoPro cameras; includes a variety of camera mounting accessories\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gopro-camera-mount-accessory-kit-black/1004695.p?id=1218249514954&skuId=1004695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004695_rc.jpg\"}', 'upc' => '185323000309', 'provider' => 'bestbuy'],\n ['name' => \"Café Tacuba - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cafe-tacuba-cd/1004754.p?id=1475375&skuId=1004754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004754_sa.jpg\"}', 'upc' => '090317724126', 'provider' => 'bestbuy'],\n ['name' => \"GoPro - Chest Mount Harness - Black\", 'description_short' => \"Compatible with most GoPro cameras; one-size-fits-all adjustability\", 'description_long' => \"Compatible with most GoPro cameras; one-size-fits-all adjustability\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gopro-chest-mount-harness-black/1004804.p?id=1218249514750&skuId=1004804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004804_rc.jpg\"}', 'upc' => '185323000989', 'provider' => 'bestbuy'],\n ['name' => \"GoPro - Ride HERO Handlebar Seatpost Mount - Black\", 'description_short' => \"Compatible with most GoPro cameras; clamps on tubes 3/4&quot; - 1-1/2&quot; in diameter; pivoting orientation arms with 3-way adjustability\", 'description_long' => \"Compatible with most GoPro cameras; clamps on tubes 3/4&quot; - 1-1/2&quot; in diameter; pivoting orientation arms with 3-way adjustability\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gopro-ride-hero-handlebar-seatpost-mount-black/1004831.p?id=1218249515161&skuId=1004831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004831_rc.jpg\"}', 'upc' => '185323000064', 'provider' => 'bestbuy'],\n ['name' => \"Sola - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sola-cd/1004834.p?id=1374795&skuId=1004834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1004834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1004\\/1004834_sa.jpg\"}', 'upc' => '090317747828', 'provider' => 'bestbuy'],\n ['name' => \"Helpless Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/helpless-heart-cd/1005003.p?id=93663&skuId=1005003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005003_sa.jpg\"}', 'upc' => '075992601627', 'provider' => 'bestbuy'],\n ['name' => \"Sanctuary: The Complete Second Season [4 Discs / Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sanctuary-the-complete-second-season-4-discs-blu-ray-blu-ray-disc/1005039.p?id=2100405&skuId=1005039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005039.jpg\"}', 'upc' => '741952682196', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Dura Clamp\", 'description_short' => \"From our expanded online assortment; designed for use with the Dura Truss system; supports lighting fixtures up to 20 lbs.; fits 1/2&quot; truss rods\", 'description_long' => \"From our expanded online assortment; designed for use with the Dura Truss system; supports lighting fixtures up to 20 lbs.; fits 1/2&quot; truss rods\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-dura-clamp/1005118.p?id=1218207308279&skuId=1005118', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005118_sa.jpg\"}', 'upc' => '640282015868', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 20\\\" Glass Mirror Ball\", 'description_short' => \"Compatible with M-101 and M-103 mirror ball motors; glass material\", 'description_long' => \"Compatible with M-101 and M-103 mirror ball motors; glass material\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-20-glass-mirror-ball/1005181.p?id=1218207307176&skuId=1005181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005181_sa.jpg\"}', 'upc' => '640282034272', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Elation 4-Channel Chase Controller - Black\", 'description_short' => \"From our expanded online assortment; instant sound-to-light chase; timed, audio and chase modes; built-in microphone\", 'description_long' => \"From our expanded online assortment; instant sound-to-light chase; timed, audio and chase modes; built-in microphone\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-elation-4-channel-chase-controller-black/1005215.p?id=1218207312107&skuId=1005215', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005215_sa.jpg\"}', 'upc' => '640282052917', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Color Gel Filter (4-Pack)\", 'description_short' => \"Designed for use with most Par-56 can gel frames; red, blue, yellow and green gel filters\", 'description_long' => \"Designed for use with most Par-56 can gel frames; red, blue, yellow and green gel filters\", 'price' => 12.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/american-dj-color-gel-filter-4-pack/1005288.p?id=1218207302583&skuId=1005288', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005288_sa.jpg\"}', 'upc' => '640282014441', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Crystal Bright Accent Strip CW LED Strip (4-Pack) - White\", 'description_short' => \"From our expanded online assortment; 4 self-adhesive strips; cool white LEDs; AC adapter\", 'description_long' => \"From our expanded online assortment; 4 self-adhesive strips; cool white LEDs; AC adapter\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-crystal-bright-accent-strip-cw-led-strip-4-pack-white/1005297.p?id=1218207312036&skuId=1005297', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005297_sa.jpg\"}', 'upc' => '640282000734', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Tripod Stand - Black\", 'description_short' => \"From our expanded online assortment; designed for use with most par cans, pin spots and lighting fixtures; extends up to 9&#039;; collapsible design\", 'description_long' => \"From our expanded online assortment; designed for use with most par cans, pin spots and lighting fixtures; extends up to 9&#039;; collapsible design\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-tripod-stand-black/1005312.p?id=1218207306201&skuId=1005312', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005312_sa.jpg\"}', 'upc' => '640282033763', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - DMX Dimmer Pack\", 'description_short' => \"From our expanded online assortment; digital display; LED indicators; 16 built-in chases; reversible mounting brackets\", 'description_long' => \"From our expanded online assortment; digital display; LED indicators; 16 built-in chases; reversible mounting brackets\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-dmx-dimmer-pack/1005358.p?id=1218207306104&skuId=1005358', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005358_sa.jpg\"}', 'upc' => '640282044301', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 16\\\" Glass Mirror Ball\", 'description_short' => \"From our expanded online assortment; compatible with M-101 and M-103 mirror ball motors; glass material\", 'description_long' => \"From our expanded online assortment; compatible with M-101 and M-103 mirror ball motors; glass material\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-16-glass-mirror-ball/1005409.p?id=1218207315272&skuId=1005409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005409_sa.jpg\"}', 'upc' => '640282034180', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Bubble Blast Bubble Machine\", 'description_short' => \"Compatible with most types of bubble liquid; dual-fan lift system; drainage valve system; top-load filling container; remote; on/off switch; wheels and dual handles\", 'description_long' => \"Compatible with most types of bubble liquid; dual-fan lift system; drainage valve system; top-load filling container; remote; on/off switch; wheels and dual handles\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-bubble-blast-bubble-machine/1005454.p?id=1218207314448&skuId=1005454', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005454_rc.jpg\"}', 'upc' => '640282012997', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 12\\\" Glass Mirror Ball\", 'description_short' => \"From our expanded online assortment; glass material; portable\", 'description_long' => \"From our expanded online assortment; glass material; portable\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-12-glass-mirror-ball/1005515.p?id=1218207307351&skuId=1005515', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005515_sa.jpg\"}', 'upc' => '640282034128', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Par 46 Can Kit - Black\", 'description_short' => \"From our expanded online assortment; 200W lamp; 4 color gel filters; clamp; safety cable\", 'description_long' => \"From our expanded online assortment; 200W lamp; 4 color gel filters; clamp; safety cable\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-par-46-can-kit-black/1005542.p?id=1218207310574&skuId=1005542', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005542_sa.jpg\"}', 'upc' => '640282010078', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Elation Stage Pack\", 'description_short' => \"From our expanded online assortment; 16-channel DMX controller; 2 XLR cables; two 4-channel dimmers\", 'description_long' => \"From our expanded online assortment; 16-channel DMX controller; 2 XLR cables; two 4-channel dimmers\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-elation-stage-pack/1005667.p?id=1218207310858&skuId=1005667', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005667_sa.jpg\"}', 'upc' => '640282051361', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - DMX Mirror Ball Motor\", 'description_short' => \"From our expanded online assortment; designed for use with most mirror balls up to 20&quot;; 2 DMX channels; circuit breaker protection\", 'description_long' => \"From our expanded online assortment; designed for use with most mirror balls up to 20&quot;; 2 DMX channels; circuit breaker protection\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-dmx-mirror-ball-motor/1005694.p?id=1218207313618&skuId=1005694', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005694', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005694_rc.jpg\"}', 'upc' => '640282038324', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 5' CD Data Cable - Gray\", 'description_short' => \"Compatible with most dual CD players with an 8-pin to 8-pin connection; replacement cable\", 'description_long' => \"Compatible with most dual CD players with an 8-pin to 8-pin connection; replacement cable\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-5-cd-data-cable-gray/1005721.p?id=1218207302785&skuId=1005721', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005721_sa.jpg\"}', 'upc' => '640282015844', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Dekker LED Effects Light - Black\", 'description_short' => \"From our expanded online assortment; colored beams and 40 lenses; 3-button DMX LED menu; strobe effect; hanging bracket\", 'description_long' => \"From our expanded online assortment; colored beams and 40 lenses; 3-button DMX LED menu; strobe effect; hanging bracket\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-dekker-led-effects-light-black/1005758.p?id=1218207311754&skuId=1005758', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005758_sa.jpg\"}', 'upc' => '640282000994', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Par 56 Can Kit - Black\", 'description_short' => \"From our expanded online assortment; 300W lamp; 4 color gel filters; clamp; safety cable\", 'description_long' => \"From our expanded online assortment; 300W lamp; 4 color gel filters; clamp; safety cable\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-par-56-can-kit-black/1005794.p?id=1218207304604&skuId=1005794', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005794_sa.jpg\"}', 'upc' => '640282010085', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Stage Tape - Black\", 'description_short' => \"From our expanded online assortment; ideal for a variety of DJ applications; 2&quot; wide; no heavy residue\", 'description_long' => \"From our expanded online assortment; ideal for a variety of DJ applications; 2&quot; wide; no heavy residue\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-stage-tape-black/1005803.p?id=1218207310997&skuId=1005803', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005803_sa.jpg\"}', 'upc' => '640282052931', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 4\\\" Gaffers Tape - Black\", 'description_short' => \"From our expanded online assortment; 4&quot; wide; 135&#039; of tape; cloth-like structure\", 'description_long' => \"From our expanded online assortment; 4&quot; wide; 135&#039; of tape; cloth-like structure\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-4-gaffers-tape-black/1005849.p?id=1218207310042&skuId=1005849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005849_sa.jpg\"}', 'upc' => '640282022897', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 2\\\" Gaffers Tape - White\", 'description_short' => \"From our expanded online assortment; 2&quot; wide; 135&#039; of tape; cloth-like structure\", 'description_long' => \"From our expanded online assortment; 2&quot; wide; 135&#039; of tape; cloth-like structure\", 'price' => 20.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/american-dj-2-gaffers-tape-white/1005867.p?id=1218207306630&skuId=1005867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005867_sa.jpg\"}', 'upc' => '640282022880', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 15-1/2' Flash Rope\", 'description_short' => \"From our expanded online assortment; 12 flash capsules; rain-resistant; built-in hanging ring\", 'description_long' => \"From our expanded online assortment; 12 flash capsules; rain-resistant; built-in hanging ring\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-15-1-2-flash-rope/1005885.p?id=1218207314033&skuId=1005885', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005885_sa.jpg\"}', 'upc' => '640282021982', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 3 RPM Mirror Ball Motor\", 'description_short' => \"From our expanded online assortment; AC motor; 3 rpm; holds mirror balls up to 12&quot;\", 'description_long' => \"From our expanded online assortment; AC motor; 3 rpm; holds mirror balls up to 12&quot;\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/american-dj-3-rpm-mirror-ball-motor/1005894.p?id=1218207311613&skuId=1005894', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005894_sa.jpg\"}', 'upc' => '640282034609', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - LED Color Panel - Black\", 'description_short' => \"From our expanded online assortment; 288 LEDs; 7 DMX channel modes; 4 operational modes; strobe and dimming effects\", 'description_long' => \"From our expanded online assortment; 288 LEDs; 7 DMX channel modes; 4 operational modes; strobe and dimming effects\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-led-color-panel-black/1005903.p?id=1218207315201&skuId=1005903', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1306\\/1306786803\\/1306786803_sa.jpg\"}', 'upc' => '640282001359', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 1 RPM Mirror Ball Motor\", 'description_short' => \"From our expanded online assortment; AC motor; 1 rpm; holds mirror balls up to 16&quot;\", 'description_long' => \"From our expanded online assortment; AC motor; 1 rpm; holds mirror balls up to 16&quot;\", 'price' => 14.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/american-dj-1-rpm-mirror-ball-motor/1005912.p?id=1218207308006&skuId=1005912', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005912_sa.jpg\"}', 'upc' => '640282034005', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Chase Controller Pack\", 'description_short' => \"From our expanded online assortment; designed to chase LED and halogen par cans; 20 built-in programs; 7 preset scenes\", 'description_long' => \"From our expanded online assortment; designed to chase LED and halogen par cans; 20 built-in programs; 7 preset scenes\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-chase-controller-pack/1005985.p?id=1218207316314&skuId=1005985', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1005985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1005\\/1005985_rc.jpg\"}', 'upc' => '640282000093', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Par Can Kit - Black\", 'description_short' => \"From our expanded online assortment; ideal for theaters, mobile entertainment and bands; 4 color gel filters; safety cable\", 'description_long' => \"From our expanded online assortment; ideal for theaters, mobile entertainment and bands; 4 color gel filters; safety cable\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-par-can-kit-black/1006029.p?id=1218207302854&skuId=1006029', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006029_sa.jpg\"}', 'upc' => '640282010139', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 8-Channel Switch Center\", 'description_short' => \"From our expanded online assortment; built-in power supply; 8 channels\", 'description_long' => \"From our expanded online assortment; built-in power supply; 8 channels\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-8-channel-switch-center/1006038.p?id=1218207312804&skuId=1006038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006038_sa.jpg\"}', 'upc' => '640282048293', 'provider' => 'bestbuy'],\n ['name' => \"VocoPro - TabletOke Digital Karaoke Mixer - Black/Gray\", 'description_short' => \"VOCOPRO TabletOke Digital Karaoke Mixer: Built-in Bluetooth music receiver; compatible with select smartphones, tablets and laptops with a 3.5mm (1/8&quot;) jack; connects to karaoke player for CDG or DVD disc playback\", 'description_long' => \"VOCOPRO TabletOke Digital Karaoke Mixer: Built-in Bluetooth music receiver; compatible with select smartphones, tablets and laptops with a 3.5mm (1/8&quot;) jack; connects to karaoke player for CDG or DVD disc playback\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vocopro-tabletoke-digital-karaoke-mixer-black-gray/1006046.p?id=1219460765652&skuId=1006046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006046_sa.jpg\"}', 'upc' => '692868822537', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 1 Gal. Bubble Juice\", 'description_short' => \"From our expanded online assortment; designed for use in bubble machines; colorless; 1 gal.\", 'description_long' => \"From our expanded online assortment; designed for use in bubble machines; colorless; 1 gal.\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-1-gal-bubble-juice/1006065.p?id=1218207315613&skuId=1006065', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006065_sa.jpg\"}', 'upc' => '640282013031', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Radius 3000 MIDI Controller - Black\", 'description_short' => \"From our expanded online assortment; plays MP3, WAV, CD and CD-R formats; media card slot; USB port; PowerTouch digital scratching; 9 on-board effects\", 'description_long' => \"From our expanded online assortment; plays MP3, WAV, CD and CD-R formats; media card slot; USB port; PowerTouch digital scratching; 9 on-board effects\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-radius-3000-midi-controller-black/1006126.p?id=1218207305296&skuId=1006126', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006126_sa.jpg\"}', 'upc' => '640282000963', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - 2' Safety Cable - Silver\", 'description_short' => \"Secures DJ light fixtures to a truss or pipe; steel construction; 60 lb. weight rating\", 'description_long' => \"Secures DJ light fixtures to a truss or pipe; steel construction; 60 lb. weight rating\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-2-safety-cable-silver/1006144.p?id=1218207315886&skuId=1006144', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006144_sa.jpg\"}', 'upc' => '640282091893', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Crank-2 Mobile Stand System - Black\", 'description_short' => \"From our expanded online assortment; raises equipment up to 10&#039;; steel tripod stand; steel truss sections\", 'description_long' => \"From our expanded online assortment; raises equipment up to 10&#039;; steel tripod stand; steel truss sections\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-crank-2-mobile-stand-system-black/1006199.p?id=1218207305427&skuId=1006199', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006199_sa.jpg\"}', 'upc' => '640282015417', 'provider' => 'bestbuy'],\n ['name' => \"CyberPower - 700VA Smart App Series Battery Back-Up System - Black\", 'description_short' => \"CYBERPOWER 700VA Smart App Series Battery Back-Up System: 1030 joules of protection; 6 outlets, including 4 battery- and surge-protected outlets; phone/network line protection; front-panel LCD; 10&#039; cord\", 'description_long' => \"CYBERPOWER 700VA Smart App Series Battery Back-Up System: 1030 joules of protection; 6 outlets, including 4 battery- and surge-protected outlets; phone/network line protection; front-panel LCD; 10&#039; cord\", 'price' => 225.99, 'sale_price' => 200.99, 'url' => 'http://www.bestbuy.com/site/cyberpower-700va-smart-app-series-battery-back-up-system-black/1006435.p?id=1218207313830&skuId=1006435', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006435_sa.jpg\"}', 'upc' => '649532715046', 'provider' => 'bestbuy'],\n ['name' => \"Elis, Essa Mulher - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elis-essa-mulher-cd/1006468.p?id=1507997&skuId=1006468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006468_sa.jpg\"}', 'upc' => '022925590022', 'provider' => 'bestbuy'],\n ['name' => \"The Sword in the Stone (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sword-in-the-stone-blu-ray-disc-2-disc/1006569.p?id=24888&skuId=1006569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006569_sa.jpg\"}', 'upc' => '786936834901', 'provider' => 'bestbuy'],\n ['name' => \"Survival Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/survival-collection-4-film-favorites-2-discs-dvd/1006578.p?id=2096296&skuId=1006578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006578_sa.jpg\"}', 'upc' => '883929129973', 'provider' => 'bestbuy'],\n ['name' => \"The Losers (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-losers-dvd/1006587.p?id=2119491&skuId=1006587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006587_sa.jpg\"}', 'upc' => '883929106301', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Shippuden - Box Set 3 [3 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-box-set-3-3-discs-boxed-set-dvd/1006602.p?id=2102412&skuId=1006602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006602_sa.jpg\"}', 'upc' => '782009240075', 'provider' => 'bestbuy'],\n ['name' => \"War Heroes Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/war-heroes-collection-4-film-favorites-2-discs-dvd/1006611.p?id=2096298&skuId=1006611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006611_sa.jpg\"}', 'upc' => '883929130733', 'provider' => 'bestbuy'],\n ['name' => \"SuperFriends!: Season One, Vol. 2 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superfriends-season-one-vol-2-2-discs-dvd/1006639.p?id=2102408&skuId=1006639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006639.jpg\"}', 'upc' => '883929102037', 'provider' => 'bestbuy'],\n ['name' => \"Falta Amor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/falta-amor-cd/1006645.p?id=1375024&skuId=1006645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006645_sa.jpg\"}', 'upc' => '090317217321', 'provider' => 'bestbuy'],\n ['name' => \"Being Human: Season One [2 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/being-human-season-one-2-discs-blu-ray-blu-ray-disc/1006648.p?id=2108099&skuId=1006648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006648_sa.jpg\"}', 'upc' => '883929114313', 'provider' => 'bestbuy'],\n ['name' => \"Being Human: Season One [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/being-human-season-one-2-discs-dvd/1006657.p?id=2108098&skuId=1006657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006657_sa.jpg\"}', 'upc' => '883929114825', 'provider' => 'bestbuy'],\n ['name' => \"Clash of the Titans (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clash-of-the-titans-dvd/1006702.p?id=2119493&skuId=1006702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006702_sa.jpg\"}', 'upc' => '883929106523', 'provider' => 'bestbuy'],\n ['name' => \"Batman: Under the Red Hood (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-under-the-red-hood-dvd/1006739.p?id=2109872&skuId=1006739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006739_sa.jpg\"}', 'upc' => '883929101061', 'provider' => 'bestbuy'],\n ['name' => \"Batman: Under the Red Hood [Special Edition] [2 Discs] (DVD) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-under-the-red-hood-special-edition-2-discs-dvd-special-edition/1006748.p?id=2147183&skuId=1006748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006748.jpg\"}', 'upc' => '883929101160', 'provider' => 'bestbuy'],\n ['name' => \"8: The Mormon Proposition (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/8-the-mormon-proposition-dvd/1006757.p?id=2109333&skuId=1006757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006757_sa.jpg\"}', 'upc' => '754703763464', 'provider' => 'bestbuy'],\n ['name' => \"Pornography: A Thriller (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pornography-a-thriller-dvd/1006766.p?id=2109413&skuId=1006766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1006766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1006\\/1006766_sa.jpg\"}', 'upc' => '754703763419', 'provider' => 'bestbuy'],\n ['name' => \"Fantasy Life - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Choose your fate as you journey through a fascinating land on the adventure of a lifetime\", 'description_long' => \"Choose your fate as you journey through a fascinating land on the adventure of a lifetime\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fantasy-life-pre-owned-nintendo-3ds/1007009.p?id=1219460752592&skuId=1007009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007009_sa.jpg\"}', 'upc' => '799007840268', 'provider' => 'bestbuy'],\n ['name' => \"Polk Audio - 300W Class AB Bridgeable 2-Channel MOSFET Amplifier with Switchable Bass Boost - Black\", 'description_short' => \"Selectable high or low-pass crossover; variable input gain; switchable 3-position bass boost\", 'description_long' => \"Selectable high or low-pass crossover; variable input gain; switchable 3-position bass boost\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polk-audio-300w-class-ab-bridgeable-2-channel-mosfet-amplifier-with-switchable-bass-boost-black/1007107.p?id=1218207655270&skuId=1007107', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007107_sa.jpg\"}', 'upc' => '747192120702', 'provider' => 'bestbuy'],\n ['name' => \"Sir Lucious Left Foot: The Son of... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sir-lucious-left-foot-the-son-of-pa-cd/1007901.p?id=2114497&skuId=1007901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007901_sa.jpg\"}', 'upc' => '602527400853', 'provider' => 'bestbuy'],\n ['name' => \"Jackson Browne: Going Home (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jackson-browne-going-home-dvd/1007947.p?id=33533&skuId=1007947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007947_sa.jpg\"}', 'upc' => '801213030491', 'provider' => 'bestbuy'],\n ['name' => \"Hidden Beach Recordings Presents: Unwrapped,... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hidden-beach-recordings-presents-unwrapped-cd-various/1007956.p?id=2121194&skuId=1007956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007956_sa.jpg\"}', 'upc' => '894096001955', 'provider' => 'bestbuy'],\n ['name' => \"Music of DC Comics: 75th Anniversary... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-dc-comics-75th-anniversary-cd/1007992.p?id=2119706&skuId=1007992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1007992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1007\\/1007992_sa.jpg\"}', 'upc' => '794043143335', 'provider' => 'bestbuy'],\n ['name' => \"Power Rangers: Super Megaforce - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Harness the powers of legendary Rangers to save Earth from an alien invasion\", 'description_long' => \"Harness the powers of legendary Rangers to save Earth from an alien invasion\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-rangers-super-megaforce-pre-owned-nintendo-3ds/1008008.p?id=1219482739482&skuId=1008008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008008_sa.jpg\"}', 'upc' => '799007840275', 'provider' => 'bestbuy'],\n ['name' => \"Still Rovin' After All These Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-rovin-after-all-these-years-cd/1008009.p?id=2119495&skuId=1008009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008009_sa.jpg\"}', 'upc' => '030206701722', 'provider' => 'bestbuy'],\n ['name' => \"Sir Lucious Left... [CD & DVD] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sir-lucious-left-cd-dvd-pa-digipak-cd/1008036.p?id=2114501&skuId=1008036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008036_sa.jpg\"}', 'upc' => '602527433820', 'provider' => 'bestbuy'],\n ['name' => \"This Is the Blues, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-the-blues-vol-4-cd-various/1008045.p?id=2119203&skuId=1008045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008045_sa.jpg\"}', 'upc' => '826992017723', 'provider' => 'bestbuy'],\n ['name' => \"Intriguer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intriguer-cd/1008081.p?id=2121189&skuId=1008081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008081_sa.jpg\"}', 'upc' => '888072322578', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Original Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-original-masters-cd/1008106.p?id=2119204&skuId=1008106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008106.jpg\"}', 'upc' => '054645416429', 'provider' => 'bestbuy'],\n ['name' => \"This Is the Blues, Vol. 3 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-the-blues-vol-3-various-cd/1008115.p?id=2119205&skuId=1008115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008115.jpg\"}', 'upc' => '826992017624', 'provider' => 'bestbuy'],\n ['name' => \"Performance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/performance-cd/1008197.p?id=2121195&skuId=1008197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008197.jpg\"}', 'upc' => '030206184129', 'provider' => 'bestbuy'],\n ['name' => \"Black 'n' Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-n-roll-cd/1008203.p?id=2119206&skuId=1008203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008203.jpg\"}', 'upc' => '826992503929', 'provider' => 'bestbuy'],\n ['name' => \"Tercer Cielo: En Concierto - Creere (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tercer-cielo-en-concierto-creere-dvd/1008267.p?id=2117247&skuId=1008267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008267_sa.jpg\"}', 'upc' => '827865402394', 'provider' => 'bestbuy'],\n ['name' => \"20 Corridos Poderosos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-corridos-poderosos-cd/1008276.p?id=2117248&skuId=1008276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008276.jpg\"}', 'upc' => '808835454421', 'provider' => 'bestbuy'],\n ['name' => \"El Talento del Bloque - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-talento-del-bloque-cd/1008285.p?id=2117239&skuId=1008285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008285_sa.jpg\"}', 'upc' => '827865500120', 'provider' => 'bestbuy'],\n ['name' => \"Funky Kingston [Mango Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funky-kingston-mango-reissue-cd/1008304.p?id=102003&skuId=1008304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008304_sa.jpg\"}', 'upc' => '016253933026', 'provider' => 'bestbuy'],\n ['name' => \"Blood Like Lemonade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-like-lemonade-cd/1008319.p?id=2119496&skuId=1008319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008319_sa.jpg\"}', 'upc' => '843798000148', 'provider' => 'bestbuy'],\n ['name' => \"Hold You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hold-you-cd/1008328.p?id=2119207&skuId=1008328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008328_sa.jpg\"}', 'upc' => '054645186728', 'provider' => 'bestbuy'],\n ['name' => \"100 Miles from Memphis [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/100-miles-from-memphis-digipak-cd/1008355.p?id=2117073&skuId=1008355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008355_sa.jpg\"}', 'upc' => '602527433943', 'provider' => 'bestbuy'],\n ['name' => \"BATMAN: UNDER THE RED HOOD (2PC) / (SPEC ECOA) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-under-the-red-hood-2pc-spec-ecoa-blu-ray-disc/1008373.p?id=2150155&skuId=1008373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008373_sa.jpg\"}', 'upc' => '883929099597', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-protection-plan-geek-squad/1008585.p?id=1218252648433&skuId=1008585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010085859', 'provider' => 'bestbuy'],\n ['name' => \"The Sword in the Stone (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sword-in-the-stone-dvd/1008628.p?id=24888&skuId=1008628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008628.jpg\"}', 'upc' => '786936834925', 'provider' => 'bestbuy'],\n ['name' => \"NPR Discover Songs: Soul Revival - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/npr-discover-songs-soul-revival-cd-various/1008782.p?id=2115137&skuId=1008782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008782_sa.jpg\"}', 'upc' => '826663117080', 'provider' => 'bestbuy'],\n ['name' => \"Pedro Cap¢ - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pedro-cap-cd/1008791.p?id=2115268&skuId=1008791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008791_sa.jpg\"}', 'upc' => '886972757520', 'provider' => 'bestbuy'],\n ['name' => \"Plays Blues, Ballads & Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-blues-ballads-favorites-cd/1008828.p?id=2115282&skuId=1008828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008828_sa.jpg\"}', 'upc' => '826663121063', 'provider' => 'bestbuy'],\n ['name' => \"Meridional - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meridional-cd/1008855.p?id=2115278&skuId=1008855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008855_sa.jpg\"}', 'upc' => '793018308724', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very Best... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-best-ecd-digipak-cd/1008864.p?id=2115284&skuId=1008864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008864_sa.jpg\"}', 'upc' => '886977027529', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-ecd-digipak-cd/1008882.p?id=2115279&skuId=1008882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008882_sa.jpg\"}', 'upc' => '886977027925', 'provider' => 'bestbuy'],\n ['name' => \"Bloodletting [20th Anniversary Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloodletting-20th-anniversary-edition-cd/1008891.p?id=2115281&skuId=1008891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008891_sa.jpg\"}', 'upc' => '826663120868', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very Best of Willie... [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-best-of-willie-ecd-cd/1008919.p?id=2115283&skuId=1008919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008919_sa.jpg\"}', 'upc' => '886977027024', 'provider' => 'bestbuy'],\n ['name' => \"At Budokan [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-budokan-cd-dvd-cd-dvd/1008928.p?id=2114427&skuId=1008928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008928_sa.jpg\"}', 'upc' => '886977266126', 'provider' => 'bestbuy'],\n ['name' => \"Time Flies... 1994-2009 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-flies-1994-2009-cd/1008937.p?id=2113865&skuId=1008937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008937_sa.jpg\"}', 'upc' => '886977378621', 'provider' => 'bestbuy'],\n ['name' => \"Matilda/The New Adventures of Pippi Longstocking [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matilda-the-new-adventures-of-pippi-longstocking-2-discs-dvd/1008946.p?id=2063605&skuId=1008946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1829\\/18293494.jpg\"}', 'upc' => '043396184817', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very Best of... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-best-of-ecd-digipak-cd/1008973.p?id=2115272&skuId=1008973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008973_sa.jpg\"}', 'upc' => '886977027727', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very Best of Blue... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-best-of-blue-digipak-cd/1008982.p?id=2115285&skuId=1008982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008982.jpg\"}', 'upc' => '886977177927', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-ecd-digipak-cd/1008991.p?id=2115274&skuId=1008991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1008991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1008\\/1008991_sa.jpg\"}', 'upc' => '886977178221', 'provider' => 'bestbuy'],\n ['name' => \"Cooking Mama 5: Bon Appétit - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Whip up sweet treats and mouthwatering dishes that show you&#039;re a culinary star\", 'description_long' => \"Whip up sweet treats and mouthwatering dishes that show you&#039;re a culinary star\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cooking-mama-5-bon-appetit-pre-owned-nintendo-3ds/1009007.p?id=1219460752590&skuId=1009007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009007_sa.jpg\"}', 'upc' => '799007840282', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very Best of... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-best-of-ecd-digipak-cd/1009008.p?id=2115280&skuId=1009008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009008_sa.jpg\"}', 'upc' => '886977224522', 'provider' => 'bestbuy'],\n ['name' => \"Setlist: The Very... [ECD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setlist-the-very-ecd-digipak-cd/1009026.p?id=2115286&skuId=1009026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009026_sa.jpg\"}', 'upc' => '886977178429', 'provider' => 'bestbuy'],\n ['name' => \"Time Flies... 1994-2009 [CD & DVD] [Box] [PA] - CD - DVD Box Limited Edition Clamshell\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-flies-1994-2009-cd-dvd-box-pa-cd-dvd-box-limited-edition-clamshell/1009053.p?id=2113866&skuId=1009053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009053_sa.jpg\"}', 'upc' => '886977226625', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Microphone\", 'description_short' => \"Detachable - 20Hz to 20kHz - Cable\", 'description_long' => \"Detachable - 20Hz to 20kHz - Cable\", 'price' => 99.99, 'sale_price' => 92.99, 'url' => 'http://www.bestbuy.com/site/audio-technica-microphone/1009211.p?id=1218207657136&skuId=1009211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009211_105x210_sc.jpg\"}', 'upc' => '042005134953', 'provider' => 'bestbuy'],\n ['name' => \"Shenandoah (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shenandoah-dvd/1009248.p?id=42704&skuId=1009248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009248_sa.jpg\"}', 'upc' => '025192262029', 'provider' => 'bestbuy'],\n ['name' => \"Glacier National Park (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glacier-national-park-blu-ray-disc/1009363.p?id=2077283&skuId=1009363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009363_sa.jpg\"}', 'upc' => '014381633856', 'provider' => 'bestbuy'],\n ['name' => \"My Regeneration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-regeneration-cd/1009414.p?id=2115342&skuId=1009414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009414_sa.jpg\"}', 'upc' => '698268951020', 'provider' => 'bestbuy'],\n ['name' => \"Seawide - Nautic 6\\\" x 9\\\" 2-Way Coaxial Marine Speakers (Pair) - White\", 'description_short' => \"Handles up to 130W power; polymer speaker assembly; grilles and housings made from UV-resistant fiber-reinforced ABS plastic; injection-molded magnet\", 'description_long' => \"Handles up to 130W power; polymer speaker assembly; grilles and housings made from UV-resistant fiber-reinforced ABS plastic; injection-molded magnet\", 'price' => 65.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seawide-nautic-6-x-9-2-way-coaxial-marine-speakers-pair-white/1009511.p?id=1218215158393&skuId=1009511', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009511_sa.jpg\"}', 'upc' => '806576215721', 'provider' => 'bestbuy'],\n ['name' => \"Seawide - Nautic 6-1/2\\\" 2-Way Coaxial Marine Speakers (Pair) - White\", 'description_short' => \"Handles up to 50W power; polymer speaker assembly; grilles and housings made from UV-resistant fiber-reinforced ABS plastic; injection-molded magnet\", 'description_long' => \"Handles up to 50W power; polymer speaker assembly; grilles and housings made from UV-resistant fiber-reinforced ABS plastic; injection-molded magnet\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seawide-nautic-6-1-2-2-way-coaxial-marine-speakers-pair-white/1009566.p?id=1218215158336&skuId=1009566', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009566_sa.jpg\"}', 'upc' => '806576215714', 'provider' => 'bestbuy'],\n ['name' => \"Move of Ten [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/move-of-ten-ep-digipak-cd/1009609.p?id=2117657&skuId=1009609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009609_sa.jpg\"}', 'upc' => '801061950521', 'provider' => 'bestbuy'],\n ['name' => \"Admiral Fell Promises [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/admiral-fell-promises-digipak-cd/1009618.p?id=2117236&skuId=1009618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009618_sa.jpg\"}', 'upc' => '634457529328', 'provider' => 'bestbuy'],\n ['name' => \"Masts of Manhatta [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masts-of-manhatta-digipak-cd/1009627.p?id=2117656&skuId=1009627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009627_sa.jpg\"}', 'upc' => '611357630903', 'provider' => 'bestbuy'],\n ['name' => \"Safe Upon the Shore [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/safe-upon-the-shore-digipak-cd/1009636.p?id=2117068&skuId=1009636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009636.jpg\"}', 'upc' => '634457528925', 'provider' => 'bestbuy'],\n ['name' => \"Messin' with the Kid: Original Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/messin-with-the-kid-original-masters-cd/1009645.p?id=2133200&skuId=1009645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009645_sa.jpg\"}', 'upc' => '708535172161', 'provider' => 'bestbuy'],\n ['name' => \"Wildwood [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wildwood-digipak-cd/1009654.p?id=2117654&skuId=1009654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009654_sa.jpg\"}', 'upc' => '634457222120', 'provider' => 'bestbuy'],\n ['name' => \"I Heart California [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-heart-california-digipak-cd/1009663.p?id=2118066&skuId=1009663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1009663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1009\\/1009663_sa.jpg\"}', 'upc' => '634457528727', 'provider' => 'bestbuy'],\n ['name' => \"WWE 2K15 - PRE-OWNED - Xbox 360\", 'description_short' => \"Step into the ring and fight your way to the gold\", 'description_long' => \"Step into the ring and fight your way to the gold\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-2k15-pre-owned-xbox-360/1010002.p?id=1219460771478&skuId=1010002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010002_sa.jpg\"}', 'upc' => '799007840299', 'provider' => 'bestbuy'],\n ['name' => \"StarTech - DisplayPort to VGA Adapter - Black\", 'description_short' => \"DisplayPort Male\", 'description_long' => \"DisplayPort Male\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-displayport-to-vga-adapter-black/1010004.p?id=1218265847767&skuId=1010004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010004_sa.jpg\"}', 'upc' => '065030834551', 'provider' => 'bestbuy'],\n ['name' => \"Oliver and Company (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oliver-and-company-blu-ray-disc-2-disc/1010147.p?id=43372&skuId=1010147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010147_sa.jpg\"}', 'upc' => '786936829235', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - 36\\\" Built-In Electric Cooktop - Black\", 'description_short' => \"Knob controls; 5 cooktop elements; 100-2700 watts of power; warm zone; 2 double-ring round elements\", 'description_long' => \"Knob controls; 5 cooktop elements; 100-2700 watts of power; warm zone; 2 double-ring round elements\", 'price' => 1499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-36-built-in-electric-cooktop-black/1010226.p?id=1218208015434&skuId=1010226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010226_sa.jpg\"}', 'upc' => '883049202440', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - 36\\\" Built-In Electric Cooktop - Stainless Steel\", 'description_short' => \"Knob controls; 5 cooktop elements; 100-2700 watts of power; warm zone; 2 double-ring round elements\", 'description_long' => \"Knob controls; 5 cooktop elements; 100-2700 watts of power; warm zone; 2 double-ring round elements\", 'price' => 1599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-36-built-in-electric-cooktop-stainless-steel/1010271.p?id=1218208016783&skuId=1010271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010271_sa.jpg\"}', 'upc' => '883049202457', 'provider' => 'bestbuy'],\n ['name' => \"American Audio - Headphones - Black/Silver\", 'description_short' => \"From our expanded online assortment; 44mm driver; 32 ohms impedance; 20Hz - 20kHz frequency response; 3.5mm stereo plug\", 'description_long' => \"From our expanded online assortment; 44mm driver; 32 ohms impedance; 20Hz - 20kHz frequency response; 3.5mm stereo plug\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-audio-headphones-black-silver/1010401.p?id=1218208999696&skuId=1010401', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1010401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1010\\/1010401_sa.jpg\"}', 'upc' => '640282021890', 'provider' => 'bestbuy'],\n ['name' => \"Keurig - Green Mountain Breakfast Blend K-Cups (18-Pack) - Multi\", 'description_short' => \"For use with Keurig&#039;s Single Serve Brewer; Kona breakfast blend coffee; 18-pack\", 'description_long' => \"For use with Keurig&#039;s Single Serve Brewer; Kona breakfast blend coffee; 18-pack\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keurig-green-mountain-breakfast-blend-k-cups-18-pack-multi/1011173.p?id=1218208016216&skuId=1011173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011173_sa.jpg\"}', 'upc' => '099555005202', 'provider' => 'bestbuy'],\n ['name' => \"The Sims 3 - Nintendo Wii\", 'description_short' => \"Give your Sims the run of the neighborhood in this exciting new edition\", 'description_long' => \"Give your Sims the run of the neighborhood in this exciting new edition\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sims-3-nintendo-wii/1011786.p?id=1218208016458&skuId=1011786', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011786_sa.jpg\"}', 'upc' => '014633194401', 'provider' => 'bestbuy'],\n ['name' => \"The Quickening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-quickening-cd/1011859.p?id=2115483&skuId=1011859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011859_sa.jpg\"}', 'upc' => '827954103522', 'provider' => 'bestbuy'],\n ['name' => \"Spirit the Earth Aflame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-the-earth-aflame-cd/1011868.p?id=2115495&skuId=1011868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011868_sa.jpg\"}', 'upc' => '039841486520', 'provider' => 'bestbuy'],\n ['name' => \"Rising from the Grave [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rising-from-the-grave-cd-dvd-cd-dvd/1011877.p?id=2115494&skuId=1011877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011877_sa.jpg\"}', 'upc' => '039841490329', 'provider' => 'bestbuy'],\n ['name' => \"Rites Of The Pentagram [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rites-of-the-pentagram-cd-dvd-cd/1011886.p?id=2115497&skuId=1011886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011886_sa.jpg\"}', 'upc' => '020286154167', 'provider' => 'bestbuy'],\n ['name' => \"Paegan Terrorism Tactics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paegan-terrorism-tactics-cd/1011895.p?id=2115464&skuId=1011895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011895.jpg\"}', 'upc' => '032357304425', 'provider' => 'bestbuy'],\n ['name' => \"Legacy of the Ancients - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legacy-of-the-ancients-cd/1011904.p?id=2115461&skuId=1011904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011904_sa.jpg\"}', 'upc' => '746105056923', 'provider' => 'bestbuy'],\n ['name' => \"Conjuring the Damned - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conjuring-the-damned-cd/1011913.p?id=2115485&skuId=1011913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011913_sa.jpg\"}', 'upc' => '656191201629', 'provider' => 'bestbuy'],\n ['name' => \"Black Coffee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-coffee-cd/1011922.p?id=2115475&skuId=1011922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011922_sa.jpg\"}', 'upc' => '823862002520', 'provider' => 'bestbuy'],\n ['name' => \"Capricorn One: Singles & Rarities [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capricorn-one-singles-rarities-digipak-cd/1011959.p?id=2115502&skuId=1011959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011959_sa.jpg\"}', 'upc' => '751097075623', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Little Rabbits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-little-rabbits-cd/1011968.p?id=2115470&skuId=1011968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011968.jpg\"}', 'upc' => '654436015826', 'provider' => 'bestbuy'],\n ['name' => \"2nd Avenue [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2nd-avenue-digipak-cd/1011977.p?id=2118063&skuId=1011977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011977_sa.jpg\"}', 'upc' => '020286152309', 'provider' => 'bestbuy'],\n ['name' => \"Yet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yet-cd/1011986.p?id=2115827&skuId=1011986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011986.jpg\"}', 'upc' => '803847109420', 'provider' => 'bestbuy'],\n ['name' => \"Danza III: The Series of Unfortunate Events - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/danza-iii-the-series-of-unfortunate-events-cd/1011995.p?id=2115456&skuId=1011995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1011995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1011\\/1011995_sa.jpg\"}', 'upc' => '039841491128', 'provider' => 'bestbuy'],\n ['name' => \"The Dawg Years (1975-1978) [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dawg-years-1975-1978-digipak-cd/1012002.p?id=2115453&skuId=1012002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012002_sa.jpg\"}', 'upc' => '767981122328', 'provider' => 'bestbuy'],\n ['name' => \"Laughing [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laughing-pa-cd/1012011.p?id=2115441&skuId=1012011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012011.jpg\"}', 'upc' => '673951017221', 'provider' => 'bestbuy'],\n ['name' => \"You Are Beneath Me [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-are-beneath-me-digipak-cd/1012039.p?id=2115496&skuId=1012039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012039_sa.jpg\"}', 'upc' => '020286123989', 'provider' => 'bestbuy'],\n ['name' => \"Rollin' [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rollin-pa-digipak-cd/1012048.p?id=2118062&skuId=1012048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012048_sa.jpg\"}', 'upc' => '020286152170', 'provider' => 'bestbuy'],\n ['name' => \"Love Ritual: Rare & Previously... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-ritual-rare-previously-digipak-cd/1012057.p?id=2115447&skuId=1012057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012057.jpg\"}', 'upc' => '767981121529', 'provider' => 'bestbuy'],\n ['name' => \"Wide Awake [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wide-awake-digipak-cd/1012066.p?id=2115469&skuId=1012066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012066_sa.jpg\"}', 'upc' => '020286154204', 'provider' => 'bestbuy'],\n ['name' => \"How to Destroy Angels [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-destroy-angels-ep-digipak-cd/1012075.p?id=2115459&skuId=1012075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012075_sa.jpg\"}', 'upc' => '766929950122', 'provider' => 'bestbuy'],\n ['name' => \"A Feast for Crows [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-feast-for-crows-digdownload-cd/1012084.p?id=2115460&skuId=1012084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012084.jpg\"}', 'upc' => '746105055728', 'provider' => 'bestbuy'],\n ['name' => \"The Marriage of Heaven and Hell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-marriage-of-heaven-and-hell-cd/1012093.p?id=2115466&skuId=1012093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012093_sa.jpg\"}', 'upc' => '803847109321', 'provider' => 'bestbuy'],\n ['name' => \"Common Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-ground-cd/1012109.p?id=2114448&skuId=1012109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012109_sa.jpg\"}', 'upc' => '020286152279', 'provider' => 'bestbuy'],\n ['name' => \"Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alive-cd/1012118.p?id=2114447&skuId=1012118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012118_sa.jpg\"}', 'upc' => '020286154211', 'provider' => 'bestbuy'],\n ['name' => \"Down Low Brother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-low-brother-cd/1012409.p?id=1537388&skuId=1012409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012409_sa.jpg\"}', 'upc' => '706393108124', 'provider' => 'bestbuy'],\n ['name' => \"Talk to Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-to-me-cd/1012436.p?id=1344456&skuId=1012436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012436_sa.jpg\"}', 'upc' => '096094108029', 'provider' => 'bestbuy'],\n ['name' => \"La Musica del Futuro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-musica-del-futuro-cd/1012445.p?id=2115263&skuId=1012445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012445_sa.jpg\"}', 'upc' => '097037877026', 'provider' => 'bestbuy'],\n ['name' => \"It's My Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-my-time-cd/1012454.p?id=1642028&skuId=1012454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012454_sa.jpg\"}', 'upc' => '706393109220', 'provider' => 'bestbuy'],\n ['name' => \"Guerilla Business [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guerilla-business-digipak-cd/1012481.p?id=2115242&skuId=1012481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012481.jpg\"}', 'upc' => '845121019179', 'provider' => 'bestbuy'],\n ['name' => \"I'm a Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-a-woman-cd/1012515.p?id=1828531&skuId=1012515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012515_sa.jpg\"}', 'upc' => '842994011545', 'provider' => 'bestbuy'],\n ['name' => \"Where Y'At?: Ultimate Black & Gold Party! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-yat-ultimate-black-gold-party-cd-various/1012542.p?id=2115258&skuId=1012542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012542_sa.jpg\"}', 'upc' => '096094112323', 'provider' => 'bestbuy'],\n ['name' => \"The Best Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-woman-cd/1012579.p?id=211474&skuId=1012579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012579_sa.jpg\"}', 'upc' => '706393103822', 'provider' => 'bestbuy'],\n ['name' => \"After Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-hours-cd/1012647.p?id=70143&skuId=1012647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012647_sa.jpg\"}', 'upc' => '089408330223', 'provider' => 'bestbuy'],\n ['name' => \"Papa Doo Run Run - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/papa-doo-run-run-cd/1012665.p?id=1366312&skuId=1012665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012665_sa.jpg\"}', 'upc' => '089408550119', 'provider' => 'bestbuy'],\n ['name' => \"Symphony 8 / Scherzo Capriccioso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-8-scherzo-capriccioso-cd/1012781.p?id=1676879&skuId=1012781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012781.jpg\"}', 'upc' => '089408020629', 'provider' => 'bestbuy'],\n ['name' => \"Righteous/ Games Guitars Play - CD - Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/righteous-games-guitars-play-cd-remastered/1012885.p?id=1472292&skuId=1012885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012885_sa.jpg\"}', 'upc' => '5017261206671', 'provider' => 'bestbuy'],\n ['name' => \"Howling Trains and Barking Dogs [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/howling-trains-and-barking-dogs-digipak-cd/1012894.p?id=2110243&skuId=1012894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012894_sa.jpg\"}', 'upc' => '607735006620', 'provider' => 'bestbuy'],\n ['name' => \"Dum-Dum Bullets [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dum-dum-bullets-digipak-cd/1012903.p?id=2110305&skuId=1012903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012903_sa.jpg\"}', 'upc' => '693723066424', 'provider' => 'bestbuy'],\n ['name' => \"Romeo & Juliet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romeo-juliet-cd/1012905.p?id=1689268&skuId=1012905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012905.jpg\"}', 'upc' => '089408022821', 'provider' => 'bestbuy'],\n ['name' => \"The Snake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-snake-cd/1012912.p?id=2358827&skuId=1012912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1135\\/11355589.jpg\"}', 'upc' => '5017261203984', 'provider' => 'bestbuy'],\n ['name' => \"Beast Mode [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beast-mode-pa-cd/1012921.p?id=2110180&skuId=1012921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012921_sa.jpg\"}', 'upc' => '099923206927', 'provider' => 'bestbuy'],\n ['name' => \"Shangrenade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shangrenade-cd/1012949.p?id=1528976&skuId=1012949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012949_sa.jpg\"}', 'upc' => '5017261204103', 'provider' => 'bestbuy'],\n ['name' => \"Baby Batter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baby-batter-cd/1012967.p?id=1452225&skuId=1012967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012967.jpg\"}', 'upc' => '5017261202529', 'provider' => 'bestbuy'],\n ['name' => \"Stupendous Adventures Of Marco Polo... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stupendous-adventures-of-marco-polo-pa-cd/1012976.p?id=2110185&skuId=1012976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012976_sa.jpg\"}', 'upc' => '693461215528', 'provider' => 'bestbuy'],\n ['name' => \"Noesis [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/noesis-digipak-cd/1012985.p?id=2110205&skuId=1012985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1012985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1012\\/1012985.jpg\"}', 'upc' => '804223002120', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Chicago Blues [Vanguard LP] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-chicago-blues-vanguard-lp-cd-various/1013218.p?id=1365877&skuId=1013218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013218_sa.jpg\"}', 'upc' => '015707010221', 'provider' => 'bestbuy'],\n ['name' => \"Electric Music for the Mind and Body - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-music-for-the-mind-and-body-cd/1013227.p?id=78818&skuId=1013227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013227.jpg\"}', 'upc' => '015707924429', 'provider' => 'bestbuy'],\n ['name' => \"The Immortal Mississippi John Hurt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-immortal-mississippi-john-hurt-cd/1013245.p?id=85968&skuId=1013245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013245_sa.jpg\"}', 'upc' => '015707924825', 'provider' => 'bestbuy'],\n ['name' => \"Circus Maximus with Jerry Jeff Walker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/circus-maximus-with-jerry-jeff-walker-cd/1013307.p?id=77830&skuId=1013307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013307_sa.jpg\"}', 'upc' => '015707926027', 'provider' => 'bestbuy'],\n ['name' => \"Coming at You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coming-at-you-cd/1013325.p?id=103774&skuId=1013325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013325_sa.jpg\"}', 'upc' => '015707926225', 'provider' => 'bestbuy'],\n ['name' => \"I-Feel-Like-I'm-Fixin'-To-Die - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-feel-like-im-fixin-to-die-cd/1013343.p?id=78819&skuId=1013343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013343.JPG\"}', 'upc' => '015707926621', 'provider' => 'bestbuy'],\n ['name' => \"A Man and the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-man-and-the-blues-cd/1013389.p?id=84476&skuId=1013389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013389_sa.jpg\"}', 'upc' => '015707927222', 'provider' => 'bestbuy'],\n ['name' => \"Devil Got My Woman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devil-got-my-woman-cd/1013405.p?id=86657&skuId=1013405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013405_sa.jpg\"}', 'upc' => '015707927321', 'provider' => 'bestbuy'],\n ['name' => \"Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/together-cd/1013423.p?id=78822&skuId=1013423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013423.jpg\"}', 'upc' => '015707927727', 'provider' => 'bestbuy'],\n ['name' => \"Cut You Loose! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cut-you-loose-cd/1013441.p?id=78787&skuId=1013441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013441_sa.jpg\"}', 'upc' => '015707928328', 'provider' => 'bestbuy'],\n ['name' => \"This Is Buddy Guy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-buddy-guy-cd/1013469.p?id=84489&skuId=1013469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013469.jpg\"}', 'upc' => '015707929028', 'provider' => 'bestbuy'],\n ['name' => \"Hold That Plane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hold-that-plane-cd/1013548.p?id=84481&skuId=1013548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013548.jpg\"}', 'upc' => '015707932325', 'provider' => 'bestbuy'],\n ['name' => \"Music of Another Present Era - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-another-present-era-cd/1013566.p?id=2280846&skuId=1013566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013566.jpg\"}', 'upc' => '015707932622', 'provider' => 'bestbuy'],\n ['name' => \"Hits: Greatest & Others - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hits-greatest-others-cd/1013600.p?id=73702&skuId=1013600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013600_sa.jpg\"}', 'upc' => '015707933223', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Siegel Schwall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-siegel-schwall-cd/1013655.p?id=98709&skuId=1013655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013655.jpg\"}', 'upc' => '015707933629', 'provider' => 'bestbuy'],\n ['name' => \"The World of Scott Joplin, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-world-of-scott-joplin-vol-2-cd/1013673.p?id=69371&skuId=1013673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013673.jpg\"}', 'upc' => '015707035125', 'provider' => 'bestbuy'],\n ['name' => \"The Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-cd/1013735.p?id=97728&skuId=1013735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013735.jpg\"}', 'upc' => '015707030427', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Darlin' Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-darlin-boys-cd/1013753.p?id=178381&skuId=1013753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013753_sa.jpg\"}', 'upc' => '015707050623', 'provider' => 'bestbuy'],\n ['name' => \"At Town Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-town-hall-cd/1013806.p?id=93801&skuId=1013806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013806_sa.jpg\"}', 'upc' => '015707210928', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Eric Andersen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-eric-andersen-cd/1013842.p?id=72951&skuId=1013842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013842_sa.jpg\"}', 'upc' => '015707070829', 'provider' => 'bestbuy'],\n ['name' => \"Magic Bullet - Blender - Black\", 'description_short' => \"17-piece set; chops, mixes, blends, whips, grinds and more in about 10 seconds; 4 party mugs with comfort lip rings\", 'description_long' => \"17-piece set; chops, mixes, blends, whips, grinds and more in about 10 seconds; 4 party mugs with comfort lip rings\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magic-bullet-blender-black/1013848.p?id=1218208323341&skuId=1013848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013848_rc.jpg\"}', 'upc' => '898078001049', 'provider' => 'bestbuy'],\n ['name' => \"Cisco Houston Sings the Songs of Woody Guthrie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cisco-houston-sings-the-songs-of-woody-guthrie-cd/1013904.p?id=85832&skuId=1013904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013904_sa.jpg\"}', 'upc' => '015707213127', 'provider' => 'bestbuy'],\n ['name' => \"Four Strong Winds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-strong-winds-cd/1013922.p?id=86027&skuId=1013922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013922_sa.jpg\"}', 'upc' => '015707214926', 'provider' => 'bestbuy'],\n ['name' => \"Reunion at Carnegie Hall: 1963 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reunion-at-carnegie-hall-1963-cd/1013940.p?id=103699&skuId=1013940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013940.jpg\"}', 'upc' => '015707215022', 'provider' => 'bestbuy'],\n ['name' => \"Cryin' Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cryin-time-cd/1013995.p?id=99782&skuId=1013995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1013995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1013\\/1013995.jpg\"}', 'upc' => '015707651424', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - 17 Cu. Ft. Upright Convertible Freezer/Refrigerator - White\", 'description_short' => \"5 built-in shelves; in-door storage; defrost drain; mechanical knob controls\", 'description_long' => \"5 built-in shelves; in-door storage; defrost drain; mechanical knob controls\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frigidaire-17-cu-ft-upright-convertible-freezer-refrigerator-white/1014008.p?id=1219460767478&skuId=1014008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014008_sa.jpg\"}', 'upc' => '012505229787', 'provider' => 'bestbuy'],\n ['name' => \"The First 10 Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-10-years-cd/1014066.p?id=73715&skuId=1014066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014066_sa.jpg\"}', 'upc' => '015707656023', 'provider' => 'bestbuy'],\n ['name' => \"Vacation Isle Beach Party - Nintendo Wii\", 'description_short' => \"Step into the sun and go on a vacation anytime\", 'description_long' => \"Step into the sun and go on a vacation anytime\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vacation-isle-beach-party-nintendo-wii/1014073.p?id=1218208322413&skuId=1014073', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014073.jpg\"}', 'upc' => '883929126910', 'provider' => 'bestbuy'],\n ['name' => \"Ballads From Deep Gap - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ballads-from-deep-gap-cd/1014093.p?id=103615&skuId=1014093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014093.jpg\"}', 'upc' => '015707657624', 'provider' => 'bestbuy'],\n ['name' => \"Creation (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creation-dvd/1014116.p?id=2091215&skuId=1014116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014116_sa.jpg\"}', 'upc' => '031398123699', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1014173.p?id=88473&skuId=1014173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014173_sa.jpg\"}', 'upc' => '015707131421', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-dvd/1014204.p?id=2108270&skuId=1014204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014204_sa.jpg\"}', 'upc' => '652405001399', 'provider' => 'bestbuy'],\n ['name' => \"The Red Shoes (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-red-shoes-blu-ray-disc/1014213.p?id=24078&skuId=1014213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014213_sa.jpg\"}', 'upc' => '715515059312', 'provider' => 'bestbuy'],\n ['name' => \"Distant Hills - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/distant-hills-cd/1014217.p?id=69702&skuId=1014217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014217.jpg\"}', 'upc' => '015707934121', 'provider' => 'bestbuy'],\n ['name' => \"Golgo 13: Collection 1 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golgo-13-collection-1-2-disc-dvd/1014231.p?id=2109883&skuId=1014231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014231.jpg\"}', 'upc' => '814131018908', 'provider' => 'bestbuy'],\n ['name' => \"Introducing the Eleventh House with Larry Coryell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/introducing-the-eleventh-house-with-larry-coryell-cd/1014235.p?id=65317&skuId=1014235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014235_sa.jpg\"}', 'upc' => '015707934220', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man (Blu-ray Disc) (2 Disc) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ip-man-blu-ray-disc-2-disc-collectors-edition/1014259.p?id=1954262&skuId=1014259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014259_sa.jpg\"}', 'upc' => '812491011522', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1014262.p?id=103696&skuId=1014262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014262_sa.jpg\"}', 'upc' => '015707151627', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man (DVD) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ip-man-dvd-collectors-edition/1014268.p?id=1954262&skuId=1014268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014268_sa.jpg\"}', 'upc' => '812491011515', 'provider' => 'bestbuy'],\n ['name' => \"Black Narcissus (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-narcissus-blu-ray-disc/1014277.p?id=20590&skuId=1014277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014277_sa.jpg\"}', 'upc' => '715515061216', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Folksingers of the '60s - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-folksingers-of-the-60s-cd-various/1014280.p?id=82586&skuId=1014280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014280.jpg\"}', 'upc' => '015707171823', 'provider' => 'bestbuy'],\n ['name' => \"The Mississippi John Hurt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mississippi-john-hurt-cd/1014306.p?id=85965&skuId=1014306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014306.jpg\"}', 'upc' => '015707192026', 'provider' => 'bestbuy'],\n ['name' => \"The Great Blues Men - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-blues-men-cd-various/1014324.p?id=75331&skuId=1014324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014324.jpg\"}', 'upc' => '015707252621', 'provider' => 'bestbuy'],\n ['name' => \"Just Dance 2 - Nintendo Wii\", 'description_short' => \"Move to the beat and keep the party going\", 'description_long' => \"Move to the beat and keep the party going\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-dance-2-nintendo-wii/1014329.p?id=1218208323015&skuId=1014329', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014329_sa.jpg\"}', 'upc' => '008888176060', 'provider' => 'bestbuy'],\n ['name' => \"Air Mail Music: Cajuns de Louisiane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/air-mail-music-cajuns-de-louisiane-cd/1014338.p?id=1438870&skuId=1014338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014338_sa.jpg\"}', 'upc' => '3700089411144', 'provider' => 'bestbuy'],\n ['name' => \"My New Orleans Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-new-orleans-soul-cd/1014347.p?id=255542&skuId=1014347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014347_sa.jpg\"}', 'upc' => '752211103826', 'provider' => 'bestbuy'],\n ['name' => \"The Immortal Soul of Johnny Adams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-immortal-soul-of-johnny-adams-cd/1014356.p?id=160913&skuId=1014356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014356_sa.jpg\"}', 'upc' => '752211120120', 'provider' => 'bestbuy'],\n ['name' => \"Edition Pierre Verger: Louisiana - From... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edition-pierre-verger-louisiana-from-cd/1014365.p?id=1543301&skuId=1014365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014365_sa.jpg\"}', 'upc' => '3700089665318', 'provider' => 'bestbuy'],\n ['name' => \"1313 Hoodoo Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1313-hoodoo-street-cd/1014374.p?id=133623&skuId=1014374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1028\\/10282981.jpg\"}', 'upc' => '752211500328', 'provider' => 'bestbuy'],\n ['name' => \"Everybody Scream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everybody-scream-cd/1014383.p?id=176084&skuId=1014383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014383_sa.jpg\"}', 'upc' => '752211500625', 'provider' => 'bestbuy'],\n ['name' => \"Winter Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-light-cd/1014397.p?id=69710&skuId=1014397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014397_sa.jpg\"}', 'upc' => '015707935029', 'provider' => 'bestbuy'],\n ['name' => \"Jail - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jail-cd/1014413.p?id=101733&skuId=1014413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014413.jpg\"}', 'upc' => '015707935128', 'provider' => 'bestbuy'],\n ['name' => \"Multi Karaoke: Canta como Juan Gabriel, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/multi-karaoke-canta-como-juan-gabriel-vol-4-cd/1014416.p?id=2121206&skuId=1014416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014416.jpg\"}', 'upc' => '617091003751', 'provider' => 'bestbuy'],\n ['name' => \"The Tribute Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tribute-sessions-cd/1014425.p?id=1548436&skuId=1014425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/10151346.jpg\"}', 'upc' => '752211500922', 'provider' => 'bestbuy'],\n ['name' => \"Feets Don't Fail Me Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feets-dont-fail-me-now-cd/1014434.p?id=164820&skuId=1014434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014434_sa.jpg\"}', 'upc' => '752211500120', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Buffy Sainte-Marie, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-buffy-sainte-marie-vol-2-cd/1014468.p?id=97729&skuId=1014468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014468_sa.jpg\"}', 'upc' => '015707333429', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Songs of Woody Guthrie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-songs-of-woody-guthrie-cd/1014486.p?id=84457&skuId=1014486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014486_sa.jpg\"}', 'upc' => '015707353625', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Scott Joplin and Other Rag Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-scott-joplin-and-other-rag-classics-cd/1014501.p?id=69369&skuId=1014501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014501.jpg\"}', 'upc' => '015707394024', 'provider' => 'bestbuy'],\n ['name' => \"Sassy Mama! [Vanguard] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sassy-mama-vanguard-cd/1014538.p?id=101734&skuId=1014538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014538.jpg\"}', 'upc' => '015707935425', 'provider' => 'bestbuy'],\n ['name' => \"John Hammond Solo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-hammond-solo-cd/1014565.p?id=84743&skuId=1014565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014565.jpg\"}', 'upc' => '015707938020', 'provider' => 'bestbuy'],\n ['name' => \"Let It Fly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-it-fly-cd/1014627.p?id=80463&skuId=1014627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014627_sa.jpg\"}', 'upc' => '015707946025', 'provider' => 'bestbuy'],\n ['name' => \"Throw It to the Wind: The Songs of Maltby & Shire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/throw-it-to-the-wind-the-songs-of-maltby-shire-cd/1014638.p?id=2121539&skuId=1014638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014638.jpg\"}', 'upc' => '803607109226', 'provider' => 'bestbuy'],\n ['name' => \"Broadway Boys: The Lullaby of Broadway - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broadway-boys-the-lullaby-of-broadway-various-cd/1014647.p?id=2121540&skuId=1014647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014647_sa.jpg\"}', 'upc' => '803607109127', 'provider' => 'bestbuy'],\n ['name' => \"String Wizards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/string-wizards-cd/1014663.p?id=91163&skuId=1014663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014663.jpg\"}', 'upc' => '015707946223', 'provider' => 'bestbuy'],\n ['name' => \"Moon and Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moon-and-mind-cd/1014734.p?id=69704&skuId=1014734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014734_sa.jpg\"}', 'upc' => '015707941921', 'provider' => 'bestbuy'],\n ['name' => \"Stanton - Pro MIDI DJ Deck Controller - Black\", 'description_short' => \"From our expanded online assortment; compatible with PC and Mac via a FireWire port; compatible with most DJ software; 10&quot; motorized platter with vinyl surface and tracking\", 'description_long' => \"From our expanded online assortment; compatible with PC and Mac via a FireWire port; compatible with most DJ software; 10&quot; motorized platter with vinyl surface and tracking\", 'price' => 699.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanton-pro-midi-dj-deck-controller-black/1014756.p?id=1218208317436&skuId=1014756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014756_sa.jpg\"}', 'upc' => '049292000695', 'provider' => 'bestbuy'],\n ['name' => \"Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/1014789.p?id=77865&skuId=1014789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014789_sa.jpg\"}', 'upc' => '015707944526', 'provider' => 'bestbuy'],\n ['name' => \"Alisha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alisha-cd/1014869.p?id=72710&skuId=1014869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014869_sa.jpg\"}', 'upc' => '015707945622', 'provider' => 'bestbuy'],\n ['name' => \"Stars & Stripes Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stars-stripes-forever-cd/1014912.p?id=277501&skuId=1014912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014912_sa.jpg\"}', 'upc' => '015707200325', 'provider' => 'bestbuy'],\n ['name' => \"Newport Broadside 1963 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/newport-broadside-1963-cd-various/1014921.p?id=93252&skuId=1014921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014921.jpg\"}', 'upc' => '015707700320', 'provider' => 'bestbuy'],\n ['name' => \"Definitive TV Western Collection (48pc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/definitive-tv-western-collection-48pc-dvd-boxed-set/1014947.p?id=2115213&skuId=1014947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014947.jpg\"}', 'upc' => '683904508881', 'provider' => 'bestbuy'],\n ['name' => \"Long Journey Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-journey-home-cd/1014949.p?id=87760&skuId=1014949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014949_sa.jpg\"}', 'upc' => '015707700429', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Breakdown - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-breakdown-cd-various/1014967.p?id=93251&skuId=1014967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014967.jpg\"}', 'upc' => '015707700627', 'provider' => 'bestbuy'],\n ['name' => \"Elite Screens - Spectrum Electric Projection Screen - White\", 'description_short' => \"65&quot; x 90&quot; - Matte White - 100&quot; Diagonal\", 'description_long' => \"65&quot; x 90&quot; - Matte White - 100&quot; Diagonal\", 'price' => 269.99, 'sale_price' => 220.99, 'url' => 'http://www.bestbuy.com/site/elite-screens-spectrum-electric-projection-screen-white/1014974.p?id=1218208402105&skuId=1014974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014974_sa.jpg\"}', 'upc' => '876818005700', 'provider' => 'bestbuy'],\n ['name' => \"The Weavers at Carnegie Hall, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-weavers-at-carnegie-hall-vol-2-cd/1014985.p?id=103693&skuId=1014985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1014985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1014\\/1014985_sa.jpg\"}', 'upc' => '015707907521', 'provider' => 'bestbuy'],\n ['name' => \"The Weavers' Almanac - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-weavers-almanac-cd/1015001.p?id=103691&skuId=1015001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015001_sa.jpg\"}', 'upc' => '015707910026', 'provider' => 'bestbuy'],\n ['name' => \"Doc Watson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doc-watson-cd/1015029.p?id=103621&skuId=1015029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015029_sa.jpg\"}', 'upc' => '015707915229', 'provider' => 'bestbuy'],\n ['name' => \"Northern Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/northern-journey-cd/1015047.p?id=86030&skuId=1015047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015047_sa.jpg\"}', 'upc' => '015707915427', 'provider' => 'bestbuy'],\n ['name' => \"Art Of The Cantor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-the-cantor-cd/1015092.p?id=94606&skuId=1015092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015092_sa.jpg\"}', 'upc' => '015707201728', 'provider' => 'bestbuy'],\n ['name' => \"Live At Carnegie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-carnegie-cd/1015127.p?id=2068607&skuId=1015127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015127.jpg\"}', 'upc' => '015707202022', 'provider' => 'bestbuy'],\n ['name' => \"The Weavers at Carnegie Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-weavers-at-carnegie-hall-cd/1015154.p?id=103692&skuId=1015154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015154_sa.jpg\"}', 'upc' => '015707310123', 'provider' => 'bestbuy'],\n ['name' => \"Music of Nubia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-nubia-cd/1015225.p?id=81397&skuId=1015225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015225_sa.jpg\"}', 'upc' => '015707916424', 'provider' => 'bestbuy'],\n ['name' => \"Early Morning Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/early-morning-rain-cd/1015252.p?id=86026&skuId=1015252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015252_sa.jpg\"}', 'upc' => '015707917520', 'provider' => 'bestbuy'],\n ['name' => \"Southbound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southbound-cd/1015298.p?id=103630&skuId=1015298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015298.jpg\"}', 'upc' => '015707921329', 'provider' => 'bestbuy'],\n ['name' => \"Chicago/The Blues/Today!, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-the-blues-today-vol-1-cd-various/1015314.p?id=75273&skuId=1015314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015314_sa.jpg\"}', 'upc' => '015707921626', 'provider' => 'bestbuy'],\n ['name' => \"Chicago/The Blues/Today!, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-the-blues-today-vol-3-cd-various/1015350.p?id=75275&skuId=1015350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015350_sa.jpg\"}', 'upc' => '015707921824', 'provider' => 'bestbuy'],\n ['name' => \"Skip James Today! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skip-james-today-cd/1015378.p?id=86659&skuId=1015378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015378_sa.jpg\"}', 'upc' => '015707921923', 'provider' => 'bestbuy'],\n ['name' => \"Today! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/today-cd/1015396.p?id=85969&skuId=1015396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015396.jpg\"}', 'upc' => '015707922029', 'provider' => 'bestbuy'],\n ['name' => \"Stand Back! Here Comes Charley Musselwhite's... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-back-here-comes-charley-musselwhites-cd/1015430.p?id=92700&skuId=1015430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015430_sa.jpg\"}', 'upc' => '015707923224', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Songs of Woody Guthrie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-songs-of-woody-guthrie-cd/1015494.p?id=84458&skuId=1015494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015494.jpg\"}', 'upc' => '015707310529', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Doc Watson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-doc-watson-cd/1015546.p?id=103631&skuId=1015546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015546.jpg\"}', 'upc' => '015707454629', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1015582.p?id=77857&skuId=1015582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015582_sa.jpg\"}', 'upc' => '015707535427', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Perrey & Kingsley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-perrey-kingsley-cd/1015626.p?id=94716&skuId=1015626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015626_sa.jpg\"}', 'upc' => '015707717229', 'provider' => 'bestbuy'],\n ['name' => \"The Weavers Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-weavers-classics-cd/1015733.p?id=103703&skuId=1015733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015733_sa.jpg\"}', 'upc' => '015707312226', 'provider' => 'bestbuy'],\n ['name' => \"Driftin' Way of Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/driftin-way-of-life-cd/1015779.p?id=103353&skuId=1015779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015779.jpg\"}', 'upc' => '015707312424', 'provider' => 'bestbuy'],\n ['name' => \"The Elder Scrolls IV: Oblivion Platinum Hits - Xbox 360\", 'description_short' => \"The gates of Oblivion have been opened\", 'description_long' => \"The gates of Oblivion have been opened\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-elder-scrolls-iv-oblivion-platinum-hits-xbox-360/1015791.p?id=1218287815279&skuId=1015791', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015791_500x500_sa.jpg\"}', 'upc' => '093155117532', 'provider' => 'bestbuy'],\n ['name' => \"Treasures Untold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/treasures-untold-cd/1015840.p?id=103634&skuId=1015840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015840.jpg\"}', 'upc' => '015707700122', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010158461', 'provider' => 'bestbuy'],\n ['name' => \"Newport Folk Festival 1963: The Evening... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/newport-folk-festival-1963-the-evening-cd-various/1015868.p?id=93253&skuId=1015868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015868.jpg\"}', 'upc' => '015707700221', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Larry Coryell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-larry-coryell-cd/1015902.p?id=65311&skuId=1015902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015902_sa.jpg\"}', 'upc' => '015707757621', 'provider' => 'bestbuy'],\n ['name' => \"The Great Bluesmen at Newport '59 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-bluesmen-at-newport-59-cd-various/1015911.p?id=75348&skuId=1015911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1015911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1015\\/1015911_sa.jpg\"}', 'upc' => '015707007726', 'provider' => 'bestbuy'],\n ['name' => \"Old-Timey Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-timey-concert-cd/1016019.p?id=103625&skuId=1016019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016019_sa.jpg\"}', 'upc' => '015707107822', 'provider' => 'bestbuy'],\n ['name' => \"The Essential - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-cd/1016037.p?id=69709&skuId=1016037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016037.jpg\"}', 'upc' => '015707010924', 'provider' => 'bestbuy'],\n ['name' => \"The Collected Country Joe & the Fish - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-collected-country-joe-the-fish-cd/1016055.p?id=78820&skuId=1016055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016055_sa.jpg\"}', 'upc' => '015707011129', 'provider' => 'bestbuy'],\n ['name' => \"In Concert I&II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-concert-i-ii-cd/1016073.p?id=2276525&skuId=1016073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016073_sa.jpg\"}', 'upc' => '015707011327', 'provider' => 'bestbuy'],\n ['name' => \"Blues at Newport - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-at-newport-cd-various/1016082.p?id=75236&skuId=1016082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016082_sa.jpg\"}', 'upc' => '015707011525', 'provider' => 'bestbuy'],\n ['name' => \"Jingle All the Way 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jingle-all-the-way-2-dvd/1016088.p?id=3308567&skuId=1016088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016088_sa.jpg\"}', 'upc' => '024543968450', 'provider' => 'bestbuy'],\n ['name' => \"Jingle All the Way 2 (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jingle-all-the-way-2-blu-ray-disc-2-disc/1016097.p?id=3308567&skuId=1016097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016097.jpg\"}', 'upc' => '024543968481', 'provider' => 'bestbuy'],\n ['name' => \"Best of Country Joe McDonald [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-country-joe-mcdonald-cassette-cd/1016126.p?id=91117&skuId=1016126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016126_sa.jpg\"}', 'upc' => '015707011921', 'provider' => 'bestbuy'],\n ['name' => \"Urnex - Scoop Brush\", 'description_short' => \"Brush tip; scoop design; compact size\", 'description_long' => \"Brush tip; scoop design; compact size\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/urnex-scoop-brush/1016132.p?id=1218209271175&skuId=1016132', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016132_sa.jpg\"}', 'upc' => '754631602705', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass at Newport: 1959-1963 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-at-newport-1959-1963-cd-various/1016144.p?id=75169&skuId=1016144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016144_sa.jpg\"}', 'upc' => '015707012126', 'provider' => 'bestbuy'],\n ['name' => \"Where We Walked (1966-1970) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-we-walked-1966-1970-cd/1016180.p?id=98711&skuId=1016180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016180.jpg\"}', 'upc' => '015707003520', 'provider' => 'bestbuy'],\n ['name' => \"The World of Scott Joplin, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-world-of-scott-joplin-vol-1-cd/1016206.p?id=69370&skuId=1016206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016206.jpg\"}', 'upc' => '015707031028', 'provider' => 'bestbuy'],\n ['name' => \"Hot Little Mama - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-little-mama-cd/1016322.p?id=97303&skuId=1016322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016322_sa.jpg\"}', 'upc' => '011671002125', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Guitar, Vol. 1-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-guitar-vol-1-cd/1016493.p?id=172511&skuId=1016493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016493_sa.jpg\"}', 'upc' => '011671000220', 'provider' => 'bestbuy'],\n ['name' => \"Royal Sovereign - 13\\\" Photo and Document Laminator - White/Black\", 'description_short' => \"Laminates photos and more up to 13.4&quot; wide and 3-7 mil thick; 2-roller system; cooling guide bars; automatic shut-off\", 'description_long' => \"Laminates photos and more up to 13.4&quot; wide and 3-7 mil thick; 2-roller system; cooling guide bars; automatic shut-off\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/royal-sovereign-13-photo-and-document-laminator-white-black/1016584.p?id=1218209270961&skuId=1016584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016584_rc.jpg\"}', 'upc' => '035565769888', 'provider' => 'bestbuy'],\n ['name' => \"Royal Sovereign - 9\\\" Photo and Document Laminator - White/Black\", 'description_short' => \"Laminates photos and more up to 9.4&quot; wide and 3-5 mil thick; 2-roller system; cooling guide bars; automatic shut-off\", 'description_long' => \"Laminates photos and more up to 9.4&quot; wide and 3-5 mil thick; 2-roller system; cooling guide bars; automatic shut-off\", 'price' => 99.99, 'sale_price' => 83.99, 'url' => 'http://www.bestbuy.com/site/royal-sovereign-9-photo-and-document-laminator-white-black/1016618.p?id=1218209272531&skuId=1016618', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016618_sa.jpg\"}', 'upc' => '035565769895', 'provider' => 'bestbuy'],\n ['name' => \"Royal Sovereign - Digital Coin Sorter\", 'description_short' => \"Sorts U.S. pennies, nickels, dimes and quarters; 2 row of tubes; digital display; antijam device\", 'description_long' => \"Sorts U.S. pennies, nickels, dimes and quarters; 2 row of tubes; digital display; antijam device\", 'price' => 79.99, 'sale_price' => 74.99, 'url' => 'http://www.bestbuy.com/site/royal-sovereign-digital-coin-sorter/1016627.p?id=1218209271664&skuId=1016627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1016627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1016\\/1016627_sa.jpg\"}', 'upc' => '035565900106', 'provider' => 'bestbuy'],\n ['name' => \"Mystery Science Theater 3000: Vol. XVIII [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-science-theater-3000-vol-xviii-4-discs-dvd/1017195.p?id=2104949&skuId=1017195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017195_sa.jpg\"}', 'upc' => '826663119732', 'provider' => 'bestbuy'],\n ['name' => \"Fanboys (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fanboys-blu-ray-disc/1017229.p?id=1933227&skuId=1017229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017229_sa.jpg\"}', 'upc' => '883476027715', 'provider' => 'bestbuy'],\n ['name' => \"Kevin Hart: Seriously Funny (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kevin-hart-seriously-funny-dvd/1017238.p?id=2104938&skuId=1017238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017238_sa.jpg\"}', 'upc' => '883476027678', 'provider' => 'bestbuy'],\n ['name' => \"Super Hero Squad Show: Quest for the Infinity Sword! Vol. 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hero-squad-show-quest-for-the-infinity-sword-vol-1-dvd/1017247.p?id=2104735&skuId=1017247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017247_sa.jpg\"}', 'upc' => '826663120837', 'provider' => 'bestbuy'],\n ['name' => \"EVGA - 500 Bronze 500W Power Supply - Black\", 'description_short' => \"Designed to power select computers; 500W continuous power; 80PLUS Bronze certified; high-amperage single-rail design; heavy-duty protections\", 'description_long' => \"Designed to power select computers; 500W continuous power; 80PLUS Bronze certified; high-amperage single-rail design; heavy-duty protections\", 'price' => 59.99, 'sale_price' => 48.99, 'url' => 'http://www.bestbuy.com/site/evga-500-bronze-500w-power-supply-black/1017256.p?id=1219045510716&skuId=1017256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017256_sa.jpg\"}', 'upc' => '843368023904', 'provider' => 'bestbuy'],\n ['name' => \"Repo Men (DVD) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repo-men-dvd-unrated/1017283.p?id=2114251&skuId=1017283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017283_sa.jpg\"}', 'upc' => '025195033046', 'provider' => 'bestbuy'],\n ['name' => \"Bourne Trilogy (Blu-ray Disc) (3 Disc) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bourne-trilogy-blu-ray-disc-3-disc-gift-set/1017308.p?id=2105489&skuId=1017308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017308.jpg\"}', 'upc' => '025192064470', 'provider' => 'bestbuy'],\n ['name' => \"Death Before Dishonor [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-before-dishonor-pa-cd/1017556.p?id=2121528&skuId=1017556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017556_sa.jpg\"}', 'upc' => '809367215122', 'provider' => 'bestbuy'],\n ['name' => \"10th Anniversary: Tha Classicc [CD & DVD] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10th-anniversary-tha-classicc-cd-dvd-pa-cd/1017565.p?id=2121527&skuId=1017565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017565_sa.jpg\"}', 'upc' => '678394100356', 'provider' => 'bestbuy'],\n ['name' => \"Piano Tribute to Jack Johnson - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-tribute-to-jack-johnson-various-cd/1017574.p?id=2121897&skuId=1017574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017574_sa.jpg\"}', 'upc' => '707541926690', 'provider' => 'bestbuy'],\n ['name' => \"Porcupine Tree: Anesthetize (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/porcupine-tree-anesthetize-dvd/1017583.p?id=2104681&skuId=1017583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017583_sa.jpg\"}', 'upc' => '802644850771', 'provider' => 'bestbuy'],\n ['name' => \"Southern Filibuster: A Tribute to Tut Taylor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southern-filibuster-a-tribute-to-tut-taylor-cd/1017592.p?id=2121900&skuId=1017592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017592.jpg\"}', 'upc' => '099923208228', 'provider' => 'bestbuy'],\n ['name' => \"Tamba [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tamba-digipak-cd/1017608.p?id=2110207&skuId=1017608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017608_sa.jpg\"}', 'upc' => '823889910822', 'provider' => 'bestbuy'],\n ['name' => \"My Room in the Trees [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-room-in-the-trees-digipak-cd/1017626.p?id=2125755&skuId=1017626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017626_sa.jpg\"}', 'upc' => '655037092728', 'provider' => 'bestbuy'],\n ['name' => \"Porcupine Tree: Anesthetize - DVD - (2 Disc) (Limited Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/porcupine-tree-anesthetize-dvd-2-disc-limited-edition/1017635.p?id=2104681&skuId=1017635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017635_sa.jpg\"}', 'upc' => '802644850672', 'provider' => 'bestbuy'],\n ['name' => \"Today's Praise and Worship - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todays-praise-and-worship-cd-various/1017644.p?id=2121526&skuId=1017644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017644_sa.jpg\"}', 'upc' => '015095722829', 'provider' => 'bestbuy'],\n ['name' => \"DJ Play My Blues [Bonus Tracks] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-play-my-blues-bonus-tracks-digipak-cd/1017653.p?id=2103570&skuId=1017653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017653_sa.jpg\"}', 'upc' => '788065882525', 'provider' => 'bestbuy'],\n ['name' => \"Matador [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matador-digipak-cd/1017662.p?id=2121524&skuId=1017662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017662.jpg\"}', 'upc' => '099923207627', 'provider' => 'bestbuy'],\n ['name' => \"Piano Tribute to Train - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-tribute-to-train-cd-various/1017671.p?id=2121895&skuId=1017671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017671_sa.jpg\"}', 'upc' => '707541926898', 'provider' => 'bestbuy'],\n ['name' => \"Red Horse [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-horse-digipak-cd/1017699.p?id=2121896&skuId=1017699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017699_sa.jpg\"}', 'upc' => '033651023326', 'provider' => 'bestbuy'],\n ['name' => \"Chicken & Egg [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicken-egg-digipak-cd/1017717.p?id=2125934&skuId=1017717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017717_sa.jpg\"}', 'upc' => '670832100522', 'provider' => 'bestbuy'],\n ['name' => \"Out the Blue [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-the-blue-pa-cd/1017726.p?id=2121530&skuId=1017726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017726_sa.jpg\"}', 'upc' => '678394100363', 'provider' => 'bestbuy'],\n ['name' => \"15 Years of Duck Down [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-years-of-duck-down-pa-cd-various/1017744.p?id=2121525&skuId=1017744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017744_sa.jpg\"}', 'upc' => '693461216020', 'provider' => 'bestbuy'],\n ['name' => \"Texas Troubadour [Snapper Long Box] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-troubadour-snapper-long-box-box-cd/1017762.p?id=1446057&skuId=1017762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1017\\/1017762.jpg\"}', 'upc' => '803415572922', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017844.p?id=1218252703238&skuId=1017844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010178445', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017853.p?id=1218252575110&skuId=1017853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010178537', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017862.p?id=1218252613110&skuId=1017862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010178629', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017871.p?id=1218252591341&skuId=1017871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010178711', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017899.p?id=1218252653225&skuId=1017899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010178995', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017908.p?id=1218252608265&skuId=1017908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179084', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017917.p?id=1218252628932&skuId=1017917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179176', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017926.p?id=1218252653901&skuId=1017926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179268', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017935.p?id=1218252639061&skuId=1017935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179350', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017944.p?id=1218252642784&skuId=1017944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179442', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1017953.p?id=1218252619371&skuId=1017953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1017953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010179534', 'provider' => 'bestbuy'],\n ['name' => \"Finally - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finally-cd/1018024.p?id=2124501&skuId=1018024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018024_sa.jpg\"}', 'upc' => '837654913260', 'provider' => 'bestbuy'],\n ['name' => \"The A-Team [Original Score] [6/22] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-a-team-original-score-6-22-cd-original-soundtrack/1018042.p?id=2115858&skuId=1018042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018042_sa.jpg\"}', 'upc' => '030206703221', 'provider' => 'bestbuy'],\n ['name' => \"Enemy of the World [Special Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enemy-of-the-world-special-edition-cd/1018051.p?id=2144060&skuId=1018051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018051_sa.jpg\"}', 'upc' => '602527427560', 'provider' => 'bestbuy'],\n ['name' => \"Middle Men [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/middle-men-original-soundtrack-cd-original-soundtrack/1018088.p?id=2127457&skuId=1018088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018088.jpg\"}', 'upc' => '018771034520', 'provider' => 'bestbuy'],\n ['name' => \"The Gates Mixed Plate [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gates-mixed-plate-pa-cd/1018103.p?id=2123815&skuId=1018103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018103_sa.jpg\"}', 'upc' => '893981001797', 'provider' => 'bestbuy'],\n ['name' => \"JONAS L.A. [ECD] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonas-l-a-ecd-cd-original-soundtrack/1018112.p?id=2113331&skuId=1018112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018112_sa.jpg\"}', 'upc' => '050087139919', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1018121.p?id=1219051768763&skuId=1018121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010181216', 'provider' => 'bestbuy'],\n ['name' => \"Registered Offender [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/registered-offender-pa-digipak-cd/1018158.p?id=2123817&skuId=1018158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018158_sa.jpg\"}', 'upc' => '790058204023', 'provider' => 'bestbuy'],\n ['name' => \"Scott Pilgrim Vs. the World - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scott-pilgrim-vs-the-world-cd-original-soundtrack/1018219.p?id=2124502&skuId=1018219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018219_sa.jpg\"}', 'upc' => '018771034322', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1018237.p?id=1218252629486&skuId=1018237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010182374', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1018246.p?id=1218252652834&skuId=1018246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010182466', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1018255.p?id=1218252604122&skuId=1018255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010182558', 'provider' => 'bestbuy'],\n ['name' => \"Conair - 1875-Watt Folding Handle Hair Dryer - Blue\", 'description_short' => \"2 heat/speed settings; cool shot button; dual voltage; professional-length line cord\", 'description_long' => \"2 heat/speed settings; cool shot button; dual voltage; professional-length line cord\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conair-1875-watt-folding-handle-hair-dryer-blue/1018273.p?id=1218210314205&skuId=1018273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018273_rc.jpg\"}', 'upc' => '074108007469', 'provider' => 'bestbuy'],\n ['name' => \"Allons a Lafayette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/allons-a-lafayette-cd/1018883.p?id=74251&skuId=1018883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018883.jpg\"}', 'upc' => '096297030820', 'provider' => 'bestbuy'],\n ['name' => \"Wipeout: The Game - Nintendo Wii\", 'description_short' => \"It&#039;s your turn to run, jump and climb through the wildest obstacle course on earth\", 'description_long' => \"It&#039;s your turn to run, jump and climb through the wildest obstacle course on earth\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wipeout-the-game-nintendo-wii/1018934.p?id=1218209648572&skuId=1018934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018934_sa.jpg\"}', 'upc' => '047875761735', 'provider' => 'bestbuy'],\n ['name' => \"Greenberg (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greenberg-dvd/1018952.p?id=2111577&skuId=1018952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018952_sa.jpg\"}', 'upc' => '025192047718', 'provider' => 'bestbuy'],\n ['name' => \"Greenberg (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greenberg-blu-ray-disc/1018961.p?id=2111577&skuId=1018961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018961_sa.jpg\"}', 'upc' => '025192047725', 'provider' => 'bestbuy'],\n ['name' => \"The Many Sounds of Steve Jordan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-many-sounds-of-steve-jordan-cd/1018981.p?id=87396&skuId=1018981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1018981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1018\\/1018981.jpg\"}', 'upc' => '096297031926', 'provider' => 'bestbuy'],\n ['name' => \"When the Game Stands Tall (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-game-stands-tall-dvd-ultraviolet-digital-copy/1019003.p?id=3308631&skuId=1019003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019003.jpg\"}', 'upc' => '043396439443', 'provider' => 'bestbuy'],\n ['name' => \"Cloudy With a Chance of Meatballs (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cloudy-with-a-chance-of-meatballs-blu-ray-3d-3-d/1019005.p?id=2064980&skuId=1019005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019005_sa.jpg\"}', 'upc' => '043396355781', 'provider' => 'bestbuy'],\n ['name' => \"Beau Solo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beau-solo-cd/1019007.p?id=80824&skuId=1019007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019007.jpg\"}', 'upc' => '096297032121', 'provider' => 'bestbuy'],\n ['name' => \"When the Game Stands Tall (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-game-stands-tall-blu-ray-disc-2-disc-ultraviolet-digital-copy/1019012.p?id=3308631&skuId=1019012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019012_sa.jpg\"}', 'upc' => '043396439412', 'provider' => 'bestbuy'],\n ['name' => \"Parlez-Nous a Boire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parlez-nous-a-boire-cd/1019016.p?id=74247&skuId=1019016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019016_sa.jpg\"}', 'upc' => '096297032220', 'provider' => 'bestbuy'],\n ['name' => \"Day of the Mummy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-of-the-mummy-dvd/1019021.p?id=3307580&skuId=1019021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019021_sa.jpg\"}', 'upc' => '014381998320', 'provider' => 'bestbuy'],\n ['name' => \"Justified: Complete Fifth Season [3 Discs] (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/justified-complete-fifth-season-3-discs-blu-ray-disc-ultraviolet-digital-copy/1019049.p?id=3303476&skuId=1019049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019049.jpg\"}', 'upc' => '043396441033', 'provider' => 'bestbuy'],\n ['name' => \"Justified: Complete Fifth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/justified-complete-fifth-season-3-discs-dvd/1019058.p?id=3303380&skuId=1019058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019058.jpg\"}', 'upc' => '043396441040', 'provider' => 'bestbuy'],\n ['name' => \"Tejano Roots - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tejano-roots-cd-various/1019150.p?id=101341&skuId=1019150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019150_sa.jpg\"}', 'upc' => '096297034125', 'provider' => 'bestbuy'],\n ['name' => \"Stanton - DJ PRO 60 Over-the-Ear Stereo Headphones - White\", 'description_short' => \"From our expanded online assortment; sound-isolating design; 40mm drivers; neodymium magnets; carrying pouch\", 'description_long' => \"From our expanded online assortment; sound-isolating design; 40mm drivers; neodymium magnets; carrying pouch\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stanton-dj-pro-60-over-the-ear-stereo-headphones-white/1019184.p?id=1218209649850&skuId=1019184', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019184_sa.jpg\"}', 'upc' => '049292484907', 'provider' => 'bestbuy'],\n ['name' => \"Bogalusa Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bogalusa-boogie-cd/1019212.p?id=77344&skuId=1019212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019212_sa.jpg\"}', 'upc' => '096297034729', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - Precision Body Shaver - Pink\", 'description_short' => \"Dual-position pivoting blade; compact wand design; washable; includes cleaning brush\", 'description_long' => \"Dual-position pivoting blade; compact wand design; washable; includes cleaning brush\", 'price' => 29.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/panasonic-precision-body-shaver-pink/1019245.p?id=1219045591579&skuId=1019245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019245_rc.jpg\"}', 'upc' => '885170065840', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2013 Nissan Versa/Versa S/S+ and SV with no options - Black\", 'description_short' => \"Compatible with select 2012-2013 Nissan Versa/Versa S/S+ and SV models; install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2013 Nissan Versa/Versa S/S+ and SV models; install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2013-nissan-versa-versa-s-s-and-sv-with-no-options-black/1019281.p?id=1219045789406&skuId=1019281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019281_sa.jpg\"}', 'upc' => '086429263141', 'provider' => 'bestbuy'],\n ['name' => \"The King of Zydeco Live at Montreux - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-king-of-zydeco-live-at-montreux-cd/1019294.p?id=77357&skuId=1019294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019294_sa.jpg\"}', 'upc' => '096297035528', 'provider' => 'bestbuy'],\n ['name' => \"Apple - MagSafe 60W Power Adapter for MacBook® and 13\\\" MacBook® Pro - White\", 'description_short' => \"Compatible with Apple&#174; MacBook and MacBook Pro with a 13&quot; display; magnetic DC connector; LED indicator lights; travel-friendly design\", 'description_long' => \"Compatible with Apple&#174; MacBook and MacBook Pro with a 13&quot; display; magnetic DC connector; LED indicator lights; travel-friendly design\", 'price' => 79.99, 'sale_price' => 77.99, 'url' => 'http://www.bestbuy.com/site/apple-magsafe-60w-power-adapter-for-macbook-and-13-macbook-pro-white/1019306.p?id=1218210362513&skuId=1019306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019306_sa.jpg\"}', 'upc' => '885909377794', 'provider' => 'bestbuy'],\n ['name' => \"Wipeout: The Game - Nintendo DS\", 'description_short' => \"It&#039;s your turn to run, jump and climb through wildest obstacle course on Earth\", 'description_long' => \"It&#039;s your turn to run, jump and climb through wildest obstacle course on Earth\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wipeout-the-game-nintendo-ds/1019388.p?id=1218209649167&skuId=1019388', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019388_sa.jpg\"}', 'upc' => '047875761773', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 99-7803G Mounting Kit Replacement Pocket for 2003-2007 Honda Accord Vehicles - Black\", 'description_short' => \"Compatible with 2003-2007 Honda Accord vehicle models; aftermarket radio installation pocket; ABS plastic material\", 'description_long' => \"Compatible with 2003-2007 Honda Accord vehicle models; aftermarket radio installation pocket; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-99-7803g-mounting-kit-replacement-pocket-for-2003-2007-honda-accord-vehicles-black/1019518.p?id=1219045787249&skuId=1019518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1019\\/1019518_sa.jpg\"}', 'upc' => '086429274062', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019527.p?id=1218252698623&skuId=1019527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010195275', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019536.p?id=1218252577909&skuId=1019536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010195367', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019554.p?id=1218252627156&skuId=1019554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010195541', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019563.p?id=1218252579203&skuId=1019563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010195633', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019581.p?id=1218252628210&skuId=1019581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010195817', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019606.p?id=1218252643784&skuId=1019606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196067', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019615.p?id=1218252618421&skuId=1019615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196159', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019624.p?id=1218252624211&skuId=1019624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196241', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019633.p?id=1218252581958&skuId=1019633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196333', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019642.p?id=1218252593065&skuId=1019642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196425', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019651.p?id=1218252630874&skuId=1019651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196517', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019679.p?id=1218252581558&skuId=1019679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196791', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019688.p?id=1218252584363&skuId=1019688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010196883', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019706.p?id=1218252619149&skuId=1019706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010197064', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1019715.p?id=1218252598270&skuId=1019715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1019715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010197156', 'provider' => 'bestbuy'],\n ['name' => \"Simpsons: Season 17 [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/simpsons-season-17-4-discs-dvd/1020017.p?id=3307644&skuId=1020017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020017_sa.jpg\"}', 'upc' => '024543868507', 'provider' => 'bestbuy'],\n ['name' => \"Simpsons: Season 17 [4 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simpsons-season-17-4-discs-blu-ray-disc-boxed-set/1020035.p?id=3307635&skuId=1020035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020035_sa.jpg\"}', 'upc' => '024543868521', 'provider' => 'bestbuy'],\n ['name' => \"Simpsons: Season 17 [Molded Head] [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/simpsons-season-17-molded-head-4-discs-dvd/1020044.p?id=3307641&skuId=1020044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020044.jpg\"}', 'upc' => '024543030485', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Double DIN Installation Kit for 2013 and Later Hyundai Santa Fe Vehicles - Black\", 'description_short' => \"Compatible with 2013 and later Hyundai Santa Fe vehicle models; lets you install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'description_long' => \"Compatible with 2013 and later Hyundai Santa Fe vehicle models; lets you install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-double-din-installation-kit-for-2013-and-later-hyundai-santa-fe-vehicles-black/1020205.p?id=1219045786606&skuId=1020205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020205_sa.jpg\"}', 'upc' => '086429277827', 'provider' => 'bestbuy'],\n ['name' => \"D Gray-Man: Season One (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/d-gray-man-season-one-4-disc-dvd-boxed-set/1020214.p?id=2105490&skuId=1020214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020214.jpg\"}', 'upc' => '704400069260', 'provider' => 'bestbuy'],\n ['name' => \"Magikano: The Complete Series [S.A.V.E.] [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magikano-the-complete-series-s-a-v-e--2-discs-dvd/1020241.p?id=2112316&skuId=1020241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020241_sa.jpg\"}', 'upc' => '704400086168', 'provider' => 'bestbuy'],\n ['name' => \"One Piece: Season 3 First Voyage (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-piece-season-3-first-voyage-2-disc-dvd/1020269.p?id=2105515&skuId=1020269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020269.jpg\"}', 'upc' => '704400094613', 'provider' => 'bestbuy'],\n ['name' => \"The Girl With the Dragon Tattoo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-girl-with-the-dragon-tattoo-dvd/1020278.p?id=2102692&skuId=1020278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020278_sa.jpg\"}', 'upc' => '705105743950', 'provider' => 'bestbuy'],\n ['name' => \"The Girl With the Dragon Tattoo (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-girl-with-the-dragon-tattoo-blu-ray-disc/1020296.p?id=2102692&skuId=1020296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020296_sa.jpg\"}', 'upc' => '705105743455', 'provider' => 'bestbuy'],\n ['name' => \"Survival of the Dead (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/survival-of-the-dead-dvd-2-disc/1020302.p?id=2115389&skuId=1020302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020302.jpg\"}', 'upc' => '876964003285', 'provider' => 'bestbuy'],\n ['name' => \"Dragon Ball: Season 5 (5 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragon-ball-season-5-5-disc-dvd-boxed-set/1020348.p?id=2112327&skuId=1020348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020348.jpg\"}', 'upc' => '704400051951', 'provider' => 'bestbuy'],\n ['name' => \"Survival of the Dead (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/survival-of-the-dead-blu-ray-disc/1020366.p?id=2115389&skuId=1020366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020366_sa.jpg\"}', 'upc' => '876964003292', 'provider' => 'bestbuy'],\n ['name' => \"Soul Eater: Part 4 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-eater-part-4-2-disc-dvd/1020375.p?id=2112331&skuId=1020375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020375.jpg\"}', 'upc' => '704400011733', 'provider' => 'bestbuy'],\n ['name' => \"Rin: Daughters Of Mnemosyne - Complete Series (2 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rin-daughters-of-mnemosyne-complete-series-2-disc-blu-ray-disc/1020384.p?id=2112322&skuId=1020384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020384.jpg\"}', 'upc' => '704400096419', 'provider' => 'bestbuy'],\n ['name' => \"Penitentiary 2 (DVD) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penitentiary-2-dvd-special-edition/1020499.p?id=48045&skuId=1020499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020499_sa.jpg\"}', 'upc' => '000799436523', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020596.p?id=1218252700201&skuId=1020596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010205967', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020602.p?id=1218252631152&skuId=1020602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206025', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020639.p?id=1218252642394&skuId=1020639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206391', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020648.p?id=1218252585481&skuId=1020648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206483', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020657.p?id=1218252577076&skuId=1020657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206575', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020666.p?id=1218252602340&skuId=1020666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206667', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020675.p?id=1218252612557&skuId=1020675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206759', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020684.p?id=1218252575053&skuId=1020684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010206841', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020702.p?id=1218252632352&skuId=1020702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207022', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020711.p?id=1218252631821&skuId=1020711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207114', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020739.p?id=1218252627820&skuId=1020739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207398', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020748.p?id=1218252649853&skuId=1020748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207480', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020757.p?id=1218252648845&skuId=1020757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207572', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1020766.p?id=1218252628766&skuId=1020766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010207664', 'provider' => 'bestbuy'],\n ['name' => \"Gabriel Iglesias: Hot and Fluffy (Blu-ray Disc) (Colorized)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gabriel-iglesias-hot-and-fluffy-blu-ray-disc-colorized/1020848.p?id=1646994&skuId=1020848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020848_sa.jpg\"}', 'upc' => '014381662351', 'provider' => 'bestbuy'],\n ['name' => \"The Secret of the Grain (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-secret-of-the-grain-blu-ray-disc/1020866.p?id=2108868&skuId=1020866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020866_sa.jpg\"}', 'upc' => '715515063111', 'provider' => 'bestbuy'],\n ['name' => \"Presenting Sacha Guitry [Criterion Collection] [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presenting-sacha-guitry-criterion-collection-4-discs-dvd/1020875.p?id=2108871&skuId=1020875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020875_sa.jpg\"}', 'upc' => '715515063210', 'provider' => 'bestbuy'],\n ['name' => \"Essential Games Of The Detroit Tigers (4 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-games-of-the-detroit-tigers-4-disc-dvd/1020893.p?id=1958178&skuId=1020893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1771\\/17713191.jpg\"}', 'upc' => '733961158205', 'provider' => 'bestbuy'],\n ['name' => \"Just Another Day (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-another-day-dvd/1020911.p?id=2106623&skuId=1020911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020911_sa.jpg\"}', 'upc' => '014381567922', 'provider' => 'bestbuy'],\n ['name' => \"Steve Byrne: The Byrne Identity (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-byrne-the-byrne-identity-blu-ray-disc/1020939.p?id=2106604&skuId=1020939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020939_sa.jpg\"}', 'upc' => '014381662658', 'provider' => 'bestbuy'],\n ['name' => \"Only Son/There Was a Father [Criterion Collection] [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-son-there-was-a-father-criterion-collection-2-discs-dvd/1020948.p?id=2108865&skuId=1020948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020948_sa.jpg\"}', 'upc' => '715515060813', 'provider' => 'bestbuy'],\n ['name' => \"Burma VJ: Reporting From a Closed Country (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burma-vj-reporting-from-a-closed-country-dvd/1020957.p?id=2099231&skuId=1020957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1020957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1020\\/1020957_sa.jpg\"}', 'upc' => '896602002128', 'provider' => 'bestbuy'],\n ['name' => \"EVGA - NVIDIA GeForce GTX 980 Superclocked ACX 2.0 4GB GDDR5 PCI Express 3.0 Graphics Card - Black\", 'description_short' => \"EVGA NVIDIA GeForce GTX 980 Superclocked ACX 2.0 4GB GDDR5 PCI Express 3.0 Graphics Card: 4GB GDDR5 on-board memory; PCI Express 3.0 interface; DVI-D, DVI-I, HDMI and DisplayPort outputs; 1367MHz boost clock speed\", 'description_long' => \"EVGA NVIDIA GeForce GTX 980 Superclocked ACX 2.0 4GB GDDR5 PCI Express 3.0 Graphics Card: 4GB GDDR5 on-board memory; PCI Express 3.0 interface; DVI-D, DVI-I, HDMI and DisplayPort outputs; 1367MHz boost clock speed\", 'price' => 569.99, 'sale_price' => 564.99, 'url' => 'http://www.bestbuy.com/site/evga-nvidia-geforce-gtx-980-superclocked-acx-2-0-4gb-gddr5-pci-express-3-0-graphics-card-black/1021007.p?id=1219467576316&skuId=1021007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021007_sa.jpg\"}', 'upc' => '843368032326', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Hyundai Santa Fe - Black\", 'description_short' => \"Compatible with select 2013-2015 Hyundai Santa Fe vehicle models; lets you install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'description_long' => \"Compatible with select 2013-2015 Hyundai Santa Fe vehicle models; lets you install an aftermarket radio in your vehicle&#039;s dash; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-hyundai-santa-fe-black/1021152.p?id=1219045789078&skuId=1021152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021152_sa.jpg\"}', 'upc' => '086429277858', 'provider' => 'bestbuy'],\n ['name' => \"The Dream Band, Vol. 2: The Sundown Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dream-band-vol-2-the-sundown-sessions-cd/1021174.p?id=66639&skuId=1021174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021174_sa.jpg\"}', 'upc' => '025218765220', 'provider' => 'bestbuy'],\n ['name' => \"Dream Band, Vol. 3: Flying Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dream-band-vol-3-flying-home-cd/1021209.p?id=66640&skuId=1021209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021209_sa.jpg\"}', 'upc' => '025218765428', 'provider' => 'bestbuy'],\n ['name' => \"Robin Hood (DVD) (Anniversary Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robin-hood-dvd-anniversary-edition/1021374.p?id=24169&skuId=1021374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021374_sa.jpg\"}', 'upc' => '786936834734', 'provider' => 'bestbuy'],\n ['name' => \"Something to Live for: The Music of Billy... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-to-live-for-the-music-of-billy-cd/1021450.p?id=66193&skuId=1021450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021450.jpg\"}', 'upc' => '025218142922', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Yanni - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-yanni-cd/1021638.p?id=2117307&skuId=1021638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021638_sa.jpg\"}', 'upc' => '886977120527', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Etta James - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-etta-james-cd/1021656.p?id=2117306&skuId=1021656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021656_sa.jpg\"}', 'upc' => '886977177323', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Jim Brickman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-jim-brickman-cd/1021665.p?id=2117279&skuId=1021665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021665_sa.jpg\"}', 'upc' => '886977349423', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - Kx-Tga401b DECT 6.0 Plus Digital Cordless Expansion Handset - Black\", 'description_short' => \"Cordless expansion handset; DECT 6.0 Plus digital technology; 50-station name and number; expandable up to 6 handsets; caller ID compatible\", 'description_long' => \"Cordless expansion handset; DECT 6.0 Plus digital technology; 50-station name and number; expandable up to 6 handsets; caller ID compatible\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-tga401b-dect-6-0-plus-digital-cordless-expansion-handset-black/1021683.p?id=1218209983161&skuId=1021683', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021683_rc.jpg\"}', 'upc' => '037988482719', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom 16 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-16-cd/1021838.p?id=3236649&skuId=1021838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1021838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1021\\/1021838.jpg\"}', 'upc' => '786984084129', 'provider' => 'bestbuy'],\n ['name' => \"Chris Shiflett & the Dead Peasants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chris-shiflett-the-dead-peasants-cd/1022027.p?id=2115478&skuId=1022027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022027_sa.jpg\"}', 'upc' => '886977380327', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022036.p?id=1218252702789&skuId=1022036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010220366', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022045.p?id=1218252595682&skuId=1022045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010220458', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022054.p?id=1218252585874&skuId=1022054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010220540', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022072.p?id=1218252606423&skuId=1022072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010220724', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022081.p?id=1218252588331&skuId=1022081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010220816', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022115.p?id=1218252639910&skuId=1022115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221158', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022124.p?id=1218252643563&skuId=1022124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221240', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022133.p?id=1218252611291&skuId=1022133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221332', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022142.p?id=1218252595292&skuId=1022142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221424', 'provider' => 'bestbuy'],\n ['name' => \"Sings the Kurt Weill Songbook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-the-kurt-weill-songbook-cd/1022146.p?id=104395&skuId=1022146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022146_sa.jpg\"}', 'upc' => '021471520729', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022151.p?id=1218252580938&skuId=1022151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221516', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022179.p?id=1218252627212&skuId=1022179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221790', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022188.p?id=1218252625152&skuId=1022188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221882', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022197.p?id=1218252641719&skuId=1022197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010221974', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022203.p?id=1218252608153&skuId=1022203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010222032', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1022212.p?id=1218252582069&skuId=1022212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010222124', 'provider' => 'bestbuy'],\n ['name' => \"Then and Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-and-now-cd/1022306.p?id=103937&skuId=1022306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022306_sa.jpg\"}', 'upc' => '021471140323', 'provider' => 'bestbuy'],\n ['name' => \"10 Minute Solution: Ultimate Boot Camp (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-minute-solution-ultimate-boot-camp-dvd/1022328.p?id=2087057&skuId=1022328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022328_sa.jpg\"}', 'upc' => '013132158693', 'provider' => 'bestbuy'],\n ['name' => \"Battlestar Galactica (2004): Season Three (5 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battlestar-galactica-2004-season-three-5-disc-blu-ray-disc/1022364.p?id=2113311&skuId=1022364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/1022364.jpg\"}', 'upc' => '025192013065', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night Live: The Best of Will Ferrell, Vol. 3 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-live-the-best-of-will-ferrell-vol-3-dvd/1022382.p?id=2113316&skuId=1022382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022382.jpg\"}', 'upc' => '025192037993', 'provider' => 'bestbuy'],\n ['name' => \"Repo Men (Blu-ray Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/repo-men-blu-ray-disc-unrated/1022406.p?id=2114251&skuId=1022406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022406_sa.jpg\"}', 'upc' => '025195052184', 'provider' => 'bestbuy'],\n ['name' => \"Max Headroom: The Complete Series [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/max-headroom-the-complete-series-5-discs-dvd/1022424.p?id=2112645&skuId=1022424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022424_sa.jpg\"}', 'upc' => '826663120325', 'provider' => 'bestbuy'],\n ['name' => \"Big Money Rustlas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-money-rustlas-dvd/1022433.p?id=2116242&skuId=1022433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022433_sa.jpg\"}', 'upc' => '756504410592', 'provider' => 'bestbuy'],\n ['name' => \"Piranha (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piranha-blu-ray-disc/1022442.p?id=23873&skuId=1022442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022442_sa.jpg\"}', 'upc' => '826663116830', 'provider' => 'bestbuy'],\n ['name' => \"Letters to God (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/letters-to-god-dvd/1022451.p?id=2116241&skuId=1022451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022451_sa.jpg\"}', 'upc' => '883476027661', 'provider' => 'bestbuy'],\n ['name' => \"Ann Hampton Callaway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ann-hampton-callaway-cd/1022459.p?id=76620&skuId=1022459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022459.jpg\"}', 'upc' => '021471141122', 'provider' => 'bestbuy'],\n ['name' => \"Return of the 5 Deadly Venoms (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-of-the-5-deadly-venoms-dvd/1022479.p?id=60798&skuId=1022479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022479_sa.jpg\"}', 'upc' => '883476028200', 'provider' => 'bestbuy'],\n ['name' => \"Previously Unavailable - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/previously-unavailable-cd/1022486.p?id=82882&skuId=1022486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022486.jpg\"}', 'upc' => '021471521023', 'provider' => 'bestbuy'],\n ['name' => \"Piranha (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piranha-dvd/1022488.p?id=23873&skuId=1022488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022488_sa.jpg\"}', 'upc' => '826663116823', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Raw: Seasons 1 & 2 (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-raw-seasons-1-2-3-disc-dvd/1022497.p?id=2116257&skuId=1022497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022497.jpg\"}', 'upc' => '651191948499', 'provider' => 'bestbuy'],\n ['name' => \"Falsettoland - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/falsettoland-cd-original-soundtrack/1022510.p?id=2182684&skuId=1022510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022510_sa.jpg\"}', 'upc' => '021471260120', 'provider' => 'bestbuy'],\n ['name' => \"An Angel at My Table [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-angel-at-my-table-original-soundtrack-cd-original-soundtrack/1022556.p?id=72921&skuId=1022556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022556.jpg\"}', 'upc' => '021471260328', 'provider' => 'bestbuy'],\n ['name' => \"Blue Giant [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-giant-digipak-cd/1022646.p?id=2119707&skuId=1022646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022646_sa.jpg\"}', 'upc' => '015707807722', 'provider' => 'bestbuy'],\n ['name' => \"A Star-Crossed Wasteland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-star-crossed-wasteland-cd/1022655.p?id=2119708&skuId=1022655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022655_sa.jpg\"}', 'upc' => '727701872322', 'provider' => 'bestbuy'],\n ['name' => \"Fables of the Reconstruction [25th... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fables-of-the-reconstruction-25th-cd/1022664.p?id=2119709&skuId=1022664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022664.jpg\"}', 'upc' => '5099964607122', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Vanguard Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-vanguard-years-cd/1022673.p?id=194295&skuId=1022673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1126\\/11262992.jpg\"}', 'upc' => '015707957328', 'provider' => 'bestbuy'],\n ['name' => \"Snoop Dogg Presents: My No. 1 Priority [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snoop-dogg-presents-my-no-1-priority-pa-cd/1022691.p?id=2121534&skuId=1022691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022691_sa.jpg\"}', 'upc' => '5099964688022', 'provider' => 'bestbuy'],\n ['name' => \"Meet Me In St. Louis - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-me-in-st-louis-cd-original-soundtrack/1022725.p?id=91327&skuId=1022725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022725_sa.jpg\"}', 'upc' => '021471900224', 'provider' => 'bestbuy'],\n ['name' => \"The Panic Broadcast [CD & DVD] [Digipak] - CD - DVD (with Bonus Tracks) Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-panic-broadcast-cd-dvd-digipak-cd-dvd-with-bonus-tracks-deluxe-edition/1022737.p?id=2119712&skuId=1022737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022737.jpg\"}', 'upc' => '727361261023', 'provider' => 'bestbuy'],\n ['name' => \"The Panic Broadcast - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-panic-broadcast-cd/1022746.p?id=2119713&skuId=1022746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022746_sa.jpg\"}', 'upc' => '727361225629', 'provider' => 'bestbuy'],\n ['name' => \"The War Report 2: Before the War [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-war-report-2-before-the-war-pa-cd/1022755.p?id=2119714&skuId=1022755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022755.jpg\"}', 'upc' => '5099964280226', 'provider' => 'bestbuy'],\n ['name' => \"The House You're Building - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-house-youre-building-cd/1022791.p?id=2119716&skuId=1022791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022791_sa.jpg\"}', 'upc' => '5099945707520', 'provider' => 'bestbuy'],\n ['name' => \"Vanguard Visionaries - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanguard-visionaries-cd/1022837.p?id=1638703&skuId=1022837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1560\\/15602448.jpg\"}', 'upc' => '015707315326', 'provider' => 'bestbuy'],\n ['name' => \"Tha Last Meal [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tha-last-meal-pa-cd/1022846.p?id=2121533&skuId=1022846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022846_sa.jpg\"}', 'upc' => '5099964263625', 'provider' => 'bestbuy'],\n ['name' => \"Vanguard Visionaries - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanguard-visionaries-cd/1022855.p?id=1638889&skuId=1022855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022855_sa.jpg\"}', 'upc' => '015707316927', 'provider' => 'bestbuy'],\n ['name' => \"Fables of the Reconstruction [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fables-of-the-reconstruction-lp-vinyl/1022891.p?id=2119719&skuId=1022891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022891.jpg\"}', 'upc' => '5099964607115', 'provider' => 'bestbuy'],\n ['name' => \"I Am the West [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-the-west-pa-cd/1022946.p?id=2115864&skuId=1022946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022946_sa.jpg\"}', 'upc' => '5099964188225', 'provider' => 'bestbuy'],\n ['name' => \"Unchained Melodies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unchained-melodies-cd/1022994.p?id=72629&skuId=1022994&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1022994', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1022\\/1022994.jpg\"}', 'upc' => '021471521429', 'provider' => 'bestbuy'],\n ['name' => \"Snoopy [Original Cast] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snoopy-original-cast-cd-original-soundtrack/1023118.p?id=99337&skuId=1023118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023118.jpg\"}', 'upc' => '021471610321', 'provider' => 'bestbuy'],\n ['name' => \"Seesaw [Original Cast Recording] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seesaw-original-cast-recording-cd-original-cast-recording/1023145.p?id=98287&skuId=1023145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023145_sa.jpg\"}', 'upc' => '021471610826', 'provider' => 'bestbuy'],\n ['name' => \"Don't Mess with a Big Band: Live! [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-mess-with-a-big-band-live-digipak-cd/1023169.p?id=2115474&skuId=1023169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023169_sa.jpg\"}', 'upc' => '640424999582', 'provider' => 'bestbuy'],\n ['name' => \"Korn III: Remember Who You Are [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/korn-iii-remember-who-you-are-pa-cd/1023187.p?id=2116170&skuId=1023187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023187_sa.jpg\"}', 'upc' => '016861775728', 'provider' => 'bestbuy'],\n ['name' => \"Fixed at Zero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fixed-at-zero-cd/1023196.p?id=2110842&skuId=1023196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023196_sa.jpg\"}', 'upc' => '075678941436', 'provider' => 'bestbuy'],\n ['name' => \"They'll Only Miss You When You Leave: Songs... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theyll-only-miss-you-when-you-leave-songs-cd/1023202.p?id=2119194&skuId=1023202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023202_sa.jpg\"}', 'upc' => '098787301526', 'provider' => 'bestbuy'],\n ['name' => \"At Vine St. Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-vine-st-live-cd/1023234.p?id=69663&skuId=1023234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023234_sa.jpg\"}', 'upc' => '021471843521', 'provider' => 'bestbuy'],\n ['name' => \"Serotonin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serotonin-cd/1023239.p?id=2115457&skuId=1023239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023239_sa.jpg\"}', 'upc' => '883870055123', 'provider' => 'bestbuy'],\n ['name' => \"Happy Hour: The South River Road Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-hour-the-south-river-road-sessions-cd/1023257.p?id=2115841&skuId=1023257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023257_sa.jpg\"}', 'upc' => '075678924637', 'provider' => 'bestbuy'],\n ['name' => \"March of the Falsettos [Original Cast] - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/march-of-the-falsettos-original-cast-cd-original-cast-recording/1023261.p?id=90514&skuId=1023261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023261.jpg\"}', 'upc' => '021471258127', 'provider' => 'bestbuy'],\n ['name' => \"Foul Deeds [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foul-deeds-cd-dvd-cd/1023266.p?id=2108752&skuId=1023266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1857\\/18577846.jpg\"}', 'upc' => '093624965374', 'provider' => 'bestbuy'],\n ['name' => \"Still Learning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-learning-cd/1023275.p?id=2119197&skuId=1023275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023275_sa.jpg\"}', 'upc' => '732351106529', 'provider' => 'bestbuy'],\n ['name' => \"Blessed & Cursed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blessed-cursed-cd/1023284.p?id=2114054&skuId=1023284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023284_sa.jpg\"}', 'upc' => '014998418624', 'provider' => 'bestbuy'],\n ['name' => \"Local Customs: Lone Star Lowlands - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/local-customs-lone-star-lowlands-cd-various/1023318.p?id=2115492&skuId=1023318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023318.jpg\"}', 'upc' => '825764103428', 'provider' => 'bestbuy'],\n ['name' => \"Korn III: Remember... [CD & DVD] [PA] [Digipak] - CD - DVD Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/korn-iii-remember-cd-dvd-pa-digipak-cd-dvd-special/1023327.p?id=2116176&skuId=1023327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023327.jpg\"}', 'upc' => '016861775759', 'provider' => 'bestbuy'],\n ['name' => \"Libraries [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/libraries-digipak-cd/1023336.p?id=2115482&skuId=1023336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023336_sa.jpg\"}', 'upc' => '673855036625', 'provider' => 'bestbuy'],\n ['name' => \"DJ Hero 2 - PlayStation 3\", 'description_short' => \"Take it to the turntable and become the greatest mix master to ever fill the dance floors\", 'description_long' => \"Take it to the turntable and become the greatest mix master to ever fill the dance floors\", 'price' => 29.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/dj-hero-2-playstation-3/1023363.p?id=1218209984539&skuId=1023363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023363_500x500_sa.jpg\"}', 'upc' => '047875962354', 'provider' => 'bestbuy'],\n ['name' => \"Forbidden Broadway 2 - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forbidden-broadway-2-cd-original-soundtrack/1023378.p?id=2126321&skuId=1023378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023378.jpg\"}', 'upc' => '021471259926', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023441.p?id=1218251720654&skuId=1023441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010234417', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023478.p?id=1218252576009&skuId=1023478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010234783', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023487.p?id=1218252599107&skuId=1023487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010234875', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023496.p?id=1218252649618&skuId=1023496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010234967', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023502.p?id=1218252586260&skuId=1023502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010235025', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023539.p?id=1218252578650&skuId=1023539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010235391', 'provider' => 'bestbuy'],\n ['name' => \"Peter Rowan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-rowan-cd/1023573.p?id=97426&skuId=1023573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023573_sa.jpg\"}', 'upc' => '018964007126', 'provider' => 'bestbuy'],\n ['name' => \"Rock Band 3 - Nintendo DS\", 'description_short' => \"The band has never been bigger\", 'description_long' => \"The band has never been bigger\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-band-3-nintendo-ds/1023709.p?id=1218209983309&skuId=1023709', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023709_sa.jpg\"}', 'upc' => '014633195224', 'provider' => 'bestbuy'],\n ['name' => \"Hillbilly Jazz - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hillbilly-jazz-cd-various/1023733.p?id=85395&skuId=1023733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1023\\/1023733_sa.jpg\"}', 'upc' => '018964010126', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023845.p?id=1218252644005&skuId=1023845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010238453', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023854.p?id=1218252643398&skuId=1023854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010238545', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023863.p?id=1218252613905&skuId=1023863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010238637', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023872.p?id=1218252581613&skuId=1023872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010238729', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023881.p?id=1218252577520&skuId=1023881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010238811', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023909.p?id=1218252640317&skuId=1023909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010239092', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023936.p?id=1218252643841&skuId=1023936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010239368', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023945.p?id=1218252607144&skuId=1023945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010239450', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1023954.p?id=1218252639855&skuId=1023954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1023954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010239542', 'provider' => 'bestbuy'],\n ['name' => \"Jesus and Johnny Cash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jesus-and-johnny-cash-cd/1024089.p?id=2120631&skuId=1024089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024089_sa.jpg\"}', 'upc' => '602257504425', 'provider' => 'bestbuy'],\n ['name' => \"Gringo Kings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gringo-kings-cd/1024098.p?id=2120632&skuId=1024098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024098_sa.jpg\"}', 'upc' => '602257504326', 'provider' => 'bestbuy'],\n ['name' => \"The Fields of November/Old and New - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fields-of-november-old-and-new-cd/1024313.p?id=74962&skuId=1024313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024313_sa.jpg\"}', 'upc' => '018964000424', 'provider' => 'bestbuy'],\n ['name' => \"Robin Hood (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robin-hood-blu-ray-disc/1024317.p?id=24169&skuId=1024317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024317.jpg\"}', 'upc' => '786936834710', 'provider' => 'bestbuy'],\n ['name' => \"Mark Twang - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mark-twang-cd/1024377.p?id=84931&skuId=1024377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024377_sa.jpg\"}', 'upc' => '018964002022', 'provider' => 'bestbuy'],\n ['name' => \"Nobody Knows What You Do - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nobody-knows-what-you-do-cd/1024395.p?id=84933&skuId=1024395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024395_sa.jpg\"}', 'upc' => '018964002824', 'provider' => 'bestbuy'],\n ['name' => \"Fly Through the Country/When the Storm Is Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fly-through-the-country-when-the-storm-is-over-cd/1024439.p?id=93141&skuId=1024439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1024\\/1024439_sa.jpg\"}', 'upc' => '018964003227', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 56.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1024556.p?id=1218252613280&skuId=1024556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010245567', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1024565.p?id=1218252604761&skuId=1024565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010245659', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1024574.p?id=1218252598775&skuId=1024574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010245741', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-protection-plan-geek-squad/1024583.p?id=1218252574552&skuId=1024583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010245833', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan ? Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan--geek-squad/1024592.p?id=1218252636599&skuId=1024592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010245925', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024608.p?id=1218252584695&skuId=1024608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246083', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024617.p?id=1218252617865&skuId=1024617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246175', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024626.p?id=1218252643950&skuId=1024626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246267', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024635.p?id=1218252593623&skuId=1024635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246359', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024644.p?id=1218252605812&skuId=1024644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246441', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024653.p?id=1218252583974&skuId=1024653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246533', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024662.p?id=1218252627045&skuId=1024662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246625', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024671.p?id=1218252648790&skuId=1024671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246717', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 569.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024699.p?id=1218252638707&skuId=1024699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010246991', 'provider' => 'bestbuy'],\n ['name' => \"5-Year Standard Protection Plan - Geek Squad\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-year-standard-protection-plan-geek-squad/1024708.p?id=1218252655527&skuId=1024708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1024708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010247080', 'provider' => 'bestbuy'],\n ['name' => \"All Dogs Go to Heaven 1 & 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-dogs-go-to-heaven-1-2-dvd/1025003.p?id=3288761&skuId=1025003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025003_sa.jpg\"}', 'upc' => '883904323099', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Tom Paxton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-tom-paxton-cd/1025054.p?id=94560&skuId=1025054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025054.jpg\"}', 'upc' => '018964051921', 'provider' => 'bestbuy'],\n ['name' => \"Live Pa, #12: Live @ the DC Star 4/17/10 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-pa-12-live--the-dc-star-4-17-10-pa-cd/1025219.p?id=2117825&skuId=1025219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025219_sa.jpg\"}', 'upc' => '742951301224', 'provider' => 'bestbuy'],\n ['name' => \"Voices on Lockdown [PA] [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voices-on-lockdown-pa-digipak-cd-various/1025325.p?id=2123255&skuId=1025325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025325.jpg\"}', 'upc' => '094922306654', 'provider' => 'bestbuy'],\n ['name' => \"The Workhorse 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-workhorse-3-cd/1025334.p?id=3232193&skuId=1025334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025334_sa.jpg\"}', 'upc' => '801927104020', 'provider' => 'bestbuy'],\n ['name' => \"Elvisgrass [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elvisgrass-digipak-cd-various/1025343.p?id=1630452&skuId=1025343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025343_sa.jpg\"}', 'upc' => '874757004327', 'provider' => 'bestbuy'],\n ['name' => \"Last (Bonus Dvd) (Remastered) (Remix) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-bonus-dvd-remastered-remix-cd/1025352.p?id=2860198&skuId=1025352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025352.jpg\"}', 'upc' => '801927103924', 'provider' => 'bestbuy'],\n ['name' => \"Cashgrass [Digipak] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cashgrass-digipak-various-cd/1025389.p?id=1630449&skuId=1025389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025389_sa.jpg\"}', 'upc' => '874757006123', 'provider' => 'bestbuy'],\n ['name' => \"Dwarves Must Die [Redux] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dwarves-must-die-redux-cd/1025398.p?id=2126702&skuId=1025398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025398_sa.jpg\"}', 'upc' => '760137502623', 'provider' => 'bestbuy'],\n ['name' => \"Sinister Whisperz: 1 Wax Trax Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sinister-whisperz-1-wax-trax-years-cd/1025412.p?id=2123786&skuId=1025412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025412_sa.jpg\"}', 'upc' => '4250137221403', 'provider' => 'bestbuy'],\n ['name' => \"Chapter Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chapter-two-cd/1025421.p?id=2121185&skuId=1025421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025421_sa.jpg\"}', 'upc' => '801927104129', 'provider' => 'bestbuy'],\n ['name' => \"Zeppelingrass [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zeppelingrass-digipak-cd-various/1025449.p?id=2121519&skuId=1025449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025449_sa.jpg\"}', 'upc' => '874757011523', 'provider' => 'bestbuy'],\n ['name' => \"What It Is - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-it-is-cd/1025458.p?id=2121520&skuId=1025458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025458_sa.jpg\"}', 'upc' => '884502041019', 'provider' => 'bestbuy'],\n ['name' => \"National Lampoon's Vacation (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/national-lampoons-vacation-blu-ray-disc/1025467.p?id=23499&skuId=1025467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025467.jpg\"}', 'upc' => '883929130917', 'provider' => 'bestbuy'],\n ['name' => \"Gossip Girl: The Complete Third Season [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gossip-girl-the-complete-third-season-5-discs-dvd/1025485.p?id=2123477&skuId=1025485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025485.jpg\"}', 'upc' => '883929101702', 'provider' => 'bestbuy'],\n ['name' => \"What's Up, Doc? (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whats-up-doc-blu-ray-disc/1025494.p?id=53967&skuId=1025494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025494_sa.jpg\"}', 'upc' => '883929115877', 'provider' => 'bestbuy'],\n ['name' => \"Titan Maximum: Season 1 (Mini Comic Book) (W/Book) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/titan-maximum-season-1-mini-comic-book-w-book-dvd/1025519.p?id=2105273&skuId=1025519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025519.jpg\"}', 'upc' => '883929103485', 'provider' => 'bestbuy'],\n ['name' => \"Courage The Cowardly Dog: Season One (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/courage-the-cowardly-dog-season-one-dvd/1025537.p?id=2104685&skuId=1025537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025537.jpg\"}', 'upc' => '883929108596', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Shippuden - Box Set 3 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-box-set-3-3-discs-dvd/1025555.p?id=2103257&skuId=1025555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025555_sa.jpg\"}', 'upc' => '782009241041', 'provider' => 'bestbuy'],\n ['name' => \"National Lampoon's European Vacation (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/national-lampoons-european-vacation-blu-ray-disc/1025564.p?id=23498&skuId=1025564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025564.jpg\"}', 'upc' => '883929116126', 'provider' => 'bestbuy'],\n ['name' => \"Elvis Blu-ray Collection: Jailhouse Rock/Viva Las Vegas/Elvis on Tour [3 Discs] (Blu-ray Disc) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elvis-blu-ray-collection-jailhouse-rock-viva-las-vegas-elvis-on-tour-3-discs-blu-ray-disc-collectors-edition/1025573.p?id=2106469&skuId=1025573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025573_sa.jpg\"}', 'upc' => '883929121045', 'provider' => 'bestbuy'],\n ['name' => \"Temple Grandin (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/temple-grandin-dvd/1025582.p?id=2103658&skuId=1025582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025582_sa.jpg\"}', 'upc' => '883929131716', 'provider' => 'bestbuy'],\n ['name' => \"Maid\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maid/1025607.p?id=2100451&skuId=1025607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1025607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1025\\/1025607_sa.jpg\"}', 'upc' => '896602002210', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-blues-cd/1026473.p?id=97922&skuId=1026473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1026473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1026\\/1026473_sa.jpg\"}', 'upc' => '018964056728', 'provider' => 'bestbuy'],\n ['name' => \"Niles - Remote Control Anywhere! Kit\", 'description_short' => \"From our expanded online assortment; includes 1 MS220 surface-mount IR sensor, 1 MSU140 IR main system unit and 3 MF1 MicroFlashers; universal noise suppression technology\", 'description_long' => \"From our expanded online assortment; includes 1 MS220 surface-mount IR sensor, 1 MSU140 IR main system unit and 3 MF1 MicroFlashers; universal noise suppression technology\", 'price' => 279.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/niles-remote-control-anywhere-kit/1027599.p?id=1218245857316&skuId=1027599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1027599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1027\\/1027599_sa.jpg\"}', 'upc' => '760514015852', 'provider' => 'bestbuy'],\n ['name' => \"Elite Screens - Tripod Series 85\\\" Tripod Projector Screen - Black\", 'description_short' => \"60&quot;H x 60&quot;W viewing area; 1:1 aspect ratio; built-in keystone eliminator; black masking borders; MaxWhite 1.1-gain screen material; metal casing; freestanding design\", 'description_long' => \"60&quot;H x 60&quot;W viewing area; 1:1 aspect ratio; built-in keystone eliminator; black masking borders; MaxWhite 1.1-gain screen material; metal casing; freestanding design\", 'price' => 114.99, 'sale_price' => 90.99, 'url' => 'http://www.bestbuy.com/site/elite-screens-tripod-series-85-tripod-projector-screen-black/1027714.p?id=1218210319041&skuId=1027714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1027714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1027\\/1027714_sa.jpg\"}', 'upc' => '876818003225', 'provider' => 'bestbuy'],\n ['name' => \"For the Good of Man-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-good-of-man-cd/1028827.p?id=2387944&skuId=1028827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1028827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1028\\/1028827_sa.jpg\"}', 'upc' => '011661754225', 'provider' => 'bestbuy'],\n ['name' => \"Talk About Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-about-love-cd/1028890.p?id=1577480&skuId=1028890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1028890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1028\\/1028890.jpg\"}', 'upc' => '011661759121', 'provider' => 'bestbuy'],\n ['name' => \"Hard Works from the Observer All Stars - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-works-from-the-observer-all-stars-various-cd/1028934.p?id=1577001&skuId=1028934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1028934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1028\\/1028934.jpg\"}', 'upc' => '011661759428', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Overdue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-overdue-cd/1028989.p?id=86362&skuId=1028989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1028989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1028\\/1028989_sa.jpg\"}', 'upc' => '011661759824', 'provider' => 'bestbuy'],\n ['name' => \"Grapes on a Vine (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grapes-on-a-vine-dvd/1029181.p?id=2126750&skuId=1029181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029181_sa.jpg\"}', 'upc' => '853476002197', 'provider' => 'bestbuy'],\n ['name' => \"Chief - Medium FIT Fixed TV Wall Mount for Most 26\\\" - 42\\\" Flat-Panel TVs - Black\", 'description_short' => \"CHIEF Medium FIT Fixed Wall Mount for Most 26&quot; - 42&quot; Flat-Panel TVs: Compatible with most 26&quot; - 42&quot; flat-panel TVs up to 125 lbs.; open wall plate; GlideLock with kickstand; low-profile depth\", 'description_long' => \"CHIEF Medium FIT Fixed Wall Mount for Most 26&quot; - 42&quot; Flat-Panel TVs: Compatible with most 26&quot; - 42&quot; flat-panel TVs up to 125 lbs.; open wall plate; GlideLock with kickstand; low-profile depth\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chief-medium-fit-fixed-tv-wall-mount-for-most-26-42-flat-panel-tvs-black/1029367.p?id=1219045600419&skuId=1029367', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029367_sa.jpg\"}', 'upc' => '841872141077', 'provider' => 'bestbuy'],\n ['name' => \"Culture in Culture - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/culture-in-culture-cd/1029764.p?id=79440&skuId=1029764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029764_sa.jpg\"}', 'upc' => '011661756724', 'provider' => 'bestbuy'],\n ['name' => \"Chloe (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chloe-blu-ray-disc/1029776.p?id=2116089&skuId=1029776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029776_sa.jpg\"}', 'upc' => '043396354005', 'provider' => 'bestbuy'],\n ['name' => \"The Runaways (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-runaways-blu-ray-disc/1029785.p?id=2118259&skuId=1029785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029785_sa.jpg\"}', 'upc' => '043396355194', 'provider' => 'bestbuy'],\n ['name' => \"My Boys: The Complete Second and Third Seasons [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-boys-the-complete-second-and-third-seasons-2-discs-dvd/1029794.p?id=2112643&skuId=1029794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029794_sa.jpg\"}', 'upc' => '043396299078', 'provider' => 'bestbuy'],\n ['name' => \"A Prophet (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-prophet-blu-ray-disc/1029803.p?id=2118261&skuId=1029803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029803_sa.jpg\"}', 'upc' => '043396355989', 'provider' => 'bestbuy'],\n ['name' => \"The Bounty Hunter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bounty-hunter-dvd/1029812.p?id=2112641&skuId=1029812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029812_sa.jpg\"}', 'upc' => '043396350403', 'provider' => 'bestbuy'],\n ['name' => \"A Single Man (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-single-man-blu-ray-disc/1029821.p?id=2110331&skuId=1029821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029821_sa.jpg\"}', 'upc' => '043396353862', 'provider' => 'bestbuy'],\n ['name' => \"Chloe (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chloe-dvd/1029849.p?id=2116089&skuId=1029849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029849_sa.jpg\"}', 'upc' => '043396350311', 'provider' => 'bestbuy'],\n ['name' => \"Jesse Stone: No Remorse (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jesse-stone-no-remorse-dvd/1029858.p?id=2113996&skuId=1029858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029858_sa.jpg\"}', 'upc' => '043396354722', 'provider' => 'bestbuy'],\n ['name' => \"A Single Man (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-single-man-dvd/1029867.p?id=2110331&skuId=1029867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029867_sa.jpg\"}', 'upc' => '043396353831', 'provider' => 'bestbuy'],\n ['name' => \"To Save a Life (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-save-a-life-dvd/1029876.p?id=2116091&skuId=1029876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029876_sa.jpg\"}', 'upc' => '043396354456', 'provider' => 'bestbuy'],\n ['name' => \"Death at a Funeral (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-at-a-funeral-dvd/1029885.p?id=2123462&skuId=1029885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029885_sa.jpg\"}', 'upc' => '043396350281', 'provider' => 'bestbuy'],\n ['name' => \"A Prophet (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-prophet-dvd/1029903.p?id=2118261&skuId=1029903&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029903_sa.jpg\"}', 'upc' => '043396343566', 'provider' => 'bestbuy'],\n ['name' => \"The Bounty Hunter (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bounty-hunter-blu-ray-disc/1029912.p?id=2112641&skuId=1029912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029912_sa.jpg\"}', 'upc' => '043396350397', 'provider' => 'bestbuy'],\n ['name' => \"To Save a Life (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-save-a-life-blu-ray-disc/1029921.p?id=2116091&skuId=1029921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029921_sa.jpg\"}', 'upc' => '043396357020', 'provider' => 'bestbuy'],\n ['name' => \"Charlie's Angels (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charlies-angels-blu-ray-disc/1029949.p?id=36159&skuId=1029949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1029949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1029\\/1029949_sa.jpg\"}', 'upc' => '043396229945', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - PRO 70 Cardioid Condenser Lavalier/Instrument Microphone\", 'description_short' => \"From our expanded online assortment; low frequency roll-off; corrosion-resistant contacts; cardioid polar pattern\", 'description_long' => \"From our expanded online assortment; low frequency roll-off; corrosion-resistant contacts; cardioid polar pattern\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-pro-70-cardioid-condenser-lavalier-instrument-microphone/1031353.p?id=1218211288482&skuId=1031353', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031353_sa.jpg\"}', 'upc' => '042005134342', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Microphone\", 'description_short' => \"20 Hz to 20 kHz - Wired - Condenser - Handheld - XLR\", 'description_long' => \"20 Hz to 20 kHz - Wired - Condenser - Handheld - XLR\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-microphone/1031371.p?id=1218211289606&skuId=1031371', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031371_sa.jpg\"}', 'upc' => '042005127955', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - PRO 8HEx Hypercardioid Dynamic Microphone\", 'description_short' => \"From our expanded online assortment; Hi-ENERGY neodymium element; headband with cushioned pads; pivot-mounted boom\", 'description_long' => \"From our expanded online assortment; Hi-ENERGY neodymium element; headband with cushioned pads; pivot-mounted boom\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-pro-8hex-hypercardioid-dynamic-microphone/1031404.p?id=1218211291231&skuId=1031404', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031404_sa.jpg\"}', 'upc' => '042005305308', 'provider' => 'bestbuy'],\n ['name' => \"Audio-Technica - Microphone\", 'description_short' => \"30 Hz to 20 kHz - Wired - Condenser - Handheld - XLR\", 'description_long' => \"30 Hz to 20 kHz - Wired - Condenser - Handheld - XLR\", 'price' => 595.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-technica-microphone/1031726.p?id=1218211288553&skuId=1031726', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031726_sa.jpg\"}', 'upc' => '042005128525', 'provider' => 'bestbuy'],\n ['name' => \"MP3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mp3-cd/1031817.p?id=2126400&skuId=1031817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031817_sa.jpg\"}', 'upc' => '894096001962', 'provider' => 'bestbuy'],\n ['name' => \"Praise & Blame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/praise-blame-cd/1031835.p?id=2137450&skuId=1031835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031835_sa.jpg\"}', 'upc' => '602527449876', 'provider' => 'bestbuy'],\n ['name' => \"Silver and Ash [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silver-and-ash-digipak-cd/1031844.p?id=2138383&skuId=1031844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031844_sa.jpg\"}', 'upc' => '011661327825', 'provider' => 'bestbuy'],\n ['name' => \"Reckless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reckless-cd/1031899.p?id=2134812&skuId=1031899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031899_sa.jpg\"}', 'upc' => '011661062429', 'provider' => 'bestbuy'],\n ['name' => \"Live in Boston, 1982 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-boston-1982-cd/1031908.p?id=2117077&skuId=1031908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031908_sa.jpg\"}', 'upc' => '011661328525', 'provider' => 'bestbuy'],\n ['name' => \"Drama Queen [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drama-queen-cd-dvd-cd-dvd/1031917.p?id=2119277&skuId=1031917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031917_sa.jpg\"}', 'upc' => '602527440316', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Rev. C.L. Franklin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-rev-c-l-franklin-cd/1031935.p?id=2127461&skuId=1031935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031935_sa.jpg\"}', 'upc' => '030206184228', 'provider' => 'bestbuy'],\n ['name' => \"Ringo Starr and His All Starr Band: Live at the Greek Theatre 2008 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ringo-starr-and-his-all-starr-band-live-at-the-greek-theatre-2008-dvd/1031953.p?id=2124508&skuId=1031953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031953_sa.jpg\"}', 'upc' => '602527443089', 'provider' => 'bestbuy'],\n ['name' => \"We Cats Can Hep YouCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-cats-can-hep-youcd/1031962.p?id=2244507&skuId=1031962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031962.jpg\"}', 'upc' => '030206184327', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Greek Theatre 2008 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-greek-theatre-2008-cd/1031971.p?id=2124509&skuId=1031971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031971_sa.jpg\"}', 'upc' => '602527442099', 'provider' => 'bestbuy'],\n ['name' => \"Vicente Fernandez: Un Mexicano en La Mexico (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vicente-fernandez-un-mexicano-en-la-mexico-dvd/1031999.p?id=2120633&skuId=1031999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1031999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1031\\/1031999_sa.jpg\"}', 'upc' => '886977306792', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S NIKKOR 20mm f/1.8G ED Ultra Wide Angle Lens for Most Nikon F-Mount Cameras - Black\", 'description_short' => \"Compatible with most Nikon F-Mount cameras; 13 lens elements in 11 groups; Nano Crystal coating; 2 ED glass elements; 2 aspherical elements\", 'description_long' => \"Compatible with most Nikon F-Mount cameras; 13 lens elements in 11 groups; Nano Crystal coating; 2 ED glass elements; 2 aspherical elements\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-nikkor-20mm-f-1-8g-ed-ultra-wide-angle-lens-for-most-nikon-f-mount-cameras-black/1032001.p?id=1219460767310&skuId=1032001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032001_sa.jpg\"}', 'upc' => '018208200511', 'provider' => 'bestbuy'],\n ['name' => \"Con Estilo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/con-estilo-cd/1032015.p?id=2120635&skuId=1032015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032015_sa.jpg\"}', 'upc' => '886977267826', 'provider' => 'bestbuy'],\n ['name' => \"WTF + 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wtf-4-cd/1032033.p?id=2119232&skuId=1032033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032033_sa.jpg\"}', 'upc' => '886977477522', 'provider' => 'bestbuy'],\n ['name' => \"PNY - GT 730 1GB DDR3 PCI Express 2.0 Graphics Card - Black\", 'description_short' => \"1GB DDR3 memory; PCI Express 2.0 interface; HDMI output; 400MHz clock speed; PhysX system software\", 'description_long' => \"1GB DDR3 memory; PCI Express 2.0 interface; HDMI output; 400MHz clock speed; PhysX system software\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pny-gt-730-1gb-ddr3-pci-express-2-0-graphics-card-black/1032038.p?id=1219460773496&skuId=1032038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032038_sa.jpg\"}', 'upc' => '751492578163', 'provider' => 'bestbuy'],\n ['name' => \"Gotta Have Gospel! Ultimate Choirs (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotta-have-gospel-ultimate-choirs-dvd/1032042.p?id=2120636&skuId=1032042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032042_sa.jpg\"}', 'upc' => '886977118890', 'provider' => 'bestbuy'],\n ['name' => \"Gotta Have Gospel! Ultimate Choirs - CD - Various Enhanced\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotta-have-gospel-ultimate-choirs-cd-various-enhanced/1032097.p?id=2120638&skuId=1032097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032097_sa.jpg\"}', 'upc' => '886976750626', 'provider' => 'bestbuy'],\n ['name' => \"Couldn't Stand the Weather [Legacy Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/couldnt-stand-the-weather-legacy-edition-cd/1032103.p?id=2114429&skuId=1032103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032103_sa.jpg\"}', 'upc' => '886975594320', 'provider' => 'bestbuy'],\n ['name' => \"Un Mexicano en la México - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/un-mexicano-en-la-mexico-cd/1032149.p?id=2120641&skuId=1032149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032149_sa.jpg\"}', 'upc' => '886977305627', 'provider' => 'bestbuy'],\n ['name' => \"House of Pleasure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-pleasure-cd/1032158.p?id=2123256&skuId=1032158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032158_sa.jpg\"}', 'upc' => '654827020224', 'provider' => 'bestbuy'],\n ['name' => \"Imogen Heap: Everything In-Between - The Story of Ellipse (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imogen-heap-everything-in-between-the-story-of-ellipse-dvd/1032167.p?id=2120642&skuId=1032167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032167_sa.jpg\"}', 'upc' => '886977239298', 'provider' => 'bestbuy'],\n ['name' => \"Dell - 90W AC Power Adapter - Black\", 'description_short' => \"DELL 90W AC Power Adapter: Designed to power your Dell system; 90W power supply\", 'description_long' => \"DELL 90W AC Power Adapter: Designed to power your Dell system; 90W power supply\", 'price' => 65.99, 'sale_price' => 38.99, 'url' => 'http://www.bestbuy.com/site/dell-90w-ac-power-adapter-black/1032198.p?id=1219460756243&skuId=1032198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032198_sa.jpg\"}', 'upc' => '884116022879', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-sound-cd/1032224.p?id=71847&skuId=1032224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032224_sa.jpg\"}', 'upc' => '025218173728', 'provider' => 'bestbuy'],\n ['name' => \"Kidz Bop 18 [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kidz-bop-18-digdownload-cd/1032228.p?id=2117256&skuId=1032228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032228_sa.jpg\"}', 'upc' => '793018923422', 'provider' => 'bestbuy'],\n ['name' => \"Man Bites Harmonica - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-bites-harmonica-cd/1032233.p?id=71386&skuId=1032233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032233_sa.jpg\"}', 'upc' => '025218173827', 'provider' => 'bestbuy'],\n ['name' => \"Don't Say No [30th Anniversary Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-say-no-30th-anniversary-edition-cd/1032237.p?id=2120645&skuId=1032237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032237_sa.jpg\"}', 'upc' => '826663121056', 'provider' => 'bestbuy'],\n ['name' => \"Los Mejores Boleros - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-mejores-boleros-cd-various/1032246.p?id=2120646&skuId=1032246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032246.jpg\"}', 'upc' => '883736044827', 'provider' => 'bestbuy'],\n ['name' => \"Moondog [Prestige] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moondog-prestige-cd/1032251.p?id=92187&skuId=1032251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032251_sa.jpg\"}', 'upc' => '025218174121', 'provider' => 'bestbuy'],\n ['name' => \"Una Navidad A Mi Estilo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/una-navidad-a-mi-estilo-cd/1032255.p?id=2244531&skuId=1032255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032255_sa.jpg\"}', 'upc' => '753182475448', 'provider' => 'bestbuy'],\n ['name' => \"Iron Man 2 (Score) - O.S.T. - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iron-man-2-score-o-s-t-cd-original-soundtrack/1032264.p?id=2120647&skuId=1032264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032264_sa.jpg\"}', 'upc' => '886977465420', 'provider' => 'bestbuy'],\n ['name' => \"The New Miles Davis Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-miles-davis-quintet-cd/1032368.p?id=65574&skuId=1032368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032368.jpg\"}', 'upc' => '025218110624', 'provider' => 'bestbuy'],\n ['name' => \"Need for Speed: Hot Pursuit - PlayStation 3\", 'description_short' => \"Switch into gear and feel the need &#8212; the Need for Speed\", 'description_long' => \"Switch into gear and feel the need &#8212; the Need for Speed\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/need-for-speed-hot-pursuit-playstation-3/1032403.p?id=1218211702103&skuId=1032403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032403_sa.jpg\"}', 'upc' => '014633731644', 'provider' => 'bestbuy'],\n ['name' => \"Sonny Stitt/Bud Powell/J.J. Johnson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-stitt-bud-powell-j-j-johnson-cd/1032411.p?id=71164&skuId=1032411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032411_sa.jpg\"}', 'upc' => '025218110921', 'provider' => 'bestbuy'],\n ['name' => \"Sonny Rollins with the Modern Jazz Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-rollins-with-the-modern-jazz-quartet-cd/1032457.p?id=70465&skuId=1032457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032457_sa.jpg\"}', 'upc' => '025218111126', 'provider' => 'bestbuy'],\n ['name' => \"Miles Davis and Milt Jackson Quintet/Sextet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miles-davis-and-milt-jackson-quintet-sextet-cd/1032466.p?id=65590&skuId=1032466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032466.jpg\"}', 'upc' => '025218111225', 'provider' => 'bestbuy'],\n ['name' => \"After Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-hours-cd/1032475.p?id=68083&skuId=1032475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032475.jpg\"}', 'upc' => '025218178228', 'provider' => 'bestbuy'],\n ['name' => \"Andre Previn Plays Jerome Kern - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andre-previn-plays-jerome-kern-cd/1032527.p?id=70146&skuId=1032527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032527_sa.jpg\"}', 'upc' => '025218178723', 'provider' => 'bestbuy'],\n ['name' => \"Drums Around the World: Philly Joe Jones Big... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drums-around-the-world-philly-joe-jones-big-cd/1032563.p?id=68063&skuId=1032563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032563_sa.jpg\"}', 'upc' => '025218179225', 'provider' => 'bestbuy'],\n ['name' => \"Testifying - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/testifying-cd/1032572.p?id=72242&skuId=1032572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032572_sa.jpg\"}', 'upc' => '025218179324', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032573.p?id=1218211703782&skuId=1032573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010325733', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032582.p?id=1218211703665&skuId=1032582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010325825', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032591.p?id=1218211703189&skuId=1032591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010325917', 'provider' => 'bestbuy'],\n ['name' => \"The Modern Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-modern-touch-cd/1032616.p?id=66736&skuId=1032616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032616_sa.jpg\"}', 'upc' => '025218179720', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032707.p?id=1218211701627&skuId=1032707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010327072', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032716.p?id=1218211702590&skuId=1032716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010327164', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1032725.p?id=1218211702653&skuId=1032725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '400010327256', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/1032732.p?id=63639&skuId=1032732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032732_sa.jpg\"}', 'upc' => '025218600422', 'provider' => 'bestbuy'],\n ['name' => \"Standard Bearers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standard-bearers-cd/1032830.p?id=64888&skuId=1032830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032830_sa.jpg\"}', 'upc' => '025218601023', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032843.p?id=2074818&skuId=1032843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032843_sa.jpg\"}', 'upc' => '5099930944220', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032861.p?id=2074817&skuId=1032861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032861_sa.jpg\"}', 'upc' => '5099930945128', 'provider' => 'bestbuy'],\n ['name' => \"When There Are Grey Skies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-there-are-grey-skies-cd/1032885.p?id=66521&skuId=1032885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032885_sa.jpg\"}', 'upc' => '025218670425', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032889.p?id=2074809&skuId=1032889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032889_sa.jpg\"}', 'upc' => '5099930944022', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032898.p?id=2074816&skuId=1032898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032898_sa.jpg\"}', 'upc' => '5099930943520', 'provider' => 'bestbuy'],\n ['name' => \"Sonny's Dream (Birth of the New Cool) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonnys-dream-birth-of-the-new-cool-cd/1032910.p?id=65371&skuId=1032910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032910_sa.jpg\"}', 'upc' => '025218670722', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032943.p?id=2074819&skuId=1032943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032943_sa.jpg\"}', 'upc' => '5099930944428', 'provider' => 'bestbuy'],\n ['name' => \"We'll Be Together Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/well-be-together-again-cd/1032956.p?id=63700&skuId=1032956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032956_sa.jpg\"}', 'upc' => '025218670821', 'provider' => 'bestbuy'],\n ['name' => \"Two for the Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-for-the-road-cd/1032983.p?id=69826&skuId=1032983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032983.jpg\"}', 'upc' => '025218672627', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032989.p?id=2074815&skuId=1032989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032989_sa.jpg\"}', 'upc' => '5099930943421', 'provider' => 'bestbuy'],\n ['name' => \"Oscar Peterson & Roy Eldridge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oscar-peterson-roy-eldridge-cd/1032992.p?id=287997&skuId=1032992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032992_sa.jpg\"}', 'upc' => '025218672726', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1032998.p?id=2074808&skuId=1032998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1032998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1032\\/1032998_sa.jpg\"}', 'upc' => '5099930943629', 'provider' => 'bestbuy'],\n ['name' => \"The Louis Bellson Explosion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-louis-bellson-explosion-cd/1033009.p?id=64139&skuId=1033009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033009_sa.jpg\"}', 'upc' => '025218672825', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-cd/1033014.p?id=2074821&skuId=1033014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033014_sa.jpg\"}', 'upc' => '5099930944923', 'provider' => 'bestbuy'],\n ['name' => \"The Intimate Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-intimate-ellington-cd/1033027.p?id=65993&skuId=1033027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033027_sa.jpg\"}', 'upc' => '025218673020', 'provider' => 'bestbuy'],\n ['name' => \"Wahl - 20-Piece Pro Hair Cutting Kit - Blue/White/Black\", 'description_short' => \"One-touch operation; self-sharpening, high-carbon steel blades; 12 color-coded guide combs; ergonomic handle with a soft-touch grip\", 'description_long' => \"One-touch operation; self-sharpening, high-carbon steel blades; 12 color-coded guide combs; ergonomic handle with a soft-touch grip\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wahl-20-piece-pro-hair-cutting-kit-blue-white-black/1033032.p?id=1218212156490&skuId=1033032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033032_rc.jpg\"}', 'upc' => '043917793092', 'provider' => 'bestbuy'],\n ['name' => \"Gil's Guests - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gils-guests-cd/1033036.p?id=69040&skuId=1033036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033036_sa.jpg\"}', 'upc' => '025218175326', 'provider' => 'bestbuy'],\n ['name' => \"Evidence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evidence-cd/1033054.p?id=68376&skuId=1033054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033054_sa.jpg\"}', 'upc' => '025218175524', 'provider' => 'bestbuy'],\n ['name' => \"10 Great Songs [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/10-great-songs-pa-cd/1033069.p?id=2074820&skuId=1033069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033069_sa.jpg\"}', 'upc' => '5099930944626', 'provider' => 'bestbuy'],\n ['name' => \"The Blues Piano Artistry of Meade Lux Lewis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blues-piano-artistry-of-meade-lux-lewis-cd/1033090.p?id=68543&skuId=1033090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033090_sa.jpg\"}', 'upc' => '025218175920', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - 6,000 BTU Window Air Conditioner - White\", 'description_short' => \"216 sq. ft. cooling capacity; electronic controls and remote; 3 cool settings; 3 fan speeds; antibacterial filter\", 'description_long' => \"216 sq. ft. cooling capacity; electronic controls and remote; 3 cool settings; 3 fan speeds; antibacterial filter\", 'price' => 229.99, 'sale_price' => 206.99, 'url' => 'http://www.bestbuy.com/site/frigidaire-6000-btu-window-air-conditioner-white/1033096.p?id=1218212155267&skuId=1033096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033096_sa.jpg\"}', 'upc' => '012505273575', 'provider' => 'bestbuy'],\n ['name' => \"West Coast Jazz in Hi Fi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-coast-jazz-in-hi-fi-cd/1033107.p?id=68128&skuId=1033107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033107_sa.jpg\"}', 'upc' => '025218176026', 'provider' => 'bestbuy'],\n ['name' => \"Dizzy Atmosphere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dizzy-atmosphere-cd/1033125.p?id=69398&skuId=1033125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033125_sa.jpg\"}', 'upc' => '025218176224', 'provider' => 'bestbuy'],\n ['name' => \"Free for All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-for-all-cd/1033134.p?id=70489&skuId=1033134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033134_sa.jpg\"}', 'upc' => '025218176323', 'provider' => 'bestbuy'],\n ['name' => \"Golden Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-days-cd/1033223.p?id=68235&skuId=1033223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033223_sa.jpg\"}', 'upc' => '025218177221', 'provider' => 'bestbuy'],\n ['name' => \"Something Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-blue-cd/1033287.p?id=85711&skuId=1033287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033287_sa.jpg\"}', 'upc' => '025218177825', 'provider' => 'bestbuy'],\n ['name' => \"More Moondog/The Story of Moondog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-moondog-the-story-of-moondog-cd/1033312.p?id=92188&skuId=1033312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033312_sa.jpg\"}', 'upc' => '025218178129', 'provider' => 'bestbuy'],\n ['name' => \"Soul Fusion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-fusion-cd/1033321.p?id=67773&skuId=1033321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033321.jpg\"}', 'upc' => '025218673129', 'provider' => 'bestbuy'],\n ['name' => \"A Note In Your Pocket - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-note-in-your-pocket-cd/1033402.p?id=2125936&skuId=1033402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033402.jpg\"}', 'upc' => '093624965138', 'provider' => 'bestbuy'],\n ['name' => \"Wheelin' & Dealin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheelin-dealin-cd/1033410.p?id=65187&skuId=1033410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033410.jpg\"}', 'upc' => '025218667227', 'provider' => 'bestbuy'],\n ['name' => \"The Way Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-way-out-cd/1033411.p?id=2123259&skuId=1033411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033411_sa.jpg\"}', 'upc' => '656605318325', 'provider' => 'bestbuy'],\n ['name' => \"Seriously Funny [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seriously-funny-pa-digipak-cd/1033448.p?id=2123471&skuId=1033448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033448_sa.jpg\"}', 'upc' => '824363010229', 'provider' => 'bestbuy'],\n ['name' => \"The Soul Explosion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-soul-explosion-cd/1033456.p?id=67792&skuId=1033456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033456_sa.jpg\"}', 'upc' => '025218667425', 'provider' => 'bestbuy'],\n ['name' => \"The Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-concert-cd/1033457.p?id=2125030&skuId=1033457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033457_sa.jpg\"}', 'upc' => '731383649226', 'provider' => 'bestbuy'],\n ['name' => \"Farmer's Market Barbecue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/farmers-market-barbecue-cd/1033465.p?id=64017&skuId=1033465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033465.jpg\"}', 'upc' => '025218673228', 'provider' => 'bestbuy'],\n ['name' => \"To a Finland Station - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-a-finland-station-cd/1033474.p?id=66702&skuId=1033474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033474.jpg\"}', 'upc' => '025218673327', 'provider' => 'bestbuy'],\n ['name' => \"A Best of Us... For the Rest of Us [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-best-of-us-for-the-rest-of-us-pa-cd/1033475.p?id=2128248&skuId=1033475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033475_sa.jpg\"}', 'upc' => '677516128827', 'provider' => 'bestbuy'],\n ['name' => \"Concepts in Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concepts-in-blue-cd/1033492.p?id=68010&skuId=1033492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033492_sa.jpg\"}', 'upc' => '025218673525', 'provider' => 'bestbuy'],\n ['name' => \"Rocksteady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rocksteady-cd/1033493.p?id=2135540&skuId=1033493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033493_sa.jpg\"}', 'upc' => '730061001325', 'provider' => 'bestbuy'],\n ['name' => \"Believe in the Music [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/believe-in-the-music-digipak-cd/1033545.p?id=2123268&skuId=1033545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033545.jpg\"}', 'upc' => '091012108921', 'provider' => 'bestbuy'],\n ['name' => \"Landscape - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/landscape-cd/1033553.p?id=69893&skuId=1033553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033553_sa.jpg\"}', 'upc' => '025218667623', 'provider' => 'bestbuy'],\n ['name' => \"Winter Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-moon-cd/1033562.p?id=69914&skuId=1033562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033562_sa.jpg\"}', 'upc' => '025218667722', 'provider' => 'bestbuy'],\n ['name' => \"Talk To StrangersCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-to-strangerscd/1033563.p?id=2127453&skuId=1033563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033563_sa.jpg\"}', 'upc' => '700161700824', 'provider' => 'bestbuy'],\n ['name' => \"One September Afternoon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-september-afternoon-cd/1033571.p?id=2390065&skuId=1033571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033571.jpg\"}', 'upc' => '025218667821', 'provider' => 'bestbuy'],\n ['name' => \"First Ten Years, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-ten-years-vol-3-cd/1033572.p?id=2123257&skuId=1033572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033572.jpg\"}', 'upc' => '856136002438', 'provider' => 'bestbuy'],\n ['name' => \"Goin' Home [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goin-home-bonus-tracks-cd/1033580.p?id=69918&skuId=1033580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033580_sa.jpg\"}', 'upc' => '025218667920', 'provider' => 'bestbuy'],\n ['name' => \"Black & White - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-white-cd/1033581.p?id=2121190&skuId=1033581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033581_sa.jpg\"}', 'upc' => '093624969068', 'provider' => 'bestbuy'],\n ['name' => \"Arthur's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arthurs-blues-cd/1033599.p?id=69887&skuId=1033599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033599_sa.jpg\"}', 'upc' => '025218668026', 'provider' => 'bestbuy'],\n ['name' => \"Bye Bye Blackbird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bye-bye-blackbird-cd/1033606.p?id=65134&skuId=1033606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033606_sa.jpg\"}', 'upc' => '025218668125', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso No. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-no-3-cd/1033633.p?id=69821&skuId=1033633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033633_sa.jpg\"}', 'upc' => '025218668422', 'provider' => 'bestbuy'],\n ['name' => \"Tudo Bem! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tudo-bem-cd/1033642.p?id=69830&skuId=1033642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033642_sa.jpg\"}', 'upc' => '025218668521', 'provider' => 'bestbuy'],\n ['name' => \"Basie Jam #3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/basie-jam-3-cd/1033660.p?id=64005&skuId=1033660&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033660', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033660_sa.jpg\"}', 'upc' => '025218668729', 'provider' => 'bestbuy'],\n ['name' => \"Two of the Few - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-of-the-few-cd/1033688.p?id=69996&skuId=1033688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033688_sa.jpg\"}', 'upc' => '025218668927', 'provider' => 'bestbuy'],\n ['name' => \"King Size! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-size-cd/1033704.p?id=70144&skuId=1033704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033704_sa.jpg\"}', 'upc' => '025218669122', 'provider' => 'bestbuy'],\n ['name' => \"The Heart [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-heart-digipak-cd/1033706.p?id=2126041&skuId=1033706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033706_sa.jpg\"}', 'upc' => '898434002284', 'provider' => 'bestbuy'],\n ['name' => \"Poll Winners Three! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poll-winners-three-cd/1033713.p?id=68213&skuId=1033713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033713_sa.jpg\"}', 'upc' => '025218669221', 'provider' => 'bestbuy'],\n ['name' => \"Inception - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inception-cd-original-soundtrack/1033715.p?id=2121210&skuId=1033715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033715_sa.jpg\"}', 'upc' => '093624965039', 'provider' => 'bestbuy'],\n ['name' => \"Maggie's Back in Town!! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maggies-back-in-town-cd/1033722.p?id=68921&skuId=1033722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033722_sa.jpg\"}', 'upc' => '025218669320', 'provider' => 'bestbuy'],\n ['name' => \"Coming Alive [CD & DVD] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coming-alive-cd-dvd-pa-digipak-cd/1033724.p?id=2115438&skuId=1033724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033724_sa.jpg\"}', 'upc' => '828136013721', 'provider' => 'bestbuy'],\n ['name' => \"Thursday Night at the Village Vanguard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thursday-night-at-the-village-vanguard-cd/1033731.p?id=69912&skuId=1033731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033731.jpg\"}', 'upc' => '025218669429', 'provider' => 'bestbuy'],\n ['name' => \"Friday Night at the Village Vanguard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friday-night-at-the-village-vanguard-cd/1033740.p?id=69890&skuId=1033740&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033740', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033740_sa.jpg\"}', 'upc' => '025218669528', 'provider' => 'bestbuy'],\n ['name' => \"Wide Open Road: The Best of the Triffids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wide-open-road-the-best-of-the-triffids-cd/1033742.p?id=2123271&skuId=1033742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033742_sa.jpg\"}', 'upc' => '801390026829', 'provider' => 'bestbuy'],\n ['name' => \"Full House Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-house-head-cd/1033751.p?id=2123260&skuId=1033751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033751.jpg\"}', 'upc' => '899922001246', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night at the Village Vanguard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-at-the-village-vanguard-cd/1033759.p?id=69901&skuId=1033759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033759.jpg\"}', 'upc' => '025218669627', 'provider' => 'bestbuy'],\n ['name' => \"More for Les: At the Village Vanguard, Vol. 4... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-for-les-at-the-village-vanguard-vol-4-cd/1033768.p?id=69896&skuId=1033768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033768_sa.jpg\"}', 'upc' => '025218669726', 'provider' => 'bestbuy'],\n ['name' => \"Quintessence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quintessence-cd/1033777.p?id=66110&skuId=1033777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033777_sa.jpg\"}', 'upc' => '025218669825', 'provider' => 'bestbuy'],\n ['name' => \"Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/record-cd/1033779.p?id=2117311&skuId=1033779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033779_sa.jpg\"}', 'upc' => '825646802517', 'provider' => 'bestbuy'],\n ['name' => \"Into Something - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-something-cd/1033795.p?id=68432&skuId=1033795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033795_sa.jpg\"}', 'upc' => '025218670029', 'provider' => 'bestbuy'],\n ['name' => \"Jug - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jug-cd/1033802.p?id=63689&skuId=1033802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033802_sa.jpg\"}', 'upc' => '025218670128', 'provider' => 'bestbuy'],\n ['name' => \"Lonely and Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lonely-and-blue-cd/1033811.p?id=68048&skuId=1033811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033811_sa.jpg\"}', 'upc' => '025218670227', 'provider' => 'bestbuy'],\n ['name' => \"Stitt Meets Brother Jack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stitt-meets-brother-jack-cd/1033820.p?id=71163&skuId=1033820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033820_sa.jpg\"}', 'upc' => '025218670326', 'provider' => 'bestbuy'],\n ['name' => \"Jack Teagarden's Big Eight/Pee Wee Russell's... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jack-teagardens-big-eight-pee-wee-russells-cd/1033875.p?id=71351&skuId=1033875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033875_sa.jpg\"}', 'upc' => '025218170826', 'provider' => 'bestbuy'],\n ['name' => \"Conception - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conception-cd/1033973.p?id=65592&skuId=1033973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1033973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1033\\/1033973_sa.jpg\"}', 'upc' => '025218172622', 'provider' => 'bestbuy'],\n ['name' => \"WWE 2K15 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Step into the ring and fight your way to the gold\", 'description_long' => \"Step into the ring and fight your way to the gold\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-2k15-pre-owned-playstation-3/1034009.p?id=1219461501659&skuId=1034009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034009_sa.jpg\"}', 'upc' => '799007840305', 'provider' => 'bestbuy'],\n ['name' => \"Sunset Overdrive - PRE-OWNED - Xbox One\", 'description_short' => \"Take down mutants and prove your mettle in a post-apocalyptic setting\", 'description_long' => \"Take down mutants and prove your mettle in a post-apocalyptic setting\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunset-overdrive-pre-owned-xbox-one/1034018.p?id=1219461498306&skuId=1034018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034018_sa.jpg\"}', 'upc' => '799007840312', 'provider' => 'bestbuy'],\n ['name' => \"NBA Live 15 - PRE-OWNED - PlayStation 4\", 'description_short' => \"Get back on the court with NBA Live 15\", 'description_long' => \"Get back on the court with NBA Live 15\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nba-live-15-pre-owned-playstation-4/1034027.p?id=1219461500094&skuId=1034027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034027_sa.jpg\"}', 'upc' => '799007840329', 'provider' => 'bestbuy'],\n ['name' => \"NBA Live 15 - PRE-OWNED - Xbox One\", 'description_short' => \"Get back on the court with NBA Live 15\", 'description_long' => \"Get back on the court with NBA Live 15\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nba-live-15-pre-owned-xbox-one/1034036.p?id=1219461500677&skuId=1034036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034036_sa.jpg\"}', 'upc' => '799007840336', 'provider' => 'bestbuy'],\n ['name' => \"Assassin's Creed: The Americas Collection - PRE-OWNED - Xbox 360\", 'description_short' => \"Unsheath your blade for thrilling combat in The Americas\", 'description_long' => \"Unsheath your blade for thrilling combat in The Americas\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/assassins-creed-the-americas-collection-pre-owned-xbox-360/1034045.p?id=1219461503133&skuId=1034045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034045_sa.jpg\"}', 'upc' => '799007840343', 'provider' => 'bestbuy'],\n ['name' => \"Jazz in the Classic New Orleans Tradition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-in-the-classic-new-orleans-tradition-cd/1034071.p?id=68521&skuId=1034071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034071.jpg\"}', 'upc' => '025218173629', 'provider' => 'bestbuy'],\n ['name' => \"Assassin's Creed: The Americas Collection - PRE-OWNED - PlayStation 3\", 'description_short' => \"Unsheath your blade for thrilling combat in The Americas\", 'description_long' => \"Unsheath your blade for thrilling combat in The Americas\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/assassins-creed-the-americas-collection-pre-owned-playstation-3/1034072.p?id=1219461496042&skuId=1034072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034072_sa.jpg\"}', 'upc' => '799007840350', 'provider' => 'bestbuy'],\n ['name' => \"Speak, Brother, Speak! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speak-brother-speak-cd/1034080.p?id=70378&skuId=1034080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034080_sa.jpg\"}', 'upc' => '025218664622', 'provider' => 'bestbuy'],\n ['name' => \"The Legend of Korra: A New Era Begins - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"It&#039;s time for a new era to begin\", 'description_long' => \"It&#039;s time for a new era to begin\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-legend-of-korra-a-new-era-begins-pre-owned-nintendo-3ds/1034081.p?id=1219461502379&skuId=1034081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034081_sa.jpg\"}', 'upc' => '799007840367', 'provider' => 'bestbuy'],\n ['name' => \"Air Conflicts: Vietnam - PRE-OWNED - PlayStation 4\", 'description_short' => \"Take to the skies over one of history&#039;s deadliest conflicts\", 'description_long' => \"Take to the skies over one of history&#039;s deadliest conflicts\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/air-conflicts-vietnam-pre-owned-playstation-4/1034105.p?id=1219461502449&skuId=1034105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034105_sa.jpg\"}', 'upc' => '799007840374', 'provider' => 'bestbuy'],\n ['name' => \"The Intimacy of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-intimacy-of-the-blues-cd/1034124.p?id=65973&skuId=1034124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034124_sa.jpg\"}', 'upc' => '025218662420', 'provider' => 'bestbuy'],\n ['name' => \"The Fabulous Thad Jones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fabulous-thad-jones-cd/1034142.p?id=68082&skuId=1034142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034142.jpg\"}', 'upc' => '025218662529', 'provider' => 'bestbuy'],\n ['name' => \"The Good Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-good-life-cd/1034188.p?id=69975&skuId=1034188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034188_sa.jpg\"}', 'upc' => '025218662727', 'provider' => 'bestbuy'],\n ['name' => \"Basie Jam 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/basie-jam-2-cd/1034268.p?id=64003&skuId=1034268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034268_sa.jpg\"}', 'upc' => '025218663120', 'provider' => 'bestbuy'],\n ['name' => \"Everyday I Have the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everyday-i-have-the-blues-cd/1034320.p?id=102482&skuId=1034320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034320_sa.jpg\"}', 'upc' => '025218663427', 'provider' => 'bestbuy'],\n ['name' => \"Blues for Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-two-cd/1034348.p?id=70991&skuId=1034348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034348_sa.jpg\"}', 'upc' => '025218663526', 'provider' => 'bestbuy'],\n ['name' => \"Pal Joey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pal-joey-cd/1034384.p?id=70151&skuId=1034384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034384_sa.jpg\"}', 'upc' => '025218663724', 'provider' => 'bestbuy'],\n ['name' => \"All Night Session!, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-night-session-vol-1-cd/1034400.p?id=67256&skuId=1034400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034400_sa.jpg\"}', 'upc' => '025218663823', 'provider' => 'bestbuy'],\n ['name' => \"All Night Session!, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-night-session-vol-2-cd/1034428.p?id=67257&skuId=1034428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034428_sa.jpg\"}', 'upc' => '025218663922', 'provider' => 'bestbuy'],\n ['name' => \"Red Norvo Trio [Prestige] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-norvo-trio-prestige-cd/1034464.p?id=69650&skuId=1034464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034464_sa.jpg\"}', 'upc' => '025218664127', 'provider' => 'bestbuy'],\n ['name' => \"Passions Just Like Mine: Morrissey and Fan Culture (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passions-just-like-mine-morrissey-and-fan-culture-dvd/1034465.p?id=2949969&skuId=1034465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034465_sa.jpg\"}', 'upc' => '613285881129', 'provider' => 'bestbuy'],\n ['name' => \"The Intimacy of the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-intimacy-of-the-blues-cd/1034482.p?id=261487&skuId=1034482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034482_sa.jpg\"}', 'upc' => '025218664226', 'provider' => 'bestbuy'],\n ['name' => \"Cal Tjader's Latin Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cal-tjaders-latin-concert-cd/1034507.p?id=71454&skuId=1034507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034507_sa.jpg\"}', 'upc' => '025218664325', 'provider' => 'bestbuy'],\n ['name' => \"Montreux III - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montreux-iii-cd/1034525.p?id=66139&skuId=1034525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034525_sa.jpg\"}', 'upc' => '025218664424', 'provider' => 'bestbuy'],\n ['name' => \"The Afro-Eurasian Eclipse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-afro-eurasian-eclipse-cd/1034543.p?id=65995&skuId=1034543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034543_sa.jpg\"}', 'upc' => '025218664523', 'provider' => 'bestbuy'],\n ['name' => \"CHI - Air Expert Classic Tourmaline Ceramic 1\\\" Flat Iron - Onyx Black\", 'description_short' => \"Variable heat settings with a temperature dial; quick heat up; 9&#039; swivel cord; floating plates\", 'description_long' => \"Variable heat settings with a temperature dial; quick heat up; 9&#039; swivel cord; floating plates\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chi-air-expert-classic-tourmaline-ceramic-1-flat-iron-onyx-black/1034544.p?id=1218212158220&skuId=1034544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034544_rc.jpg\"}', 'upc' => '813843010101', 'provider' => 'bestbuy'],\n ['name' => \"Night Assassins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-assassins-cd/1034571.p?id=2125937&skuId=1034571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034571_sa.jpg\"}', 'upc' => '020286154266', 'provider' => 'bestbuy'],\n ['name' => \"Where Would I Be? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-would-i-be-cd/1034589.p?id=67086&skuId=1034589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034589_sa.jpg\"}', 'upc' => '025218664929', 'provider' => 'bestbuy'],\n ['name' => \"Consentual Selections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/consentual-selections-cd/1034599.p?id=2118226&skuId=1034599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034599_sa.jpg\"}', 'upc' => '751097075722', 'provider' => 'bestbuy'],\n ['name' => \"Echoes of a Friend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-of-a-friend-cd/1034605.p?id=71595&skuId=1034605&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034605', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034605_sa.jpg\"}', 'upc' => '025218665025', 'provider' => 'bestbuy'],\n ['name' => \"I Remember Charlie Parker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-remember-charlie-parker-cd/1034632.p?id=69811&skuId=1034632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034632_sa.jpg\"}', 'upc' => '025218660228', 'provider' => 'bestbuy'],\n ['name' => \"Death Potion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-potion-cd/1034641.p?id=2113148&skuId=1034641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034641_sa.jpg\"}', 'upc' => '654436013921', 'provider' => 'bestbuy'],\n ['name' => \"Trumpet Summit Meets the Oscar Peterson Big... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpet-summit-meets-the-oscar-peterson-big-cd-various/1034650.p?id=66697&skuId=1034650&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034650', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034650_sa.jpg\"}', 'upc' => '025218660327', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Duke - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-duke-cd/1034678.p?id=71365&skuId=1034678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034678_sa.jpg\"}', 'upc' => '025218660426', 'provider' => 'bestbuy'],\n ['name' => \"Fragments of Form and Function [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fragments-of-form-and-function-digipak-cd/1034687.p?id=2118177&skuId=1034687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034687_sa.jpg\"}', 'upc' => '039841493320', 'provider' => 'bestbuy'],\n ['name' => \"War From a Harlots Mouth/Burning Skies [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/war-from-a-harlots-mouth-burning-skies-pa-cd/1034696.p?id=2118296&skuId=1034696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034696_sa.jpg\"}', 'upc' => '826056010721', 'provider' => 'bestbuy'],\n ['name' => \"Ressentiment [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ressentiment-digipak-cd/1034714.p?id=2118283&skuId=1034714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034714_sa.jpg\"}', 'upc' => '020286154242', 'provider' => 'bestbuy'],\n ['name' => \"Bravado [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bravado-digipak-cd/1034723.p?id=2118374&skuId=1034723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034723_sa.jpg\"}', 'upc' => '673203300422', 'provider' => 'bestbuy'],\n ['name' => \"The Poll Winners Ride Again! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-poll-winners-ride-again-cd/1034730.p?id=68216&skuId=1034730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034730_sa.jpg\"}', 'upc' => '025218660723', 'provider' => 'bestbuy'],\n ['name' => \"It'S A Good Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-a-good-day-cd/1034732.p?id=2125941&skuId=1034732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034732_sa.jpg\"}', 'upc' => '678572967023', 'provider' => 'bestbuy'],\n ['name' => \"It'll Be Better - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/itll-be-better-cd/1034741.p?id=2118225&skuId=1034741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034741_sa.jpg\"}', 'upc' => '718122809028', 'provider' => 'bestbuy'],\n ['name' => \"Deep Red Shadows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-red-shadows-cd/1034787.p?id=2128800&skuId=1034787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034787_sa.jpg\"}', 'upc' => '820360141829', 'provider' => 'bestbuy'],\n ['name' => \"Mal-1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mal-1-cd/1034810.p?id=71793&skuId=1034810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034810_sa.jpg\"}', 'upc' => '025218661126', 'provider' => 'bestbuy'],\n ['name' => \"Made the Harbor [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/made-the-harbor-digipak-cd/1034832.p?id=2118169&skuId=1034832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034832_sa.jpg\"}', 'upc' => '720841901228', 'provider' => 'bestbuy'],\n ['name' => \"Come Along with Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-along-with-me-cd/1034856.p?id=67979&skuId=1034856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034856_sa.jpg\"}', 'upc' => '025218661324', 'provider' => 'bestbuy'],\n ['name' => \"Jazzmasters VI - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazzmasters-vi-cd/1034869.p?id=2118157&skuId=1034869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034869_sa.jpg\"}', 'upc' => '020286152392', 'provider' => 'bestbuy'],\n ['name' => \"The Blues; That's Me! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blues-thats-me-cd/1034874.p?id=67791&skuId=1034874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034874_sa.jpg\"}', 'upc' => '025218661423', 'provider' => 'bestbuy'],\n ['name' => \"Jersey Shore Anthems - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jersey-shore-anthems-cd-various/1034887.p?id=2118165&skuId=1034887&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034887', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034887.jpg\"}', 'upc' => '026656305825', 'provider' => 'bestbuy'],\n ['name' => \"Big 6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-6-cd/1034892.p?id=69202&skuId=1034892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034892.jpg\"}', 'upc' => '025218661522', 'provider' => 'bestbuy'],\n ['name' => \"The Electric Sound of Johnny Arrow [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-electric-sound-of-johnny-arrow-digipak-cd/1034896.p?id=2125939&skuId=1034896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034896_sa.jpg\"}', 'upc' => '020286153221', 'provider' => 'bestbuy'],\n ['name' => \"Visceral Transcendence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/visceral-transcendence-cd/1034905.p?id=2118347&skuId=1034905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034905_sa.jpg\"}', 'upc' => '656191201322', 'provider' => 'bestbuy'],\n ['name' => \"Deadmalls & Nightfalls [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deadmalls-nightfalls-digipak-cd/1034914.p?id=2118325&skuId=1034914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034914_sa.jpg\"}', 'upc' => '626570608189', 'provider' => 'bestbuy'],\n ['name' => \"There Will Be Violence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-will-be-violence-cd/1034923.p?id=2118161&skuId=1034923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034923_sa.jpg\"}', 'upc' => '803847109529', 'provider' => 'bestbuy'],\n ['name' => \"The Vitality Theory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-vitality-theory-cd/1034932.p?id=2118176&skuId=1034932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034932_sa.jpg\"}', 'upc' => '856449002071', 'provider' => 'bestbuy'],\n ['name' => \"The DeJohnette Complex - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dejohnette-complex-cd/1034936.p?id=65639&skuId=1034936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034936_sa.jpg\"}', 'upc' => '025218661720', 'provider' => 'bestbuy'],\n ['name' => \"Lives - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lives-cd/1034941.p?id=2118168&skuId=1034941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034941_sa.jpg\"}', 'upc' => '827954103423', 'provider' => 'bestbuy'],\n ['name' => \"Song of the New World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-of-the-new-world-cd/1034954.p?id=71608&skuId=1034954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034954_sa.jpg\"}', 'upc' => '025218661829', 'provider' => 'bestbuy'],\n ['name' => \"Wormwood [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wormwood-pa-digipak-cd/1034969.p?id=2118152&skuId=1034969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034969_sa.jpg\"}', 'upc' => '656191008822', 'provider' => 'bestbuy'],\n ['name' => \"Stories to Tell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stories-to-tell-cd/1034972.p?id=70205&skuId=1034972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034972_sa.jpg\"}', 'upc' => '025218661928', 'provider' => 'bestbuy'],\n ['name' => \"We Stitch These Wounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-stitch-these-wounds-cd/1034978.p?id=2118159&skuId=1034978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1034978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1034\\/1034978_sa.jpg\"}', 'upc' => '897896002276', 'provider' => 'bestbuy'],\n ['name' => \"Since We Met - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/since-we-met-cd/1035034.p?id=66133&skuId=1035034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035034_sa.jpg\"}', 'upc' => '025218662222', 'provider' => 'bestbuy'],\n ['name' => \"Mines [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mines-digipak-cd/1035067.p?id=2119344&skuId=1035067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035067_sa.jpg\"}', 'upc' => '655173110126', 'provider' => 'bestbuy'],\n ['name' => \"King Pimp - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-pimp-cd-original-soundtrack/1035085.p?id=2124499&skuId=1035085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '708535172192', 'provider' => 'bestbuy'],\n ['name' => \"At Last! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-last-cd/1035089.p?id=65589&skuId=1035089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035089_sa.jpg\"}', 'upc' => '025218648028', 'provider' => 'bestbuy'],\n ['name' => \"Cry!/Tender - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-tender-cd/1035123.p?id=68429&skuId=1035123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035123_sa.jpg\"}', 'upc' => '025218648226', 'provider' => 'bestbuy'],\n ['name' => \"Showcase - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/showcase-cd/1035169.p?id=68065&skuId=1035169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035169_sa.jpg\"}', 'upc' => '025218648424', 'provider' => 'bestbuy'],\n ['name' => \"The Big Soul Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-soul-band-cd/1035187.p?id=66950&skuId=1035187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035187_sa.jpg\"}', 'upc' => '025218648523', 'provider' => 'bestbuy'],\n ['name' => \"Human Target: The Complete First Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-target-the-complete-first-season-3-discs-dvd/1035234.p?id=2128805&skuId=1035234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035234_sa.jpg\"}', 'upc' => '883929132096', 'provider' => 'bestbuy'],\n ['name' => \"One Tree Hill: The Complete Seventh Season [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-tree-hill-the-complete-seventh-season-5-discs-dvd/1035243.p?id=2123478&skuId=1035243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035243_sa.jpg\"}', 'upc' => '883929101344', 'provider' => 'bestbuy'],\n ['name' => \"Thelonious Monk in Italy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelonious-monk-in-italy-cd/1035249.p?id=69282&skuId=1035249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035249_sa.jpg\"}', 'upc' => '025218648820', 'provider' => 'bestbuy'],\n ['name' => \"Sesame Street: Preschool Is Cool! - ABCs with Elmo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sesame-street-preschool-is-cool-abcs-with-elmo-dvd/1035261.p?id=2113158&skuId=1035261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035261_sa.jpg\"}', 'upc' => '891264001939', 'provider' => 'bestbuy'],\n ['name' => \"Guitar on the Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-on-the-go-cd/1035267.p?id=69334&skuId=1035267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035267_sa.jpg\"}', 'upc' => '025218648929', 'provider' => 'bestbuy'],\n ['name' => \"Mongo at the Village Gate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mongo-at-the-village-gate-cd/1035285.p?id=70632&skuId=1035285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035285_sa.jpg\"}', 'upc' => '025218649025', 'provider' => 'bestbuy'],\n ['name' => \"Takin' Care of Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/takin-care-of-business-cd/1035301.p?id=70497&skuId=1035301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035301_sa.jpg\"}', 'upc' => '025218649124', 'provider' => 'bestbuy'],\n ['name' => \"Eastward Ho! Harold Land in New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eastward-ho-harold-land-in-new-york-cd/1035347.p?id=68412&skuId=1035347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035347.jpg\"}', 'upc' => '025218649322', 'provider' => 'bestbuy'],\n ['name' => \"Recuerdo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recuerdo-cd/1035383.p?id=68721&skuId=1035383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035383_sa.jpg\"}', 'upc' => '025218649520', 'provider' => 'bestbuy'],\n ['name' => \"Skol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skol-cd/1035409.p?id=69994&skuId=1035409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035409_sa.jpg\"}', 'upc' => '025218649629', 'provider' => 'bestbuy'],\n ['name' => \"The Trumpet Kings Meet Joe Turner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-trumpet-kings-meet-joe-turner-cd/1035427.p?id=102504&skuId=1035427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035427_sa.jpg\"}', 'upc' => '025218649728', 'provider' => 'bestbuy'],\n ['name' => \"Quadrant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quadrant-cd/1035445.p?id=2390680&skuId=1035445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035445_sa.jpg\"}', 'upc' => '025218649827', 'provider' => 'bestbuy'],\n ['name' => \"For the Second Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-second-time-cd/1035481.p?id=64051&skuId=1035481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035481_sa.jpg\"}', 'upc' => '025218660020', 'provider' => 'bestbuy'],\n ['name' => \"Leeruhcul Canvuhss [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leeruhcul-canvuhss-pa-cd/1035491.p?id=2120650&skuId=1035491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035491_sa.jpg\"}', 'upc' => '736888913629', 'provider' => 'bestbuy'],\n ['name' => \"It Don't Mean a Thing If You Can't Tap Your... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-dont-mean-a-thing-if-you-cant-tap-your-cd/1035506.p?id=67764&skuId=1035506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035506_sa.jpg\"}', 'upc' => '025218660129', 'provider' => 'bestbuy'],\n ['name' => \"What Lasts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-lasts-cd/1035507.p?id=2120651&skuId=1035507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035507.jpg\"}', 'upc' => '744626010622', 'provider' => 'bestbuy'],\n ['name' => \"Hounds of Love [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hounds-of-love-lp-vinyl/1035525.p?id=2120653&skuId=1035525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035525.jpg\"}', 'upc' => '780014208714', 'provider' => 'bestbuy'],\n ['name' => \"Cattin' with Coltrane and Quinichette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cattin-with-coltrane-and-quinichette-cd/1035597.p?id=65191&skuId=1035597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035597.jpg\"}', 'upc' => '025218646024', 'provider' => 'bestbuy'],\n ['name' => \"Cedar! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cedar-cd/1035622.p?id=71837&skuId=1035622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035622_sa.jpg\"}', 'upc' => '025218646222', 'provider' => 'bestbuy'],\n ['name' => \"Mean What You Say - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mean-what-you-say-cd/1035668.p?id=68086&skuId=1035668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035668_sa.jpg\"}', 'upc' => '025218646420', 'provider' => 'bestbuy'],\n ['name' => \"The Kicker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kicker-cd/1035686.p?id=67354&skuId=1035686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035686_sa.jpg\"}', 'upc' => '025218646529', 'provider' => 'bestbuy'],\n ['name' => \"The Lee Konitz Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lee-konitz-duets-cd/1035702.p?id=68317&skuId=1035702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035702_sa.jpg\"}', 'upc' => '025218646628', 'provider' => 'bestbuy'],\n ['name' => \"Alone Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-together-cd/1035720.p?id=67093&skuId=1035720&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035720', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035720.jpg\"}', 'upc' => '025218646727', 'provider' => 'bestbuy'],\n ['name' => \"Latin American Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/latin-american-suite-cd/1035757.p?id=65952&skuId=1035757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035757_sa.jpg\"}', 'upc' => '025218646925', 'provider' => 'bestbuy'],\n ['name' => \"Intuition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intuition-cd/1035775.p?id=66138&skuId=1035775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035775_sa.jpg\"}', 'upc' => '025218647021', 'provider' => 'bestbuy'],\n ['name' => \"StarTech - HDMI to DVI Digital Video Cable - Black\", 'description_short' => \"HDMI - 29.86 ft - 1 Pack - 1 x Male HDMI - 1 x DVI-D Male Video - Black\", 'description_long' => \"HDMI - 29.86 ft - 1 Pack - 1 x Male HDMI - 1 x DVI-D Male Video - Black\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-hdmi-to-dvi-digital-video-cable-black/1035786.p?id=1218265850115&skuId=1035786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035786_rc.jpg\"}', 'upc' => '065030813969', 'provider' => 'bestbuy'],\n ['name' => \"The Eddie \\\"Lockjaw\\\" Davis Cookbook, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-eddie-lockjaw-davis-cookbook-vol-2-cd/1035828.p?id=65502&skuId=1035828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035828_sa.jpg\"}', 'upc' => '025218665322', 'provider' => 'bestbuy'],\n ['name' => \"Portrait of Sonny Criss - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-of-sonny-criss-cd/1035864.p?id=65369&skuId=1035864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035864_sa.jpg\"}', 'upc' => '025218665520', 'provider' => 'bestbuy'],\n ['name' => \"At the Blackhawk, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-blackhawk-vol-1-cd/1035882.p?id=68748&skuId=1035882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035882_sa.jpg\"}', 'upc' => '025218665629', 'provider' => 'bestbuy'],\n ['name' => \"At the Blackhawk, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-blackhawk-vol-2-cd/1035908.p?id=68749&skuId=1035908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035908.jpg\"}', 'upc' => '025218665728', 'provider' => 'bestbuy'],\n ['name' => \"At the Blackhawk, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-blackhawk-vol-3-cd/1035926.p?id=68750&skuId=1035926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035926.jpg\"}', 'upc' => '025218665827', 'provider' => 'bestbuy'],\n ['name' => \"At the Blackhawk, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-blackhawk-vol-4-cd/1035944.p?id=68751&skuId=1035944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035944.jpg\"}', 'upc' => '025218665926', 'provider' => 'bestbuy'],\n ['name' => \"At the Blackhawk, Vol. 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-blackhawk-vol-5-cd/1035962.p?id=68752&skuId=1035962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1035962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1035\\/1035962.jpg\"}', 'upc' => '025218666022', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-blues-cd/1036006.p?id=69599&skuId=1036006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036006_sa.jpg\"}', 'upc' => '025218666220', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-blue-cd/1036104.p?id=69208&skuId=1036104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036104_sa.jpg\"}', 'upc' => '025218666725', 'provider' => 'bestbuy'],\n ['name' => \"Something Borrowed, Something Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-borrowed-something-blue-cd/1036140.p?id=66365&skuId=1036140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036140_sa.jpg\"}', 'upc' => '025218647328', 'provider' => 'bestbuy'],\n ['name' => \"Art Pepper Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-pepper-today-cd/1036168.p?id=69886&skuId=1036168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036168_sa.jpg\"}', 'upc' => '025218647427', 'provider' => 'bestbuy'],\n ['name' => \"Straight Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-life-cd/1036186.p?id=69902&skuId=1036186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036186_sa.jpg\"}', 'upc' => '025218647526', 'provider' => 'bestbuy'],\n ['name' => \"The Green Leaves of Summer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-green-leaves-of-summer-cd/1036202.p?id=67255&skuId=1036202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036202.jpg\"}', 'upc' => '025218647625', 'provider' => 'bestbuy'],\n ['name' => \"Moonbeams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonbeams-cd/1036355.p?id=66131&skuId=1036355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036355_sa.jpg\"}', 'upc' => '025218643429', 'provider' => 'bestbuy'],\n ['name' => \"Nippon Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nippon-soul-cd/1036373.p?id=63550&skuId=1036373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036373_sa.jpg\"}', 'upc' => '025218643528', 'provider' => 'bestbuy'],\n ['name' => \"Jazz at the Blackhawk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-at-the-blackhawk-cd/1036391.p?id=71462&skuId=1036391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036391.jpg\"}', 'upc' => '025218643627', 'provider' => 'bestbuy'],\n ['name' => \"Cast Your Fate to the Wind: Jazz Impressions... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cast-your-fate-to-the-wind-jazz-impressions-cd/1036417.p?id=67031&skuId=1036417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036417_sa.jpg\"}', 'upc' => '025218643726', 'provider' => 'bestbuy'],\n ['name' => \"Joe Williams Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-williams-live-cd/1036435.p?id=72096&skuId=1036435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036435.jpg\"}', 'upc' => '025218643825', 'provider' => 'bestbuy'],\n ['name' => \"Charles Mingus Quintet + Max Roach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charles-mingus-quintet-max-roach-cd/1036471.p?id=69185&skuId=1036471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036471_sa.jpg\"}', 'upc' => '025218644020', 'provider' => 'bestbuy'],\n ['name' => \"Tivoli Gardens, Copenhagen, Denmark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tivoli-gardens-copenhagen-denmark-cd/1036499.p?id=66897&skuId=1036499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036499_sa.jpg\"}', 'upc' => '025218644129', 'provider' => 'bestbuy'],\n ['name' => \"Ella A Nice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-a-nice-cd/1036514.p?id=66300&skuId=1036514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036514.jpg\"}', 'upc' => '025218644228', 'provider' => 'bestbuy'],\n ['name' => \"Dizzy's Big 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dizzys-big-4-cd/1036532.p?id=66676&skuId=1036532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036532_sa.jpg\"}', 'upc' => '025218644327', 'provider' => 'bestbuy'],\n ['name' => \"Trumpet Kings at Montreux - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpet-kings-at-montreux-cd/1036550.p?id=65896&skuId=1036550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036550_sa.jpg\"}', 'upc' => '025218644525', 'provider' => 'bestbuy'],\n ['name' => \"Ellington Suites: The Queen's Suite/The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ellington-suites-the-queens-suite-the-cd/1036569.p?id=65975&skuId=1036569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036569_sa.jpg\"}', 'upc' => '025218644624', 'provider' => 'bestbuy'],\n ['name' => \"Afro-Cuban Jazz Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afro-cuban-jazz-moods-cd/1036587.p?id=66665&skuId=1036587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036587.jpg\"}', 'upc' => '025218644723', 'provider' => 'bestbuy'],\n ['name' => \"All Too Soon: The Duke Ellington Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-too-soon-the-duke-ellington-album-cd/1036621.p?id=67765&skuId=1036621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036621_sa.jpg\"}', 'upc' => '025218645027', 'provider' => 'bestbuy'],\n ['name' => \"Hamilton Beach - Coffee Urn - Silver\", 'description_short' => \"42 Cup(s) - Silver - Aluminum\", 'description_long' => \"42 Cup(s) - Silver - Aluminum\", 'price' => 37.54, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hamilton-beach-coffee-urn-silver/1036658.p?id=1218212059983&skuId=1036658', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036658_rc.jpg\"}', 'upc' => '040094405152', 'provider' => 'bestbuy'],\n ['name' => \"Looking Ahead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-ahead-cd/1036667.p?id=71342&skuId=1036667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036667_sa.jpg\"}', 'upc' => '025218645225', 'provider' => 'bestbuy'],\n ['name' => \"All Day Long - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-day-long-cd/1036729.p?id=64713&skuId=1036729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036729_sa.jpg\"}', 'upc' => '025218645621', 'provider' => 'bestbuy'],\n ['name' => \"Live Montreux 77 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-montreux-77-cd/1036756.p?id=1562201&skuId=1036756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036756.jpg\"}', 'upc' => '025218637824', 'provider' => 'bestbuy'],\n ['name' => \"Something for Lester - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-for-lester-cd/1036783.p?id=64600&skuId=1036783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036783_sa.jpg\"}', 'upc' => '025218641227', 'provider' => 'bestbuy'],\n ['name' => \"Eric Dolphy in Europe, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eric-dolphy-in-europe-vol-1-cd/1036809.p?id=65711&skuId=1036809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036809_sa.jpg\"}', 'upc' => '025218641326', 'provider' => 'bestbuy'],\n ['name' => \"Mavea - Maxtra Filter - Multi\", 'description_short' => \"Helps remove chlorine taste and odor, benzene, mercury, copper, atrazine and limescale from your drinking water; filter micro screen; contains silver; BPA-free\", 'description_long' => \"Helps remove chlorine taste and odor, benzene, mercury, copper, atrazine and limescale from your drinking water; filter micro screen; contains silver; BPA-free\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mavea-maxtra-filter-multi/1036821.p?id=1218211735780&skuId=1036821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036821_sa.jpg\"}', 'upc' => '812501010279', 'provider' => 'bestbuy'],\n ['name' => \"Eric Dolphy in Europe, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eric-dolphy-in-europe-vol-2-cd/1036827.p?id=65712&skuId=1036827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036827_sa.jpg\"}', 'upc' => '025218641425', 'provider' => 'bestbuy'],\n ['name' => \"Bahia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bahia-cd/1036845.p?id=65128&skuId=1036845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036845_sa.jpg\"}', 'upc' => '025218641524', 'provider' => 'bestbuy'],\n ['name' => \"Bottoms Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bottoms-up-cd/1036881.p?id=67785&skuId=1036881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036881.jpg\"}', 'upc' => '025218641722', 'provider' => 'bestbuy'],\n ['name' => \"With the Red Garland Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-the-red-garland-trio-cd/1036907.p?id=67299&skuId=1036907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036907.jpg\"}', 'upc' => '025218641821', 'provider' => 'bestbuy'],\n ['name' => \"Night Hawk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-hawk-cd/1036943.p?id=67284&skuId=1036943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036943_sa.jpg\"}', 'upc' => '025218642026', 'provider' => 'bestbuy'],\n ['name' => \"Vol. 3: The Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vol-3-the-trio-cd/1036961.p?id=67251&skuId=1036961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036961.jpg\"}', 'upc' => '025218642125', 'provider' => 'bestbuy'],\n ['name' => \"The Love Trilogy [CD & DVD] [PA] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-love-trilogy-cd-dvd-pa-cd-dvd/1036967.p?id=2121208&skuId=1036967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036967_sa.jpg\"}', 'upc' => '602527441764', 'provider' => 'bestbuy'],\n ['name' => \"West Side Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-side-story-cd/1036989.p?id=70152&skuId=1036989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1036989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1036\\/1036989_sa.jpg\"}', 'upc' => '025218642224', 'provider' => 'bestbuy'],\n ['name' => \"Lights Out! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lights-out-cd/1037069.p?id=68987&skuId=1037069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037069_sa.jpg\"}', 'upc' => '025218642620', 'provider' => 'bestbuy'],\n ['name' => \"All Night Long - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-night-long-cd/1037087.p?id=64774&skuId=1037087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037087_sa.jpg\"}', 'upc' => '025218642729', 'provider' => 'bestbuy'],\n ['name' => \"Manteca - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manteca-cd/1037103.p?id=66531&skuId=1037103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037103_sa.jpg\"}', 'upc' => '025218642828', 'provider' => 'bestbuy'],\n ['name' => \"New Ideas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-ideas-cd/1037167.p?id=66038&skuId=1037167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037167.jpg\"}', 'upc' => '025218643122', 'provider' => 'bestbuy'],\n ['name' => \"Montreux '77 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montreux-77-cd/1037194.p?id=66690&skuId=1037194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037194_sa.jpg\"}', 'upc' => '025218638128', 'provider' => 'bestbuy'],\n ['name' => \"Montreux 77 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montreux-77-cd/1037210.p?id=2276082&skuId=1037210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037210.jpg\"}', 'upc' => '025218638326', 'provider' => 'bestbuy'],\n ['name' => \"Intensity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intensity-cd/1037274.p?id=1550681&skuId=1037274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037274_sa.jpg\"}', 'upc' => '025218638722', 'provider' => 'bestbuy'],\n ['name' => \"The Great Jazz Piano of Phineas Newborn Jr. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-jazz-piano-of-phineas-newborn-jr-cd/1037283.p?id=2294391&skuId=1037283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037283_sa.jpg\"}', 'upc' => '025218638821', 'provider' => 'bestbuy'],\n ['name' => \"The Way It Was - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-way-it-was-cd/1037309.p?id=69908&skuId=1037309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037309_sa.jpg\"}', 'upc' => '025218638920', 'provider' => 'bestbuy'],\n ['name' => \"Dig It! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dig-it-cd/1037354.p?id=66524&skuId=1037354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037354_sa.jpg\"}', 'upc' => '025218639224', 'provider' => 'bestbuy'],\n ['name' => \"Body and Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/body-and-soul-cd/1037434.p?id=67978&skuId=1037434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037434_sa.jpg\"}', 'upc' => '025218639620', 'provider' => 'bestbuy'],\n ['name' => \"Other Sounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/other-sounds-cd/1037489.p?id=2291332&skuId=1037489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037489_sa.jpg\"}', 'upc' => '025218639927', 'provider' => 'bestbuy'],\n ['name' => \"Far Cry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-cry-cd/1037498.p?id=65724&skuId=1037498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037498_sa.jpg\"}', 'upc' => '025218640022', 'provider' => 'bestbuy'],\n ['name' => \"Piano [Whisper Not] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-whisper-not-cd/1037504.p?id=68161&skuId=1037504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037504_sa.jpg\"}', 'upc' => '025218640121', 'provider' => 'bestbuy'],\n ['name' => \"Living Legend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-legend-cd/1037577.p?id=69894&skuId=1037577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037577_sa.jpg\"}', 'upc' => '025218640824', 'provider' => 'bestbuy'],\n ['name' => \"Trio 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trio-2-cd/1037620.p?id=1550682&skuId=1037620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037620_sa.jpg\"}', 'upc' => '025218631822', 'provider' => 'bestbuy'],\n ['name' => \"Soul Battle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-battle-cd/1037675.p?id=69571&skuId=1037675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037675.jpg\"}', 'upc' => '025218632522', 'provider' => 'bestbuy'],\n ['name' => \"Modern Jazz Performances of Songs from My... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-jazz-performances-of-songs-from-my-cd/1037746.p?id=68756&skuId=1037746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037746_sa.jpg\"}', 'upc' => '025218633628', 'provider' => 'bestbuy'],\n ['name' => \"Art Pepper Meets the Rhythm Section - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-pepper-meets-the-rhythm-section-cd/1037782.p?id=69895&skuId=1037782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037782.jpg\"}', 'upc' => '025218633826', 'provider' => 'bestbuy'],\n ['name' => \"Swingin' the '20s - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swingin-the-20s-cd/1037791.p?id=64850&skuId=1037791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037791_sa.jpg\"}', 'upc' => '025218633925', 'provider' => 'bestbuy'],\n ['name' => \"Sonny Rollins and the Contemporary Leaders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-rollins-and-the-contemporary-leaders-cd/1037817.p?id=70425&skuId=1037817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037817_sa.jpg\"}', 'upc' => '025218634021', 'provider' => 'bestbuy'],\n ['name' => \"Memorial Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-album-cd/1037835.p?id=65725&skuId=1037835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037835_sa.jpg\"}', 'upc' => '025218635325', 'provider' => 'bestbuy'],\n ['name' => \"Baiyina (The Clear Evidence) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baiyina-the-clear-evidence-cd/1037871.p?id=68843&skuId=1037871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037871_sa.jpg\"}', 'upc' => '025218635523', 'provider' => 'bestbuy'],\n ['name' => \"The Return of Tal Farlow/1969 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-return-of-tal-farlow-1969-cd/1037899.p?id=66184&skuId=1037899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037899.jpg\"}', 'upc' => '025218635622', 'provider' => 'bestbuy'],\n ['name' => \"Tomorrow Is the Question! [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomorrow-is-the-question-remaster-cd/1037960.p?id=65100&skuId=1037960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037960_sa.jpg\"}', 'upc' => '025218634229', 'provider' => 'bestbuy'],\n ['name' => \"The Fox - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fox-cd/1037988.p?id=2551800&skuId=1037988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1037988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1037\\/1037988.jpg\"}', 'upc' => '025218634328', 'provider' => 'bestbuy'],\n ['name' => \"The Tokyo Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tokyo-concert-cd/1038013.p?id=66112&skuId=1038013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038013_sa.jpg\"}', 'upc' => '025218634526', 'provider' => 'bestbuy'],\n ['name' => \"Gil Evans & Ten - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gil-evans-ten-cd/1038031.p?id=1535036&skuId=1038031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038031_sa.jpg\"}', 'upc' => '025218634625', 'provider' => 'bestbuy'],\n ['name' => \"Miles Davis and the Modern Jazz Giants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miles-davis-and-the-modern-jazz-giants-cd/1038059.p?id=65554&skuId=1038059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038059_sa.jpg\"}', 'upc' => '025218634724', 'provider' => 'bestbuy'],\n ['name' => \"High Pressure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-pressure-cd/1038095.p?id=1550683&skuId=1038095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038095.jpg\"}', 'upc' => '025218634922', 'provider' => 'bestbuy'],\n ['name' => \"Bad! Bossa Nova - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-bossa-nova-cd/1038139.p?id=63683&skuId=1038139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038139_sa.jpg\"}', 'upc' => '025218635127', 'provider' => 'bestbuy'],\n ['name' => \"Black Pearls [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-pearls-ecd-cd/1038157.p?id=65131&skuId=1038157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038157_sa.jpg\"}', 'upc' => '025218635226', 'provider' => 'bestbuy'],\n ['name' => \"All Mornin' Long - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-mornin-long-cd/1038175.p?id=66523&skuId=1038175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038175_sa.jpg\"}', 'upc' => '025218629324', 'provider' => 'bestbuy'],\n ['name' => \"Workin' with the Miles Davis Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/workin-with-the-miles-davis-quintet-cd/1038228.p?id=65586&skuId=1038228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038228_sa.jpg\"}', 'upc' => '025218629621', 'provider' => 'bestbuy'],\n ['name' => \"Mulligan Meets Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mulligan-meets-monk-cd/1038317.p?id=69291&skuId=1038317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038317_sa.jpg\"}', 'upc' => '025218630122', 'provider' => 'bestbuy'],\n ['name' => \"In Orbit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-orbit-cd/1038335.p?id=71366&skuId=1038335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038335_sa.jpg\"}', 'upc' => '025218630221', 'provider' => 'bestbuy'],\n ['name' => \"Portrait of Cannonball - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-of-cannonball-cd/1038399.p?id=63551&skuId=1038399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038399_sa.jpg\"}', 'upc' => '025218636124', 'provider' => 'bestbuy'],\n ['name' => \"5 by Monk by 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/5-by-monk-by-5-cd/1038415.p?id=69273&skuId=1038415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038415_sa.jpg\"}', 'upc' => '025218636223', 'provider' => 'bestbuy'],\n ['name' => \"How My Heart Sings! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-my-heart-sings-cd/1038558.p?id=66130&skuId=1038558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038558_sa.jpg\"}', 'upc' => '025218636926', 'provider' => 'bestbuy'],\n ['name' => \"Chet Baker in Milan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chet-baker-in-milan-cd/1038576.p?id=63902&skuId=1038576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038576.jpg\"}', 'upc' => '025218637022', 'provider' => 'bestbuy'],\n ['name' => \"Montreux '77 [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montreux-77-digdownload-cd/1038656.p?id=64055&skuId=1038656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038656_sa.jpg\"}', 'upc' => '025218637725', 'provider' => 'bestbuy'],\n ['name' => \"Deeds, Not Words [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deeds-not-words-remaster-cd/1038683.p?id=70369&skuId=1038683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038683_sa.jpg\"}', 'upc' => '025218630429', 'provider' => 'bestbuy'],\n ['name' => \"The Quintet Plus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-quintet-plus-cd/1038718.p?id=261525&skuId=1038718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038718_sa.jpg\"}', 'upc' => '025218630627', 'provider' => 'bestbuy'],\n ['name' => \"Interplay - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/interplay-cd/1038754.p?id=66126&skuId=1038754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038754_sa.jpg\"}', 'upc' => '025218630825', 'provider' => 'bestbuy'],\n ['name' => \"Take Twelve - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-twelve-cd/1038790.p?id=69395&skuId=1038790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038790_sa.jpg\"}', 'upc' => '025218631020', 'provider' => 'bestbuy'],\n ['name' => \"Sahara - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sahara-cd/1038816.p?id=71605&skuId=1038816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038816_sa.jpg\"}', 'upc' => '025218631129', 'provider' => 'bestbuy'],\n ['name' => \"Next Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/next-album-cd/1038834.p?id=1535034&skuId=1038834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038834.jpg\"}', 'upc' => '025218631228', 'provider' => 'bestbuy'],\n ['name' => \"Song for My Lady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-for-my-lady-cd/1038852.p?id=71607&skuId=1038852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038852_sa.jpg\"}', 'upc' => '025218631327', 'provider' => 'bestbuy'],\n ['name' => \"Hampton Hawes Trio, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hampton-hawes-trio-vol-1-cd/1038905.p?id=261453&skuId=1038905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038905_sa.jpg\"}', 'upc' => '025218631624', 'provider' => 'bestbuy'],\n ['name' => \"Thelonious Himself: Keepnews Collection (Remastered) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelonious-himself-keepnews-collection-remastered-cd/1038987.p?id=1905471&skuId=1038987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1038987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1038\\/1038987_sa.jpg\"}', 'upc' => '888072305106', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 24\\\" Class (23.6\\\" Diag.) - LED - 720p - HDTV DVD Combo - Black\", 'description_short' => \"Only at Best Buy720p resolution60Hz refresh rate\", 'description_long' => \"Only at Best Buy720p resolution60Hz refresh rate\", 'price' => 169.99, 'sale_price' => 139.99, 'url' => 'http://www.bestbuy.com/site/insignia-24-class-23-6-diag--led-720p-hdtv-dvd-combo-black/1039004.p?id=1219465782596&skuId=1039004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039004_sa.jpg\"}', 'upc' => '600603185175', 'provider' => 'bestbuy'],\n ['name' => \"Mambo with Tjader - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mambo-with-tjader-cd/1039156.p?id=71463&skuId=1039156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039156_sa.jpg\"}', 'upc' => '025218627122', 'provider' => 'bestbuy'],\n ['name' => \"Vol. 3: To Swing or Not to Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vol-3-to-swing-or-not-to-swing-cd/1039334.p?id=68208&skuId=1039334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039334.jpg\"}', 'upc' => '025218631723', 'provider' => 'bestbuy'],\n ['name' => \"Misterioso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misterioso-cd/1039352.p?id=69285&skuId=1039352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039352_sa.jpg\"}', 'upc' => '025218620628', 'provider' => 'bestbuy'],\n ['name' => \"Phil & Quill with Prestige - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/phil-quill-with-prestige-cd/1039487.p?id=72206&skuId=1039487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039487_sa.jpg\"}', 'upc' => '025218621526', 'provider' => 'bestbuy'],\n ['name' => \"Duke With A Difference - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duke-with-a-difference-cd/1039584.p?id=1543915&skuId=1039584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039584.jpg\"}', 'upc' => '025218622929', 'provider' => 'bestbuy'],\n ['name' => \"Blues for Dracula - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-dracula-cd/1039600.p?id=68062&skuId=1039600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039600_sa.jpg\"}', 'upc' => '025218623025', 'provider' => 'bestbuy'],\n ['name' => \"So Much Guitar! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-much-guitar-cd/1039646.p?id=69340&skuId=1039646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039646_sa.jpg\"}', 'upc' => '025218623322', 'provider' => 'bestbuy'],\n ['name' => \"Right Now: Live at the Jazz Workshop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-now-live-at-the-jazz-workshop-cd/1039708.p?id=69186&skuId=1039708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039708_sa.jpg\"}', 'upc' => '025218623728', 'provider' => 'bestbuy'],\n ['name' => \"Kessel Plays Standards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kessel-plays-standards-cd/1039726.p?id=68202&skuId=1039726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039726_sa.jpg\"}', 'upc' => '025218623827', 'provider' => 'bestbuy'],\n ['name' => \"Jammin' in Hi Fi with Gene Ammons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jammin-in-hi-fi-with-gene-ammons-cd/1039842.p?id=63688&skuId=1039842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039842_sa.jpg\"}', 'upc' => '025218612920', 'provider' => 'bestbuy'],\n ['name' => \"At the Five Spot, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-five-spot-vol-1-cd/1039879.p?id=65706&skuId=1039879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039879_sa.jpg\"}', 'upc' => '025218613323', 'provider' => 'bestbuy'],\n ['name' => \"Blue Spring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-spring-cd/1039897.p?id=1562194&skuId=1039897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039897.jpg\"}', 'upc' => '025218613422', 'provider' => 'bestbuy'],\n ['name' => \"Crazy and Mixed Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crazy-and-mixed-up-cd/1039931.p?id=71675&skuId=1039931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1039931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1039\\/1039931_sa.jpg\"}', 'upc' => '025218013727', 'provider' => 'bestbuy'],\n ['name' => \"Strain: Season 1 [4 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strain-season-1-4-discs-dvd-boxed-set/1040009.p?id=3307627&skuId=1040009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040009.jpg\"}', 'upc' => '024543980087', 'provider' => 'bestbuy'],\n ['name' => \"Strain: Season 1 [3 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strain-season-1-3-discs-blu-ray-disc-boxed-set/1040018.p?id=3307668&skuId=1040018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040018.jpg\"}', 'upc' => '024543980100', 'provider' => 'bestbuy'],\n ['name' => \"The Magic Touch of Tadd Dameron - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-magic-touch-of-tadd-dameron-cd/1040019.p?id=65449&skuId=1040019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040019_sa.jpg\"}', 'upc' => '025218614320', 'provider' => 'bestbuy'],\n ['name' => \"Portrait of Wes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-of-wes-cd/1040037.p?id=69338&skuId=1040037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040037_sa.jpg\"}', 'upc' => '025218614429', 'provider' => 'bestbuy'],\n ['name' => \"Vince Guaraldi Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vince-guaraldi-trio-cd/1040073.p?id=67036&skuId=1040073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040073_sa.jpg\"}', 'upc' => '025218614924', 'provider' => 'bestbuy'],\n ['name' => \"Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reunion-cd/1040091.p?id=1535022&skuId=1040091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040091_sa.jpg\"}', 'upc' => '025218615020', 'provider' => 'bestbuy'],\n ['name' => \"Sunday Jazz a la Lighthouse, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunday-jazz-a-la-lighthouse-vol-1-cd/1040117.p?id=70525&skuId=1040117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040117_sa.jpg\"}', 'upc' => '025218615129', 'provider' => 'bestbuy'],\n ['name' => \"The West Coast Sound, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-west-coast-sound-vol-1-cd/1040126.p?id=68761&skuId=1040126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040126_sa.jpg\"}', 'upc' => '025218615228', 'provider' => 'bestbuy'],\n ['name' => \"Easy Like, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-like-vol-1-cd/1040144.p?id=68209&skuId=1040144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040144.jpg\"}', 'upc' => '025218615327', 'provider' => 'bestbuy'],\n ['name' => \"The Poll Winners - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-poll-winners-cd/1040180.p?id=68214&skuId=1040180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040180_sa.jpg\"}', 'upc' => '025218615624', 'provider' => 'bestbuy'],\n ['name' => \"Presenting Red Mitchell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presenting-red-mitchell-cd/1040206.p?id=69209&skuId=1040206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040206_sa.jpg\"}', 'upc' => '025218615822', 'provider' => 'bestbuy'],\n ['name' => \"Leroy Walks! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leroy-walks-cd/1040233.p?id=71759&skuId=1040233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040233.jpg\"}', 'upc' => '025218616027', 'provider' => 'bestbuy'],\n ['name' => \"Movin Along - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/movin-along-cd/1040359.p?id=1535028&skuId=1040359&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040359', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040359.jpg\"}', 'upc' => '025218608923', 'provider' => 'bestbuy'],\n ['name' => \"Pairing Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pairing-off-cd/1040395.p?id=1562192&skuId=1040395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040395.jpg\"}', 'upc' => '025218609227', 'provider' => 'bestbuy'],\n ['name' => \"Blue Haze - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-haze-cd/1040411.p?id=65524&skuId=1040411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040411_sa.jpg\"}', 'upc' => '025218609326', 'provider' => 'bestbuy'],\n ['name' => \"Tour de Force - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tour-de-force-cd/1040420.p?id=306030&skuId=1040420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040420_sa.jpg\"}', 'upc' => '025218609524', 'provider' => 'bestbuy'],\n ['name' => \"Straight Ahead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-ahead-cd/1040475.p?id=2291734&skuId=1040475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040475.jpg\"}', 'upc' => '025218609920', 'provider' => 'bestbuy'],\n ['name' => \"The Dave Brubeck Octet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dave-brubeck-octet-cd/1040484.p?id=64639&skuId=1040484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040484_sa.jpg\"}', 'upc' => '025218610124', 'provider' => 'bestbuy'],\n ['name' => \"This Here Is Bobby Timmons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-here-is-bobby-timmons-cd/1040527.p?id=71433&skuId=1040527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040527_sa.jpg\"}', 'upc' => '025218610421', 'provider' => 'bestbuy'],\n ['name' => \"Bossa Nova Pelos Passaros - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bossa-nova-pelos-passaros-cd/1040572.p?id=64747&skuId=1040572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040572.jpg\"}', 'upc' => '025218610728', 'provider' => 'bestbuy'],\n ['name' => \"Jazz at Massey Hall, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-at-massey-hall-vol-2-cd/1040625.p?id=70128&skuId=1040625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040625_sa.jpg\"}', 'upc' => '025218611121', 'provider' => 'bestbuy'],\n ['name' => \"Stan Getz Quartets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-getz-quartets-cd/1040652.p?id=66617&skuId=1040652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040652_sa.jpg\"}', 'upc' => '025218612128', 'provider' => 'bestbuy'],\n ['name' => \"Tenor Madness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tenor-madness-cd/1040670.p?id=70468&skuId=1040670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040670_sa.jpg\"}', 'upc' => '025218612425', 'provider' => 'bestbuy'],\n ['name' => \"Moving Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moving-out-cd/1040732.p?id=1535026&skuId=1040732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040732.jpg\"}', 'upc' => '025218605823', 'provider' => 'bestbuy'],\n ['name' => \"Kaleidoscope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kaleidoscope-cd/1040778.p?id=71152&skuId=1040778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040778_sa.jpg\"}', 'upc' => '025218606028', 'provider' => 'bestbuy'],\n ['name' => \"The Unique Thelonious Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-unique-thelonious-monk-cd/1040812.p?id=69299&skuId=1040812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040812_sa.jpg\"}', 'upc' => '025218606424', 'provider' => 'bestbuy'],\n ['name' => \"Abbey Is Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abbey-is-blue-cd/1040867.p?id=68589&skuId=1040867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040867_sa.jpg\"}', 'upc' => '025218606929', 'provider' => 'bestbuy'],\n ['name' => \"The Cats - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cats-cd/1040974.p?id=306031&skuId=1040974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1040974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1040\\/1040974_sa.jpg\"}', 'upc' => '025218607926', 'provider' => 'bestbuy'],\n ['name' => \"The Rat Race Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rat-race-blues-cd/1041009.p?id=2276859&skuId=1041009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041009.jpg\"}', 'upc' => '025218608121', 'provider' => 'bestbuy'],\n ['name' => \"The Quest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-quest-cd/1041027.p?id=71796&skuId=1041027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041027_sa.jpg\"}', 'upc' => '025218608220', 'provider' => 'bestbuy'],\n ['name' => \"Bill Harris and Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-harris-and-friends-cd/1041036.p?id=67209&skuId=1041036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041036_sa.jpg\"}', 'upc' => '025218608329', 'provider' => 'bestbuy'],\n ['name' => \"MJQ - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mjq-cd/1041063.p?id=1849305&skuId=1041063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041063.jpg\"}', 'upc' => '025218612524', 'provider' => 'bestbuy'],\n ['name' => \"Harold In The Land Of Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harold-in-the-land-of-jazz-cd/1041072.p?id=1550579&skuId=1041072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041072_sa.jpg\"}', 'upc' => '025218616225', 'provider' => 'bestbuy'],\n ['name' => \"Benny Golson's New York Scene [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benny-golsons-new-york-scene-bonus-track-cd/1041116.p?id=66731&skuId=1041116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041116_sa.jpg\"}', 'upc' => '025218616423', 'provider' => 'bestbuy'],\n ['name' => \"Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-cd/1041125.p?id=287998&skuId=1041125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041125.jpg\"}', 'upc' => '025218616522', 'provider' => 'bestbuy'],\n ['name' => \"Portrait of Art Farmer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-of-art-farmer-cd/1041134.p?id=66192&skuId=1041134&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041134_sa.jpg\"}', 'upc' => '025218616621', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Giant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-giant-cd/1041143.p?id=64846&skuId=1041143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041143_sa.jpg\"}', 'upc' => '025218616720', 'provider' => 'bestbuy'],\n ['name' => \"A Garland of Red - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-garland-of-red-cd/1041205.p?id=66527&skuId=1041205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041205_sa.jpg\"}', 'upc' => '025218612623', 'provider' => 'bestbuy'],\n ['name' => \"Tenor Conclave - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tenor-conclave-various-cd/1041223.p?id=1535020&skuId=1041223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041223.jpg\"}', 'upc' => '025218612722', 'provider' => 'bestbuy'],\n ['name' => \"Songs I Like to Sing! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-i-like-to-sing-cd/1041241.p?id=67664&skuId=1041241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041241_sa.jpg\"}', 'upc' => '025218617123', 'provider' => 'bestbuy'],\n ['name' => \"The Three and the Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-three-and-the-two-cd/1041269.p?id=68747&skuId=1041269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041269_sa.jpg\"}', 'upc' => '025218617222', 'provider' => 'bestbuy'],\n ['name' => \"A World of Piano! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-world-of-piano-cd/1041278.p?id=69597&skuId=1041278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041278_sa.jpg\"}', 'upc' => '025218617529', 'provider' => 'bestbuy'],\n ['name' => \"Smack Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smack-up-cd/1041287.p?id=1543914&skuId=1041287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041287_sa.jpg\"}', 'upc' => '025218617628', 'provider' => 'bestbuy'],\n ['name' => \"Subconscious-Lee [Prestige] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/subconscious-lee-prestige-cd/1041349.p?id=68316&skuId=1041349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041349_sa.jpg\"}', 'upc' => '025218618625', 'provider' => 'bestbuy'],\n ['name' => \"Blue Gene - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-gene-cd/1041410.p?id=2310055&skuId=1041410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041410_sa.jpg\"}', 'upc' => '025218619226', 'provider' => 'bestbuy'],\n ['name' => \"All Kinds of Weather - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-kinds-of-weather-cd/1041429.p?id=66528&skuId=1041429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041429.jpg\"}', 'upc' => '025218619325', 'provider' => 'bestbuy'],\n ['name' => \"Lucky Strikes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lucky-strikes-cd/1041447.p?id=71413&skuId=1041447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041447_sa.jpg\"}', 'upc' => '025218619424', 'provider' => 'bestbuy'],\n ['name' => \"Brubeck A La Mode - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brubeck-a-la-mode-cd/1041508.p?id=1548518&skuId=1041508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041508.jpg\"}', 'upc' => '025218620024', 'provider' => 'bestbuy'],\n ['name' => \"Introducing Paul Bley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/introducing-paul-bley-cd/1041517.p?id=64398&skuId=1041517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041517_sa.jpg\"}', 'upc' => '025218620123', 'provider' => 'bestbuy'],\n ['name' => \"Gettin' Together! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gettin-together-cd/1041535.p?id=66740&skuId=1041535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041535_sa.jpg\"}', 'upc' => '025218620321', 'provider' => 'bestbuy'],\n ['name' => \"Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monk-cd/1041599.p?id=69288&skuId=1041599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041599_sa.jpg\"}', 'upc' => '025218601627', 'provider' => 'bestbuy'],\n ['name' => \"Memorial - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-cd/1041615.p?id=261490&skuId=1041615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041615_sa.jpg\"}', 'upc' => '025218601726', 'provider' => 'bestbuy'],\n ['name' => \"Coltrane [Prestige] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coltrane-prestige-cd/1041633.p?id=65135&skuId=1041633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041633_sa.jpg\"}', 'upc' => '025218602020', 'provider' => 'bestbuy'],\n ['name' => \"A Wes Montgomery Trio [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-wes-montgomery-trio-digdownload-cd/1041786.p?id=69347&skuId=1041786&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041786', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041786_sa.jpg\"}', 'upc' => '025218603423', 'provider' => 'bestbuy'],\n ['name' => \"Bootlegs & B-Sides [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bootlegs-b-sides-pa-cd/1041795.p?id=110862&skuId=1041795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041795_sa.jpg\"}', 'upc' => '049925392128', 'provider' => 'bestbuy'],\n ['name' => \"Explorations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/explorations-cd/1041811.p?id=1365861&skuId=1041811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041811_sa.jpg\"}', 'upc' => '025218003728', 'provider' => 'bestbuy'],\n ['name' => \"George Shearing & Montgomery Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-shearing-montgomery-brothers-cd/1041839.p?id=2294118&skuId=1041839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041839_sa.jpg\"}', 'upc' => '025218604024', 'provider' => 'bestbuy'],\n ['name' => \"Town Hall Concert, 1964 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/town-hall-concert-1964-cd/1041857.p?id=69193&skuId=1041857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041857_sa.jpg\"}', 'upc' => '025218604222', 'provider' => 'bestbuy'],\n ['name' => \"Blue Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-moods-cd/1041875.p?id=65525&skuId=1041875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041875.jpg\"}', 'upc' => '025218604321', 'provider' => 'bestbuy'],\n ['name' => \"Jazz at Massey Hall [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-at-massey-hall-cassette-cd/1041893.p?id=70216&skuId=1041893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041893.jpg\"}', 'upc' => '025218604420', 'provider' => 'bestbuy'],\n ['name' => \"Mingus at the Bohemia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mingus-at-the-bohemia-cd/1041919.p?id=69177&skuId=1041919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041919_sa.jpg\"}', 'upc' => '025218604529', 'provider' => 'bestbuy'],\n ['name' => \"Jazz at the College of the Pacific - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-at-the-college-of-the-pacific-cd/1041955.p?id=64645&skuId=1041955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041955_sa.jpg\"}', 'upc' => '025218604727', 'provider' => 'bestbuy'],\n ['name' => \"Wardell Gray Memorial, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wardell-gray-memorial-vol-1-cd/1041973.p?id=66908&skuId=1041973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1041973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1041\\/1041973.jpg\"}', 'upc' => '025218605021', 'provider' => 'bestbuy'],\n ['name' => \"Attainable Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/attainable-love-cd/1042017.p?id=2542452&skuId=1042017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042017_sa.jpg\"}', 'upc' => '011671113227', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Apple° iPhone° 6 Plus and 6s Plus - Pink Stripes\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus and 6s Plus; polycarbonate shell; inner TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus and 6s Plus; polycarbonate shell; inner TPU construction; play-through design\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-apple-iphone-6-plus-and-6s-plus-pink-stripes/1042025.p?id=1219461889366&skuId=1042025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042025_sa.jpg\"}', 'upc' => '5031300084679', 'provider' => 'bestbuy'],\n ['name' => \"Nanette Lepore - Hard Shell Case for Apple° iPhone° 6 and 6s - Multicolor Stripes\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 and 6s; polycarbonate shell; inner TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 and 6s; polycarbonate shell; inner TPU construction; play-through design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nanette-lepore-hard-shell-case-for-apple-iphone-6-and-6s-multicolor-stripes/1042043.p?id=1219461889368&skuId=1042043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042043_sa.jpg\"}', 'upc' => '5031300084686', 'provider' => 'bestbuy'],\n ['name' => \"When October Goes: Autumn Love Songs - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-october-goes-autumn-love-songs-cd-various/1042259.p?id=103852&skuId=1042259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042259_sa.jpg\"}', 'upc' => '011671114323', 'provider' => 'bestbuy'],\n ['name' => \"Standing Eight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standing-eight-cd/1042687.p?id=92332&skuId=1042687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042687_sa.jpg\"}', 'upc' => '011671112329', 'provider' => 'bestbuy'],\n ['name' => \"Just in Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-in-time-cd/1042703.p?id=93664&skuId=1042703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042703_sa.jpg\"}', 'upc' => '011671112428', 'provider' => 'bestbuy'],\n ['name' => \"Swingin' Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swingin-blues-cd/1042856.p?id=66419&skuId=1042856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042856_sa.jpg\"}', 'upc' => '014921100220', 'provider' => 'bestbuy'],\n ['name' => \"Merry Christmas From Our House To Your House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merry-christmas-from-our-house-to-your-house-cd/1042883.p?id=103763&skuId=1042883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042883_sa.jpg\"}', 'upc' => '014921200029', 'provider' => 'bestbuy'],\n ['name' => \"A Musical Anthology [Box] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-musical-anthology-box-box-cd/1042936.p?id=103756&skuId=1042936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042936_sa.jpg\"}', 'upc' => '014921100428', 'provider' => 'bestbuy'],\n ['name' => \"Salutes the Big Bands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salutes-the-big-bands-cd/1042954.p?id=103768&skuId=1042954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042954_sa.jpg\"}', 'upc' => '014921201224', 'provider' => 'bestbuy'],\n ['name' => \"Close Harmony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-harmony-cd/1042972.p?id=91783&skuId=1042972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042972_sa.jpg\"}', 'upc' => '014921201323', 'provider' => 'bestbuy'],\n ['name' => \"Plays Your Favorite Waltzes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-your-favorite-waltzes-cd/1042990.p?id=90177&skuId=1042990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1042990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1042\\/1042990_sa.jpg\"}', 'upc' => '014921201422', 'provider' => 'bestbuy'],\n ['name' => \"All Time Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-hits-cd/1043016.p?id=81822&skuId=1043016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043016_sa.jpg\"}', 'upc' => '014921201521', 'provider' => 'bestbuy'],\n ['name' => \"Please Play a Polka - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/please-play-a-polka-cd/1043034.p?id=137094&skuId=1043034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043034_sa.jpg\"}', 'upc' => '014921201620', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Polkas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-polkas-cd/1043052.p?id=82486&skuId=1043052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043052.jpg\"}', 'upc' => '014921700529', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Ragtime Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-ragtime-hits-cd/1043061.p?id=77063&skuId=1043061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043061_sa.jpg\"}', 'upc' => '014921700727', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Songs for Dancing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-songs-for-dancing-cd/1043070.p?id=103754&skuId=1043070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043070_sa.jpg\"}', 'upc' => '014921700925', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Songs of Faith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-songs-of-faith-cd/1043089.p?id=84499&skuId=1043089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043089_sa.jpg\"}', 'upc' => '014921701120', 'provider' => 'bestbuy'],\n ['name' => \"22 All Time Organ Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-all-time-organ-favorites-cd/1043098.p?id=99222&skuId=1043098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043098_sa.jpg\"}', 'upc' => '014921701922', 'provider' => 'bestbuy'],\n ['name' => \"22 All Time Favorite Waltzes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-all-time-favorite-waltzes-cd/1043114.p?id=103752&skuId=1043114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043114_sa.jpg\"}', 'upc' => '014921702820', 'provider' => 'bestbuy'],\n ['name' => \"Dance to the Big Band Sounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-to-the-big-band-sounds-cd/1043141.p?id=103759&skuId=1043141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043141_sa.jpg\"}', 'upc' => '014921822825', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Polkas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-polkas-cd/1043169.p?id=103770&skuId=1043169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043169.jpg\"}', 'upc' => '014921823020', 'provider' => 'bestbuy'],\n ['name' => \"Two on One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-on-one-cd/1043178.p?id=91792&skuId=1043178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1043178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1043\\/1043178_sa.jpg\"}', 'upc' => '014921823228', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Hard Shell Fashion Case for Apple® iPhone® 5 and 5s - Purple/Gray\", 'description_short' => \"ALTEC Hard Shell Fashion Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; scratch-resistant material; play-through design; shock-resistant up to 2&#039;\", 'description_long' => \"ALTEC Hard Shell Fashion Case for Apple iPhone 5 and 5s: Compatible with Apple iPhone 5 and 5s; scratch-resistant material; play-through design; shock-resistant up to 2&#039;\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-hard-shell-fashion-case-for-apple-iphone-5-and-5s-purple-gray/1044069.p?id=1219461498176&skuId=1044069', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044069_sa.jpg\"}', 'upc' => '810532023763', 'provider' => 'bestbuy'],\n ['name' => \"Altec - 4000 mAh Power Bank - Black\", 'description_short' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'description_long' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-4000-mah-power-bank-black/1044101.p?id=1219461503840&skuId=1044101', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044101_sa.jpg\"}', 'upc' => '810532023343', 'provider' => 'bestbuy'],\n ['name' => \"Altec - 4000 mAh Power Bank - Blue\", 'description_short' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'description_long' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-4000-mah-power-bank-blue/1044174.p?id=1219461499071&skuId=1044174', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044174_sa.jpg\"}', 'upc' => '810532023350', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Hard Shell Power Case for Samsung Galaxy S 4 Cell Phones - White\", 'description_short' => \"ALTEC Hard Shell Power Case for Samsung Galaxy S 4 Cell Phones: Compatible with Samsung Galaxy S 4 cell phones; built-in kickstand; power button with LED power indicator; shock resistant; play-through design\", 'description_long' => \"ALTEC Hard Shell Power Case for Samsung Galaxy S 4 Cell Phones: Compatible with Samsung Galaxy S 4 cell phones; built-in kickstand; power button with LED power indicator; shock resistant; play-through design\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-hard-shell-power-case-for-samsung-galaxy-s-4-cell-phones-white/1044289.p?id=1219461500496&skuId=1044289', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044289_sa.jpg\"}', 'upc' => '810532023695', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Sport Armband for Apple® iPhone® 4, 4S, 5 and 5s - Pink\", 'description_short' => \"ALTEC Sport Armband for Apple iPhone 4, 4S, 5 and 5s: Compatible with Apple iPhone 4, 4S, 5 and 5s and iPod touch; adjusts to arm diameters from 5&quot; to 7&quot;; mesh fabric; key compartment; built-in wallet; headphone port access\", 'description_long' => \"ALTEC Sport Armband for Apple iPhone 4, 4S, 5 and 5s: Compatible with Apple iPhone 4, 4S, 5 and 5s and iPod touch; adjusts to arm diameters from 5&quot; to 7&quot;; mesh fabric; key compartment; built-in wallet; headphone port access\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-sport-armband-for-apple-iphone-4-4s-5-and-5s-pink/1044302.p?id=1219461503585&skuId=1044302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044302_sa.jpg\"}', 'upc' => '810532022421', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones - White\", 'description_short' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'description_long' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-sport-armband-case-for-samsung-galaxy-s-iii-and-s-4-cell-phones-white/1044311.p?id=1219461498111&skuId=1044311', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044311_sa.jpg\"}', 'upc' => '810532022445', 'provider' => 'bestbuy'],\n ['name' => \"Altec - 4000 mAh Power Bank - Pink\", 'description_short' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'description_long' => \"ALTEC 4000 mAh Power Bank: Compatible with most USB-enabled mobile devices; USB interface; built-in lithium-ion battery; up to 500 hours of standby time; overload protection; soft rubberized finish\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-4000-mah-power-bank-pink/1044339.p?id=1219461502123&skuId=1044339', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044339_sa.jpg\"}', 'upc' => '810532023367', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones - Pink\", 'description_short' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'description_long' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-sport-armband-case-for-samsung-galaxy-s-iii-and-s-4-cell-phones-pink/1044348.p?id=1219461499006&skuId=1044348', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044348_sa.jpg\"}', 'upc' => '810532022452', 'provider' => 'bestbuy'],\n ['name' => \"Altec - Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones - Blue\", 'description_short' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'description_long' => \"ALTEC Sport Armband Case for Samsung Galaxy S III and S 4 Cell Phones: Compatible with Samsung Galaxy S III and S 4 cell phones as well as most Android devices; adjustable arm diameter from 5&quot; to 7&quot;; built-in wallet; includes key compartment\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altec-sport-armband-case-for-samsung-galaxy-s-iii-and-s-4-cell-phones-blue/1044357.p?id=1219461502824&skuId=1044357', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1044357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1044\\/1044357_sa.jpg\"}', 'upc' => '810532022469', 'provider' => 'bestbuy'],\n ['name' => \"Car Tunes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/car-tunes-cd/1045791.p?id=2947345&skuId=1045791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1045791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1045\\/1045791.jpg\"}', 'upc' => '013437013529', 'provider' => 'bestbuy'],\n ['name' => \"Money Talks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/money-talks-cd/1045933.p?id=73924&skuId=1045933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1045933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1045\\/1045933_sa.jpg\"}', 'upc' => '025218410625', 'provider' => 'bestbuy'],\n ['name' => \"Soul Limbo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-limbo-cd/1046004.p?id=75532&skuId=1046004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046004_sa.jpg\"}', 'upc' => '025218411325', 'provider' => 'bestbuy'],\n ['name' => \"Melting Pot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melting-pot-cd/1046013.p?id=75531&skuId=1046013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046013_sa.jpg\"}', 'upc' => '025218852128', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Tampa Bay Buccaneers Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Tampa Bay Buccaneers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Tampa Bay Buccaneers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-tampa-bay-buccaneers-bumper-case-for-apple-iphone-6-black/1046049.p?id=1219461497413&skuId=1046049', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046049_sa.jpg\"}', 'upc' => '681620763294', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Dallas Cowboys Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Dallas Cowboys Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Dallas Cowboys Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-dallas-cowboys-bumper-case-for-apple-iphone-6-black/1046058.p?id=1219461499201&skuId=1046058', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046058_sa.jpg\"}', 'upc' => '681620763096', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Miami Dolphins Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Miami Dolphins Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Miami Dolphins Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-miami-dolphins-bumper-case-for-apple-iphone-6-black/1046067.p?id=1219461501007&skuId=1046067', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046067_sa.jpg\"}', 'upc' => '681620763164', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Mad Lads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-mad-lads-cd/1046086.p?id=90098&skuId=1046086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046086_sa.jpg\"}', 'upc' => '025218852524', 'provider' => 'bestbuy'],\n ['name' => \"Big Hero 6: Battle in the Bay - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Use your unique superhero abilities to fight enemies\", 'description_long' => \"Use your unique superhero abilities to fight enemies\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-hero-6-battle-in-the-bay-pre-owned-nintendo-3ds/1046109.p?id=1219461501660&skuId=1046109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046109_sa.jpg\"}', 'upc' => '799007840381', 'provider' => 'bestbuy'],\n ['name' => \"Who's Making Love... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whos-making-love-cd/1046111.p?id=101261&skuId=1046111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046111_sa.jpg\"}', 'upc' => '025218411523', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Buffalo Bills Bump Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Buffalo Bills Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'description_long' => \"TEAM PROMARK Buffalo Bills Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-buffalo-bills-bump-case-for-apple-iphone-6-black/1046118.p?id=1219461501006&skuId=1046118', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046118_sa.jpg\"}', 'upc' => '681620763041', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL St. Louis Rams Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK St. Louis Rams Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK St. Louis Rams Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-st-louis-rams-bumper-case-for-apple-iphone-6-black/1046136.p?id=1219461496035&skuId=1046136', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046136_sa.jpg\"}', 'upc' => '681620763287', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL New York Jets Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK New York Jets Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK New York Jets Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-new-york-jets-bumper-case-for-apple-iphone-6-black/1046145.p?id=1219461496034&skuId=1046145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046145_sa.jpg\"}', 'upc' => '681620763218', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Arizona Cardinals Bump Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Arizona Cardinals Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'description_long' => \"TEAM PROMARK Arizona Cardinals Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-arizona-cardinals-bump-case-for-apple-iphone-6-black/1046154.p?id=1219461502450&skuId=1046154', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046154_sa.jpg\"}', 'upc' => '681620763010', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Atlanta Falcons Bump Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Atlanta Falcons Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'description_long' => \"TEAM PROMARK Atlanta Falcons Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-atlanta-falcons-bump-case-for-apple-iphone-6-black/1046163.p?id=1219461496032&skuId=1046163', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046163_sa.jpg\"}', 'upc' => '681620763027', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL San Diego Chargers Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK San Diego Chargers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK San Diego Chargers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-san-diego-chargers-bumper-case-for-apple-iphone-6-black/1046172.p?id=1219461498500&skuId=1046172', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046172_sa.jpg\"}', 'upc' => '681620763256', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Washington Redskins Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Washington Redskins Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Washington Redskins Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-washington-redskins-bumper-case-for-apple-iphone-6-black/1046181.p?id=1219461496038&skuId=1046181', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046181_sa.jpg\"}', 'upc' => '681620763317', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-cd/1046184.p?id=99521&skuId=1046184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046184_sa.jpg\"}', 'upc' => '025218412025', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Jacksonville Jaguars Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Jacksonville Jaguars Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Jacksonville Jaguars Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-jacksonville-jaguars-bumper-case-for-apple-iphone-6-black/1046205.p?id=1219461503337&skuId=1046205', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046205_sa.jpg\"}', 'upc' => '681620763140', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Oakland Raiders Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Oakland Raiders Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Oakland Raiders Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-oakland-raiders-bumper-case-for-apple-iphone-6-black/1046214.p?id=1219461501273&skuId=1046214', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046214_sa.jpg\"}', 'upc' => '681620763225', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Tennessee Titans Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Tennessee Titans Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Tennessee Titans Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-tennessee-titans-bumper-case-for-apple-iphone-6-black/1046232.p?id=1219461499972&skuId=1046232', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046232_sa.jpg\"}', 'upc' => '681620763300', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Pittsburgh Steelers Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Pittsburgh Steelers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Pittsburgh Steelers Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-pittsburgh-steelers-bumper-case-for-apple-iphone-6-black/1046241.p?id=1219461499328&skuId=1046241', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046241_sa.jpg\"}', 'upc' => '681620763249', 'provider' => 'bestbuy'],\n ['name' => \"Joy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-cd/1046246.p?id=85062&skuId=1046246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046246_sa.jpg\"}', 'upc' => '025218853026', 'provider' => 'bestbuy'],\n ['name' => \"The Booker T. Set - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-booker-t-set-cd/1046264.p?id=75535&skuId=1046264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046264_sa.jpg\"}', 'upc' => '025218853125', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Indianapolis Colts Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Indianapolis Colts Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Indianapolis Colts Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-indianapolis-colts-bumper-case-for-apple-iphone-6-black/1046269.p?id=1219461497598&skuId=1046269', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046269_sa.jpg\"}', 'upc' => '681620763133', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Cincinnati Bengals Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Cincinnati Bengals Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Cincinnati Bengals Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-cincinnati-bengals-bumper-case-for-apple-iphone-6-black/1046278.p?id=1219461502822&skuId=1046278', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046278_sa.jpg\"}', 'upc' => '681620763072', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Kansas City Chiefs Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Kansas City Chiefs Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Kansas City Chiefs Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-kansas-city-chiefs-bumper-case-for-apple-iphone-6-black/1046287.p?id=1219461497926&skuId=1046287', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046287_sa.jpg\"}', 'upc' => '681620763157', 'provider' => 'bestbuy'],\n ['name' => \"I Wanna Get Funky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-wanna-get-funky-cd/1046317.p?id=87882&skuId=1046317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046317_sa.jpg\"}', 'upc' => '025218853620', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Cleveland Browns Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Cleveland Browns Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Cleveland Browns Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-cleveland-browns-bumper-case-for-apple-iphone-6-black/1046319.p?id=1219461499329&skuId=1046319', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046319_sa.jpg\"}', 'upc' => '681620763089', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Minnesota Vikings Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Minnesota Vikings Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Minnesota Vikings Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-minnesota-vikings-bumper-case-for-apple-iphone-6-black/1046328.p?id=1219461503338&skuId=1046328', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046328_sa.jpg\"}', 'upc' => '681620763171', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Denver Broncos Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Denver Broncos Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK Denver Broncos Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-denver-broncos-bumper-case-for-apple-iphone-6-black/1046346.p?id=1219461499715&skuId=1046346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046346_sa.jpg\"}', 'upc' => '681620763102', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL New Orleans Saints Bumper Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK New Orleans Saints Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'description_long' => \"TEAM PROMARK New Orleans Saints Bumper Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; raised bezel; team-specific design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-new-orleans-saints-bumper-case-for-apple-iphone-6-black/1046355.p?id=1219461498241&skuId=1046355', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046355_sa.jpg\"}', 'upc' => '681620763195', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Rance Allen Group - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-rance-allen-group-cd/1046362.p?id=72752&skuId=1046362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046362_sa.jpg\"}', 'upc' => '025218854023', 'provider' => 'bestbuy'],\n ['name' => \"Team ProMark - NFL Carolina Panthers Bump Case for Apple® iPhone® 6 - Black\", 'description_short' => \"TEAM PROMARK Carolina Panthers Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'description_long' => \"TEAM PROMARK Carolina Panthers Bump Case for Apple iPhone 6: Compatible with Apple iPhone 6; PC and TPU materials; rubber edges; team design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-promark-nfl-carolina-panthers-bump-case-for-apple-iphone-6-black/1046364.p?id=1219461496036&skuId=1046364', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046364_sa.jpg\"}', 'upc' => '681620763058', 'provider' => 'bestbuy'],\n ['name' => \"The Best of William Bell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-william-bell-cd/1046380.p?id=74379&skuId=1046380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046380.jpg\"}', 'upc' => '025218854122', 'provider' => 'bestbuy'],\n ['name' => \"The Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-live-cd/1046451.p?id=80923&skuId=1046451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046451_sa.jpg\"}', 'upc' => '025218854528', 'provider' => 'bestbuy'],\n ['name' => \"Blues at Sunrise: Live at Montreux - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-at-sunrise-live-at-montreux-cd/1046479.p?id=87877&skuId=1046479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046479_sa.jpg\"}', 'upc' => '025218854627', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-cd/1046503.p?id=81546&skuId=1046503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046503_sa.jpg\"}', 'upc' => '025218412124', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle: Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-greatest-hits-cd/1046558.p?id=82504&skuId=1046558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046558_sa.jpg\"}', 'upc' => '025218412223', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-cd/1046567.p?id=87907&skuId=1046567&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046567', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046567_sa.jpg\"}', 'upc' => '025218412322', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Fire: Season 1 [5 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-fire-season-1-5-discs-dvd-boxed-set/1046575.p?id=3276603&skuId=1046575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046575_sa.jpg\"}', 'upc' => '025192165696', 'provider' => 'bestbuy'],\n ['name' => \"Chronicle: Their Greatest Stax Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chronicle-their-greatest-stax-hits-cd/1046585.p?id=101678&skuId=1046585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046585_sa.jpg\"}', 'upc' => '025218412421', 'provider' => 'bestbuy'],\n ['name' => \"Live Wire/Blues Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-wire-blues-power-cd/1046594.p?id=87888&skuId=1046594&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046594', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046594_sa.jpg\"}', 'upc' => '025218412827', 'provider' => 'bestbuy'],\n ['name' => \"A Dramatic Experience - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-dramatic-experience-cd/1046638.p?id=80918&skuId=1046638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046638_sa.jpg\"}', 'upc' => '025218413121', 'provider' => 'bestbuy'],\n ['name' => \"Top of the Stax: Twenty Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-of-the-stax-twenty-greatest-hits-cd-various/1046674.p?id=100210&skuId=1046674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046674_sa.jpg\"}', 'upc' => '025218880527', 'provider' => 'bestbuy'],\n ['name' => \"Stax: Top of the Stax, Vol. 2: Twenty... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stax-top-of-the-stax-vol-2-twenty-cd-various/1046709.p?id=100211&skuId=1046709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046709_sa.jpg\"}', 'upc' => '025218880824', 'provider' => 'bestbuy'],\n ['name' => \"...To Be Continued - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-to-be-continued-cd/1046727.p?id=85069&skuId=1046727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046727_sa.jpg\"}', 'upc' => '025218413329', 'provider' => 'bestbuy'],\n ['name' => \"That's Where It's At! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-where-its-at-cd/1046745.p?id=85623&skuId=1046745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046745_sa.jpg\"}', 'upc' => '025218413428', 'provider' => 'bestbuy'],\n ['name' => \"Blues for Elvis: Albert King Does the King's... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-elvis-albert-king-does-the-kings-cd/1046790.p?id=87878&skuId=1046790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046790_sa.jpg\"}', 'upc' => '025218850421', 'provider' => 'bestbuy'],\n ['name' => \"Raw Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raw-blues-cd/1046825.p?id=101254&skuId=1046825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046825_sa.jpg\"}', 'upc' => '025218850827', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hit Singles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hit-singles-cd/1046889.p?id=85058&skuId=1046889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1046889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/1046889_sa.jpg\"}', 'upc' => '025218851527', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Big Stuff - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-big-stuff-cd/1047003.p?id=88299&skuId=1047003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047003_sa.jpg\"}', 'upc' => '025218855426', 'provider' => 'bestbuy'],\n ['name' => \"With a Little Help from My Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-a-little-help-from-my-friends-cd/1047021.p?id=79220&skuId=1047021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047021_sa.jpg\"}', 'upc' => '025218855525', 'provider' => 'bestbuy'],\n ['name' => \"Little Bluebird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-bluebird-cd/1047067.p?id=101252&skuId=1047067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047067_sa.jpg\"}', 'upc' => '025218855822', 'provider' => 'bestbuy'],\n ['name' => \"I'm in a Phone Booth, Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-in-a-phone-booth-baby-cd/1047094.p?id=87884&skuId=1047094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047094_sa.jpg\"}', 'upc' => '025218856027', 'provider' => 'bestbuy'],\n ['name' => \"Soul Folk in Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-folk-in-action-cd/1047110.p?id=100075&skuId=1047110&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047110', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047110_sa.jpg\"}', 'upc' => '025218856126', 'provider' => 'bestbuy'],\n ['name' => \"Up Tight! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-tight-cd/1047138.p?id=75536&skuId=1047138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047138.jpg\"}', 'upc' => '025218856225', 'provider' => 'bestbuy'],\n ['name' => \"The Johnnie Taylor Philosophy Continues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-johnnie-taylor-philosophy-continues-cd/1047156.p?id=101253&skuId=1047156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047156_sa.jpg\"}', 'upc' => '025218856324', 'provider' => 'bestbuy'],\n ['name' => \"Estelle, Myrna and Sylvia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/estelle-myrna-and-sylvia-cd/1047192.p?id=101007&skuId=1047192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047192.jpg\"}', 'upc' => '025218856522', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Ultra 16 GB microSDHC UHS-I/Class 10 Memory Card\", 'description_short' => \"Compatible with most devices with a microSDHC card slot; 16GB capacity; up to 48MB/sec. data transfer rate\", 'description_long' => \"Compatible with most devices with a microSDHC card slot; 16GB capacity; up to 48MB/sec. data transfer rate\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sandisk-ultra-16-gb-microsdhc-uhs-i-class-10-memory-card/1047317.p?id=bb1047317&skuId=1047317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047317_sa.jpg\"}', 'upc' => '619659139773', 'provider' => 'bestbuy'],\n ['name' => \"In a Tidal Wave of Mystery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-a-tidal-wave-of-mystery-cd/1047326.p?id=2721896&skuId=1047326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047326_sa.jpg\"}', 'upc' => '602537458110', 'provider' => 'bestbuy'],\n ['name' => \"Live At The Sahara Tahoe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-sahara-tahoe-cd/1047343.p?id=1534997&skuId=1047343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047343.jpg\"}', 'upc' => '025218880428', 'provider' => 'bestbuy'],\n ['name' => \"We Insist! Max Roach's Freedom Now Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-insist-max-roachs-freedom-now-suite-cd/1047423.p?id=2856404&skuId=1047423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047423.jpg\"}', 'upc' => '031397900222', 'provider' => 'bestbuy'],\n ['name' => \"Wild Women Don't Have the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-women-dont-have-the-blues-cd/1047502.p?id=303769&skuId=1047502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047502.jpg\"}', 'upc' => '031397900826', 'provider' => 'bestbuy'],\n ['name' => \"Jumpin' Punkins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jumpin-punkins-cd/1047557.p?id=303762&skuId=1047557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047557.jpg\"}', 'upc' => '031397901328', 'provider' => 'bestbuy'],\n ['name' => \"That'S It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-it-cd/1047566.p?id=2444038&skuId=1047566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047566_sa.jpg\"}', 'upc' => '031397901427', 'provider' => 'bestbuy'],\n ['name' => \"Jass Reunion (Germany) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jass-reunion-germany-cd/1047628.p?id=2831343&skuId=1047628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047628.jpg\"}', 'upc' => '031397902028', 'provider' => 'bestbuy'],\n ['name' => \"Reincarnation of a Lovebird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reincarnation-of-a-lovebird-cd/1047682.p?id=3245423&skuId=1047682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047682_sa.jpg\"}', 'upc' => '031397902622', 'provider' => 'bestbuy'],\n ['name' => \"Out Front (Spanish) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-front-spanish-cd/1047691.p?id=3165556&skuId=1047691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047691.jpg\"}', 'upc' => '031397902721', 'provider' => 'bestbuy'],\n ['name' => \"Mysterious Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysterious-blues-cd/1047780.p?id=1493308&skuId=1047780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1047780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1047\\/1047780_sa.jpg\"}', 'upc' => '031397904220', 'provider' => 'bestbuy'],\n ['name' => \"Big Hero 6: Battle in the Bay - PRE-OWNED - Nintendo DS\", 'description_short' => \"Use your unique superhero abilities to fight enemies\", 'description_long' => \"Use your unique superhero abilities to fight enemies\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-hero-6-battle-in-the-bay-pre-owned-nintendo-ds/1048029.p?id=1219461496039&skuId=1048029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1048029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1048\\/1048029_sa.jpg\"}', 'upc' => '799007840398', 'provider' => 'bestbuy'],\n ['name' => \"Rocketfish™ - 55mm Circular Polarizer - Gray\", 'description_short' => \"Compatible with most digital camera lenses that have a 55mm diameter; improves contrast and color saturation; reduces reflections\", 'description_long' => \"Compatible with most digital camera lenses that have a 55mm diameter; improves contrast and color saturation; reduces reflections\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/rocketfish-55mm-circular-polarizer-gray/1048555.p?id=1218213534303&skuId=1048555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1048555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1048\\/1048555_rc.jpg\"}', 'upc' => '600603131646', 'provider' => 'bestbuy'],\n ['name' => \"Terribly Happy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terribly-happy-dvd/1048573.p?id=2108837&skuId=1048573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1048573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1048\\/1048573_sa.jpg\"}', 'upc' => '896602002173', 'provider' => 'bestbuy'],\n ['name' => \"G.I. Joe: The Movie (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-i-joe-the-movie-dvd/1048582.p?id=21896&skuId=1048582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1048582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1048\\/1048582_sa.jpg\"}', 'upc' => '826663118810', 'provider' => 'bestbuy'],\n ['name' => \"StarTech - DisplayPort to DVI Video Converter Cable - Black\", 'description_short' => \"DisplayPort Male Digital Audio/Video - DVI-D Male Video - 10ft\", 'description_long' => \"DisplayPort Male Digital Audio/Video - DVI-D Male Video - 10ft\", 'price' => 30.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/startech-displayport-to-dvi-video-converter-cable-black/1049014.p?id=1218265847104&skuId=1049014', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1049\\/1049014_rc.jpg\"}', 'upc' => '065030832182', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1049157.p?id=1218212795392&skuId=1049157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010491575', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1049166.p?id=1218212795391&skuId=1049166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010491667', 'provider' => 'bestbuy'],\n ['name' => \"Between a Rock and a Hard Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/between-a-rock-and-a-hard-place-cd/1049172.p?id=3170336&skuId=1049172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1049\\/1049172.jpg\"}', 'upc' => '719011106822', 'provider' => 'bestbuy'],\n ['name' => \"2-Year Geek Squad Protection Plan\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-year-geek-squad-protection-plan/1049175.p?id=1218212796033&skuId=1049175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400010491759', 'provider' => 'bestbuy'],\n ['name' => \"Shark - Professional Lightweight Iron - Red\", 'description_short' => \"1500W of power; 180&#176; fill tank; easy-push buttons; tapered button tip; turn dial; stainless-steel soleplate; auto off\", 'description_long' => \"1500W of power; 180&#176; fill tank; easy-push buttons; tapered button tip; turn dial; stainless-steel soleplate; auto off\", 'price' => 29.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/shark-professional-lightweight-iron-red/1049688.p?id=1219045790005&skuId=1049688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1049688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1049\\/1049688_rc.jpg\"}', 'upc' => '622356532242', 'provider' => 'bestbuy'],\n ['name' => \"Xerox - DocuMate 3115 Mobile Scanner with Desktop Docking Station - Black\", 'description_short' => \"USB 2.0/1.1 interface; 600 dpi optical resolution; ejectable mobile scanner; desktop docking station; Visioneer OneTouch and Kofax VRS Basic technologies; 20-page automatic document feeder\", 'description_long' => \"USB 2.0/1.1 interface; 600 dpi optical resolution; ejectable mobile scanner; desktop docking station; Visioneer OneTouch and Kofax VRS Basic technologies; 20-page automatic document feeder\", 'price' => 399.99, 'sale_price' => 304.99, 'url' => 'http://www.bestbuy.com/site/xerox-documate-3115-mobile-scanner-with-desktop-docking-station-black/1050569.p?id=1218214263452&skuId=1050569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050569_sa.jpg\"}', 'upc' => '785414112579', 'provider' => 'bestbuy'],\n ['name' => \"Hergest Ridge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hergest-ridge-cd/1050639.p?id=2108071&skuId=1050639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050639_sa.jpg\"}', 'upc' => '600753267554', 'provider' => 'bestbuy'],\n ['name' => \"Metafiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metafiction-cd/1050648.p?id=2123820&skuId=1050648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050648_sa.jpg\"}', 'upc' => '826992504124', 'provider' => 'bestbuy'],\n ['name' => \"Classic Albums: Damn The Torpedoes - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-albums-damn-the-torpedoes-blu-ray-disc/1050657.p?id=2123480&skuId=1050657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050657_sa.jpg\"}', 'upc' => '801213335596', 'provider' => 'bestbuy'],\n ['name' => \"J Roddy Walston and the Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/j-roddy-walston-and-the-business-cd/1050666.p?id=2124513&skuId=1050666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050666_sa.jpg\"}', 'upc' => '601091059627', 'provider' => 'bestbuy'],\n ['name' => \"Caravan Palace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caravan-palace-cd/1050675.p?id=2121982&skuId=1050675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050675_sa.jpg\"}', 'upc' => '875232008625', 'provider' => 'bestbuy'],\n ['name' => \"Ommadawn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ommadawn-cd/1050684.p?id=2108072&skuId=1050684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050684_sa.jpg\"}', 'upc' => '600753267622', 'provider' => 'bestbuy'],\n ['name' => \"An Airplane Carried Me To Bed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-airplane-carried-me-to-bed-cd/1050693.p?id=2126392&skuId=1050693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050693_sa.jpg\"}', 'upc' => '602527442549', 'provider' => 'bestbuy'],\n ['name' => \"Get Low [Original Motion Picture Soundtra] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-low-original-motion-picture-soundtra-cd-original-soundtrack/1050702.p?id=2125034&skuId=1050702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050702_sa.jpg\"}', 'upc' => '011661910027', 'provider' => 'bestbuy'],\n ['name' => \"80's Baby [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/80s-baby-pa-cd/1050711.p?id=2134813&skuId=1050711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050711_sa.jpg\"}', 'upc' => '852819004294', 'provider' => 'bestbuy'],\n ['name' => \"Malos Hábitos (Bad Habits) [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/malos-habitos-bad-habits-digipak-cd/1050748.p?id=2127463&skuId=1050748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050748_sa.jpg\"}', 'upc' => '689230012023', 'provider' => 'bestbuy'],\n ['name' => \"The Night Before [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-night-before-ecd-cd/1050766.p?id=2468221&skuId=1050766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050766_sa.jpg\"}', 'upc' => '602527300153', 'provider' => 'bestbuy'],\n ['name' => \"Emerson, Lake & Palmer: Pictures at an Exhibition (DVD) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emerson-lake-palmer-pictures-at-an-exhibition-dvd-special-edition/1050775.p?id=21590&skuId=1050775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050775_sa.jpg\"}', 'upc' => '801213030194', 'provider' => 'bestbuy'],\n ['name' => \"Family Joules - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/family-joules-cd/1050802.p?id=2126402&skuId=1050802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050802_sa.jpg\"}', 'upc' => '030206694420', 'provider' => 'bestbuy'],\n ['name' => \"Moses Tyson Jr. World Class Gospel... [CD & DVD] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moses-tyson-jr-world-class-gospel-cd-dvd-cd-various/1050811.p?id=2133254&skuId=1050811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050811_sa.jpg\"}', 'upc' => '640075002648', 'provider' => 'bestbuy'],\n ['name' => \"Classic Albums: Damn The Torpedoes (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-albums-damn-the-torpedoes-dvd/1050839.p?id=2123480&skuId=1050839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050839_sa.jpg\"}', 'upc' => '801213029396', 'provider' => 'bestbuy'],\n ['name' => \"Tribal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribal-cd/1050848.p?id=2123812&skuId=1050848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050848_sa.jpg\"}', 'upc' => '795041780324', 'provider' => 'bestbuy'],\n ['name' => \"Elettra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elettra-cd/1050866.p?id=2118068&skuId=1050866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050866_sa.jpg\"}', 'upc' => '875232008229', 'provider' => 'bestbuy'],\n ['name' => \"Connections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/connections-cd/1050875.p?id=2127465&skuId=1050875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050875_sa.jpg\"}', 'upc' => '875232008526', 'provider' => 'bestbuy'],\n ['name' => \"Bar-Do Travel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bar-do-travel-cd/1050884.p?id=2123819&skuId=1050884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1050884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1050\\/1050884_sa.jpg\"}', 'upc' => '826992504025', 'provider' => 'bestbuy'],\n ['name' => \"WWE: The Best of WWE at Madison Square Garden (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-the-best-of-wwe-at-madison-square-garden-dvd-3-disc/1051037.p?id=2709145&skuId=1051037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051037_sa.jpg\"}', 'upc' => '651191951628', 'provider' => 'bestbuy'],\n ['name' => \"A Company Man (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-company-man-dvd/1051082.p?id=2696332&skuId=1051082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051082_sa.jpg\"}', 'upc' => '812491014288', 'provider' => 'bestbuy'],\n ['name' => \"A Company Man (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-company-man-blu-ray-disc/1051222.p?id=2696332&skuId=1051222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051222_sa.jpg\"}', 'upc' => '812491014295', 'provider' => 'bestbuy'],\n ['name' => \"Alyce Kills (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/alyce-kills-dvd/1051231.p?id=2708712&skuId=1051231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051231_sa.jpg\"}', 'upc' => '883476093499', 'provider' => 'bestbuy'],\n ['name' => \"Take Love Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-love-easy-cd/1051275.p?id=66335&skuId=1051275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051275.jpg\"}', 'upc' => '025218070225', 'provider' => 'bestbuy'],\n ['name' => \"The Duke's Big Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dukes-big-four-cd/1051284.p?id=65933&skuId=1051284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051284_sa.jpg\"}', 'upc' => '025218070324', 'provider' => 'bestbuy'],\n ['name' => \"For the First Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-first-time-cd/1051319.p?id=64061&skuId=1051319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051319_sa.jpg\"}', 'upc' => '025218071222', 'provider' => 'bestbuy'],\n ['name' => \"For Lady Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-lady-day-cd/1051373.p?id=70975&skuId=1051373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051373.jpg\"}', 'upc' => '025218094221', 'provider' => 'bestbuy'],\n ['name' => \"Portraits of Duke Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portraits-of-duke-ellington-cd/1051444.p?id=69817&skuId=1051444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051444.jpg\"}', 'upc' => '025218071628', 'provider' => 'bestbuy'],\n ['name' => \"Basie Jam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/basie-jam-cd/1051471.p?id=64002&skuId=1051471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051471_sa.jpg\"}', 'upc' => '025218071826', 'provider' => 'bestbuy'],\n ['name' => \"Virtuoso No. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtuoso-no-2-cd/1051603.p?id=69820&skuId=1051603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051603_sa.jpg\"}', 'upc' => '025218078825', 'provider' => 'bestbuy'],\n ['name' => \"How Long Has This Been Going On? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-long-has-this-been-going-on-cd/1051667.p?id=71681&skuId=1051667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051667.jpg\"}', 'upc' => '025218082129', 'provider' => 'bestbuy'],\n ['name' => \"Fine and Mellow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fine-and-mellow-cd/1051685.p?id=66307&skuId=1051685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051685.jpg\"}', 'upc' => '025218082921', 'provider' => 'bestbuy'],\n ['name' => \"Appassionato - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/appassionato-cd/1051710.p?id=2389791&skuId=1051710&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051710', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051710_sa.jpg\"}', 'upc' => '025218094627', 'provider' => 'bestbuy'],\n ['name' => \"A Perfect Match - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-perfect-match-cd/1051756.p?id=66271&skuId=1051756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051756_sa.jpg\"}', 'upc' => '025218011020', 'provider' => 'bestbuy'],\n ['name' => \"The Duke Ellington Songbook, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-duke-ellington-songbook-vol-1-cd/1051765.p?id=71677&skuId=1051765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051765_sa.jpg\"}', 'upc' => '025218011129', 'provider' => 'bestbuy'],\n ['name' => \"The Duke Ellington Songbook, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-duke-ellington-songbook-vol-2-cd/1051774.p?id=71678&skuId=1051774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051774_sa.jpg\"}', 'upc' => '025218011624', 'provider' => 'bestbuy'],\n ['name' => \"A Classy Pair - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-classy-pair-cd/1051818.p?id=66270&skuId=1051818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051818_sa.jpg\"}', 'upc' => '025218013222', 'provider' => 'bestbuy'],\n ['name' => \"Nice Work If You Can Get It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nice-work-if-you-can-get-it-cd/1051854.p?id=66324&skuId=1051854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051854_sa.jpg\"}', 'upc' => '025218014021', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Louie Bellson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-louie-bellson-cd/1051970.p?id=64133&skuId=1051970&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051970', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051970.jpg\"}', 'upc' => '025218040723', 'provider' => 'bestbuy'],\n ['name' => \"HP - 970 Ink Cartridge - Black\", 'description_short' => \"Compatible with HP Officejet Pro X451dw printers; black ink; delivers crisp documents; yields up to 3,000 pages\", 'description_long' => \"Compatible with HP Officejet Pro X451dw printers; black ink; delivers crisp documents; yields up to 3,000 pages\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-970-ink-cartridge-black/1051974.p?id=1219045597268&skuId=1051974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051974_sa.jpg\"}', 'upc' => '887111103161', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Count Basie [Roulette/Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-count-basie-roulette-pablo-cd/1051998.p?id=64009&skuId=1051998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1051998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1051\\/1051998_sa.jpg\"}', 'upc' => '025218040822', 'provider' => 'bestbuy'],\n ['name' => \"Speak Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speak-love-cd/1052069.p?id=66333&skuId=1052069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052069_sa.jpg\"}', 'upc' => '025218088824', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Jazz Concert in the World - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-jazz-concert-in-the-world-various-cd/1052087.p?id=70029&skuId=1052087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052087_sa.jpg\"}', 'upc' => '025218570428', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 28\\\" Class (27.5\\\" Diag.) - LED - 720p - HDTV - Black\", 'description_short' => \"720p resolution60Hz refresh rate\", 'description_long' => \"720p resolution60Hz refresh rate\", 'price' => 159.99, 'sale_price' => 139.99, 'url' => 'http://www.bestbuy.com/site/insignia-28-class-27-5-diag--led-720p-hdtv-black/1052096.p?id=1219465783489&skuId=1052096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052096_sa.jpg\"}', 'upc' => '600603185182', 'provider' => 'bestbuy'],\n ['name' => \"If You Could See Me Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-you-could-see-me-now-cd/1052185.p?id=2551768&skuId=1052185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052185.jpg\"}', 'upc' => '025218091824', 'provider' => 'bestbuy'],\n ['name' => \"Oscar Peterson with Harry Edison & Eddie Vinson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oscar-peterson-with-harry-edison-eddie-vinson-cd/1052372.p?id=69991&skuId=1052372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052372.jpg\"}', 'upc' => '025218092722', 'provider' => 'bestbuy'],\n ['name' => \"We Did It!: Dora's Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-did-it-doras-greatest-hits-cd/1052521.p?id=2114505&skuId=1052521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052521.jpg\"}', 'upc' => '886977210426', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Tommy Flanagan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-tommy-flanagan-cd/1052540.p?id=66367&skuId=1052540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052540.jpg\"}', 'upc' => '025218041027', 'provider' => 'bestbuy'],\n ['name' => \"Vida Sinaloense - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vida-sinaloense-cd/1052549.p?id=2123274&skuId=1052549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052549_sa.jpg\"}', 'upc' => '886977234026', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dizzy Gillespie [Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dizzy-gillespie-pablo-cd/1052568.p?id=66669&skuId=1052568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052568.jpg\"}', 'upc' => '025218041126', 'provider' => 'bestbuy'],\n ['name' => \"How I'm Rockin [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-im-rockin-pa-digipak-cd/1052576.p?id=2118294&skuId=1052576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052576_sa.jpg\"}', 'upc' => '798304114522', 'provider' => 'bestbuy'],\n ['name' => \"Never Let Me Go [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-let-me-go-slipcase-cd/1052619.p?id=2118282&skuId=1052619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052619_sa.jpg\"}', 'upc' => '639492000184', 'provider' => 'bestbuy'],\n ['name' => \"Live from the Trap:... [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-the-trap-pa-digipak-cd/1052628.p?id=2119797&skuId=1052628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052628_sa.jpg\"}', 'upc' => '654367557365', 'provider' => 'bestbuy'],\n ['name' => \"Northern Cali Lifestyle [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/northern-cali-lifestyle-pa-cd/1052637.p?id=2118292&skuId=1052637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052637_sa.jpg\"}', 'upc' => '793347908121', 'provider' => 'bestbuy'],\n ['name' => \"The Gold Club [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gold-club-pa-digipak-cd/1052646.p?id=2118293&skuId=1052646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052646_sa.jpg\"}', 'upc' => '643363146420', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Sarah Vaughan [Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-sarah-vaughan-pablo-cd/1052648.p?id=71707&skuId=1052648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052648.jpg\"}', 'upc' => '025218041621', 'provider' => 'bestbuy'],\n ['name' => \"Shottaz [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shottaz-pa-cd/1052655.p?id=2119800&skuId=1052655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052655_sa.jpg\"}', 'upc' => '618763510126', 'provider' => 'bestbuy'],\n ['name' => \"Diary of a Wimpy Kid [7/20] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diary-of-a-wimpy-kid-7-20-cd-original-soundtrack/1052664.p?id=2118272&skuId=1052664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052664_sa.jpg\"}', 'upc' => '826924113929', 'provider' => 'bestbuy'],\n ['name' => \"To All Believers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/to-all-believers-cd/1052673.p?id=2119273&skuId=1052673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052673.jpg\"}', 'upc' => '725543921123', 'provider' => 'bestbuy'],\n ['name' => \"All That Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-that-jazz-cd/1052675.p?id=66273&skuId=1052675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052675.jpg\"}', 'upc' => '025218093828', 'provider' => 'bestbuy'],\n ['name' => \"The Best of John Coltrane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-john-coltrane-cd/1052693.p?id=65130&skuId=1052693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052693_sa.jpg\"}', 'upc' => '025218041720', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Art Tatum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-art-tatum-cd/1052719.p?id=71304&skuId=1052719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052719_sa.jpg\"}', 'upc' => '025218041829', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Joe Pass [Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-joe-pass-pablo-cd/1052728.p?id=69809&skuId=1052728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052728_sa.jpg\"}', 'upc' => '025218041928', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Lester Young [Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-lester-young-pablo-cd/1052746.p?id=72246&skuId=1052746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052746.jpg\"}', 'upc' => '025218042024', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Modern Jazz Quartet [Pablo] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-modern-jazz-quartet-pablo-cd/1052808.p?id=69252&skuId=1052808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052808.jpg\"}', 'upc' => '025218042321', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-1-cd/1052826.p?id=71311&skuId=1052826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052826.jpg\"}', 'upc' => '025218042420', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-2-cd/1052835.p?id=71312&skuId=1052835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052835.jpg\"}', 'upc' => '025218042529', 'provider' => 'bestbuy'],\n ['name' => \"Butcher Holler: A Tribute... [Digipak] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/butcher-holler-a-tribute-digipak-various-cd/1052837.p?id=2123270&skuId=1052837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052837.jpg\"}', 'upc' => '701237203027', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-3-cd/1052844.p?id=71313&skuId=1052844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052844_sa.jpg\"}', 'upc' => '025218042628', 'provider' => 'bestbuy'],\n ['name' => \"Cliff Richard: Rare and Unseen (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cliff-richard-rare-and-unseen-dvd/1052846.p?id=2125954&skuId=1052846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052846_sa.jpg\"}', 'upc' => '760137502593', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-4-cd/1052853.p?id=71314&skuId=1052853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052853.jpg\"}', 'upc' => '025218042727', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-5-cd/1052862.p?id=71315&skuId=1052862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052862_sa.jpg\"}', 'upc' => '025218042826', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Hoppers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-hoppers-cd/1052864.p?id=2125033&skuId=1052864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052864_sa.jpg\"}', 'upc' => '617884606121', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-6-cd/1052871.p?id=71316&skuId=1052871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052871_sa.jpg\"}', 'upc' => '025218042925', 'provider' => 'bestbuy'],\n ['name' => \"Tomorrow's Children - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomorrows-children-cd/1052873.p?id=2123264&skuId=1052873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052873.jpg\"}', 'upc' => '611587112323', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-7-cd/1052880.p?id=71317&skuId=1052880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052880_sa.jpg\"}', 'upc' => '025218043021', 'provider' => 'bestbuy'],\n ['name' => \"HitsCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hitscd/1052882.p?id=2133206&skuId=1052882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052882.jpg\"}', 'upc' => '5099964703824', 'provider' => 'bestbuy'],\n ['name' => \"The Tatum Group Masterpieces, Vol. 8 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tatum-group-masterpieces-vol-8-cd/1052899.p?id=71318&skuId=1052899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052899_sa.jpg\"}', 'upc' => '025218043120', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-1-cd/1052906.p?id=71295&skuId=1052906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052906_sa.jpg\"}', 'upc' => '025218043229', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-2-cd/1052915.p?id=71296&skuId=1052915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052915.jpg\"}', 'upc' => '025218043328', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-3-cd/1052924.p?id=71297&skuId=1052924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052924.jpg\"}', 'upc' => '025218043427', 'provider' => 'bestbuy'],\n ['name' => \"Weather Report: Live in Hamburg 1971 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weather-report-live-in-hamburg-1971-dvd/1052928.p?id=2126704&skuId=1052928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052928_sa.jpg\"}', 'upc' => '5060230860008', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-4-cd/1052933.p?id=71298&skuId=1052933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052933_sa.jpg\"}', 'upc' => '025218043526', 'provider' => 'bestbuy'],\n ['name' => \"Nil Recurring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nil-recurring-cd/1052937.p?id=2123263&skuId=1052937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052937_sa.jpg\"}', 'upc' => '802644715025', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-5-cd/1052942.p?id=71299&skuId=1052942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052942_sa.jpg\"}', 'upc' => '025218043625', 'provider' => 'bestbuy'],\n ['name' => \"We Fun: Atlanta, GA Inside/Out (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-fun-atlanta-ga-inside-out-dvd/1052946.p?id=2125759&skuId=1052946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052946.jpg\"}', 'upc' => '760137501992', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 6 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-6-cd/1052951.p?id=71300&skuId=1052951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052951_sa.jpg\"}', 'upc' => '025218043724', 'provider' => 'bestbuy'],\n ['name' => \"Ian Dury: Rare and Unseen (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ian-dury-rare-and-unseen-dvd/1052955.p?id=2125956&skuId=1052955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052955_sa.jpg\"}', 'upc' => '5018755248818', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-7-cd/1052960.p?id=71301&skuId=1052960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052960_sa.jpg\"}', 'upc' => '025218043823', 'provider' => 'bestbuy'],\n ['name' => \"Come Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-alive-cd/1052964.p?id=3183407&skuId=1052964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052964_sa.jpg\"}', 'upc' => '8024391046920', 'provider' => 'bestbuy'],\n ['name' => \"The Specials: 30th Anniversary Tour (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-specials-30th-anniversary-tour-dvd/1052973.p?id=2126705&skuId=1052973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052973_sa.jpg\"}', 'upc' => '760137503293', 'provider' => 'bestbuy'],\n ['name' => \"The Art Tatum Solo Masterpieces, Vol. 8 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-art-tatum-solo-masterpieces-vol-8-cd/1052979.p?id=71302&skuId=1052979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052979_sa.jpg\"}', 'upc' => '025218043922', 'provider' => 'bestbuy'],\n ['name' => \"Five Questions: The New Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-questions-the-new-journey-cd/1052982.p?id=2123272&skuId=1052982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052982_sa.jpg\"}', 'upc' => '707541924894', 'provider' => 'bestbuy'],\n ['name' => \"20 Years of Century Media,... [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-years-of-century-media-digipak-cd-various/1052991.p?id=2125760&skuId=1052991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1052991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1052\\/1052991_sa.jpg\"}', 'upc' => '727701869421', 'provider' => 'bestbuy'],\n ['name' => \"Villa Manifesto [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/villa-manifesto-pa-cd/1053008.p?id=2123262&skuId=1053008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053008_sa.jpg\"}', 'upc' => '099923210221', 'provider' => 'bestbuy'],\n ['name' => \"Jamdown (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamdown-dvd/1053026.p?id=2126706&skuId=1053026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053026_sa.jpg\"}', 'upc' => '760137499299', 'provider' => 'bestbuy'],\n ['name' => \"Nigerian Marketplace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nigerian-marketplace-cd/1053031.p?id=2280249&skuId=1053031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053031_sa.jpg\"}', 'upc' => '025218023122', 'provider' => 'bestbuy'],\n ['name' => \"Back on Money [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-on-money-pa-cd/1053035.p?id=2443625&skuId=1053035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053035.jpg\"}', 'upc' => '099923210320', 'provider' => 'bestbuy'],\n ['name' => \"Round Trip [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/round-trip-digipak-cd/1053044.p?id=2199776&skuId=1053044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053044_sa.jpg\"}', 'upc' => '8024391046821', 'provider' => 'bestbuy'],\n ['name' => \"Album of the Year [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/album-of-the-year-pa-digipak-cd/1053053.p?id=2123269&skuId=1053053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053053_sa.jpg\"}', 'upc' => '659123513227', 'provider' => 'bestbuy'],\n ['name' => \"The Stockholm Concert, 1966 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-stockholm-concert-1966-cd/1053059.p?id=66355&skuId=1053059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053059_sa.jpg\"}', 'upc' => '025218024228', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 28\\\" Class (27.5\\\" Diag.) - LED - 720p - HDTV DVD Combo - Black\", 'description_short' => \"720p resolution60Hz refresh rate\", 'description_long' => \"720p resolution60Hz refresh rate\", 'price' => 189.99, 'sale_price' => 169.99, 'url' => 'http://www.bestbuy.com/site/insignia-28-class-27-5-diag--led-720p-hdtv-dvd-combo-black/1053086.p?id=1219465782595&skuId=1053086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053086_sa.jpg\"}', 'upc' => '600603185007', 'provider' => 'bestbuy'],\n ['name' => \"SunStorm [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunstorm-digipak-cd/1053099.p?id=2123273&skuId=1053099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053099_sa.jpg\"}', 'upc' => '616892092360', 'provider' => 'bestbuy'],\n ['name' => \"Cookin' in Mobile [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cookin-in-mobile-cd-dvd-digipak-cd-dvd/1053105.p?id=2123813&skuId=1053105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053105_sa.jpg\"}', 'upc' => '015707807326', 'provider' => 'bestbuy'],\n ['name' => \"Elements [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elements-digipak-cd/1053114.p?id=2182290&skuId=1053114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053114_sa.jpg\"}', 'upc' => '8024391046623', 'provider' => 'bestbuy'],\n ['name' => \"Having Church - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/having-church-cd/1053120.p?id=127873&skuId=1053120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053120_sa.jpg\"}', 'upc' => '021401709927', 'provider' => 'bestbuy'],\n ['name' => \"Oddsac - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oddsac-dvd/1053141.p?id=2129498&skuId=1053141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053141_sa.jpg\"}', 'upc' => '082354005122', 'provider' => 'bestbuy'],\n ['name' => \"He Will Answer Prayer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/he-will-answer-prayer-cd/1053148.p?id=189907&skuId=1053148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053148_sa.jpg\"}', 'upc' => '021401480826', 'provider' => 'bestbuy'],\n ['name' => \"Gospel Music Workshop of America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gospel-music-workshop-of-america-cd/1053175.p?id=83924&skuId=1053175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053175_sa.jpg\"}', 'upc' => '021401710022', 'provider' => 'bestbuy'],\n ['name' => \"The Hoppers: The Best Of (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hoppers-the-best-of-dvd/1053178.p?id=2125761&skuId=1053178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053178_sa.jpg\"}', 'upc' => '617884606091', 'provider' => 'bestbuy'],\n ['name' => \"Dio [DigDownLoad] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dio-digdownload-digipak-cd/1053187.p?id=2199775&skuId=1053187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053187_sa.jpg\"}', 'upc' => '8024391046722', 'provider' => 'bestbuy'],\n ['name' => \"I Will Let Nothing Separate Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-will-let-nothing-separate-me-cd/1053193.p?id=129789&skuId=1053193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053193_sa.jpg\"}', 'upc' => '021401710121', 'provider' => 'bestbuy'],\n ['name' => \"Hot Wheels: Beat That - PRE-OWNED - Nintendo DS\", 'description_short' => \"Show off your racing skills\", 'description_long' => \"Show off your racing skills\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-wheels-beat-that-pre-owned-nintendo-ds/1053196.p?id=1218215103698&skuId=1053196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053196_sa.jpg\"}', 'upc' => '799007751908', 'provider' => 'bestbuy'],\n ['name' => \"Rev. James Cleveland and the L.A. Gospel... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rev-james-cleveland-and-the-l-a-gospel-cd/1053219.p?id=78011&skuId=1053219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053219.jpg\"}', 'upc' => '021401710329', 'provider' => 'bestbuy'],\n ['name' => \"Live in Washington D.C. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-washington-d-c-cd/1053237.p?id=83921&skuId=1053237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053237_sa.jpg\"}', 'upc' => '021401710428', 'provider' => 'bestbuy'],\n ['name' => \"Ener-G Horse Riders - PRE-OWNED - Nintendo DS\", 'description_short' => \"Explore the world with your loyal horse\", 'description_long' => \"Explore the world with your loyal horse\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ener-g-horse-riders-pre-owned-nintendo-ds/1053239.p?id=1218215100283&skuId=1053239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053239_sa.jpg\"}', 'upc' => '799007752707', 'provider' => 'bestbuy'],\n ['name' => \"You Can Make It If You Try - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-can-make-it-if-you-try-cd/1053282.p?id=129793&skuId=1053282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053282_sa.jpg\"}', 'upc' => '021401480925', 'provider' => 'bestbuy'],\n ['name' => \"Thank You Jesus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thank-you-jesus-cd/1053308.p?id=128086&skuId=1053308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053308.jpg\"}', 'upc' => '021401481120', 'provider' => 'bestbuy'],\n ['name' => \"NBA 2K10 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Live out the pro basketball experience with stunning realism\", 'description_long' => \"Live out the pro basketball experience with stunning realism\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nba-2k10-pre-owned-playstation-3/1053381.p?id=1218215101897&skuId=1053381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053381_sa.jpg\"}', 'upc' => '799007781172', 'provider' => 'bestbuy'],\n ['name' => \"Pokémon Platinum Version - PRE-OWNED - Nintendo DS\", 'description_short' => \"Put a stop to Team Galactic&#039;s villainous plot\", 'description_long' => \"Put a stop to Team Galactic&#039;s villainous plot\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-platinum-version-pre-owned-nintendo-ds/1053414.p?id=1218215103961&skuId=1053414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053414_sc.jpg\"}', 'upc' => '799007781189', 'provider' => 'bestbuy'],\n ['name' => \"He's Worthy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hes-worthy-cd/1053415.p?id=84236&skuId=1053415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053415_sa.jpg\"}', 'upc' => '021401479721', 'provider' => 'bestbuy'],\n ['name' => \"Petz Hamsterz 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"These critters are so darned cute\", 'description_long' => \"These critters are so darned cute\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petz-hamsterz-2-pre-owned-nintendo-ds/1053432.p?id=1218215102494&skuId=1053432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053432_sa.jpg\"}', 'upc' => '799007781202', 'provider' => 'bestbuy'],\n ['name' => \"I See a World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-see-a-world-cd/1053433.p?id=128088&skuId=1053433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053433_sa.jpg\"}', 'upc' => '021401479929', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Pro-Clamp\", 'description_short' => \"From our expanded online assortment; 360&#176; wraparound tube truss clamp; 2&quot; diameter; M10 bolt; 1,000 lb. weight capacity\", 'description_long' => \"From our expanded online assortment; 360&#176; wraparound tube truss clamp; 2&quot; diameter; M10 bolt; 1,000 lb. weight capacity\", 'price' => 19.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/american-dj-pro-clamp/1053441.p?id=1218215100745&skuId=1053441', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053441_sa.jpg\"}', 'upc' => '896312003903', 'provider' => 'bestbuy'],\n ['name' => \"I'll Tell the World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-tell-the-world-cd/1053460.p?id=129957&skuId=1053460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053460.jpg\"}', 'upc' => '021401480123', 'provider' => 'bestbuy'],\n ['name' => \"American DJ - Narrow Pro-Clamp\", 'description_short' => \"From our expanded online assortment; 2&quot; wraparound clamp; medium-duty design; 350 lb. weight capacity\", 'description_long' => \"From our expanded online assortment; 2&quot; wraparound clamp; medium-duty design; 350 lb. weight capacity\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dj-narrow-pro-clamp/1053469.p?id=1218215101666&skuId=1053469', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053469_sa.jpg\"}', 'upc' => '896312003897', 'provider' => 'bestbuy'],\n ['name' => \"Salsa: A Musical History [Box] - CD - Various Box\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salsa-a-musical-history-box-cd-various-box/1053478.p?id=2138701&skuId=1053478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053478_sa.jpg\"}', 'upc' => '846395080070', 'provider' => 'bestbuy'],\n ['name' => \"Reach Beyond the Break - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reach-beyond-the-break-cd/1053488.p?id=130536&skuId=1053488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053488_sa.jpg\"}', 'upc' => '021401480222', 'provider' => 'bestbuy'],\n ['name' => \"I'm Glad About It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-glad-about-it-cd/1053503.p?id=129941&skuId=1053503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053503_sa.jpg\"}', 'upc' => '021401480420', 'provider' => 'bestbuy'],\n ['name' => \"He Lives - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/he-lives-cd/1053521.p?id=127711&skuId=1053521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053521_sa.jpg\"}', 'upc' => '021401480727', 'provider' => 'bestbuy'],\n ['name' => \"APC - Smart-UPS X 1500VA Tower/Rack Mountable UPS - Black\", 'description_short' => \"1500VA/1200W - 5.8 Minute Full Load - 8 x NEMA 5-15R\", 'description_long' => \"1500VA/1200W - 5.8 Minute Full Load - 8 x NEMA 5-15R\", 'price' => 829.99, 'sale_price' => 749.99, 'url' => 'http://www.bestbuy.com/site/apc-smart-ups-x-1500va-tower-rack-mountable-ups-black/1053539.p?id=1218214389482&skuId=1053539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '731304268628', 'provider' => 'bestbuy'],\n ['name' => \"HP - 971 Ink Cartridge - Cyan\", 'description_short' => \"Compatible with select HP Officejet Pro printers; cyan ink; yields up to 2,500 pages\", 'description_long' => \"Compatible with select HP Officejet Pro printers; cyan ink; yields up to 2,500 pages\", 'price' => 78.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-971-ink-cartridge-cyan/1053736.p?id=1219045593702&skuId=1053736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053736_sa.jpg\"}', 'upc' => '887111103178', 'provider' => 'bestbuy'],\n ['name' => \"HP - 971 Ink Cartridge - Magenta\", 'description_short' => \"Compatible with select HP Officejet Pro printers; magenta ink; yields up to 2,500 pages\", 'description_long' => \"Compatible with select HP Officejet Pro printers; magenta ink; yields up to 2,500 pages\", 'price' => 78.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-971-ink-cartridge-magenta/1053854.p?id=1219045591578&skuId=1053854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053854_sa.jpg\"}', 'upc' => '887111103185', 'provider' => 'bestbuy'],\n ['name' => \"HP - 971 Ink Cartridge - Yellow\", 'description_short' => \"Compatible with select HP Officejet Pro printers; yellow ink; yields up to 2,500 pages\", 'description_long' => \"Compatible with select HP Officejet Pro printers; yellow ink; yields up to 2,500 pages\", 'price' => 78.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-971-ink-cartridge-yellow/1053872.p?id=1219045593832&skuId=1053872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1053872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1053\\/1053872_sa.jpg\"}', 'upc' => '887111103192', 'provider' => 'bestbuy'],\n ['name' => \"The Last Temptation of Reid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-temptation-of-reid-cd/1054414.p?id=1848872&skuId=1054414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054414_sa.jpg\"}', 'upc' => '721616008425', 'provider' => 'bestbuy'],\n ['name' => \"Revenge Fantasies of the Impotent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenge-fantasies-of-the-impotent-cd/1054469.p?id=72697&skuId=1054469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054469.jpg\"}', 'upc' => '721616009125', 'provider' => 'bestbuy'],\n ['name' => \"I Blow Minds for a Living - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-blow-minds-for-a-living-cd/1054502.p?id=74570&skuId=1054502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054502_sa.jpg\"}', 'upc' => '721616009422', 'provider' => 'bestbuy'],\n ['name' => \"Livescribe - Livescribe Quick Control Calculator Cards\", 'description_short' => \"Fit a world of mathematical knowledge into your wallet\", 'description_long' => \"Fit a world of mathematical knowledge into your wallet\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livescribe-livescribe-quick-control-calculator-cards/1054547.p?id=1218215100675&skuId=1054547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054547_sa.jpg\"}', 'upc' => '799366693437', 'provider' => 'bestbuy'],\n ['name' => \"The Biggest Ass [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-biggest-ass-single-cd/1054575.p?id=72698&skuId=1054575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054575_sa.jpg\"}', 'upc' => '721616010121', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Gift - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-gift-cd/1054682.p?id=98124&skuId=1054682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054682_sa.jpg\"}', 'upc' => '036172077625', 'provider' => 'bestbuy'],\n ['name' => \"Two Nuns and a Pack Mule - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-nuns-and-a-pack-mule-cd/1054799.p?id=96025&skuId=1054799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054799_sa.jpg\"}', 'upc' => '036172073627', 'provider' => 'bestbuy'],\n ['name' => \"Hey Judester - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hey-judester-cd/1054922.p?id=80413&skuId=1054922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054922_sa.jpg\"}', 'upc' => '036172072828', 'provider' => 'bestbuy'],\n ['name' => \"Century Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/century-days-cd/1054959.p?id=80420&skuId=1054959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054959.jpg\"}', 'upc' => '036172073023', 'provider' => 'bestbuy'],\n ['name' => \"Intellectuals Are the Shoeshine Boys of the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/intellectuals-are-the-shoeshine-boys-of-the-cd/1054977.p?id=1548435&skuId=1054977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054977.jpg\"}', 'upc' => '036172074723', 'provider' => 'bestbuy'],\n ['name' => \"Twelve Point Buck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twelve-point-buck-cd/1054995.p?id=87854&skuId=1054995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1054995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1054\\/1054995_sa.jpg\"}', 'upc' => '036172074822', 'provider' => 'bestbuy'],\n ['name' => \"Americruiser/Jesus Urge Superstar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americruiser-jesus-urge-superstar-cd/1055048.p?id=102836&skuId=1055048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1055048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1055\\/1055048.jpg\"}', 'upc' => '036172075225', 'provider' => 'bestbuy'],\n ['name' => \"Stud Powercock: The Touch and Go Years 1981-1984 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stud-powercock-the-touch-and-go-years-1981-1984-cd/1055128.p?id=91300&skuId=1055128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1055128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1055\\/1055128.jpg\"}', 'upc' => '036172076024', 'provider' => 'bestbuy'],\n ['name' => \"Spiderland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spiderland-cd/1055173.p?id=99147&skuId=1055173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1055173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1055\\/1055173.jpg\"}', 'upc' => '036172076420', 'provider' => 'bestbuy'],\n ['name' => \"The Supersonic Storybook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-supersonic-storybook-cd/1055235.p?id=102840&skuId=1055235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1055235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1055\\/1055235_sa.jpg\"}', 'upc' => '036172077021', 'provider' => 'bestbuy'],\n ['name' => \"Full Nelson Reilly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-nelson-reilly-cd/1055253.p?id=80412&skuId=1055253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1055253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1055\\/1055253.jpg\"}', 'upc' => '036172077120', 'provider' => 'bestbuy'],\n ['name' => \"In the Dark with You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-dark-with-you-cd/1056449.p?id=75922&skuId=1056449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056449_sa.jpg\"}', 'upc' => '033651000822', 'provider' => 'bestbuy'],\n ['name' => \"Legends Of Folk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legends-of-folk-cd/1056458.p?id=82589&skuId=1056458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056458_sa.jpg\"}', 'upc' => '033651003120', 'provider' => 'bestbuy'],\n ['name' => \"Blue Mesa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-mesa-cd/1056635.p?id=94144&skuId=1056635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056635_sa.jpg\"}', 'upc' => '033651003021', 'provider' => 'bestbuy'],\n ['name' => \"Soul Shake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-shake-cd/1056680.p?id=100586&skuId=1056680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056680.jpg\"}', 'upc' => '049891000621', 'provider' => 'bestbuy'],\n ['name' => \"Read My Lips - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/read-my-lips-cd/1056733.p?id=74008&skuId=1056733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056733_sa.jpg\"}', 'upc' => '049891000928', 'provider' => 'bestbuy'],\n ['name' => \"The Prestige Recordings [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-prestige-recordings-box-cd/1056993.p?id=65175&skuId=1056993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1056993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1056\\/1056993_sa.jpg\"}', 'upc' => '025218440523', 'provider' => 'bestbuy'],\n ['name' => \"Razer - 5.1-Channel Soundbar System with Subwoofer - Black\", 'description_short' => \"30W RMS power; dedicated subwoofer; surround sound; Bluetooth 4.0; aptX codec; 3 preset equalizer modes\", 'description_long' => \"30W RMS power; dedicated subwoofer; surround sound; Bluetooth 4.0; aptX codec; 3 preset equalizer modes\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razer-5-1-channel-soundbar-system-with-subwoofer-black/1057028.p?id=1219461499589&skuId=1057028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057028_sa.jpg\"}', 'upc' => '811254025189', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Folio Case for Apple® iPad® Air and iPad Air 2 - Navy/Pink/White/Yellow\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPad Air and iPad Air 2; folio case; protects your device from damage; floral design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPad Air and iPad Air 2; folio case; protects your device from damage; floral design\", 'price' => 39.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-folio-case-for-apple-ipad-air-and-ipad-air-2-navy-pink-white-yellow/1057073.p?id=1219461497665&skuId=1057073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057073_sa.jpg\"}', 'upc' => '5031300088165', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Apple° iPhone° SE, 5s and 5 - Pink\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; polycarbonate and TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; polycarbonate and TPU construction; play-through design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-apple-iphone-se-5s-and-5-pink/1057082.p?id=1219461889371&skuId=1057082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312657746\\/1312657746_sa.jpg\"}', 'upc' => '5031300084600', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Samsung Galaxy S 5 Cell Phones - Pink\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; polycarbonate and TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; polycarbonate and TPU construction; play-through design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-samsung-galaxy-s-5-cell-phones-pink/1057091.p?id=1219461892690&skuId=1057091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057091_sa.jpg\"}', 'upc' => '5031300089247', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Apple° iPhone° 6 and 6s - Black/Gold\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 and 6s; polycarbonate shell; inner TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 and 6s; polycarbonate shell; inner TPU construction; play-through design\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-apple-iphone-6-and-6s-black-gold/1057106.p?id=1219461890704&skuId=1057106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057106_sa.jpg\"}', 'upc' => '5031300084549', 'provider' => 'bestbuy'],\n ['name' => \"Duke Elington Carnegie Hall Concerts,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duke-elington-carnegie-hall-concerts-cd/1057117.p?id=65999&skuId=1057117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057117_sa.jpg\"}', 'upc' => '025218540421', 'provider' => 'bestbuy'],\n ['name' => \"The Artistry of the Modern Jazz Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-artistry-of-the-modern-jazz-quartet-cd/1057126.p?id=69246&skuId=1057126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057126_sa.jpg\"}', 'upc' => '025218301626', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Samsung Galaxy S 5 Cell Phones - Navy/Pink/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; polycarbonate and TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; polycarbonate and TPU construction; play-through design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-samsung-galaxy-s-5-cell-phones-navy-pink-white/1057142.p?id=1219461891066&skuId=1057142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057142_sa.jpg\"}', 'upc' => '5031300089230', 'provider' => 'bestbuy'],\n ['name' => \"Fine Cuts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fine-cuts-cd/1057144.p?id=85722&skuId=1057144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057144.jpg\"}', 'upc' => '019148067820', 'provider' => 'bestbuy'],\n ['name' => \"Blues on the Range - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-on-the-range-cd/1057171.p?id=97167&skuId=1057171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057171.jpg\"}', 'upc' => '019148358928', 'provider' => 'bestbuy'],\n ['name' => \"Isaac Mizrahi New York - Hard Shell Case for Apple° iPhone° SE, 5s and 5 - Navy/Pink/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; polycarbonate and TPU construction; play-through design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; polycarbonate and TPU construction; play-through design\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/isaac-mizrahi-new-york-hard-shell-case-for-apple-iphone-se-5s-and-5-navy-pink-white/1057188.p?id=1219461890703&skuId=1057188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312657739\\/1312657739_sa.jpg\"}', 'upc' => '5031300084594', 'provider' => 'bestbuy'],\n ['name' => \"Gravel Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gravel-road-cd/1057199.p?id=90164&skuId=1057199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057199_sa.jpg\"}', 'upc' => '019148369023', 'provider' => 'bestbuy'],\n ['name' => \"Zydeco to Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zydeco-to-go-cd/1057215.p?id=96036&skuId=1057215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057215.jpg\"}', 'upc' => '019148379022', 'provider' => 'bestbuy'],\n ['name' => \"Comin' Your Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comin-your-way-cd/1057233.p?id=92189&skuId=1057233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057233_sa.jpg\"}', 'upc' => '019148077928', 'provider' => 'bestbuy'],\n ['name' => \"Drinkin' TNT 'n' Smokin' Dynamite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drinkin-tnt-n-smokin-dynamite-cd/1057251.p?id=84491&skuId=1057251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057251_sa.jpg\"}', 'upc' => '019148118225', 'provider' => 'bestbuy'],\n ['name' => \"Can't Keep Lovin' You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-keep-lovin-you-cd/1057260.p?id=85721&skuId=1057260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057260.jpg\"}', 'upc' => '019148148420', 'provider' => 'bestbuy'],\n ['name' => \"Snooky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snooky-cd/1057288.p?id=95526&skuId=1057288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057288.jpg\"}', 'upc' => '019148238725', 'provider' => 'bestbuy'],\n ['name' => \"Take Me Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-me-back-cd/1057313.p?id=78794&skuId=1057313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057313.jpg\"}', 'upc' => '019148258723', 'provider' => 'bestbuy'],\n ['name' => \"Slidewinder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slidewinder-cd/1057331.p?id=97169&skuId=1057331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057331.jpg\"}', 'upc' => '019148268722', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Boogie's Back in Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-boogies-back-in-town-cd/1057368.p?id=104704&skuId=1057368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057368.jpg\"}', 'upc' => '019148288829', 'provider' => 'bestbuy'],\n ['name' => \"After Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-hours-cd/1057386.p?id=94710&skuId=1057386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057386.jpg\"}', 'upc' => '019148308824', 'provider' => 'bestbuy'],\n ['name' => \"Tops - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tops-cd/1057402.p?id=97584&skuId=1057402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057402.jpg\"}', 'upc' => '019148318823', 'provider' => 'bestbuy'],\n ['name' => \"Heart & Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-soul-cd/1057448.p?id=100769&skuId=1057448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057448.jpg\"}', 'upc' => '019148338920', 'provider' => 'bestbuy'],\n ['name' => \"Out to Get You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-to-get-you-cd/1057475.p?id=75400&skuId=1057475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057475.jpg\"}', 'upc' => '019148389021', 'provider' => 'bestbuy'],\n ['name' => \"Cuttin' Loose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuttin-loose-cd/1057509.p?id=76535&skuId=1057509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057509.jpg\"}', 'upc' => '019148409026', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-country-cd/1057545.p?id=98604&skuId=1057545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057545.jpg\"}', 'upc' => '019148439122', 'provider' => 'bestbuy'],\n ['name' => \"R&B - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/r-b-cd/1057563.p?id=97175&skuId=1057563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057563.jpg\"}', 'upc' => '019148449121', 'provider' => 'bestbuy'],\n ['name' => \"Blue Ivory [Blind Pig] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-ivory-blind-pig-cd/1057581.p?id=75243&skuId=1057581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057581.jpg\"}', 'upc' => '019148459120', 'provider' => 'bestbuy'],\n ['name' => \"Steppin' Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steppin-out-cd/1057590.p?id=83920&skuId=1057590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057590.jpg\"}', 'upc' => '019148469129', 'provider' => 'bestbuy'],\n ['name' => \"Help Yourself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/help-yourself-cd/1057616.p?id=77996&skuId=1057616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057616.jpg\"}', 'upc' => '019148479227', 'provider' => 'bestbuy'],\n ['name' => \"Prime Chops: Blind Pig Sampler - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prime-chops-blind-pig-sampler-cd-various/1057652.p?id=75035&skuId=1057652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1057652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1057\\/1057652_sa.jpg\"}', 'upc' => '019148800120', 'provider' => 'bestbuy'],\n ['name' => \"All Because of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-because-of-you-cd/1058848.p?id=103597&skuId=1058848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058848.jpg\"}', 'upc' => '026656272028', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Nocturne - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-nocturne-cd/1058866.p?id=88317&skuId=1058866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058866.jpg\"}', 'upc' => '026656272127', 'provider' => 'bestbuy'],\n ['name' => \"Force Field [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/force-field-pa-cd/1058884.p?id=87530&skuId=1058884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058884.jpg\"}', 'upc' => '026656272226', 'provider' => 'bestbuy'],\n ['name' => \"Still Dangerous [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-dangerous-pa-cd/1058900.p?id=102462&skuId=1058900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058900.jpg\"}', 'upc' => '026656272523', 'provider' => 'bestbuy'],\n ['name' => \"Reinald-O - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reinald-o-cd/1058928.p?id=96407&skuId=1058928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058928_sa.jpg\"}', 'upc' => '026656272721', 'provider' => 'bestbuy'],\n ['name' => \"Love Can't Wait - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-cant-wait-cd/1058937.p?id=89272&skuId=1058937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1058937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1058\\/1058937_sa.jpg\"}', 'upc' => '026656272820', 'provider' => 'bestbuy'],\n ['name' => \"Candy Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/candy-girl-cd/1059017.p?id=93121&skuId=1059017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059017_sa.jpg\"}', 'upc' => '026656870125', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - 30\\\" Built-In Gas Cooktop - Silver\", 'description_short' => \"Front controls; 4 sealed burners; 900-15,000 BTU burner range; simmer burner\", 'description_long' => \"Front controls; 4 sealed burners; 900-15,000 BTU burner range; simmer burner\", 'price' => 1599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-30-built-in-gas-cooktop-silver/1059533.p?id=1218214389352&skuId=1059533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059533_sa.jpg\"}', 'upc' => '883049202471', 'provider' => 'bestbuy'],\n ['name' => \"I Just Want To Sing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-just-want-to-sing-cd/1059785.p?id=72103&skuId=1059785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059785.jpg\"}', 'upc' => '013491400426', 'provider' => 'bestbuy'],\n ['name' => \"Klezmer Giora Feidman: The Magic of the Klezmer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/klezmer-giora-feidman-the-magic-of-the-klezmer-cd/1059794.p?id=82044&skuId=1059794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059794_sa.jpg\"}', 'upc' => '013491400525', 'provider' => 'bestbuy'],\n ['name' => \"Feeling Good - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feeling-good-cd/1059801.p?id=64325&skuId=1059801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059801.jpg\"}', 'upc' => '013491400723', 'provider' => 'bestbuy'],\n ['name' => \"Summer Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summer-night-cd/1059838.p?id=70208&skuId=1059838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059838_sa.jpg\"}', 'upc' => '013491401027', 'provider' => 'bestbuy'],\n ['name' => \"Trinidad Carnival - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trinidad-carnival-cd-various/1059847.p?id=100242&skuId=1059847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059847_sa.jpg\"}', 'upc' => '013491401225', 'provider' => 'bestbuy'],\n ['name' => \"Jazz N Steel From Trinidad & Tobago - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-n-steel-from-trinidad-tobago-cd/1059856.p?id=100241&skuId=1059856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059856_sa.jpg\"}', 'upc' => '013491401324', 'provider' => 'bestbuy'],\n ['name' => \"Carnival Jump-Up - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carnival-jump-up-cd-various/1059865.p?id=100239&skuId=1059865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059865.jpg\"}', 'upc' => '013491401423', 'provider' => 'bestbuy'],\n ['name' => \"Pan Jazz 'N' Calypso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pan-jazz-n-calypso-cd/1059883.p?id=100244&skuId=1059883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059883_sa.jpg\"}', 'upc' => '013491401621', 'provider' => 'bestbuy'],\n ['name' => \"Pan Woman: Steel Band Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pan-woman-steel-band-music-cd-various/1059892.p?id=100243&skuId=1059892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059892_sa.jpg\"}', 'upc' => '013491401720', 'provider' => 'bestbuy'],\n ['name' => \"Sing De Chorus: Calypso from Trinidad and Tobago - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-de-chorus-calypso-from-trinidad-and-tobago-various-cd/1059909.p?id=136483&skuId=1059909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059909_sa.jpg\"}', 'upc' => '013491401829', 'provider' => 'bestbuy'],\n ['name' => \"Having Fun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/having-fun-cd/1059927.p?id=71359&skuId=1059927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059927_sa.jpg\"}', 'upc' => '013491402123', 'provider' => 'bestbuy'],\n ['name' => \"I Never Went Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-never-went-away-cd/1059936.p?id=2188532&skuId=1059936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059936.jpg\"}', 'upc' => '013491500126', 'provider' => 'bestbuy'],\n ['name' => \"My Keyboard Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-keyboard-friends-cd/1059954.p?id=248653&skuId=1059954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1059954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1059\\/1059954.jpg\"}', 'upc' => '013491600222', 'provider' => 'bestbuy'],\n ['name' => \"The Original All-American Sousa! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-all-american-sousa-cd/1060452.p?id=248656&skuId=1060452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060452_sa.jpg\"}', 'upc' => '013491310220', 'provider' => 'bestbuy'],\n ['name' => \"It'S A Good Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-a-good-day-cd/1060657.p?id=70363&skuId=1060657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060657_sa.jpg\"}', 'upc' => '013491400228', 'provider' => 'bestbuy'],\n ['name' => \"The Way Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-way-home-cd/1060666.p?id=155094&skuId=1060666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060666_sa.jpg\"}', 'upc' => '025041100120', 'provider' => 'bestbuy'],\n ['name' => \"Novus Magnificat: Through the Stargate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/novus-magnificat-through-the-stargate-cd/1060693.p?id=80168&skuId=1060693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060693.jpg\"}', 'upc' => '025041100328', 'provider' => 'bestbuy'],\n ['name' => \"Galaxies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/galaxies-cd/1060719.p?id=75711&skuId=1060719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060719.jpg\"}', 'upc' => '025041100427', 'provider' => 'bestbuy'],\n ['name' => \"Jewel Lake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jewel-lake-cd/1060746.p?id=80836&skuId=1060746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060746_sa.jpg\"}', 'upc' => '025041100625', 'provider' => 'bestbuy'],\n ['name' => \"Encounter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/encounter-cd/1060782.p?id=100229&skuId=1060782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060782_sa.jpg\"}', 'upc' => '025041100823', 'provider' => 'bestbuy'],\n ['name' => \"Sacred Space Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacred-space-music-cd/1060826.p?id=80169&skuId=1060826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060826_sa.jpg\"}', 'upc' => '025041101028', 'provider' => 'bestbuy'],\n ['name' => \"Cantilena - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cantilena-cd/1060942.p?id=80835&skuId=1060942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060942.jpg\"}', 'upc' => '025041102124', 'provider' => 'bestbuy'],\n ['name' => \"Thunder Chord - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thunder-chord-cd/1060960.p?id=79046&skuId=1060960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1060960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1060\\/1060960.jpg\"}', 'upc' => '025041102223', 'provider' => 'bestbuy'],\n ['name' => \"Angry Birds Toons: Season One, Volume 1 & 2 [3 Discs] (With Bonus Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angry-birds-toons-season-one-volume-1-2-3-discs-with-bonus-disc-dvd/1061006.p?id=3306140&skuId=1061006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061006.jpg\"}', 'upc' => '043396449183', 'provider' => 'bestbuy'],\n ['name' => \"Flamenco Mystico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flamenco-mystico-cd/1061086.p?id=79540&skuId=1061086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061086.jpg\"}', 'upc' => '025041130028', 'provider' => 'bestbuy'],\n ['name' => \"Listening Booth: 1970 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listening-booth-1970-digipak-cd/1061256.p?id=2123265&skuId=1061256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061256_sa.jpg\"}', 'upc' => '610583349627', 'provider' => 'bestbuy'],\n ['name' => \"Fortress [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fortress-digipak-cd/1061399.p?id=2128798&skuId=1061399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061399_sa.jpg\"}', 'upc' => '728028025576', 'provider' => 'bestbuy'],\n ['name' => \"James and the Giant Peach (Blu-ray Disc) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-and-the-giant-peach-blu-ray-disc-2-disc-special-edition/1061413.p?id=43614&skuId=1061413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061413_sa.jpg\"}', 'upc' => '786936799521', 'provider' => 'bestbuy'],\n ['name' => \"The Last Song (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-song-blu-ray-disc-2-disc/1061459.p?id=2116895&skuId=1061459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061459_sa.jpg\"}', 'upc' => '786936805833', 'provider' => 'bestbuy'],\n ['name' => \"Nothing's Gonna Hold Us Down [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothings-gonna-hold-us-down-ep-digipak-cd/1061486.p?id=2123465&skuId=1061486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061486_sa.jpg\"}', 'upc' => '093624964469', 'provider' => 'bestbuy'],\n ['name' => \"Relentless [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relentless-digipak-cd/1061565.p?id=2123467&skuId=1061565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=1061565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/1061\\/1061565_sa.jpg\"}', 'upc' => '026245207424', 'provider' => 'bestbuy']\n ];\n\n // Insert all the products\n foreach($products as $product) {\n Product::create($product);\n }\n }", "function product()\n {\n if (($data['logedUser'] = $this->_admin_pages()))\n { \n \n $product['content'] = Modules::run('product/_index'); \n \n $data['header'] = '';\n $data['titelHeader'] = $this->lang->line('product');\n $data['content'] = Modules::run('ajaxme/ajaxmeAdminProduct',$product);\n \n \n $this->load->view('general',$data);\n \n }\n }", "public function ShowVendorProducts()\n\t{\n\t\t$GLOBALS['BreadCrumbs'] = array(\n\t\t\tarray(\n\t\t\t\t'name' => GetLang('Vendors'),\n\t\t\t\t'link' => VendorLink()\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'name' => $this->vendor['vendorname'],\n\t\t\t\t'link' => VendorLink($this->vendor)\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'name' => GetLang('Products')\n\t\t\t)\n\t\t);\n\t\t$title = sprintf(GetLang('ProductsFromVendorX'), isc_html_escape($this->vendor['vendorname']));\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->SetPageTitle(GetConfig('StoreName').' - '.$title);\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->SetTemplate('vendor_products');\n\t\t$GLOBALS['ISC_CLASS_TEMPLATE']->ParseTemplate();\n\t}", "function getBrands() {\n $cat = $_POST['cat'];\n echo(json_encode($this->Trader_mdl->getBrands($cat)));\n }", "public function index()\n {\n $products = Product::orderBy('id','desc')->get();\n $categories = DB::table('categories')->get();\n $sub_categories = DB::table('subcategories')->get();\n $brands =DB::table('brands')->get();\n $colors =DB::table('colors')->get();\n $sizes =DB::table('sizes')->get();\n return view('admin.pages.products.index',compact('products','categories','brands','sub_categories','colors','sizes'));\n }", "function getBrandPro(){\n global $db;\n if (isset($_GET['brand'])) {\n $brand_id= $_GET['brand'];\n $get_brand_pro = \"SELECT * FROM products where brand_id='$brand_id'\";\n $run_brand_pro = mysqli_query($db, $get_brand_pro);\n $count = mysqli_num_rows($run_brand_pro);\n if ($count==0) {\n echo \"<h2>No Products found in this Brand!</h2>\";\n }\n while ($row_brand_pro=mysqli_fetch_array($run_brand_pro)) {\n $pro_id = $row_brand_pro['product_id'];\n $pro_title = $row_brand_pro['product_title'];\n $pro_cat = $row_brand_pro['cat_id'];\n $pro_brand = $row_brand_pro['brand_id'];\n $pro_desc = $row_brand_pro['product_desc'];\n $pro_price = $row_brand_pro['product_price'];\n $pro_image = $row_brand_pro['product_img1'];\n\n echo \"\n <div id='single_product'>\n <h3 style='padding-bottom:3px;' >$pro_title</h3>\n <img src='admin_area/product_images/$pro_image' width='180' height='180' /><br/>\n <p><b>Price: $pro_price</b></p>\n <a href='details.php?pro_id=$pro_id' style='float:left;'>Details</a>\n <a href='index.php?add_cart=$pro_id'><button style='float:right;'>Add to Cart</button></a>\n </div>\n \";\n }\n }\n }", "public function index()\n { \n $brands = Product::select('brand')->distinct()->orderBy('brand')->get();\n if(count($brands)>0){\n return view('home')->withBrands($brands);\n }else{\n return view('home');\n }\n }", "function product_brag()\n\t{\n\t\t$storeid = $this->input->get('store_id', TRUE);\n\t\t$prodid = $this->input->get('product_id', TRUE);\n\t\t$userid = $this->session->userdata('id');\n\t\t$this->brag->brag_product($prodid, $userid);\n\t\t$this->brag->increment_product_brag_count($storeid, $prodid);\n\t\t$data = $this->brag->get_product_brag_count($storeid, $prodid);\n\t\techo ($data['0']->brag_counter);\n\t}", "public function create()\n {\n $brands=Brand::all();\n return view('backEnd.admin.product.create', ['brands'=> $brands]);\n }", "public function productByUrlAction()\n {\n $search = \"http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]\";\n $words = explode('/', $search);\n $lastWord = array_pop($words);\n $vars['products'] = $this->model->getProductsBySearch($lastWord);\n $this->view->render('Riding Gear', $vars);\n }", "public function index()\n {\n $units = ProductUnit::orderBy('id','desc')->pluck('name','id');\n $bundles = ProductBundle::orderBy('id','desc')->pluck('name','id');\n return view('admin.product.index',compact('units','bundles'));\n }", "public function product(){\n\n }", "public function index()\n {\n //\n $products = Product::all();\n $data = array();\n foreach ($products as $key => $product) {\n $images = array();\n\n foreach ($product->images as $image) { \n array_push($images,$image->filename);\n }\n\n $categories = array();\n foreach($product->categories as $category){\n array_push($categories,$category);\n }\n\n $data[]=[\n 'id'=> $product->id,\n 'name' => $product->name,\n 'description' => $product->description,\n 'price' => $product->price,\n 'quantity' => $product->quantity,\n 'brands' => $product->brands,\n 'categories' => $categories,\n 'images' => $images,\n ];\n }\n // TODO Remove json_endoe and decode from products.index\n return view('admin.index',['products'=> json_encode($data)], ['brands'=>Brand::all(), 'categories'=>Category::all()]);\n }", "public function getProductsAdvanced($product, $handle){\n\n Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);\n\n $helper = Mage::helper('windsorcircle_export');\n\n $productData_Adv = array();\n\n $stores = Mage::getStoreConfig('windsorcircle_export_options/messages/store');\n if (!empty($stores)) {\n $stores = explode(',', $stores);\n }\n\n foreach ($product->getStoreIds() as $_store) {\n\n if (!empty($stores) && !in_array($_store, $stores)) {\n continue;\n }\n\n Mage::app()->setCurrentStore($_store);\n\n $outputIndividual = false;\n if ($product->isVisibleInSiteVisibility()) {\n $outputIndividual = true;\n }\n\n if (empty($this->categoryList[$_store])) {\n $root_id = Mage::app()->getStore()->getRootCategoryId();\n $this->loadTree($root_id, $_store);\n }\n $this->breadcrumb = array();\n $this->completedBreadcrumbIds = array();\n\n $this->searchArray($product->getCategoryIds(), $this->categoryList[$_store]);\n\n // Image Array\n $images = $this->getImages($product);\n\n $parentIdRelation = $product->getParentSkuRelation();\n\n // Unset $product request path and url if previously set from getProductUrl function\n $product->unsRequestPath();\n $product->unsUrl();\n $url = $product->setStoreId($_store)->getProductUrl(false);\n $categoryList = '\"' . implode('\",\"', $this->breadcrumb) . '\"';\n\n // If no custom attribute for brand then we will use default brand attribute\n $attribute = Mage::getStoreConfig('windsorcircle_export_options/messages/brand_attribute');\n if (empty($attribute)) {\n $brandName = $this->getAttributeValue('brand', $product->getBrand());\n } else {\n $brandName = $this->getAttributeValue($attribute, $product->getData($attribute));\n }\n\n $keyName = $product->getId() . ':' . $_store;\n\n if (empty($productData_Adv[$keyName])) {\n\n $productData_Adv[$keyName] = array(\n $product->getId(),\n $_store,\n ($product->getStatus() == 1 ? 'Y' : 'N'),\n $product->getSku(),\n (!empty($parentIdRelation) ? $parentIdRelation : ''),\n $categoryList,\n $helper->formatString($product->getName()),\n $url,\n array_shift($images),\n $product->getPrice(),\n $product->getSpecialPrice(),\n $this->formatDates($product),\n (!empty($brandName) ? $brandName : ''),\n $this->getAvailability($product),\n $product->getQty(),\n $this->getShippingWeight($product),\n $product->getTypeId(),\n $product->getVisibility()\n );\n\n $customAttributes = Mage::helper('windsorcircle_export')->getCustomAttributes('product');\n\n foreach ($customAttributes as $customAttribute) {\n if ($product->getData($customAttribute) === null) {\n array_push($productData_Adv[$keyName], '');\n continue;\n }\n $data = $product->getResource()->getAttribute($customAttribute)->getFrontEnd()->getValue($product);\n array_push($productData_Adv[$keyName], $helper->formatString($data));\n }\n\n // If product is available for purchase individually then output product without parent\n if ($outputIndividual\n && !empty($productData_Adv[$keyName])\n && (!empty($parentIdRelation))\n ) {\n $productData_Adv[$keyName . ':individual'] = array_values($productData_Adv[$keyName]);\n // Remove parent id or parent id relation from array for invidual product\n $productData_Adv[$keyName . ':individual'][4] = '';\n fputcsv($handle, $productData_Adv[$keyName . ':individual'], \"\\t\");\n }\n }\n\n fputcsv($handle, $productData_Adv[$keyName], \"\\t\");\n }\n\n return;\n }", "public function manageOrderProducts()\n {\n }", "public function indexAction() {\n // Get item information from database\n $item = DB::select('catalog.*', array('brands.name', 'brand_name'), array('brands.alias', 'brand_alias'), array('models.name', 'model_name'), array('catalog_tree.name', 'parent_name'))\n ->from('catalog')\n ->join('catalog_tree', 'LEFT')->on('catalog.parent_id', '=', 'catalog_tree.id')\n ->join('brands', 'LEFT')->on('catalog.brand_id', '=', 'brands.id')->on('brands.status', '=', DB::expr('1'))\n ->join('models', 'LEFT')->on('catalog.model_id', '=', 'models.id')->on('models.status', '=', DB::expr('1'))\n ->where('catalog.status', '=', 1)\n ->where('catalog.alias', '=', Route::param('alias'))\n ->as_object()->execute()->current();\n if( !$item ) { return Config::error(); }\n Route::factory()->setParam('id', $item->id);\n Route::factory()->setParam('group', $item->parent_id);\n // Add to cookie viewed list\n Catalog::factory()->addViewed($item->id);\n // Add plus one to views\n DB::update('catalog')->set(array('views' => (int) $item->views + 1))->where('id', '=', $item->id)->execute();\n // Seo\n $this->setSeoForItem($item);\n // Get images\n $images = DB::select('image')->from('catalog_images')->where('catalog_id', '=', $item->id)->order_by('sort')->as_object()->execute();\n // Get item sizes\n $sizes = DB::select('sizes.*')->from('sizes')\n ->join('catalog_sizes', 'LEFT')->on('catalog_sizes.size_id', '=', 'sizes.id')\n ->where('catalog_sizes.catalog_id', '=', $item->id)\n ->where('sizes.status', '=', 1)\n ->order_by('sizes.name')\n ->as_object()->execute();\n // Get current item specifications list\n $specifications = DB::select('specifications.*')->from('specifications')\n ->join('catalog_tree_specifications', 'LEFT')->on('catalog_tree_specifications.specification_id', '=', 'specifications.id')\n ->where('catalog_tree_specifications.catalog_tree_id', '=', $item->parent_id)\n ->where('specifications.status', '=', 1)\n ->order_by('specifications.name')\n ->as_object()->execute();\n $res = DB::select()->from('specifications_values')\n ->join('catalog_specifications_values', 'LEFT')->on('catalog_specifications_values.specification_value_id', '=', 'specifications_values.id')\n ->where('catalog_specifications_values.catalog_id', '=', $item->id)\n ->where('status', '=', 1)\n ->where('catalog_specifications_values.specification_value_id', '!=', 0)\n ->as_object()->execute();\n $specValues = array();\n foreach( $res AS $obj ) {\n $specValues[$obj->specification_id][] = $obj;\n }\n $spec = array();\n foreach ($specifications as $obj) {\n if( isset($specValues[$obj->id]) AND is_array($specValues[$obj->id]) AND count($specValues[$obj->id]) ) {\n if( $obj->type_id == 3 ) {\n $spec[$obj->name] = '';\n foreach($specValues[$obj->id] AS $o) {\n $spec[$obj->name] .= $o->name.', ';\n }\n $spec[$obj->name] = substr($spec[$obj->name], 0, -2);\n } else {\n $spec[$obj->name] = $specValues[$obj->id][0]->name;\n }\n }\n }\n // Render template\n $this->_content = View::tpl( array('obj' => $item, 'images' => $images, 'sizes' => $sizes, 'specifications' => $spec), 'Catalog/Item' );\n }", "public function all_products()\n\t{\n\t\t$data['product_list']=$this->tbl_product->get_all_product();\n\t\t$data['page']='All Products';\n\t\t$view = 'Admin/collection/admin_all_product_list';\n\t\techo Modules::run('Template/admin_template', $view, $data);\t\n\t}", "public function run()\n {\n $products = [\n ['prodName'=>'Torta de chocolate','prodPrecio'=>'255','prodStock'=>'10','prodDesc'=>'Exquisita torta casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '1'],\n ['prodName'=>'Torta de ricota','prodPrecio'=>'235','prodStock'=>'10','prodDesc'=>'Exquisita torta casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '2'],\n ['prodName'=>'Tarta de espinaca','prodPrecio'=>'135','prodStock'=>'10','prodDesc'=>'Exquisita tarta casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '3'],\n ['prodName'=>'Budin de pan','prodPrecio'=>'335','prodStock'=>'10','prodDesc'=>'Exquisito budin casero.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '4'],\n ['prodName'=>'Empanada de atun','prodPrecio'=>'225','prodStock'=>'10','prodDesc'=>'Exquisita empanada casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '5'],\n ['prodName'=>'Ensalada de fruta','prodPrecio'=>'115','prodStock'=>'10','prodDesc'=>'Una fresca ensalada casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '6'],\n ['prodName'=>'Bomba de papa','prodPrecio'=>'345','prodStock'=>'10','prodDesc'=>'Exquisita bomba de papa casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '7'],\n ['prodName'=>'Sopa de zapallo','prodPrecio'=>'535','prodStock'=>'10','prodDesc'=>'Exquisita sopa casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '8'],\n ['prodName'=>'Albondigas con salsa','prodPrecio'=>'235','prodStock'=>'10','prodDesc'=>'Exquisitas albondigas caseras.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '9'],\n ['prodName'=>'Guiso de lentejas','prodPrecio'=>'135','prodStock'=>'10','prodDesc'=>'Exquisito guiso de lentejas.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '10'],\n ['prodName'=>'Pastel de papa','prodPrecio'=>'435','prodStock'=>'10','prodDesc'=>'Exquisito pastel de papa casero.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '11'],\n ['prodName'=>'Medialunas con miel','prodPrecio'=>'235','prodStock'=>'10','prodDesc'=>'Exquisitas medialunas con miel casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '12'],\n ['prodName'=>'Tortilla de zapallo','prodPrecio'=>'335','prodStock'=>'10','prodDesc'=>'Exquisita tortilla de papa casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '13'],\n ['prodName'=>'Falafel','prodPrecio'=>'135','prodStock'=>'10','prodDesc'=>'Exquisito falafel casero.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '14'],\n ['prodName'=>'Cheesecake','prodPrecio'=>'735','prodStock'=>'10','prodDesc'=>'Exquisito cheesecake casero.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '15'],\n ['prodName'=>'Lasagna','prodPrecio'=>'535','prodStock'=>'10','prodDesc'=>'Exquisita lasagna casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '16'],\n ['prodName'=>'Milanesa','prodPrecio'=>'435','prodStock'=>'10','prodDesc'=>'Exquisita milanesa casera.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '17'],\n ['prodName'=>'Lemonpie','prodPrecio'=>'435','prodStock'=>'10','prodDesc'=>'Exquisito lemonpie casero.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '18'],\n ['prodName'=>'Anillos de cebolla','prodPrecio'=>'435','prodStock'=>'10','prodDesc'=>'Exquisitos anillos de cebolla caseros.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Salado', 'id' => '19'],\n ['prodName'=>'Torta romana','prodPrecio'=>'435','prodStock'=>'10','prodDesc'=>'La mejor torta.','prodImagen'=>'avatars/default.jpg','prodSabor'=>'Dulce', 'id' => '20'],\n ];\n $ingredients = [\n ['name'=>'Lechuga', 'id' => '1'], ['name'=>'Tomate', 'id' => '2'], ['name'=>'Chocolate', 'id' => '3'],\n ['name'=>'Ricota', 'id' => '4'], ['name'=>'Queso', 'id' => '5'], ['name'=>'Crema', 'id' => '6'],\n ['name'=>'Papa', 'id' => '7'], ['name'=>'Atun', 'id' => '8'], ['name'=>'Zapallo', 'id' => '9'],\n ['name'=>'Lentejas', 'id' => '10'], ['name'=>'Espinaca', 'id' => '11'], ['name'=>'Cebolla', 'id' => '12'],\n ['name'=>'Pan', 'id' => '13'], ['name'=>'Limon', 'id' => '14'], ['name'=>'Fruta', 'id' => '15'],\n ['name'=>'Miel', 'id' => '16'],\n ];\n $categories = [\n ['name'=>'Tortas', 'id' => '1'], ['name'=>'Tartas', 'id' => '2'], ['name'=>'Empanadas', 'id' => '3'],\n ['name'=>'Guisos', 'id' => '4'], ['name'=>'Sopas', 'id' => '5'], ['name'=>'Pastas', 'id' => '6'],\n ['name'=>'Carnes', 'id' => '7'], ['name'=>'Verduras', 'id' => '8'], ['name'=>'Ensaladas', 'id' => '9'],\n ['name'=>'Entradas', 'id' => '9'], ['name'=>'Pasteleria', 'id' => '10'],\n ];\n foreach ($products as $product) {\n DB::table('products')->insert([\n 'name' => $product['prodName'],\n 'price'=> $product['prodPrecio'],\n 'stock'=> $product['prodStock'],\n 'description'=> $product['prodDesc'],\n 'flavour'=> $product['prodSabor'],\n 'image'=> $product['prodImagen'],\n ]);\n }\n foreach ($ingredients as $ingredient) {\n DB::table('ingredients')->insert([\n 'name' => $ingredient['name'],\n ]);\n }\n foreach ($categories as $category) {\n DB::table('categories')->insert([\n 'name' => $category['name'],\n ]);\n }\n DB::table('users')->insert([\n 'name' => 'Admin',\n 'last_name' => 'ADMIN',\n 'country' => 'Matrix',\n 'province' => 'Hacker',\n 'email' => '[email protected]',\n 'password' => Hash::make('asd123'),\n 'age' => '18',\n 'admin' => '1',\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[0]['id'],\n 'ingredient_id' => $ingredients[2]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[0]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[1]['id'],\n 'ingredient_id' => $ingredients[3]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[1]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[2]['id'],\n 'ingredient_id' => $ingredients[10]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[2]['id'],\n 'category_id' => $categories[1]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[3]['id'],\n 'ingredient_id' => $ingredients[12]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[3]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[4]['id'],\n 'ingredient_id' => $ingredients[7]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[4]['id'],\n 'category_id' => $categories[2]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[5]['id'],\n 'ingredient_id' => $ingredients[14]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[5]['id'],\n 'category_id' => $categories[8]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[6]['id'],\n 'ingredient_id' => $ingredients[7]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[6]['id'],\n 'category_id' => $categories[9]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[7]['id'],\n 'ingredient_id' => $ingredients[8]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[7]['id'],\n 'category_id' => $categories[4]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[8]['id'],\n 'ingredient_id' => $ingredients[5]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[8]['id'],\n 'category_id' => $categories[6]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[9]['id'],\n 'ingredient_id' => $ingredients[9]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[9]['id'],\n 'category_id' => $categories[3]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[10]['id'],\n 'ingredient_id' => $ingredients[6]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[10]['id'],\n 'category_id' => $categories[6]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[11]['id'],\n 'ingredient_id' => $ingredients[12]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[11]['id'],\n 'category_id' => $categories[9]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[12]['id'],\n 'ingredient_id' => $ingredients[8]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[12]['id'],\n 'category_id' => $categories[1]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[13]['id'],\n 'ingredient_id' => $ingredients[10]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[13]['id'],\n 'category_id' => $categories[7]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[14]['id'],\n 'ingredient_id' => $ingredients[4]['id'],\n ]);\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[14]['id'],\n 'ingredient_id' => $ingredients[5]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[14]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[15]['id'],\n 'ingredient_id' => $ingredients[1]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[15]['id'],\n 'category_id' => $categories[5]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[16]['id'],\n 'ingredient_id' => $ingredients[12]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[16]['id'],\n 'category_id' => $categories[6]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[17]['id'],\n 'ingredient_id' => $ingredients[13]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[17]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[18]['id'],\n 'ingredient_id' => $ingredients[11]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[18]['id'],\n 'category_id' => $categories[8]['id'],\n ]);\n\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[19]['id'],\n 'ingredient_id' => $ingredients[0]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[19]['id'],\n 'category_id' => $categories[0]['id'],\n ]);\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[19]['id'],\n 'ingredient_id' => $ingredients[1]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[19]['id'],\n 'category_id' => $categories[1]['id'],\n ]);\n DB::table('ingredient_product')->insert([\n 'product_id' => $products[19]['id'],\n 'ingredient_id' => $ingredients[2]['id'],\n ]);\n DB::table('category_product')->insert([\n 'product_id' => $products[19]['id'],\n 'category_id' => $categories[2]['id'],\n ]);\n\n }", "public function productList($slug, $type, $category_id)\n {\n $brand = [];\n $products = Product::where('status', 1)->where('deleted_at', NULL);\n if ($type == 1) {\n $cate_name = TopCategory::find($category_id);\n $label = $cate_name->top_cate_name;\n $brand = Brand::where('top_category_id', $category_id)->where('status', 1)->get();\n $products->where('top_category_id', $category_id);\n } elseif ($type == 2) {\n $cate_name = SubCategory::with('topCategory')->find($category_id);\n $label = $cate_name->TopCategory->top_cate_name;\n $brand = Brand::where('sub_category_id', $category_id)->where('status', 1)->get();\n $products->where('sub_category_id', $category_id);\n } else {\n $cate_name = ThirdLevelCategory::with(['topCategory', 'subCategory'])->find($category_id);\n $label = $cate_name->TopCategory->top_cate_name;\n $brand = Brand::where('sub_category_id', $cate_name->top_category_id)->where('status', 1)->get();\n $products->where('third_level_sub_category_id', $category_id);\n }\n $min_price = $products->min('price');\n $max_price = $products->max('price');\n $products = $products->orderBy('id', 'desc')->paginate(18);\n $top_category = DB::table('top_category')\n ->where('status', 1)\n ->get();\n\n $categories = [];\n foreach ($top_category as $key => $item) {\n\n $sub_categories = DB::table('sub_category')\n ->where('top_category_id', $item->id)\n ->where('status', 1)\n ->orderBy('id', 'ASC')\n ->get();\n\n if (!empty($sub_categories) && count($sub_categories) > 0) {\n\n foreach ($sub_categories as $keys => $items) {\n\n $last_categories = DB::table('third_level_sub_category')\n ->where('sub_category_id', $items->id)\n ->where('status', 1)\n ->orderBy('id', 'ASC')\n ->get();\n\n $items->last_category = $last_categories;\n }\n }\n\n $categories[] = [\n 'top_category_id' => $item->id,\n 'top_cate_name' => $item->top_cate_name,\n 'sub_categories' => $sub_categories\n ];\n }\n $price_range = [\n 'min' => $min_price,\n 'max' => $max_price\n ];\n return view('web.product.product-list', compact('products', 'label', 'categories', 'brand', 'category_id', 'type', 'price_range'));\n }", "public function GetAllProduct(){\r\n\t\r\n\t\t\t$m_product = new m_product();\r\n\t\t\t$CatFlowingPro = $m_product->GetAll();\r\n\t\t\r\n\t\t\r\n\t\t\t//view\r\n\t\t\tinclude(\"view/layout/header.php\");\r\n\t\t\tinclude(\"view/layout/menu.php\");\r\n\t\t\tinclude(\"view/category/cat_detail.php\");\r\n\t\t\tinclude(\"view/layout/footer.php\");\r\n\t\t}", "public function getBrandlisturl(){ \n\t\treturn Mage::helper('brand')->resultUrl();\n\t}", "public function listAction() {\n\t\t// Recogemos el repositorio\n\t\t$repository = $this->getDoctrine() ->getRepository('AppBundle:Product');\n\t\n\t\t// Recuperamos todos los productos.\n\t\t$products = $repository->findAll();\n\t\t// Pasamos a la plantilla el aray products\n\t\treturn $this->render('product/listActionProduct.html.twig', array( 'products' => $products));\n\t\n\t}", "public function getProducts() {\n return $this->hasMany(Product::className(), ['brand_id' => 'id']); // second param - field in dependent table\n }", "public function index()\n\t{ \n\t\t// Get data\n\n\t $entries = ProductService::where('type','product')->paginate(10); \n\n\t $this->layout->title = 'Proizvodi | BillingCRM';\n\t \n\t $this->layout->content = View::make('backend.product.index', compact('entries'));\n\n\t}", "public function actionIndex() {\n\t\t\t\t$params = $this->params;\n $clean_resp = [];\n\n\t\t\t\t$search_result = Product::find()->where(['bar_code'=>$params['bar_code']])->all();\n\t\t\t\tif (!isset($search_result)) { return $this->returnResponse(9101); }\n\t\t\t foreach ($search_result as $key => $value)\n\t\t\t\t{\n\t\t\t\t\t$productDetail_query = ProductItem :: find()\n\t ->with(['size', 'color'])\n\t ->where(['product_id' => $value->id])\n\t ->one();\n\t\t\t\t\t$sizes = [\n\t\t\t\t\t\t 'id' => $productDetail_query->size['id'],\n\t\t\t\t\t\t\t'name' => Yii::$app->gFunctions->translate($productDetail_query->size, 'name', $this->language)\n\t\t\t\t\t];\n\t\t\t\t\t$colors = [\n\t\t\t\t\t\t 'id' => $productDetail_query->color['id'],\n\t\t\t\t\t\t\t'name' => Yii::$app->gFunctions->translate($productDetail_query->color, 'name', $this->language),\n\t\t\t\t\t\t\t'hex' => $productDetail_query->color['hex'],\n\t\t\t\t\t\t\t'checkbox' => $productDetail_query->color['checkbox'],\n\t\t\t\t\t\t\t'hex2' => $productDetail_query->color['hex2'],\n\t\t\t\t\t\t\t'icon' => $productDetail_query->color['icon'],\n\t\t\t\t\t\t\t'border' => $productDetail_query->color['border_hex']\n\t\t\t\t\t];\n\t\t\t\t\t$images = $productDetail_query->image;\n\t $clean_resp [] = [\n\t 'id' => $productDetail_query->id,\n\t 'name' => Yii::$app->gFunctions->translate($productDetail_query, 'name', $this->language),\n\t 'price' => $productDetail_query->price,\n\t 'description' => Yii::$app->gFunctions->translate($productDetail_query->product, 'description', $this->language),\n\t\t\t\t\t\t\t //TODO 'image' =>\n\t\t\t\t\t\t\t //TODO 'icon' =>\n\t\t\t\t\t\t\t //TODO 'category' =>\n\t\t\t\t\t\t\t //TODO 'brand' =>\n\t 'colors' => $colors,\n\t 'sizes' => $sizes\n\t ];\n\t\t\t\t}\n\t\t\t return $this->returnResponse(200, $clean_resp);\n\t\t}", "public function run()\n {\n $products = [\n ['name' => \"Professional Fisherman's Tour: Northern Hemisphere - PRE-OWNED - Nintendo DS\", 'description_short' => \"Reel in big ones from around the world\", 'description_long' => \"Reel in big ones from around the world\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/professional-fishermans-tour-northern-hemisphere-pre-owned-nintendo-ds/2017905.p?id=1218306049071&skuId=2017905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2017905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2017\\/2017905_sa.jpg\"}', 'upc' => '799007769439', 'provider' => 'bestbuy'],\n ['name' => \"Go Diego Go: Great Dinosaur Rescue - PRE-OWNED - Nintendo DS\", 'description_short' => \"Can you help Maia the Maiasaura find her family?\", 'description_long' => \"Can you help Maia the Maiasaura find her family?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-diego-go-great-dinosaur-rescue-pre-owned-nintendo-ds/2017914.p?id=1218306019043&skuId=2017914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2017914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2017\\/2017914_sa.jpg\"}', 'upc' => '799007769446', 'provider' => 'bestbuy'],\n ['name' => \"Cake Mania 2 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take the cake to the next level\", 'description_long' => \"Take the cake to the next level\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cake-mania-2-pre-owned-nintendo-ds/2017923.p?id=1218306017801&skuId=2017923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2017923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2017\\/2017923_sa.jpg\"}', 'upc' => '799007769453', 'provider' => 'bestbuy'],\n ['name' => \"Major League Baseball 2K8 - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Slide into realistic and exciting baseball drama\", 'description_long' => \"Slide into realistic and exciting baseball drama\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/major-league-baseball-2k8-pre-owned-nintendo-wii/2017969.p?id=1218306044352&skuId=2017969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2017969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2017\\/2017969_sa.jpg\"}', 'upc' => '799007769484', 'provider' => 'bestbuy'],\n ['name' => \"Alone in the Dark - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Central Park is about to get a lot weirder\", 'description_long' => \"Central Park is about to get a lot weirder\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-in-the-dark-pre-owned-nintendo-wii/2017996.p?id=1218306044230&skuId=2017996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2017996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2017\\/2017996_sa.jpg\"}', 'upc' => '799007769514', 'provider' => 'bestbuy'],\n ['name' => \"Bratz Girlz Really Rock - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Join the Bratz for a rocking summer at camp\", 'description_long' => \"Join the Bratz for a rocking summer at camp\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bratz-girlz-really-rock-pre-owned-nintendo-wii/2018012.p?id=1218306022831&skuId=2018012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018012_sa.jpg\"}', 'upc' => '799007769538', 'provider' => 'bestbuy'],\n ['name' => \"A Very Special Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-very-special-christmas-cd/2018019.p?id=2763296&skuId=2018019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018019_sa.jpg\"}', 'upc' => '602537538102', 'provider' => 'bestbuy'],\n ['name' => \"Final Fantasy XIII - PRE-OWNED - PlayStation 3\", 'description_short' => \"Summon the courage to face your destiny\", 'description_long' => \"Summon the courage to face your destiny\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/final-fantasy-xiii-pre-owned-playstation-3/2018021.p?id=1218306047709&skuId=2018021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018021_sa.jpg\"}', 'upc' => '799007769545', 'provider' => 'bestbuy'],\n ['name' => \"Crow Jane Alley/Pistola - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crow-jane-alley-pistola-cd/2018028.p?id=2747605&skuId=2018028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018028_sa.jpg\"}', 'upc' => '826992033921', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2018037.p?id=2752394&skuId=2018037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018037_sa.jpg\"}', 'upc' => '602537500376', 'provider' => 'bestbuy'],\n ['name' => \"Live at Montreux [CD/DVD] [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-montreux-cd-dvd-cd-dvd-cd-dvd/2018046.p?id=2748047&skuId=2018046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2185\\/21859113.jpg\"}', 'upc' => '826992033525', 'provider' => 'bestbuy'],\n ['name' => \"Fortress - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fortress-cd/2018055.p?id=2752460&skuId=2018055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018055_sa.jpg\"}', 'upc' => '602537522149', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2018064.p?id=2752342&skuId=2018064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018064_sa.jpg\"}', 'upc' => '602537469895', 'provider' => 'bestbuy'],\n ['name' => \"Fortress [Best Buy Exclusive] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fortress-best-buy-exclusive-cd/2018073.p?id=2760920&skuId=2018073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018073_sa.jpg\"}', 'upc' => '602537549870', 'provider' => 'bestbuy'],\n ['name' => \"NETGEAR - Arlo Smart Home Add-On Indoor/Outdoor Wireless High-Definition Security Camera - White/Black\", 'description_short' => \"Compatible with Arlo base stations; includes camera, magnetic camera mount and hardware; CMOS image sensor; 25&#039; night vision range; patented wireless design\", 'description_long' => \"Compatible with Arlo base stations; includes camera, magnetic camera mount and hardware; CMOS image sensor; 25&#039; night vision range; patented wireless design\", 'price' => 159.99, 'sale_price' => 139.99, 'url' => 'http://www.bestbuy.com/site/netgear-arlo-smart-home-add-on-indoor-outdoor-wireless-high-definition-security-camera-white-black/2018091.p?id=1219522220549&skuId=2018091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018091_rc.jpg\"}', 'upc' => '606449107647', 'provider' => 'bestbuy'],\n ['name' => \"Masters Of Modern Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masters-of-modern-blues-cd/2018104.p?id=2387141&skuId=2018104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018104_sa.jpg\"}', 'upc' => '012928500128', 'provider' => 'bestbuy'],\n ['name' => \"Masters of Modern Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masters-of-modern-blues-cd/2018140.p?id=107247&skuId=2018140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018140_sa.jpg\"}', 'upc' => '012928500227', 'provider' => 'bestbuy'],\n ['name' => \"Amazing Grace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amazing-grace-cd/2018417.p?id=107251&skuId=2018417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018417_sa.jpg\"}', 'upc' => '012928500425', 'provider' => 'bestbuy'],\n ['name' => \"Closest to the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/closest-to-the-sun-cd/2018505.p?id=107253&skuId=2018505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018505_sa.jpg\"}', 'upc' => '063757807421', 'provider' => 'bestbuy'],\n ['name' => \"Burn My Eyes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/burn-my-eyes-cd/2018514.p?id=107230&skuId=2018514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018514_sa.jpg\"}', 'upc' => '016861901622', 'provider' => 'bestbuy'],\n ['name' => \"Jeep Beats for Bassheadz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jeep-beats-for-bassheadz-cd/2018550.p?id=107266&skuId=2018550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018550_sa.jpg\"}', 'upc' => '784023100427', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2018578.p?id=107255&skuId=2018578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018578_sa.jpg\"}', 'upc' => '063757803423', 'provider' => 'bestbuy'],\n ['name' => \"Baseball: The American Epic - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baseball-the-american-epic-cd-original-soundtrack/2018738.p?id=107153&skuId=2018738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018738.jpg\"}', 'upc' => '075597934021', 'provider' => 'bestbuy'],\n ['name' => \"Layaway - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/layaway-cd/2018774.p?id=110489&skuId=2018774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018774_sa.jpg\"}', 'upc' => '092592112124', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Someone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-someone-cd/2018783.p?id=110777&skuId=2018783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018783.jpg\"}', 'upc' => '092592112223', 'provider' => 'bestbuy'],\n ['name' => \"Afrique - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afrique-cd/2018827.p?id=107526&skuId=2018827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018827_sa.jpg\"}', 'upc' => '092592112421', 'provider' => 'bestbuy'],\n ['name' => \"Beauty Within - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beauty-within-cd/2018845.p?id=107529&skuId=2018845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018845_sa.jpg\"}', 'upc' => '092592112520', 'provider' => 'bestbuy'],\n ['name' => \"Mars Audiac Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mars-audiac-quintet-cd/2018854.p?id=105780&skuId=2018854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018854_sa.jpg\"}', 'upc' => '075596166928', 'provider' => 'bestbuy'],\n ['name' => \"Transformation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformation-cd/2018872.p?id=107523&skuId=2018872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018872_sa.jpg\"}', 'upc' => '092592112629', 'provider' => 'bestbuy'],\n ['name' => \"Going Back Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-back-home-cd/2018934.p?id=108125&skuId=2018934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2018934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2018\\/2018934.jpg\"}', 'upc' => '019148501324', 'provider' => 'bestbuy'],\n ['name' => \"Legends: Solo Guitar Performances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legends-solo-guitar-performances-cd/2019005.p?id=107967&skuId=2019005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019005.jpg\"}', 'upc' => '013431461623', 'provider' => 'bestbuy'],\n ['name' => \"Paradise [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paradise-digipak-cd/2019009.p?id=2743640&skuId=2019009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019009_sa.jpg\"}', 'upc' => '888072343368', 'provider' => 'bestbuy'],\n ['name' => \"Now & Then: Slipstream + Opus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-then-slipstream-opus-cd/2019018.p?id=2753233&skuId=2019018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019018_sa.jpg\"}', 'upc' => '805859048025', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of Mary Mary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-mary-mary-cd/2019027.p?id=2755790&skuId=2019027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019027_sa.jpg\"}', 'upc' => '707541991797', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to Vesta Williams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-vesta-williams-cd/2019036.p?id=2755782&skuId=2019036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019036_sa.jpg\"}', 'upc' => '707541991698', 'provider' => 'bestbuy'],\n ['name' => \"The Sandlot (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sandlot-blu-ray-disc/2019093.p?id=24288&skuId=2019093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019093.jpg\"}', 'upc' => '024543703525', 'provider' => 'bestbuy'],\n ['name' => \"Robots (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robots-blu-ray-disc/2019109.p?id=1397677&skuId=2019109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019109_sa.jpg\"}', 'upc' => '024543703549', 'provider' => 'bestbuy'],\n ['name' => \"The Bible: In the Beginning (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bible-in-the-beginning-blu-ray-disc/2019118.p?id=41714&skuId=2019118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019118_sa.jpg\"}', 'upc' => '024543706922', 'provider' => 'bestbuy'],\n ['name' => \"Gulliver's Travels (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gullivers-travels-blu-ray-disc-3-disc/2019145.p?id=2196388&skuId=2019145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019145_sa.jpg\"}', 'upc' => '024543678564', 'provider' => 'bestbuy'],\n ['name' => \"Strawberry Shortcake: Puttin' On the Glitz (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strawberry-shortcake-puttin-on-the-glitz-dvd/2019154.p?id=2185836&skuId=2019154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2019154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2019\\/2019154_sa.jpg\"}', 'upc' => '024543717782', 'provider' => 'bestbuy'],\n ['name' => \"Melophobia [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melophobia-digipak-cd/2020004.p?id=2749303&skuId=2020004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020004_sa.jpg\"}', 'upc' => '888837627726', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2020496.p?id=2184838&skuId=2020496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020496_sa.jpg\"}', 'upc' => '602527621258', 'provider' => 'bestbuy'],\n ['name' => \"Entre La Ciudad Y El Mar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/entre-la-ciudad-y-el-mar-cd/2020557.p?id=2186255&skuId=2020557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020557_sa.jpg\"}', 'upc' => '602527629902', 'provider' => 'bestbuy'],\n ['name' => \"Most Wanted - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/most-wanted-cd/2020566.p?id=2186550&skuId=2020566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020566_sa.jpg\"}', 'upc' => '054645192620', 'provider' => 'bestbuy'],\n ['name' => \"Bashtown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bashtown-cd/2020575.p?id=2182757&skuId=2020575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020575_sa.jpg\"}', 'upc' => '044003134836', 'provider' => 'bestbuy'],\n ['name' => \"Blessed [LP] - VINYL - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blessed-lp-vinyl-cd/2020727.p?id=2184379&skuId=2020727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020727.jpg\"}', 'upc' => '602527595917', 'provider' => 'bestbuy'],\n ['name' => \"Blessed [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blessed-deluxe-edition-digipak-cd/2020745.p?id=2184378&skuId=2020745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020745_sa.jpg\"}', 'upc' => '602527614304', 'provider' => 'bestbuy'],\n ['name' => \"Relentless Reckless Forever [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relentless-reckless-forever-cd-dvd-digipak-cd-dvd/2020763.p?id=2186535&skuId=2020763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020763.jpg\"}', 'upc' => '602527604657', 'provider' => 'bestbuy'],\n ['name' => \"Bring Him Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bring-him-home-cd/2020772.p?id=2184373&skuId=2020772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2020772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2020\\/2020772_sa.jpg\"}', 'upc' => '602527592107', 'provider' => 'bestbuy'],\n ['name' => \"Bangerz [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bangerz-pa-cd/2021003.p?id=2749324&skuId=2021003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021003_sa.jpg\"}', 'upc' => '888837452328', 'provider' => 'bestbuy'],\n ['name' => \"OGIO - Tribune Laptop Backpack - Black\", 'description_short' => \"Fits most laptops with up to a 17&quot; display; padded Apple&#174; iPad&#174;, tablet or e-reader pocket; large main compartment; deluxe front organizer; ergonomic shoulder straps; adjustable sternum strap\", 'description_long' => \"Fits most laptops with up to a 17&quot; display; padded Apple&#174; iPad&#174;, tablet or e-reader pocket; large main compartment; deluxe front organizer; ergonomic shoulder straps; adjustable sternum strap\", 'price' => 49.99, 'sale_price' => 43.99, 'url' => 'http://www.bestbuy.com/site/ogio-tribune-laptop-backpack-black/2021058.p?id=1219068378660&skuId=2021058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021058_sa.jpg\"}', 'upc' => '031652179677', 'provider' => 'bestbuy'],\n ['name' => \"The Longest Day: Classic War Films - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-longest-day-classic-war-films-cd/2021555.p?id=107297&skuId=2021555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021555_sa.jpg\"}', 'upc' => '738572103620', 'provider' => 'bestbuy'],\n ['name' => \"Moon Spirits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moon-spirits-cd/2021831.p?id=107311&skuId=2021831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021831.jpg\"}', 'upc' => '722871115927', 'provider' => 'bestbuy'],\n ['name' => \"Gathering of Nations Pow-Wow 1993 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gathering-of-nations-pow-wow-1993-various-cd/2021840.p?id=107312&skuId=2021840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021840.jpg\"}', 'upc' => '722871114425', 'provider' => 'bestbuy'],\n ['name' => \"When the Kite String Pops [PA] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-kite-string-pops-pa-remaster-cd/2021859.p?id=107274&skuId=2021859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021859_sa.jpg\"}', 'upc' => '032357209522', 'provider' => 'bestbuy'],\n ['name' => \"Royal Court Music of Thailand - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/royal-court-music-of-thailand-cd-various/2021877.p?id=107315&skuId=2021877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2021877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2021\\/2021877_sa.jpg\"}', 'upc' => '093074041321', 'provider' => 'bestbuy'],\n ['name' => \"Bangerz [Deluxe Edition] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bangerz-deluxe-edition-pa-cd/2022002.p?id=2750034&skuId=2022002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022002_sa.jpg\"}', 'upc' => '888837452526', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Business Smart MFC-J4420DW Wireless All-In-One Printer - White\", 'description_short' => \"Prints, copies and scansWi-FiPrints up to 20 ISO ppm in black, up to 18 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)20-sheet automatic document feeder\", 'description_long' => \"Prints, copies and scansWi-FiPrints up to 20 ISO ppm in black, up to 18 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)20-sheet automatic document feeder\", 'price' => 169.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/brother-business-smart-mfc-j4420dw-wireless-all-in-one-printer-white/2022039.p?id=1219810402313&skuId=2022039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1313\\/1313112329\\/1313112329_sa.jpg\"}', 'upc' => '012502638711', 'provider' => 'bestbuy'],\n ['name' => \"Another Setting - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-setting-cd/2022144.p?id=107963&skuId=2022144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022144_sa.jpg\"}', 'upc' => '048248114325', 'provider' => 'bestbuy'],\n ['name' => \"Year of the Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/year-of-the-dog-cd/2022153.p?id=107965&skuId=2022153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022153_sa.jpg\"}', 'upc' => '048248114523', 'provider' => 'bestbuy'],\n ['name' => \"Enhancing Self-Esteem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enhancing-self-esteem-cd/2022448.p?id=109377&skuId=2022448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022448.jpg\"}', 'upc' => '093791202425', 'provider' => 'bestbuy'],\n ['name' => \"Radiant Health and Well-Being - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radiant-health-and-well-being-cd/2022466.p?id=109379&skuId=2022466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022466.jpg\"}', 'upc' => '093791202524', 'provider' => 'bestbuy'],\n ['name' => \"Bosnian Breakdown: The Unpronounceable Beat... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bosnian-breakdown-the-unpronounceable-beat-cd/2022527.p?id=1459223&skuId=2022527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022527_sa.jpg\"}', 'upc' => '029667307420', 'provider' => 'bestbuy'],\n ['name' => \"Live At Habibi Temple - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-habibi-temple-cd/2022581.p?id=2542474&skuId=2022581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022581_sa.jpg\"}', 'upc' => '011661213029', 'provider' => 'bestbuy'],\n ['name' => \"Precise Modern Lovers Order - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/precise-modern-lovers-order-cd/2022590.p?id=2542457&skuId=2022590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2022590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2022\\/2022590_sa.jpg\"}', 'upc' => '011661904224', 'provider' => 'bestbuy'],\n ['name' => \"Frame by Frame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frame-by-frame-cd/2023029.p?id=2752377&skuId=2023029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023029_sa.jpg\"}', 'upc' => '602537528233', 'provider' => 'bestbuy'],\n ['name' => \"Silver Bell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silver-bell-cd/2023065.p?id=2752337&skuId=2023065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023065_sa.jpg\"}', 'upc' => '602527950037', 'provider' => 'bestbuy'],\n ['name' => \"Sistrionix - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sistrionix-cd/2023083.p?id=2752315&skuId=2023083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023083_sa.jpg\"}', 'upc' => '602537400614', 'provider' => 'bestbuy'],\n ['name' => \"Heart: Night at Sky Church (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-night-at-sky-church-dvd/2023157.p?id=2183012&skuId=2023157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023157_sa.jpg\"}', 'upc' => '886977676192', 'provider' => 'bestbuy'],\n ['name' => \"David Raksin Conducts His Great Film Scores - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/david-raksin-conducts-his-great-film-scores-cd/2023166.p?id=2185020&skuId=2023166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023166_sa.jpg\"}', 'upc' => '886978126825', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Big Band Collection: Harry James - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-big-band-collection-harry-james-cd/2023184.p?id=2183000&skuId=2023184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023184_sa.jpg\"}', 'upc' => '886978054821', 'provider' => 'bestbuy'],\n ['name' => \"Elizabeth & Essex: The Classic Film Scores of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elizabeth-essex-the-classic-film-scores-of-cd/2023193.p?id=2185016&skuId=2023193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023193_sa.jpg\"}', 'upc' => '886978126627', 'provider' => 'bestbuy'],\n ['name' => \"Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-cd/2023209.p?id=2182997&skuId=2023209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023209_sa.jpg\"}', 'upc' => '886978071729', 'provider' => 'bestbuy'],\n ['name' => \"Now Voyager: Classic Film Scores Of Max Steiner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-voyager-classic-film-scores-of-max-steiner-cd/2023218.p?id=2185018&skuId=2023218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023218_sa.jpg\"}', 'upc' => '886978127020', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Big Band Collection: Tommy Dorsey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-big-band-collection-tommy-dorsey-cd/2023227.p?id=2182996&skuId=2023227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023227_sa.jpg\"}', 'upc' => '886978054623', 'provider' => 'bestbuy'],\n ['name' => \"Sunset Boulevard: Classic Film Scores... [3/1] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sunset-boulevard-classic-film-scores-3-1-cd/2023236.p?id=2185015&skuId=2023236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023236_sa.jpg\"}', 'upc' => '886978126528', 'provider' => 'bestbuy'],\n ['name' => \"Citizen Kane: The Classic Film Scores of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/citizen-kane-the-classic-film-scores-of-cd/2023245.p?id=2185014&skuId=2023245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023245_sa.jpg\"}', 'upc' => '886978126429', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Big Band Collection: Count Basie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-big-band-collection-count-basie-cd/2023254.p?id=2182976&skuId=2023254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023254.jpg\"}', 'upc' => '886978054524', 'provider' => 'bestbuy'],\n ['name' => \"Classic Film Scores for Bette Davis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-film-scores-for-bette-davis-cd/2023263.p?id=2185019&skuId=2023263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023263_sa.jpg\"}', 'upc' => '886978127228', 'provider' => 'bestbuy'],\n ['name' => \"Promises - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/promises-cd/2023272.p?id=2183008&skuId=2023272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023272_sa.jpg\"}', 'upc' => '886975149926', 'provider' => 'bestbuy'],\n ['name' => \"Spellbound: Classic Film Scores of Miklos Rozsa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spellbound-classic-film-scores-of-miklos-rozsa-cd/2023281.p?id=2185017&skuId=2023281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023281_sa.jpg\"}', 'upc' => '886978126924', 'provider' => 'bestbuy'],\n ['name' => \"Frank Sinatra: A Man and His Music - The Collection [2 Discs] (DVD) (Remastered)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frank-sinatra-a-man-and-his-music-the-collection-2-discs-dvd-remastered/2023306.p?id=2183015&skuId=2023306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023306.jpg\"}', 'upc' => '826663122213', 'provider' => 'bestbuy'],\n ['name' => \"Bridge Over Troubled... [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bridge-over-troubled-cd-dvd-digipak-cd/2023333.p?id=2183089&skuId=2023333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023333_sa.jpg\"}', 'upc' => '886978272423', 'provider' => 'bestbuy'],\n ['name' => \"Rubberneck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rubberneck-cd/2023900.p?id=1543973&skuId=2023900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2023900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2023\\/2023900_sa.jpg\"}', 'upc' => '606949240226', 'provider' => 'bestbuy'],\n ['name' => \"Emeli Sandé: Live at the Royal Albert Hall (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emeli-sande-live-at-the-royal-albert-hall-dvd/2024028.p?id=2752419&skuId=2024028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '602537396450', 'provider' => 'bestbuy'],\n ['name' => \"Memory Lane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memory-lane-cd/2024031.p?id=2186524&skuId=2024031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024031_sa.jpg\"}', 'upc' => '602527325583', 'provider' => 'bestbuy'],\n ['name' => \"Kingston - SSDNow V300 240GB Internal Serial ATA III Solid State Drive for Laptops - Black\", 'description_short' => \"KINGSTON SSDNow V300 240GB Internal Serial ATA III Solid State Drive for Laptops: Serial ATA III interface; helps improve application loading and system start-up; silent and cool operation; data transfer rates up to 450MB/sec.; includes adapter\", 'description_long' => \"KINGSTON SSDNow V300 240GB Internal Serial ATA III Solid State Drive for Laptops: Serial ATA III interface; helps improve application loading and system start-up; silent and cool operation; data transfer rates up to 450MB/sec.; includes adapter\", 'price' => 109.99, 'sale_price' => 99.99, 'url' => 'http://www.bestbuy.com/site/kingston-ssdnow-v300-240gb-internal-serial-ata-iii-solid-state-drive-for-laptops-black/2024046.p?id=1219613641668&skuId=2024046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024046_sa.jpg\"}', 'upc' => '740617212716', 'provider' => 'bestbuy'],\n ['name' => \"Asia: Spirit of the Night - The Phoenix Tour Live in Cambridge (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asia-spirit-of-the-night-the-phoenix-tour-live-in-cambridge-dvd/2024059.p?id=2186796&skuId=2024059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024059_sa.jpg\"}', 'upc' => '8024391002735', 'provider' => 'bestbuy'],\n ['name' => \"Passion: Here for You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passion-here-for-you-cd/2024077.p?id=2186551&skuId=2024077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024077_sa.jpg\"}', 'upc' => '5099960717924', 'provider' => 'bestbuy'],\n ['name' => \"Day of Reckoning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-of-reckoning-cd/2024086.p?id=2185066&skuId=2024086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024086_sa.jpg\"}', 'upc' => '727361262624', 'provider' => 'bestbuy'],\n ['name' => \"Jesus Calling: Instrumental Songs For Devotion - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jesus-calling-instrumental-songs-for-devotion-cd-various/2024095.p?id=2186528&skuId=2024095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024095_sa.jpg\"}', 'upc' => '5099907130724', 'provider' => 'bestbuy'],\n ['name' => \"Stand Up and Fight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-up-and-fight-cd/2024101.p?id=2185065&skuId=2024101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024101_sa.jpg\"}', 'upc' => '727701868226', 'provider' => 'bestbuy'],\n ['name' => \"Death, a Destination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-a-destination-cd/2024129.p?id=2724843&skuId=2024129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024129_sa.jpg\"}', 'upc' => '810488020274', 'provider' => 'bestbuy'],\n ['name' => \"Symphony No 2 In C Minor Resurrection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-no-2-in-c-minor-resurrection-cd/2024156.p?id=2186797&skuId=2024156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024156.jpg\"}', 'upc' => '5099964736327', 'provider' => 'bestbuy'],\n ['name' => \"Spirit of the Night: The... [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-the-night-the-cd-dvd-digipak-cd-dvd/2024165.p?id=2186798&skuId=2024165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024165_sa.jpg\"}', 'upc' => '8024391048146', 'provider' => 'bestbuy'],\n ['name' => \"Here Comes a City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-comes-a-city-cd/2024183.p?id=2186794&skuId=2024183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024183_sa.jpg\"}', 'upc' => '827590600027', 'provider' => 'bestbuy'],\n ['name' => \"Shaolin vs. Wu-Tang [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shaolin-vs-wu-tang-pa-cd/2024192.p?id=2184006&skuId=2024192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024192_sa.jpg\"}', 'upc' => '5099909490628', 'provider' => 'bestbuy'],\n ['name' => \"Spirit of the Night: The Phoenix... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-the-night-the-phoenix-digipak-cd/2024226.p?id=2186799&skuId=2024226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024226_sa.jpg\"}', 'upc' => '8024391048122', 'provider' => 'bestbuy'],\n ['name' => \"Audio Guide to Happiness, The - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audio-guide-to-happiness-the-cd/2024244.p?id=2186792&skuId=2024244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024244_sa.jpg\"}', 'upc' => '885417054422', 'provider' => 'bestbuy'],\n ['name' => \"Long Distance Calling - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-distance-calling-cd/2024253.p?id=2186793&skuId=2024253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024253_sa.jpg\"}', 'upc' => '885417045420', 'provider' => 'bestbuy'],\n ['name' => \"Beast [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beast-pa-cd/2024305.p?id=2184027&skuId=2024305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024305_sa.jpg\"}', 'upc' => '016861775322', 'provider' => 'bestbuy'],\n ['name' => \"Beast [CD & DVD] [PA] [Digipak] - CD - DVD Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beast-cd-dvd-pa-digipak-cd-dvd-special/2024314.p?id=3245401&skuId=2024314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024314.jpg\"}', 'upc' => '016861775353', 'provider' => 'bestbuy'],\n ['name' => \"Sharp - 240W 5-Disc Compact Stereo/2-Way Speaker System - Black\", 'description_short' => \"Plays CD-R/RW discs and MP3 and WMA files; AM/FM tuner with 40 presets; cassette deck; Apple&#174; iPod&#174;/iPhone&#174; dock; 2-way speakers\", 'description_long' => \"Plays CD-R/RW discs and MP3 and WMA files; AM/FM tuner with 40 presets; cassette deck; Apple&#174; iPod&#174;/iPhone&#174; dock; 2-way speakers\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharp-240w-5-disc-compact-stereo-2-way-speaker-system-black/2024341.p?id=1218307636202&skuId=2024341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024341_rc.jpg\"}', 'upc' => '074000369863', 'provider' => 'bestbuy'],\n ['name' => \"This Is Where the Happy People Go: The Best... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-where-the-happy-people-go-the-best-cd/2024375.p?id=107180&skuId=2024375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024375_sa.jpg\"}', 'upc' => '081227172428', 'provider' => 'bestbuy'],\n ['name' => \"Tightening It Up: The Best of Archie Bell &... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tightening-it-up-the-best-of-archie-bell-cd/2024400.p?id=107183&skuId=2024400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024400_sa.jpg\"}', 'upc' => '081227172527', 'provider' => 'bestbuy'],\n ['name' => \"As Above So Below - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-above-so-below-cd/2024438.p?id=2188949&skuId=2024438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024438_sa.jpg\"}', 'upc' => '099923209720', 'provider' => 'bestbuy'],\n ['name' => \"Forest Flower/Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forest-flower-soundtrack-cd/2024455.p?id=107188&skuId=2024455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024455.jpg\"}', 'upc' => '081227174620', 'provider' => 'bestbuy'],\n ['name' => \"Towards the Sun [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/towards-the-sun-digipak-cd/2024492.p?id=2192918&skuId=2024492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024492_sa.jpg\"}', 'upc' => '881626937228', 'provider' => 'bestbuy'],\n ['name' => \"The Scourge of the Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-scourge-of-the-light-cd/2024526.p?id=2188916&skuId=2024526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024526_sa.jpg\"}', 'upc' => '693723085821', 'provider' => 'bestbuy'],\n ['name' => \"Rush of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rush-of-love-cd/2024544.p?id=2172251&skuId=2024544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024544_sa.jpg\"}', 'upc' => '760137511328', 'provider' => 'bestbuy'],\n ['name' => \"21 Spices [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/21-spices-digipak-cd/2024553.p?id=2188921&skuId=2024553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024553_sa.jpg\"}', 'upc' => '885513800121', 'provider' => 'bestbuy'],\n ['name' => \"Smash Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smash-record-cd/2024571.p?id=2172344&skuId=2024571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024571_sa.jpg\"}', 'upc' => '035651010320', 'provider' => 'bestbuy'],\n ['name' => \"Revenge of the Barracuda [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenge-of-the-barracuda-pa-cd/2024599.p?id=2188924&skuId=2024599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024599_sa.jpg\"}', 'upc' => '099923513827', 'provider' => 'bestbuy'],\n ['name' => \"I'm On The Boat [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-on-the-boat-pa-digipak-cd/2024705.p?id=2186525&skuId=2024705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024705.jpg\"}', 'upc' => '706442390227', 'provider' => 'bestbuy'],\n ['name' => \"Blues For Breakfast [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-breakfast-digipak-cd/2024732.p?id=2186532&skuId=2024732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024732.jpg\"}', 'upc' => '829166256423', 'provider' => 'bestbuy'],\n ['name' => \"Small Source of Comfort [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/small-source-of-comfort-pa-digipak-cd/2024741.p?id=2185832&skuId=2024741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024741_sa.jpg\"}', 'upc' => '620638053621', 'provider' => 'bestbuy'],\n ['name' => \"South Side's Most Wanted: Greatest... [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-sides-most-wanted-greatest-pa-cd/2024778.p?id=2188923&skuId=2024778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024778_sa.jpg\"}', 'upc' => '809367217324', 'provider' => 'bestbuy'],\n ['name' => \"First Four EPs [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-four-eps-digipak-cd/2024805.p?id=2185930&skuId=2024805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024805_sa.jpg\"}', 'upc' => '883888002126', 'provider' => 'bestbuy'],\n ['name' => \"The Church Boyz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-church-boyz-cd/2024823.p?id=2188926&skuId=2024823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024823_sa.jpg\"}', 'upc' => '747656309322', 'provider' => 'bestbuy'],\n ['name' => \"Moon Over Ireland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moon-over-ireland-cd/2024841.p?id=2188922&skuId=2024841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024841_sa.jpg\"}', 'upc' => '796539007220', 'provider' => 'bestbuy'],\n ['name' => \"Hellbound [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hellbound-digipak-cd/2024869.p?id=2177871&skuId=2024869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024869.jpg\"}', 'upc' => '5907785036574', 'provider' => 'bestbuy'],\n ['name' => \"Monumental [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monumental-pa-digipak-cd/2024878.p?id=2188950&skuId=2024878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024878_sa.jpg\"}', 'upc' => '693461217027', 'provider' => 'bestbuy'],\n ['name' => \"Count Basie: Then as Now, Count's the King (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/count-basie-then-as-now-counts-the-king-dvd/2024887.p?id=2181428&skuId=2024887&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024887', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024887_sa.jpg\"}', 'upc' => '760137507291', 'provider' => 'bestbuy'],\n ['name' => \"XL - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xl-cd/2024896.p?id=2214385&skuId=2024896&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024896', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024896_sa.jpg\"}', 'upc' => '829357851024', 'provider' => 'bestbuy'],\n ['name' => \"Great White: Live and Raw (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-white-live-and-raw-dvd-2-disc/2024905.p?id=1641736&skuId=2024905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024905_sa.jpg\"}', 'upc' => '760137512691', 'provider' => 'bestbuy'],\n ['name' => \"Digital Veil [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/digital-veil-pa-cd/2024914.p?id=2188927&skuId=2024914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024914_sa.jpg\"}', 'upc' => '099923235828', 'provider' => 'bestbuy'],\n ['name' => \"Despicable - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/despicable-cd/2024923.p?id=2188915&skuId=2024923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024923_sa.jpg\"}', 'upc' => '753182952062', 'provider' => 'bestbuy'],\n ['name' => \"True as Steel [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-as-steel-digipak-cd/2024932.p?id=2177872&skuId=2024932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024932.jpg\"}', 'upc' => '5907785036581', 'provider' => 'bestbuy'],\n ['name' => \"Duke Ellington: Reminiscing in Tempo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duke-ellington-reminiscing-in-tempo-dvd/2024969.p?id=2181427&skuId=2024969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024969_sa.jpg\"}', 'upc' => '760137507192', 'provider' => 'bestbuy'],\n ['name' => \"Dreaming in Black and White [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreaming-in-black-and-white-pa-cd/2024987.p?id=2188912&skuId=2024987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024987_sa.jpg\"}', 'upc' => '099923233527', 'provider' => 'bestbuy'],\n ['name' => \"Teaser [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teaser-digipak-cd/2024996.p?id=2188925&skuId=2024996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2024996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2024\\/2024996_sa.jpg\"}', 'upc' => '616892132660', 'provider' => 'bestbuy'],\n ['name' => \"Starting from Nowhere [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starting-from-nowhere-digipak-cd/2025012.p?id=2187804&skuId=2025012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025012.jpg\"}', 'upc' => '634457539822', 'provider' => 'bestbuy'],\n ['name' => \"Labour of Lust [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/labour-of-lust-digipak-cd/2025021.p?id=2187803&skuId=2025021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025021_sa.jpg\"}', 'upc' => '634457262126', 'provider' => 'bestbuy'],\n ['name' => \"Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/together-cd/2025036.p?id=2752390&skuId=2025036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025036_sa.jpg\"}', 'upc' => '795041796622', 'provider' => 'bestbuy'],\n ['name' => \"GE - 0.7 Cu. Ft. Compact Microwave - Stainless-Steel/Black\", 'description_short' => \"700W of power; 10 power levels; electronic touch controls and LED display; convenience cooking controls; auto and time defrost; removable glass turntable\", 'description_long' => \"700W of power; 10 power levels; electronic touch controls and LED display; convenience cooking controls; auto and time defrost; removable glass turntable\", 'price' => 89.99, 'sale_price' => 85.49, 'url' => 'http://www.bestbuy.com/site/ge-0-7-cu-ft-compact-microwave-stainless-steel-black/2025045.p?id=1219522218680&skuId=2025045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025045_sa.jpg\"}', 'upc' => '084691808473', 'provider' => 'bestbuy'],\n ['name' => \"This Is the Second Album of a Band... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-the-second-album-of-a-band-digipak-cd/2025049.p?id=2187107&skuId=2025049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025049_sa.jpg\"}', 'upc' => '634457540620', 'provider' => 'bestbuy'],\n ['name' => \"Michel Poiccard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/michel-poiccard-cd/2025067.p?id=2187098&skuId=2025067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025067.jpg\"}', 'upc' => '5021392637129', 'provider' => 'bestbuy'],\n ['name' => \"A Jazz Date with Chris Connor/Chris Craft - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-jazz-date-with-chris-connor-chris-craft-cd/2025070.p?id=107189&skuId=2025070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025070_sa.jpg\"}', 'upc' => '081227174729', 'provider' => 'bestbuy'],\n ['name' => \"Brooklyn Sound Solution [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brooklyn-sound-solution-digipak-cd/2025076.p?id=2469515&skuId=2025076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025076_sa.jpg\"}', 'upc' => '634457222625', 'provider' => 'bestbuy'],\n ['name' => \"Blue Valentine - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-valentine-cd-original-soundtrack/2025085.p?id=2177967&skuId=2025085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025085_sa.jpg\"}', 'upc' => '780163420722', 'provider' => 'bestbuy'],\n ['name' => \"No Strings Attached - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-strings-attached-cd-original-soundtrack/2025094.p?id=2185933&skuId=2025094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025094_sa.jpg\"}', 'upc' => '780163420524', 'provider' => 'bestbuy'],\n ['name' => \"Second Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-story-cd/2025212.p?id=107969&skuId=2025212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025212_sa.jpg\"}', 'upc' => '048248114424', 'provider' => 'bestbuy'],\n ['name' => \"African Marketplace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/african-marketplace-cd/2025230.p?id=107705&skuId=2025230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025230.jpg\"}', 'upc' => '010467101622', 'provider' => 'bestbuy'],\n ['name' => \"Symphony 1 For Chamber Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-1-for-chamber-orchestra-cd/2025258.p?id=1784728&skuId=2025258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025258.jpg\"}', 'upc' => '789368013722', 'provider' => 'bestbuy'],\n ['name' => \"Chamber Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chamber-music-cd/2025285.p?id=1784729&skuId=2025285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025285.jpg\"}', 'upc' => '789368013821', 'provider' => 'bestbuy'],\n ['name' => \"Blue House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-house-cd/2025356.p?id=107662&skuId=2025356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025356.jpg\"}', 'upc' => '011661313125', 'provider' => 'bestbuy'],\n ['name' => \"Romantic Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romantic-suite-cd/2025365.p?id=1830827&skuId=2025365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025365.jpg\"}', 'upc' => '789368006922', 'provider' => 'bestbuy'],\n ['name' => \"Moussolou - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moussolou-cd/2025392.p?id=3460852&skuId=2025392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '769233002129', 'provider' => 'bestbuy'],\n ['name' => \"North Indian Vocal Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/north-indian-vocal-music-cd-various/2025436.p?id=2294639&skuId=2025436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025436_sa.jpg\"}', 'upc' => '789368017522', 'provider' => 'bestbuy'],\n ['name' => \"Songs From Magelone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-from-magelone-cd/2025542.p?id=1784559&skuId=2025542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '789368030521', 'provider' => 'bestbuy'],\n ['name' => \"Canadian Harp Music - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canadian-harp-music-various-cd/2025560.p?id=1682256&skuId=2025560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025560.jpg\"}', 'upc' => '789368031122', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies 1-2-3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-1-2-3-cd/2025579.p?id=1784560&skuId=2025579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025579.jpg\"}', 'upc' => '789368031221', 'provider' => 'bestbuy'],\n ['name' => \"Without a Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/without-a-sound-cd/2025686.p?id=107460&skuId=2025686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025686_sa.jpg\"}', 'upc' => '093624571926', 'provider' => 'bestbuy'],\n ['name' => \"Sleeps with Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleeps-with-angels-cd/2025837.p?id=107474&skuId=2025837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025837_sa.jpg\"}', 'upc' => '093624574927', 'provider' => 'bestbuy'],\n ['name' => \"Grace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grace-cd/2025873.p?id=76214&skuId=2025873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2025873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2025\\/2025873_sa.jpg\"}', 'upc' => '074645752822', 'provider' => 'bestbuy'],\n ['name' => \"Kill It Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-it-live-cd/2026008.p?id=2752498&skuId=2026008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026008_sa.jpg\"}', 'upc' => '811772029829', 'provider' => 'bestbuy'],\n ['name' => \"GE - 1.1 Cu. Ft. Mid-Size Microwave - Stainless-Steel\", 'description_short' => \"950W of power; 10 power levels; electronic touch controls; LED display; convenience cooking controls; instant-on controls; weight and time defrost; removable turntable\", 'description_long' => \"950W of power; 10 power levels; electronic touch controls; LED display; convenience cooking controls; instant-on controls; weight and time defrost; removable turntable\", 'price' => 119.99, 'sale_price' => 109.99, 'url' => 'http://www.bestbuy.com/site/ge-1-1-cu-ft-mid-size-microwave-stainless-steel/2026035.p?id=1219522218344&skuId=2026035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026035_sa.jpg\"}', 'upc' => '084691810612', 'provider' => 'bestbuy'],\n ['name' => \"Dukes on Sunday, Vol. 2 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dukes-on-sunday-vol-2-digipak-cd/2026044.p?id=3325822&skuId=2026044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026044.jpg\"}', 'upc' => '800828352325', 'provider' => 'bestbuy'],\n ['name' => \"The Best Of Foreigner 4 & More - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-foreigner-4-more-cd/2026053.p?id=3353614&skuId=2026053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026053_sa.jpg\"}', 'upc' => '888750516220', 'provider' => 'bestbuy'],\n ['name' => \"Cover Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cover-girl-cd/2026523.p?id=107547&skuId=2026523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026523_sa.jpg\"}', 'upc' => '074645787527', 'provider' => 'bestbuy'],\n ['name' => \"When Fallen Angels Fly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-fallen-angels-fly-cd/2026541.p?id=107549&skuId=2026541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026541_sa.jpg\"}', 'upc' => '074646418826', 'provider' => 'bestbuy'],\n ['name' => \"Autopilot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/autopilot-cd/2026729.p?id=108371&skuId=2026729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2026729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2026\\/2026729_sa.jpg\"}', 'upc' => '744626000821', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album [2013] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-2013-cd/2027007.p?id=2753893&skuId=2027007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2027007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2027\\/2027007_sa.jpg\"}', 'upc' => '888837693325', 'provider' => 'bestbuy'],\n ['name' => \"Worthy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worthy-cd/2028015.p?id=3318072&skuId=2028015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028015_sa.jpg\"}', 'upc' => '760137687221', 'provider' => 'bestbuy'],\n ['name' => \"Worthy [Deluxe Version] [CD & DVD] [Digipak] - DVD Limited Edition Special - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worthy-deluxe-version-cd-dvd-digipak-dvd-limited-edition-special-cd/2028033.p?id=3353602&skuId=2028033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028033.jpg\"}', 'upc' => '5013929164956', 'provider' => 'bestbuy'],\n ['name' => \"Non-Fiction [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/non-fiction-pa-cd/2028042.p?id=3333728&skuId=2028042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028042_sa.jpg\"}', 'upc' => '602537932399', 'provider' => 'bestbuy'],\n ['name' => \"Non-Fiction [Deluxe Version] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/non-fiction-deluxe-version-pa-cd/2028051.p?id=3333709&skuId=2028051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028051_sa.jpg\"}', 'upc' => '602547158574', 'provider' => 'bestbuy'],\n ['name' => \"Building the Colossus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/building-the-colossus-cd/2028683.p?id=109145&skuId=2028683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028683_sa.jpg\"}', 'upc' => '736616002922', 'provider' => 'bestbuy'],\n ['name' => \"Insurgent Country, Vol. 1: For a Life of Sin - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insurgent-country-vol-1-for-a-life-of-sin-cd-various/2028736.p?id=110825&skuId=2028736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028736_sa.jpg\"}', 'upc' => '744302000121', 'provider' => 'bestbuy'],\n ['name' => \"HP - 98A Toner Cartridge - Black\", 'description_short' => \"Yields up to 6,800 pagesCompatible with select HP LaserJet Printers\", 'description_long' => \"Yields up to 6,800 pagesCompatible with select HP LaserJet Printers\", 'price' => 164.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-98a-toner-cartridge-black/2028941.p?id=1051384751828&skuId=2028941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028941_sa.jpg\"}', 'upc' => '088698005668', 'provider' => 'bestbuy'],\n ['name' => \"HP - 40 High-Yield Ink Cartridge - Black\", 'description_short' => \"Compatible with select HP Copyjet, Designjet and Deskjet printers; black ink; ink-level indicator; yields up to 1,100 pages\", 'description_long' => \"Compatible with select HP Copyjet, Designjet and Deskjet printers; black ink; ink-level indicator; yields up to 1,100 pages\", 'price' => 46.56, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-40-high-yield-ink-cartridge-black/2028978.p?id=1218077602961&skuId=2028978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2028978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2028\\/2028978_sa.jpg\"}', 'upc' => '088698003176', 'provider' => 'bestbuy'],\n ['name' => \"Bright Red - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bright-red-cd/2029003.p?id=107479&skuId=2029003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2029003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2029\\/2029003_sa.jpg\"}', 'upc' => '093624553427', 'provider' => 'bestbuy'],\n ['name' => \"When I Woke - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-i-woke-cd/2029174.p?id=107598&skuId=2029174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2029174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2029\\/2029174_sa.jpg\"}', 'upc' => '731452271327', 'provider' => 'bestbuy'],\n ['name' => \"Live! Live! Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-live-live-cd/2029272.p?id=72461&skuId=2029272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2029272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2029\\/2029272.jpg\"}', 'upc' => '082839709422', 'provider' => 'bestbuy'],\n ['name' => \"Faithfull: A Collection of Her Best Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faithfull-a-collection-of-her-best-recordings-cd/2029405.p?id=107633&skuId=2029405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2029405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2029\\/2029405_sa.jpg\"}', 'upc' => '731452400420', 'provider' => 'bestbuy'],\n ['name' => \"The Adventures of Priscilla, Queen of the Desert - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-adventures-of-priscilla-queen-of-the-desert-cd-original-soundtrack/2029432.p?id=107631&skuId=2029432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2029432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2029\\/2029432.jpg\"}', 'upc' => '731451693724', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Salt City Blues Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-salt-city-blues-vol-1-cd-various/2030117.p?id=106571&skuId=2030117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030117_sa.jpg\"}', 'upc' => '748897010824', 'provider' => 'bestbuy'],\n ['name' => \"19 Lucky Strikes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/19-lucky-strikes-cd/2030144.p?id=88071&skuId=2030144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030144_sa.jpg\"}', 'upc' => '748897011128', 'provider' => 'bestbuy'],\n ['name' => \"Trouble on the Run - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trouble-on-the-run-cd/2030171.p?id=275284&skuId=2030171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '748897011425', 'provider' => 'bestbuy'],\n ['name' => \"The Unreleased Eric Burdon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-unreleased-eric-burdon-cd/2030215.p?id=106569&skuId=2030215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030215_sa.jpg\"}', 'upc' => '748897011722', 'provider' => 'bestbuy'],\n ['name' => \"Buried Bones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buried-bones-cd/2030233.p?id=106567&skuId=2030233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030233.jpg\"}', 'upc' => '748897011920', 'provider' => 'bestbuy'],\n ['name' => \"Avenue Breakdown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avenue-breakdown-cd/2030260.p?id=106563&skuId=2030260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030260_sa.jpg\"}', 'upc' => '748897012224', 'provider' => 'bestbuy'],\n ['name' => \"Clazzual Sax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clazzual-sax-cd/2030322.p?id=2944000&skuId=2030322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030322_sa.jpg\"}', 'upc' => '784166123420', 'provider' => 'bestbuy'],\n ['name' => \"You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-cd/2030340.p?id=113119&skuId=2030340&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030340', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030340_sa.jpg\"}', 'upc' => '079262340025', 'provider' => 'bestbuy'],\n ['name' => \"Sentimental Journey: The Uncollected Doris... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sentimental-journey-the-uncollected-doris-cd/2030386.p?id=108962&skuId=2030386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030386_sa.jpg\"}', 'upc' => '014921020023', 'provider' => 'bestbuy'],\n ['name' => \"Sweetest Sounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweetest-sounds-cd/2030395.p?id=108966&skuId=2030395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030395_sa.jpg\"}', 'upc' => '014921025127', 'provider' => 'bestbuy'],\n ['name' => \"Everything's Rosie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everythings-rosie-cd/2030420.p?id=108959&skuId=2030420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030420_sa.jpg\"}', 'upc' => '014921025523', 'provider' => 'bestbuy'],\n ['name' => \"Voices in Standards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voices-in-standards-cd/2030439.p?id=108963&skuId=2030439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030439_sa.jpg\"}', 'upc' => '014921080126', 'provider' => 'bestbuy'],\n ['name' => \"Don & the Goodtimes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-the-goodtimes-cd/2030448.p?id=107952&skuId=2030448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030448.jpg\"}', 'upc' => '739497701625', 'provider' => 'bestbuy'],\n ['name' => \"Sorcery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sorcery-cd/2030527.p?id=108537&skuId=2030527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030527_sa.jpg\"}', 'upc' => '025218183826', 'provider' => 'bestbuy'],\n ['name' => \"Andre Previn Plays Harold Arlen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andre-previn-plays-harold-arlen-cd/2030563.p?id=108539&skuId=2030563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030563_sa.jpg\"}', 'upc' => '025218184021', 'provider' => 'bestbuy'],\n ['name' => \"Sugan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sugan-cd/2030572.p?id=108540&skuId=2030572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030572_sa.jpg\"}', 'upc' => '025218184120', 'provider' => 'bestbuy'],\n ['name' => \"Out Front! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-front-cd/2030581.p?id=108564&skuId=2030581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030581_sa.jpg\"}', 'upc' => '025218184229', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Fats Waller - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-fats-waller-cd/2030812.p?id=186369&skuId=2030812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030812_sa.jpg\"}', 'upc' => '015668200426', 'provider' => 'bestbuy'],\n ['name' => \"Twenty Golden Pieces of Woody Herman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twenty-golden-pieces-of-woody-herman-cd/2030821.p?id=186402&skuId=2030821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030821.jpg\"}', 'upc' => '015668200525', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Louis Armstrong & Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-louis-armstrong-friends-cd/2030830.p?id=440785&skuId=2030830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030830_sa.jpg\"}', 'upc' => '015668200723', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Count Basie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-count-basie-cd/2030849.p?id=186144&skuId=2030849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030849_sa.jpg\"}', 'upc' => '015668202024', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Duke Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-duke-ellington-cd/2030858.p?id=186140&skuId=2030858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030858_sa.jpg\"}', 'upc' => '015668202123', 'provider' => 'bestbuy'],\n ['name' => \"Amber Skies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amber-skies-cd/2030867.p?id=1305855&skuId=2030867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030867_sa.jpg\"}', 'upc' => '015668400529', 'provider' => 'bestbuy'],\n ['name' => \"More Mistletoe Magic - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-mistletoe-magic-cd-various/2030876.p?id=64975&skuId=2030876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030876.jpg\"}', 'upc' => '015668400925', 'provider' => 'bestbuy'],\n ['name' => \"Just Feelin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-feelin-cd/2030885.p?id=440816&skuId=2030885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030885.jpg\"}', 'upc' => '015668401021', 'provider' => 'bestbuy'],\n ['name' => \"Live from New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-new-york-cd/2030901.p?id=373090&skuId=2030901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030901.jpg\"}', 'upc' => '015668401120', 'provider' => 'bestbuy'],\n ['name' => \"Etta, Red-Hot & Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/etta-red-hot-live-cd/2030910.p?id=109357&skuId=2030910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030910_sa.jpg\"}', 'upc' => '015668501424', 'provider' => 'bestbuy'],\n ['name' => \"-196 C - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-196-c-cd/2030992.p?id=300619&skuId=2030992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2030992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2030\\/2030992_sa.jpg\"}', 'upc' => '019041100327', 'provider' => 'bestbuy'],\n ['name' => \"We'll Get Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/well-get-over-cd/2031027.p?id=100078&skuId=2031027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031027_sa.jpg\"}', 'upc' => '025218853224', 'provider' => 'bestbuy'],\n ['name' => \"Wonderful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wonderful-cd/2031054.p?id=113019&skuId=2031054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031054_sa.jpg\"}', 'upc' => '025218858526', 'provider' => 'bestbuy'],\n ['name' => \"Funky London - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funky-london-cd/2031063.p?id=113022&skuId=2031063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031063_sa.jpg\"}', 'upc' => '025218858625', 'provider' => 'bestbuy'],\n ['name' => \"Super Tight... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-tight-cd/2031232.p?id=107305&skuId=2031232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031232_sa.jpg\"}', 'upc' => '012414152428', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Millie Jackson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-millie-jackson-cd/2031250.p?id=107310&skuId=2031250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031250_sa.jpg\"}', 'upc' => '012414154026', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-time-cd/2031713.p?id=279030&skuId=2031713&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031713', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031713.jpg\"}', 'upc' => '078636641126', 'provider' => 'bestbuy'],\n ['name' => \"One Inch Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-inch-masters-cd/2031866.p?id=107743&skuId=2031866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2031866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2031\\/2031866_sa.jpg\"}', 'upc' => '045778643929', 'provider' => 'bestbuy'],\n ['name' => \"Epson - Multipurpose 11x17 Ream Paper - Bright White\", 'description_short' => \"Compatible with ink jet printers, laser printers, copiers and more; designed for photo and text printing; 11&quot; x 17&quot;; 500 sheets; acid-free design\", 'description_long' => \"Compatible with ink jet printers, laser printers, copiers and more; designed for photo and text printing; 11&quot; x 17&quot;; 500 sheets; acid-free design\", 'price' => 25.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/epson-multipurpose-11x17-ream-paper-bright-white/2032089.p?id=1219522218551&skuId=2032089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032089_sa.jpg\"}', 'upc' => '010343919815', 'provider' => 'bestbuy'],\n ['name' => \"Lasers [LP] [PA] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lasers-lp-pa-vinyl/2032128.p?id=2186630&skuId=2032128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032128_sa.jpg\"}', 'upc' => '075678827266', 'provider' => 'bestbuy'],\n ['name' => \"Civilian [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civilian-lp-vinyl/2032146.p?id=2187798&skuId=2032146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032146_sa.jpg\"}', 'upc' => '673855040011', 'provider' => 'bestbuy'],\n ['name' => \"Pedals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pedals-cd/2032164.p?id=2186533&skuId=2032164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032164.jpg\"}', 'upc' => '075678930140', 'provider' => 'bestbuy'],\n ['name' => \"Powder Keg [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/powder-keg-digipak-cd/2032173.p?id=2188223&skuId=2032173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032173.jpg\"}', 'upc' => '677516131223', 'provider' => 'bestbuy'],\n ['name' => \"Lasers [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lasers-pa-cd/2032182.p?id=2184842&skuId=2032182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032182_sa.jpg\"}', 'upc' => '075678958656', 'provider' => 'bestbuy'],\n ['name' => \"Convergence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/convergence-cd/2032191.p?id=2182155&skuId=2032191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032191_sa.jpg\"}', 'upc' => '633842211022', 'provider' => 'bestbuy'],\n ['name' => \"Collapse into Now [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collapse-into-now-digipak-cd/2032216.p?id=2178048&skuId=2032216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032216_sa.jpg\"}', 'upc' => '093624962717', 'provider' => 'bestbuy'],\n ['name' => \"My Devil in Your Eyes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-devil-in-your-eyes-cd/2032225.p?id=2187785&skuId=2032225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032225_sa.jpg\"}', 'upc' => '856136002551', 'provider' => 'bestbuy'],\n ['name' => \"Smoke Ring for My Halo [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smoke-ring-for-my-halo-lp-vinyl/2032234.p?id=2187792&skuId=2032234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032234_sa.jpg\"}', 'upc' => '744861093817', 'provider' => 'bestbuy'],\n ['name' => \"The Excitement of Maybe [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-excitement-of-maybe-digipak-cd/2032243.p?id=2187791&skuId=2032243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032243_sa.jpg\"}', 'upc' => '744302017723', 'provider' => 'bestbuy'],\n ['name' => \"Civilian [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civilian-digipak-cd/2032252.p?id=2187799&skuId=2032252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032252_sa.jpg\"}', 'upc' => '673855040028', 'provider' => 'bestbuy'],\n ['name' => \"Choo Choo Boogaloo: Zydeco Music For Families - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/choo-choo-boogaloo-zydeco-music-for-families-cd/2032259.p?id=107485&skuId=2032259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032259_sa.jpg\"}', 'upc' => '093624255628', 'provider' => 'bestbuy'],\n ['name' => \"Happy Thoughts [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-thoughts-pa-digipak-cd/2032261.p?id=2188222&skuId=2032261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032261_sa.jpg\"}', 'upc' => '824363011622', 'provider' => 'bestbuy'],\n ['name' => \"Smoke Ring for My Halo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smoke-ring-for-my-halo-cd/2032289.p?id=2187796&skuId=2032289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032289_sa.jpg\"}', 'upc' => '744861093824', 'provider' => 'bestbuy'],\n ['name' => \"Cosmic Connection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cosmic-connection-cd/2032298.p?id=2188224&skuId=2032298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032298_sa.jpg\"}', 'upc' => '026245207622', 'provider' => 'bestbuy'],\n ['name' => \"Downtown Battle Mountain II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/downtown-battle-mountain-ii-cd/2032304.p?id=2187784&skuId=2032304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032304_sa.jpg\"}', 'upc' => '856136002544', 'provider' => 'bestbuy'],\n ['name' => \"The Dancing Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dancing-monk-cd/2032313.p?id=2182161&skuId=2032313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032313.jpg\"}', 'upc' => '633842210827', 'provider' => 'bestbuy'],\n ['name' => \"Oldboy [2003] [Original Motion Picture... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldboy-2003-original-motion-picture-cd/2032322.p?id=2180718&skuId=2032322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2032322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2032\\/2032322_sa.jpg\"}', 'upc' => '731383648021', 'provider' => 'bestbuy'],\n ['name' => \"TomTom - Vehicle Charger for Select TomTom GO LIVE and VIA GPS\", 'description_short' => \"Compatible with select TomTom GO LIVE and VIA GPS; charges most USB, mini USB and micro USB devices; includes mini USB cable and mini-to-micro USB adapter\", 'description_long' => \"Compatible with select TomTom GO LIVE and VIA GPS; charges most USB, mini USB and micro USB devices; includes mini USB cable and mini-to-micro USB adapter\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomtom-vehicle-charger-for-select-tomtom-go-live-and-via-gps/2033127.p?id=1218306466464&skuId=2033127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2033127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2033\\/2033127_sa.jpg\"}', 'upc' => '636926047029', 'provider' => 'bestbuy'],\n ['name' => \"TomTom - Dashboard Mount for Select TomTom GPS\", 'description_short' => \"Compatible with select TomTom GO, TomTom XL, TomTom XXL and TomTom EASE GPS; fits most cars; nonskid backing\", 'description_long' => \"Compatible with select TomTom GO, TomTom XL, TomTom XXL and TomTom EASE GPS; fits most cars; nonskid backing\", 'price' => 31.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomtom-dashboard-mount-for-select-tomtom-gps/2033136.p?id=1218306461911&skuId=2033136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2033136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2033\\/2033136_rc.jpg\"}', 'upc' => '636926046992', 'provider' => 'bestbuy'],\n ['name' => \"Rough Side of the Mountain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rough-side-of-the-mountain-cd/2033169.p?id=128140&skuId=2033169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2033169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2033\\/2033169.jpg\"}', 'upc' => '089921005929', 'provider' => 'bestbuy'],\n ['name' => \"Ecosential - 18-Oz. Stainless-Steel Cleaner - White\", 'description_short' => \"Designed for use on most grades of stainless-steel; cleans fingerprints, smudges, residue, grease and other buildup; eco-friendly\", 'description_long' => \"Designed for use on most grades of stainless-steel; cleans fingerprints, smudges, residue, grease and other buildup; eco-friendly\", 'price' => 7.99, 'sale_price' => 2.99, 'url' => 'http://www.bestbuy.com/site/ecosential-18-oz-stainless-steel-cleaner-white/2034162.p?id=1218306995199&skuId=2034162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034162_sa.jpg\"}', 'upc' => '012505452260', 'provider' => 'bestbuy'],\n ['name' => \"So Satisfied - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-satisfied-cd/2034248.p?id=131810&skuId=2034248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034248_sa.jpg\"}', 'upc' => '089921013528', 'provider' => 'bestbuy'],\n ['name' => \"Can't You See... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-you-see-cd/2034408.p?id=73968&skuId=2034408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034408_sa.jpg\"}', 'upc' => '089921014921', 'provider' => 'bestbuy'],\n ['name' => \"He's Preparing Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hes-preparing-me-cd/2034550.p?id=186136&skuId=2034550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034550_sa.jpg\"}', 'upc' => '089921016222', 'provider' => 'bestbuy'],\n ['name' => \"How Excellent Is Thy Name - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-excellent-is-thy-name-cd/2034587.p?id=127706&skuId=2034587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034587_sa.jpg\"}', 'upc' => '089921016321', 'provider' => 'bestbuy'],\n ['name' => \"Invitation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invitation-cd/2034701.p?id=73962&skuId=2034701&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034701_sa.jpg\"}', 'upc' => '089921017021', 'provider' => 'bestbuy'],\n ['name' => \"Trust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trust-cd/2034729.p?id=107498&skuId=2034729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034729_sa.jpg\"}', 'upc' => '093624574620', 'provider' => 'bestbuy'],\n ['name' => \"God Delivered - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/god-delivered-cd/2034756.p?id=128143&skuId=2034756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034756_sa.jpg\"}', 'upc' => '089921017229', 'provider' => 'bestbuy'],\n ['name' => \"Stand Still Until His Will Is Clear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-still-until-his-will-is-clear-cd/2034934.p?id=239268&skuId=2034934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2034934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2034\\/2034934.jpg\"}', 'upc' => '089921018028', 'provider' => 'bestbuy'],\n ['name' => \"The Imitation Game (Blu-ray)(UV Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/the-imitation-game-blu-rayuv-digital-copy/2035013.p?id=3351325&skuId=2035013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035013_sa.jpg\"}', 'upc' => '013132622514', 'provider' => 'bestbuy'],\n ['name' => \"Eternal Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eternal-life-cd/2035023.p?id=186212&skuId=2035023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035023.jpg\"}', 'upc' => '089921018523', 'provider' => 'bestbuy'],\n ['name' => \"Power - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-cd/2035078.p?id=131858&skuId=2035078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035078_sa.jpg\"}', 'upc' => '089921018622', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/2035096.p?id=94670&skuId=2035096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035096_sa.jpg\"}', 'upc' => '089921018721', 'provider' => 'bestbuy'],\n ['name' => \"Precious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/precious-cd/2035130.p?id=186214&skuId=2035130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035130_sa.jpg\"}', 'upc' => '089921018820', 'provider' => 'bestbuy'],\n ['name' => \"I Can't Make It (Without the Lord) - Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-cant-make-it-without-the-lord-live-cd/2035274.p?id=128144&skuId=2035274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035274_sa.jpg\"}', 'upc' => '089921019421', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Can Be Better - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-can-be-better-cd/2035292.p?id=154910&skuId=2035292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035292_sa.jpg\"}', 'upc' => '089921019520', 'provider' => 'bestbuy'],\n ['name' => \"We Offer Christ - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-offer-christ-cd/2035498.p?id=131895&skuId=2035498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035498_sa.jpg\"}', 'upc' => '732865160321', 'provider' => 'bestbuy'],\n ['name' => \"Tom Clancy's H.A.W.X. 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take off for adrenaline-pumping aerial action\", 'description_long' => \"Take off for adrenaline-pumping aerial action\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-clancys-h-a-w-x-2-pre-owned-playstation-3/2035656.p?id=1218306467791&skuId=2035656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035656_sa.jpg\"}', 'upc' => '799007777670', 'provider' => 'bestbuy'],\n ['name' => \"Season Two: Sam and Max Beyond Time and Space - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Experience a whole new world of investigation\", 'description_long' => \"Experience a whole new world of investigation\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/season-two-sam-and-max-beyond-time-and-space-pre-owned-nintendo-wii/2035838.p?id=1218306459275&skuId=2035838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035838_sa.jpg\"}', 'upc' => '799007777724', 'provider' => 'bestbuy'],\n ['name' => \"EyePet - PRE-OWNED - PlayStation 3\", 'description_short' => \"Have real fun with a virtual furry friend\", 'description_long' => \"Have real fun with a virtual furry friend\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eyepet-pre-owned-playstation-3/2035938.p?id=1218306459549&skuId=2035938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035938_sa.jpg\"}', 'upc' => '799007777755', 'provider' => 'bestbuy'],\n ['name' => \"Castlevania: Lords of Shadow - PRE-OWNED - Xbox 360\", 'description_short' => \"Save the world at the End of Days\", 'description_long' => \"Save the world at the End of Days\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/castlevania-lords-of-shadow-pre-owned-xbox-360/2035965.p?id=1218306460114&skuId=2035965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2035965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2035\\/2035965_sa.jpg\"}', 'upc' => '799007777779', 'provider' => 'bestbuy'],\n ['name' => \"Night at the Museum: Secret of the Tomb (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-at-the-museum-secret-of-the-tomb-dvd/2036003.p?id=3345696&skuId=2036003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036003.jpg\"}', 'upc' => '024543989660', 'provider' => 'bestbuy'],\n ['name' => \"Exodus: Gods and Kings (3D Blu-ray)(Blu-ray)(Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exodus-gods-and-kings-3d-blu-rayblu-raydigital-copy/2036012.p?id=3343902&skuId=2036012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036012_sa.jpg\"}', 'upc' => '024543988557', 'provider' => 'bestbuy'],\n ['name' => \"Night at the Museum: Secret of the Tomb (Blu-ray/DVD)(Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-at-the-museum-secret-of-the-tomb-blu-ray-dvddigital-copy/2036021.p?id=3345696&skuId=2036021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036021.jpg\"}', 'upc' => '024543989714', 'provider' => 'bestbuy'],\n ['name' => \"DJ Hero - PRE-OWNED - PlayStation 3\", 'description_short' => \"Rule the party with blasting beats\", 'description_long' => \"Rule the party with blasting beats\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-hero-pre-owned-playstation-3/2036081.p?id=1218306462357&skuId=2036081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036081_sa.jpg\"}', 'upc' => '799007777809', 'provider' => 'bestbuy'],\n ['name' => \"Wii Party - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Will you cooperate or play to win everything yourself?\", 'description_long' => \"Will you cooperate or play to win everything yourself?\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wii-party-pre-owned-nintendo-wii/2036115.p?id=1218306461982&skuId=2036115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036115_sa.jpg\"}', 'upc' => '799007777823', 'provider' => 'bestbuy'],\n ['name' => \"Disney Club Penguin Game Day - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Waddle, don&#039;t walk, to a course of crazy penguin games\", 'description_long' => \"Waddle, don&#039;t walk, to a course of crazy penguin games\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-club-penguin-game-day-pre-owned-nintendo-wii/2036133.p?id=1218306465541&skuId=2036133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036133_sa.jpg\"}', 'upc' => '799007777847', 'provider' => 'bestbuy'],\n ['name' => \"Live with the Southwest Louisiana Mass Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-with-the-southwest-louisiana-mass-choir-cd/2036264.p?id=130711&skuId=2036264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036264_sa.jpg\"}', 'upc' => '048021445523', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Willie Banks: Memorial Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-willie-banks-memorial-album-cd/2036335.p?id=132494&skuId=2036335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036335_sa.jpg\"}', 'upc' => '048021446025', 'provider' => 'bestbuy'],\n ['name' => \"Dr. Mattie Moss Clark Presents Corey... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dr-mattie-moss-clark-presents-corey-cd/2036399.p?id=156317&skuId=2036399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036399.jpg\"}', 'upc' => '048021446223', 'provider' => 'bestbuy'],\n ['name' => \"Now, I Can See - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-i-can-see-cd/2036512.p?id=131128&skuId=2036512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2036512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2036\\/2036512_sa.jpg\"}', 'upc' => '048021601127', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme 64GB CompactFlash Memory Card - Black/Gold\", 'description_short' => \"Compatible with select CF-enabled devices, including select DSLR cameras; 64GB storage capacity; up to 120MB/sec. read speed; up to 60MB/sec. write speed\", 'description_long' => \"Compatible with select CF-enabled devices, including select DSLR cameras; 64GB storage capacity; up to 120MB/sec. read speed; up to 60MB/sec. write speed\", 'price' => 349.99, 'sale_price' => 49.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-64gb-compactflash-memory-card-black-gold/2037002.p?id=1219068385622&skuId=2037002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037002_sa.jpg\"}', 'upc' => '619659103767', 'provider' => 'bestbuy'],\n ['name' => \"Live from Salt Lake City Utah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-salt-lake-city-utah-cd/2037272.p?id=130600&skuId=2037272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037272_sa.jpg\"}', 'upc' => '021401710527', 'provider' => 'bestbuy'],\n ['name' => \"He's All over Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hes-all-over-me-cd/2037325.p?id=128197&skuId=2037325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037325_sa.jpg\"}', 'upc' => '021401710824', 'provider' => 'bestbuy'],\n ['name' => \"Iris Innovations - General-Purpose Camera\", 'description_short' => \"From our expanded online assortment; compatible with most marine multifunction displays; day/night use; 23 IR LEDs; 65&#039; range\", 'description_long' => \"From our expanded online assortment; compatible with most marine multifunction displays; day/night use; 23 IR LEDs; 65&#039; range\", 'price' => 218.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iris-innovations-general-purpose-camera/2037809.p?id=1218306464001&skuId=2037809', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037809_rc.jpg\"}', 'upc' => '5060241170226', 'provider' => 'bestbuy'],\n ['name' => \"Oster - My Blend 20-Oz. Blender - Blue\", 'description_short' => \"Stainless-steel ice-crushing blade; 20-oz. capacity; BPA-free sports bottle; dishwasher safe\", 'description_long' => \"Stainless-steel ice-crushing blade; 20-oz. capacity; BPA-free sports bottle; dishwasher safe\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/oster-my-blend-20-oz-blender-blue/2037936.p?id=1218307911690&skuId=2037936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037936_sa.jpg\"}', 'upc' => '034264445208', 'provider' => 'bestbuy'],\n ['name' => \"ZAGG - InvisibleSHIELD for LG Cosmos Touch VN270 Mobile Phones - Clear\", 'description_short' => \"From our expanded online assortment; compatible with LG Cosmos Touch VN270 mobile phones; protects against scratches; military-grade material\", 'description_long' => \"From our expanded online assortment; compatible with LG Cosmos Touch VN270 mobile phones; protects against scratches; military-grade material\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zagg-invisibleshield-for-lg-cosmos-touch-vn270-mobile-phones-clear/2037954.p?id=1218307633510&skuId=2037954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2037954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2037\\/2037954_rc.jpg\"}', 'upc' => '843404069590', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Samsung Galaxy S III Mobile Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S III mobile phones; 3.7V; 4300 mAh\", 'description_long' => \"Compatible with Samsung Galaxy S III mobile phones; 3.7V; 4300 mAh\", 'price' => 34.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-samsung-galaxy-s-iii-mobile-phones-black/2038001.p?id=1219068634102&skuId=2038001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038001_sa.jpg\"}', 'upc' => '029521853742', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Samsung Galaxy Note II Mobile Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy Note II mobile phones; 3.8V; 6200 mAh\", 'description_long' => \"Compatible with Samsung Galaxy Note II mobile phones; 3.8V; 6200 mAh\", 'price' => 44.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-samsung-galaxy-note-ii-mobile-phones-black/2038029.p?id=1219068630315&skuId=2038029', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038029_sa.jpg\"}', 'upc' => '029521853735', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for BlackBerry Curve 9220, 9310, 9315 and 9320 Mobile Phones - Black\", 'description_short' => \"Compatible with BlackBerry Curve 9220, 9310, 9315 and 9320 mobile phones; NOMEM technology; 3.7V of power; 1650 mAh capacity; airplane-safe design\", 'description_long' => \"Compatible with BlackBerry Curve 9220, 9310, 9315 and 9320 mobile phones; NOMEM technology; 3.7V of power; 1650 mAh capacity; airplane-safe design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-blackberry-curve-9220-9310-9315-and-9320-mobile-phones-black/2038038.p?id=1219068640280&skuId=2038038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038038_sa.jpg\"}', 'upc' => '029521853278', 'provider' => 'bestbuy'],\n ['name' => \"Lenmar - Lithium-Ion Battery for Select Huawei and T-Mobile Mobile Phones - Black\", 'description_short' => \"Compatible with select Huawei and T-Mobile mobile phones; 3.7V; 1080 mAh\", 'description_long' => \"Compatible with select Huawei and T-Mobile mobile phones; 3.7V; 1080 mAh\", 'price' => 19.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/lenmar-lithium-ion-battery-for-select-huawei-and-t-mobile-mobile-phones-black/2038047.p?id=1219068629469&skuId=2038047', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038047_sa.jpg\"}', 'upc' => '029521848687', 'provider' => 'bestbuy'],\n ['name' => \"Uniden - VHF Marine 2-Way Radio - White\", 'description_short' => \"From our expanded online assortment; most American, Canadian and international marine channels; 10 weather channels; S.A.M.E. emergency/weather alert; backlit full-dot matrix display\", 'description_long' => \"From our expanded online assortment; most American, Canadian and international marine channels; 10 weather channels; S.A.M.E. emergency/weather alert; backlit full-dot matrix display\", 'price' => 139.99, 'sale_price' => 110.99, 'url' => 'http://www.bestbuy.com/site/uniden-vhf-marine-2-way-radio-white/2038089.p?id=1218306949473&skuId=2038089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038089_rc.jpg\"}', 'upc' => '050633501290', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - View Case for Apple® iPhone® 5 and 5s - Clear/Whiteout\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; transparent polycarbonate back; impact-resistant TPU edges; colorful border; compact, play-through design; camera lens cutout\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; transparent polycarbonate back; impact-resistant TPU edges; colorful border; compact, play-through design; camera lens cutout\", 'price' => 19.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/belkin-view-case-for-apple-iphone-5-and-5s-clear-whiteout/2038107.p?id=1219068639562&skuId=2038107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038107_sa.jpg\"}', 'upc' => '722868921555', 'provider' => 'bestbuy'],\n ['name' => \"Uniden - VHF Marine 2-Way Radio - Multicolor\", 'description_short' => \"From our expanded online assortment; most marine VHF and NOAA weather channels; orange backlit LCD; weather alert\", 'description_long' => \"From our expanded online assortment; most marine VHF and NOAA weather channels; orange backlit LCD; weather alert\", 'price' => 99.99, 'sale_price' => 85.99, 'url' => 'http://www.bestbuy.com/site/uniden-vhf-marine-2-way-radio-multicolor/2038113.p?id=1218306949052&skuId=2038113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038113_sa.jpg\"}', 'upc' => '050633501252', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - Grip Candy Sheer Case for Apple® iPhone® 5 and 5s - Smolder/Gravy\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; TPU material; button and screen protection; play-through design; translucent, 2-tone design; compact size\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; TPU material; button and screen protection; play-through design; translucent, 2-tone design; compact size\", 'price' => 24.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/belkin-grip-candy-sheer-case-for-apple-iphone-5-and-5s-smolder-gravy/2038116.p?id=1219068633570&skuId=2038116', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038116_sa.jpg\"}', 'upc' => '722868897508', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - Ease-Fit Armband for Apple® iPhone® 5 and 5s - Black\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; lightweight, flexible neoprene-and-Lycra construction; low-profile, form-fitting design; hand washable\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; lightweight, flexible neoprene-and-Lycra construction; low-profile, form-fitting design; hand washable\", 'price' => 17.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/belkin-ease-fit-armband-for-apple-iphone-5-and-5s-black/2038134.p?id=1219068630644&skuId=2038134', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038134', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038134_sa.jpg\"}', 'upc' => '722868894743', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - Grip Candy Sheer Case for Apple® iPhone® 4 and 4S - Clear/Blacktop\", 'description_short' => \"Compatible with Apple iPhone 4 and 4S; TPU material; play-through design; translucent, 2-tone design; compact size\", 'description_long' => \"Compatible with Apple iPhone 4 and 4S; TPU material; play-through design; translucent, 2-tone design; compact size\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-grip-candy-sheer-case-for-apple-iphone-4-and-4s-clear-blacktop/2038152.p?id=1219068626542&skuId=2038152', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038152_sa.jpg\"}', 'upc' => '722868857649', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Coffee - 10-Cup Coffeemaker - Stainless-Steel/Black\", 'description_short' => \"Double-walled thermal carafe; brew pause; 2-hour auto shutoff; Fresh Brew timer; brew strength selector\", 'description_long' => \"Double-walled thermal carafe; brew pause; 2-hour auto shutoff; Fresh Brew timer; brew strength selector\", 'price' => 69.99, 'sale_price' => 61.99, 'url' => 'http://www.bestbuy.com/site/mr-coffee-10-cup-coffeemaker-stainless-steel-black/2038159.p?id=1218306948033&skuId=2038159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038159_rc.jpg\"}', 'upc' => '072179231042', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - View Case for Apple® iPhone® 5 and 5s - Clear/Blacktop\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; transparent polycarbonate back; impact-resistant TPU edges; colorful border; compact, play-through design; camera lens cutout\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; transparent polycarbonate back; impact-resistant TPU edges; colorful border; compact, play-through design; camera lens cutout\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-view-case-for-apple-iphone-5-and-5s-clear-blacktop/2038189.p?id=1219068626327&skuId=2038189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038189_sa.jpg\"}', 'upc' => '722868908396', 'provider' => 'bestbuy'],\n ['name' => \"Explicit Game [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/explicit-game-pa-cd/2038663.p?id=107559&skuId=2038663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038663_sa.jpg\"}', 'upc' => '088561122225', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 3.3' 3.5mm-to-3.5mm Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-3-3-3-5mm-to-3-5mm-interconnect-cable-black-green/2038702.p?id=1219068635534&skuId=2038702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310264724\\/1310264724_sa.jpg\"}', 'upc' => '092592061002', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 16.4' 3.5mm-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-16-4-3-5mm-to-rca-interconnect-cable-black-white/2038711.p?id=1219068640475&skuId=2038711', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038711_rc.jpg\"}', 'upc' => '092592076914', 'provider' => 'bestbuy'],\n ['name' => \"Electromagnetic Waves - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electromagnetic-waves-cd/2038725.p?id=107560&skuId=2038725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038725_sa.jpg\"}', 'upc' => '784023100526', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 9.8' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-9-8-rca-to-rca-interconnect-cable-black-white/2038739.p?id=1219068634813&skuId=2038739', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038739_rc.jpg\"}', 'upc' => '092592076891', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 3.3' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-3-3-rca-to-rca-interconnect-cable-black-white/2038748.p?id=1219068629408&skuId=2038748', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038748_rc.jpg\"}', 'upc' => '092592076822', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 3.3' 3.5mm-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-3-3-3-5mm-to-rca-interconnect-cable-black-white/2038757.p?id=1219068623172&skuId=2038757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038757_rc.jpg\"}', 'upc' => '092592076815', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 26.2' 3.5mm-to-3.5mm Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 60.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-26-2-3-5mm-to-3-5mm-interconnect-cable-black-white/2038766.p?id=1219068634749&skuId=2038766', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038766_rc.jpg\"}', 'upc' => '092592076938', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 9.8' 3.5mm-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-9-8-3-5mm-to-rca-interconnect-cable-black-white/2038775.p?id=1219068637830&skuId=2038775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038775_rc.jpg\"}', 'upc' => '092592076877', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 9.8' 3.5mm-to-3.5mm Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-9-8-3-5mm-to-3-5mm-interconnect-cable-black-white/2038784.p?id=1219068627657&skuId=2038784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038784_rc.jpg\"}', 'upc' => '092592076860', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 3.3' 3.5mm-to-3.5mm Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-3-3-3-5mm-to-3-5mm-interconnect-cable-black-white/2038793.p?id=1219068628882&skuId=2038793', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038793_rc.jpg\"}', 'upc' => '092592076808', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 9.8' 3.5mm-to-3.5mm Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-9-8-3-5mm-to-3-5mm-interconnect-cable-black-green/2038802.p?id=1219068630051&skuId=2038802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038802_rc.jpg\"}', 'upc' => '092592061149', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 26.2' 3.5mm-to-RCA Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-26-2-3-5mm-to-rca-interconnect-cable-black-green/2038811.p?id=1219068635271&skuId=2038811', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038811_rc.jpg\"}', 'upc' => '092592062252', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 2' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-2-rca-to-rca-interconnect-cable-black-white/2038848.p?id=1219068637630&skuId=2038848', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038848_rc.jpg\"}', 'upc' => '092592076761', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 4.9' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-4-9-rca-to-rca-interconnect-cable-black-white/2038857.p?id=1219068632065&skuId=2038857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038857_rc.jpg\"}', 'upc' => '092592076792', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 4.9' 3.5mm-to-3.5mm Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-4-9-3-5mm-to-3-5mm-interconnect-cable-black-green/2038866.p?id=1219068628429&skuId=2038866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038866_rc.jpg\"}', 'upc' => '092592060661', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 16.4' 3.5mm-to-3.5mm Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-16-4-3-5mm-to-3-5mm-interconnect-cable-black-white/2038875.p?id=1219068638738&skuId=2038875', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038875_rc.jpg\"}', 'upc' => '092592076907', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 16.4' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-16-4-rca-to-rca-interconnect-cable-black-white/2038884.p?id=1219068627131&skuId=2038884', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038884_rc.jpg\"}', 'upc' => '092592076921', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 16.4' 3.5mm-to-RCA Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 63.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-16-4-3-5mm-to-rca-interconnect-cable-black-green/2038893.p?id=1219068631085&skuId=2038893', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038893_rc.jpg\"}', 'upc' => '092592061781', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 2' 3.5mm-to-3.5mm Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-2-3-5mm-to-3-5mm-interconnect-cable-black-white/2038902.p?id=1219068626871&skuId=2038902', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038902_rc.jpg\"}', 'upc' => '092592076747', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 26.2' 3.5mm-to-3.5mm Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-26-2-3-5mm-to-3-5mm-interconnect-cable-black-green/2038911.p?id=1219068635208&skuId=2038911', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038911_rc.jpg\"}', 'upc' => '092592062245', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 2' 3.5mm-to-3.5mm Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-2-3-5mm-to-3-5mm-interconnect-cable-black-green/2038939.p?id=1219068636589&skuId=2038939', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038939_rc.jpg\"}', 'upc' => '092592060401', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 4.9' 3.5mm-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 28.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-4-9-3-5mm-to-rca-interconnect-cable-black-white/2038948.p?id=1219068628037&skuId=2038948', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038948_rc.jpg\"}', 'upc' => '092592076785', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 26.2' 3.5mm-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with 3.5mm or RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 60.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-26-2-3-5mm-to-rca-interconnect-cable-black-white/2038957.p?id=1219068640081&skuId=2038957', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038957_rc.jpg\"}', 'upc' => '092592076952', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Tower 26.2' RCA-to-RCA Interconnect Cable - Black/White\", 'description_short' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'description_long' => \"Compatible with most audio equipment with RCA connectivity; solid long-grain copper conductors; foamed-polyethylene insulation materials; cold-welded terminations\", 'price' => 60.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-tower-26-2-rca-to-rca-interconnect-cable-black-white/2038966.p?id=1219068628623&skuId=2038966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2038966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2038\\/2038966_rc.jpg\"}', 'upc' => '092592076983', 'provider' => 'bestbuy'],\n ['name' => \"Key Digital - Phantom Series HDMI Switcher\", 'description_short' => \"KEY DIGITAL Phantom Series HDMI Switcher: Offers digital switching of up to 2 HDMI inputs to an HDMI output; supports standard-definition, high-definition and 3D signals; iAS (Intelligent Auto Sense) technology; audio de-embedder\", 'description_long' => \"KEY DIGITAL Phantom Series HDMI Switcher: Offers digital switching of up to 2 HDMI inputs to an HDMI output; supports standard-definition, high-definition and 3D signals; iAS (Intelligent Auto Sense) technology; audio de-embedder\", 'price' => 333.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/key-digital-phantom-series-hdmi-switcher/2039073.p?id=1219300829779&skuId=2039073', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039073_sa.jpg\"}', 'upc' => '819505007991', 'provider' => 'bestbuy'],\n ['name' => \"The Imitation Game (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-imitation-game-dvd/2039082.p?id=3351325&skuId=2039082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039082_sa.jpg\"}', 'upc' => '013132622507', 'provider' => 'bestbuy'],\n ['name' => \"He's Everything to Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hes-everything-to-me-cd/2039396.p?id=155730&skuId=2039396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039396.jpg\"}', 'upc' => '021401481021', 'provider' => 'bestbuy'],\n ['name' => \"I'll Be with You Always - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-be-with-you-always-cd/2039412.p?id=130895&skuId=2039412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039412.jpg\"}', 'upc' => '021401481328', 'provider' => 'bestbuy'],\n ['name' => \"Wait I Say on the Lord - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wait-i-say-on-the-lord-cd/2039449.p?id=92620&skuId=2039449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039449_sa.jpg\"}', 'upc' => '021401481526', 'provider' => 'bestbuy'],\n ['name' => \"Walking Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-rhythm-cd/2039644.p?id=94953&skuId=2039644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039644_sa.jpg\"}', 'upc' => '022211703020', 'provider' => 'bestbuy'],\n ['name' => \"Jesus Gave Me Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jesus-gave-me-water-cd/2039653.p?id=78622&skuId=2039653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039653_sa.jpg\"}', 'upc' => '022211703129', 'provider' => 'bestbuy'],\n ['name' => \"Thunderbolt of the Middle West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thunderbolt-of-the-middle-west-cd/2039671.p?id=90875&skuId=2039671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039671_sa.jpg\"}', 'upc' => '022211703327', 'provider' => 'bestbuy'],\n ['name' => \"Heaven Is My Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heaven-is-my-home-cd/2039699.p?id=99533&skuId=2039699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039699_sa.jpg\"}', 'upc' => '022211704027', 'provider' => 'bestbuy'],\n ['name' => \"The Sermon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sermon-cd/2039706.p?id=82332&skuId=2039706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039706_sa.jpg\"}', 'upc' => '022211704126', 'provider' => 'bestbuy'],\n ['name' => \"Too Close - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-close-cd/2039715.p?id=75700&skuId=2039715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039715.jpg\"}', 'upc' => '022211704225', 'provider' => 'bestbuy'],\n ['name' => \"Heavenly Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavenly-light-cd/2039742.p?id=100947&skuId=2039742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2039742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2039\\/2039742_sa.jpg\"}', 'upc' => '022211704423', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Soft Shell Case for Samsung Galaxy S 5 Cell Phones - White/Blue/Green/Orange\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-soft-shell-case-for-samsung-galaxy-s-5-cell-phones-white-blue-green-orange/2040023.p?id=1219528995832&skuId=2040023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040023_sa.jpg\"}', 'upc' => '600603181665', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Blue/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; anchors blue design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; anchors blue design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-blue-white/2040032.p?id=1219528996288&skuId=2040032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040032_sa.jpg\"}', 'upc' => '600603181511', 'provider' => 'bestbuy'],\n ['name' => \"Ecosential by Smart Choice - 18-Oz. Smooth Cooktop Cleaner - White\", 'description_short' => \"Designed for use on most smooth cooktops; cleans stains, burnt-on grease and other buildup\", 'description_long' => \"Designed for use on most smooth cooktops; cleans stains, burnt-on grease and other buildup\", 'price' => 7.99, 'sale_price' => 2.99, 'url' => 'http://www.bestbuy.com/site/ecosential-by-smart-choice-18-oz-smooth-cooktop-cleaner-white/2040038.p?id=1218306504825&skuId=2040038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040038_sa.jpg\"}', 'upc' => '012505452246', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Gold/Clear\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; hello-clear design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; hello-clear design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-gold-clear/2040041.p?id=1219528996223&skuId=2040041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040041_sa.jpg\"}', 'upc' => '600603181481', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Blue/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; anchors blue design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; anchors blue design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-blue-white/2040069.p?id=1219528996742&skuId=2040069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040069_sa.jpg\"}', 'upc' => '600603181436', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - White/Blue/Green/Orange\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU construction; camera cut-out; flowers design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU construction; camera cut-out; flowers design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-white-blue-green-orange/2040078.p?id=1219528994700&skuId=2040078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040078_sa.jpg\"}', 'upc' => '600603181429', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Black/Gold\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; gloss design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; gloss design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-black-gold/2040087.p?id=1219528996613&skuId=2040087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040087_sa.jpg\"}', 'upc' => '600603181542', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® SE, 5s and 5 - Blue/White\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; TPU construction; camera cut-out; anchors blue design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; TPU construction; camera cut-out; anchors blue design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-se-5s-and-5-blue-white/2040101.p?id=1219528995637&skuId=2040101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312463415\\/1312463415_sa.jpg\"}', 'upc' => '600603181597', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Blue\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; quad-stripe design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; quad-stripe design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-blue/2040129.p?id=1219528995766&skuId=2040129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040129_sa.jpg\"}', 'upc' => '600603181412', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Soft Shell Case for Samsung Galaxy S 5 Cell Phones - Gold/Clear\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-soft-shell-case-for-samsung-galaxy-s-5-cell-phones-gold-clear/2040138.p?id=1219528994697&skuId=2040138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040138_sa.jpg\"}', 'upc' => '600603181641', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® SE, 5s and 5 - White/Blue/Green/Orange\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; TPU construction; camera cut-out; floral design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone SE, 5s and 5; TPU construction; camera cut-out; floral design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-se-5s-and-5-white-blue-green-orange/2040147.p?id=1219528996028&skuId=2040147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312463491\\/1312463491_sa.jpg\"}', 'upc' => '600603181580', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Black/Gold\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; gloss design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; gloss design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-black-gold/2040156.p?id=1219528994703&skuId=2040156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040156_sa.jpg\"}', 'upc' => '600603181467', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Soft Shell Case for Samsung Galaxy S 5 Cell Phones - Blue/White\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-soft-shell-case-for-samsung-galaxy-s-5-cell-phones-blue-white/2040165.p?id=1219528995963&skuId=2040165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040165_sa.jpg\"}', 'upc' => '600603181672', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - White/Blue/Green/Orange\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; flowers design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; flowers design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-white-blue-green-orange/2040174.p?id=1219528996483&skuId=2040174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040174_sa.jpg\"}', 'upc' => '600603181504', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 Plus - Blue\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; quad-stripe design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6 Plus; TPU construction; camera cut-out; quad-stripe design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-plus-blue/2040192.p?id=1219528994701&skuId=2040192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040192_sa.jpg\"}', 'upc' => '600603181498', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Soft Shell Case for Samsung Galaxy S 5 Cell Phones - Blue\", 'description_short' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'description_long' => \"Only at Best Buy\nCompatible with Samsung Galaxy S 5 cell phones; TPU material; camera cutout\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-soft-shell-case-for-samsung-galaxy-s-5-cell-phones-blue/2040207.p?id=1219528996092&skuId=2040207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040207_sa.jpg\"}', 'upc' => '600603181658', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - Case for Apple® iPhone® 6 - Gold/Clear\", 'description_short' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; hello-clear design\", 'description_long' => \"Only at Best Buy\nCompatible with Apple iPhone 6; TPU material; camera cut-out; hello-clear design\", 'price' => 1.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-case-for-apple-iphone-6-gold-clear/2040216.p?id=1219528994707&skuId=2040216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040216_sa.jpg\"}', 'upc' => '600603181405', 'provider' => 'bestbuy'],\n ['name' => \"Saints in Praise, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saints-in-praise-vol-1-cd-various/2040981.p?id=103819&skuId=2040981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2040981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2040\\/2040981_sa.jpg\"}', 'upc' => '077775118926', 'provider' => 'bestbuy'],\n ['name' => \"KontrolFreek - Alpha Controller Pads for Xbox One - Black\", 'description_short' => \"Improve your existing controller&#039;s grip and comfort level\", 'description_long' => \"Improve your existing controller&#039;s grip and comfort level\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kontrolfreek-alpha-controller-pads-for-xbox-one-black/2041013.p?id=1219522218943&skuId=2041013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041013_sa.jpg\"}', 'upc' => '701979993132', 'provider' => 'bestbuy'],\n ['name' => \"Ecosential - 18-Oz. Kitchen Surface and Oven Cleaner - White\", 'description_short' => \"Designed for use on granite countertops, vinyl surfaces, painted appliances and manual-clean ovens; eco-friendly\", 'description_long' => \"Designed for use on granite countertops, vinyl surfaces, painted appliances and manual-clean ovens; eco-friendly\", 'price' => 7.99, 'sale_price' => 2.99, 'url' => 'http://www.bestbuy.com/site/ecosential-18-oz-kitchen-surface-and-oven-cleaner-white/2041037.p?id=1218306503361&skuId=2041037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041037_sa.jpg\"}', 'upc' => '012505452550', 'provider' => 'bestbuy'],\n ['name' => \"Ecosential - Cooktop Cleaning Pad (10-Pack)\", 'description_short' => \"Designed for use on glass cooktops; durable design\", 'description_long' => \"Designed for use on glass cooktops; durable design\", 'price' => 4.99, 'sale_price' => 1.99, 'url' => 'http://www.bestbuy.com/site/ecosential-cooktop-cleaning-pad-10-pack/2041064.p?id=1218306505307&skuId=2041064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041064_sa.jpg\"}', 'upc' => '012505452628', 'provider' => 'bestbuy'],\n ['name' => \"Rock My Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-my-soul-cd/2041347.p?id=88831&skuId=2041347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041347_sa.jpg\"}', 'upc' => '015891371726', 'provider' => 'bestbuy'],\n ['name' => \"Best of Sugar Hill Gospel, Vol. 1: Everytime... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-sugar-hill-gospel-vol-1-everytime-cd-various/2041427.p?id=83978&skuId=2041427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041427_sa.jpg\"}', 'upc' => '015891910222', 'provider' => 'bestbuy'],\n ['name' => \"Way Down Deep in My Soul: The Best of Sugar... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/way-down-deep-in-my-soul-the-best-of-sugar-various-cd/2041445.p?id=83979&skuId=2041445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2041445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2041\\/2041445_sa.jpg\"}', 'upc' => '015891910321', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Hell in a Cell 2013 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-hell-in-a-cell-2013-dvd/2042012.p?id=2751930&skuId=2042012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042012_sa.jpg\"}', 'upc' => '651191951789', 'provider' => 'bestbuy'],\n ['name' => \"Premonition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/premonition-cd/2042015.p?id=107618&skuId=2042015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042015.jpg\"}', 'upc' => '026245106826', 'provider' => 'bestbuy'],\n ['name' => \"Parkland (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parkland-blu-ray-disc/2042021.p?id=2750172&skuId=2042021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042021_sa.jpg\"}', 'upc' => '687797142764', 'provider' => 'bestbuy'],\n ['name' => \"Electra Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electra-blues-cd/2042051.p?id=107575&skuId=2042051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042051_sa.jpg\"}', 'upc' => '026245202320', 'provider' => 'bestbuy'],\n ['name' => \"Beats by Dr. Dre - Beats Solo 2 On-Ear Wireless Headphones - Red\", 'description_short' => \"Compatible with most Bluetooth devices; 30&#039; wireless range; fine-tuned acoustics; 12-hour rechargeable battery; battery fuel gauge; built-in microphone\", 'description_long' => \"Compatible with most Bluetooth devices; 30&#039; wireless range; fine-tuned acoustics; 12-hour rechargeable battery; battery fuel gauge; built-in microphone\", 'price' => 299.99, 'sale_price' => 249.99, 'url' => 'http://www.bestbuy.com/site/beats-by-dr-dre-beats-solo-2-on-ear-wireless-headphones-red/2042058.p?id=1219524329273&skuId=2042058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042058_sa.jpg\"}', 'upc' => '848447021222', 'provider' => 'bestbuy'],\n ['name' => \"II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ii-cd/2042140.p?id=107389&skuId=2042140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042140_sa.jpg\"}', 'upc' => '731453032323', 'provider' => 'bestbuy'],\n ['name' => \"Born Dead [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-dead-pa-cd/2042541.p?id=107493&skuId=2042541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042541_sa.jpg\"}', 'upc' => '724383980222', 'provider' => 'bestbuy'],\n ['name' => \"Universal Mother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/universal-mother-cd/2042943.p?id=107517&skuId=2042943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2042943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2042\\/2042943_sa.jpg\"}', 'upc' => '724383054923', 'provider' => 'bestbuy'],\n ['name' => \"JVC - Gumy Earbud Headphones - Red\", 'description_short' => \"Sound isolation; 11mm drivers; neodymium magnets; soft rubber body\", 'description_long' => \"Sound isolation; 11mm drivers; neodymium magnets; soft rubber body\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jvc-gumy-earbud-headphones-red/2043011.p?id=1219068384578&skuId=2043011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043011_sa.jpg\"}', 'upc' => '046838046810', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2043048.p?id=2752406&skuId=2043048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043048_sa.jpg\"}', 'upc' => '602537473366', 'provider' => 'bestbuy'],\n ['name' => \"The Paradigm Shift [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-paradigm-shift-pa-cd/2043057.p?id=2752350&skuId=2043057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043057_sa.jpg\"}', 'upc' => '813985011417', 'provider' => 'bestbuy'],\n ['name' => \"Arrows [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arrows-digipak-cd/2043066.p?id=2702308&skuId=2043066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043066_sa.jpg\"}', 'upc' => '724596956120', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2043075.p?id=2752292&skuId=2043075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043075_sa.jpg\"}', 'upc' => '602537468997', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Select Samsung Cell Phones - Black\", 'description_short' => \"Compatible with select Samsung cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with select Samsung cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-select-samsung-cell-phones-black/2043117.p?id=1219068628364&skuId=2043117', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043117_sa.jpg\"}', 'upc' => '848891000583', 'provider' => 'bestbuy'],\n ['name' => \"Semantic Spaces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/semantic-spaces-cd/2043130.p?id=107588&skuId=2043130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043130_sa.jpg\"}', 'upc' => '067003009225', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2043204.p?id=2752426&skuId=2043204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043204_sa.jpg\"}', 'upc' => '602537534234', 'provider' => 'bestbuy'],\n ['name' => \"Thinking Out Loud [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thinking-out-loud-digipak-cd/2043259.p?id=2752453&skuId=2043259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043259_sa.jpg\"}', 'upc' => '790692078622', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2043432.p?id=2752826&skuId=2043432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043432_sa.jpg\"}', 'upc' => '602537473052', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Apple® iPhone® 5 - Trident Green\", 'description_short' => \"Compatible with Apple iPhone 5; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector; lanyard loop\", 'description_long' => \"Compatible with Apple iPhone 5; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector; lanyard loop\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-apple-iphone-5-trident-green/2043487.p?id=1219068631809&skuId=2043487', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043487_sa.jpg\"}', 'upc' => '848891002464', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Samsung Galaxy S 4 Cell Phones - Blue\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-samsung-galaxy-s-4-cell-phones-blue/2043585.p?id=1219068633371&skuId=2043585', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043585_sa.jpg\"}', 'upc' => '848891004215', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Cyclops Case for Apple® iPhone® 5 and 5s - Red\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; TPE and polycarbonate layers; meets military standards; port plugs; built-in screen protector\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; TPE and polycarbonate layers; meets military standards; port plugs; built-in screen protector\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-cyclops-case-for-apple-iphone-5-and-5s-red/2043612.p?id=1219068631220&skuId=2043612', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043612_sa.jpg\"}', 'upc' => '848891002570', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Apple® iPhone® 4 and 4S - Red\", 'description_short' => \"Compatible with Apple iPhone 4 and 4S; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with Apple iPhone 4 and 4S; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-apple-iphone-4-and-4s-red/2043676.p?id=1219068626935&skuId=2043676&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043676', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043676_sa.jpg\"}', 'upc' => '609728619244', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Electra Charging Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; corner protection; port plugs; screen protector; built-in battery\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; corner protection; port plugs; screen protector; built-in battery\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-electra-charging-case-for-samsung-galaxy-s-4-cell-phones-black/2043712.p?id=1219068640017&skuId=2043712', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043712_sa.jpg\"}', 'upc' => '848891004505', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Samsung Galaxy S 4 Cell Phones - Trident Green\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-samsung-galaxy-s-4-cell-phones-trident-green/2043721.p?id=1219068634167&skuId=2043721', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043721_sa.jpg\"}', 'upc' => '848891004246', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Perseus A.M.S. Case for Apple® iPhone® 4 and 4S - Red\", 'description_short' => \"Compatible with Apple iPhone 4 and 4S; silicone construction; antiskid texture; screen protector\", 'description_long' => \"Compatible with Apple iPhone 4 and 4S; silicone construction; antiskid texture; screen protector\", 'price' => 14.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/trident-perseus-a-m-s-case-for-apple-iphone-4-and-4s-red/2043767.p?id=1219068638606&skuId=2043767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043767_sa.jpg\"}', 'upc' => '816694014595', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Motorola DROID RAZR MAXX HD Cell Phones - Red\", 'description_short' => \"Compatible with Motorola DROID RAZR MAXX HD cell phones; 2-layer design; meets military standards; port plugs; screen protector\", 'description_long' => \"Compatible with Motorola DROID RAZR MAXX HD cell phones; 2-layer design; meets military standards; port plugs; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-motorola-droid-razr-maxx-hd-cell-phones-red/2043785.p?id=1219068639758&skuId=2043785', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043785_sa.jpg\"}', 'upc' => '848891003171', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2043885.p?id=2752359&skuId=2043885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043885_sa.jpg\"}', 'upc' => '602537469017', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Apple® iPhone® 5 - Black\", 'description_short' => \"Compatible with Apple iPhone 5; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector; lanyard loop\", 'description_long' => \"Compatible with Apple iPhone 5; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector; lanyard loop\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-apple-iphone-5-black/2043903.p?id=1219068641789&skuId=2043903', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043903', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043903_sa.jpg\"}', 'upc' => '816694014106', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Select Samsung Cell Phones - Blue\", 'description_short' => \"Compatible with select Samsung cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with select Samsung cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-select-samsung-cell-phones-blue/2043958.p?id=1219068627838&skuId=2043958', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043958_sa.jpg\"}', 'upc' => '848891000590', 'provider' => 'bestbuy'],\n ['name' => \"Live at Montreux 1996 & 2006 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-montreux-1996-2006-cd/2043976.p?id=2747971&skuId=2043976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2043976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2043\\/2043976_sa.jpg\"}', 'upc' => '826992033723', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Aegis Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; silicone and polycarbonate layers; meets military standards; corner protection; port plugs; antiskid pads; screen protector\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-aegis-case-for-samsung-galaxy-s-4-cell-phones-black/2044001.p?id=1219068636654&skuId=2044001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044001_sa.jpg\"}', 'upc' => '848891004208', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2044083.p?id=2752410&skuId=2044083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044083_sa.jpg\"}', 'upc' => '602537422050', 'provider' => 'bestbuy'],\n ['name' => \"Ride 'Til I Die/The Hard Stuff - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ride-til-i-die-the-hard-stuff-cd/2044212.p?id=2747562&skuId=2044212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044212_sa.jpg\"}', 'upc' => '826992033822', 'provider' => 'bestbuy'],\n ['name' => \"Icon [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-pa-cd/2044221.p?id=2752505&skuId=2044221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044221_sa.jpg\"}', 'upc' => '602537531097', 'provider' => 'bestbuy'],\n ['name' => \"Paradigm Shift... [CD & DVD] [PA] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paradigm-shift-cd-dvd-pa-digipak-cd-dvd-deluxe-edition/2044249.p?id=2752465&skuId=2044249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044249_sa.jpg\"}', 'upc' => '813985011431', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2044258.p?id=2752518&skuId=2044258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044258_sa.jpg\"}', 'upc' => '602537528790', 'provider' => 'bestbuy'],\n ['name' => \"CBGB [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cbgb-original-soundtrack-cd-original-soundtrack/2044267.p?id=2752427&skuId=2044267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044267_sa.jpg\"}', 'upc' => '816651015535', 'provider' => 'bestbuy'],\n ['name' => \"The Canadian Tenors: Lead With Your Heart - Live from Las Vegas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-canadian-tenors-lead-with-your-heart-live-from-las-vegas-dvd/2044276.p?id=2752367&skuId=2044276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044276_sa.jpg\"}', 'upc' => '602537196210', 'provider' => 'bestbuy'],\n ['name' => \"Icon, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-vol-2-cd/2044285.p?id=2752888&skuId=2044285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044285_sa.jpg\"}', 'upc' => '602537451937', 'provider' => 'bestbuy'],\n ['name' => \"Lucid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lucid-cd/2044294.p?id=2752304&skuId=2044294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044294_sa.jpg\"}', 'upc' => '881034186645', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2044459.p?id=2752328&skuId=2044459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044459_sa.jpg\"}', 'upc' => '602537508846', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2044486.p?id=2752408&skuId=2044486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044486_sa.jpg\"}', 'upc' => '602537514847', 'provider' => 'bestbuy'],\n ['name' => \"Legends of Rock N Roll [CD/DVD] [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legends-of-rock-n-roll-cd-dvd-cd-dvd-cd-dvd/2044495.p?id=2747659&skuId=2044495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2044495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2044\\/2044495_sa.jpg\"}', 'upc' => '826992033624', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - 2TB Internal Serial ATA Solid State Hybrid Drive for Desktops\", 'description_short' => \"Serial ATA interface; Adaptive Memory technology; up to 6 Gbps data transfer rates; 8GB solid state MLC flash memory\", 'description_long' => \"Serial ATA interface; Adaptive Memory technology; up to 6 Gbps data transfer rates; 8GB solid state MLC flash memory\", 'price' => 149.99, 'sale_price' => 104.99, 'url' => 'http://www.bestbuy.com/site/seagate-2tb-internal-serial-ata-solid-state-hybrid-drive-for-desktops/2045028.p?id=1219068381850&skuId=2045028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045028_sa.jpg\"}', 'upc' => '763649048788', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Home Alabama: The Country Music Tribute... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-home-alabama-the-country-music-tribute-cd/2045051.p?id=2196744&skuId=2045051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045051_sa.jpg\"}', 'upc' => '602527438016', 'provider' => 'bestbuy'],\n ['name' => \"A Tell All [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-tell-all-digipak-cd/2045055.p?id=2765743&skuId=2045055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045055_sa.jpg\"}', 'upc' => '634457625327', 'provider' => 'bestbuy'],\n ['name' => \"Won't Be Long Now [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wont-be-long-now-digipak-cd/2045064.p?id=2756856&skuId=2045064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045064.jpg\"}', 'upc' => '634457623927', 'provider' => 'bestbuy'],\n ['name' => \"G7th - Newport Pressure-Touch Capo - Black/Silver\", 'description_short' => \"G7TH Newport Pressure-Touch Capo: Compatible with most 12-string guitars; quick-release lever; adjustable tension screw; slim design\", 'description_long' => \"G7TH Newport Pressure-Touch Capo: Compatible with most 12-string guitars; quick-release lever; adjustable tension screw; slim design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g7th-newport-pressure-touch-capo-black-silver/2045082.p?id=1219522216985&skuId=2045082', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045082_sa.jpg\"}', 'upc' => '888680042097', 'provider' => 'bestbuy'],\n ['name' => \"Mad Men: Season Four [3 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 10.99, 'url' => 'http://www.bestbuy.com/site/mad-men-season-four-3-discs-blu-ray-blu-ray-disc/2045246.p?id=2183297&skuId=2045246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045246_sa.jpg\"}', 'upc' => '031398127611', 'provider' => 'bestbuy'],\n ['name' => \"Tyler Perry'S House Of Payne 7 (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tyler-perrys-house-of-payne-7-3-disc-dvd/2045255.p?id=2187108&skuId=2045255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045255.jpg\"}', 'upc' => '031398134039', 'provider' => 'bestbuy'],\n ['name' => \"Mad Men: Season Four [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-men-season-four-4-discs-dvd/2045264.p?id=2183296&skuId=2045264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2045264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2045\\/2045264_sa.jpg\"}', 'upc' => '031398127604', 'provider' => 'bestbuy'],\n ['name' => \"Singing Machine - Home Karaoke Bluetooth Speaker System - Black\", 'description_short' => \"Compatible with most Bluetooth-enabled audio devices and HDMI-enabled TVs; on-demand song library (subscription required); built-in Wi-Fi\", 'description_long' => \"Compatible with most Bluetooth-enabled audio devices and HDMI-enabled TVs; on-demand song library (subscription required); built-in Wi-Fi\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-machine-home-karaoke-bluetooth-speaker-system-black/2046054.p?id=1219068382051&skuId=2046054', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046054_sa.jpg\"}', 'upc' => '047237088883', 'provider' => 'bestbuy'],\n ['name' => \"King of Clubs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-clubs-cd/2046063.p?id=2754780&skuId=2046063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046063_sa.jpg\"}', 'upc' => '093624941453', 'provider' => 'bestbuy'],\n ['name' => \"Singing Machine - Home Wireless Microphone/Remote for Singing Machine Home Bluetooth Speaker Karaoke Systems\", 'description_short' => \"Compatible with Singing Machine Home Bluetooth speaker karaoke systems; dual wireless remote and microphone functions; optical trackpad\", 'description_long' => \"Compatible with Singing Machine Home Bluetooth speaker karaoke systems; dual wireless remote and microphone functions; optical trackpad\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-machine-home-wireless-microphone-remote-for-singing-machine-home-bluetooth-speaker-karaoke-systems/2046081.p?id=1219068384650&skuId=2046081', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046081_rc.jpg\"}', 'upc' => '047237002186', 'provider' => 'bestbuy'],\n ['name' => \"Reanimate [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reanimate-ep-digipak-cd/2046105.p?id=2754848&skuId=2046105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046105_sa.jpg\"}', 'upc' => '075678683497', 'provider' => 'bestbuy'],\n ['name' => \"Vengeance Falls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vengeance-falls-cd/2046123.p?id=2751431&skuId=2046123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046123_sa.jpg\"}', 'upc' => '016861760120', 'provider' => 'bestbuy'],\n ['name' => \"Back Thar n' Over Yonder [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-thar-n-over-yonder-digipak-cd/2046141.p?id=2741465&skuId=2046141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046141_sa.jpg\"}', 'upc' => '075678684241', 'provider' => 'bestbuy'],\n ['name' => \"Hurricane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hurricane-cd/2046169.p?id=2754783&skuId=2046169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046169_sa.jpg\"}', 'upc' => '715187935921', 'provider' => 'bestbuy'],\n ['name' => \"Let's Be Still [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-be-still-digipak-cd/2046178.p?id=2744828&skuId=2046178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046178_sa.jpg\"}', 'upc' => '098787106022', 'provider' => 'bestbuy'],\n ['name' => \"Uncanney Valley [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncanney-valley-digipak-cd/2046187.p?id=2751116&skuId=2046187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046187_sa.jpg\"}', 'upc' => '720841210825', 'provider' => 'bestbuy'],\n ['name' => \"Razer - BlackWidow Tournament Edition Gaming Keyboard - Black\", 'description_short' => \"RAZER BlackWidow Tournament Edition Gaming Keyboard: Compatible with PC and Mac; USB interface; 10 programmable keys and 17 programmable macros; adjustable tilt function; Razer mechanical switch; Razer Synapse-enabled; case included\", 'description_long' => \"RAZER BlackWidow Tournament Edition Gaming Keyboard: Compatible with PC and Mac; USB interface; 10 programmable keys and 17 programmable macros; adjustable tilt function; Razer mechanical switch; Razer Synapse-enabled; case included\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razer-blackwidow-tournament-edition-gaming-keyboard-black/2046256.p?id=1219524352912&skuId=2046256', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046256_sa.jpg\"}', 'upc' => '811254021433', 'provider' => 'bestbuy'],\n ['name' => \"Razer - Goliathus Gaming Mouse Pad - Black\", 'description_short' => \"RAZER Goliathus Gaming Mouse Pad: Compatible with optical and laser mice; nonslip rubber base; cloth weave surface; pixel precise gaming for targeting and tracking\", 'description_long' => \"RAZER Goliathus Gaming Mouse Pad: Compatible with optical and laser mice; nonslip rubber base; cloth weave surface; pixel precise gaming for targeting and tracking\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razer-goliathus-gaming-mouse-pad-black/2046283.p?id=1219524351998&skuId=2046283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046283_sa.jpg\"}', 'upc' => '879862008512', 'provider' => 'bestbuy'],\n ['name' => \"Razer - Blackwidow Tournament Edition 2014 Gaming Keyboard - Black\", 'description_short' => \"RAZER Blackwidow Tournament Edition 2014 Gaming Keyboard: Compatible with PC and Mac; USB interface; CLICKY KEYS; 92 keys; 10 programmable keys; compact layout; Razer mechanical switches\", 'description_long' => \"RAZER Blackwidow Tournament Edition 2014 Gaming Keyboard: Compatible with PC and Mac; USB interface; CLICKY KEYS; 92 keys; 10 programmable keys; compact layout; Razer mechanical switches\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razer-blackwidow-tournament-edition-2014-gaming-keyboard-black/2046537.p?id=1219524351316&skuId=2046537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046537_sa.jpg\"}', 'upc' => '811254021372', 'provider' => 'bestbuy'],\n ['name' => \"Razer - Kraken PRO World of Tanks Gaming Headset - Black\", 'description_short' => \"RAZER Kraken PRO World of Tanks Gaming Headset: Sound isolation; powerful drivers; retractable microphone; foldable design\", 'description_long' => \"RAZER Kraken PRO World of Tanks Gaming Headset: Sound isolation; powerful drivers; retractable microphone; foldable design\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razer-kraken-pro-world-of-tanks-gaming-headset-black/2046582.p?id=1219524352655&skuId=2046582', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2046582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2046\\/2046582_sa.jpg\"}', 'upc' => '811254022317', 'provider' => 'bestbuy'],\n ['name' => \"Ponder the Mystery [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ponder-the-mystery-digipak-cd/2047017.p?id=2755824&skuId=2047017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047017_sa.jpg\"}', 'upc' => '741157092721', 'provider' => 'bestbuy'],\n ['name' => \"Brecker Brothers Band Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brecker-brothers-band-reunion-cd/2047026.p?id=2763982&skuId=2047026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047026_sa.jpg\"}', 'upc' => '616892156048', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Hard Rock, Vol. 2 - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-hard-rock-vol-2-cd-dvd/2047035.p?id=2771074&skuId=2047035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '732865501025', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of BeBe &... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-bebe-cd/2047071.p?id=2755780&skuId=2047071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047071_sa.jpg\"}', 'upc' => '707541992091', 'provider' => 'bestbuy'],\n ['name' => \"Last Patrol [Limited Edition Digipak] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-patrol-limited-edition-digipak-digipak-cd/2047113.p?id=2755323&skuId=2047113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047113_sa.jpg\"}', 'upc' => '819224016724', 'provider' => 'bestbuy'],\n ['name' => \"One for the Road [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-for-the-road-pa-cd/2047186.p?id=2750611&skuId=2047186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047186_sa.jpg\"}', 'upc' => '099923215622', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of Kirk Franklin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-kirk-franklin-cd/2047237.p?id=2755873&skuId=2047237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047237_sa.jpg\"}', 'upc' => '707541992299', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of CeCe Winans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-cece-winans-cd/2047255.p?id=2755834&skuId=2047255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047255_sa.jpg\"}', 'upc' => '707541991896', 'provider' => 'bestbuy'],\n ['name' => \"Royal Flush - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/royal-flush-cd/2047264.p?id=2771047&skuId=2047264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '829569833320', 'provider' => 'bestbuy'],\n ['name' => \"High Times [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-times-pa-cd/2047273.p?id=2750778&skuId=2047273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047273_sa.jpg\"}', 'upc' => '099923217527', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of Fred Hammond - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-fred-hammond-cd/2047282.p?id=2755839&skuId=2047282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047282_sa.jpg\"}', 'upc' => '707541991995', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Jazz Tribute to the Best of Marvin Sapp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-jazz-tribute-to-the-best-of-marvin-sapp-cd/2047438.p?id=2755884&skuId=2047438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047438_sa.jpg\"}', 'upc' => '707541992190', 'provider' => 'bestbuy'],\n ['name' => \"Dyson - Groom Tool - Iron\", 'description_short' => \"Self cleans; mess free vacuum assisted grooming tool\", 'description_long' => \"Self cleans; mess free vacuum assisted grooming tool\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dyson-groom-tool-iron/2047465.p?id=1218307632489&skuId=2047465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047465_sa.jpg\"}', 'upc' => '879957005013', 'provider' => 'bestbuy'],\n ['name' => \"Made to Last [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/made-to-last-digipak-cd/2047509.p?id=2763983&skuId=2047509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047509_sa.jpg\"}', 'upc' => '859711111358', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Is Real - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-is-real-cd/2047518.p?id=2750574&skuId=2047518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047518_sa.jpg\"}', 'upc' => '810874020253', 'provider' => 'bestbuy'],\n ['name' => \"MacCase - V-Carbon Folio Case for Most Apple® iPad® Models - Black\", 'description_short' => \"Compatible with Apple iPad, iPad 2, iPad 3rd generation, iPad with Retina and iPad mini; virtual carbon material; frameless, snap-in design; smart cover technology; folding, play-through design\", 'description_long' => \"Compatible with Apple iPad, iPad 2, iPad 3rd generation, iPad with Retina and iPad mini; virtual carbon material; frameless, snap-in design; smart cover technology; folding, play-through design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maccase-v-carbon-folio-case-for-most-apple-ipad-models-black/2047554.p?id=1219068637562&skuId=2047554', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047554_sa.jpg\"}', 'upc' => '813683008887', 'provider' => 'bestbuy'],\n ['name' => \"MacCase - Folio Case for Apple® iPad® 3rd Generation and iPad with Retina - Black\", 'description_short' => \"Compatible with Apple iPad 3rd generation and iPad with Retina; leather exterior; smart cover technology; folding design; magnetic closure; camera integration; soundboard frame\", 'description_long' => \"Compatible with Apple iPad 3rd generation and iPad with Retina; leather exterior; smart cover technology; folding design; magnetic closure; camera integration; soundboard frame\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maccase-folio-case-for-apple-ipad-3rd-generation-and-ipad-with-retina-black/2047618.p?id=1219068639953&skuId=2047618', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047618_sa.jpg\"}', 'upc' => '813683400032', 'provider' => 'bestbuy'],\n ['name' => \"Summit - 5.5 Cu. Ft. Compact Refrigerator - Stainless-Steel\", 'description_short' => \"Dial thermostat; automatic defrost with hidden evaporator; 3 adjustable glass shelves; interior light\", 'description_long' => \"Dial thermostat; automatic defrost with hidden evaporator; 3 adjustable glass shelves; interior light\", 'price' => 1446, 'sale_price' => 1301.4, 'url' => 'http://www.bestbuy.com/site/summit-5-5-cu-ft-compact-refrigerator-stainless-steel/2047623.p?id=null&skuId=2047623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047623_sa.jpg\"}', 'upc' => '761101023281', 'provider' => 'bestbuy'],\n ['name' => \"MacCase - Sleeve for 15\\\" Apple® MacBook® Pro - Black\", 'description_short' => \"Compatible with 15&quot; Apple MacBook Pro; waterproof, metallic nylon fabric; velvet interior liner; zipperless design; rear cooling vents; perimeter bumper piping\", 'description_long' => \"Compatible with 15&quot; Apple MacBook Pro; waterproof, metallic nylon fabric; velvet interior liner; zipperless design; rear cooling vents; perimeter bumper piping\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maccase-sleeve-for-15-apple-macbook-pro-black/2047636.p?id=1219068625327&skuId=2047636', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047636_sa.jpg\"}', 'upc' => '813683004438', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Hard Shell Case for Samsung Galaxy Note II Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy Note II cell phones; rigid Plextonium frame; silicone core; soft-touch finish; flash-diffusing, coated camera cutout\", 'description_long' => \"Compatible with Samsung Galaxy Note II cell phones; rigid Plextonium frame; silicone core; soft-touch finish; flash-diffusing, coated camera cutout\", 'price' => 29.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-hard-shell-case-for-samsung-galaxy-note-ii-cell-phones-black/2047663.p?id=1219068631285&skuId=2047663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047663_sa.jpg\"}', 'upc' => '814523243352', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - FREQUENCY Textured Impact-Resistant Case for Samsung Galaxy S 4 Cell Phones - Translucent Mercury\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; Flex2O material; stretch- and tear-resistant construction; textured, semirigid exterior; wrap-around design\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; Flex2O material; stretch- and tear-resistant construction; textured, semirigid exterior; wrap-around design\", 'price' => 24.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/incipio-frequency-textured-impact-resistant-case-for-samsung-galaxy-s-4-cell-phones-translucent-mercury/2047672.p?id=1219068635730&skuId=2047672', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047672_sa.jpg\"}', 'upc' => '814523243697', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Ultralight Hard Shell Case for Samsung Galaxy S III Cell Phones - Iridescent Purple\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; sleek, low-profile design; soft-touch finish\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; sleek, low-profile design; soft-touch finish\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-ultralight-hard-shell-case-for-samsung-galaxy-s-iii-cell-phones-iridescent-purple/2047681.p?id=1219068626280&skuId=2047681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047681_sa.jpg\"}', 'upc' => '814523243017', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Ultrathin Snap-On Case for Samsung Galaxy S 4 Cell Phones - Royal Purple\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; rigid Plextonium shell; ultralight, low-profile frame; matte soft-touch finish\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; rigid Plextonium shell; ultralight, low-profile frame; matte soft-touch finish\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-ultrathin-snap-on-case-for-samsung-galaxy-s-4-cell-phones-royal-purple/2047709.p?id=1219068638925&skuId=2047709', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047709_sa.jpg\"}', 'upc' => '814523243741', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Ultralight Hard Shell Case for Samsung Galaxy S III Cell Phones - Iridescent Gray\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; sleek, low-profile design; soft-touch finish\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; rigid Plextonium frame; sleek, low-profile design; soft-touch finish\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-ultralight-hard-shell-case-for-samsung-galaxy-s-iii-cell-phones-iridescent-gray/2047718.p?id=1219068631810&skuId=2047718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047718_sa.jpg\"}', 'upc' => '814523242997', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - FAXION Semirigid Soft Shell Case for Samsung Galaxy S III Cell Phones - Gray/White\", 'description_short' => \"Compatible with Samsung Galaxy S III cell phones; shock-absorbing TPU and impact-resistant polycarbonate materials; rigid Plextonium frame; semirigid NGP soft shell core\", 'description_long' => \"Compatible with Samsung Galaxy S III cell phones; shock-absorbing TPU and impact-resistant polycarbonate materials; rigid Plextonium frame; semirigid NGP soft shell core\", 'price' => 34.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/incipio-faxion-semirigid-soft-shell-case-for-samsung-galaxy-s-iii-cell-phones-gray-white/2047736.p?id=1219068632522&skuId=2047736', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047736_sa.jpg\"}', 'upc' => '814523243079', 'provider' => 'bestbuy'],\n ['name' => \"GoPro - POV30 Waterproof Camera Case - White\", 'description_short' => \"Compatible with GoPro HERO cameras and accessories; ABS and LEXAN exterior; top and bottom removable foam trays; waterproof, shockproof and dirt-proof design; pressure-equalizing latch; includes strap with carabiner\", 'description_long' => \"Compatible with GoPro HERO cameras and accessories; ABS and LEXAN exterior; top and bottom removable foam trays; waterproof, shockproof and dirt-proof design; pressure-equalizing latch; includes strap with carabiner\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gopro-pov30-waterproof-camera-case-white/2047754.p?id=1219068381982&skuId=2047754', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047754_rc.jpg\"}', 'upc' => '032705088175', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - 22\\\" Camera Pole for GoPro - Agent Orange\", 'description_short' => \"Compatible with GoPro HERO cameras; 22&quot; length; anodized-aluminum material; high-visibility rubber grip; lanyard\", 'description_long' => \"Compatible with GoPro HERO cameras; 22&quot; length; anodized-aluminum material; high-visibility rubber grip; lanyard\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-22-camera-pole-for-gopro-agent-orange/2047772.p?id=1219068383164&skuId=2047772', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047772_rc.jpg\"}', 'upc' => '032705270037', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - GearBox7 Waterproof Case - Black\", 'description_short' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dirt-proof design\", 'description_long' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dirt-proof design\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-gearbox7-waterproof-case-black/2047827.p?id=1219068384377&skuId=2047827', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047827_rc.jpg\"}', 'upc' => '032705087017', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - 8\\\" Camera Pole for GoPro - Agent Orange\", 'description_short' => \"Compatible with GoPro HERO cameras; 8&quot; length; anodized-aluminum material; high-visibility rubber grip; includes lanyard\", 'description_long' => \"Compatible with GoPro HERO cameras; 8&quot; length; anodized-aluminum material; high-visibility rubber grip; includes lanyard\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-8-camera-pole-for-gopro-agent-orange/2047836.p?id=1219068383925&skuId=2047836', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047836_sa.jpg\"}', 'upc' => '032705270044', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - POV60 Waterproof Camera Case for GoPro - Black\", 'description_short' => \"Holds up to 6 GoPro HERO cameras and select accessories; ABS exterior; large, open compartment; removable mesh pouch; 5 open slots; custom-cut foam; dual-function latches; padlock loops\", 'description_long' => \"Holds up to 6 GoPro HERO cameras and select accessories; ABS exterior; large, open compartment; removable mesh pouch; 5 open slots; custom-cut foam; dual-function latches; padlock loops\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-pov60-waterproof-camera-case-for-gopro-black/2047845.p?id=1219068385293&skuId=2047845', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047845_rc.jpg\"}', 'upc' => '032705014020', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - 22\\\" Camera Pole for GoPro - Electric Blue\", 'description_short' => \"Compatible with GoPro HERO cameras; 22&quot; length; anodized-aluminum material; high-visibility rubber grip; lanyard\", 'description_long' => \"Compatible with GoPro HERO cameras; 22&quot; length; anodized-aluminum material; high-visibility rubber grip; lanyard\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-22-camera-pole-for-gopro-electric-blue/2047854.p?id=1219068385752&skuId=2047854', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047854_rc.jpg\"}', 'upc' => '032705270013', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - GearBox5 Waterproof Case - Black\", 'description_short' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'description_long' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-gearbox5-waterproof-case-black/2047863.p?id=1219068378661&skuId=2047863', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047863_rc.jpg\"}', 'upc' => '032705087024', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - GearBox3 Waterproof Case - Black\", 'description_short' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'description_long' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-gearbox3-waterproof-case-black/2047881.p?id=1219068384079&skuId=2047881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047881_rc.jpg\"}', 'upc' => '032705087031', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - POV20 Waterproof Camera Case for GoPro - White\", 'description_short' => \"Compatible with GoPro HERO cameras and accessories; ABS and LEXAN exterior; top and bottom removable, custom-cut foam trays; waterproof, shockproof and dust-proof design; pressure-equalizing latch\", 'description_long' => \"Compatible with GoPro HERO cameras and accessories; ABS and LEXAN exterior; top and bottom removable, custom-cut foam trays; waterproof, shockproof and dust-proof design; pressure-equalizing latch\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-pov20-waterproof-camera-case-for-gopro-white/2047918.p?id=1219068378664&skuId=2047918', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047918_rc.jpg\"}', 'upc' => '032705088151', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - GearBox2 Waterproof Case - Black\", 'description_short' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'description_long' => \"Compatible with select cameras, mobile phones, Apple&#174; iPod&#174; models and small electronic devices; polyurethane rubber liner; removable, zippered mesh pouch; waterproof, shockproof and dust-proof design\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-gearbox2-waterproof-case-black/2047927.p?id=1219068381114&skuId=2047927', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047927_rc.jpg\"}', 'upc' => '032705087048', 'provider' => 'bestbuy'],\n ['name' => \"Zubie - Vehicle Tracking and Engine Diagnostic Device\", 'description_short' => \"Compatible with most 1996 and later vehicles; provides information about your car and your driving habits; receive app alerts for speeding, acceleration and more; monitor your car and battery health\", 'description_long' => \"Compatible with most 1996 and later vehicles; provides information about your car and your driving habits; receive app alerts for speeding, acceleration and more; monitor your car and battery health\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zubie-vehicle-tracking-and-engine-diagnostic-device/2047936.p?id=1219068859628&skuId=2047936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2047936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2047\\/2047936_sa.jpg\"}', 'upc' => '854377004013', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Kraken A.M.S. Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; 3-in-1 modular design; polycarbonate, TPE (thermoplastic elastomer) and silicone materials; port plugs; screen protector; media stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; 3-in-1 modular design; polycarbonate, TPE (thermoplastic elastomer) and silicone materials; port plugs; screen protector; media stand\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-kraken-a-m-s-case-for-samsung-galaxy-s-4-cell-phones-black/2048052.p?id=1219068628752&skuId=2048052', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2048052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2048\\/2048052_sa.jpg\"}', 'upc' => '848891004253', 'provider' => 'bestbuy'],\n ['name' => \"Trident - Kraken A.M.S. Case for Samsung Galaxy S 4 - Blue\", 'description_short' => \"Compatible with Samsung Galaxy S 4; 3-in-1 modular design; polycarbonate, TPE (thermoplastic elastomer) and silicone materials; port plugs; screen protector; media stand\", 'description_long' => \"Compatible with Samsung Galaxy S 4; 3-in-1 modular design; polycarbonate, TPE (thermoplastic elastomer) and silicone materials; port plugs; screen protector; media stand\", 'price' => 26.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/trident-kraken-a-m-s-case-for-samsung-galaxy-s-4-blue/2048112.p?id=1219068626150&skuId=2048112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2048112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2048\\/2048112_sa.jpg\"}', 'upc' => '848891004260', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 48\\\" Class (47.6\\\" Diag.) - LED - 1080p - HDTV - Black\", 'description_short' => \"1080p resolution60Hz refresh rate\", 'description_long' => \"1080p resolution60Hz refresh rate\", 'price' => 379.99, 'sale_price' => 319.99, 'url' => 'http://www.bestbuy.com/site/insignia-48-class-47-6-diag--led-1080p-hdtv-black/2048535.p?id=1219528552285&skuId=2048535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2048535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1313\\/1313519845\\/1313519845_sa.jpg\"}', 'upc' => '600603185120', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Albums 1970-1976 [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 61.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-albums-1970-1976-box-cd/2049015.p?id=2754622&skuId=2049015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2049015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2049\\/2049015_sa.jpg\"}', 'upc' => '081227963484', 'provider' => 'bestbuy'],\n ['name' => \"MTV Unplugged [Deluxe Edition] [DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mtv-unplugged-deluxe-edition-dvd-digipak-cd-dvd/2049024.p?id=2754124&skuId=2049024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2049024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2049\\/2049024_sa.jpg\"}', 'upc' => '081227963668', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Series [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-series-box-cd/2049033.p?id=2743920&skuId=2049033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2049033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2049\\/2049033_sa.jpg\"}', 'upc' => '093624941392', 'provider' => 'bestbuy'],\n ['name' => \"Stick It To The Man - PlayStation 4\", 'description_short' => \"How will you get out of a sticky situation?\", 'description_long' => \"How will you get out of a sticky situation?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stick-it-to-the-man-playstation-4/2049042.p?id=1219524352136&skuId=2049042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2049042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2049\\/2049042_sa.jpg\"}', 'upc' => '696055249336', 'provider' => 'bestbuy'],\n ['name' => \"My Old Lady (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-old-lady-blu-ray-disc-ultraviolet-digital-copy/2050049.p?id=3323995&skuId=2050049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2050049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2050\\/2050049.jpg\"}', 'upc' => '025192281396', 'provider' => 'bestbuy'],\n ['name' => \"Out With a Bang - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-with-a-bang-cd/2050381.p?id=107644&skuId=2050381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2050381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2050\\/2050381_sa.jpg\"}', 'upc' => '008811104429', 'provider' => 'bestbuy'],\n ['name' => \"Thalia: Habítame Siempre (DVD) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thalia-habitame-siempre-dvd-special-edition/2051002.p?id=2753782&skuId=2051002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051002_sa.jpg\"}', 'upc' => '887654311894', 'provider' => 'bestbuy'],\n ['name' => \"When the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-night-cd/2051011.p?id=2749282&skuId=2051011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051011_sa.jpg\"}', 'upc' => '888837692625', 'provider' => 'bestbuy'],\n ['name' => \"Thalia: Habítame Siempre - Blu-ray Disc - (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thalia-habitame-siempre-blu-ray-disc-special-edition/2051057.p?id=2753782&skuId=2051057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051057_sa.jpg\"}', 'upc' => '888837253291', 'provider' => 'bestbuy'],\n ['name' => \"Soy el Mismo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soy-el-mismo-cd/2051066.p?id=2753850&skuId=2051066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051066_sa.jpg\"}', 'upc' => '888837729628', 'provider' => 'bestbuy'],\n ['name' => \"Chicas Malas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicas-malas-cd/2051084.p?id=2751808&skuId=2051084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051084_sa.jpg\"}', 'upc' => '602537491018', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Sahara: Las Vegas, 1964 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-sahara-las-vegas-1964-cd/2051108.p?id=2754201&skuId=2051108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051108_sa.jpg\"}', 'upc' => '888837844024', 'provider' => 'bestbuy'],\n ['name' => \"Natural Born Killers [Original Motion Picture... - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/natural-born-killers-original-motion-picture-original-soundtrack-cd/2051111.p?id=1543947&skuId=2051111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051111_sa.jpg\"}', 'upc' => '606949246020', 'provider' => 'bestbuy'],\n ['name' => \"Stranger Than Fiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stranger-than-fiction-cd/2051228.p?id=107974&skuId=2051228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051228_sa.jpg\"}', 'upc' => '075678265822', 'provider' => 'bestbuy'],\n ['name' => \"Live Featuring \\\"On Time God\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-featuring-on-time-god-cd/2051889.p?id=111756&skuId=2051889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051889_sa.jpg\"}', 'upc' => '089921020021', 'provider' => 'bestbuy'],\n ['name' => \"I've Been Touched - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ive-been-touched-cd/2051987.p?id=126645&skuId=2051987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2051987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2051\\/2051987.jpg\"}', 'upc' => '048021446827', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - 2-Blade Wet/Dry Shaver - Silver\", 'description_short' => \"2-blade cutting system; wet/dry operation; pivoting head; pop-up trimmer; ergonomic, waterproof design\", 'description_long' => \"2-blade cutting system; wet/dry operation; pivoting head; pop-up trimmer; ergonomic, waterproof design\", 'price' => 49.99, 'sale_price' => 33.99, 'url' => 'http://www.bestbuy.com/site/panasonic-2-blade-wet-dry-shaver-silver/2052038.p?id=1219068631683&skuId=2052038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052038_rc.jpg\"}', 'upc' => '037988566600', 'provider' => 'bestbuy'],\n ['name' => \"Catching the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/catching-the-sun-cd/2052236.p?id=71102&skuId=2052236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052236_sa.jpg\"}', 'upc' => '051617800125', 'provider' => 'bestbuy'],\n ['name' => \"Spyro Gyra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spyro-gyra-cd/2052245.p?id=71113&skuId=2052245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052245.jpg\"}', 'upc' => '051617800224', 'provider' => 'bestbuy'],\n ['name' => \"Carnaval - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carnaval-cd/2052254.p?id=71101&skuId=2052254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052254_sa.jpg\"}', 'upc' => '051617800323', 'provider' => 'bestbuy'],\n ['name' => \"Incognito - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incognito-cd/2052263.p?id=71109&skuId=2052263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052263_sa.jpg\"}', 'upc' => '051617800422', 'provider' => 'bestbuy'],\n ['name' => \"Breakout - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breakout-cd/2052272.p?id=71100&skuId=2052272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052272_sa.jpg\"}', 'upc' => '051617800620', 'provider' => 'bestbuy'],\n ['name' => \"Morning Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/morning-dance-cd/2052281.p?id=71110&skuId=2052281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052281_sa.jpg\"}', 'upc' => '051617800828', 'provider' => 'bestbuy'],\n ['name' => \"Stories Without Words - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stories-without-words-cd/2052290.p?id=71115&skuId=2052290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052290_sa.jpg\"}', 'upc' => '051617800927', 'provider' => 'bestbuy'],\n ['name' => \"City Kids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/city-kids-cd/2052307.p?id=71104&skuId=2052307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052307_sa.jpg\"}', 'upc' => '051617801023', 'provider' => 'bestbuy'],\n ['name' => \"Yamaha - 6-1/2\\\" 2-Way In-Ceiling Speakers (Pair) - White\", 'description_short' => \"110W maximum power handling; 6-1/2&quot; polypropylene mica woofer cone; 1&quot; fluid-cooled soft dome tweeter; magnetic grilles; push-type speaker terminals\", 'description_long' => \"110W maximum power handling; 6-1/2&quot; polypropylene mica woofer cone; 1&quot; fluid-cooled soft dome tweeter; magnetic grilles; push-type speaker terminals\", 'price' => 149.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yamaha-6-1-2-2-way-in-ceiling-speakers-pair-white/2052555.p?id=1218307633787&skuId=2052555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052555_sa.jpg\"}', 'upc' => '027108937809', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-baby-cd/2052922.p?id=1578259&skuId=2052922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052922_sa.jpg\"}', 'upc' => '029667412025', 'provider' => 'bestbuy'],\n ['name' => \"Immigrant Song [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/immigrant-song-single-cd/2052931.p?id=1510424&skuId=2052931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2052931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2052\\/2052931_sa.jpg\"}', 'upc' => '075678490927', 'provider' => 'bestbuy'],\n ['name' => \"Saints Row: Gat Out Of Hell - Xbox 360\", 'description_short' => \"Prepare for a hellish adventure as you fight to save your leader&#039;s soul\", 'description_long' => \"Prepare for a hellish adventure as you fight to save your leader&#039;s soul\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saints-row-gat-out-of-hell-xbox-360/2053046.p?id=1219524349829&skuId=2053046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2053046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2053\\/2053046_sa.jpg\"}', 'upc' => '816819012390', 'provider' => 'bestbuy'],\n ['name' => \"Between a Rock and a Hard Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/between-a-rock-and-a-hard-place-cd/2053556.p?id=108583&skuId=2053556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2053556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2053\\/2053556_sa.jpg\"}', 'upc' => '075679239723', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - EN-EL15 Rechargeable Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with select Nikon DSLR cameras; 7V power; 1900 mAh\", 'description_long' => \"Compatible with select Nikon DSLR cameras; 7V power; 1900 mAh\", 'price' => 71.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-en-el15-rechargeable-lithium-ion-battery-black/2053563.p?id=1218307911367&skuId=2053563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2053563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2053\\/2053563_sa.jpg\"}', 'upc' => '018208270118', 'provider' => 'bestbuy'],\n ['name' => \"Siamese Dream [Clean] [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/siamese-dream-clean-edited-cd/2054966.p?id=121250&skuId=2054966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2054966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2054\\/2054966.jpg\"}', 'upc' => '724383906222', 'provider' => 'bestbuy'],\n ['name' => \"Saints Row: Gat Out Of Hell - PlayStation 3\", 'description_short' => \"Prepare for a hellish adventure as you fight to save your leader&#039;s soul\", 'description_long' => \"Prepare for a hellish adventure as you fight to save your leader&#039;s soul\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saints-row-gat-out-of-hell-playstation-3/2055026.p?id=1219524351931&skuId=2055026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2055026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2055\\/2055026_sa.jpg\"}', 'upc' => '816819012215', 'provider' => 'bestbuy'],\n ['name' => \"Geek Squad - Add On: Projector Basic Mounting\", 'description_short' => \"Avoid the do-it-yourself headache and have a Geek Squad Installer quickly and professionally mount your Projector under cabinet or to a standard frame wall. BR&gt;\nIMPORTANT NOTE: You must also order TV and Video Setup or this part of your order will be cancelled.\", 'description_long' => \"Avoid the do-it-yourself headache and have a Geek Squad Installer quickly and professionally mount your Projector under cabinet or to a standard frame wall. BR&gt;\nIMPORTANT NOTE: You must also order TV and Video Setup or this part of your order will be cancelled.\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geek-squad-add-on-projector-basic-mounting/2055289.p?id=1218878172747&skuId=2055289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2055289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2055\\/2055289_sa.jpg\"}', 'upc' => '400020552891', 'provider' => 'bestbuy'],\n ['name' => \"Geek Squad - Add On: Projection Screen Basic Installation\", 'description_short' => \"Avoid the do-it-yourself headache and have a Geek Squad Installer quickly and professionally mount and secure your Projector screen to a standard frame wall or stand. BR&gt;\nIMPORTANT NOTE: You must also order TV and Video Setup or this part of your order will be cancelled.\", 'description_long' => \"Avoid the do-it-yourself headache and have a Geek Squad Installer quickly and professionally mount and secure your Projector screen to a standard frame wall or stand. BR&gt;\nIMPORTANT NOTE: You must also order TV and Video Setup or this part of your order will be cancelled.\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/geek-squad-add-on-projection-screen-basic-installation/2055298.p?id=1219249044236&skuId=2055298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2055298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2055\\/2055298_sa.jpg\"}', 'upc' => '400020552983', 'provider' => 'bestbuy'],\n ['name' => \"Pure Pool - PlayStation 4\", 'description_short' => \"Become a pool legend on your PlayStation 4\", 'description_long' => \"Become a pool legend on your PlayStation 4\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-pool-playstation-4/2056007.p?id=1219524352981&skuId=2056007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056007_sa.jpg\"}', 'upc' => '696055249350', 'provider' => 'bestbuy'],\n ['name' => \"Red Hot & Blue: Lee Atwater & Friends - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-hot-blue-lee-atwater-friends-various-cd/2056018.p?id=96195&skuId=2056018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056018_sa.jpg\"}', 'upc' => '715187726420', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 50's Hits Pop,... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-50s-hits-pop-cd-various/2056143.p?id=82185&skuId=2056143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056143.jpg\"}', 'upc' => '715187735422', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 60's Hits Pop,... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-60s-hits-pop-cd-various/2056152.p?id=2760836&skuId=2056152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056152.jpg\"}', 'upc' => '715187735521', 'provider' => 'bestbuy'],\n ['name' => \"Great Records of the Decade: 70's Hits Pop,... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-records-of-the-decade-70s-hits-pop-cd-various/2056161.p?id=98381&skuId=2056161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056161.jpg\"}', 'upc' => '715187735620', 'provider' => 'bestbuy'],\n ['name' => \"The Ventures Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ventures-greatest-hits-curb-cd/2056170.p?id=103094&skuId=2056170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056170_sa.jpg\"}', 'upc' => '715187737624', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Curb] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-curb-cd/2056189.p?id=86570&skuId=2056189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056189_sa.jpg\"}', 'upc' => '715187739826', 'provider' => 'bestbuy'],\n ['name' => \"Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reunion-cd/2056198.p?id=96702&skuId=2056198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056198.jpg\"}', 'upc' => '715187742321', 'provider' => 'bestbuy'],\n ['name' => \"Superstars of Big Band: Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superstars-of-big-band-greatest-hits-cd-various/2056205.p?id=64276&skuId=2056205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056205.jpg\"}', 'upc' => '715187742420', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2056223.p?id=79462&skuId=2056223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056223_sa.jpg\"}', 'upc' => '715187744325', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Frank Ifield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-frank-ifield-cd/2056250.p?id=86068&skuId=2056250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056250.jpg\"}', 'upc' => '715187745322', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2056278.p?id=101729&skuId=2056278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056278.jpg\"}', 'upc' => '715187746220', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-hits-cd/2056287.p?id=73328&skuId=2056287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056287.jpg\"}', 'upc' => '715187746329', 'provider' => 'bestbuy'],\n ['name' => \"Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-cd/2056349.p?id=91234&skuId=2056349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056349.jpg\"}', 'upc' => '715187754720', 'provider' => 'bestbuy'],\n ['name' => \"I Made up My Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-made-up-my-mind-cd/2056358.p?id=102680&skuId=2056358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056358_sa.jpg\"}', 'upc' => '715187756427', 'provider' => 'bestbuy'],\n ['name' => \"Pages Of Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pages-of-life-cd/2056367.p?id=80259&skuId=2056367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056367_sa.jpg\"}', 'upc' => '715187756724', 'provider' => 'bestbuy'],\n ['name' => \"The Desert Rose Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-desert-rose-band-cd/2056385.p?id=80261&skuId=2056385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056385_sa.jpg\"}', 'upc' => '715187757028', 'provider' => 'bestbuy'],\n ['name' => \"Never Make Your Move Too Soon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-make-your-move-too-soon-cd/2056777.p?id=63712&skuId=2056777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056777_sa.jpg\"}', 'upc' => '013431414728', 'provider' => 'bestbuy'],\n ['name' => \"Firefly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firefly-cd/2056811.p?id=70303&skuId=2056811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056811_sa.jpg\"}', 'upc' => '013431416227', 'provider' => 'bestbuy'],\n ['name' => \"Don't Forget the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-forget-the-blues-cd/2056884.p?id=64601&skuId=2056884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2056884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2056\\/2056884_sa.jpg\"}', 'upc' => '013431429326', 'provider' => 'bestbuy'],\n ['name' => \"I Didn't Know About You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-didnt-know-about-you-cd/2057179.p?id=63644&skuId=2057179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2057179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2057\\/2057179_sa.jpg\"}', 'upc' => '013431454328', 'provider' => 'bestbuy'],\n ['name' => \"The Washington Guitar Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-washington-guitar-quintet-cd/2057268.p?id=64761&skuId=2057268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2057268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2057\\/2057268_sa.jpg\"}', 'upc' => '013431201427', 'provider' => 'bestbuy'],\n ['name' => \"Return of the Living Dead - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-of-the-living-dead-cd-original-soundtrack/2057311.p?id=96523&skuId=2057311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2057311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2057\\/2057311_sa.jpg\"}', 'upc' => '018777200424', 'provider' => 'bestbuy'],\n ['name' => \"Reagan's In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reagans-in-cd/2057339.p?id=103554&skuId=2057339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2057339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2057\\/2057339_sa.jpg\"}', 'upc' => '018777230421', 'provider' => 'bestbuy'],\n ['name' => \"Bajour [Original Broadway Cast] - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bajour-original-broadway-cast-cd-original-broadway-cast/2057883.p?id=2310041&skuId=2057883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2057883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2057\\/2057883.jpg\"}', 'upc' => '074644820829', 'provider' => 'bestbuy'],\n ['name' => \"Dynex™ - 3-Port HDMI Switch - Black\", 'description_short' => \"Compatible with most HDMI source components; creates 3 HDMI inputs from a single HDMI port; tin connector finish; supports 1080p video; automatically switches between ports; AC adapter included\", 'description_long' => \"Compatible with most HDMI source components; creates 3 HDMI inputs from a single HDMI port; tin connector finish; supports 1080p video; automatically switches between ports; AC adapter included\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynex-3-port-hdmi-switch-black/2058023.p?id=1219524351668&skuId=2058023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2058023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1313\\/1313519852\\/1313519852_sa.jpg\"}', 'upc' => '600603185908', 'provider' => 'bestbuy'],\n ['name' => \"Pure Chess - PlayStation 4\", 'description_short' => \"Learn to play one of the world&#039;s oldest games in stunning high-definition\", 'description_long' => \"Learn to play one of the world&#039;s oldest games in stunning high-definition\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-chess-playstation-4/2059059.p?id=1219524351158&skuId=2059059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2059059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2059\\/2059059_sa.jpg\"}', 'upc' => '696055249343', 'provider' => 'bestbuy'],\n ['name' => \"Rocketfish™ - 1.5' HDMI Cable - Black\", 'description_short' => \"Connects an HDMI component to an A/V receiver with an HDMI input; 3-layer cable shielding; 360&#176; metal connector shell; silver content soldering; 24K gold-plated contacts\", 'description_long' => \"Connects an HDMI component to an A/V receiver with an HDMI input; 3-layer cable shielding; 360&#176; metal connector shell; silver content soldering; 24K gold-plated contacts\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rocketfish-1-5-hdmi-cable-black/2059068.p?id=1219524351667&skuId=2059068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2059068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312457933\\/1312457933_sa.jpg\"}', 'upc' => '600603185786', 'provider' => 'bestbuy'],\n ['name' => \"Bird Money [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bird-money-pa-cd/2060041.p?id=2193789&skuId=2060041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060041_sa.jpg\"}', 'upc' => '097037794323', 'provider' => 'bestbuy'],\n ['name' => \"Tha Keep on Stackin: Greatest Hits [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tha-keep-on-stackin-greatest-hits-pa-cd/2060069.p?id=2184444&skuId=2060069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060069_sa.jpg\"}', 'upc' => '786984089322', 'provider' => 'bestbuy'],\n ['name' => \"Swishahouse Presents Fam 420 [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swishahouse-presents-fam-420-pa-cd-various/2060087.p?id=2184445&skuId=2060087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060087_sa.jpg\"}', 'upc' => '786984089421', 'provider' => 'bestbuy'],\n ['name' => \"Da Bottom 25 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/da-bottom-25-cd/2060096.p?id=3428160&skuId=2060096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '786984091929', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - 1 AW1 Mirrorless Camera with 11-27.5mm Lens - White\", 'description_short' => \"14.2-megapixel, CX-format CMOS sensorWaterproof up to 49&#039;Shooting speeds up to 60 fpsHybrid autofocus systemGPS capability\", 'description_long' => \"14.2-megapixel, CX-format CMOS sensorWaterproof up to 49&#039;Shooting speeds up to 60 fpsHybrid autofocus systemGPS capability\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-1-aw1-mirrorless-camera-with-11-27-5mm-lens-white/2060145.p?id=1219068629729&skuId=2060145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310253360\\/1310253360_sa.jpg\"}', 'upc' => '018208276691', 'provider' => 'bestbuy'],\n ['name' => \"Brewster Street Live [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brewster-street-live-digipak-cd/2060157.p?id=2188596&skuId=2060157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060157_sa.jpg\"}', 'upc' => '602257506122', 'provider' => 'bestbuy'],\n ['name' => \"The Moving Sidewalk [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-moving-sidewalk-digipak-cd/2060175.p?id=2188575&skuId=2060175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060175_sa.jpg\"}', 'upc' => '884501443081', 'provider' => 'bestbuy'],\n ['name' => \"Cursed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cursed-cd/2060184.p?id=2188583&skuId=2060184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060184_sa.jpg\"}', 'upc' => '781676712328', 'provider' => 'bestbuy'],\n ['name' => \"Strategies Against Architecture 80-83 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strategies-against-architecture-80-83-cd/2060209.p?id=81384&skuId=2060209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060209_sa.jpg\"}', 'upc' => '724596167724', 'provider' => 'bestbuy'],\n ['name' => \"Please Come Home for Christmas [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/please-come-home-for-christmas-single-cd/2060263.p?id=1510421&skuId=2060263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060263_sa.jpg\"}', 'upc' => '075596592222', 'provider' => 'bestbuy'],\n ['name' => \"First World Manifesto [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-world-manifesto-digipak-cd/2060306.p?id=2188229&skuId=2060306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060306_sa.jpg\"}', 'upc' => '751097076729', 'provider' => 'bestbuy'],\n ['name' => \"Timeline - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeline-cd/2060315.p?id=2188230&skuId=2060315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060315.jpg\"}', 'upc' => '673203105829', 'provider' => 'bestbuy'],\n ['name' => \"A Painful Journey Into Nihil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-painful-journey-into-nihil-cd/2060333.p?id=2188585&skuId=2060333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060333_sa.jpg\"}', 'upc' => '884502926842', 'provider' => 'bestbuy'],\n ['name' => \"Cassle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cassle-cd/2060342.p?id=2188584&skuId=2060342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060342_sa.jpg\"}', 'upc' => '884502926835', 'provider' => 'bestbuy'],\n ['name' => \"Mimi Fox: Live at the Palladium (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mimi-fox-live-at-the-palladium-dvd/2060379.p?id=2188597&skuId=2060379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060379_sa.jpg\"}', 'upc' => '690897271098', 'provider' => 'bestbuy'],\n ['name' => \"No Service [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-service-digipak-cd/2060388.p?id=2188943&skuId=2060388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060388.jpg\"}', 'upc' => '020286155560', 'provider' => 'bestbuy'],\n ['name' => \"Dagger Mouth [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dagger-mouth-pa-cd/2060397.p?id=2188232&skuId=2060397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060397_sa.jpg\"}', 'upc' => '673951027428', 'provider' => 'bestbuy'],\n ['name' => \"Don't Say We Didn't Warn You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-say-we-didnt-warn-you-cd/2060402.p?id=2188938&skuId=2060402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060402_sa.jpg\"}', 'upc' => '711297492828', 'provider' => 'bestbuy'],\n ['name' => \"Factorycraft [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/factorycraft-pa-cd/2060411.p?id=2188580&skuId=2060411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060411.jpg\"}', 'upc' => '020286155683', 'provider' => 'bestbuy'],\n ['name' => \"Abandon Everything [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abandon-everything-digipak-cd/2060439.p?id=2188233&skuId=2060439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060439_sa.jpg\"}', 'upc' => '032357304524', 'provider' => 'bestbuy'],\n ['name' => \"Boundless! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boundless-cd/2060448.p?id=2188589&skuId=2060448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060448.jpg\"}', 'upc' => '039841498721', 'provider' => 'bestbuy'],\n ['name' => \"Not So Commercial - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-so-commercial-cd/2060457.p?id=2188577&skuId=2060457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060457_sa.jpg\"}', 'upc' => '753182545011', 'provider' => 'bestbuy'],\n ['name' => \"DJ-Kicks [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dj-kicks-digipak-cd/2060475.p?id=2188578&skuId=2060475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060475_sa.jpg\"}', 'upc' => '730003728327', 'provider' => 'bestbuy'],\n ['name' => \"No Color - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-color-cd/2060484.p?id=2188234&skuId=2060484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060484_sa.jpg\"}', 'upc' => '675640914026', 'provider' => 'bestbuy'],\n ['name' => \"Warma [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/warma-ep-digipak-cd/2060493.p?id=2188942&skuId=2060493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060493_sa.jpg\"}', 'upc' => '020286155577', 'provider' => 'bestbuy'],\n ['name' => \"Cannibal Corpse: Global Evisceration (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cannibal-corpse-global-evisceration-dvd/2060509.p?id=2188235&skuId=2060509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060509_sa.jpg\"}', 'upc' => '039843406397', 'provider' => 'bestbuy'],\n ['name' => \"InstinctCD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/instinctcd/2060518.p?id=2201534&skuId=2060518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060518_sa.jpg\"}', 'upc' => '661278236029', 'provider' => 'bestbuy'],\n ['name' => \"Operation Long Leash [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/operation-long-leash-digipak-cd/2060527.p?id=2188587&skuId=2060527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060527_sa.jpg\"}', 'upc' => '020286155720', 'provider' => 'bestbuy'],\n ['name' => \"Darker Handcraft [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/darker-handcraft-pa-cd/2060536.p?id=2188237&skuId=2060536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060536_sa.jpg\"}', 'upc' => '656191009126', 'provider' => 'bestbuy'],\n ['name' => \"Crucified Mortals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crucified-mortals-cd/2060545.p?id=2188591&skuId=2060545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060545_sa.jpg\"}', 'upc' => '892048002609', 'provider' => 'bestbuy'],\n ['name' => \"Butcher the Weak [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/butcher-the-weak-digipak-cd/2060554.p?id=2188951&skuId=2060554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060554.jpg\"}', 'upc' => '747014543122', 'provider' => 'bestbuy'],\n ['name' => \"Unleash the Carnivore [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unleash-the-carnivore-digipak-cd/2060563.p?id=2188952&skuId=2060563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060563_sa.jpg\"}', 'upc' => '747014579923', 'provider' => 'bestbuy'],\n ['name' => \"Kvelertak [Bonus Disc] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kvelertak-bonus-disc-cd/2060572.p?id=2188582&skuId=2060572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060572_sa.jpg\"}', 'upc' => '654436019121', 'provider' => 'bestbuy'],\n ['name' => \"Dub Step: Dubterranean [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dub-step-dubterranean-digipak-cd/2060581.p?id=2188590&skuId=2060581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060581_sa.jpg\"}', 'upc' => '026656203022', 'provider' => 'bestbuy'],\n ['name' => \"The Disembodied - In Spiritual Spheres - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-disembodied-in-spiritual-spheres-cd/2060615.p?id=2188588&skuId=2060615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060615.jpg\"}', 'upc' => '656191201926', 'provider' => 'bestbuy'],\n ['name' => \"Kill the Crown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-the-crown-cd/2060624.p?id=2188238&skuId=2060624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060624.jpg\"}', 'upc' => '032357304623', 'provider' => 'bestbuy'],\n ['name' => \"The War Within Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-war-within-us-cd/2060633.p?id=2188239&skuId=2060633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060633_sa.jpg\"}', 'upc' => '803847110129', 'provider' => 'bestbuy'],\n ['name' => \"V - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/v-cd/2060642.p?id=2188581&skuId=2060642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060642_sa.jpg\"}', 'upc' => '654436019022', 'provider' => 'bestbuy'],\n ['name' => \"Ohmnivalent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ohmnivalent-cd/2060651.p?id=2188940&skuId=2060651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060651_sa.jpg\"}', 'upc' => '747014598429', 'provider' => 'bestbuy'],\n ['name' => \"Welcome Home Armageddon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-home-armageddon-cd/2060679.p?id=2188598&skuId=2060679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060679_sa.jpg\"}', 'upc' => '856449002446', 'provider' => 'bestbuy'],\n ['name' => \"Bizarro World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bizarro-world-cd/2060688.p?id=2188599&skuId=2060688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060688_sa.jpg\"}', 'upc' => '826056011223', 'provider' => 'bestbuy'],\n ['name' => \"Little Victories [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-victories-digipak-cd/2060697.p?id=2188579&skuId=2060697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060697_sa.jpg\"}', 'upc' => '020286155430', 'provider' => 'bestbuy'],\n ['name' => \"Before the Night Takes Us [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/before-the-night-takes-us-digipak-cd/2060706.p?id=2188240&skuId=2060706&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060706', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060706_sa.jpg\"}', 'upc' => '039841498325', 'provider' => 'bestbuy'],\n ['name' => \"Orgy of Murder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/orgy-of-murder-cd/2060715.p?id=2188941&skuId=2060715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060715_sa.jpg\"}', 'upc' => '747014598627', 'provider' => 'bestbuy'],\n ['name' => \"Howls, Raps & Roars: Recordings from... [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/howls-raps-roars-recordings-from-box-cd-various/2060888.p?id=85875&skuId=2060888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060888_sa.jpg\"}', 'upc' => '025218441025', 'provider' => 'bestbuy'],\n ['name' => \"Enter [Clear] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enter-clear-cd/2060897.p?id=79504&skuId=2060897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060897.jpg\"}', 'upc' => '025218453721', 'provider' => 'bestbuy'],\n ['name' => \"Shake 'Em on Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-em-on-down-cd/2060922.p?id=89176&skuId=2060922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060922_sa.jpg\"}', 'upc' => '025218240321', 'provider' => 'bestbuy'],\n ['name' => \"Los Ritmos Calientes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-ritmos-calientes-cd/2060968.p?id=71455&skuId=2060968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060968.jpg\"}', 'upc' => '025218241229', 'provider' => 'bestbuy'],\n ['name' => \"Walking Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-blues-cd/2060986.p?id=104067&skuId=2060986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2060986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2060\\/2060986_sa.jpg\"}', 'upc' => '025218242424', 'provider' => 'bestbuy'],\n ['name' => \"Lionel Hampton with the Just Jazz All Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lionel-hampton-with-the-just-jazz-all-stars-cd/2061002.p?id=67129&skuId=2061002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061002_sa.jpg\"}', 'upc' => '052824001527', 'provider' => 'bestbuy'],\n ['name' => \"Dizzy Gillespie and His Big Band: In Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dizzy-gillespie-and-his-big-band-in-concert-cd/2061011.p?id=66678&skuId=2061011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061011_sa.jpg\"}', 'upc' => '052824002326', 'provider' => 'bestbuy'],\n ['name' => \"Caught in the Act: Live at the Thunderbird,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caught-in-the-act-live-at-the-thunderbird-cd/2061020.p?id=1548574&skuId=2061020&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061020', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061020.jpg\"}', 'upc' => '052824004122', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Rene Touzet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-rene-touzet-cd/2061057.p?id=102080&skuId=2061057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061057_sa.jpg\"}', 'upc' => '052824200029', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Science Fiction Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-science-fiction-hits-vol-1-cd/2061100.p?id=98077&skuId=2061100&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061100', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061100_sa.jpg\"}', 'upc' => '052824212824', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D610 DSLR Camera (Body Only) - Black\", 'description_short' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fpsEXPEED 3 image-processing engine\", 'description_long' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fpsEXPEED 3 image-processing engine\", 'price' => 1999.99, 'sale_price' => 1299.99, 'url' => 'http://www.bestbuy.com/site/nikon-d610-dslr-camera-body-only-black/2061108.p?id=1219068640211&skuId=2061108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061108_sa.jpg\"}', 'upc' => '018208015405', 'provider' => 'bestbuy'],\n ['name' => \"Live! in Tokyo, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-tokyo-vol-2-cd/2061137.p?id=66049&skuId=2061137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061137_sa.jpg\"}', 'upc' => '052824216129', 'provider' => 'bestbuy'],\n ['name' => \"Facing Destiny - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/facing-destiny-cd/2061173.p?id=93500&skuId=2061173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061173_sa.jpg\"}', 'upc' => '052824219823', 'provider' => 'bestbuy'],\n ['name' => \"Time for Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-for-love-cd/2061235.p?id=113126&skuId=2061235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061235_sa.jpg\"}', 'upc' => '052824222229', 'provider' => 'bestbuy'],\n ['name' => \"Beyond the Reef: The Hawaiian Guitars of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beyond-the-reef-the-hawaiian-guitars-of-cd/2061306.p?id=91481&skuId=2061306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061306_sa.jpg\"}', 'upc' => '052824503427', 'provider' => 'bestbuy'],\n ['name' => \"Feds - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feds-cd-original-soundtrack/2061324.p?id=82038&skuId=2061324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061324_sa.jpg\"}', 'upc' => '052824801424', 'provider' => 'bestbuy'],\n ['name' => \"Five Summer Stories [Original Motion Picture... - Original Soundtrack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-summer-stories-original-motion-picture-original-soundtrack-cd/2061342.p?id=2472770&skuId=2061342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061342.jpg\"}', 'upc' => '052824802728', 'provider' => 'bestbuy'],\n ['name' => \"Quantum Leap [Original TV Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quantum-leap-original-tv-soundtrack-cd-original-soundtrack/2061360.p?id=113329&skuId=2061360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061360.JPG\"}', 'upc' => '052824803626', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Crescendo, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-crescendo-vol-2-cd/2061388.p?id=67441&skuId=2061388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061388.jpg\"}', 'upc' => '052824905429', 'provider' => 'bestbuy'],\n ['name' => \"Louis and His Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louis-and-his-friends-cd/2061529.p?id=1548487&skuId=2061529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061529_sa.jpg\"}', 'upc' => '052824110229', 'provider' => 'bestbuy'],\n ['name' => \"Ahmad's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ahmads-blues-cd/2061556.p?id=106425&skuId=2061556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061556_sa.jpg\"}', 'upc' => '011105180320', 'provider' => 'bestbuy'],\n ['name' => \"Just Like Old Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-like-old-times-cd/2061832.p?id=92752&skuId=2061832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2061832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2061\\/2061832_sa.jpg\"}', 'upc' => '012928803526', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D610 DSLR Camera with 24-85mm VR Lens - Black\", 'description_short' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'description_long' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'price' => 2499.99, 'sale_price' => 1699.99, 'url' => 'http://www.bestbuy.com/site/nikon-d610-dslr-camera-with-24-85mm-vr-lens-black/2062092.p?id=1219068636257&skuId=2062092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062092_sa.jpg\"}', 'upc' => '018208133055', 'provider' => 'bestbuy'],\n ['name' => \"As Clean as They Wanna Be - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-clean-as-they-wanna-be-cd/2062635.p?id=264183&skuId=2062635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062635_sa.jpg\"}', 'upc' => '022471010821', 'provider' => 'bestbuy'],\n ['name' => \"Banned in the USA [Clean] [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/banned-in-the-usa-clean-edited-cd/2062644.p?id=89898&skuId=2062644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062644_sa.jpg\"}', 'upc' => '022471011521', 'provider' => 'bestbuy'],\n ['name' => \"Sports Weekend (Edited) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sports-weekend-edited-cd/2062653.p?id=1895606&skuId=2062653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062653_sa.jpg\"}', 'upc' => '022471011729', 'provider' => 'bestbuy'],\n ['name' => \"I Got Sumthin' on My Mind [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-got-sumthin-on-my-mind-edited-cd/2062662.p?id=89901&skuId=2062662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062662.jpg\"}', 'upc' => '022471011927', 'provider' => 'bestbuy'],\n ['name' => \"No Longer I - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-longer-i-cd/2062699.p?id=64612&skuId=2062699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062699_sa.jpg\"}', 'upc' => '048021150021', 'provider' => 'bestbuy'],\n ['name' => \"Where the Hits Are - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/where-the-hits-are-cd/2062715.p?id=82813&skuId=2062715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062715_sa.jpg\"}', 'upc' => '048021200320', 'provider' => 'bestbuy'],\n ['name' => \"Fire & Ice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-ice-cd/2062724.p?id=76131&skuId=2062724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062724_sa.jpg\"}', 'upc' => '048021745128', 'provider' => 'bestbuy'],\n ['name' => \"Feel the Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feel-the-love-cd/2062733.p?id=92205&skuId=2062733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062733_sa.jpg\"}', 'upc' => '048021745524', 'provider' => 'bestbuy'],\n ['name' => \"Timeless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-cd/2062742.p?id=76134&skuId=2062742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062742_sa.jpg\"}', 'upc' => '048021745920', 'provider' => 'bestbuy'],\n ['name' => \"Telecommunication - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/telecommunication-cd/2062760.p?id=63873&skuId=2062760&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062760', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062760_sa.jpg\"}', 'upc' => '025218910125', 'provider' => 'bestbuy'],\n ['name' => \"Today's Love Songs Tomorrow's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todays-love-songs-tomorrows-blues-cd/2062788.p?id=70167&skuId=2062788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062788_sa.jpg\"}', 'upc' => '025218915724', 'provider' => 'bestbuy'],\n ['name' => \"San Francisco Holiday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/san-francisco-holiday-cd/2062868.p?id=69294&skuId=2062868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062868.jpg\"}', 'upc' => '025218919920', 'provider' => 'bestbuy'],\n ['name' => \"Loose Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loose-blues-cd/2062877.p?id=66105&skuId=2062877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062877.jpg\"}', 'upc' => '025218920025', 'provider' => 'bestbuy'],\n ['name' => \"Wishbone Ash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wishbone-ash-cd/2062984.p?id=104582&skuId=2062984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2062984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2062\\/2062984_sa.jpg\"}', 'upc' => '008811066123', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D610 DSLR Camera with 28-300mm VR Lens Kit - Black\", 'description_short' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'description_long' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'price' => 3049.99, 'sale_price' => 2099.99, 'url' => 'http://www.bestbuy.com/site/nikon-d610-dslr-camera-with-28-300mm-vr-lens-kit-black/2063106.p?id=1219068635139&skuId=2063106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2063106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310253117\\/1310253117_sa.jpg\"}', 'upc' => '018208133048', 'provider' => 'bestbuy'],\n ['name' => \"Raga Madhuvanti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-madhuvanti-cd/2063956.p?id=2282717&skuId=2063956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2063956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2063\\/2063956_sa.jpg\"}', 'upc' => '710357511028', 'provider' => 'bestbuy'],\n ['name' => \"Raga Bhupal Tori - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-bhupal-tori-cd/2063974.p?id=2281759&skuId=2063974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2063974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2063\\/2063974.jpg\"}', 'upc' => '710357511929', 'provider' => 'bestbuy'],\n ['name' => \"Raga Lalit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-lalit-cd/2063992.p?id=1448673&skuId=2063992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2063992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2063\\/2063992_sa.jpg\"}', 'upc' => '710357515224', 'provider' => 'bestbuy'],\n ['name' => \"Rag Kaunsi Kanhra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rag-kaunsi-kanhra-cd/2064018.p?id=1396710&skuId=2064018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064018_sa.jpg\"}', 'upc' => '710357518225', 'provider' => 'bestbuy'],\n ['name' => \"Rag Jhinjoti/Rag Pilu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rag-jhinjoti-rag-pilu-cd/2064027.p?id=1406854&skuId=2064027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064027_sa.jpg\"}', 'upc' => '710357519529', 'provider' => 'bestbuy'],\n ['name' => \"Rag Ramkali - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rag-ramkali-cd/2064036.p?id=2295561&skuId=2064036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064036.jpg\"}', 'upc' => '710357522123', 'provider' => 'bestbuy'],\n ['name' => \"Raga Hemavati - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-hemavati-cd/2064045.p?id=1406518&skuId=2064045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064045.jpg\"}', 'upc' => '710357522727', 'provider' => 'bestbuy'],\n ['name' => \"Ræg Shankara/Ræg Mala in Jogia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rg-shankara-rg-mala-in-jogia-cd/2064063.p?id=1403794&skuId=2064063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064063_sa.jpg\"}', 'upc' => '710357524523', 'provider' => 'bestbuy'],\n ['name' => \"Raga Lalit/Raga Bhairagi Bhairav - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-lalit-raga-bhairagi-bhairav-cd/2064081.p?id=1439470&skuId=2064081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064081_sa.jpg\"}', 'upc' => '710357526329', 'provider' => 'bestbuy'],\n ['name' => \"Raga Bageshri - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-bageshri-cd/2064090.p?id=2276691&skuId=2064090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064090_sa.jpg\"}', 'upc' => '710357526824', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D610 DSLR Camera with 24-85mm VR and 70-300mm VR Lens Kit - Black\", 'description_short' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'description_long' => \"24.3-megapixel FX format CMOS sensorShooting speeds up to 6 fps39-point high-density autofocus systemEXPEED 3 image-processing engine\", 'price' => 3059.99, 'sale_price' => 2259.99, 'url' => 'http://www.bestbuy.com/site/nikon-d610-dslr-camera-with-24-85mm-vr-and-70-300mm-vr-lens-kit-black/2064114.p?id=1219068631415&skuId=2064114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064114_sa.jpg\"}', 'upc' => '018208133062', 'provider' => 'bestbuy'],\n ['name' => \"Resolana: Songs from Argentina - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resolana-songs-from-argentina-cd/2064116.p?id=1448855&skuId=2064116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064116.jpg\"}', 'upc' => '710357528125', 'provider' => 'bestbuy'],\n ['name' => \"Rag Bhimpalasi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rag-bhimpalasi-cd/2064125.p?id=1448674&skuId=2064125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064125.jpg\"}', 'upc' => '710357529825', 'provider' => 'bestbuy'],\n ['name' => \"Salamat Ali Khan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salamat-ali-khan-cd/2064143.p?id=2295567&skuId=2064143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064143_sa.jpg\"}', 'upc' => '710357530722', 'provider' => 'bestbuy'],\n ['name' => \"Indian Classical Masters: Three Ragas for... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indian-classical-masters-three-ragas-for-cd/2064170.p?id=1543582&skuId=2064170&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064170', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064170.jpg\"}', 'upc' => '710357532320', 'provider' => 'bestbuy'],\n ['name' => \"Dear Old Erin's Isle - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dear-old-erins-isle-cd-various/2064205.p?id=1449091&skuId=2064205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064205.jpg\"}', 'upc' => '710357535024', 'provider' => 'bestbuy'],\n ['name' => \"Flamenco de la Frontera - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flamenco-de-la-frontera-cd/2064214.p?id=1397304&skuId=2064214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064214.jpg\"}', 'upc' => '710357535222', 'provider' => 'bestbuy'],\n ['name' => \"Art Laboe's Memories of El Monte - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-laboes-memories-of-el-monte-various-cd/2064535.p?id=105724&skuId=2064535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064535_sa.jpg\"}', 'upc' => '081658196024', 'provider' => 'bestbuy'],\n ['name' => \"Oldies But Goodies, Vol. 13 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oldies-but-goodies-vol-13-cd-various/2064615.p?id=105772&skuId=2064615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064615_sa.jpg\"}', 'upc' => '081658863520', 'provider' => 'bestbuy'],\n ['name' => \"Best Love Songs, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-love-songs-vol-2-cd-various/2064679.p?id=186609&skuId=2064679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064679_sa.jpg\"}', 'upc' => '081658890724', 'provider' => 'bestbuy'],\n ['name' => \"Best Love Songs, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-love-songs-vol-3-cd-various/2064688.p?id=155486&skuId=2064688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064688_sa.jpg\"}', 'upc' => '081658908528', 'provider' => 'bestbuy'],\n ['name' => \"Best Love Songs, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-love-songs-vol-4-cd-various/2064697.p?id=186612&skuId=2064697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064697_sa.jpg\"}', 'upc' => '081658890922', 'provider' => 'bestbuy'],\n ['name' => \"Sweethearts of Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweethearts-of-soul-cd/2064777.p?id=107608&skuId=2064777&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2064777', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2064\\/2064777_sa.jpg\"}', 'upc' => '081658940221', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D5300 DSLR Camera (Body Only) - Black\", 'description_short' => \"24.2-megapixel CMOS sensorShooting speeds up to 5 fps39-point autofocusEXPEED 4 image-processing engineBuilt-in Wi-FiBuilt-in GPS\", 'description_long' => \"24.2-megapixel CMOS sensorShooting speeds up to 5 fps39-point autofocusEXPEED 4 image-processing engineBuilt-in Wi-FiBuilt-in GPS\", 'price' => 799.99, 'sale_price' => 499.99, 'url' => 'http://www.bestbuy.com/site/nikon-d5300-dslr-camera-body-only-black/2065104.p?id=1219068631151&skuId=2065104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065104_sa.jpg\"}', 'upc' => '018208015191', 'provider' => 'bestbuy'],\n ['name' => \"GE - In-Wall Smart Switch - White\", 'description_short' => \"GE In-Wall Smart Switch: Works with Zigbee; compatible with select gateways and hubs; enables remote control of hard-wired lights and ceiling fans in your home; wireless; easy installation\", 'description_long' => \"GE In-Wall Smart Switch: Works with Zigbee; compatible with select gateways and hubs; enables remote control of hard-wired lights and ceiling fans in your home; wireless; easy installation\", 'price' => 54.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-in-wall-smart-switch-white/2065113.p?id=1219522639958&skuId=2065113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065113_sa.jpg\"}', 'upc' => '030878138772', 'provider' => 'bestbuy'],\n ['name' => \"Lorenzo 1994 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lorenzo-1994-cd/2065437.p?id=2393575&skuId=2065437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065437_sa.jpg\"}', 'upc' => '731451877124', 'provider' => 'bestbuy'],\n ['name' => \"14 Shots to the Dome - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/14-shots-to-the-dome-cd/2065776.p?id=89495&skuId=2065776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065776_sa.jpg\"}', 'upc' => '731452348821', 'provider' => 'bestbuy'],\n ['name' => \"Gracias a la Vida - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gracias-a-la-vida-cd/2065865.p?id=99502&skuId=2065865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065865_sa.jpg\"}', 'upc' => '042283231429', 'provider' => 'bestbuy'],\n ['name' => \"Let's Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-rock-cd/2065936.p?id=78428&skuId=2065936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2065936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2065\\/2065936_sa.jpg\"}', 'upc' => '019148208629', 'provider' => 'bestbuy'],\n ['name' => \"GE - In-Wall Smart Dimmer Switch - White\", 'description_short' => \"GE In-Wall Smart Dimmer Switch: Works with Zigbee; compatible with select gateways and hubs; enables remote control over on, off and dimming functions of hard-wired lights in your home; wireless; easy installation\", 'description_long' => \"GE In-Wall Smart Dimmer Switch: Works with Zigbee; compatible with select gateways and hubs; enables remote control over on, off and dimming functions of hard-wired lights in your home; wireless; easy installation\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-in-wall-smart-dimmer-switch-white/2066112.p?id=1219522639956&skuId=2066112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066112_sa.jpg\"}', 'upc' => '030878138789', 'provider' => 'bestbuy'],\n ['name' => \"12 Grandes Exitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-grandes-exitos-cd/2066418.p?id=160765&skuId=2066418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066418.jpg\"}', 'upc' => '078635222821', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mejor de Jose Alfredo Jimenez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mejor-de-jose-alfredo-jimenez-cd/2066427.p?id=86991&skuId=2066427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066427_sa.jpg\"}', 'upc' => '078635225426', 'provider' => 'bestbuy'],\n ['name' => \"Juan Gabriel en el Palacio de Bellas Artes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juan-gabriel-en-el-palacio-de-bellas-artes-cd/2066588.p?id=83149&skuId=2066588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066588_sa.jpg\"}', 'upc' => '078635249828', 'provider' => 'bestbuy'],\n ['name' => \"Las Voces Mas Queridas de Mexico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/las-voces-mas-queridas-de-mexico-cd/2066622.p?id=86994&skuId=2066622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066622_sa.jpg\"}', 'upc' => '078635309720', 'provider' => 'bestbuy'],\n ['name' => \"Los Grandes Del Merengue, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-grandes-del-merengue-vol-1-cd-various/2066980.p?id=122625&skuId=2066980&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2066980', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2066\\/2066980.jpg\"}', 'upc' => '710793011625', 'provider' => 'bestbuy'],\n ['name' => \"15 Grandes Exitos de Nicola Di Bari en Espanol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-grandes-exitos-de-nicola-di-bari-en-espanol-cd/2067033.p?id=80315&skuId=2067033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2067033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2067\\/2067033.jpg\"}', 'upc' => '078635326628', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D5300 24.2 MP CMOS Digital SLR Camera with 18-140mm f/3.5-5.6G ED VR AF-S DX NIKKOR Zoom Lens - Black\", 'description_short' => \"3.2&quot; LCD - 7.8x Optical Zoom - Optical (IS) - 6000 x 4000 Image - HDMI - PictBridge - HD Movie Mode\", 'description_long' => \"3.2&quot; LCD - 7.8x Optical Zoom - Optical (IS) - 6000 x 4000 Image - HDMI - PictBridge - HD Movie Mode\", 'price' => 1299.99, 'sale_price' => 799.99, 'url' => 'http://www.bestbuy.com/site/nikon-d5300-24-2-mp-cmos-digital-slr-camera-with-18-140mm-f-3-5-5-6g-ed-vr-af-s-dx-nikkor-zoom-lens-black/2067102.p?id=1219068635794&skuId=2067102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2067102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2067\\/2067102_sa.jpg\"}', 'upc' => '018208133031', 'provider' => 'bestbuy'],\n ['name' => \"Fiesta Mexicana - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiesta-mexicana-cd/2067113.p?id=168356&skuId=2067113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2067113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2067\\/2067113_sa.jpg\"}', 'upc' => '078635331622', 'provider' => 'bestbuy'],\n ['name' => \"Maria Elena, Vol. 1 [1992] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maria-elena-vol-1-1992-cd/2067355.p?id=89684&skuId=2067355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2067355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2067\\/2067355.jpg\"}', 'upc' => '078635336023', 'provider' => 'bestbuy'],\n ['name' => \"15 Exitos con Yolanda Del Rio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-exitos-con-yolanda-del-rio-cd/2067471.p?id=80125&skuId=2067471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2067471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2067\\/2067471_sa.jpg\"}', 'upc' => '078635338621', 'provider' => 'bestbuy'],\n ['name' => \"Tangled (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tangled-blu-ray-disc-2-disc/2068089.p?id=1895766&skuId=2068089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068089_sa.jpg\"}', 'upc' => '786936811001', 'provider' => 'bestbuy'],\n ['name' => \"Tangled (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tangled-blu-ray-3d-3-d/2068098.p?id=1895766&skuId=2068098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068098_sa.jpg\"}', 'upc' => '786936810653', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D5300 DSLR Camera with 18-55mm VR Lens - Black\", 'description_short' => \"24.2-megapixel, 23.5mm x 15.6mm CMOS sensorISO 100-12,800, expandable to 25,600Shooting speeds up to 5 fps39 focus pointsBuilt-in Wi-FiBuilt-in GPS\", 'description_long' => \"24.2-megapixel, 23.5mm x 15.6mm CMOS sensorISO 100-12,800, expandable to 25,600Shooting speeds up to 5 fps39 focus pointsBuilt-in Wi-FiBuilt-in GPS\", 'price' => 899.99, 'sale_price' => 599.99, 'url' => 'http://www.bestbuy.com/site/nikon-d5300-dslr-camera-with-18-55mm-vr-lens-black/2068101.p?id=1219068633963&skuId=2068101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068101_sa.jpg\"}', 'upc' => '018208015221', 'provider' => 'bestbuy'],\n ['name' => \"Fisica y Quimica - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fisica-y-quimica-cd/2068103.p?id=97679&skuId=2068103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068103.jpg\"}', 'upc' => '078635350029', 'provider' => 'bestbuy'],\n ['name' => \"Tangled (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tangled-dvd/2068104.p?id=1895766&skuId=2068104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068104_sa.jpg\"}', 'upc' => '786936810608', 'provider' => 'bestbuy'],\n ['name' => \"Recuerdos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recuerdos-cd/2068167.p?id=83154&skuId=2068167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068167_sa.jpg\"}', 'upc' => '078635603422', 'provider' => 'bestbuy'],\n ['name' => \"Desde Andalucia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desde-andalucia-cd/2068283.p?id=160712&skuId=2068283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068283_sa.jpg\"}', 'upc' => '078635695625', 'provider' => 'bestbuy'],\n ['name' => \"Canta Sus Exitos Con la Banda - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canta-sus-exitos-con-la-banda-cd/2068327.p?id=86993&skuId=2068327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068327_sa.jpg\"}', 'upc' => '078635730326', 'provider' => 'bestbuy'],\n ['name' => \"Marinero De Luces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marinero-de-luces-cd/2068345.p?id=94342&skuId=2068345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068345_sa.jpg\"}', 'upc' => '078635743227', 'provider' => 'bestbuy'],\n ['name' => \"Corridos Y Rancheras - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corridos-y-rancheras-cd/2068434.p?id=86995&skuId=2068434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068434_sa.jpg\"}', 'upc' => '078635848823', 'provider' => 'bestbuy'],\n ['name' => \"12 Exitos de Oro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-exitos-de-oro-cd/2068513.p?id=86989&skuId=2068513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068513_sa.jpg\"}', 'upc' => '078635856422', 'provider' => 'bestbuy'],\n ['name' => \"Sus Mas Lindas Canciones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sus-mas-lindas-canciones-cd/2068559.p?id=86822&skuId=2068559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2068559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2068\\/2068559_sa.jpg\"}', 'upc' => '078635957822', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S NIKKOR 58mm f/1.4G Standard Lens - Black\", 'description_short' => \"Compatible with most Nikon DSLR cameras with an F-mount; Silent Wave Motor; auto/manual focus mode; Nano Crystal Coating; 72mm filter size; 1.9&#039; minimum focus distance\", 'description_long' => \"Compatible with most Nikon DSLR cameras with an F-mount; Silent Wave Motor; auto/manual focus mode; Nano Crystal Coating; 72mm filter size; 1.9&#039; minimum focus distance\", 'price' => 1599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-nikkor-58mm-f-1-4g-standard-lens-black/2069119.p?id=1219068633304&skuId=2069119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2069119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2069\\/2069119_sa.jpg\"}', 'upc' => '018208022106', 'provider' => 'bestbuy'],\n ['name' => \"Esta Boca Es Mia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/esta-boca-es-mia-cd/2069978.p?id=150043&skuId=2069978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2069978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2069\\/2069978_sa.jpg\"}', 'upc' => '743212143225', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - 30\\\" Built-In Electric Induction Cooktop - Stainless/Stainless look\", 'description_short' => \"Touch-activated controls; 4 heating elements; 1400-3200 watts of power; simmer function; induction technology; performance boost function\", 'description_long' => \"Touch-activated controls; 4 heating elements; 1400-3200 watts of power; simmer function; induction technology; performance boost function\", 'price' => 1599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-30-built-in-electric-induction-cooktop-stainless-stainless-look/2070032.p?id=1218307911570&skuId=2070032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2070032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2070\\/2070032_sa.jpg\"}', 'upc' => '883049202402', 'provider' => 'bestbuy'],\n ['name' => \"Honest Words - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honest-words-cd/2071037.p?id=2133216&skuId=2071037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071037.jpg\"}', 'upc' => '014431102028', 'provider' => 'bestbuy'],\n ['name' => \"The David Grisman Rounder Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-david-grisman-rounder-album-cd/2071144.p?id=84295&skuId=2071144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071144.jpg\"}', 'upc' => '011661006928', 'provider' => 'bestbuy'],\n ['name' => \"Inroads - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inroads-cd/2071153.p?id=82419&skuId=2071153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071153.jpg\"}', 'upc' => '011661021921', 'provider' => 'bestbuy'],\n ['name' => \"Native American - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/native-american-cd/2071171.p?id=96593&skuId=2071171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071171_sa.jpg\"}', 'upc' => '011661024823', 'provider' => 'bestbuy'],\n ['name' => \"Stomp Down Zydeco - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stomp-down-zydeco-cd-various/2071448.p?id=105341&skuId=2071448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071448_sa.jpg\"}', 'upc' => '011661156623', 'provider' => 'bestbuy'],\n ['name' => \"Blackman's Foundation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blackmans-foundation-cd/2071493.p?id=92603&skuId=2071493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071493_sa.jpg\"}', 'upc' => '016351431226', 'provider' => 'bestbuy'],\n ['name' => \"Nuff Crisis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nuff-crisis-cd/2071563.p?id=79443&skuId=2071563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071563_sa.jpg\"}', 'upc' => '016351436429', 'provider' => 'bestbuy'],\n ['name' => \"Planxty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planxty-cd/2071689.p?id=95035&skuId=2071689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071689_sa.jpg\"}', 'upc' => '016351790927', 'provider' => 'bestbuy'],\n ['name' => \"Cold Blow and the Rainy Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cold-blow-and-the-rainy-night-cd/2071698.p?id=95034&skuId=2071698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071698_sa.jpg\"}', 'upc' => '016351791122', 'provider' => 'bestbuy'],\n ['name' => \"So Many Partings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-many-partings-cd/2071705.p?id=98739&skuId=2071705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071705_sa.jpg\"}', 'upc' => '016351791627', 'provider' => 'bestbuy'],\n ['name' => \"The Star-Spangled Molly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-star-spangled-molly-cd/2071714.p?id=79930&skuId=2071714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071714.jpg\"}', 'upc' => '016351791825', 'provider' => 'bestbuy'],\n ['name' => \"Wild & Beautiful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-beautiful-cd/2071723.p?id=98741&skuId=2071723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071723_sa.jpg\"}', 'upc' => '016351792822', 'provider' => 'bestbuy'],\n ['name' => \"Kiss the Tears Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kiss-the-tears-away-cd/2071732.p?id=98737&skuId=2071732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071732_sa.jpg\"}', 'upc' => '016351793720', 'provider' => 'bestbuy'],\n ['name' => \"Below the Salt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/below-the-salt-cd/2071741.p?id=100258&skuId=2071741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071741_sa.jpg\"}', 'upc' => '016351793928', 'provider' => 'bestbuy'],\n ['name' => \"Silly Sisters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silly-sisters-cd/2071750.p?id=95524&skuId=2071750&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071750', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071750_sa.jpg\"}', 'upc' => '016351794024', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Silly Wizard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-silly-wizard-cd/2071769.p?id=98740&skuId=2071769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071769_sa.jpg\"}', 'upc' => '016351794826', 'provider' => 'bestbuy'],\n ['name' => \"Ten Man Mop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ten-man-mop-cd/2071778.p?id=100264&skuId=2071778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071778_sa.jpg\"}', 'upc' => '016351794925', 'provider' => 'bestbuy'],\n ['name' => \"Fire in the Glen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fire-in-the-glen-cd/2071787.p?id=100438&skuId=2071787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071787_sa.jpg\"}', 'upc' => '016351796226', 'provider' => 'bestbuy'],\n ['name' => \"Love, Devils & The Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-devils-the-blues-cd/2071812.p?id=84314&skuId=2071812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071812_sa.jpg\"}', 'upc' => '016351970121', 'provider' => 'bestbuy'],\n ['name' => \"Leaves of Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leaves-of-life-cd/2071858.p?id=98823&skuId=2071858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071858_sa.jpg\"}', 'upc' => '016351970824', 'provider' => 'bestbuy'],\n ['name' => \"The Black Balloon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-black-balloon-cd/2071867.p?id=96437&skuId=2071867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071867.jpg\"}', 'upc' => '016351970923', 'provider' => 'bestbuy'],\n ['name' => \"Fingerpicking Guitar Delights - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fingerpicking-guitar-delights-cd-various/2071894.p?id=84387&skuId=2071894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071894.jpg\"}', 'upc' => '016351981325', 'provider' => 'bestbuy'],\n ['name' => \"Live & Kickin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-kickin-cd/2071901.p?id=156033&skuId=2071901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071901_sa.jpg\"}', 'upc' => '015891100524', 'provider' => 'bestbuy'],\n ['name' => \"The Gathering - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gathering-cd/2071947.p?id=88683&skuId=2071947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071947_sa.jpg\"}', 'upc' => '015891113326', 'provider' => 'bestbuy'],\n ['name' => \"The First Whippoorwill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-whippoorwill-cd/2071974.p?id=177161&skuId=2071974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071974_sa.jpg\"}', 'upc' => '015891374925', 'provider' => 'bestbuy'],\n ['name' => \"Untold Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/untold-stories-cd/2071983.p?id=85768&skuId=2071983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071983_sa.jpg\"}', 'upc' => '015891375625', 'provider' => 'bestbuy'],\n ['name' => \"Jumpin' the Strings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jumpin-the-strings-cd/2071992.p?id=74489&skuId=2071992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2071992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2071\\/2071992_sa.jpg\"}', 'upc' => '015891378725', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D7100 DSLR Camera with 18-140mm VR Lens - Black\", 'description_short' => \"24.1-megapixel, DX-format CMOS sensorISO 100-6400, expandable to 25,600Shooting speeds up to 6 fps51 focus points (15 cross-type)\", 'description_long' => \"24.1-megapixel, DX-format CMOS sensorISO 100-6400, expandable to 25,600Shooting speeds up to 6 fps51 focus points (15 cross-type)\", 'price' => 1699.99, 'sale_price' => 1099.99, 'url' => 'http://www.bestbuy.com/site/nikon-d7100-dslr-camera-with-18-140mm-vr-lens-black/2072001.p?id=1219068640539&skuId=2072001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072001_sa.jpg\"}', 'upc' => '018208133024', 'provider' => 'bestbuy'],\n ['name' => \"California Traveler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-traveler-cd/2072009.p?id=76605&skuId=2072009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072009_sa.jpg\"}', 'upc' => '015891380322', 'provider' => 'bestbuy'],\n ['name' => \"Fiddle Fatale - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddle-fatale-cd/2072027.p?id=88611&skuId=2072027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072027_sa.jpg\"}', 'upc' => '015891381022', 'provider' => 'bestbuy'],\n ['name' => \"Syrup (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/syrup-dvd/2072029.p?id=2751929&skuId=2072029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072029_sa.jpg\"}', 'upc' => '876964005746', 'provider' => 'bestbuy'],\n ['name' => \"Back to Red River - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-red-river-cd/2072036.p?id=83038&skuId=2072036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072036_sa.jpg\"}', 'upc' => '015891381121', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Battleground 2013 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-battleground-2013-dvd/2072038.p?id=2750192&skuId=2072038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072038_sa.jpg\"}', 'upc' => '651191951758', 'provider' => 'bestbuy'],\n ['name' => \"The Canyons (Blu-ray Disc) (Director's Cut)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-canyons-blu-ray-disc-directors-cut/2072047.p?id=2749492&skuId=2072047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072047_sa.jpg\"}', 'upc' => '030306191898', 'provider' => 'bestbuy'],\n ['name' => \"Passion (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passion-blu-ray-disc/2072056.p?id=2755961&skuId=2072056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072056_sa.jpg\"}', 'upc' => '741952741398', 'provider' => 'bestbuy'],\n ['name' => \"Damaged - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/damaged-cd/2072063.p?id=74806&skuId=2072063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072063_sa.jpg\"}', 'upc' => '018861000725', 'provider' => 'bestbuy'],\n ['name' => \"Passion (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passion-dvd/2072065.p?id=2755961&skuId=2072065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072065_sa.jpg\"}', 'upc' => '741952741299', 'provider' => 'bestbuy'],\n ['name' => \"Project: Mersh [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-mersh-ep-cd/2072072.p?id=91863&skuId=2072072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072072_sa.jpg\"}', 'upc' => '018861003429', 'provider' => 'bestbuy'],\n ['name' => \"The Canyons (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-canyons-dvd/2072074.p?id=2749492&skuId=2072074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072074_sa.jpg\"}', 'upc' => '030306989099', 'provider' => 'bestbuy'],\n ['name' => \"Who's Got the 10¿? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whos-got-the-10-cd/2072081.p?id=74817&skuId=2072081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072081_sa.jpg\"}', 'upc' => '018861006024', 'provider' => 'bestbuy'],\n ['name' => \"Parkland (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parkland-dvd/2072083.p?id=2750172&skuId=2072083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072083_sa.jpg\"}', 'upc' => '687797142795', 'provider' => 'bestbuy'],\n ['name' => \"Enjoy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/enjoy-cd/2072116.p?id=80252&skuId=2072116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072116_sa.jpg\"}', 'upc' => '018861024226', 'provider' => 'bestbuy'],\n ['name' => \"All the Dirt That's Fit to Print - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-the-dirt-thats-fit-to-print-cd/2072161.p?id=107094&skuId=2072161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072161_sa.jpg\"}', 'upc' => '018861030623', 'provider' => 'bestbuy'],\n ['name' => \"Key Digital - Phantom Series 2-Way HDMI Distribution Amplifier\", 'description_short' => \"KEY DIGITAL Phantom Series 2-Way HDMI Distribution Amplifier: Compatible with most HDMI and HDCP technologies; distributes 1 HDMI input to 2 outputs; EDID control; 3D-ready; supports up to 1080p/60 resolution\", 'description_long' => \"KEY DIGITAL Phantom Series 2-Way HDMI Distribution Amplifier: Compatible with most HDMI and HDCP technologies; distributes 1 HDMI input to 2 outputs; EDID control; 3D-ready; supports up to 1080p/60 resolution\", 'price' => 333.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/key-digital-phantom-series-2-way-hdmi-distribution-amplifier/2072212.p?id=1219300829778&skuId=2072212', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072212_sa.jpg\"}', 'upc' => '819505000947', 'provider' => 'bestbuy'],\n ['name' => \"Santas Bag: All Star Jazz Christmas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/santas-bag-all-star-jazz-christmas-cd-various/2072278.p?id=110234&skuId=2072278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072278_sa.jpg\"}', 'upc' => '089408335228', 'provider' => 'bestbuy'],\n ['name' => \"Behavior Modification [Maxi Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/behavior-modification-maxi-single-cd/2072312.p?id=1582951&skuId=2072312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072312.jpg\"}', 'upc' => '016581351127', 'provider' => 'bestbuy'],\n ['name' => \"Confidence [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/confidence-single-cd/2072330.p?id=1576418&skuId=2072330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072330_sa.jpg\"}', 'upc' => '016581371125', 'provider' => 'bestbuy'],\n ['name' => \"Now Is the Time [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-is-the-time-single-cd/2072349.p?id=1577832&skuId=2072349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072349_sa.jpg\"}', 'upc' => '016581411128', 'provider' => 'bestbuy'],\n ['name' => \"Butterfly Portion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/butterfly-portion-cd/2072376.p?id=1588139&skuId=2072376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072376.jpg\"}', 'upc' => '016581861121', 'provider' => 'bestbuy'],\n ['name' => \"Temper [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/temper-single-cd/2072385.p?id=1576276&skuId=2072385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072385_sa.jpg\"}', 'upc' => '016581861725', 'provider' => 'bestbuy'],\n ['name' => \"Nothing Stays [Maxi Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-stays-maxi-single-cd/2072394.p?id=1582939&skuId=2072394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072394.jpg\"}', 'upc' => '016581861923', 'provider' => 'bestbuy'],\n ['name' => \"Silicon Jesus [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silicon-jesus-single-cd/2072456.p?id=1582940&skuId=2072456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072456_sa.jpg\"}', 'upc' => '016581869622', 'provider' => 'bestbuy'],\n ['name' => \"Welcome to My Mind [Maxi Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-to-my-mind-maxi-single-cd/2072465.p?id=1577121&skuId=2072465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072465.jpg\"}', 'upc' => '016581869721', 'provider' => 'bestbuy'],\n ['name' => \"Psychoslaphead [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/psychoslaphead-single-cd/2072474.p?id=1577120&skuId=2072474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072474_sa.jpg\"}', 'upc' => '016581870420', 'provider' => 'bestbuy'],\n ['name' => \"Starman - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starman-cd-original-soundtrack/2072580.p?id=100110&skuId=2072580&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2072580', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2072\\/2072580_sa.jpg\"}', 'upc' => '030206823325', 'provider' => 'bestbuy'],\n ['name' => \"Dell - UltraSharp U2415 24\\\" IPS LED HD Monitor - Black\", 'description_short' => \"DELL UltraSharp U2415 24&quot; IPS LED HD Monitor: 6 ms response time; 2,000,000:1 dynamic contrast ratio; 300 nits brightness; 1920 x 1200 resolution; 178&#176; horizontal and vertical viewing angles; HDMI and DisplayPort inputs\", 'description_long' => \"DELL UltraSharp U2415 24&quot; IPS LED HD Monitor: 6 ms response time; 2,000,000:1 dynamic contrast ratio; 300 nits brightness; 1920 x 1200 resolution; 178&#176; horizontal and vertical viewing angles; HDMI and DisplayPort inputs\", 'price' => 367.99, 'sale_price' => 279.99, 'url' => 'http://www.bestbuy.com/site/dell-ultrasharp-u2415-24-ips-led-hd-monitor-black/2073028.p?id=1219524349836&skuId=2073028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2073028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2073\\/2073028_sa.jpg\"}', 'upc' => '884116153061', 'provider' => 'bestbuy'],\n ['name' => \"Samson - Studio GT Pro Recording Bundle\", 'description_short' => \"Compatible with PC and Mac; active studio monitors; USB audio interface; 2x2 recording interface; 2-position switch; Cakewalk Sonar LE music production software\", 'description_long' => \"Compatible with PC and Mac; active studio monitors; USB audio interface; 2x2 recording interface; 2-position switch; Cakewalk Sonar LE music production software\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samson-studio-gt-pro-recording-bundle/2073048.p?id=1218308268156&skuId=2073048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2073048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2073\\/2073048_sa.jpg\"}', 'upc' => '809164012719', 'provider' => 'bestbuy'],\n ['name' => \"Keep It Together [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-it-together-ep-cd/2073516.p?id=1576834&skuId=2073516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2073516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2073\\/2073516.jpg\"}', 'upc' => '075992142724', 'provider' => 'bestbuy'],\n ['name' => \"Rescue Me [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rescue-me-single-cd/2073570.p?id=1576836&skuId=2073570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2073570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2073\\/2073570_sa.jpg\"}', 'upc' => '075992181327', 'provider' => 'bestbuy'],\n ['name' => \"Linksys - 802.11ac Smart Wi-Fi Dual-Band Router - Black\", 'description_short' => \"Up to 600 + 1300 Mbps data transfer rates; WPA/WPA2 encryption; SPI firewall; beamforming technology\", 'description_long' => \"Up to 600 + 1300 Mbps data transfer rates; WPA/WPA2 encryption; SPI firewall; beamforming technology\", 'price' => 199.99, 'sale_price' => 139.99, 'url' => 'http://www.bestbuy.com/site/linksys-802-11ac-smart-wi-fi-dual-band-router-black/2074009.p?id=1219068636395&skuId=2074009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074009_sa.jpg\"}', 'upc' => '745883598588', 'provider' => 'bestbuy'],\n ['name' => \"MartinLogan - ElectroMotion ESL 8\\\" Floor Speaker (Each) - Black\", 'description_short' => \"300W peak power; 8&quot; doped fiber woofer cone; 34&quot; Xstat Curvilinear Line Source (CLS) electrostatic transducer; bass-reflex enclosure; AirFrame technology; push-style connectors with banana jacks\", 'description_long' => \"300W peak power; 8&quot; doped fiber woofer cone; 34&quot; Xstat Curvilinear Line Source (CLS) electrostatic transducer; bass-reflex enclosure; AirFrame technology; push-style connectors with banana jacks\", 'price' => 1249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/martinlogan-electromotion-esl-8-floor-speaker-each-black/2074269.p?id=1218308694947&skuId=2074269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074269_rc.jpg\"}', 'upc' => '877929006150', 'provider' => 'bestbuy'],\n ['name' => \"Scandalous [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scandalous-digipak-cd/2074302.p?id=2186318&skuId=2074302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074302_sa.jpg\"}', 'upc' => '602527610054', 'provider' => 'bestbuy'],\n ['name' => \"EUREKA [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eureka-digipak-cd/2074311.p?id=2184056&skuId=2074311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074311_sa.jpg\"}', 'upc' => '060270128729', 'provider' => 'bestbuy'],\n ['name' => \"Caliente - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caliente-cd/2074339.p?id=2188934&skuId=2074339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074339_sa.jpg\"}', 'upc' => '720657945027', 'provider' => 'bestbuy'],\n ['name' => \"Stan Getz With Cal Tjader - CD - Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-getz-with-cal-tjader-cd-remastered/2074366.p?id=2186345&skuId=2074366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074366_sa.jpg\"}', 'upc' => '888072326903', 'provider' => 'bestbuy'],\n ['name' => \"Down Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-home-cd/2074375.p?id=2186314&skuId=2074375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074375_sa.jpg\"}', 'upc' => '011661066120', 'provider' => 'bestbuy'],\n ['name' => \"Dancing Backward in High Heels [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-backward-in-high-heels-pa-cd/2074384.p?id=2186586&skuId=2074384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074384_sa.jpg\"}', 'upc' => '795041781321', 'provider' => 'bestbuy'],\n ['name' => \"Una Historia Para Siempre - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/una-historia-para-siempre-cd/2074426.p?id=2188932&skuId=2074426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074426_sa.jpg\"}', 'upc' => '801472163626', 'provider' => 'bestbuy'],\n ['name' => \"Battle: Los Angeles [3/8] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-los-angeles-3-8-cd-original-soundtrack/2074444.p?id=2186288&skuId=2074444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074444_sa.jpg\"}', 'upc' => '030206706826', 'provider' => 'bestbuy'],\n ['name' => \"Pursuit of Radical Rhapsody - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pursuit-of-radical-rhapsody-cd/2074453.p?id=2186295&skuId=2074453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1902\\/19029624.jpg\"}', 'upc' => '888072328358', 'provider' => 'bestbuy'],\n ['name' => \"Ugetsu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ugetsu-cd/2074462.p?id=2186340&skuId=2074462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074462_sa.jpg\"}', 'upc' => '888072326927', 'provider' => 'bestbuy'],\n ['name' => \"Sucker Punch [Digipak] - CD - Enhanced Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sucker-punch-digipak-cd-enhanced-original-soundtrack/2074471.p?id=2186573&skuId=2074471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074471_sa.jpg\"}', 'upc' => '794043148651', 'provider' => 'bestbuy'],\n ['name' => \"Book of Job - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/book-of-job-cd/2074499.p?id=2186585&skuId=2074499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074499_sa.jpg\"}', 'upc' => '054645190527', 'provider' => 'bestbuy'],\n ['name' => \"Almost Home [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/almost-home-import-cd/2074514.p?id=2186311&skuId=2074514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074514_sa.jpg\"}', 'upc' => '011661066229', 'provider' => 'bestbuy'],\n ['name' => \"Moseley Shoals [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moseley-shoals-deluxe-edition-digipak-cd/2074523.p?id=2188547&skuId=2074523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074523_sa.jpg\"}', 'upc' => '600753324332', 'provider' => 'bestbuy'],\n ['name' => \"Sigo Estando Contigo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sigo-estando-contigo-cd/2074532.p?id=2188936&skuId=2074532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074532_sa.jpg\"}', 'upc' => '602527634425', 'provider' => 'bestbuy'],\n ['name' => \"Monk's Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monks-music-cd/2074541.p?id=2186352&skuId=2074541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074541.jpg\"}', 'upc' => '888072326897', 'provider' => 'bestbuy'],\n ['name' => \"Rare Bird Alert [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rare-bird-alert-digipak-cd/2074569.p?id=2186298&skuId=2074569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074569_sa.jpg\"}', 'upc' => '011661066021', 'provider' => 'bestbuy'],\n ['name' => \"Ella And Oscar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ella-and-oscar-cd/2074578.p?id=2186343&skuId=2074578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074578_sa.jpg\"}', 'upc' => '888072326934', 'provider' => 'bestbuy'],\n ['name' => \"Passive Me, Aggressive You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/passive-me-aggressive-you-cd/2074596.p?id=2186313&skuId=2074596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074596_sa.jpg\"}', 'upc' => '602527574424', 'provider' => 'bestbuy'],\n ['name' => \"De Sinaloa Para El Mundo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/de-sinaloa-para-el-mundo-cd/2074611.p?id=2188933&skuId=2074611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074611_sa.jpg\"}', 'upc' => '801472163923', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Odetta - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-odetta-cd/2074702.p?id=93804&skuId=2074702&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074702', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074702_sa.jpg\"}', 'upc' => '015707434423', 'provider' => 'bestbuy'],\n ['name' => \"Ballad for Americans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ballad-for-americans-cd/2074748.p?id=96843&skuId=2074748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074748_sa.jpg\"}', 'upc' => '015707011723', 'provider' => 'bestbuy'],\n ['name' => \"John Hammond - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-hammond-cd/2074766.p?id=84738&skuId=2074766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074766.jpg\"}', 'upc' => '015707214827', 'provider' => 'bestbuy'],\n ['name' => \"Two by Two: Ruby and Ellis Play Rodgers and Hart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-by-two-ruby-and-ellis-play-rodgers-and-hart-cd/2074784.p?id=64476&skuId=2074784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074784_sa.jpg\"}', 'upc' => '015707850728', 'provider' => 'bestbuy'],\n ['name' => \"A Night at Count Basie's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-night-at-count-basies-cd/2074793.p?id=72087&skuId=2074793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074793.jpg\"}', 'upc' => '015707850827', 'provider' => 'bestbuy'],\n ['name' => \"Live at Newport - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-newport-cd/2074819.p?id=278014&skuId=2074819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074819_sa.jpg\"}', 'upc' => '015707300827', 'provider' => 'bestbuy'],\n ['name' => \"Bout Changes & Things... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bout-changes-things-cd/2074846.p?id=72953&skuId=2074846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074846_sa.jpg\"}', 'upc' => '015707920629', 'provider' => 'bestbuy'],\n ['name' => \"Little Wheel Spin and Spin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-wheel-spin-and-spin-cd/2074855.p?id=97733&skuId=2074855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074855_sa.jpg\"}', 'upc' => '015707921121', 'provider' => 'bestbuy'],\n ['name' => \"Spaces - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spaces-cd/2074882.p?id=65310&skuId=2074882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074882.jpg\"}', 'upc' => '015707934527', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Wichita Jazz Festival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-wichita-jazz-festival-cd/2074891.p?id=71370&skuId=2074891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074891.jpg\"}', 'upc' => '015707935524', 'provider' => 'bestbuy'],\n ['name' => \"Very Early Joan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-early-joan-cd/2074926.p?id=73719&skuId=2074926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074926_sa.jpg\"}', 'upc' => '015707944625', 'provider' => 'bestbuy'],\n ['name' => \"Live At Lupo'S - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-lupos-cd/2074944.p?id=2586649&skuId=2074944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2074944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2074\\/2074944.jpg\"}', 'upc' => '011671002422', 'provider' => 'bestbuy'],\n ['name' => \"WW: UBS MINI STAB BA (DVD) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ww-ubs-mini-stab-ba-dvd-dvd/2075017.p?id=3330371&skuId=2075017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075017_sa.jpg\"}', 'upc' => '013132624709', 'provider' => 'bestbuy'],\n ['name' => \"ELEM: COMPLETE YOGA (DVD) (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elem-complete-yoga-dvd-dvd-3-disc/2075026.p?id=3330379&skuId=2075026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2075026.jpg\"}', 'upc' => '013132605562', 'provider' => 'bestbuy'],\n ['name' => \"LS: 30 DAY WALK OFF (DVD) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ls-30-day-walk-off-dvd-dvd/2075035.p?id=3330409&skuId=2075035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075035_sa.jpg\"}', 'upc' => '013132605586', 'provider' => 'bestbuy'],\n ['name' => \"ELEM: STRETCH RELS R (DVD) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elem-stretch-rels-r-dvd-dvd/2075044.p?id=3330402&skuId=2075044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2075044.jpg\"}', 'upc' => '013132629018', 'provider' => 'bestbuy'],\n ['name' => \"Live at Shea Stadium:... [CD & DVD] [Box] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-shea-stadium-cd-dvd-box-cd-dvd/2075046.p?id=2185021&skuId=2075046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075046_sa.jpg\"}', 'upc' => '886978542427', 'provider' => 'bestbuy'],\n ['name' => \"Tapestry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tapestry-cd/2075055.p?id=2185005&skuId=2075055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075055.jpg\"}', 'upc' => '859703985325', 'provider' => 'bestbuy'],\n ['name' => \"Billy Joel: Live at Shea Stadium (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billy-joel-live-at-shea-stadium-dvd/2075064.p?id=2185022&skuId=2075064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075064_sa.jpg\"}', 'upc' => '886978459497', 'provider' => 'bestbuy'],\n ['name' => \"Goodbye Lullaby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodbye-lullaby-cd/2075073.p?id=2193522&skuId=2075073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075073_sa.jpg\"}', 'upc' => '886975587025', 'provider' => 'bestbuy'],\n ['name' => \"Dos Clásicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clasicos-slipcase-cd/2075082.p?id=2182992&skuId=2075082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075082_sa.jpg\"}', 'upc' => '886978436825', 'provider' => 'bestbuy'],\n ['name' => \"Dos Cl sicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clsicos-slipcase-cd/2075107.p?id=2182994&skuId=2075107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075107_sa.jpg\"}', 'upc' => '886978436924', 'provider' => 'bestbuy'],\n ['name' => \"Dos Cl sicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clsicos-slipcase-cd/2075116.p?id=2182974&skuId=2075116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075116_sa.jpg\"}', 'upc' => '886978436726', 'provider' => 'bestbuy'],\n ['name' => \"Goodbye Lullaby [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodbye-lullaby-cd-dvd-cd-dvd-deluxe-edition/2075125.p?id=2193535&skuId=2075125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075125_sa.jpg\"}', 'upc' => '886978019721', 'provider' => 'bestbuy'],\n ['name' => \"Billy Joel: Live at Shea Stadium - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billy-joel-live-at-shea-stadium-blu-ray-disc/2075143.p?id=2185022&skuId=2075143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075143_sa.jpg\"}', 'upc' => '886978459596', 'provider' => 'bestbuy'],\n ['name' => \"Live: Inside and In Between [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-inside-and-in-between-cd-dvd-cd-dvd/2075161.p?id=2185007&skuId=2075161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075161_sa.jpg\"}', 'upc' => '602341016025', 'provider' => 'bestbuy'],\n ['name' => \"Polaroid - 23.25\\\" Monopod - Black\", 'description_short' => \"Compatible with most cameras and camcorders; bag included\", 'description_long' => \"Compatible with most cameras and camcorders; bag included\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polaroid-23-25-monopod-black/2075222.p?id=1218308263425&skuId=2075222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075222_rc.jpg\"}', 'upc' => '892421002455', 'provider' => 'bestbuy'],\n ['name' => \"Garage, Inc. [LP] [PA] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garage-inc-lp-pa-vinyl/2075268.p?id=2187149&skuId=2075268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075268_sa.jpg\"}', 'upc' => '093624965190', 'provider' => 'bestbuy'],\n ['name' => \"Hit Man Returns [CD/Blu-Ray] [Unknown Media] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hit-man-returns-cd-blu-ray-unknown-media-cd/2075277.p?id=2184845&skuId=2075277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075277_sa.jpg\"}', 'upc' => '093624961260', 'provider' => 'bestbuy'],\n ['name' => \"Wounded Rhymes [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wounded-rhymes-lp-vinyl/2075295.p?id=2186406&skuId=2075295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1902\\/19029951.jpg\"}', 'upc' => '825646744398', 'provider' => 'bestbuy'],\n ['name' => \"Wounded Rhymes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wounded-rhymes-cd/2075329.p?id=2186404&skuId=2075329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075329.jpg\"}', 'upc' => '825646744404', 'provider' => 'bestbuy'],\n ['name' => \"It'll End in Tears [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/itll-end-in-tears-lp-vinyl/2075347.p?id=2186570&skuId=2075347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075347_sa.jpg\"}', 'upc' => '093624958864', 'provider' => 'bestbuy'],\n ['name' => \"Hit Man Returns [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hit-man-returns-cd-dvd-cd-dvd/2075356.p?id=2182740&skuId=2075356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075356_sa.jpg\"}', 'upc' => '093624961253', 'provider' => 'bestbuy'],\n ['name' => \"Airwolf: Season Four [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/airwolf-season-four-5-discs-dvd/2075416.p?id=2167801&skuId=2075416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075416.jpg\"}', 'upc' => '025192083402', 'provider' => 'bestbuy'],\n ['name' => \"Polaroid - 72\\\" Tripod - Black\", 'description_short' => \"Compatible with most cameras and camcorders; bag included\", 'description_long' => \"Compatible with most cameras and camcorders; bag included\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polaroid-72-tripod-black/2075425.p?id=1218308261487&skuId=2075425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2075425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2075\\/2075425_sa.jpg\"}', 'upc' => '892421002400', 'provider' => 'bestbuy'],\n ['name' => \"Weight Watchers: Time Crunch Training Kit (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weight-watchers-time-crunch-training-kit-dvd/2076025.p?id=2892575&skuId=2076025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076025_sa.jpg\"}', 'upc' => '013132609324', 'provider' => 'bestbuy'],\n ['name' => \"Rough Guide to African... [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rough-guide-to-african-digipak-cd-various/2076045.p?id=2190874&skuId=2076045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076045_sa.jpg\"}', 'upc' => '605633125924', 'provider' => 'bestbuy'],\n ['name' => \"Rough Guide To Bellydance: Second Edition - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rough-guide-to-bellydance-second-edition-cd-various/2076054.p?id=2190863&skuId=2076054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076054_sa.jpg\"}', 'upc' => '605633124927', 'provider' => 'bestbuy'],\n ['name' => \"Nervous Nitelife: Patrick M - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nervous-nitelife-patrick-m-cd/2076063.p?id=2190861&skuId=2076063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076063_sa.jpg\"}', 'upc' => '091012217227', 'provider' => 'bestbuy'],\n ['name' => \"Weights & Wings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weights-wings-cd/2076072.p?id=2190856&skuId=2076072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076072_sa.jpg\"}', 'upc' => '067003092029', 'provider' => 'bestbuy'],\n ['name' => \"Several Shades of Why [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/several-shades-of-why-digipak-cd/2076081.p?id=2190851&skuId=2076081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076081_sa.jpg\"}', 'upc' => '098787085921', 'provider' => 'bestbuy'],\n ['name' => \"Death & Legacy [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-legacy-digipak-cd/2076106.p?id=2190855&skuId=2076106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076106_sa.jpg\"}', 'upc' => '885470001883', 'provider' => 'bestbuy'],\n ['name' => \"22 Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-greatest-hits-cd/2076112.p?id=92588&skuId=2076112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076112_sa.jpg\"}', 'upc' => '012676781329', 'provider' => 'bestbuy'],\n ['name' => \"16 Greatest Hits [Deluxe] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-greatest-hits-deluxe-cd/2076121.p?id=80965&skuId=2076121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076121_sa.jpg\"}', 'upc' => '012676781824', 'provider' => 'bestbuy'],\n ['name' => \"Live To Worship - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-to-worship-cd/2076124.p?id=2190859&skuId=2076124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076124_sa.jpg\"}', 'upc' => '893848002622', 'provider' => 'bestbuy'],\n ['name' => \"Balloons: Live at the Blue Note [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/balloons-live-at-the-blue-note-digipak-cd/2076133.p?id=2190857&skuId=2076133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076133_sa.jpg\"}', 'upc' => '616892454625', 'provider' => 'bestbuy'],\n ['name' => \"Going out in Style [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/going-out-in-style-lp-vinyl/2076142.p?id=2190858&skuId=2076142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076142_sa.jpg\"}', 'upc' => '075597977202', 'provider' => 'bestbuy'],\n ['name' => \"Several Shades of Why [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/several-shades-of-why-lp-vinyl/2076151.p?id=2190852&skuId=2076151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076151.jpg\"}', 'upc' => '098787085914', 'provider' => 'bestbuy'],\n ['name' => \"16 Beautiful Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-beautiful-hits-cd/2076167.p?id=104493&skuId=2076167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076167.jpg\"}', 'upc' => '012676790123', 'provider' => 'bestbuy'],\n ['name' => \"Trust in Few - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trust-in-few-cd/2076179.p?id=2190860&skuId=2076179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076179_sa.jpg\"}', 'upc' => '898845002675', 'provider' => 'bestbuy'],\n ['name' => \"Tango Buenos Aires - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tango-buenos-aires-cd/2076188.p?id=2192308&skuId=2076188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076188.jpg\"}', 'upc' => '731383654121', 'provider' => 'bestbuy'],\n ['name' => \"Delta - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delta-cd/2076197.p?id=2190854&skuId=2076197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076197_sa.jpg\"}', 'upc' => '885470001876', 'provider' => 'bestbuy'],\n ['name' => \"My Songbook [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-songbook-cd-dvd-cd-dvd-deluxe-edition/2076203.p?id=2190862&skuId=2076203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076203.jpg\"}', 'upc' => '014998419126', 'provider' => 'bestbuy'],\n ['name' => \"Fabulous Chordettes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabulous-chordettes-cd/2076229.p?id=1452192&skuId=2076229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076229_sa.jpg\"}', 'upc' => '029667790529', 'provider' => 'bestbuy'],\n ['name' => \"Fabulous Everly Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabulous-everly-brothers-cd/2076238.p?id=1464811&skuId=2076238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076238_sa.jpg\"}', 'upc' => '029667790628', 'provider' => 'bestbuy'],\n ['name' => \"Fabulous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabulous-cd/2076247.p?id=1452171&skuId=2076247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076247_sa.jpg\"}', 'upc' => '029667790727', 'provider' => 'bestbuy'],\n ['name' => \"Rock & Horror - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-horror-cd/2076283.p?id=1849572&skuId=2076283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076283.jpg\"}', 'upc' => '029667106528', 'provider' => 'bestbuy'],\n ['name' => \"Songs Our Daddy Taught Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-our-daddy-taught-us-cd/2076292.p?id=1452720&skuId=2076292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076292_sa.jpg\"}', 'upc' => '029667107525', 'provider' => 'bestbuy'],\n ['name' => \"Our True Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-true-story-cd/2076309.p?id=1516207&skuId=2076309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076309_sa.jpg\"}', 'upc' => '029667107624', 'provider' => 'bestbuy'],\n ['name' => \"Rockabilly Shakeout - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockabilly-shakeout-cd-various/2076354.p?id=1491661&skuId=2076354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076354_sa.jpg\"}', 'upc' => '029667119122', 'provider' => 'bestbuy'],\n ['name' => \"The Early Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-early-years-cd/2076390.p?id=1452193&skuId=2076390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076390_sa.jpg\"}', 'upc' => '029667123723', 'provider' => 'bestbuy'],\n ['name' => \"Steel Guitar Flash!Plus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steel-guitar-flashplus-cd/2076407.p?id=1804124&skuId=2076407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076407.jpg\"}', 'upc' => '029667124027', 'provider' => 'bestbuy'],\n ['name' => \"The Dootone Story - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dootone-story-cd-various/2076416.p?id=1462433&skuId=2076416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076416_sa.jpg\"}', 'upc' => '029667124225', 'provider' => 'bestbuy'],\n ['name' => \"Earth Angel [Ace] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earth-angel-ace-cd/2076425.p?id=1452231&skuId=2076425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076425_sa.jpg\"}', 'upc' => '029667124928', 'provider' => 'bestbuy'],\n ['name' => \"Carlo and the Belmonts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carlo-and-the-belmonts-cd/2076434.p?id=1502475&skuId=2076434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076434.jpg\"}', 'upc' => '029667125123', 'provider' => 'bestbuy'],\n ['name' => \"Another Saturday Night: Classic Recordings... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-saturday-night-classic-recordings-cd-various/2076443.p?id=1452170&skuId=2076443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076443_sa.jpg\"}', 'upc' => '029667128827', 'provider' => 'bestbuy'],\n ['name' => \"Golden Age of American Rock 'n' Roll, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-age-of-american-rock-n-roll-vol-1-cd-various/2076452.p?id=1452206&skuId=2076452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076452_sa.jpg\"}', 'upc' => '029667128926', 'provider' => 'bestbuy'],\n ['name' => \"The 3B Blues Boy - The Blues Years: 1952-59 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-3b-blues-boy-the-blues-years-1952-59-cd/2076470.p?id=1452175&skuId=2076470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076470_sa.jpg\"}', 'upc' => '029667130226', 'provider' => 'bestbuy'],\n ['name' => \"Rarest Rockabilly & Hillbilly Boogie: The... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rarest-rockabilly-hillbilly-boogie-the-cd-various/2076489.p?id=1458635&skuId=2076489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076489_sa.jpg\"}', 'upc' => '029667131124', 'provider' => 'bestbuy'],\n ['name' => \"All-American Rock 'n' Roll from Fraternity... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-american-rock-n-roll-from-fraternity-cd-various/2076504.p?id=1576493&skuId=2076504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076504.jpg\"}', 'upc' => '029667131629', 'provider' => 'bestbuy'],\n ['name' => \"This Is Fabian! (1959-61) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-fabian-1959-61-cd/2076522.p?id=1474966&skuId=2076522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076522_sa.jpg\"}', 'upc' => '029667132121', 'provider' => 'bestbuy'],\n ['name' => \"The Voice: Duke Recordings 1959-69 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-voice-duke-recordings-1959-69-cd/2076531.p?id=1452176&skuId=2076531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076531_sa.jpg\"}', 'upc' => '029667132329', 'provider' => 'bestbuy'],\n ['name' => \"Doin' the Hully Gully/Dance by the Light of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doin-the-hully-gully-dance-by-the-light-of-cd/2076540.p?id=1577020&skuId=2076540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076540_sa.jpg\"}', 'upc' => '029667132428', 'provider' => 'bestbuy'],\n ['name' => \"Creepin' with the Cats: The Legendary Dig... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creepin-with-the-cats-the-legendary-dig-cd/2076559.p?id=1452230&skuId=2076559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076559_sa.jpg\"}', 'upc' => '029667132527', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Vapors Club - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-vapors-club-cd/2076568.p?id=1474967&skuId=2076568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076568_sa.jpg\"}', 'upc' => '029667132626', 'provider' => 'bestbuy'],\n ['name' => \"Kiss 'n' Tell - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kiss-n-tell-cd-various/2076577.p?id=1452215&skuId=2076577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076577_sa.jpg\"}', 'upc' => '029667133029', 'provider' => 'bestbuy'],\n ['name' => \"Talk Back Trembling Lips/The Tillotson Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-back-trembling-lips-the-tillotson-touch-cd/2076586.p?id=1452249&skuId=2076586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076586_sa.jpg\"}', 'upc' => '029667133128', 'provider' => 'bestbuy'],\n ['name' => \"Dig These Blues: The Legendary Dig Masters,... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dig-these-blues-the-legendary-dig-masters-cd-various/2076602.p?id=1576071&skuId=2076602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076602_sa.jpg\"}', 'upc' => '029667133425', 'provider' => 'bestbuy'],\n ['name' => \"Laurie Vocal Groups: The Sixties Sound - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laurie-vocal-groups-the-sixties-sound-cd-various/2076620.p?id=1457938&skuId=2076620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076620_sa.jpg\"}', 'upc' => '029667134620', 'provider' => 'bestbuy'],\n ['name' => \"Radio Gold [Ace] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-gold-ace-cd-various/2076639.p?id=1455732&skuId=2076639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076639_sa.jpg\"}', 'upc' => '029667134729', 'provider' => 'bestbuy'],\n ['name' => \"Pretty Much Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pretty-much-country-cd/2076648.p?id=1457939&skuId=2076648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076648_sa.jpg\"}', 'upc' => '029667134828', 'provider' => 'bestbuy'],\n ['name' => \"Dapper Cats, Groovy Tunes & Hot Guitars: The... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dapper-cats-groovy-tunes-hot-guitars-the-cd-various/2076657.p?id=1485549&skuId=2076657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076657_sa.jpg\"}', 'upc' => '029667135122', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Shirelles [Ace] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-shirelles-ace-cd/2076684.p?id=1452241&skuId=2076684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076684_sa.jpg\"}', 'upc' => '029667135627', 'provider' => 'bestbuy'],\n ['name' => \"Remember Then: The Best of the Earls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-then-the-best-of-the-earls-cd/2076693.p?id=1456205&skuId=2076693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076693.jpg\"}', 'upc' => '029667136624', 'provider' => 'bestbuy'],\n ['name' => \"Allons Cajun Rock & Roll - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/allons-cajun-rock-roll-cd-various/2076700.p?id=1452186&skuId=2076700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076700_sa.jpg\"}', 'upc' => '029667136723', 'provider' => 'bestbuy'],\n ['name' => \"Let's Dance: Monogram Sides - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-dance-monogram-sides-cd/2076719.p?id=1452228&skuId=2076719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076719_sa.jpg\"}', 'upc' => '029667136921', 'provider' => 'bestbuy'],\n ['name' => \"Let the Little Girl Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-the-little-girl-dance-cd/2076728.p?id=2434624&skuId=2076728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076728_sa.jpg\"}', 'upc' => '029667137027', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Indigo Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-indigo-recordings-cd/2076746.p?id=1452212&skuId=2076746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076746_sa.jpg\"}', 'upc' => '029667137423', 'provider' => 'bestbuy'],\n ['name' => \"Oh So Fine: The Very Best Of The Fiestas (Ace) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-so-fine-the-very-best-of-the-fiestas-ace-cd/2076773.p?id=1453538&skuId=2076773&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076773', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076773_sa.jpg\"}', 'upc' => '029667138222', 'provider' => 'bestbuy'],\n ['name' => \"Walking Along with the Solitaires - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-along-with-the-solitaires-cd/2076782.p?id=1500177&skuId=2076782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076782.jpg\"}', 'upc' => '029667138321', 'provider' => 'bestbuy'],\n ['name' => \"We Belong Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-belong-together-cd/2076791.p?id=1572159&skuId=2076791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076791_sa.jpg\"}', 'upc' => '029667138420', 'provider' => 'bestbuy'],\n ['name' => \"Wheels [Pick-A-Hit/Charly] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheels-pick-a-hit-charly-cd/2076808.p?id=1452377&skuId=2076808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076808_sa.jpg\"}', 'upc' => '029667139021', 'provider' => 'bestbuy'],\n ['name' => \"Bo's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bos-blues-cd/2076817.p?id=1452199&skuId=2076817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076817_sa.jpg\"}', 'upc' => '029667139625', 'provider' => 'bestbuy'],\n ['name' => \"On the Blues Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-blues-side-cd/2076826.p?id=1452174&skuId=2076826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076826_sa.jpg\"}', 'upc' => '029667139724', 'provider' => 'bestbuy'],\n ['name' => \"She's Neat: The Fraternity Sides - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shes-neat-the-fraternity-sides-cd/2076844.p?id=1462626&skuId=2076844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076844.jpg\"}', 'upc' => '029667140225', 'provider' => 'bestbuy'],\n ['name' => \"The Glen Glenn Story/Everybody's Movin' Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-glen-glenn-story-everybodys-movin-again-cd/2076853.p?id=1452205&skuId=2076853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076853_sa.jpg\"}', 'upc' => '029667140324', 'provider' => 'bestbuy'],\n ['name' => \"Teen Beat, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teen-beat-vol-1-cd-various/2076862.p?id=1452247&skuId=2076862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076862_sa.jpg\"}', 'upc' => '029667140621', 'provider' => 'bestbuy'],\n ['name' => \"Classic Doo Wop [Ace] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-doo-wop-ace-various-cd/2076880.p?id=1493977&skuId=2076880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076880_sa.jpg\"}', 'upc' => '029667141727', 'provider' => 'bestbuy'],\n ['name' => \"Original Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-masters-cd/2076899.p?id=1849228&skuId=2076899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076899_sa.jpg\"}', 'upc' => '029667141826', 'provider' => 'bestbuy'],\n ['name' => \"The Story of Godband Records - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-story-of-godband-records-cd-various/2076906.p?id=1564551&skuId=2076906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076906_sa.jpg\"}', 'upc' => '029667142427', 'provider' => 'bestbuy'],\n ['name' => \"Tom Shannon Presents... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-shannon-presents-cd-various/2076915.p?id=1452525&skuId=2076915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076915_sa.jpg\"}', 'upc' => '029667142625', 'provider' => 'bestbuy'],\n ['name' => \"Bayou Blues Blasters: Goldband Blues - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bayou-blues-blasters-goldband-blues-cd-various/2076924.p?id=1572158&skuId=2076924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076924_sa.jpg\"}', 'upc' => '029667142724', 'provider' => 'bestbuy'],\n ['name' => \"Old Town Doo Wop, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-town-doo-wop-vol-1-cd-various/2076933.p?id=1463833&skuId=2076933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076933_sa.jpg\"}', 'upc' => '029667143325', 'provider' => 'bestbuy'],\n ['name' => \"Goldband Rockabilly: Boppin' Tonight - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goldband-rockabilly-boppin-tonight-cd-various/2076951.p?id=3263413&skuId=2076951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076951.jpg\"}', 'upc' => '029667144223', 'provider' => 'bestbuy'],\n ['name' => \"Fabulous Flips - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabulous-flips-cd-various/2076960.p?id=1465706&skuId=2076960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076960_sa.jpg\"}', 'upc' => '029667144421', 'provider' => 'bestbuy'],\n ['name' => \"The Golden Age of American Rock 'n' Roll, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-golden-age-of-american-rock-n-roll-vol-2-cd-various/2076979.p?id=1452207&skuId=2076979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076979_sa.jpg\"}', 'upc' => '029667144520', 'provider' => 'bestbuy'],\n ['name' => \"Radio Gold, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-gold-vol-2-cd-various/2076988.p?id=1452235&skuId=2076988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076988_sa.jpg\"}', 'upc' => '029667144629', 'provider' => 'bestbuy'],\n ['name' => \"The Fireballs/Vaquero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fireballs-vaquero-cd/2076997.p?id=1576472&skuId=2076997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2076997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2076\\/2076997_sa.jpg\"}', 'upc' => '029667144728', 'provider' => 'bestbuy'],\n ['name' => \"Gumbo Stew - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gumbo-stew-cd-various/2077004.p?id=1574441&skuId=2077004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077004_sa.jpg\"}', 'upc' => '029667145022', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Fireballs : The Original Norman... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-fireballs--the-original-norman-cd/2077022.p?id=1564549&skuId=2077022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077022_sa.jpg\"}', 'upc' => '029667145220', 'provider' => 'bestbuy'],\n ['name' => \"Blues Guitar Hero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-guitar-hero-cd/2077031.p?id=1452214&skuId=2077031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077031_sa.jpg\"}', 'upc' => '029667145428', 'provider' => 'bestbuy'],\n ['name' => \"Satan Get Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/satan-get-back-cd/2077040.p?id=1452203&skuId=2077040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077040_sa.jpg\"}', 'upc' => '029667145626', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: A Christmas Carol (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-a-christmas-carol-dvd/2077053.p?id=2177614&skuId=2077053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077053.jpg\"}', 'upc' => '883929167654', 'provider' => 'bestbuy'],\n ['name' => \"Women, Whiskey & Fish Tails - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/women-whiskey-fish-tails-cd/2077059.p?id=1472367&skuId=2077059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077059_sa.jpg\"}', 'upc' => '029667145725', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: A Christmas Carol (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-a-christmas-carol-blu-ray-disc/2077062.p?id=2177614&skuId=2077062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077062.jpg\"}', 'upc' => '883929170180', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Mighty Man! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-mighty-man-cd/2077068.p?id=1452179&skuId=2077068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077068_sa.jpg\"}', 'upc' => '029667145923', 'provider' => 'bestbuy'],\n ['name' => \"Wing Ding - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wing-ding-cd/2077077.p?id=1537617&skuId=2077077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077077_sa.jpg\"}', 'upc' => '029667146029', 'provider' => 'bestbuy'],\n ['name' => \"The Class & Rendezvous Story - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-class-rendezvous-story-cd-various/2077086.p?id=1576197&skuId=2077086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077086.jpg\"}', 'upc' => '029667146128', 'provider' => 'bestbuy'],\n ['name' => \"More Gumbo Stew - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-gumbo-stew-cd-various/2077095.p?id=2151803&skuId=2077095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077095.jpg\"}', 'upc' => '029667146227', 'provider' => 'bestbuy'],\n ['name' => \"Old Town Doo Wop, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-town-doo-wop-vol-3-cd-various/2077111.p?id=1456143&skuId=2077111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077111_sa.jpg\"}', 'upc' => '029667147125', 'provider' => 'bestbuy'],\n ['name' => \"Blue Fire & Rarities - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-fire-rarities-cd/2077120.p?id=1578073&skuId=2077120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077120_sa.jpg\"}', 'upc' => '029667147224', 'provider' => 'bestbuy'],\n ['name' => \"El Primitivo American Rock 'N' Roll & Rockabilly - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-primitivo-american-rock-n-roll-rockabilly-cd-various/2077139.p?id=1577096&skuId=2077139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077139_sa.jpg\"}', 'upc' => '029667147323', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Saturday Night - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-saturday-night-cd-various/2077166.p?id=1452279&skuId=2077166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077166_sa.jpg\"}', 'upc' => '029667149020', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Rockers - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-rockers-cd-various/2077175.p?id=1578262&skuId=2077175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077175_sa.jpg\"}', 'upc' => '029667149129', 'provider' => 'bestbuy'],\n ['name' => \"More Hollywood Rock 'n' Roll - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-hollywood-rock-n-roll-cd-various/2077184.p?id=1578263&skuId=2077184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077184_sa.jpg\"}', 'upc' => '029667149426', 'provider' => 'bestbuy'],\n ['name' => \"Shreveport Stomp (Ram Recs) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shreveport-stomp-ram-recs-cd-various/2077193.p?id=1549358&skuId=2077193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077193_sa.jpg\"}', 'upc' => '029667149525', 'provider' => 'bestbuy'],\n ['name' => \"Still Spicy Gumbo Slew - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-spicy-gumbo-slew-cd-various/2077228.p?id=1849257&skuId=2077228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077228.jpg\"}', 'upc' => '029667152020', 'provider' => 'bestbuy'],\n ['name' => \"Lost & Found - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-found-cd/2077237.p?id=1452546&skuId=2077237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077237_sa.jpg\"}', 'upc' => '029667152129', 'provider' => 'bestbuy'],\n ['name' => \"How Do You Know (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-do-you-know-dvd/2077248.p?id=2189776&skuId=2077248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077248_sa.jpg\"}', 'upc' => '043396374119', 'provider' => 'bestbuy'],\n ['name' => \"How Do You Know (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-do-you-know-blu-ray-disc/2077266.p?id=2189776&skuId=2077266&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077266_sa.jpg\"}', 'upc' => '043396374072', 'provider' => 'bestbuy'],\n ['name' => \"Stand by Me (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-by-me-blu-ray-disc/2077275.p?id=24677&skuId=2077275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077275.jpg\"}', 'upc' => '043396263789', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-recordings-cd/2077282.p?id=1576436&skuId=2077282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077282_sa.jpg\"}', 'upc' => '029667190329', 'provider' => 'bestbuy'],\n ['name' => \"Made in Dagenham (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/made-in-dagenham-dvd/2077284.p?id=2188244&skuId=2077284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077284_sa.jpg\"}', 'upc' => '043396374522', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Jackie Wilson [Ace] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-jackie-wilson-ace-cd/2077291.p?id=1452256&skuId=2077291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077291_sa.jpg\"}', 'upc' => '029667191326', 'provider' => 'bestbuy'],\n ['name' => \"Runaround Sue: The Best of the Rest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/runaround-sue-the-best-of-the-rest-cd/2077317.p?id=1576362&skuId=2077317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077317_sa.jpg\"}', 'upc' => '029667191524', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2077335.p?id=1452169&skuId=2077335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077335_sa.jpg\"}', 'upc' => '029667192224', 'provider' => 'bestbuy'],\n ['name' => \"Shout and Twist with Rudolph, Ronald & O'Kelly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shout-and-twist-with-rudolph-ronald-okelly-cd/2077353.p?id=2390546&skuId=2077353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077353.jpg\"}', 'upc' => '029667192828', 'provider' => 'bestbuy'],\n ['name' => \"The Laurie Records Story, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-laurie-records-story-vol-1-cd-various/2077380.p?id=1452222&skuId=2077380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077380_sa.jpg\"}', 'upc' => '029667193320', 'provider' => 'bestbuy'],\n ['name' => \"The Original Hound Dog - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-hound-dog-cd/2077399.p?id=2487524&skuId=2077399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077399.jpg\"}', 'upc' => '029667194020', 'provider' => 'bestbuy'],\n ['name' => \"Jumpin' the Blues - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jumpin-the-blues-cd-various/2077406.p?id=1549667&skuId=2077406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077406_sa.jpg\"}', 'upc' => '029667194129', 'provider' => 'bestbuy'],\n ['name' => \"Lovers Who Wander/So Why Didn't You Do That... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovers-who-wander-so-why-didnt-you-do-that-cd/2077415.p?id=1564545&skuId=2077415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077415.jpg\"}', 'upc' => '029667194327', 'provider' => 'bestbuy'],\n ['name' => \"Wish Upon a Star/Alone with Dion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wish-upon-a-star-alone-with-dion-cd/2077424.p?id=1576365&skuId=2077424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077424.jpg\"}', 'upc' => '029667194525', 'provider' => 'bestbuy'],\n ['name' => \"All His Early Hits- And More!!!! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-his-early-hits-and-more-cd/2077433.p?id=1452248&skuId=2077433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077433.jpg\"}', 'upc' => '029667194624', 'provider' => 'bestbuy'],\n ['name' => \"Blues It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-it-up-cd/2077442.p?id=1492689&skuId=2077442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077442_sa.jpg\"}', 'upc' => '029667195027', 'provider' => 'bestbuy'],\n ['name' => \"Presenting Dion & the Belmonts/Runaround Sue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presenting-dion-the-belmonts-runaround-sue-cd/2077451.p?id=1564546&skuId=2077451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077451_sa.jpg\"}', 'upc' => '029667196628', 'provider' => 'bestbuy'],\n ['name' => \"Texas Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-blues-cd/2077610.p?id=85678&skuId=2077610&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077610', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077610_sa.jpg\"}', 'upc' => '096297030226', 'provider' => 'bestbuy'],\n ['name' => \"Memphis Charlie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memphis-charlie-cd/2077629.p?id=92697&skuId=2077629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077629_sa.jpg\"}', 'upc' => '096297030325', 'provider' => 'bestbuy'],\n ['name' => \"Ball n' Chain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ball-n-chain-cd/2077647.p?id=101731&skuId=2077647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077647_sa.jpg\"}', 'upc' => '096297030523', 'provider' => 'bestbuy'],\n ['name' => \"Texas Sharecropper & Songster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-sharecropper-songster-cd/2077656.p?id=89327&skuId=2077656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077656_sa.jpg\"}', 'upc' => '096297030622', 'provider' => 'bestbuy'],\n ['name' => \"The Zydeco: The Early Years - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-zydeco-the-early-years-cd-various/2077665.p?id=105345&skuId=2077665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077665_sa.jpg\"}', 'upc' => '096297030721', 'provider' => 'bestbuy'],\n ['name' => \"First Recordings (1976-1978) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-recordings-1976-1978-cd/2077674.p?id=88241&skuId=2077674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077674_sa.jpg\"}', 'upc' => '096297030929', 'provider' => 'bestbuy'],\n ['name' => \"King Biscuit Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-biscuit-time-cd/2077683.p?id=104207&skuId=2077683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077683.jpg\"}', 'upc' => '096297031025', 'provider' => 'bestbuy'],\n ['name' => \"En Bas du Chene Vert (Under a Green Oak Tree) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/en-bas-du-chene-vert-under-a-green-oak-tree-cd/2077709.p?id=73779&skuId=2077709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077709_sa.jpg\"}', 'upc' => '096297031223', 'provider' => 'bestbuy'],\n ['name' => \"Shake Your Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-your-boogie-cd/2077727.p?id=104066&skuId=2077727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077727_sa.jpg\"}', 'upc' => '096297031520', 'provider' => 'bestbuy'],\n ['name' => \"Two Step D'Amadé - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-step-damade-cd/2077736.p?id=97974&skuId=2077736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077736_sa.jpg\"}', 'upc' => '096297031629', 'provider' => 'bestbuy'],\n ['name' => \"El Mero Mero De San Antonio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-mero-mero-de-san-antonio-cd/2077745.p?id=87012&skuId=2077745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077745.jpg\"}', 'upc' => '096297031728', 'provider' => 'bestbuy'],\n ['name' => \"Ay Te Dejo en San Antonio y Mas! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ay-te-dejo-en-san-antonio-y-mas-cd/2077754.p?id=86982&skuId=2077754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077754_sa.jpg\"}', 'upc' => '096297031827', 'provider' => 'bestbuy'],\n ['name' => \"Huayno Music of Peru, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/huayno-music-of-peru-vol-1-cd-various/2077763.p?id=94749&skuId=2077763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077763_sa.jpg\"}', 'upc' => '096297032022', 'provider' => 'bestbuy'],\n ['name' => \"Sky Songs, Vols. 1-2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sky-songs-vols-1-2-cd/2077772.p?id=103901&skuId=2077772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077772_sa.jpg\"}', 'upc' => '096297032329', 'provider' => 'bestbuy'],\n ['name' => \"Two Bugs and a Roach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-bugs-and-a-roach-cd/2077781.p?id=85593&skuId=2077781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077781_sa.jpg\"}', 'upc' => '096297032428', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-blues-cd/2077790.p?id=105096&skuId=2077790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077790_sa.jpg\"}', 'upc' => '096297032527', 'provider' => 'bestbuy'],\n ['name' => \"Early Cante Flamenco (1934-1939) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/early-cante-flamenco-1934-1939-cd-various/2077807.p?id=82363&skuId=2077807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077807_sa.jpg\"}', 'upc' => '096297032626', 'provider' => 'bestbuy'],\n ['name' => \"Gold Star Sessions, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-star-sessions-vol-1-cd/2077816.p?id=85689&skuId=2077816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077816.jpg\"}', 'upc' => '096297033029', 'provider' => 'bestbuy'],\n ['name' => \"J'ai Ete Au Bal [I Went to the Dance], Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jai-ete-au-bal-i-went-to-the-dance-vol-1-cd-various/2077825.p?id=86460&skuId=2077825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077825_sa.jpg\"}', 'upc' => '096297033128', 'provider' => 'bestbuy'],\n ['name' => \"J'ai Ete Au Bal [I Went to the Dance], Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jai-ete-au-bal-i-went-to-the-dance-vol-2-cd-various/2077834.p?id=86461&skuId=2077834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077834.jpg\"}', 'upc' => '096297033227', 'provider' => 'bestbuy'],\n ['name' => \"Joe Pete Got Two Women - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-pete-got-two-women-cd/2077843.p?id=80136&skuId=2077843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077843.jpg\"}', 'upc' => '096297033524', 'provider' => 'bestbuy'],\n ['name' => \"Caballo Viejo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caballo-viejo-cd/2077852.p?id=89590&skuId=2077852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077852_sa.jpg\"}', 'upc' => '096297033623', 'provider' => 'bestbuy'],\n ['name' => \"Gold Star Sessions, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-star-sessions-vol-2-cd/2077861.p?id=85690&skuId=2077861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077861.jpg\"}', 'upc' => '096297033722', 'provider' => 'bestbuy'],\n ['name' => \"Hopkins Brothers: Lightnin', Joel, & John Henry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hopkins-brothers-lightnin-joel-john-henry-cd/2077870.p?id=85664&skuId=2077870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077870_sa.jpg\"}', 'upc' => '096297034026', 'provider' => 'bestbuy'],\n ['name' => \"Tejano Roots: The Women (1946-1970) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tejano-roots-the-women-1946-1970-cd-various/2077889.p?id=101342&skuId=2077889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077889_sa.jpg\"}', 'upc' => '096297034323', 'provider' => 'bestbuy'],\n ['name' => \"Bon Ton Roulet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bon-ton-roulet-cd/2077898.p?id=77345&skuId=2077898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077898_sa.jpg\"}', 'upc' => '096297034521', 'provider' => 'bestbuy'],\n ['name' => \"Country Boy Down in New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-boy-down-in-new-orleans-cd/2077914.p?id=81213&skuId=2077914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077914.jpg\"}', 'upc' => '096297034828', 'provider' => 'bestbuy'],\n ['name' => \"Good Morning Mr. Walker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-morning-mr-walker-cd/2077923.p?id=99835&skuId=2077923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077923_sa.jpg\"}', 'upc' => '096297034927', 'provider' => 'bestbuy'],\n ['name' => \"Out West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-west-cd/2077932.p?id=77355&skuId=2077932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077932_sa.jpg\"}', 'upc' => '096297035023', 'provider' => 'bestbuy'],\n ['name' => \"Charles Ford Band: With Robben, Mark & Pat... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charles-ford-band-with-robben-mark-pat-cd/2077941.p?id=82640&skuId=2077941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077941_sa.jpg\"}', 'upc' => '096297035320', 'provider' => 'bestbuy'],\n ['name' => \"Music of Mexico, Vol. 1: Veracruz - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-mexico-vol-1-veracruz-various-cd/2077950.p?id=106744&skuId=2077950&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077950', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077950_sa.jpg\"}', 'upc' => '096297035429', 'provider' => 'bestbuy'],\n ['name' => \"Not Lonesome Anymore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-lonesome-anymore-cd/2077969.p?id=76606&skuId=2077969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077969_sa.jpg\"}', 'upc' => '096297035627', 'provider' => 'bestbuy'],\n ['name' => \"Folksongs of the Louisiana Acadians - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folksongs-of-the-louisiana-acadians-cd-various/2077978.p?id=82584&skuId=2077978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077978_sa.jpg\"}', 'upc' => '096297035924', 'provider' => 'bestbuy'],\n ['name' => \"Frisco Bound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frisco-bound-cd/2077987.p?id=83073&skuId=2077987&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2077987', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2077\\/2077987_sa.jpg\"}', 'upc' => '096297036020', 'provider' => 'bestbuy'],\n ['name' => \"Troublesome Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/troublesome-mind-cd/2078003.p?id=103439&skuId=2078003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078003_sa.jpg\"}', 'upc' => '096297036921', 'provider' => 'bestbuy'],\n ['name' => \"Boogie Disease - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-disease-cd/2078012.p?id=179503&skuId=2078012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078012.jpg\"}', 'upc' => '096297037126', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Hot Sauce, Creole Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-hot-sauce-creole-style-cd/2078049.p?id=82608&skuId=2078049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078049_sa.jpg\"}', 'upc' => '096297038123', 'provider' => 'bestbuy'],\n ['name' => \"I'm as Blue as a Man Can Be - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-as-blue-as-a-man-can-be-cd/2078058.p?id=104312&skuId=2078058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078058_sa.jpg\"}', 'upc' => '096297039427', 'provider' => 'bestbuy'],\n ['name' => \"Robert Pete Williams, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/robert-pete-williams-vol-2-cd/2078067.p?id=104313&skuId=2078067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078067_sa.jpg\"}', 'upc' => '096297039526', 'provider' => 'bestbuy'],\n ['name' => \"From North Dallas to the East Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-north-dallas-to-the-east-side-cd/2078094.p?id=106748&skuId=2078094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078094.jpg\"}', 'upc' => '096297040829', 'provider' => 'bestbuy'],\n ['name' => \"Blues Come to Texas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-come-to-texas-cd/2078101.p?id=86555&skuId=2078101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078101.jpg\"}', 'upc' => '096297040928', 'provider' => 'bestbuy'],\n ['name' => \"Ben 10 Ultimate Alien: Cosmic Destruction - PRE-OWNED - Nintendo DS\", 'description_short' => \"Discover the alien inside of you\", 'description_long' => \"Discover the alien inside of you\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-10-ultimate-alien-cosmic-destruction-pre-owned-nintendo-ds/2078122.p?id=1218308706483&skuId=2078122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078122_sa.jpg\"}', 'upc' => '799007769576', 'provider' => 'bestbuy'],\n ['name' => \"Cajun House Party: C'ez Cheese - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-house-party-cez-cheese-cd/2078138.p?id=106746&skuId=2078138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078138.jpg\"}', 'upc' => '096297041529', 'provider' => 'bestbuy'],\n ['name' => \"Creole Belles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creole-belles-cd/2078147.p?id=106755&skuId=2078147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078147.jpg\"}', 'upc' => '096297042021', 'provider' => 'bestbuy'],\n ['name' => \"MySims: SkyHeroes - PRE-OWNED - Nintendo DS\", 'description_short' => \"Take to the skies for high-flying action\", 'description_long' => \"Take to the skies for high-flying action\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysims-skyheroes-pre-owned-nintendo-ds/2078159.p?id=1218308706730&skuId=2078159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078159_sa.jpg\"}', 'upc' => '799007769590', 'provider' => 'bestbuy'],\n ['name' => \"The Shoot - PRE-OWNED - PlayStation 3\", 'description_short' => \"Become the ultimate action hero\", 'description_long' => \"Become the ultimate action hero\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-shoot-pre-owned-playstation-3/2078168.p?id=1218308699767&skuId=2078168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078168_sa.jpg\"}', 'upc' => '799007769606', 'provider' => 'bestbuy'],\n ['name' => \"Amok - CD - EP\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amok-cd-ep/2078183.p?id=197622&skuId=2078183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078183.jpg\"}', 'upc' => '727701777627', 'provider' => 'bestbuy'],\n ['name' => \"Raving Rabbids: Travel in Time - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Travel through time with some wacky Rabbids\", 'description_long' => \"Travel through time with some wacky Rabbids\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raving-rabbids-travel-in-time-pre-owned-nintendo-wii/2078247.p?id=1218308694511&skuId=2078247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078247_sa.jpg\"}', 'upc' => '799007769668', 'provider' => 'bestbuy'],\n ['name' => \"Disney Cars Toon: Mater's Tall Tales - PRE-OWNED - Nintendo Wii\", 'description_short' => \"His stories might not be true &#8212; but they&#039;re truly exciting\", 'description_long' => \"His stories might not be true &#8212; but they&#039;re truly exciting\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-cars-toon-maters-tall-tales-pre-owned-nintendo-wii/2078256.p?id=1218308700271&skuId=2078256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078256_sa.jpg\"}', 'upc' => '799007769675', 'provider' => 'bestbuy'],\n ['name' => \"Ninja Gaiden Sigma 2 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Use your ninja abilities to prevent an evil resurrection\", 'description_long' => \"Use your ninja abilities to prevent an evil resurrection\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ninja-gaiden-sigma-2-pre-owned-playstation-3/2078283.p?id=1218308700846&skuId=2078283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078283_sa.jpg\"}', 'upc' => '799007769705', 'provider' => 'bestbuy'],\n ['name' => \"SpongeBob's Atlantis SquarePantis - PRE-OWNED - Nintendo DS\", 'description_short' => \"Join SpongeBob as he searches for the world&#039;s oldest bubble\", 'description_long' => \"Join SpongeBob as he searches for the world&#039;s oldest bubble\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spongebobs-atlantis-squarepantis-pre-owned-nintendo-ds/2078308.p?id=1218308698224&skuId=2078308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078308_sa.jpg\"}', 'upc' => '799007769729', 'provider' => 'bestbuy'],\n ['name' => \"Avatar The Last Airbender: Into the Inferno - PRE-OWNED - Nintendo DS\", 'description_short' => \"Do you have the strength and courage to defeat Fire Lord Ozai?\", 'description_long' => \"Do you have the strength and courage to defeat Fire Lord Ozai?\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avatar-the-last-airbender-into-the-inferno-pre-owned-nintendo-ds/2078317.p?id=1218308701934&skuId=2078317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078317_sa.jpg\"}', 'upc' => '799007769736', 'provider' => 'bestbuy'],\n ['name' => \"Super Scribblenauts - PRE-OWNED - Nintendo DS\", 'description_short' => \"Write any object that comes to mind and modify it to do your bidding\", 'description_long' => \"Write any object that comes to mind and modify it to do your bidding\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-scribblenauts-pre-owned-nintendo-ds/2078344.p?id=1218308699891&skuId=2078344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078344_sa.jpg\"}', 'upc' => '799007777861', 'provider' => 'bestbuy'],\n ['name' => \"Call of Duty: Black Ops - PRE-OWNED - Nintendo DS\", 'description_short' => \"Jump into the mission\", 'description_long' => \"Jump into the mission\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-duty-black-ops-pre-owned-nintendo-ds/2078362.p?id=1218308704535&skuId=2078362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078362_sa.jpg\"}', 'upc' => '799007777885', 'provider' => 'bestbuy'],\n ['name' => \"Cabela's Dangerous Hunts 2011 - PRE-OWNED - PlayStation 3\", 'description_short' => \"It&#039;s the ultimate battle of man vs. nature\", 'description_long' => \"It&#039;s the ultimate battle of man vs. nature\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabelas-dangerous-hunts-2011-pre-owned-playstation-3/2078399.p?id=1218308699372&skuId=2078399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078399_sa.jpg\"}', 'upc' => '799007777908', 'provider' => 'bestbuy'],\n ['name' => \"Tom Clancy's Ghost Recon - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Will you be able to find your target and your team in Moscow?\", 'description_long' => \"Will you be able to find your target and your team in Moscow?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-clancys-ghost-recon-pre-owned-nintendo-wii/2078431.p?id=1218308698673&skuId=2078431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078431_sa.jpg\"}', 'upc' => '799007777946', 'provider' => 'bestbuy'],\n ['name' => \"Singularity - PRE-OWNED - PlayStation 3\", 'description_short' => \"Manipulate time to unravel a conspiracy\", 'description_long' => \"Manipulate time to unravel a conspiracy\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singularity-pre-owned-playstation-3/2078468.p?id=1218308699444&skuId=2078468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078468_sa.jpg\"}', 'upc' => '799007777960', 'provider' => 'bestbuy'],\n ['name' => \"Calvin Tucker's Redneck: Farm Animal Racing Tournament — PRE-OWNED - Nintendo DS\", 'description_short' => \"Get ready for a white-knuckle redneck adventure\", 'description_long' => \"Get ready for a white-knuckle redneck adventure\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/calvin-tuckers-redneck-farm-animal-racing-tournament-pre-owned-nintendo-ds/2078547.p?id=1218308706285&skuId=2078547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078547.jpg\"}', 'upc' => '799007778035', 'provider' => 'bestbuy'],\n ['name' => \"Impossible Mission — PRE-OWNED - Nintendo DS\", 'description_short' => \"Stop Professor Atombender before it&#039;s too late\", 'description_long' => \"Stop Professor Atombender before it&#039;s too late\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/impossible-mission-pre-owned-nintendo-ds/2078565.p?id=1218308696827&skuId=2078565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078565.jpg\"}', 'upc' => '799007778059', 'provider' => 'bestbuy'],\n ['name' => \"Monopoly Streets - PRE-OWNED - PlayStation 3\", 'description_short' => \"Who says monopolies are illegal?\", 'description_long' => \"Who says monopolies are illegal?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monopoly-streets-pre-owned-playstation-3/2078574.p?id=1218308705148&skuId=2078574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078574_sa.jpg\"}', 'upc' => '799007778066', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Colors - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Let your true heroic colors shine\", 'description_long' => \"Let your true heroic colors shine\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-colors-pre-owned-nintendo-wii/2078583.p?id=1218308697516&skuId=2078583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078583_sa.jpg\"}', 'upc' => '799007778073', 'provider' => 'bestbuy'],\n ['name' => \"Deca Sports Freedom - PRE-OWNED - Xbox 360\", 'description_short' => \"Become the athlete of your dreams\", 'description_long' => \"Become the athlete of your dreams\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deca-sports-freedom-pre-owned-xbox-360/2078592.p?id=1218308702770&skuId=2078592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078592_sa.jpg\"}', 'upc' => '799007778080', 'provider' => 'bestbuy'],\n ['name' => \"Hasbro Family Game Night 3 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Take the fun to the amusement park\", 'description_long' => \"Take the fun to the amusement park\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hasbro-family-game-night-3-pre-owned-playstation-3/2078617.p?id=1218308705784&skuId=2078617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078617_sa.jpg\"}', 'upc' => '799007778103', 'provider' => 'bestbuy'],\n ['name' => \"Together with Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/together-with-music-cd/2078619.p?id=2389697&skuId=2078619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078619_sa.jpg\"}', 'upc' => '021471110326', 'provider' => 'bestbuy'],\n ['name' => \"Red Dead Redemption: Undead Nightmare - PRE-OWNED - Xbox 360\", 'description_short' => \"Set off on a dangerous journey in the last days of the Old West\", 'description_long' => \"Set off on a dangerous journey in the last days of the Old West\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-dead-redemption-undead-nightmare-pre-owned-xbox-360/2078626.p?id=1218308705586&skuId=2078626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078626_sa.jpg\"}', 'upc' => '799007778110', 'provider' => 'bestbuy'],\n ['name' => \"Party With Comden & Green - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-with-comden-green-cd/2078628.p?id=2116939&skuId=2078628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078628_sa.jpg\"}', 'upc' => '021471517729', 'provider' => 'bestbuy'],\n ['name' => \"Left Brain Right Brain - PRE-OWNED - Nintendo DS\", 'description_short' => \"Train your brain in fun and unique ways\", 'description_long' => \"Train your brain in fun and unique ways\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/left-brain-right-brain-pre-owned-nintendo-ds/2078635.p?id=1218308702577&skuId=2078635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078635_sa.jpg\"}', 'upc' => '799007778127', 'provider' => 'bestbuy'],\n ['name' => \"Walk On The Water - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walk-on-the-water-cd/2078637.p?id=2472983&skuId=2078637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078637_sa.jpg\"}', 'upc' => '021471519426', 'provider' => 'bestbuy'],\n ['name' => \"Tintypes - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tintypes-cd-original-broadway-cast/2078646.p?id=101906&skuId=2078646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078646.jpg\"}', 'upc' => '021471519624', 'provider' => 'bestbuy'],\n ['name' => \"Blue Dragon: Awakened Shadow - PRE-OWNED - Nintendo DS\", 'description_short' => \"Solve the mystery of the stolen Shadows with steel and wit\", 'description_long' => \"Solve the mystery of the stolen Shadows with steel and wit\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-dragon-awakened-shadow-pre-owned-nintendo-ds/2078653.p?id=1218308694763&skuId=2078653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078653_sa.jpg\"}', 'upc' => '799007778141', 'provider' => 'bestbuy'],\n ['name' => \"Broadway Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broadway-baby-cd/2078655.p?id=89784&skuId=2078655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078655.jpg\"}', 'upc' => '021471520323', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Fashion Designer New York - PRE-OWNED - Nintendo DS\", 'description_short' => \"Make it as a big-time fashion designer is New York City\", 'description_long' => \"Make it as a big-time fashion designer is New York City\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-fashion-designer-new-york-pre-owned-nintendo-ds/2078662.p?id=1218308698152&skuId=2078662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078662_sa.jpg\"}', 'upc' => '799007778158', 'provider' => 'bestbuy'],\n ['name' => \"Very Good Eddie - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-good-eddie-cd-original-soundtrack/2078673.p?id=103114&skuId=2078673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078673_sa.jpg\"}', 'upc' => '021471610024', 'provider' => 'bestbuy'],\n ['name' => \"TRON: Evolution Battle Grids - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Return to the world of TRON\", 'description_long' => \"Return to the world of TRON\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-evolution-battle-grids-pre-owned-nintendo-wii/2078699.p?id=1218308700027&skuId=2078699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078699_sa.jpg\"}', 'upc' => '799007778172', 'provider' => 'bestbuy'],\n ['name' => \"Forbidden Broadway - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forbidden-broadway-cd-original-cast-recording/2078780.p?id=82627&skuId=2078780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078780_sa.jpg\"}', 'upc' => '021471258523', 'provider' => 'bestbuy'],\n ['name' => \"Oil City Symphony - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oil-city-symphony-cd-original-cast-recording/2078799.p?id=93827&skuId=2078799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078799.jpg\"}', 'upc' => '021471259421', 'provider' => 'bestbuy'],\n ['name' => \"Clue/Mouse Trap/Perfection/Aggravation — PRE-OWNED - Nintendo DS\", 'description_short' => \"Are you ready for exciting board game competition wherever you are?\", 'description_long' => \"Are you ready for exciting board game competition wherever you are?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clue-mouse-trap-perfection-aggravation-pre-owned-nintendo-ds/2078826.p?id=1218308704030&skuId=2078826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078826.jpg\"}', 'upc' => '799007778202', 'provider' => 'bestbuy'],\n ['name' => \"Your Shape: Fitness Evolved - PRE-OWNED - Xbox 360\", 'description_short' => \"Get the ultimate workout, using your body as a guide\", 'description_long' => \"Get the ultimate workout, using your body as a guide\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/your-shape-fitness-evolved-pre-owned-xbox-360/2078835.p?id=1218308701755&skuId=2078835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078835_sa.jpg\"}', 'upc' => '799007778219', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Carlyle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-carlyle-cd/2078842.p?id=64834&skuId=2078842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078842_sa.jpg\"}', 'upc' => '021471140729', 'provider' => 'bestbuy'],\n ['name' => \"Imagine: Salon Stylist - PRE-OWNED - Nintendo DS\", 'description_short' => \"Being in charge is a thing of beauty\", 'description_long' => \"Being in charge is a thing of beauty\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-salon-stylist-pre-owned-nintendo-ds/2078844.p?id=1218308696619&skuId=2078844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078844_sa.jpg\"}', 'upc' => '799007778226', 'provider' => 'bestbuy'],\n ['name' => \"Majin and the Forsaken Kingdom - PRE-OWNED - Xbox 360\", 'description_short' => \"Team up with a monstrous ally\", 'description_long' => \"Team up with a monstrous ally\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/majin-and-the-forsaken-kingdom-pre-owned-xbox-360/2078862.p?id=1218308703585&skuId=2078862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078862_sa.jpg\"}', 'upc' => '799007778240', 'provider' => 'bestbuy'],\n ['name' => \"nail'd - PRE-OWNED - PlayStation 3\", 'description_short' => \"Prepare for nonstop, adrenaline-pumping racing action\", 'description_long' => \"Prepare for nonstop, adrenaline-pumping racing action\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naild-pre-owned-playstation-3/2078871.p?id=1218308699109&skuId=2078871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078871_sa.jpg\"}', 'upc' => '799007778257', 'provider' => 'bestbuy'],\n ['name' => \"Pro Evolution Soccer 2011 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Bend it like never before\", 'description_long' => \"Bend it like never before\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-evolution-soccer-2011-pre-owned-playstation-3/2078917.p?id=1218308697135&skuId=2078917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078917_sa.jpg\"}', 'upc' => '799007778288', 'provider' => 'bestbuy'],\n ['name' => \"Theme Park - PRE-OWNED - Nintendo DS\", 'description_short' => \"Hit the park and plan it all out\", 'description_long' => \"Hit the park and plan it all out\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theme-park-pre-owned-nintendo-ds/2078935.p?id=1218308696510&skuId=2078935&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078935', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078935_sa.jpg\"}', 'upc' => '799007778301', 'provider' => 'bestbuy'],\n ['name' => \"Inches & Miles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inches-miles-cd/2078940.p?id=90271&skuId=2078940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078940_sa.jpg\"}', 'upc' => '018964011024', 'provider' => 'bestbuy'],\n ['name' => \"Sonic Colors - PRE-OWNED - Nintendo DS\", 'description_short' => \"Let your true heroic colors shine\", 'description_long' => \"Let your true heroic colors shine\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonic-colors-pre-owned-nintendo-ds/2078944.p?id=1218308703335&skuId=2078944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078944_sa.jpg\"}', 'upc' => '799007778318', 'provider' => 'bestbuy'],\n ['name' => \"Monsters vs. Aliens - PRE-OWNED - Nintendo DS\", 'description_short' => \"In a battle for the planet&#039;s future, who will triumph?\", 'description_long' => \"In a battle for the planet&#039;s future, who will triumph?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monsters-vs-aliens-pre-owned-nintendo-ds/2078971.p?id=1218308697323&skuId=2078971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2078971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2078\\/2078971_sa.jpg\"}', 'upc' => '799007778349', 'provider' => 'bestbuy'],\n ['name' => \"EnerPlex - Jumpr Flashlight External Battery - Orange/Gray\", 'description_short' => \"ENERPLEX Jumpr Flashlight External Battery: Compatible with most USB-chargeable devices; 2800 mAh capacity; 1-amp USB output; integrated flashlight\", 'description_long' => \"ENERPLEX Jumpr Flashlight External Battery: Compatible with most USB-chargeable devices; 2800 mAh capacity; 1-amp USB output; integrated flashlight\", 'price' => 19.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/enerplex-jumpr-flashlight-external-battery-orange-gray/2079022.p?id=1219524349825&skuId=2079022', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079022_sa.jpg\"}', 'upc' => '811665020308', 'provider' => 'bestbuy'],\n ['name' => \"Marvel Superhero Squad: The Infinity Gauntlet - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Can you find the stones before they fall into the wrong hands?\", 'description_long' => \"Can you find the stones before they fall into the wrong hands?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marvel-superhero-squad-the-infinity-gauntlet-pre-owned-nintendo-wii/2079033.p?id=1218308702197&skuId=2079033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079033_sa.jpg\"}', 'upc' => '799007778394', 'provider' => 'bestbuy'],\n ['name' => \"King of Fighters XII - PRE-OWNED - Xbox 360\", 'description_short' => \"Do you have the skills it takes to be king?\", 'description_long' => \"Do you have the skills it takes to be king?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-fighters-xii-pre-owned-xbox-360/2079051.p?id=1218308700570&skuId=2079051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079051_sa.jpg\"}', 'upc' => '799007778417', 'provider' => 'bestbuy'],\n ['name' => \"Asus - 19.5\\\" HD Touch-Screen Monitor - Black\", 'description_short' => \"ENERGY STAR Certified\nASUS 19.5&quot; HD Touch-Screen Monitor: 5 ms response time; 100,000,000:1 contrast ratio; 250 nits brightness; 1600 x 900 resolution\", 'description_long' => \"ENERGY STAR Certified\nASUS 19.5&quot; HD Touch-Screen Monitor: 5 ms response time; 100,000,000:1 contrast ratio; 250 nits brightness; 1600 x 900 resolution\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/asus-19-5-hd-touch-screen-monitor-black/2079068.p?id=1219524349838&skuId=2079068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079068_sa.jpg\"}', 'upc' => '886227624775', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: Decepticons - PRE-OWNED - Nintendo DS\", 'description_short' => \"Are you strong enough to lead the Decepticons and take over the planet?\", 'description_long' => \"Are you strong enough to lead the Decepticons and take over the planet?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-decepticons-pre-owned-nintendo-ds/2079088.p?id=1218308698548&skuId=2079088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079088_sa.jpg\"}', 'upc' => '799007778431', 'provider' => 'bestbuy'],\n ['name' => \"Kinect Joy Ride - PRE-OWNED - Xbox 360\", 'description_short' => \"Driving a car takes more than just your fingertips\", 'description_long' => \"Driving a car takes more than just your fingertips\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kinect-joy-ride-pre-owned-xbox-360/2079121.p?id=1218308705343&skuId=2079121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079121_sa.jpg\"}', 'upc' => '799007778479', 'provider' => 'bestbuy'],\n ['name' => \"Who Wants to Be a Millionaire - PRE-OWNED - Nintendo DS\", 'description_short' => \"Go for the million &#8212; just choose the right final answer\", 'description_long' => \"Go for the million &#8212; just choose the right final answer\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-wants-to-be-a-millionaire-pre-owned-nintendo-ds/2079149.p?id=1218308702195&skuId=2079149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079149_sa.jpg\"}', 'upc' => '799007778486', 'provider' => 'bestbuy'],\n ['name' => \"Adrenalin Misfits - PRE-OWNED - Xbox 360\", 'description_short' => \"Body boarding just took on a whole new meaning\", 'description_long' => \"Body boarding just took on a whole new meaning\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adrenalin-misfits-pre-owned-xbox-360/2079158.p?id=1218308702074&skuId=2079158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079158_sa.jpg\"}', 'upc' => '799007778493', 'provider' => 'bestbuy'],\n ['name' => \"Disney Epic Mickey - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Can you escape the evil Cartoon Wasteland?\", 'description_long' => \"Can you escape the evil Cartoon Wasteland?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-epic-mickey-pre-owned-nintendo-wii/2079167.p?id=1218308705785&skuId=2079167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079167_sa.jpg\"}', 'upc' => '799007778509', 'provider' => 'bestbuy'],\n ['name' => \"Star Wars: The Force Unleashed II - PRE-OWNED - Nintendo DS\", 'description_short' => \"Master the ways of the Force\", 'description_long' => \"Master the ways of the Force\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-wars-the-force-unleashed-ii-pre-owned-nintendo-ds/2079176.p?id=1218308706931&skuId=2079176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079176_sa.jpg\"}', 'upc' => '799007778516', 'provider' => 'bestbuy'],\n ['name' => \"Skate 3 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Build an awesome skate team and become a skating mogul\", 'description_long' => \"Build an awesome skate team and become a skating mogul\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skate-3-pre-owned-playstation-3/2079291.p?id=1218308700151&skuId=2079291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079291_sa.jpg\"}', 'upc' => '799007778622', 'provider' => 'bestbuy'],\n ['name' => \"Cabela's Dangerous Hunts 2009 - PRE-OWNED - Xbox 360\", 'description_short' => \"Hunt or be hunted\", 'description_long' => \"Hunt or be hunted\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabelas-dangerous-hunts-2009-pre-owned-xbox-360/2079307.p?id=1218308705345&skuId=2079307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079307_sa.jpg\"}', 'upc' => '799007778639', 'provider' => 'bestbuy'],\n ['name' => \"TRON: Evolution — PRE-OWNED - Xbox 360\", 'description_short' => \"Return to the world of TRON\", 'description_long' => \"Return to the world of TRON\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-evolution-pre-owned-xbox-360/2079334.p?id=1218308704828&skuId=2079334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079334_sa.jpg\"}', 'upc' => '799007769781', 'provider' => 'bestbuy'],\n ['name' => \"Rebel Voices: Songs of the Industrial Workers... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebel-voices-songs-of-the-industrial-workers-various-cd/2079351.p?id=96166&skuId=2079351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079351_sa.jpg\"}', 'upc' => '018964048426', 'provider' => 'bestbuy'],\n ['name' => \"TRON: Evolution - PRE-OWNED - PlayStation 3\", 'description_short' => \"Return to the world of TRON\", 'description_long' => \"Return to the world of TRON\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-evolution-pre-owned-playstation-3/2079352.p?id=1218308701494&skuId=2079352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079352_sa.jpg\"}', 'upc' => '799007769804', 'provider' => 'bestbuy'],\n ['name' => \"Hot Wheels: Battle Force 5 - PRE-OWNED - Nintendo DS\", 'description_short' => \"Defend the Earth in your battle-ready vehicle\", 'description_long' => \"Defend the Earth in your battle-ready vehicle\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-wheels-battle-force-5-pre-owned-nintendo-ds/2079398.p?id=1218308701269&skuId=2079398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079398_sa.jpg\"}', 'upc' => '799007769835', 'provider' => 'bestbuy'],\n ['name' => \"Megamind: The Blue Defender - PRE-OWNED - Nintendo DS\", 'description_short' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'description_long' => \"Be bad, blue and brilliant on a mega mission to save the city\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/megamind-the-blue-defender-pre-owned-nintendo-ds/2079412.p?id=1218308706608&skuId=2079412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079412_sa.jpg\"}', 'upc' => '799007769859', 'provider' => 'bestbuy'],\n ['name' => \"Spider-Man: Web of Shadows - PRE-OWNED - Nintendo DS\", 'description_short' => \"Which path will you choose as you repel an alien invasion?\", 'description_long' => \"Which path will you choose as you repel an alien invasion?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spider-man-web-of-shadows-pre-owned-nintendo-ds/2079421.p?id=1218308703333&skuId=2079421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079421_sa.jpg\"}', 'upc' => '799007769866', 'provider' => 'bestbuy'],\n ['name' => \"Game Party: In Motion - PRE-OWNED - Xbox 360\", 'description_short' => \"Let the games begin\", 'description_long' => \"Let the games begin\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/game-party-in-motion-pre-owned-xbox-360/2079476.p?id=1218308701558&skuId=2079476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079476_sa.jpg\"}', 'upc' => '799007769903', 'provider' => 'bestbuy'],\n ['name' => \"Mario vs. Donkey Kong: Mini-Land Mayhem - PRE-OWNED - Nintendo DS\", 'description_short' => \"Help mini heroes conquer an ape gone awry and save the day\", 'description_long' => \"Help mini heroes conquer an ape gone awry and save the day\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mario-vs-donkey-kong-mini-land-mayhem-pre-owned-nintendo-ds/2079485.p?id=1218308697714&skuId=2079485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079485_sa.jpg\"}', 'upc' => '799007769910', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Music Fest - PRE-OWNED - Nintendo DS\", 'description_short' => \"Put on an awesome concert at a premier music fest\", 'description_long' => \"Put on an awesome concert at a premier music fest\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-music-fest-pre-owned-nintendo-ds/2079555.p?id=1218308701176&skuId=2079555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079555_sa.jpg\"}', 'upc' => '799007769972', 'provider' => 'bestbuy'],\n ['name' => \"Mind Quiz: Your Brain Coach — PRE-OWNED - Nintendo DS\", 'description_short' => \"Bump up your brain power\", 'description_long' => \"Bump up your brain power\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mind-quiz-your-brain-coach-pre-owned-nintendo-ds/2079591.p?id=1218308703587&skuId=2079591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079591.jpg\"}', 'upc' => '799007770015', 'provider' => 'bestbuy'],\n ['name' => \"Dance Masters - PRE-OWNED - Xbox 360\", 'description_short' => \"Dominate the dance floor\", 'description_long' => \"Dominate the dance floor\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-masters-pre-owned-xbox-360/2079616.p?id=1218308696703&skuId=2079616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079616_sa.jpg\"}', 'upc' => '799007770039', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Interior Designer - PRE-OWNED - Nintendo DS\", 'description_short' => \"Demonstrate your designing vision\", 'description_long' => \"Demonstrate your designing vision\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-interior-designer-pre-owned-nintendo-ds/2079625.p?id=1218308697713&skuId=2079625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2079625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2079\\/2079625_sa.jpg\"}', 'upc' => '799007770046', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless N300 Wi-Fi Range Extender with Ethernet Port - White\", 'description_short' => \"TP-LINK Wireless N300 Wi-Fi Range Extender with Ethernet Port: Compatible with 802.11b/g/n wireless standards; up to 300 Mbps; 64-/128-/152-bit WEP encryption; WPA-PAK/WPA2-PSK encryption; plug-and-play\", 'description_long' => \"TP-LINK Wireless N300 Wi-Fi Range Extender with Ethernet Port: Compatible with 802.11b/g/n wireless standards; up to 300 Mbps; 64-/128-/152-bit WEP encryption; WPA-PAK/WPA2-PSK encryption; plug-and-play\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-n300-wi-fi-range-extender-with-ethernet-port-white/2080012.p?id=1219528556820&skuId=2080012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080012_sa.jpg\"}', 'upc' => '845973070687', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless AC1200 Dual-Band USB Adapter - Black\", 'description_short' => \"TP-LINK Wireless AC1200 Dual-Band USB Adapter: Compatible with 802.11a/b/g/n/ac wireless standards; maximum speed up to 867 Mbps at 5.0GHz and 300 Mbps at 2.4GHz; WPS encryption\", 'description_long' => \"TP-LINK Wireless AC1200 Dual-Band USB Adapter: Compatible with 802.11a/b/g/n/ac wireless standards; maximum speed up to 867 Mbps at 5.0GHz and 300 Mbps at 2.4GHz; WPS encryption\", 'price' => 39.99, 'sale_price' => 37.99, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-ac1200-dual-band-usb-adapter-black/2080021.p?id=1219528552212&skuId=2080021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1311\\/1311706803\\/1311706803_sa.jpg\"}', 'upc' => '845973050863', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - 8-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch - Gray\", 'description_short' => \"TP-LINK 8-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch: Wired; provides a network connection for up to 8 devices; port- and tag-based QoS (Quality of Service); port-based, tag-based and MTU VLAN; 10/100/1000 Mbps Gigabit Ethernet\", 'description_long' => \"TP-LINK 8-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch: Wired; provides a network connection for up to 8 devices; port- and tag-based QoS (Quality of Service); port-based, tag-based and MTU VLAN; 10/100/1000 Mbps Gigabit Ethernet\", 'price' => 39.99, 'sale_price' => 32.99, 'url' => 'http://www.bestbuy.com/site/tp-link-8-port-10-100-1000-mbps-gigabit-smart-ethernet-metal-switch-gray/2080049.p?id=1219528551184&skuId=2080049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080049_sa.jpg\"}', 'upc' => '845973021856', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - 8-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch - Gray\", 'description_short' => \"TP-LINK 8-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch: Wired; provides high-speed data processing with QoS (Quality of Service) and nonblocking switching architecture; up to 2000 Mbps full duplex bandwidth; plug-and-play installation\", 'description_long' => \"TP-LINK 8-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch: Wired; provides high-speed data processing with QoS (Quality of Service) and nonblocking switching architecture; up to 2000 Mbps full duplex bandwidth; plug-and-play installation\", 'price' => 29.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/tp-link-8-port-10-100-1000-mbps-gigabit-ethernet-metal-switch-gray/2080085.p?id=1219528553599&skuId=2080085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080085_sa.jpg\"}', 'upc' => '845973021153', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless AC750 Dual-Band Gigabit Wireless Router - Black\", 'description_short' => \"TP-LINK Wireless AC750 Dual-Band Gigabit Wireless Router: 733 Mbps total available bandwidth; parental control; guest network access; SPI and NAT firewall; WPA-PSK/WPA2-PSK encryptions; one-touch WPA wireless security; supports 802.11ac wireless standard\", 'description_long' => \"TP-LINK Wireless AC750 Dual-Band Gigabit Wireless Router: 733 Mbps total available bandwidth; parental control; guest network access; SPI and NAT firewall; WPA-PSK/WPA2-PSK encryptions; one-touch WPA wireless security; supports 802.11ac wireless standard\", 'price' => 69.99, 'sale_price' => 52.99, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-ac750-dual-band-gigabit-wireless-router-black/2080094.p?id=1219528552411&skuId=2080094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080094_sa.jpg\"}', 'upc' => '845973050962', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless N600 Dual-Band Gigabit Router - Black\", 'description_short' => \"TP-LINK Wireless N600 Dual-Band Gigabit Router: 600 Mbps total available bandwidth; WAN-to-LAN throughput of over 800 Mbps; guest network access; WPS button; parental controls; WEP and WPA encryption; built-in print server; 5.0GHz and 2.4GHz frequencies\", 'description_long' => \"TP-LINK Wireless N600 Dual-Band Gigabit Router: 600 Mbps total available bandwidth; WAN-to-LAN throughput of over 800 Mbps; guest network access; WPS button; parental controls; WEP and WPA encryption; built-in print server; 5.0GHz and 2.4GHz frequencies\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-n600-dual-band-gigabit-router-black/2080109.p?id=1219528554721&skuId=2080109', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080109_sa.jpg\"}', 'upc' => '845973070007', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless AC1750 Dual-Band Gigabit Wireless Router - White\", 'description_short' => \"TP-LINK Wireless AC1750 Dual-Band Gigabit Wireless Router: Up to 1300 Mbps + 450 Mbps data transfer rates on simultaneous 5.0GHz and 2.4GHz bands; WEP, WPA/WPA2, WPA-PSK/WPA2-PSK encryption; 4 Gigabit Ethernet ports; beamforming technology\", 'description_long' => \"TP-LINK Wireless AC1750 Dual-Band Gigabit Wireless Router: Up to 1300 Mbps + 450 Mbps data transfer rates on simultaneous 5.0GHz and 2.4GHz bands; WEP, WPA/WPA2, WPA-PSK/WPA2-PSK encryption; 4 Gigabit Ethernet ports; beamforming technology\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-ac1750-dual-band-gigabit-wireless-router-white/2080118.p?id=1219528551182&skuId=2080118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080118_sa.jpg\"}', 'upc' => '845973080013', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless N900 Dual-Band PCI Express Adapter - Multi\", 'description_short' => \"TP-LINK Wireless N900 Dual-Band PCI Express Adapter: Compatible with 802.11a/b/g/n/ac wireless standards; 2.4GHz and 5.0GHz bands; up to 450 Mbps throughput; 64/128-bit WEP, WPA/WPA2 and WPA-PSK/WPA2-PSK encryptions\", 'description_long' => \"TP-LINK Wireless N900 Dual-Band PCI Express Adapter: Compatible with 802.11a/b/g/n/ac wireless standards; 2.4GHz and 5.0GHz bands; up to 450 Mbps throughput; 64/128-bit WEP, WPA/WPA2 and WPA-PSK/WPA2-PSK encryptions\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-n900-dual-band-pci-express-adapter-multi/2080127.p?id=1219528553469&skuId=2080127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080127_sa.jpg\"}', 'upc' => '845973050603', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Powerline AV500 Nano Adapter Starter Kit - White\", 'description_short' => \"Compatible with HomePlug AV, 802.3 and 802.3u Internet standards; data transfer rate of up to 500 Mbps; 128-bit AES encryption; plug-and-play setup\", 'description_long' => \"Compatible with HomePlug AV, 802.3 and 802.3u Internet standards; data transfer rate of up to 500 Mbps; 128-bit AES encryption; plug-and-play setup\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-powerline-av500-nano-adapter-starter-kit-white/2080136.p?id=1219528554388&skuId=2080136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080136_sa.jpg\"}', 'upc' => '845973032029', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - 8-Port Gigabit Ethernet Switch with 4 Port PoE - Black/Gray\", 'description_short' => \"TP-LINK 8-Port Gigabit Ethernet Switch with 4 Port PoE: Connects up to 8 devices on a shared network; 10/100/1000 Ethernet connection with 4 PoE (Power over Ethernet) ports; up to 1 Gbps data transfer speeds; simple installation\", 'description_long' => \"TP-LINK 8-Port Gigabit Ethernet Switch with 4 Port PoE: Connects up to 8 devices on a shared network; 10/100/1000 Ethernet connection with 4 PoE (Power over Ethernet) ports; up to 1 Gbps data transfer speeds; simple installation\", 'price' => 89.99, 'sale_price' => 78.99, 'url' => 'http://www.bestbuy.com/site/tp-link-8-port-gigabit-ethernet-switch-with-4-port-poe-black-gray/2080145.p?id=1219528551191&skuId=2080145', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080145_sa.jpg\"}', 'upc' => '845973021160', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Powerline AV200 Nano Adapter Starter Kit - White\", 'description_short' => \"TP-LINK Powerline AV200 Nano Adapter Starter Kit: Compatible with HomePlug AV, IEEE802.3 and IEEE802.3u Internet standards; data transfer rate of up to 200 Mbps; 128-bit AES encryption; plug-and-play operation\", 'description_long' => \"TP-LINK Powerline AV200 Nano Adapter Starter Kit: Compatible with HomePlug AV, IEEE802.3 and IEEE802.3u Internet standards; data transfer rate of up to 200 Mbps; 128-bit AES encryption; plug-and-play operation\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-powerline-av200-nano-adapter-starter-kit-white/2080154.p?id=1219528556747&skuId=2080154', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1307\\/1307824207\\/1307824207_sa.jpg\"}', 'upc' => '845973031961', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless AC750 Wall Plug Universal Wi-Fi Range Extender - White\", 'description_short' => \"TP-LINK Wireless AC750 Wall Plug Universal Wi-Fi Range Extender: Compatible with 802.11b/g/n and 802.11ac wireless standards; dual band; 64-/128-bit WEP encryption; WPA-PSK/WPA2-PSK encryption; plug-and-play operation\", 'description_long' => \"TP-LINK Wireless AC750 Wall Plug Universal Wi-Fi Range Extender: Compatible with 802.11b/g/n and 802.11ac wireless standards; dual band; 64-/128-bit WEP encryption; WPA-PSK/WPA2-PSK encryption; plug-and-play operation\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-ac750-wall-plug-universal-wi-fi-range-extender-white/2080172.p?id=1219528551189&skuId=2080172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080172_sa.jpg\"}', 'upc' => '845973071875', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - 5-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch - Black\", 'description_short' => \"TP-LINK 5-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch: Wired; provides high-speed data processing with QoS (Quality of Service) and nonblocking switching architecture; up to 2000 Mbps full duplex bandwidth; plug-and-play installation\", 'description_long' => \"TP-LINK 5-Port 10/100/1000 Mbps Gigabit Ethernet Metal Switch: Wired; provides high-speed data processing with QoS (Quality of Service) and nonblocking switching architecture; up to 2000 Mbps full duplex bandwidth; plug-and-play installation\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/tp-link-5-port-10-100-1000-mbps-gigabit-ethernet-metal-switch-black/2080181.p?id=1219528555732&skuId=2080181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080181_sa.jpg\"}', 'upc' => '845973021146', 'provider' => 'bestbuy'],\n ['name' => \"New Dimensions in Rail Culture - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-dimensions-in-rail-culture-cd/2080232.p?id=1469045&skuId=2080232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080232_sa.jpg\"}', 'upc' => '029667300124', 'provider' => 'bestbuy'],\n ['name' => \"Non Stop Non Stop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/non-stop-non-stop-cd/2080250.p?id=1459170&skuId=2080250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080250_sa.jpg\"}', 'upc' => '029667300520', 'provider' => 'bestbuy'],\n ['name' => \"Madagascar, Vol. 1: Traditional Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagascar-vol-1-traditional-music-cd-various/2080269.p?id=1459178&skuId=2080269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080269.jpg\"}', 'upc' => '029667301220', 'provider' => 'bestbuy'],\n ['name' => \"Madagasikara Two - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/madagasikara-two-cd-various/2080278.p?id=1576828&skuId=2080278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080278_sa.jpg\"}', 'upc' => '029667301329', 'provider' => 'bestbuy'],\n ['name' => \"Merengue: Up-Up-Tempo Dance Dynamite from the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merengue-up-up-tempo-dance-dynamite-from-the-cd/2080296.p?id=1459211&skuId=2080296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080296_sa.jpg\"}', 'upc' => '029667302029', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless N300 Wi-Fi Extender Starter + AV500 Powerline Adapter Kit - White\", 'description_short' => \"TP-LINK Wireless N300 Wi-Fi Extender Starter + AV500 Powerline Adapter Kit: Compatible with HomePlug AV, 802.3, WEP802.3u and 802.11b/g/n; up to 500 Mbps; WPA/WPA2, WPA-PSK/WPA2-PSK encryption; plug-and-play\", 'description_long' => \"TP-LINK Wireless N300 Wi-Fi Extender Starter + AV500 Powerline Adapter Kit: Compatible with HomePlug AV, 802.3, WEP802.3u and 802.11b/g/n; up to 500 Mbps; WPA/WPA2, WPA-PSK/WPA2-PSK encryption; plug-and-play\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-n300-wi-fi-extender-starter-av500-powerline-adapter-kit-white/2080319.p?id=1219528555613&skuId=2080319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080319_sa.jpg\"}', 'upc' => '845973032579', 'provider' => 'bestbuy'],\n ['name' => \"Abdel Aziz el Mubarak - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abdel-aziz-el-mubarak-cd/2080321.p?id=1576956&skuId=2080321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080321_sa.jpg\"}', 'upc' => '029667302326', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Mini Wireless N USB Adapter - Black\", 'description_short' => \"TP-LINK Mini Wireless N USB Adapter: Compatible with IEEE 802.11b, IEEE 802.11g and IEEE 802.11n wireless standards; up to 300 Mbps; WPA2 secure connection; supports Windows XP, Vista and 7; USB interface; quick and easy installation\", 'description_long' => \"TP-LINK Mini Wireless N USB Adapter: Compatible with IEEE 802.11b, IEEE 802.11g and IEEE 802.11n wireless standards; up to 300 Mbps; WPA2 secure connection; supports Windows XP, Vista and 7; USB interface; quick and easy installation\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-mini-wireless-n-usb-adapter-black/2080328.p?id=1219528553140&skuId=2080328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080328_sa.jpg\"}', 'upc' => '845973050696', 'provider' => 'bestbuy'],\n ['name' => \"Encuentros - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/encuentros-cd/2080330.p?id=1459175&skuId=2080330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080330_sa.jpg\"}', 'upc' => '029667302425', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - Wireless N300 Wi-Fi Range Extender with AC Passthrough - White\", 'description_short' => \"TP-LINK Wireless N300 Wi-Fi Range Extender with AC Passthrough: Compatible with 802.11b/g/n wireless standards; up to 300 Mbps; 64-/128-/152-bit WEP encryption; WPA-PSK/WPA2-PSK encryption; plug-and-play\", 'description_long' => \"TP-LINK Wireless N300 Wi-Fi Range Extender with AC Passthrough: Compatible with 802.11b/g/n wireless standards; up to 300 Mbps; 64-/128-/152-bit WEP encryption; WPA-PSK/WPA2-PSK encryption; plug-and-play\", 'price' => 39.99, 'sale_price' => 37.99, 'url' => 'http://www.bestbuy.com/site/tp-link-wireless-n300-wi-fi-range-extender-with-ac-passthrough-white/2080337.p?id=1219528553732&skuId=2080337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080337_sa.jpg\"}', 'upc' => '845973091873', 'provider' => 'bestbuy'],\n ['name' => \"TP-LINK - 5-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch - Gray\", 'description_short' => \"TP-LINK 5-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch: Provides simple network management for small or medium business networks with a port-based priority system; 10/100/1000 Mbps speeds\", 'description_long' => \"TP-LINK 5-Port 10/100/1000 Mbps Gigabit Smart Ethernet Metal Switch: Provides simple network management for small or medium business networks with a port-based priority system; 10/100/1000 Mbps speeds\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tp-link-5-port-10-100-1000-mbps-gigabit-smart-ethernet-metal-switch-gray/2080346.p?id=1219528556141&skuId=2080346', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080346_sa.jpg\"}', 'upc' => '845973022037', 'provider' => 'bestbuy'],\n ['name' => \"Music of Zanzibar: Taarab 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-zanzibar-taarab-2-cd/2080358.p?id=1501214&skuId=2080358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080358_sa.jpg\"}', 'upc' => '029667303323', 'provider' => 'bestbuy'],\n ['name' => \"Zambiance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zambiance-cd/2080385.p?id=1469046&skuId=2080385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080385_sa.jpg\"}', 'upc' => '029667303729', 'provider' => 'bestbuy'],\n ['name' => \"Taarab, Vol. 4: Music of Zanzibar - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taarab-vol-4-music-of-zanzibar-cd-various/2080410.p?id=1459132&skuId=2080410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080410_sa.jpg\"}', 'upc' => '029667304122', 'provider' => 'bestbuy'],\n ['name' => \"Jatigui - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jatigui-cd/2080429.p?id=1570259&skuId=2080429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080429_sa.jpg\"}', 'upc' => '029667304221', 'provider' => 'bestbuy'],\n ['name' => \"Art of Noise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-noise-cd/2080447.p?id=1459188&skuId=2080447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080447_sa.jpg\"}', 'upc' => '029667304528', 'provider' => 'bestbuy'],\n ['name' => \"Piny Ose Mer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piny-ose-mer-cd/2080456.p?id=1476949&skuId=2080456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080456_sa.jpg\"}', 'upc' => '029667304627', 'provider' => 'bestbuy'],\n ['name' => \"Golden Voices from the Silver Screen, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-voices-from-the-silver-screen-vol-2-cd-various/2080526.p?id=1459156&skuId=2080526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080526_sa.jpg\"}', 'upc' => '029667305624', 'provider' => 'bestbuy'],\n ['name' => \"Huaynos & Huaylas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/huaynos-huaylas-cd-various/2080606.p?id=1462621&skuId=2080606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080606_sa.jpg\"}', 'upc' => '029667306423', 'provider' => 'bestbuy'],\n ['name' => \"New Fugi Garbage - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-fugi-garbage-cd-various/2080624.p?id=1459117&skuId=2080624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080624_sa.jpg\"}', 'upc' => '029667306720', 'provider' => 'bestbuy'],\n ['name' => \"Jino La Pembe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jino-la-pembe-cd/2080679.p?id=1502696&skuId=2080679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080679_sa.jpg\"}', 'upc' => '029667307529', 'provider' => 'bestbuy'],\n ['name' => \"¡Saba Saba! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saba-saba-cd/2080697.p?id=1576904&skuId=2080697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080697_sa.jpg\"}', 'upc' => '029667307727', 'provider' => 'bestbuy'],\n ['name' => \"The Mighty Kings of Benga - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mighty-kings-of-benga-cd-various/2080704.p?id=1475376&skuId=2080704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080704_sa.jpg\"}', 'upc' => '029667307925', 'provider' => 'bestbuy'],\n ['name' => \"Cecile Kayirebwa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cecile-kayirebwa-cd/2080740.p?id=1459230&skuId=2080740&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080740', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080740_sa.jpg\"}', 'upc' => '029667308328', 'provider' => 'bestbuy'],\n ['name' => \"Mozambique, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mozambique-vol-1-cd-various/2080768.p?id=1464815&skuId=2080768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080768_sa.jpg\"}', 'upc' => '029667308625', 'provider' => 'bestbuy'],\n ['name' => \"Taking Care of Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taking-care-of-business-cd/2080946.p?id=1459191&skuId=2080946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080946_sa.jpg\"}', 'upc' => '029667209823', 'provider' => 'bestbuy'],\n ['name' => \"Dancing 'til Dawn - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-til-dawn-cd-various/2080964.p?id=1578247&skuId=2080964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080964_sa.jpg\"}', 'upc' => '029667210621', 'provider' => 'bestbuy'],\n ['name' => \"I Don't Want to Cry/Any Day Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-dont-want-to-cry-any-day-now-cd/2080973.p?id=1468982&skuId=2080973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2080973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2080\\/2080973_sa.jpg\"}', 'upc' => '029667210720', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Sound of Success - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-sound-of-success-cd-various/2081008.p?id=1459580&skuId=2081008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081008_sa.jpg\"}', 'upc' => '029667211222', 'provider' => 'bestbuy'],\n ['name' => \"Skinny Legs & All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skinny-legs-all-cd/2081017.p?id=2304924&skuId=2081017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081017_sa.jpg\"}', 'upc' => '029667211420', 'provider' => 'bestbuy'],\n ['name' => \"Lexar - Platinum II 8GB CompactFlash Memory Card - Black\", 'description_short' => \"Compatible with most UDMA CF and standard CF devices; 8GB capacity; up to 30MB/sec. data transfer rate\", 'description_long' => \"Compatible with most UDMA CF and standard CF devices; 8GB capacity; up to 30MB/sec. data transfer rate\", 'price' => 38.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lexar-platinum-ii-8gb-compactflash-memory-card-black/2081031.p?id=1218308267115&skuId=2081031', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1306\\/1306246178\\/1306246178_sa.jpg\"}', 'upc' => '650590161805', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Chi-Lites [Kent] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-chi-lites-kent-cd/2081035.p?id=1459125&skuId=2081035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081035_sa.jpg\"}', 'upc' => '029667291125', 'provider' => 'bestbuy'],\n ['name' => \"The Definitive Impressions [Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-definitive-impressions-reissue-cd/2081044.p?id=1459163&skuId=2081044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081044_sa.jpg\"}', 'upc' => '029667292320', 'provider' => 'bestbuy'],\n ['name' => \"Good Things - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-things-cd/2081053.p?id=1491006&skuId=2081053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081053_sa.jpg\"}', 'upc' => '029667293525', 'provider' => 'bestbuy'],\n ['name' => \"Austral Voices - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/austral-voices-various-cd/2081259.p?id=2177801&skuId=2081259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081259.jpg\"}', 'upc' => '022551002821', 'provider' => 'bestbuy'],\n ['name' => \"Nordisk Sang - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nordisk-sang-cd-various/2081268.p?id=93515&skuId=2081268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081268_sa.jpg\"}', 'upc' => '022551003125', 'provider' => 'bestbuy'],\n ['name' => \"From Ancient Worlds: For Harmonic Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-ancient-worlds-for-harmonic-piano-cd/2081277.p?id=2070039&skuId=2081277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081277.jpg\"}', 'upc' => '022551004221', 'provider' => 'bestbuy'],\n ['name' => \"MJQ - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mjq-cd/2081437.p?id=1562187&skuId=2081437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081437_sa.jpg\"}', 'upc' => '025218110129', 'provider' => 'bestbuy'],\n ['name' => \"All-Star Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-star-sessions-cd/2081446.p?id=63697&skuId=2081446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081446_sa.jpg\"}', 'upc' => '025218601429', 'provider' => 'bestbuy'],\n ['name' => \"The Billy Taylor Trio with Candido - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-billy-taylor-trio-with-candido-cd/2081455.p?id=71331&skuId=2081455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081455_sa.jpg\"}', 'upc' => '025218601528', 'provider' => 'bestbuy'],\n ['name' => \"New Jazz Conceptions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-jazz-conceptions-cd/2081464.p?id=261403&skuId=2081464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081464_sa.jpg\"}', 'upc' => '025218602525', 'provider' => 'bestbuy'],\n ['name' => \"Things Are Getting Better - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/things-are-getting-better-cd/2081473.p?id=293944&skuId=2081473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081473_sa.jpg\"}', 'upc' => '025218603225', 'provider' => 'bestbuy'],\n ['name' => \"The Kenny Drew Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kenny-drew-trio-cd/2081491.p?id=65819&skuId=2081491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081491_sa.jpg\"}', 'upc' => '025218606523', 'provider' => 'bestbuy'],\n ['name' => \"Taylor's Wailers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taylors-wailers-cd/2081534.p?id=71323&skuId=2081534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081534.jpg\"}', 'upc' => '025218609425', 'provider' => 'bestbuy'],\n ['name' => \"Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-cd/2081552.p?id=67286&skuId=2081552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081552_sa.jpg\"}', 'upc' => '025218609623', 'provider' => 'bestbuy'],\n ['name' => \"Thelonious in Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelonious-in-action-cd/2081561.p?id=69310&skuId=2081561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081561_sa.jpg\"}', 'upc' => '025218610322', 'provider' => 'bestbuy'],\n ['name' => \"Know What I Mean? [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/know-what-i-mean-ecd-cd/2081570.p?id=63549&skuId=2081570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081570_sa.jpg\"}', 'upc' => '025218610520', 'provider' => 'bestbuy'],\n ['name' => \"Kenny Dorham Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kenny-dorham-quintet-cd/2081589.p?id=65753&skuId=2081589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081589_sa.jpg\"}', 'upc' => '025218611329', 'provider' => 'bestbuy'],\n ['name' => \"The New Scene of King Curtis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-scene-of-king-curtis-cd/2081712.p?id=79489&skuId=2081712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081712_sa.jpg\"}', 'upc' => '025218619820', 'provider' => 'bestbuy'],\n ['name' => \"Groovin' with Golson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groovin-with-golson-cd/2081749.p?id=66733&skuId=2081749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081749_sa.jpg\"}', 'upc' => '025218622622', 'provider' => 'bestbuy'],\n ['name' => \"Meet Oliver Nelson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/meet-oliver-nelson-cd/2081758.p?id=69563&skuId=2081758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081758_sa.jpg\"}', 'upc' => '025218622721', 'provider' => 'bestbuy'],\n ['name' => \"East - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-cd/2081801.p?id=1543913&skuId=2081801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081801_sa.jpg\"}', 'upc' => '025218624824', 'provider' => 'bestbuy'],\n ['name' => \"At Shelly's Manne-Hole - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-shellys-manne-hole-cd/2081829.p?id=3520409&skuId=2081829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081829_sa.jpg\"}', 'upc' => '025218626323', 'provider' => 'bestbuy'],\n ['name' => \"The Newborn Touch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-newborn-touch-cd/2081838.p?id=69603&skuId=2081838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081838_sa.jpg\"}', 'upc' => '025218627023', 'provider' => 'bestbuy'],\n ['name' => \"Horn Culture - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/horn-culture-cd/2081883.p?id=70437&skuId=2081883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081883_sa.jpg\"}', 'upc' => '025218631426', 'provider' => 'bestbuy'],\n ['name' => \"Sonny Boy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonny-boy-cd/2081963.p?id=70451&skuId=2081963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2081963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2081\\/2081963_sa.jpg\"}', 'upc' => '025218634823', 'provider' => 'bestbuy'],\n ['name' => \"Fusion! Wes Montgomery with Strings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fusion-wes-montgomery-with-strings-cd/2082016.p?id=69330&skuId=2082016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082016_sa.jpg\"}', 'upc' => '025218636827', 'provider' => 'bestbuy'],\n ['name' => \"At the Renaissance [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-renaissance-bonus-tracks-cd/2082052.p?id=71980&skuId=2082052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082052_sa.jpg\"}', 'upc' => '025218639026', 'provider' => 'bestbuy'],\n ['name' => \"The Outer View - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-outer-view-cd/2082178.p?id=70537&skuId=2082178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082178.jpg\"}', 'upc' => '025218661621', 'provider' => 'bestbuy'],\n ['name' => \"Big Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-sound-cd/2082212.p?id=63698&skuId=2082212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082212_sa.jpg\"}', 'upc' => '025218665124', 'provider' => 'bestbuy'],\n ['name' => \"Mal/2 Prestige 7111 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mal-2-prestige-7111-cd/2082230.p?id=71794&skuId=2082230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082230_sa.jpg\"}', 'upc' => '025218667128', 'provider' => 'bestbuy'],\n ['name' => \"If I'm Lucky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-im-lucky-cd/2082258.p?id=70989&skuId=2082258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082258_sa.jpg\"}', 'upc' => '025218668323', 'provider' => 'bestbuy'],\n ['name' => \"Be-Bop Revisited - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/be-bop-revisited-cd/2082276.p?id=69010&skuId=2082276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082276_sa.jpg\"}', 'upc' => '025218671026', 'provider' => 'bestbuy'],\n ['name' => \"For Real! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-real-cd/2082294.p?id=67252&skuId=2082294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082294_sa.jpg\"}', 'upc' => '025218671323', 'provider' => 'bestbuy'],\n ['name' => \"At the Manne-Hole, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-manne-hole-vol-2-cd/2082310.p?id=68754&skuId=2082310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082310_sa.jpg\"}', 'upc' => '025218671521', 'provider' => 'bestbuy'],\n ['name' => \"Plays and Plays and Plays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-and-plays-and-plays-cd/2082329.p?id=64629&skuId=2082329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082329_sa.jpg\"}', 'upc' => '025218671620', 'provider' => 'bestbuy'],\n ['name' => \"The Pianist - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-pianist-cd/2082338.p?id=65978&skuId=2082338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082338_sa.jpg\"}', 'upc' => '025218671729', 'provider' => 'bestbuy'],\n ['name' => \"Cross-Currents - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-currents-cd/2082347.p?id=66128&skuId=2082347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082347_sa.jpg\"}', 'upc' => '025218671828', 'provider' => 'bestbuy'],\n ['name' => \"Tiptoe Tapdance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tiptoe-tapdance-cd/2082356.p?id=68057&skuId=2082356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082356_sa.jpg\"}', 'upc' => '025218671927', 'provider' => 'bestbuy'],\n ['name' => \"Trident - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trident-cd/2082365.p?id=71613&skuId=2082365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082365_sa.jpg\"}', 'upc' => '025218672023', 'provider' => 'bestbuy'],\n ['name' => \"The Centaur and the Phoenix - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-centaur-and-the-phoenix-cd/2082374.p?id=68439&skuId=2082374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082374_sa.jpg\"}', 'upc' => '025218672122', 'provider' => 'bestbuy'],\n ['name' => \"Bobby Timmons Trio in Person: Recorded Live... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bobby-timmons-trio-in-person-recorded-live-cd/2082383.p?id=71435&skuId=2082383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082383.jpg\"}', 'upc' => '025218636421', 'provider' => 'bestbuy'],\n ['name' => \"Groove Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groove-blues-cd/2082392.p?id=63696&skuId=2082392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082392_sa.jpg\"}', 'upc' => '025218672320', 'provider' => 'bestbuy'],\n ['name' => \"Cables' Vision - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cables-vision-cd/2082409.p?id=64779&skuId=2082409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082409_sa.jpg\"}', 'upc' => '025218672528', 'provider' => 'bestbuy'],\n ['name' => \"Born to Be Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-be-blue-cd/2082427.p?id=67637&skuId=2082427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082427_sa.jpg\"}', 'upc' => '025218673426', 'provider' => 'bestbuy'],\n ['name' => \"The Tokyo Recital - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tokyo-recital-cd/2082445.p?id=66369&skuId=2082445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082445_sa.jpg\"}', 'upc' => '025218673723', 'provider' => 'bestbuy'],\n ['name' => \"Oscar Peterson & Harry Edison - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oscar-peterson-harry-edison-cd/2082454.p?id=69992&skuId=2082454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082454_sa.jpg\"}', 'upc' => '025218673822', 'provider' => 'bestbuy'],\n ['name' => \"The Big Band, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-band-vol-1-cd/2082472.p?id=67766&skuId=2082472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082472.jpg\"}', 'upc' => '025218674027', 'provider' => 'bestbuy'],\n ['name' => \"The Alternate Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-alternate-blues-cd/2082515.p?id=66698&skuId=2082515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082515_sa.jpg\"}', 'upc' => '025218674423', 'provider' => 'bestbuy'],\n ['name' => \"Things Are Getting Better All the Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/things-are-getting-better-all-the-time-cd/2082524.p?id=68018&skuId=2082524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082524_sa.jpg\"}', 'upc' => '025218674522', 'provider' => 'bestbuy'],\n ['name' => \"Music to Listen to Barney Kessel By - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-to-listen-to-barney-kessel-by-cd/2082533.p?id=68203&skuId=2082533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082533_sa.jpg\"}', 'upc' => '025218674621', 'provider' => 'bestbuy'],\n ['name' => \"Re: Person I Knew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/re-person-i-knew-cd/2082560.p?id=66111&skuId=2082560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082560_sa.jpg\"}', 'upc' => '025218674928', 'provider' => 'bestbuy'],\n ['name' => \"Inside Straight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inside-straight-cd/2082579.p?id=63547&skuId=2082579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082579_sa.jpg\"}', 'upc' => '025218675024', 'provider' => 'bestbuy'],\n ['name' => \"Our Delights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-delights-cd/2082597.p?id=66371&skuId=2082597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082597_sa.jpg\"}', 'upc' => '025218675222', 'provider' => 'bestbuy'],\n ['name' => \"Third Plane - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-plane-cd/2082604.p?id=64890&skuId=2082604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082604_sa.jpg\"}', 'upc' => '025218675420', 'provider' => 'bestbuy'],\n ['name' => \"The Three Faces of Yusef Lateef - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-three-faces-of-yusef-lateef-cd/2082640.p?id=68440&skuId=2082640&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082640', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082640.jpg\"}', 'upc' => '025218675925', 'provider' => 'bestbuy'],\n ['name' => \"I Will Say Goodbye - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-will-say-goodbye-cd/2082668.p?id=66102&skuId=2082668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082668.jpg\"}', 'upc' => '025218676120', 'provider' => 'bestbuy'],\n ['name' => \"Primo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/primo-cd/2082677.p?id=1535032&skuId=2082677&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082677', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082677.jpg\"}', 'upc' => '025218676229', 'provider' => 'bestbuy'],\n ['name' => \"Multiple - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/multiple-cd/2082686.p?id=1535030&skuId=2082686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082686_sa.jpg\"}', 'upc' => '025218776325', 'provider' => 'bestbuy'],\n ['name' => \"The Panther! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-panther-cd/2082757.p?id=66847&skuId=2082757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082757_sa.jpg\"}', 'upc' => '025218677028', 'provider' => 'bestbuy'],\n ['name' => \"Relaxed Piano Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relaxed-piano-moods-cd/2082819.p?id=70727&skuId=2082819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082819_sa.jpg\"}', 'upc' => '025218170222', 'provider' => 'bestbuy'],\n ['name' => \"For Lady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-lady-cd/2082837.p?id=72263&skuId=2082837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082837_sa.jpg\"}', 'upc' => '025218171625', 'provider' => 'bestbuy'],\n ['name' => \"Let's Swing! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-swing-cd/2082864.p?id=68004&skuId=2082864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082864_sa.jpg\"}', 'upc' => '025218172028', 'provider' => 'bestbuy'],\n ['name' => \"Debut Rarities, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/debut-rarities-vol-1-cd/2082891.p?id=69156&skuId=2082891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2082891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2082\\/2082891.jpg\"}', 'upc' => '025218180726', 'provider' => 'bestbuy'],\n ['name' => \"Afro-American Sketches - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afro-american-sketches-cd/2083015.p?id=69568&skuId=2083015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083015_sa.jpg\"}', 'upc' => '025218181921', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Sahara - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-sahara-cd/2083024.p?id=63504&skuId=2083024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083024_sa.jpg\"}', 'upc' => '025218182027', 'provider' => 'bestbuy'],\n ['name' => \"Firebirds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firebirds-cd/2083033.p?id=68426&skuId=2083033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083033_sa.jpg\"}', 'upc' => '025218182225', 'provider' => 'bestbuy'],\n ['name' => \"22 Great Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-great-hits-cd/2083097.p?id=91778&skuId=2083097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083097_sa.jpg\"}', 'upc' => '014921703520', 'provider' => 'bestbuy'],\n ['name' => \"IV [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iv-digdownload-cd/2083499.p?id=86424&skuId=2083499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083499.jpg\"}', 'upc' => '060768971622', 'provider' => 'bestbuy'],\n ['name' => \"Affordable Art - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/affordable-art-cd/2083649.p?id=109730&skuId=2083649&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083649', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083649_sa.jpg\"}', 'upc' => '092941100222', 'provider' => 'bestbuy'],\n ['name' => \"1000 Volts of Stax - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1000-volts-of-stax-cd-various/2083818.p?id=312890&skuId=2083818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083818.jpg\"}', 'upc' => '029667064224', 'provider' => 'bestbuy'],\n ['name' => \"3000 Volts of Stax - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3000-volts-of-stax-various-cd/2083872.p?id=131092&skuId=2083872&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083872', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083872_sa.jpg\"}', 'upc' => '029667910224', 'provider' => 'bestbuy'],\n ['name' => \"A Soulful Experience - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-soulful-experience-cd/2083890.p?id=72749&skuId=2083890&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083890', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083890_sa.jpg\"}', 'upc' => '025218850728', 'provider' => 'bestbuy'],\n ['name' => \"Walkin' the Back Streets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walkin-the-back-streets-cd/2083907.p?id=89382&skuId=2083907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083907_sa.jpg\"}', 'upc' => '025218851428', 'provider' => 'bestbuy'],\n ['name' => \"Dramatically Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dramatically-yours-cd/2083916.p?id=80921&skuId=2083916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083916_sa.jpg\"}', 'upc' => '025218852326', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Temprees - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-temprees-cd/2083925.p?id=101374&skuId=2083925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083925_sa.jpg\"}', 'upc' => '025218852425', 'provider' => 'bestbuy'],\n ['name' => \"Grits Ain't Groceries [Stax] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grits-aint-groceries-stax-cd/2083934.p?id=89371&skuId=2083934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083934_sa.jpg\"}', 'upc' => '025218852920', 'provider' => 'bestbuy'],\n ['name' => \"The Lost Session - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-session-cd/2083943.p?id=87895&skuId=2083943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083943_sa.jpg\"}', 'upc' => '025218853422', 'provider' => 'bestbuy'],\n ['name' => \"Starting All Over Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starting-all-over-again-cd/2083961.p?id=91348&skuId=2083961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2083961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2083\\/2083961_sa.jpg\"}', 'upc' => '025218857420', 'provider' => 'bestbuy'],\n ['name' => \"Stay Out of the Kitchen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stay-out-of-the-kitchen-cd/2084005.p?id=87148&skuId=2084005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084005_sa.jpg\"}', 'upc' => '025218857826', 'provider' => 'bestbuy'],\n ['name' => \"I'll Run Your Hurt Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-run-your-hurt-away-cd/2084014.p?id=87201&skuId=2084014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084014.jpg\"}', 'upc' => '025218858021', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Staple Singers [Stax] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-staple-singers-stax-cd/2084023.p?id=100076&skuId=2084023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084023_sa.jpg\"}', 'upc' => '025218300728', 'provider' => 'bestbuy'],\n ['name' => \"Wattstax: The Living Word (Concert Music from... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wattstax-the-living-word-concert-music-from-cd-original-soundtrack/2084041.p?id=103663&skuId=2084041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084041_sa.jpg\"}', 'upc' => '025218887229', 'provider' => 'bestbuy'],\n ['name' => \"Straight Horn Of Steve Lacy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-horn-of-steve-lacy-cd/2084103.p?id=1393705&skuId=2084103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084103.jpg\"}', 'upc' => '031397900727', 'provider' => 'bestbuy'],\n ['name' => \"In New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-new-york-cd/2084112.p?id=85660&skuId=2084112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084112_sa.jpg\"}', 'upc' => '708857901029', 'provider' => 'bestbuy'],\n ['name' => \"Big Brass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-brass-cd/2084121.p?id=2390084&skuId=2084121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084121.jpg\"}', 'upc' => '031397901120', 'provider' => 'bestbuy'],\n ['name' => \"New York City R&B - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-city-r-b-cd/2084149.p?id=2276583&skuId=2084149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084149.jpg\"}', 'upc' => '031397901724', 'provider' => 'bestbuy'],\n ['name' => \"Picasso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/picasso-cd/2084194.p?id=2282490&skuId=2084194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084194_sa.jpg\"}', 'upc' => '031397903124', 'provider' => 'bestbuy'],\n ['name' => \"Out of Nowhere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-nowhere-cd/2084201.p?id=66037&skuId=2084201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084201.jpg\"}', 'upc' => '031397903223', 'provider' => 'bestbuy'],\n ['name' => \"California Cooking - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-cooking-cd/2084327.p?id=72186&skuId=2084327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2084327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2084\\/2084327.jpg\"}', 'upc' => '031397950920', 'provider' => 'bestbuy'],\n ['name' => \"Imagination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagination-cd/2085344.p?id=1984701&skuId=2085344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2085344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2085\\/2085344.jpg\"}', 'upc' => '016565533822', 'provider' => 'bestbuy'],\n ['name' => \"Dark Souls II: Scholar of the First Sin - PlayStation 4\", 'description_short' => \"Gaze into the eyes of death, despair and impending doom\", 'description_long' => \"Gaze into the eyes of death, despair and impending doom\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-souls-ii-scholar-of-the-first-sin-playstation-4/2085483.p?id=1219522901640&skuId=2085483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2085483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2085\\/2085483_sa.jpg\"}', 'upc' => '722674120272', 'provider' => 'bestbuy'],\n ['name' => \"Last Stitt Sessions, Vols. 1 & 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-stitt-sessions-vols-1-2-cd/2085843.p?id=71160&skuId=2085843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2085843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2085\\/2085843.jpg\"}', 'upc' => '016565600326', 'provider' => 'bestbuy'],\n ['name' => \"Filtrete - 3M Eureka EF-6 HEPA Filter for Select Eureka Upright Vacuums\", 'description_short' => \"Compatible with Eureka Airspeed AS1000 series upright vacuums; traps up to 99.97% of airborne pollutants\", 'description_long' => \"Compatible with Eureka Airspeed AS1000 series upright vacuums; traps up to 99.97% of airborne pollutants\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/filtrete-3m-eureka-ef-6-hepa-filter-for-select-eureka-upright-vacuums/2086151.p?id=1218308700150&skuId=2086151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086151_sa.jpg\"}', 'upc' => '023169131019', 'provider' => 'bestbuy'],\n ['name' => \"Hosanna! Today's Top Worship Songs for Kids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hosanna-todays-top-worship-songs-for-kids-cd/2086188.p?id=2186571&skuId=2086188&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086188', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086188_sa.jpg\"}', 'upc' => '820413115425', 'provider' => 'bestbuy'],\n ['name' => \"Tumor Circus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumor-circus-cd/2086236.p?id=102467&skuId=2086236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086236_sa.jpg\"}', 'upc' => '721616008722', 'provider' => 'bestbuy'],\n ['name' => \"The Dawning of a New Error [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dawning-of-a-new-error-pa-cd/2086272.p?id=79572&skuId=2086272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086272_sa.jpg\"}', 'upc' => '721616010626', 'provider' => 'bestbuy'],\n ['name' => \"13 Flavours of Doom [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/13-flavours-of-doom-pa-cd/2086325.p?id=79567&skuId=2086325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086325_sa.jpg\"}', 'upc' => '721616011722', 'provider' => 'bestbuy'],\n ['name' => \"Slow Motion Apocalypse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slow-motion-apocalypse-cd/2086334.p?id=84317&skuId=2086334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086334_sa.jpg\"}', 'upc' => '721616011821', 'provider' => 'bestbuy'],\n ['name' => \"Terror Has Some Strange Kinfolks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terror-has-some-strange-kinfolks-cd/2086343.p?id=77143&skuId=2086343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086343_sa.jpg\"}', 'upc' => '721616011920', 'provider' => 'bestbuy'],\n ['name' => \"It's Not Unusual... But It... [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-not-unusual-but-it-ep-pa-cd/2086352.p?id=79568&skuId=2086352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086352_sa.jpg\"}', 'upc' => '721616012026', 'provider' => 'bestbuy'],\n ['name' => \"October File - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/october-file-cd/2086414.p?id=80423&skuId=2086414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086414.jpg\"}', 'upc' => '036172070725', 'provider' => 'bestbuy'],\n ['name' => \"Hornet Pinata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hornet-pinata-cd/2086441.p?id=80414&skuId=2086441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086441_sa.jpg\"}', 'upc' => '036172075126', 'provider' => 'bestbuy'],\n ['name' => \"Tragedy-Tragedy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tragedy-tragedy-cd/2086487.p?id=107341&skuId=2086487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086487.jpg\"}', 'upc' => '036172082728', 'provider' => 'bestbuy'],\n ['name' => \"Slint [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slint-single-cd/2086496.p?id=1577691&skuId=2086496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086496.jpg\"}', 'upc' => '036172083220', 'provider' => 'bestbuy'],\n ['name' => \"Cruise Yourself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruise-yourself-cd/2086502.p?id=106661&skuId=2086502&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086502', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086502_sa.jpg\"}', 'upc' => '036172083428', 'provider' => 'bestbuy'],\n ['name' => \"At Action Park - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-action-park-cd/2086539.p?id=107671&skuId=2086539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086539_sa.jpg\"}', 'upc' => '036172084128', 'provider' => 'bestbuy'],\n ['name' => \"Mick Moloney with Eugene O'Donnell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mick-moloney-with-eugene-odonnell-cd/2086575.p?id=92013&skuId=2086575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086575_sa.jpg\"}', 'upc' => '048248101028', 'provider' => 'bestbuy'],\n ['name' => \"The Flax in Bloom - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-flax-in-bloom-cd/2086584.p?id=2393571&skuId=2086584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086584_sa.jpg\"}', 'upc' => '048248102025', 'provider' => 'bestbuy'],\n ['name' => \"Roll Away The Reel World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roll-away-the-reel-world-cd/2086593.p?id=87688&skuId=2086593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086593_sa.jpg\"}', 'upc' => '048248102629', 'provider' => 'bestbuy'],\n ['name' => \"Portland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portland-cd/2086628.p?id=76337&skuId=2086628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086628_sa.jpg\"}', 'upc' => '048248104128', 'provider' => 'bestbuy'],\n ['name' => \"The Tailor's Choice - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tailors-choice-cd/2086646.p?id=76334&skuId=2086646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086646_sa.jpg\"}', 'upc' => '048248104524', 'provider' => 'bestbuy'],\n ['name' => \"Up Close - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-close-cd/2086664.p?id=2387803&skuId=2086664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086664_sa.jpg\"}', 'upc' => '048248105224', 'provider' => 'bestbuy'],\n ['name' => \"Contentment Is Wealth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contentment-is-wealth-cd/2086691.p?id=92001&skuId=2086691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086691_sa.jpg\"}', 'upc' => '048248105828', 'provider' => 'bestbuy'],\n ['name' => \"Ar Seizh Avel (On Seven Winds) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ar-seizh-avel-on-seven-winds-cd/2086717.p?id=88375&skuId=2086717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086717_sa.jpg\"}', 'upc' => '048248106221', 'provider' => 'bestbuy'],\n ['name' => \"Land Of Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/land-of-light-cd/2086726.p?id=101192&skuId=2086726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086726_sa.jpg\"}', 'upc' => '048248106726', 'provider' => 'bestbuy'],\n ['name' => \"Hard to Beat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-to-beat-cd/2086735.p?id=96041&skuId=2086735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086735_sa.jpg\"}', 'upc' => '048248107327', 'provider' => 'bestbuy'],\n ['name' => \"Fresh Takes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-takes-cd/2086744.p?id=103850&skuId=2086744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086744_sa.jpg\"}', 'upc' => '048248107525', 'provider' => 'bestbuy'],\n ['name' => \"Crosswinds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crosswinds-cd/2086753.p?id=3349545&skuId=2086753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086753_sa.jpg\"}', 'upc' => '048248107723', 'provider' => 'bestbuy'],\n ['name' => \"The First Month of Summer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-month-of-summer-cd/2086762.p?id=76435&skuId=2086762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086762_sa.jpg\"}', 'upc' => '048248107921', 'provider' => 'bestbuy'],\n ['name' => \"Down by Bendy's Lane: Irish Songs & Stories... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-by-bendys-lane-irish-songs-stories-cd/2086780.p?id=97858&skuId=2086780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086780_sa.jpg\"}', 'upc' => '048248108522', 'provider' => 'bestbuy'],\n ['name' => \"Liz Carroll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liz-carroll-cd/2086799.p?id=76964&skuId=2086799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086799_sa.jpg\"}', 'upc' => '048248109222', 'provider' => 'bestbuy'],\n ['name' => \"Best of 1979-1989 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-1979-1989-cd/2086815.p?id=101188&skuId=2086815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086815_sa.jpg\"}', 'upc' => '048248110020', 'provider' => 'bestbuy'],\n ['name' => \"The Palomino Waltz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-palomino-waltz-cd/2086824.p?id=2390234&skuId=2086824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086824_sa.jpg\"}', 'upc' => '048248110228', 'provider' => 'bestbuy'],\n ['name' => \"Irish Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irish-times-cd/2086833.p?id=94510&skuId=2086833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086833_sa.jpg\"}', 'upc' => '048248110525', 'provider' => 'bestbuy'],\n ['name' => \"At It Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-it-again-cd/2086842.p?id=2390228&skuId=2086842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086842_sa.jpg\"}', 'upc' => '048248110723', 'provider' => 'bestbuy'],\n ['name' => \"The Red Crow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-red-crow-cd/2086851.p?id=2417351&skuId=2086851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086851_sa.jpg\"}', 'upc' => '048248110921', 'provider' => 'bestbuy'],\n ['name' => \"Come What May - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-what-may-cd/2086879.p?id=72451&skuId=2086879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086879_sa.jpg\"}', 'upc' => '048248111225', 'provider' => 'bestbuy'],\n ['name' => \"Rude Awakening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rude-awakening-cd/2086888.p?id=86346&skuId=2086888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086888_sa.jpg\"}', 'upc' => '048248111423', 'provider' => 'bestbuy'],\n ['name' => \"Rolling Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rolling-home-cd/2086897.p?id=80114&skuId=2086897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086897.jpg\"}', 'upc' => '048248111621', 'provider' => 'bestbuy'],\n ['name' => \"The Morning Dew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-morning-dew-cd/2086931.p?id=92599&skuId=2086931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2086931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2086\\/2086931_sa.jpg\"}', 'upc' => '048248112826', 'provider' => 'bestbuy'],\n ['name' => \"Bridges - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bridges-cd/2087299.p?id=100003&skuId=2087299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087299_sa.jpg\"}', 'upc' => '033651002529', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Prestige/Bluesville Recordings [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-prestige-bluesville-recordings-box-cd/2087324.p?id=85686&skuId=2087324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087324_sa.jpg\"}', 'upc' => '025218440622', 'provider' => 'bestbuy'],\n ['name' => \"Vince & Bola - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vince-bola-cd/2087351.p?id=1366022&skuId=2087351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087351_sa.jpg\"}', 'upc' => '025218545624', 'provider' => 'bestbuy'],\n ['name' => \"Messages - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/messages-cd/2087379.p?id=1366034&skuId=2087379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087379_sa.jpg\"}', 'upc' => '025218546324', 'provider' => 'bestbuy'],\n ['name' => \"Johnny Hodges & All-Stars Caravan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-hodges-all-stars-caravan-cd/2087404.p?id=1550684&skuId=2087404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087404_sa.jpg\"}', 'upc' => '025218510325', 'provider' => 'bestbuy'],\n ['name' => \"Afro-Roots - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/afro-roots-cd/2087459.p?id=70628&skuId=2087459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087459_sa.jpg\"}', 'upc' => '025218541824', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Saturday Night [Swallow] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-saturday-night-swallow-cd-various/2087510.p?id=76547&skuId=2087510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087510_sa.jpg\"}', 'upc' => '046346010228', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Cajun Music Special - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-cajun-music-special-cd-various/2087529.p?id=76566&skuId=2087529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087529.JPG\"}', 'upc' => '046346010327', 'provider' => 'bestbuy'],\n ['name' => \"Balfa Brothers Play Traditional Cajun Music,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/balfa-brothers-play-traditional-cajun-music-cd/2087538.p?id=73773&skuId=2087538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087538_sa.jpg\"}', 'upc' => '046346601129', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Legend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-legend-cd/2087556.p?id=73778&skuId=2087556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087556.JPG\"}', 'upc' => '046346606322', 'provider' => 'bestbuy'],\n ['name' => \"21 Cajun Classics - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/21-cajun-classics-cd-various/2087592.p?id=189787&skuId=2087592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087592_sa.jpg\"}', 'upc' => '046346607923', 'provider' => 'bestbuy'],\n ['name' => \"C'est Fun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cest-fun-cd/2087618.p?id=189790&skuId=2087618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087618_sa.jpg\"}', 'upc' => '046346608524', 'provider' => 'bestbuy'],\n ['name' => \"Instrumental Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/instrumental-collection-cd/2087636.p?id=86612&skuId=2087636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087636.jpg\"}', 'upc' => '046346609422', 'provider' => 'bestbuy'],\n ['name' => \"Joyeux Noel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joyeux-noel-cd/2087663.p?id=86613&skuId=2087663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087663.jpg\"}', 'upc' => '046346610022', 'provider' => 'bestbuy'],\n ['name' => \"Cajun Sentiment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-sentiment-cd/2087672.p?id=94472&skuId=2087672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2087672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2087\\/2087672.jpg\"}', 'upc' => '046346610527', 'provider' => 'bestbuy'],\n ['name' => \"Invasion of the Body Snatchers (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invasion-of-the-body-snatchers-blu-ray-disc/2088005.p?id=22491&skuId=2088005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088005_sa.jpg\"}', 'upc' => '883904250814', 'provider' => 'bestbuy'],\n ['name' => \"Skyline (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skyline-dvd/2088034.p?id=2183058&skuId=2088034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088034_sa.jpg\"}', 'upc' => '025192084430', 'provider' => 'bestbuy'],\n ['name' => \"Daylight (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daylight-blu-ray-disc/2088043.p?id=28125&skuId=2088043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088043_sa.jpg\"}', 'upc' => '025192083631', 'provider' => 'bestbuy'],\n ['name' => \"Babe (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/babe-blu-ray-disc/2088052.p?id=54569&skuId=2088052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088052_sa.jpg\"}', 'upc' => '025192073694', 'provider' => 'bestbuy'],\n ['name' => \"Peter Pan (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peter-pan-blu-ray-disc/2088061.p?id=1353720&skuId=2088061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088061_sa.jpg\"}', 'upc' => '025192073038', 'provider' => 'bestbuy'],\n ['name' => \"Skyline (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skyline-blu-ray-disc/2088089.p?id=2183058&skuId=2088089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088089_sa.jpg\"}', 'upc' => '025192084447', 'provider' => 'bestbuy'],\n ['name' => \"America The Beautiful (3 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/america-the-beautiful-3-disc-blu-ray-disc/2088131.p?id=2315463&skuId=2088131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088131.jpg\"}', 'upc' => '628261112593', 'provider' => 'bestbuy'],\n ['name' => \"SHERLOCK HOLMES: COMPLETE COLLECTION (5PC) (5 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 104.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sherlock-holmes-complete-collection-5pc-5-disc-blu-ray-disc/2088159.p?id=2182344&skuId=2088159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088159_sa.jpg\"}', 'upc' => '030306181998', 'provider' => 'bestbuy'],\n ['name' => \"Ocean Odyssey: Blue Realm (3 Disc) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocean-odyssey-blue-realm-3-disc-blu-ray-disc/2088195.p?id=2315481&skuId=2088195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088195.jpg\"}', 'upc' => '628261112494', 'provider' => 'bestbuy'],\n ['name' => \"Dead Awake (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-awake-blu-ray-disc/2088201.p?id=2138921&skuId=2088201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088201_sa.jpg\"}', 'upc' => '687797132468', 'provider' => 'bestbuy'],\n ['name' => \"Devolved (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devolved-dvd/2088229.p?id=2188600&skuId=2088229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088229_sa.jpg\"}', 'upc' => '891635001995', 'provider' => 'bestbuy'],\n ['name' => \"Dead Awake (DVD) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-awake-dvd-digital-copy/2088238.p?id=2138921&skuId=2088238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088238_sa.jpg\"}', 'upc' => '687797132499', 'provider' => 'bestbuy'],\n ['name' => \"Our Planet (10pc) (W/Cd) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-planet-10pc-w-cd-dvd-boxed-set/2088247.p?id=2077288&skuId=2088247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '628261079292', 'provider' => 'bestbuy'],\n ['name' => \"Billy Blanks: Billy's BootCamp - Cardio Sculpt (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billy-blanks-billys-bootcamp-cardio-sculpt-dvd/2088326.p?id=2181407&skuId=2088326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088326_sa.jpg\"}', 'upc' => '013132275598', 'provider' => 'bestbuy'],\n ['name' => \"Sleep Sound In Jesus: Gentle Lullabies For Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleep-sound-in-jesus-gentle-lullabies-for-baby-cd/2088403.p?id=76814&skuId=2088403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088403_sa.jpg\"}', 'upc' => '017627117929', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX AA Batteries (16-Pack) - Silver\", 'description_short' => \"Compatible with select electronic devices; AA size; 16-pack\", 'description_long' => \"Compatible with select electronic devices; AA size; 16-pack\", 'price' => 12.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-aa-batteries-16-pack-silver/2088486.p?id=1218310003898&skuId=2088486&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088486_sa.jpg\"}', 'upc' => '039800108036', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX AAA Batteries (8-Pack) - Silver\", 'description_short' => \"Compatible with select electronic devices; AAA size; 8-pack\", 'description_long' => \"Compatible with select electronic devices; AAA size; 8-pack\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-aaa-batteries-8-pack-silver/2088495.p?id=1218310061938&skuId=2088495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088495_sa.jpg\"}', 'upc' => '039800108050', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX AA Batteries (8-Pack) - Silver\", 'description_short' => \"Compatible with select electronic devices; AA size; 8-pack\", 'description_long' => \"Compatible with select electronic devices; AA size; 8-pack\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-aa-batteries-8-pack-silver/2088501.p?id=1218310007370&skuId=2088501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088501_sa.jpg\"}', 'upc' => '039800107978', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX AAA Batteries (16-Pack) - Silver\", 'description_short' => \"AAA batteries; long-lasting power\", 'description_long' => \"AAA batteries; long-lasting power\", 'price' => 12.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-aaa-batteries-16-pack-silver/2088538.p?id=1218310412834&skuId=2088538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2088538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2088\\/2088538_sa.jpg\"}', 'upc' => '039800108111', 'provider' => 'bestbuy'],\n ['name' => \"Hyphenated-Man [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hyphenated-man-digipak-cd/2089112.p?id=2186567&skuId=2089112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089112_sa.jpg\"}', 'upc' => '093624958819', 'provider' => 'bestbuy'],\n ['name' => \"Scary Monsters & Nice Sprites [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/scary-monsters-nice-sprites-pa-cd/2089121.p?id=2187124&skuId=2089121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089121_sa.jpg\"}', 'upc' => '075678827174', 'provider' => 'bestbuy'],\n ['name' => \"Hyphenated-Man [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hyphenated-man-lp-vinyl/2089149.p?id=2186568&skuId=2089149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089149_sa.jpg\"}', 'upc' => '093624958826', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - N600 Dual-Band Wireless-N+ Router with 4-Port Switch and USB Port - Black\", 'description_short' => \"Up to 300 Mbps + 300 Mbps data transfer rates; MultiBeam technology; preset security; self-healing application; Print Zone wireless printing app\", 'description_long' => \"Up to 300 Mbps + 300 Mbps data transfer rates; MultiBeam technology; preset security; self-healing application; Print Zone wireless printing app\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-n600-dual-band-wireless-n-router-with-4-port-switch-and-usb-port-black/2089307.p?id=1218309073148&skuId=2089307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089307_rc.jpg\"}', 'upc' => '722868817865', 'provider' => 'bestbuy'],\n ['name' => \"Shut Yo Mouth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shut-yo-mouth-cd/2089974.p?id=71149&skuId=2089974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089974_sa.jpg\"}', 'upc' => '013491102429', 'provider' => 'bestbuy'],\n ['name' => \"Gems of Jazz: All Star Jazz Artists - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gems-of-jazz-all-star-jazz-artists-cd-various/2089983.p?id=67919&skuId=2089983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2089983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2089\\/2089983_sa.jpg\"}', 'upc' => '013491350721', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone TOTALe Online (1-Year Subscription) - Mac|Windows\", 'description_short' => \"Learn a new language or two with this subscription\", 'description_long' => \"Learn a new language or two with this subscription\", 'price' => 299.99, 'sale_price' => 179.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-totale-online-1-year-subscription-macwindows/2090003.p?id=1219068481143&skuId=2090003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090003_sa.jpg\"}', 'upc' => '794678341748', 'provider' => 'bestbuy'],\n ['name' => \"Looking Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-back-cd/2090007.p?id=70499&skuId=2090007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090007.jpg\"}', 'upc' => '013491400921', 'provider' => 'bestbuy'],\n ['name' => \"Panorama - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panorama-cd-various/2090016.p?id=100293&skuId=2090016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090016.jpg\"}', 'upc' => '013491401522', 'provider' => 'bestbuy'],\n ['name' => \"Healing The Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/healing-the-pain-cd/2090025.p?id=66926&skuId=2090025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090025_sa.jpg\"}', 'upc' => '013491402024', 'provider' => 'bestbuy'],\n ['name' => \"Jammer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jammer-cd/2090034.p?id=155943&skuId=2090034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090034_sa.jpg\"}', 'upc' => '013491402321', 'provider' => 'bestbuy'],\n ['name' => \"Quintessence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quintessence-cd/2090043.p?id=155944&skuId=2090043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090043_sa.jpg\"}', 'upc' => '013491402420', 'provider' => 'bestbuy'],\n ['name' => \"The Don Lusher Big Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-don-lusher-big-band-cd/2090070.p?id=68651&skuId=2090070&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090070', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090070_sa.jpg\"}', 'upc' => '095115451229', 'provider' => 'bestbuy'],\n ['name' => \"Outside the City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outside-the-city-cd/2090089.p?id=125257&skuId=2090089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090089.jpg\"}', 'upc' => '028568800320', 'provider' => 'bestbuy'],\n ['name' => \"Glenn Alexander - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glenn-alexander-cd/2090098.p?id=63600&skuId=2090098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090098.jpg\"}', 'upc' => '028568800627', 'provider' => 'bestbuy'],\n ['name' => \"Becoming Became - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/becoming-became-cd/2090105.p?id=125255&skuId=2090105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090105.jpg\"}', 'upc' => '028568801327', 'provider' => 'bestbuy'],\n ['name' => \"Marionette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marionette-cd/2090114.p?id=125262&skuId=2090114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090114.jpg\"}', 'upc' => '028568801525', 'provider' => 'bestbuy'],\n ['name' => \"Some Other Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-other-time-cd/2090123.p?id=68158&skuId=2090123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090123.jpg\"}', 'upc' => '028568801723', 'provider' => 'bestbuy'],\n ['name' => \"Hottest Night of the Year - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hottest-night-of-the-year-cd/2090132.p?id=125358&skuId=2090132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090132.jpg\"}', 'upc' => '028568802126', 'provider' => 'bestbuy'],\n ['name' => \"Hearing Voices - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hearing-voices-cd-various/2090150.p?id=85106&skuId=2090150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090150.jpg\"}', 'upc' => '028568803321', 'provider' => 'bestbuy'],\n ['name' => \"GE - Ge-30522ee2 DECT 6.0 Expandable Cordless Phone System with Digital Answering System - Silver/Gray/Black\", 'description_short' => \"ENERGY STAR Qualified\nCordless base station plus 1 cordless handset with cradle; caller ID and call waiting; Wi-Fi friendly; handset speakerphone; push-to-talk intercom\", 'description_long' => \"ENERGY STAR Qualified\nCordless base station plus 1 cordless handset with cradle; caller ID and call waiting; Wi-Fi friendly; handset speakerphone; push-to-talk intercom\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-ge-30522ee2-dect-6-0-expandable-cordless-phone-system-with-digital-answering-system-silver-gray-black/2090245.p?id=1218309062863&skuId=2090245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090245_rc.jpg\"}', 'upc' => '815772010375', 'provider' => 'bestbuy'],\n ['name' => \"Static - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/static-cd/2090319.p?id=2749485&skuId=2090319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090319_sa.jpg\"}', 'upc' => '888837724029', 'provider' => 'bestbuy'],\n ['name' => \"Make a Move [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/make-a-move-digipak-cd/2090328.p?id=2749511&skuId=2090328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090328_sa.jpg\"}', 'upc' => '887654183620', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090337.p?id=2753237&skuId=2090337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090337_sa.jpg\"}', 'upc' => '888837444422', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090346.p?id=2753675&skuId=2090346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090346_sa.jpg\"}', 'upc' => '888837258524', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [CEMA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cema-cd/2090347.p?id=156924&skuId=2090347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090347_sa.jpg\"}', 'upc' => '724381775820', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090355.p?id=2751466&skuId=2090355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090355_sa.jpg\"}', 'upc' => '888837353922', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090364.p?id=2751410&skuId=2090364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090364_sa.jpg\"}', 'upc' => '888837360920', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090373.p?id=2753226&skuId=2090373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090373_sa.jpg\"}', 'upc' => '888837436328', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090382.p?id=2753682&skuId=2090382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090382_sa.jpg\"}', 'upc' => '888837589727', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-christmas-album-cd/2090391.p?id=2751219&skuId=2090391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090391_sa.jpg\"}', 'upc' => '888837436526', 'provider' => 'bestbuy'],\n ['name' => \"Lástima Que Sean Ajenas [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lastima-que-sean-ajenas-digipak-cd/2090433.p?id=2751237&skuId=2090433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090433_sa.jpg\"}', 'upc' => '888837699723', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Culture Club [EMI] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-culture-club-emi-cd/2090436.p?id=155162&skuId=2090436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090436.jpg\"}', 'upc' => '724381782828', 'provider' => 'bestbuy'],\n ['name' => \"Rosetta Stone Version 4 TOTALe: German Levels 1 - 5 - Mac|Windows\", 'description_short' => \"Learn German by speaking and listening to others\", 'description_long' => \"Learn German by speaking and listening to others\", 'price' => 499.99, 'sale_price' => 199.99, 'url' => 'http://www.bestbuy.com/site/rosetta-stone-version-4-totale-german-levels-1-5-macwindows/2090451.p?id=1219068481144&skuId=2090451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090451_sa.jpg\"}', 'upc' => '794678305047', 'provider' => 'bestbuy'],\n ['name' => \"Blue Hawaii - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-hawaii-cd/2090454.p?id=85005&skuId=2090454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090454.jpg\"}', 'upc' => '077775663723', 'provider' => 'bestbuy'],\n ['name' => \"GE - Ge-28502ae1 DECT 6.0 Cordless Expansion Handset - Silver\", 'description_short' => \"ENERGY STAR Qualified\nDECT 6.0 technology; caller ID/call waiting; handset speakerphone; real-time clock\", 'description_long' => \"ENERGY STAR Qualified\nDECT 6.0 technology; caller ID/call waiting; handset speakerphone; real-time clock\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-ge-28502ae1-dect-6-0-cordless-expansion-handset-silver/2090457.p?id=1218309075431&skuId=2090457', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090457_rc.jpg\"}', 'upc' => '815772010269', 'provider' => 'bestbuy'],\n ['name' => \"GE - Ge-30522ee1 DECT 6.0 Expandable Cordless Phone with Digital Answering System - Silver\", 'description_short' => \"ENERGY STAR Qualified\nCordless base station; caller ID and call waiting; Wi-Fi friendly; handset speakerphone; push-to-talk intercom\", 'description_long' => \"ENERGY STAR Qualified\nCordless base station; caller ID and call waiting; Wi-Fi friendly; handset speakerphone; push-to-talk intercom\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-ge-30522ee1-dect-6-0-expandable-cordless-phone-with-digital-answering-system-silver/2090466.p?id=1218309065844&skuId=2090466', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090466_rc.jpg\"}', 'upc' => '815772010368', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Hour of Prayer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-hour-of-prayer-cd/2090472.p?id=82670&skuId=2090472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090472.jpg\"}', 'upc' => '077775666625', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2090488.p?id=2752854&skuId=2090488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090488_sa.jpg\"}', 'upc' => '600753453209', 'provider' => 'bestbuy'],\n ['name' => \"American Pie & Other Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-pie-other-hits-cd/2090506.p?id=246302&skuId=2090506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090506_sa.jpg\"}', 'upc' => '077775668322', 'provider' => 'bestbuy'],\n ['name' => \"My Sharona - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-sharona-cd/2090533.p?id=154718&skuId=2090533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090533.jpg\"}', 'upc' => '077775670127', 'provider' => 'bestbuy'],\n ['name' => \"Best of Bobby Womack [EMI-Capitol Special... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-bobby-womack-emi-capitol-special-cd/2090542.p?id=104646&skuId=2090542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090542.jpg\"}', 'upc' => '077775671025', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Capitol] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-capitol-cd/2090597.p?id=156542&skuId=2090597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090597_sa.jpg\"}', 'upc' => '077775683622', 'provider' => 'bestbuy'],\n ['name' => \"Every Time Two Fools Collide: The Best of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/every-time-two-fools-collide-the-best-of-cd/2090613.p?id=156543&skuId=2090613&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090613', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090613_sa.jpg\"}', 'upc' => '077775683820', 'provider' => 'bestbuy'],\n ['name' => \"Don't Worry, Be Happy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-worry-be-happy-cd/2090686.p?id=169061&skuId=2090686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090686_sa.jpg\"}', 'upc' => '077775691528', 'provider' => 'bestbuy'],\n ['name' => \"Okie from Muskogee [Capitol Special Markets... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/okie-from-muskogee-capitol-special-markets-cd/2090828.p?id=84601&skuId=2090828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090828_sa.jpg\"}', 'upc' => '077775724622', 'provider' => 'bestbuy'],\n ['name' => \"When I Fall in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-i-fall-in-love-cd/2090837.p?id=89094&skuId=2090837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090837_sa.jpg\"}', 'upc' => '077775724929', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Dean Martin [Cema] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-dean-martin-cema-cd/2090855.p?id=90680&skuId=2090855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090855_sa.jpg\"}', 'upc' => '077775726121', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/2090864.p?id=94538&skuId=2090864&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2090864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2090\\/2090864.jpg\"}', 'upc' => '077775726220', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [CEMA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cema-cd/2091033.p?id=86801&skuId=2091033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091033_sa.jpg\"}', 'upc' => '077775740929', 'provider' => 'bestbuy'],\n ['name' => \"Then Came the Morning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-came-the-morning-cd/2091039.p?id=3320620&skuId=2091039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091039_sa.jpg\"}', 'upc' => '602341019521', 'provider' => 'bestbuy'],\n ['name' => \"Apex Predator-Easy Meat [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apex-predator-easy-meat-digipak-cd/2091048.p?id=3329397&skuId=2091048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091048_sa.jpg\"}', 'upc' => '727701921921', 'provider' => 'bestbuy'],\n ['name' => \"Front & Center: Cyndi Lauper - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/front-center-cyndi-lauper-blu-ray-disc/2091057.p?id=3329743&skuId=2091057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091057_sa.jpg\"}', 'upc' => '020286217688', 'provider' => 'bestbuy'],\n ['name' => \"Beyond the Red Mirror [Mediabook] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beyond-the-red-mirror-mediabook-cd/2091066.p?id=3335079&skuId=2091066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091066_sa.jpg\"}', 'upc' => '727361327200', 'provider' => 'bestbuy'],\n ['name' => \"F.E.A.R. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/f-e-a-r-cd/2091075.p?id=3325827&skuId=2091075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091075_sa.jpg\"}', 'upc' => '849320015727', 'provider' => 'bestbuy'],\n ['name' => \"I Wish You Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-wish-you-love-cd/2091079.p?id=72144&skuId=2091079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091079.jpg\"}', 'upc' => '077775742527', 'provider' => 'bestbuy'],\n ['name' => \"Beyond the Red Mirror - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beyond-the-red-mirror-cd/2091084.p?id=3335080&skuId=2091084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091084_sa.jpg\"}', 'upc' => '727361327224', 'provider' => 'bestbuy'],\n ['name' => \"Melting the Crown [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melting-the-crown-pa-cd/2091093.p?id=3333714&skuId=2091093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091093_sa.jpg\"}', 'upc' => '034744254634', 'provider' => 'bestbuy'],\n ['name' => \"Sco-Mule [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sco-mule-digipak-cd/2091108.p?id=3329409&skuId=2091108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091108.jpg\"}', 'upc' => '651751122123', 'provider' => 'bestbuy'],\n ['name' => \"Bad, Bad Leroy Brown & Other Favorites [CEMA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-bad-leroy-brown-other-favorites-cema-cd/2091113.p?id=157429&skuId=2091113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091113_sa.jpg\"}', 'upc' => '077775744521', 'provider' => 'bestbuy'],\n ['name' => \"Golden Time of Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-time-of-day-cd/2091211.p?id=1411656&skuId=2091211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091211_sa.jpg\"}', 'upc' => '077775764321', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/2091382.p?id=253380&skuId=2091382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091382.jpg\"}', 'upc' => '053993001929', 'provider' => 'bestbuy'],\n ['name' => \"G4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g4-cd/2091417.p?id=178785&skuId=2091417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091417.jpg\"}', 'upc' => '053993332726', 'provider' => 'bestbuy'],\n ['name' => \"Children of Tomorrow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/children-of-tomorrow-cd/2091569.p?id=155487&skuId=2091569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091569_sa.jpg\"}', 'upc' => '053993662427', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Then & Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-then-now-cd/2091587.p?id=154543&skuId=2091587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091587_sa.jpg\"}', 'upc' => '053993663325', 'provider' => 'bestbuy'],\n ['name' => \"Crusin The Streets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crusin-the-streets-cd/2091596.p?id=155076&skuId=2091596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091596.jpg\"}', 'upc' => '053993666029', 'provider' => 'bestbuy'],\n ['name' => \"Sufferin' Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sufferin-mind-cd/2091925.p?id=84381&skuId=2091925&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091925', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091925_sa.jpg\"}', 'upc' => '022211700722', 'provider' => 'bestbuy'],\n ['name' => \"Jungle Hop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jungle-hop-cd/2091934.p?id=80731&skuId=2091934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091934_sa.jpg\"}', 'upc' => '022211700821', 'provider' => 'bestbuy'],\n ['name' => \"Marshall Texas Is My Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marshall-texas-is-my-home-cd/2091952.p?id=80615&skuId=2091952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091952_sa.jpg\"}', 'upc' => '022211701125', 'provider' => 'bestbuy'],\n ['name' => \"Graveyard Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/graveyard-blues-cd/2091961.p?id=85609&skuId=2091961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2091961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2091\\/2091961_sa.jpg\"}', 'upc' => '022211701828', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - Black Courier Clip for iPod nano, 7th gen - black\", 'description_short' => \"Case with detachable carabiner\", 'description_long' => \"Case with detachable carabiner\", 'price' => 19.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/griffin-technology-black-courier-clip-for-ipod-nano-7th-gen-black/2092029.p?id=1219068630512&skuId=2092029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092029_sa.jpg\"}', 'upc' => '685387405916', 'provider' => 'bestbuy'],\n ['name' => \"WakaWaka - Power+ Solar Charger and Light - Yellow\", 'description_short' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'description_long' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'price' => 79, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wakawaka-power-solar-charger-and-light-yellow/2092038.p?id=1219528555854&skuId=2092038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092038_sa.jpg\"}', 'upc' => '8718692050709', 'provider' => 'bestbuy'],\n ['name' => \"Spracht - Cp-2018 Aura Soho PLUS Conference Phone - Black\", 'description_short' => \"DSP noise and echo cancellation; 3 built-in microphones and 2 external microphones; full duplex function\", 'description_long' => \"DSP noise and echo cancellation; 3 built-in microphones and 2 external microphones; full duplex function\", 'price' => 229.99, 'sale_price' => 201.99, 'url' => 'http://www.bestbuy.com/site/spracht-cp-2018-aura-soho-plus-conference-phone-black/2092049.p?id=1218309070969&skuId=2092049', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092049_rc.jpg\"}', 'upc' => '800807300316', 'provider' => 'bestbuy'],\n ['name' => \"The Great 1955 Shrine Concert - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-1955-shrine-concert-cd-various/2092078.p?id=84145&skuId=2092078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092078_sa.jpg\"}', 'upc' => '022211704522', 'provider' => 'bestbuy'],\n ['name' => \"Jump Jack Jump! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jump-jack-jump-cd/2092103.p?id=76935&skuId=2092103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092103_sa.jpg\"}', 'upc' => '022211704829', 'provider' => 'bestbuy'],\n ['name' => \"Back from the Tomb - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-from-the-tomb-cd/2092318.p?id=183897&skuId=2092318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092318_sa.jpg\"}', 'upc' => '032325033326', 'provider' => 'bestbuy'],\n ['name' => \"On the Nile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-nile-cd/2092327.p?id=183898&skuId=2092327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092327_sa.jpg\"}', 'upc' => '032325066324', 'provider' => 'bestbuy'],\n ['name' => \"One Track Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-track-mind-cd/2092336.p?id=183899&skuId=2092336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092336.jpg\"}', 'upc' => '032325077320', 'provider' => 'bestbuy'],\n ['name' => \"King Of Ecstasy: Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-of-ecstasy-greatest-hits-cd/2092345.p?id=81361&skuId=2092345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092345_sa.jpg\"}', 'upc' => '032325088326', 'provider' => 'bestbuy'],\n ['name' => \"Pyramix - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pyramix-cd/2092363.p?id=183895&skuId=2092363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092363_sa.jpg\"}', 'upc' => '032325100325', 'provider' => 'bestbuy'],\n ['name' => \"Up in Volly's Room - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-in-vollys-room-cd/2092372.p?id=1422507&skuId=2092372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092372_sa.jpg\"}', 'upc' => '038153021726', 'provider' => 'bestbuy'],\n ['name' => \"Twice in a While - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twice-in-a-while-cd/2092381.p?id=1395799&skuId=2092381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092381_sa.jpg\"}', 'upc' => '038153022228', 'provider' => 'bestbuy'],\n ['name' => \"Snag It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snag-it-cd/2092390.p?id=1404543&skuId=2092390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092390_sa.jpg\"}', 'upc' => '038153022327', 'provider' => 'bestbuy'],\n ['name' => \"At Westminster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-westminster-cd/2092407.p?id=1422761&skuId=2092407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092407_sa.jpg\"}', 'upc' => '038153040123', 'provider' => 'bestbuy'],\n ['name' => \"The Serenata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-serenata-cd/2092416.p?id=1395815&skuId=2092416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092416.jpg\"}', 'upc' => '038153040321', 'provider' => 'bestbuy'],\n ['name' => \"Honkers & Bar Walkers, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honkers-bar-walkers-vol-1-cd-various/2092425.p?id=1395800&skuId=2092425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092425_sa.jpg\"}', 'upc' => '038153043827', 'provider' => 'bestbuy'],\n ['name' => \"Shock of the New - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shock-of-the-new-cd/2092434.p?id=1422760&skuId=2092434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092434_sa.jpg\"}', 'upc' => '038153044022', 'provider' => 'bestbuy'],\n ['name' => \"Spirit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-cd/2092443.p?id=1395811&skuId=2092443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092443.jpg\"}', 'upc' => '038153044220', 'provider' => 'bestbuy'],\n ['name' => \"Unit 7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unit-7-cd/2092452.p?id=1395808&skuId=2092452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092452.jpg\"}', 'upc' => '038153044428', 'provider' => 'bestbuy'],\n ['name' => \"Upward Spiral - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/upward-spiral-cd/2092461.p?id=1422765&skuId=2092461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092461_sa.jpg\"}', 'upc' => '038153044527', 'provider' => 'bestbuy'],\n ['name' => \"Tough Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tough-town-cd/2092470.p?id=1422759&skuId=2092470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092470_sa.jpg\"}', 'upc' => '038153044626', 'provider' => 'bestbuy'],\n ['name' => \"Jump Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jump-time-cd/2092489.p?id=1396575&skuId=2092489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092489_sa.jpg\"}', 'upc' => '038153044725', 'provider' => 'bestbuy'],\n ['name' => \"On a Cool Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-a-cool-night-cd/2092498.p?id=1422766&skuId=2092498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092498_sa.jpg\"}', 'upc' => '038153044824', 'provider' => 'bestbuy'],\n ['name' => \"Delayed Exposure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delayed-exposure-cd/2092504.p?id=1413368&skuId=2092504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092504_sa.jpg\"}', 'upc' => '038153044923', 'provider' => 'bestbuy'],\n ['name' => \"Takin' Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/takin-off-cd/2092513.p?id=1395812&skuId=2092513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092513_sa.jpg\"}', 'upc' => '038153045029', 'provider' => 'bestbuy'],\n ['name' => \"Mellow Mama - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mellow-mama-cd/2092522.p?id=1395814&skuId=2092522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092522_sa.jpg\"}', 'upc' => '038153045128', 'provider' => 'bestbuy'],\n ['name' => \"Honkers & Bar Walkers, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honkers-bar-walkers-vol-2-cd-various/2092531.p?id=1395801&skuId=2092531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092531.jpg\"}', 'upc' => '038153045227', 'provider' => 'bestbuy'],\n ['name' => \"Experience - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/experience-cd/2092540.p?id=1422757&skuId=2092540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092540_sa.jpg\"}', 'upc' => '038153045425', 'provider' => 'bestbuy'],\n ['name' => \"Ace High - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ace-high-cd/2092559.p?id=1399069&skuId=2092559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092559_sa.jpg\"}', 'upc' => '038153045524', 'provider' => 'bestbuy'],\n ['name' => \"Nutville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nutville-cd/2092577.p?id=1422758&skuId=2092577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092577.jpg\"}', 'upc' => '038153045722', 'provider' => 'bestbuy'],\n ['name' => \"East of the Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-of-the-sun-cd/2092586.p?id=1422762&skuId=2092586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092586_sa.jpg\"}', 'upc' => '038153045821', 'provider' => 'bestbuy'],\n ['name' => \"Rainbow Mist - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rainbow-mist-cd/2092595.p?id=1395798&skuId=2092595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092595_sa.jpg\"}', 'upc' => '038153045920', 'provider' => 'bestbuy'],\n ['name' => \"Call of the Gators [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-the-gators-bonus-tracks-cd/2092602.p?id=1395802&skuId=2092602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092602_sa.jpg\"}', 'upc' => '038153046026', 'provider' => 'bestbuy'],\n ['name' => \"Straight Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-up-cd/2092611.p?id=1396567&skuId=2092611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092611_sa.jpg\"}', 'upc' => '038153046125', 'provider' => 'bestbuy'],\n ['name' => \"Brass Knuckles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brass-knuckles-cd/2092620.p?id=1422764&skuId=2092620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092620_sa.jpg\"}', 'upc' => '038153046422', 'provider' => 'bestbuy'],\n ['name' => \"Hoodoo Man Blues [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoodoo-man-blues-bonus-tracks-cd/2092639.p?id=1395865&skuId=2092639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092639_sa.jpg\"}', 'upc' => '038153061227', 'provider' => 'bestbuy'],\n ['name' => \"Brownsville Blues [Delmark] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brownsville-blues-delmark-cd/2092648.p?id=1395828&skuId=2092648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092648_sa.jpg\"}', 'upc' => '038153061326', 'provider' => 'bestbuy'],\n ['name' => \"Southside Blues Jam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/southside-blues-jam-cd/2092666.p?id=1396640&skuId=2092666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092666_sa.jpg\"}', 'upc' => '038153062828', 'provider' => 'bestbuy'],\n ['name' => \"Steady Rollin' Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steady-rollin-man-cd/2092675.p?id=1395841&skuId=2092675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092675_sa.jpg\"}', 'upc' => '038153063023', 'provider' => 'bestbuy'],\n ['name' => \"All for Business - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-for-business-cd/2092684.p?id=1422770&skuId=2092684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092684.jpg\"}', 'upc' => '038153063429', 'provider' => 'bestbuy'],\n ['name' => \"Professor Strut [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/professor-strut-cassette-cd/2092693.p?id=1422772&skuId=2092693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '038153065027', 'provider' => 'bestbuy'],\n ['name' => \"House Rent Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-rent-party-cd/2092700.p?id=1395857&skuId=2092700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092700_sa.jpg\"}', 'upc' => '038153065522', 'provider' => 'bestbuy'],\n ['name' => \"Central Avenue Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/central-avenue-boogie-cd/2092719.p?id=1399705&skuId=2092719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092719_sa.jpg\"}', 'upc' => '038153065621', 'provider' => 'bestbuy'],\n ['name' => \"West Coast Jive - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-coast-jive-cd-various/2092728.p?id=1403094&skuId=2092728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092728_sa.jpg\"}', 'upc' => '038153065720', 'provider' => 'bestbuy'],\n ['name' => \"Winter Spirit: Solo Guitar Music for the Holidays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winter-spirit-solo-guitar-music-for-the-holidays-cd/2092906.p?id=1513669&skuId=2092906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2092906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2092\\/2092906_sa.jpg\"}', 'upc' => '021661010924', 'provider' => 'bestbuy'],\n ['name' => \"Tron: Legacy 3D/Tron [5 Discs] [Includes Digital Copy] [3D/2D] [Blu-ray/DVD] (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-legacy-3d-tron-5-discs-includes-digital-copy-3d-2d-blu-ray-dvd-blu-ray-3d-3-d/2093039.p?id=2198853&skuId=2093039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093039_sa.jpg\"}', 'upc' => '786936811537', 'provider' => 'bestbuy'],\n ['name' => \"Manhunter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manhunter-dvd/2093046.p?id=42381&skuId=2093046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093046_sa.jpg\"}', 'upc' => '027616085597', 'provider' => 'bestbuy'],\n ['name' => \"Tron (Blu-ray Disc) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-blu-ray-disc-2-disc-special-edition/2093048.p?id=53914&skuId=2093048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093048_sa.jpg\"}', 'upc' => '786936811612', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - Survivor Slim Case for Apple® iPod® touch 5th Generation - Turquoise/Lemon\", 'description_short' => \"Compatible with Apple iPod touch 5th generation; polycarbonate shell; shock-absorbing jacket; button covers; screen protector; play-through design; textured surface\", 'description_long' => \"Compatible with Apple iPod touch 5th generation; polycarbonate shell; shock-absorbing jacket; button covers; screen protector; play-through design; textured surface\", 'price' => 24.99, 'sale_price' => 18.74, 'url' => 'http://www.bestbuy.com/site/griffin-technology-survivor-slim-case-for-apple-ipod-touch-5th-generation-turquoise-lemon/2093055.p?id=1219068629143&skuId=2093055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093055_sa.jpg\"}', 'upc' => '685387413713', 'provider' => 'bestbuy'],\n ['name' => \"Sharpay's Fabulous Adventure (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharpays-fabulous-adventure-blu-ray-disc-2-disc/2093057.p?id=2176767&skuId=2093057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093057_sa.jpg\"}', 'upc' => '786936811438', 'provider' => 'bestbuy'],\n ['name' => \"Marked for Death (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marked-for-death-blu-ray-disc/2093064.p?id=58841&skuId=2093064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093064_sa.jpg\"}', 'upc' => '024543657828', 'provider' => 'bestbuy'],\n ['name' => \"Tron: Legacy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-legacy-dvd/2093066.p?id=2192718&skuId=2093066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093066_sa.jpg\"}', 'upc' => '786936808544', 'provider' => 'bestbuy'],\n ['name' => \"Sharpay's Fabulous Adventure (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharpays-fabulous-adventure-dvd/2093075.p?id=2176767&skuId=2093075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093075_sa.jpg\"}', 'upc' => '786936811032', 'provider' => 'bestbuy'],\n ['name' => \"My Name Is My Name [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-name-is-my-name-pa-digipak-cd/2093082.p?id=2768223&skuId=2093082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093082_sa.jpg\"}', 'upc' => '602537411016', 'provider' => 'bestbuy'],\n ['name' => \"Tron: Legacy (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-legacy-blu-ray-disc-2-disc/2093093.p?id=2192718&skuId=2093093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093093_sa.jpg\"}', 'upc' => '786936808568', 'provider' => 'bestbuy'],\n ['name' => \"Team Goon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/team-goon-cd/2093237.p?id=79564&skuId=2093237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093237_sa.jpg\"}', 'upc' => '021075100228', 'provider' => 'bestbuy'],\n ['name' => \"Horse Bites Dog Cries - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/horse-bites-dog-cries-cd/2093255.p?id=166215&skuId=2093255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093255_sa.jpg\"}', 'upc' => '021075100723', 'provider' => 'bestbuy'],\n ['name' => \"Live 1981 and 1986 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-1981-and-1986-cd/2093291.p?id=72514&skuId=2093291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093291_sa.jpg\"}', 'upc' => '021075101522', 'provider' => 'bestbuy'],\n ['name' => \"Yesterday Started Tomorrow [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yesterday-started-tomorrow-ep-cd/2093326.p?id=122336&skuId=2093326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093326_sa.jpg\"}', 'upc' => '021075103526', 'provider' => 'bestbuy'],\n ['name' => \"Brats In Battali - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brats-in-battali-cd/2093371.p?id=122321&skuId=2093371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093371_sa.jpg\"}', 'upc' => '021075106121', 'provider' => 'bestbuy'],\n ['name' => \"Live in L.A.: 1991 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-l-a--1991-cd/2093415.p?id=122369&skuId=2093415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093415.jpg\"}', 'upc' => '021075107623', 'provider' => 'bestbuy'],\n ['name' => \"Life Sentence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-sentence-cd/2093503.p?id=280654&skuId=2093503&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093503', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093503.jpg\"}', 'upc' => '021075109528', 'provider' => 'bestbuy'],\n ['name' => \"Una Mas Cerveza! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/una-mas-cerveza-cd/2093549.p?id=105743&skuId=2093549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093549_sa.jpg\"}', 'upc' => '021075110227', 'provider' => 'bestbuy'],\n ['name' => \"Poison Idea & Jeff Dahl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poison-idea-jeff-dahl-cd/2093656.p?id=95139&skuId=2093656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093656.jpg\"}', 'upc' => '021075113723', 'provider' => 'bestbuy'],\n ['name' => \"Road Kill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-kill-cd/2093709.p?id=80391&skuId=2093709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093709.jpg\"}', 'upc' => '021075114928', 'provider' => 'bestbuy'],\n ['name' => \"Iconologia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iconologia-cd/2093727.p?id=123175&skuId=2093727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093727_sa.jpg\"}', 'upc' => '021075116427', 'provider' => 'bestbuy'],\n ['name' => \"Whenever a Teenager Cries [Collectables] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whenever-a-teenager-cries-collectables-cd/2093950.p?id=96478&skuId=2093950&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2093950', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2093\\/2093950_sa.jpg\"}', 'upc' => '090431052723', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - Architectural Monitor 5\\\" 100W 2-Way Indoor/Outdoor Loudspeakers (Pair) - Black\", 'description_short' => \"100W peak power handling; 1&quot; aluminum dome tweeter; 5&quot; glass-fiber cone woofer; auxiliary bass radiator; aluminum grille; glass-filled-plastic cabinet\", 'description_long' => \"100W peak power handling; 1&quot; aluminum dome tweeter; 5&quot; glass-fiber cone woofer; auxiliary bass radiator; aluminum grille; glass-filled-plastic cabinet\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-architectural-monitor-5-100w-2-way-indoor-outdoor-loudspeakers-pair-black/2094009.p?id=1219068849656&skuId=2094009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094009_sa.jpg\"}', 'upc' => '714346313730', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - Architectural Monitor 5\\\" 100W 2-Way Indoor/Outdoor Loudspeakers (Pair) - White\", 'description_short' => \"100W peak power handling; 1&quot; aluminum dome tweeter; 5&quot; glass-fiber cone woofer; auxiliary bass radiator; aluminum grille; glass-filled-plastic cabinet\", 'description_long' => \"100W peak power handling; 1&quot; aluminum dome tweeter; 5&quot; glass-fiber cone woofer; auxiliary bass radiator; aluminum grille; glass-filled-plastic cabinet\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-architectural-monitor-5-100w-2-way-indoor-outdoor-loudspeakers-pair-white/2094018.p?id=1219068858977&skuId=2094018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094018_sa.jpg\"}', 'upc' => '714346318704', 'provider' => 'bestbuy'],\n ['name' => \"History of Rock: The Group Sounds, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/history-of-rock-the-group-sounds-vol-1-cd-various/2094021.p?id=176722&skuId=2094021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094021_sa.jpg\"}', 'upc' => '090431260029', 'provider' => 'bestbuy'],\n ['name' => \"Group Sounds: WCBS New York, Vol. 3 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/group-sounds-wcbs-new-york-vol-3-various-cd/2094030.p?id=82205&skuId=2094030&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094030', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094030.jpg\"}', 'upc' => '090431260227', 'provider' => 'bestbuy'],\n ['name' => \"For Lovers Only: WCBS New York, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-lovers-only-wcbs-new-york-vol-4-cd-various/2094067.p?id=105965&skuId=2094067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094067_sa.jpg\"}', 'upc' => '090431260821', 'provider' => 'bestbuy'],\n ['name' => \"Gotham Recording Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotham-recording-stars-cd/2094076.p?id=76779&skuId=2094076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094076_sa.jpg\"}', 'upc' => '090431500026', 'provider' => 'bestbuy'],\n ['name' => \"Voyage to the Bottom of the Sea (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voyage-to-the-bottom-of-the-sea-blu-ray-disc/2094081.p?id=25334&skuId=2094081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094081_sa.jpg\"}', 'upc' => '024543834892', 'provider' => 'bestbuy'],\n ['name' => \"Gotham Recording Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotham-recording-sessions-cd/2094085.p?id=85125&skuId=2094085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094085_sa.jpg\"}', 'upc' => '090431500323', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Duprees [Rhino] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-duprees-rhino-cd/2094101.p?id=81065&skuId=2094101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094101.jpg\"}', 'upc' => '090431500828', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2094110.p?id=79190&skuId=2094110&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094110', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094110_sa.jpg\"}', 'upc' => '090431500927', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094129.p?id=80134&skuId=2094129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094129_sa.jpg\"}', 'upc' => '090431501023', 'provider' => 'bestbuy'],\n ['name' => \"New York's Finest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-yorks-finest-cd/2094138.p?id=77185&skuId=2094138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094138_sa.jpg\"}', 'upc' => '090431501221', 'provider' => 'bestbuy'],\n ['name' => \"Remember Then - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-then-cd/2094147.p?id=92977&skuId=2094147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094147.jpg\"}', 'upc' => '090431501320', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2094165.p?id=76066&skuId=2094165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094165_sa.jpg\"}', 'upc' => '090431501528', 'provider' => 'bestbuy'],\n ['name' => \"Tonight, Tonight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tonight-tonight-cd/2094174.p?id=91373&skuId=2094174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094174_sa.jpg\"}', 'upc' => '090431502020', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Maurice Williams & the Zodiacs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-maurice-williams-the-zodiacs-cd/2094183.p?id=104308&skuId=2094183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094183_sa.jpg\"}', 'upc' => '090431502129', 'provider' => 'bestbuy'],\n ['name' => \"Their Biggest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/their-biggest-hits-cd/2094192.p?id=85124&skuId=2094192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094192_sa.jpg\"}', 'upc' => '090431502822', 'provider' => 'bestbuy'],\n ['name' => \"The Paragons Meet the Jesters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-paragons-meet-the-jesters-cd/2094227.p?id=94371&skuId=2094227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094227_sa.jpg\"}', 'upc' => '090431503423', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Jesters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-jesters-cd/2094236.p?id=86916&skuId=2094236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094236_sa.jpg\"}', 'upc' => '090431503621', 'provider' => 'bestbuy'],\n ['name' => \"Dootone R & B - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dootone-r-b-cd-various/2094263.p?id=1540101&skuId=2094263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094263.jpg\"}', 'upc' => '090431504826', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Holiday: New York Rhythm & Blues, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-holiday-new-york-rhythm-blues-vol-4-cd-various/2094281.p?id=84830&skuId=2094281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094281_sa.jpg\"}', 'upc' => '090431505427', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Holiday: New York Rhythm & Blues, Vol. 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-holiday-new-york-rhythm-blues-vol-5-cd-various/2094290.p?id=84829&skuId=2094290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094290_sa.jpg\"}', 'upc' => '090431505526', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Holiday: New York Rhythm & Blues, Vol. 6 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-holiday-new-york-rhythm-blues-vol-6-cd-various/2094307.p?id=84832&skuId=2094307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094307_sa.jpg\"}', 'upc' => '090431505625', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Holiday: New York Rhythm & Blues, Vol. 7 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-holiday-new-york-rhythm-blues-vol-7-cd-various/2094316.p?id=84833&skuId=2094316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094316_sa.jpg\"}', 'upc' => '090431505724', 'provider' => 'bestbuy'],\n ['name' => \"Rumble [Relic] [Collectables] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rumble-relic-collectables-cd-various/2094334.p?id=97517&skuId=2094334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094334_sa.jpg\"}', 'upc' => '090431506028', 'provider' => 'bestbuy'],\n ['name' => \"History of Rock, Vol. 2 - CD - Various Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/history-of-rock-vol-2-cd-various-remastered/2094343.p?id=96925&skuId=2094343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094343.jpg\"}', 'upc' => '090431506226', 'provider' => 'bestbuy'],\n ['name' => \"History of Rock, Vol. 8 [Collectables 2002] - CD - Various Remastered\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/history-of-rock-vol-8-collectables-2002-cd-various-remastered/2094352.p?id=96931&skuId=2094352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094352.jpg\"}', 'upc' => '090431506820', 'provider' => 'bestbuy'],\n ['name' => \"The Rhythm & Blues Christmas, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rhythm-blues-christmas-vol-1-cd-various/2094361.p?id=77723&skuId=2094361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094361_sa.jpg\"}', 'upc' => '090431507124', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' Robin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-robin-cd/2094370.p?id=79880&skuId=2094370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094370_sa.jpg\"}', 'upc' => '090431507421', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics: Little Joe & the Thrillers... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-little-joe-the-thrillers-cd/2094389.p?id=89431&skuId=2094389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094389_sa.jpg\"}', 'upc' => '090431507629', 'provider' => 'bestbuy'],\n ['name' => \"Walkin' with Mr. Lee [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walkin-with-mr-lee-bonus-tracks-cd/2094398.p?id=72740&skuId=2094398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094398_sa.jpg\"}', 'upc' => '090431508329', 'provider' => 'bestbuy'],\n ['name' => \"Short Shorts: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/short-shorts-golden-classics-cd/2094405.p?id=97475&skuId=2094405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094405_sa.jpg\"}', 'upc' => '090431509425', 'provider' => 'bestbuy'],\n ['name' => \"Only Those in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-those-in-love-cd/2094414.p?id=103536&skuId=2094414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094414_sa.jpg\"}', 'upc' => '090431510827', 'provider' => 'bestbuy'],\n ['name' => \"New King of the Blues [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-king-of-the-blues-bonus-tracks-cd/2094423.p?id=76105&skuId=2094423&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094423', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094423.jpg\"}', 'upc' => '090431511022', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094432.p?id=90512&skuId=2094432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094432_sa.jpg\"}', 'upc' => '090431511329', 'provider' => 'bestbuy'],\n ['name' => \"The Herald Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-herald-recordings-cd/2094478.p?id=72481&skuId=2094478&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094478_sa.jpg\"}', 'upc' => '090431512227', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Sue Records - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-sue-records-cd-various/2094487.p?id=100718&skuId=2094487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094487_sa.jpg\"}', 'upc' => '090431512326', 'provider' => 'bestbuy'],\n ['name' => \"That's How Heartaches Are Made - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-how-heartaches-are-made-cd/2094496.p?id=103537&skuId=2094496&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094496', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094496_sa.jpg\"}', 'upc' => '090431512425', 'provider' => 'bestbuy'],\n ['name' => \"Don't Turn Around [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-turn-around-compilation-cd/2094511.p?id=74876&skuId=2094511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094511_sa.jpg\"}', 'upc' => '090431513422', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094520.p?id=68660&skuId=2094520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094520_sa.jpg\"}', 'upc' => '090431513828', 'provider' => 'bestbuy'],\n ['name' => \"Thin Line Between Love and Hate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thin-line-between-love-and-hate-cd/2094539.p?id=94743&skuId=2094539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094539_sa.jpg\"}', 'upc' => '090431513927', 'provider' => 'bestbuy'],\n ['name' => \"I Know (You Don't Love Me Anymore) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-know-you-dont-love-me-anymore-cd/2094548.p?id=83503&skuId=2094548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094548_sa.jpg\"}', 'upc' => '090431514122', 'provider' => 'bestbuy'],\n ['name' => \"Blues for Mister Jimmy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-mister-jimmy-cd/2094557.p?id=68928&skuId=2094557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094557_sa.jpg\"}', 'upc' => '090431514726', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094566.p?id=84703&skuId=2094566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094566.jpg\"}', 'upc' => '090431515020', 'provider' => 'bestbuy'],\n ['name' => \"Gotham Golden Classics: The Rare Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotham-golden-classics-the-rare-recordings-cd/2094575.p?id=85608&skuId=2094575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094575_sa.jpg\"}', 'upc' => '090431515129', 'provider' => 'bestbuy'],\n ['name' => \"Need Your Lovin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/need-your-lovin-cd/2094593.p?id=83283&skuId=2094593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094593_sa.jpg\"}', 'upc' => '090431515525', 'provider' => 'bestbuy'],\n ['name' => \"Wiggle Wobble - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wiggle-wobble-cd/2094600.p?id=78665&skuId=2094600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094600_sa.jpg\"}', 'upc' => '090431515723', 'provider' => 'bestbuy'],\n ['name' => \"Soulville: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soulville-golden-classics-cd/2094619.p?id=102528&skuId=2094619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094619_sa.jpg\"}', 'upc' => '090431516027', 'provider' => 'bestbuy'],\n ['name' => \"It Will Stand - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-will-stand-cd/2094628.p?id=98667&skuId=2094628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094628_sa.jpg\"}', 'upc' => '090431516225', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094637.p?id=85379&skuId=2094637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094637.jpg\"}', 'upc' => '090431516423', 'provider' => 'bestbuy'],\n ['name' => \"Fortune Teller - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fortune-teller-cd/2094646.p?id=99828&skuId=2094646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094646_sa.jpg\"}', 'upc' => '090431516522', 'provider' => 'bestbuy'],\n ['name' => \"I Like It Like That: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-like-it-like-that-golden-classics-cd/2094655.p?id=87743&skuId=2094655&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094655_sa.jpg\"}', 'upc' => '090431516621', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094664.p?id=85362&skuId=2094664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094664_sa.jpg\"}', 'upc' => '090431517024', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Times Square Record Shop, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-times-square-record-shop-vol-1-cd-various/2094673.p?id=112012&skuId=2094673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094673_sa.jpg\"}', 'upc' => '090431517222', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Times Square Record Shop, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-times-square-record-shop-vol-2-cd-various/2094682.p?id=112014&skuId=2094682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094682_sa.jpg\"}', 'upc' => '090431517321', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Times Square Record Shop, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-times-square-record-shop-vol-3-cd-various/2094691.p?id=112018&skuId=2094691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094691_sa.jpg\"}', 'upc' => '090431517420', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Times Square Record Shop, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-times-square-record-shop-vol-4-cd-various/2094708.p?id=112035&skuId=2094708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094708.jpg\"}', 'upc' => '090431517529', 'provider' => 'bestbuy'],\n ['name' => \"Memories of Times Square Record Shop, Vol. 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-times-square-record-shop-vol-5-cd-various/2094717.p?id=112036&skuId=2094717&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094717', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094717_sa.jpg\"}', 'upc' => '090431517628', 'provider' => 'bestbuy'],\n ['name' => \"Make Me Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/make-me-yours-cd/2094726.p?id=100952&skuId=2094726&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094726', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094726_sa.jpg\"}', 'upc' => '090431517727', 'provider' => 'bestbuy'],\n ['name' => \"The Herald Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-herald-recordings-cd/2094744.p?id=96671&skuId=2094744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094744_sa.jpg\"}', 'upc' => '090431518229', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094753.p?id=89179&skuId=2094753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094753_sa.jpg\"}', 'upc' => '090431518823', 'provider' => 'bestbuy'],\n ['name' => \"Cry to Me: Golden Classics of the 70s - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-to-me-golden-classics-of-the-70s-cd/2094762.p?id=85483&skuId=2094762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094762_sa.jpg\"}', 'upc' => '090431518922', 'provider' => 'bestbuy'],\n ['name' => \"Penitentiary Blues: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penitentiary-blues-golden-classics-cd/2094771.p?id=86826&skuId=2094771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094771.jpg\"}', 'upc' => '090431519424', 'provider' => 'bestbuy'],\n ['name' => \"Blowin' the Fuses: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blowin-the-fuses-golden-classics-cd/2094780.p?id=194744&skuId=2094780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094780_sa.jpg\"}', 'upc' => '090431519820', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics: If You Gotta Make a Fool of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-if-you-gotta-make-a-fool-of-cd/2094799.p?id=96117&skuId=2094799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094799_sa.jpg\"}', 'upc' => '090431519929', 'provider' => 'bestbuy'],\n ['name' => \"Casanova (Your Playing Days Are Over) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/casanova-your-playing-days-are-over-cd/2094806.p?id=73007&skuId=2094806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094806_sa.jpg\"}', 'upc' => '090431520123', 'provider' => 'bestbuy'],\n ['name' => \"Cymande - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cymande-cd/2094815.p?id=79508&skuId=2094815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094815_sa.jpg\"}', 'upc' => '090431520222', 'provider' => 'bestbuy'],\n ['name' => \"The Lost Texas Tapes, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-texas-tapes-vol-1-cd/2094824.p?id=85683&skuId=2094824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094824.jpg\"}', 'upc' => '090431520321', 'provider' => 'bestbuy'],\n ['name' => \"Jimmy Briscoe & the Little Beavers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jimmy-briscoe-the-little-beavers-cd/2094842.p?id=75854&skuId=2094842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094842_sa.jpg\"}', 'upc' => '090431521120', 'provider' => 'bestbuy'],\n ['name' => \"The Soul Generation: A Golden Classic Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-soul-generation-a-golden-classic-edition-cd/2094851.p?id=99585&skuId=2094851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094851_sa.jpg\"}', 'upc' => '090431521229', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2094860.p?id=78834&skuId=2094860&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094860', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094860_sa.jpg\"}', 'upc' => '090431521328', 'provider' => 'bestbuy'],\n ['name' => \"K-Jee: Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/k-jee-golden-classics-cd/2094879.p?id=93418&skuId=2094879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094879_sa.jpg\"}', 'upc' => '090431521427', 'provider' => 'bestbuy'],\n ['name' => \"More Than the Most! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-than-the-most-cd/2094959.p?id=106252&skuId=2094959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094959_sa.jpg\"}', 'upc' => '090431523223', 'provider' => 'bestbuy'],\n ['name' => \"Dakota at Storyville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dakota-at-storyville-cd/2094968.p?id=106253&skuId=2094968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094968_sa.jpg\"}', 'upc' => '090431523322', 'provider' => 'bestbuy'],\n ['name' => \"We Came to Play - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-came-to-play-cd/2094977.p?id=106254&skuId=2094977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094977.jpg\"}', 'upc' => '090431523421', 'provider' => 'bestbuy'],\n ['name' => \"Street Corner Symphony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-corner-symphony-cd/2094986.p?id=106255&skuId=2094986&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2094986', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2094\\/2094986_sa.jpg\"}', 'upc' => '090431523520', 'provider' => 'bestbuy'],\n ['name' => \"Dirty Rotten Scoundrels (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dirty-rotten-scoundrels-blu-ray-disc/2095008.p?id=21398&skuId=2095008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095008_sa.jpg\"}', 'upc' => '883904242512', 'provider' => 'bestbuy'],\n ['name' => \"Cry Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-baby-cd/2095011.p?id=91814&skuId=2095011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095011.jpg\"}', 'upc' => '090431524824', 'provider' => 'bestbuy'],\n ['name' => \"Wing Commander (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wing-commander-dvd/2095062.p?id=29568&skuId=2095062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095062_sa.jpg\"}', 'upc' => '013132609928', 'provider' => 'bestbuy'],\n ['name' => \"Larrymanía [ECD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/larrymania-ecd-cd/2095064.p?id=2203569&skuId=2095064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095064_sa.jpg\"}', 'upc' => '895357006726', 'provider' => 'bestbuy'],\n ['name' => \"Be Thankful for What You Got - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/be-thankful-for-what-you-got-cd/2095066.p?id=80290&skuId=2095066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095066_sa.jpg\"}', 'upc' => '090431527122', 'provider' => 'bestbuy'],\n ['name' => \"Justin Bieber, Vol. 1 [CD+G] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/justin-bieber-vol-1-cd-g-cd-various/2095161.p?id=2174192&skuId=2095161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095161_sa.jpg\"}', 'upc' => '827249226097', 'provider' => 'bestbuy'],\n ['name' => \"The Elder Scrolls V: Skyrim - Xbox 360\", 'description_short' => \"The beloved series is back\", 'description_long' => \"The beloved series is back\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-elder-scrolls-v-skyrim-xbox-360/2095189.p?id=1218309065976&skuId=2095189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310265271\\/1310265271_sa.jpg\"}', 'upc' => '093155117631', 'provider' => 'bestbuy'],\n ['name' => \"The Elder Scrolls V: Skyrim - PlayStation 3\", 'description_short' => \"The beloved series is back\", 'description_long' => \"The beloved series is back\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-elder-scrolls-v-skyrim-playstation-3/2095198.p?id=1218309074814&skuId=2095198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310265264\\/1310265264_sa.jpg\"}', 'upc' => '093155117624', 'provider' => 'bestbuy'],\n ['name' => \"NFL: Super Bowl XLV Champions - Green Bay Packers (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nfl-super-bowl-xlv-champions-green-bay-packers-blu-ray-disc/2095213.p?id=2168228&skuId=2095213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095213_sa.jpg\"}', 'upc' => '883929159246', 'provider' => 'bestbuy'],\n ['name' => \"Venture Bros.: Season Four [2 discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/venture-bros--season-four-2-discs-blu-ray-disc/2095231.p?id=2178179&skuId=2095231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095231_sa.jpg\"}', 'upc' => '883929157556', 'provider' => 'bestbuy'],\n ['name' => \"The Gotham Series: House Party - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gotham-series-house-party-cd-various/2095235.p?id=83993&skuId=2095235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095235_sa.jpg\"}', 'upc' => '090431530320', 'provider' => 'bestbuy'],\n ['name' => \"Dual Trumpeter [Collectables] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dual-trumpeter-collectables-cd/2095244.p?id=69436&skuId=2095244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095244_sa.jpg\"}', 'upc' => '090431530528', 'provider' => 'bestbuy'],\n ['name' => \"Jimmy Preston - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jimmy-preston-cd/2095253.p?id=95392&skuId=2095253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095253_sa.jpg\"}', 'upc' => '090431530627', 'provider' => 'bestbuy'],\n ['name' => \"Bleach Uncut Box Set, Vol. 8: Episodes 134-145 [3 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bleach-uncut-box-set-vol-8-episodes-134-145-3-discs-boxed-set-dvd/2095259.p?id=2175612&skuId=2095259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095259_sa.jpg\"}', 'upc' => '782009241522', 'provider' => 'bestbuy'],\n ['name' => \"T.N.T. Tribble, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/t-n-t-tribble-vol-1-cd/2095262.p?id=102232&skuId=2095262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095262_sa.jpg\"}', 'upc' => '090431530924', 'provider' => 'bestbuy'],\n ['name' => \"Hereafter (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hereafter-dvd/2095268.p?id=2181793&skuId=2095268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095268_sa.jpg\"}', 'upc' => '883929140015', 'provider' => 'bestbuy'],\n ['name' => \"Charlie Gonzales - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charlie-gonzales-cd/2095271.p?id=83843&skuId=2095271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095271_sa.jpg\"}', 'upc' => '090431531020', 'provider' => 'bestbuy'],\n ['name' => \"Yogi Bear (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yogi-bear-dvd/2095277.p?id=2193579&skuId=2095277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095277_sa.jpg\"}', 'upc' => '883929140398', 'provider' => 'bestbuy'],\n ['name' => \"1949 Country Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1949-country-blues-cd/2095280.p?id=94926&skuId=2095280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095280_sa.jpg\"}', 'upc' => '090431531129', 'provider' => 'bestbuy'],\n ['name' => \"Happiness Is a Warm Blanket, Charlie Brown (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happiness-is-a-warm-blanket-charlie-brown-dvd/2095286.p?id=2180504&skuId=2095286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095286_sa.jpg\"}', 'upc' => '883929137800', 'provider' => 'bestbuy'],\n ['name' => \"Pokemon: Diamond & Pearl Galactic Battles 1 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-diamond-pearl-galactic-battles-1-2-disc-dvd/2095295.p?id=2172338&skuId=2095295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1892\\/18929943.jpg\"}', 'upc' => '782009240860', 'provider' => 'bestbuy'],\n ['name' => \"Detroit Blues 1950-1951 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/detroit-blues-1950-1951-cd/2095299.p?id=85602&skuId=2095299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095299.jpg\"}', 'upc' => '090431531624', 'provider' => 'bestbuy'],\n ['name' => \"Kurt Russell Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kurt-russell-collection-4-film-favorites-2-discs-dvd/2095301.p?id=2179210&skuId=2095301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095301_sa.jpg\"}', 'upc' => '883929172566', 'provider' => 'bestbuy'],\n ['name' => \"Harry Crafton: 1949-54 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harry-crafton-1949-54-cd/2095306.p?id=79061&skuId=2095306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095306_sa.jpg\"}', 'upc' => '090431531822', 'provider' => 'bestbuy'],\n ['name' => \"Don Haven & the Hi-Fi's - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-haven-the-hi-fis-cd-various/2095315.p?id=85003&skuId=2095315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095315_sa.jpg\"}', 'upc' => '090431531921', 'provider' => 'bestbuy'],\n ['name' => \"Alley Special - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alley-special-cd-various/2095324.p?id=72755&skuId=2095324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095324_sa.jpg\"}', 'upc' => '090431532027', 'provider' => 'bestbuy'],\n ['name' => \"Treme: The Complete First Season [4 Discs / Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/treme-the-complete-first-season-4-discs-blu-ray-blu-ray-disc/2095329.p?id=2178162&skuId=2095329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095329_sa.jpg\"}', 'upc' => '883929154166', 'provider' => 'bestbuy'],\n ['name' => \"Thelma Cooper/Daisy Mae & Her Hepcats - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thelma-cooper-daisy-mae-her-hepcats-cd/2095333.p?id=78669&skuId=2095333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095333_sa.jpg\"}', 'upc' => '090431532225', 'provider' => 'bestbuy'],\n ['name' => \"Yogi Bear (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yogi-bear-blu-ray-3d-3-d/2095338.p?id=2193579&skuId=2095338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095338_sa.jpg\"}', 'upc' => '883929176823', 'provider' => 'bestbuy'],\n ['name' => \"Count \\\"Red\\\" Hastings/Danny Turner/Eddie Woodland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/count-red-hastings-danny-turner-eddie-woodland-cd/2095342.p?id=106256&skuId=2095342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095342_sa.jpg\"}', 'upc' => '090431532324', 'provider' => 'bestbuy'],\n ['name' => \"Scooby-Doo!: Curse of the Lake Monster (DVD) (Extended Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scooby-doo-curse-of-the-lake-monster-dvd-extended-edition/2095347.p?id=2180268&skuId=2095347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095347_sa.jpg\"}', 'upc' => '883929135905', 'provider' => 'bestbuy'],\n ['name' => \"Rock the Joint, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-the-joint-vol-2-cd/2095351.p?id=95393&skuId=2095351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095351_sa.jpg\"}', 'upc' => '090431532720', 'provider' => 'bestbuy'],\n ['name' => \"Kids Sports Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kids-sports-collection-4-film-favorites-2-discs-dvd/2095356.p?id=2179208&skuId=2095356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095356_sa.jpg\"}', 'upc' => '883929171538', 'provider' => 'bestbuy'],\n ['name' => \"T.N.T. Tribble, Vol. 2: Red Hot Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/t-n-t-tribble-vol-2-red-hot-boogie-cd/2095360.p?id=102233&skuId=2095360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095360_sa.jpg\"}', 'upc' => '090431532829', 'provider' => 'bestbuy'],\n ['name' => \"Excalibur (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 8.99, 'url' => 'http://www.bestbuy.com/site/excalibur-blu-ray-disc/2095365.p?id=42002&skuId=2095365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095365_sa.jpg\"}', 'upc' => '883929167982', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: The Ark (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-the-ark-dvd/2095374.p?id=2172336&skuId=2095374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095374_sa.jpg\"}', 'upc' => '883929166985', 'provider' => 'bestbuy'],\n ['name' => \"That's Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-right-cd/2095379.p?id=78247&skuId=2095379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095379_sa.jpg\"}', 'upc' => '090431533123', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Kombat (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-kombat-blu-ray-disc-digital-copy/2095383.p?id=54574&skuId=2095383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095383_sa.jpg\"}', 'upc' => '794043143120', 'provider' => 'bestbuy'],\n ['name' => \"Sparrow's Flight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sparrows-flight-cd/2095388.p?id=99794&skuId=2095388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095388.jpg\"}', 'upc' => '090431533222', 'provider' => 'bestbuy'],\n ['name' => \"Country Western Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-western-collection-4-film-favorites-2-discs-dvd/2095392.p?id=2179207&skuId=2095392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095392_sa.jpg\"}', 'upc' => '883929172337', 'provider' => 'bestbuy'],\n ['name' => \"J.B. Summers & the Blues Shouters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/j-b-summers-the-blues-shouters-cd/2095397.p?id=100803&skuId=2095397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095397_sa.jpg\"}', 'upc' => '090431533321', 'provider' => 'bestbuy'],\n ['name' => \"Philadelphia Boogie - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/philadelphia-boogie-cd-various/2095404.p?id=94849&skuId=2095404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095404_sa.jpg\"}', 'upc' => '090431533420', 'provider' => 'bestbuy'],\n ['name' => \"Yogi Bear (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yogi-bear-blu-ray-disc-2-disc-digital-copy/2095407.p?id=2193579&skuId=2095407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095407_sa.jpg\"}', 'upc' => '883929141050', 'provider' => 'bestbuy'],\n ['name' => \"Long Gone Daddy - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-gone-daddy-cd-various/2095413.p?id=89588&skuId=2095413&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095413', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095413_sa.jpg\"}', 'upc' => '090431533529', 'provider' => 'bestbuy'],\n ['name' => \"Love Affairs Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-affairs-collection-4-film-favorites-2-discs-dvd/2095416.p?id=2179211&skuId=2095416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095416_sa.jpg\"}', 'upc' => '883929172603', 'provider' => 'bestbuy'],\n ['name' => \"Barbara-Ann - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barbara-ann-cd/2095422.p?id=96334&skuId=2095422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095422_sa.jpg\"}', 'upc' => '090431540329', 'provider' => 'bestbuy'],\n ['name' => \"White House Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-house-collection-4-film-favorites-2-discs-dvd/2095425.p?id=2179214&skuId=2095425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095425_sa.jpg\"}', 'upc' => '883929171972', 'provider' => 'bestbuy'],\n ['name' => \"Best of Jimmy Bowen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-jimmy-bowen-cd/2095431.p?id=75638&skuId=2095431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095431_sa.jpg\"}', 'upc' => '090431540626', 'provider' => 'bestbuy'],\n ['name' => \"Venture Bros.: Season 4, Vol. 2 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/venture-bros--season-4-vol-2-2-discs-dvd/2095434.p?id=2179219&skuId=2095434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095434_sa.jpg\"}', 'upc' => '883929158430', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Party [Collectables] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-party-collectables-cd-various/2095440.p?id=101337&skuId=2095440&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095440', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095440_sa.jpg\"}', 'upc' => '090431540923', 'provider' => 'bestbuy'],\n ['name' => \"Randolph Scott Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/randolph-scott-collection-4-film-favorites-2-discs-dvd/2095443.p?id=2179213&skuId=2095443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095443_sa.jpg\"}', 'upc' => '883929173655', 'provider' => 'bestbuy'],\n ['name' => \"Scarecrow and Mrs. King: The Complete Second Season [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scarecrow-and-mrs-king-the-complete-second-season-5-discs-dvd/2095452.p?id=2177493&skuId=2095452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095452.jpg\"}', 'upc' => '883929157457', 'provider' => 'bestbuy'],\n ['name' => \"Go Ahead and Rock and Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-ahead-and-rock-and-roll-cd/2095459.p?id=87163&skuId=2095459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095459_sa.jpg\"}', 'upc' => '090431541029', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: The Sees of Death [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-the-sees-of-death-2-discs-dvd/2095461.p?id=2172337&skuId=2095461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095461_sa.jpg\"}', 'upc' => '883929166961', 'provider' => 'bestbuy'],\n ['name' => \"The Cadillacs Meet the Orioles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cadillacs-meet-the-orioles-cd/2095468.p?id=76514&skuId=2095468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095468_sa.jpg\"}', 'upc' => '090431541227', 'provider' => 'bestbuy'],\n ['name' => \"Freddie Scott Sings and Sings and Sings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freddie-scott-sings-and-sings-and-sings-cd/2095477.p?id=98113&skuId=2095477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095477_sa.jpg\"}', 'upc' => '090431541326', 'provider' => 'bestbuy'],\n ['name' => \"Pokemon Elements: Collection 1 (5 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pokemon-elements-collection-1-5-disc-dvd-boxed-set/2095489.p?id=2116812&skuId=2095489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1863\\/18634702.jpg\"}', 'upc' => '782009241553', 'provider' => 'bestbuy'],\n ['name' => \"Hereafter (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hereafter-blu-ray-disc-digital-copy/2095498.p?id=2181793&skuId=2095498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095498_sa.jpg\"}', 'upc' => '883929140862', 'provider' => 'bestbuy'],\n ['name' => \"Do You Wanna Dance? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-you-wanna-dance-cd/2095501.p?id=82945&skuId=2095501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095501_sa.jpg\"}', 'upc' => '090431541722', 'provider' => 'bestbuy'],\n ['name' => \"Check it Out! With Dr. Steve Brule: Seasons 1 & 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/check-it-out-with-dr-steve-brule-seasons-1-2-dvd/2095504.p?id=2166805&skuId=2095504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095504_sa.jpg\"}', 'upc' => '883929157969', 'provider' => 'bestbuy'],\n ['name' => \"Golden Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-classics-cd/2095510.p?id=95063&skuId=2095510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095510_sa.jpg\"}', 'upc' => '090431541821', 'provider' => 'bestbuy'],\n ['name' => \"Scooby-Doo!: Curse of the Lake Monster (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scooby-doo-curse-of-the-lake-monster-blu-ray-disc-2-disc/2095513.p?id=2180268&skuId=2095513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095513_sa.jpg\"}', 'upc' => '883929136797', 'provider' => 'bestbuy'],\n ['name' => \"NFL: Super Bowl XLV Champions - Green Bay Packers (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nfl-super-bowl-xlv-champions-green-bay-packers-dvd/2095522.p?id=2168228&skuId=2095522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095522_sa.jpg\"}', 'upc' => '883929159161', 'provider' => 'bestbuy'],\n ['name' => \"The Lowdown Back Porch Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lowdown-back-porch-blues-cd/2095529.p?id=89794&skuId=2095529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095529_sa.jpg\"}', 'upc' => '090431541920', 'provider' => 'bestbuy'],\n ['name' => \"Batman: The Brave & the Bold - Season One, Part Two [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-the-brave-the-bold-season-one-part-two-2-discs-dvd/2095531.p?id=2169549&skuId=2095531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095531_sa.jpg\"}', 'upc' => '883929137367', 'provider' => 'bestbuy'],\n ['name' => \"Little Star: The Best of the Elegants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-star-the-best-of-the-elegants-cd/2095538.p?id=81445&skuId=2095538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095538_sa.jpg\"}', 'upc' => '090431542026', 'provider' => 'bestbuy'],\n ['name' => \"We Are the Imperials Featuring Little Anthony - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-are-the-imperials-featuring-little-anthony-cd/2095547.p?id=89348&skuId=2095547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095547_sa.jpg\"}', 'upc' => '090431542224', 'provider' => 'bestbuy'],\n ['name' => \"The Chantels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chantels-cd/2095556.p?id=77189&skuId=2095556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095556.jpg\"}', 'upc' => '090431542323', 'provider' => 'bestbuy'],\n ['name' => \"Yogi Bear's All-Star Comedy Christmas Caper (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yogi-bears-all-star-comedy-christmas-caper-dvd/2095559.p?id=25614&skuId=2095559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095559_sa.jpg\"}', 'upc' => '883929131624', 'provider' => 'bestbuy'],\n ['name' => \"Requestfully Yours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/requestfully-yours-cd/2095565.p?id=82382&skuId=2095565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095565_sa.jpg\"}', 'upc' => '090431542521', 'provider' => 'bestbuy'],\n ['name' => \"Treme: The Complete First Season [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/treme-the-complete-first-season-4-discs-dvd/2095568.p?id=2178161&skuId=2095568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095568_sa.jpg\"}', 'upc' => '883929154159', 'provider' => 'bestbuy'],\n ['name' => \"The Sound of the Flamingos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sound-of-the-flamingos-cd/2095574.p?id=82384&skuId=2095574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095574_sa.jpg\"}', 'upc' => '090431542620', 'provider' => 'bestbuy'],\n ['name' => \"Who Wrote the Book of Love? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-wrote-the-book-of-love-cd/2095583.p?id=92089&skuId=2095583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095583_sa.jpg\"}', 'upc' => '090431542729', 'provider' => 'bestbuy'],\n ['name' => \"Flamingo Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flamingo-favorites-cd/2095592.p?id=82380&skuId=2095592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095592_sa.jpg\"}', 'upc' => '090431542828', 'provider' => 'bestbuy'],\n ['name' => \"The Fabulous Flamingos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fabulous-flamingos-cd/2095609.p?id=82385&skuId=2095609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095609_sa.jpg\"}', 'upc' => '090431542927', 'provider' => 'bestbuy'],\n ['name' => \"Why Can't We Live Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-cant-we-live-together-cd/2095627.p?id=101722&skuId=2095627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095627.jpg\"}', 'upc' => '090431543320', 'provider' => 'bestbuy'],\n ['name' => \"Friend of Mine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/friend-of-mine-cd/2095636.p?id=89370&skuId=2095636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095636_sa.jpg\"}', 'upc' => '090431543429', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Stacking Kit for Select Whirlpool Dryers - Metal\", 'description_short' => \"Compatible with Whirlpool ME/GD6000, 7000X, WE/GD94, 95 and 97HEX dryers; allows you to stack a dryer on top of a washer\", 'description_long' => \"Compatible with Whirlpool ME/GD6000, 7000X, WE/GD94, 95 and 97HEX dryers; allows you to stack a dryer on top of a washer\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-stacking-kit-for-select-whirlpool-dryers-metal/2095638.p?id=1218698667706&skuId=2095638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095638_sa.jpg\"}', 'upc' => '883049212654', 'provider' => 'bestbuy'],\n ['name' => \"Me for You, You for Me: The Glades Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/me-for-you-you-for-me-the-glades-masters-cd/2095645.p?id=89375&skuId=2095645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095645_sa.jpg\"}', 'upc' => '090431543528', 'provider' => 'bestbuy'],\n ['name' => \"At the Village Gate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-village-gate-cd/2095654.p?id=70961&skuId=2095654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095654_sa.jpg\"}', 'upc' => '090431543825', 'provider' => 'bestbuy'],\n ['name' => \"Right On! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-on-cd/2095663.p?id=96692&skuId=2095663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095663.jpg\"}', 'upc' => '090431650028', 'provider' => 'bestbuy'],\n ['name' => \"The Blue Guerrilla - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-blue-guerrilla-cd/2095672.p?id=87561&skuId=2095672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095672_sa.jpg\"}', 'upc' => '090431650127', 'provider' => 'bestbuy'],\n ['name' => \"Truth Is on Its Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truth-is-on-its-way-cd/2095681.p?id=83665&skuId=2095681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095681_sa.jpg\"}', 'upc' => '090431650622', 'provider' => 'bestbuy'],\n ['name' => \"The Doo-Wop Era - Harlem, N.Y.: 40 Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-doo-wop-era-harlem-n-y--40-hits-cd-various/2095690.p?id=80759&skuId=2095690&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095690', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095690_sa.jpg\"}', 'upc' => '090431700129', 'provider' => 'bestbuy'],\n ['name' => \"Harlem New York: The Ballad Era - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-new-york-the-ballad-era-cd-various/2095707.p?id=73815&skuId=2095707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095707_sa.jpg\"}', 'upc' => '090431700228', 'provider' => 'bestbuy'],\n ['name' => \"For Collectors Only: The Rarities, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-collectors-only-the-rarities-vol-1-cd-various/2095716.p?id=82188&skuId=2095716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095716_sa.jpg\"}', 'upc' => '090431700327', 'provider' => 'bestbuy'],\n ['name' => \"The Crows & the Harptones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-crows-the-harptones-cd/2095725.p?id=79336&skuId=2095725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095725_sa.jpg\"}', 'upc' => '090431700426', 'provider' => 'bestbuy'],\n ['name' => \"Native New Yorker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/native-new-yorker-cd/2095734.p?id=93808&skuId=2095734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095734_sa.jpg\"}', 'upc' => '090431850022', 'provider' => 'bestbuy'],\n ['name' => \"For Collectors Only [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-collectors-only-box-cd/2095743.p?id=76513&skuId=2095743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095743_sa.jpg\"}', 'upc' => '090431880029', 'provider' => 'bestbuy'],\n ['name' => \"For Collectors Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-collectors-only-cd/2095752.p?id=80133&skuId=2095752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2095752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2095\\/2095752_sa.jpg\"}', 'upc' => '090431880920', 'provider' => 'bestbuy'],\n ['name' => \"Never Say Never: The Remixes [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-say-never-the-remixes-ep-cd/2096036.p?id=2187896&skuId=2096036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2096036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2096\\/2096036_sa.jpg\"}', 'upc' => '602527645919', 'provider' => 'bestbuy'],\n ['name' => \"Lights [U.S. Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lights-u-s-edition-cd/2096045.p?id=2187234&skuId=2096045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2096045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2096\\/2096045_sa.jpg\"}', 'upc' => '602527631325', 'provider' => 'bestbuy'],\n ['name' => \"Give the Drummer Some [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/give-the-drummer-some-pa-cd/2096072.p?id=2188947&skuId=2096072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2096072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2096\\/2096072_sa.jpg\"}', 'upc' => '602527645971', 'provider' => 'bestbuy'],\n ['name' => \"Musics of the Soviet Union - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musics-of-the-soviet-union-cd-various/2096984.p?id=99733&skuId=2096984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2096984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2096\\/2096984_sa.jpg\"}', 'upc' => '093074000229', 'provider' => 'bestbuy'],\n ['name' => \"Darling Corey/Goofing-Off Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/darling-corey-goofing-off-suite-cd/2096993.p?id=98263&skuId=2096993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2096993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2096\\/2096993_sa.jpg\"}', 'upc' => '093074001820', 'provider' => 'bestbuy'],\n ['name' => \"Sing for Freedom: Civil Rights Movement Songs - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-for-freedom-civil-rights-movement-songs-cd-various/2097000.p?id=98923&skuId=2097000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097000_sa.jpg\"}', 'upc' => '093074003220', 'provider' => 'bestbuy'],\n ['name' => \"Folk Masters - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folk-masters-cd-various/2097019.p?id=82583&skuId=2097019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097019.jpg\"}', 'upc' => '093074004722', 'provider' => 'bestbuy'],\n ['name' => \"Navajo Songs - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/navajo-songs-cd-various/2097028.p?id=92886&skuId=2097028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097028_sa.jpg\"}', 'upc' => '093074040324', 'provider' => 'bestbuy'],\n ['name' => \"Plains Chippewa/Metis Music from Turtle... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plains-chippewa-metis-music-from-turtle-cd-various/2097037.p?id=92888&skuId=2097037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097037_sa.jpg\"}', 'upc' => '093074041123', 'provider' => 'bestbuy'],\n ['name' => \"This-a-Way, That-a-Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-a-way-that-a-way-cd/2097046.p?id=86874&skuId=2097046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097046.jpg\"}', 'upc' => '093074500224', 'provider' => 'bestbuy'],\n ['name' => \"Come Dance by the Ocean - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-dance-by-the-ocean-cd/2097055.p?id=86868&skuId=2097055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097055_sa.jpg\"}', 'upc' => '093074501429', 'provider' => 'bestbuy'],\n ['name' => \"Nursery Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nursery-days-cd/2097064.p?id=84462&skuId=2097064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097064_sa.jpg\"}', 'upc' => '093074503621', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-guitar-cd/2097117.p?id=156043&skuId=2097117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097117_sa.jpg\"}', 'upc' => '016351015921', 'provider' => 'bestbuy'],\n ['name' => \"Violin Jazz 1927-1934 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-jazz-1927-1934-cd/2097126.p?id=180700&skuId=2097126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097126_sa.jpg\"}', 'upc' => '016351016225', 'provider' => 'bestbuy'],\n ['name' => \"The Original Rolling Stone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-original-rolling-stone-cd/2097135.p?id=104261&skuId=2097135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097135_sa.jpg\"}', 'upc' => '016351017727', 'provider' => 'bestbuy'],\n ['name' => \"Texas Worried Blues: Complete Recorded Works... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-worried-blues-complete-recorded-works-cd/2097144.p?id=101717&skuId=2097144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097144_sa.jpg\"}', 'upc' => '016351018021', 'provider' => 'bestbuy'],\n ['name' => \"The River Wild (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-river-wild-blu-ray-disc/2097178.p?id=43516&skuId=2097178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097178_sa.jpg\"}', 'upc' => '025192094057', 'provider' => 'bestbuy'],\n ['name' => \"Effigy of the Forgotten - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/effigy-of-the-forgotten-cd/2097368.p?id=100721&skuId=2097368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097368.jpg\"}', 'upc' => '016861927523', 'provider' => 'bestbuy'],\n ['name' => \"Live Sample - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-sample-cd/2097466.p?id=122211&skuId=2097466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097466_sa.jpg\"}', 'upc' => '044688902720', 'provider' => 'bestbuy'],\n ['name' => \"Wedding Album: Songs That Say I Love You - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wedding-album-songs-that-say-i-love-you-cd-various/2097625.p?id=109179&skuId=2097625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097625_sa.jpg\"}', 'upc' => '063961911129', 'provider' => 'bestbuy'],\n ['name' => \"Chuggington: Let'S Ride The Rails (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chuggington-lets-ride-the-rails-dvd/2097718.p?id=2171310&skuId=2097718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097718.jpg\"}', 'upc' => '013132203294', 'provider' => 'bestbuy'],\n ['name' => \"Shreen [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shreen-single-cd/2097787.p?id=107686&skuId=2097787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097787.jpg\"}', 'upc' => '031895003029', 'provider' => 'bestbuy'],\n ['name' => \"Guilty [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guilty-single-cd/2097796.p?id=72717&skuId=2097796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097796.jpg\"}', 'upc' => '031895003326', 'provider' => 'bestbuy'],\n ['name' => \"Ambient 3: Day of Radiance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ambient-3-day-of-radiance-cd/2097858.p?id=88671&skuId=2097858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097858.JPG\"}', 'upc' => '017046157322', 'provider' => 'bestbuy'],\n ['name' => \"Pinkalicious - Nintendo DS\", 'description_short' => \"Do you love the color pink?\", 'description_long' => \"Do you love the color pink?\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pinkalicious-nintendo-ds/2097981.p?id=1218309758839&skuId=2097981', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2097981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2097\\/2097981_sa.jpg\"}', 'upc' => '834656085056', 'provider' => 'bestbuy'],\n ['name' => \"Country Dance - Nintendo Wii\", 'description_short' => \"Move to the beat of your favorite country song\", 'description_long' => \"Move to the beat of your favorite country song\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-dance-nintendo-wii/2098016.p?id=1218309755692&skuId=2098016', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2098016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2098\\/2098016_sa.jpg\"}', 'upc' => '834656086053', 'provider' => 'bestbuy'],\n ['name' => \"WakaWaka - Power+ Solar Charger and Light - Black\", 'description_short' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'description_long' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'price' => 79, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wakawaka-power-solar-charger-and-light-black/2098348.p?id=1219528553470&skuId=2098348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2098348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2098\\/2098348_sa.jpg\"}', 'upc' => '8718692050723', 'provider' => 'bestbuy'],\n ['name' => \"Rave Up with the Knickerbockers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rave-up-with-the-knickerbockers-cd/2098438.p?id=1472260&skuId=2098438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2098438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2098\\/2098438_sa.jpg\"}', 'upc' => '029667412223', 'provider' => 'bestbuy'],\n ['name' => \"Keep on Pushing/People Get Ready - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-on-pushing-people-get-ready-cd/2098456.p?id=1459286&skuId=2098456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2098456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2098\\/2098456_sa.jpg\"}', 'upc' => '029667413022', 'provider' => 'bestbuy'],\n ['name' => \"WakaWaka - Power+ Solar Charger and Light - White\", 'description_short' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'description_long' => \"WAKAWAKA Power+ Solar Charger and Light: Compatible with most USB-chargeable devices; Intivation SunBoost chip; 2200 mAh capacity; 1.5-amp output; recharges after 12 hours in the sun; provides up to 150 hours of LED illumination\", 'price' => 79, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wakawaka-power-solar-charger-and-light-white/2099301.p?id=1219528553405&skuId=2099301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099301_sa.jpg\"}', 'upc' => '8718692050747', 'provider' => 'bestbuy'],\n ['name' => \"Earth 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earth-2-cd/2099320.p?id=81240&skuId=2099320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099320_sa.jpg\"}', 'upc' => '098787018523', 'provider' => 'bestbuy'],\n ['name' => \"Tony Gable & 206 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tony-gable-206-cd/2099473.p?id=1366574&skuId=2099473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099473.jpg\"}', 'upc' => '053361302023', 'provider' => 'bestbuy'],\n ['name' => \"The Adolescents - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-adolescents-cd/2099507.p?id=1459111&skuId=2099507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099507_sa.jpg\"}', 'upc' => '018663100326', 'provider' => 'bestbuy'],\n ['name' => \"Only Theatre of Pain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-theatre-of-pain-cd/2099525.p?id=1459126&skuId=2099525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099525_sa.jpg\"}', 'upc' => '018663100722', 'provider' => 'bestbuy'],\n ['name' => \"Exploring the Axis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exploring-the-axis-cd/2099534.p?id=1459204&skuId=2099534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099534_sa.jpg\"}', 'upc' => '018663101521', 'provider' => 'bestbuy'],\n ['name' => \"Moonhead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonhead-cd/2099543.p?id=1459206&skuId=2099543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099543_sa.jpg\"}', 'upc' => '018663102023', 'provider' => 'bestbuy'],\n ['name' => \"World Of Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-of-today-cd/2099552.p?id=1459219&skuId=2099552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099552_sa.jpg\"}', 'upc' => '018663102122', 'provider' => 'bestbuy'],\n ['name' => \"In the Spanish Cave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-spanish-cave-cd/2099570.p?id=1459205&skuId=2099570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099570_sa.jpg\"}', 'upc' => '018663102726', 'provider' => 'bestbuy'],\n ['name' => \"Totally Lost - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/totally-lost-cd/2099589.p?id=1459220&skuId=2099589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099589_sa.jpg\"}', 'upc' => '018663102825', 'provider' => 'bestbuy'],\n ['name' => \"This One'S For The Ladies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-ones-for-the-ladies-cd/2099614.p?id=2305076&skuId=2099614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099614.jpg\"}', 'upc' => '018663103426', 'provider' => 'bestbuy'],\n ['name' => \"Dangerhouse, Vol. 1 [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dangerhouse-vol-1-pa-cd-various/2099632.p?id=1459133&skuId=2099632&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099632', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099632_sa.jpg\"}', 'upc' => '018663103921', 'provider' => 'bestbuy'],\n ['name' => \"Weird World, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/weird-world-vol-1-cd/2099641.p?id=1459216&skuId=2099641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099641_sa.jpg\"}', 'upc' => '018663104027', 'provider' => 'bestbuy'],\n ['name' => \"The Ruby Sea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ruby-sea-cd/2099669.p?id=1468891&skuId=2099669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099669_sa.jpg\"}', 'upc' => '018663104225', 'provider' => 'bestbuy'],\n ['name' => \"Sack Full of Silver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sack-full-of-silver-cd/2099696.p?id=2065376&skuId=2099696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099696.jpg\"}', 'upc' => '018663104829', 'provider' => 'bestbuy'],\n ['name' => \"Happen Happened - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happen-happened-cd/2099703.p?id=1474445&skuId=2099703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099703_sa.jpg\"}', 'upc' => '018663104928', 'provider' => 'bestbuy'],\n ['name' => \"One That Got Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-that-got-away-cd/2099712.p?id=2065377&skuId=2099712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099712.jpg\"}', 'upc' => '018663105222', 'provider' => 'bestbuy'],\n ['name' => \"Dead Air - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dead-air-cd/2099758.p?id=1462227&skuId=2099758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099758.jpg\"}', 'upc' => '018663105727', 'provider' => 'bestbuy'],\n ['name' => \"Another Wasted Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-wasted-night-cd/2099794.p?id=1365890&skuId=2099794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099794_sa.jpg\"}', 'upc' => '722975001324', 'provider' => 'bestbuy'],\n ['name' => \"Peking Spring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peking-spring-cd/2099801.p?id=1368956&skuId=2099801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099801_sa.jpg\"}', 'upc' => '722975002024', 'provider' => 'bestbuy'],\n ['name' => \"Step on It/Back on the Map - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-on-it-back-on-the-map-cd/2099829.p?id=99104&skuId=2099829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099829.jpg\"}', 'upc' => '722975002826', 'provider' => 'bestbuy'],\n ['name' => \"Sudden Death Overtime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sudden-death-overtime-cd/2099856.p?id=1365917&skuId=2099856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099856_sa.jpg\"}', 'upc' => '722975004028', 'provider' => 'bestbuy'],\n ['name' => \"Step One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/step-one-cd/2099874.p?id=90146&skuId=2099874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099874_sa.jpg\"}', 'upc' => '722975004226', 'provider' => 'bestbuy'],\n ['name' => \"Devils Night Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/devils-night-out-cd/2099883.p?id=91675&skuId=2099883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099883.jpg\"}', 'upc' => '722975004424', 'provider' => 'bestbuy'],\n ['name' => \"Pick Your King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pick-your-king-cd/2099892.p?id=95136&skuId=2099892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099892_sa.jpg\"}', 'upc' => '722975004523', 'provider' => 'bestbuy'],\n ['name' => \"Power (Best of SSD) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/power-best-of-ssd-cd/2099945.p?id=99972&skuId=2099945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099945_sa.jpg\"}', 'upc' => '722975005025', 'provider' => 'bestbuy'],\n ['name' => \"Fall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fall-cd/2099972.p?id=92515&skuId=2099972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099972_sa.jpg\"}', 'upc' => '722975005421', 'provider' => 'bestbuy'],\n ['name' => \"Love Shim - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-shim-cd/2099981.p?id=1516614&skuId=2099981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099981_sa.jpg\"}', 'upc' => '722975005520', 'provider' => 'bestbuy'],\n ['name' => \"Misery Loves Company - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misery-loves-company-cd/2099990.p?id=82951&skuId=2099990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2099990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2099\\/2099990_sa.jpg\"}', 'upc' => '722975005728', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 40-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 40 pints of water per day; 4.5 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 40 pints of water per day; 4.5 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-40-pint-dehumidifier-white/2100001.p?id=1219068849325&skuId=2100001', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100001_sa.jpg\"}', 'upc' => '876840006331', 'provider' => 'bestbuy'],\n ['name' => \"Nobody But Lyres [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nobody-but-lyres-ep-cd/2100005.p?id=2275439&skuId=2100005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100005_sa.jpg\"}', 'upc' => '722975005827', 'provider' => 'bestbuy'],\n ['name' => \"The First Seven Inches...And Then Some! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-seven-inches-and-then-some-cd/2100014.p?id=99152&skuId=2100014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100014_sa.jpg\"}', 'upc' => '722975005926', 'provider' => 'bestbuy'],\n ['name' => \"More Noise and Other Disturbances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-noise-and-other-disturbances-cd/2100023.p?id=91677&skuId=2100023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100023_sa.jpg\"}', 'upc' => '722975006022', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 60-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 60 pints of water per day; 4.9 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 60 pints of water per day; 4.9 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-60-pint-dehumidifier-white/2100029.p?id=1219068849590&skuId=2100029', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100029_sa.jpg\"}', 'upc' => '876840006348', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 70-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 70 pints of water per day; 6.9 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 70 pints of water per day; 6.9 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'price' => 319.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-70-pint-dehumidifier-white/2100038.p?id=1219068858197&skuId=2100038', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100038_sa.jpg\"}', 'upc' => '876840006355', 'provider' => 'bestbuy'],\n ['name' => \"What to Do About Them - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-to-do-about-them-cd/2100041.p?id=2393603&skuId=2100041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100041_sa.jpg\"}', 'upc' => '722975006527', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 30-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 30 pints of water per day; 3 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 30 pints of water per day; 3 amps; soft-touch electronic controls; Memory IC function; washable air filter; normal and turbo fan speeds\", 'price' => 224.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-30-pint-dehumidifier-white/2100047.p?id=1219068855428&skuId=2100047', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100047_sa.jpg\"}', 'upc' => '876840006324', 'provider' => 'bestbuy'],\n ['name' => \"Happy Now... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-now-cd/2100050.p?id=90021&skuId=2100050&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100050', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100050_sa.jpg\"}', 'upc' => '722975006626', 'provider' => 'bestbuy'],\n ['name' => \"Evilution - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evilution-cd/2100078.p?id=102825&skuId=2100078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100078_sa.jpg\"}', 'upc' => '722975007029', 'provider' => 'bestbuy'],\n ['name' => \"Vanilla Sky (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vanilla-sky-blu-ray-disc/2100083.p?id=38922&skuId=2100083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100083_sa.jpg\"}', 'upc' => '883929335039', 'provider' => 'bestbuy'],\n ['name' => \"Knock Your Block Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/knock-your-block-off-cd/2100087.p?id=99153&skuId=2100087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100087_sa.jpg\"}', 'upc' => '722975007128', 'provider' => 'bestbuy'],\n ['name' => \"The Nativity (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-nativity-dvd/2100092.p?id=2815919&skuId=2100092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100092_sa.jpg\"}', 'upc' => '883929342112', 'provider' => 'bestbuy'],\n ['name' => \"Last of the Angels [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-of-the-angels-single-cd/2100096.p?id=1517634&skuId=2100096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100096_sa.jpg\"}', 'upc' => '722975007227', 'provider' => 'bestbuy'],\n ['name' => \"Take This Ride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-this-ride-cd/2100103.p?id=92516&skuId=2100103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100103_sa.jpg\"}', 'upc' => '722975007326', 'provider' => 'bestbuy'],\n ['name' => \"A Charlie Brown Christmas (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-charlie-brown-christmas-dvd-2-disc/2100107.p?id=20923&skuId=2100107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100107_sa.jpg\"}', 'upc' => '883929341627', 'provider' => 'bestbuy'],\n ['name' => \"Spore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spore-cd/2100112.p?id=99902&skuId=2100112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100112_sa.jpg\"}', 'upc' => '722975007425', 'provider' => 'bestbuy'],\n ['name' => \"Smurfs: Magical Smurf Adventure 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smurfs-magical-smurf-adventure-2-dvd/2100116.p?id=2731750&skuId=2100116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2168\\/21680443.jpg\"}', 'upc' => '883929337699', 'provider' => 'bestbuy'],\n ['name' => \"Fear God [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fear-god-ep-cd/2100121.p?id=1517636&skuId=2100121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100121_sa.jpg\"}', 'upc' => '722975007524', 'provider' => 'bestbuy'],\n ['name' => \"Let In Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-in-life-cd/2100149.p?id=97795&skuId=2100149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100149_sa.jpg\"}', 'upc' => '722975007722', 'provider' => 'bestbuy'],\n ['name' => \"No Reaction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 2.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-reaction-cd/2100176.p?id=107277&skuId=2100176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100176_sa.jpg\"}', 'upc' => '722975008422', 'provider' => 'bestbuy'],\n ['name' => \"Burn Out Your Name - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burn-out-your-name-cd/2100185.p?id=107282&skuId=2100185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100185_sa.jpg\"}', 'upc' => '722975008828', 'provider' => 'bestbuy'],\n ['name' => \"End on End - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/end-on-end-cd/2100194.p?id=96745&skuId=2100194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100194.jpg\"}', 'upc' => '718750727121', 'provider' => 'bestbuy'],\n ['name' => \"Fabuley - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fabuley-cd/2100210.p?id=85550&skuId=2100210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100210_sa.jpg\"}', 'upc' => '718751795921', 'provider' => 'bestbuy'],\n ['name' => \"Super Genius - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-genius-cd/2100229.p?id=77829&skuId=2100229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100229.jpg\"}', 'upc' => '718751796324', 'provider' => 'bestbuy'],\n ['name' => \"Talking Songs for Walking/Necklace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talking-songs-for-walking-necklace-cd/2100238.p?id=89927&skuId=2100238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100238_sa.jpg\"}', 'upc' => '718751796621', 'provider' => 'bestbuy'],\n ['name' => \"Acid to Ashes Rust to Dust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acid-to-ashes-rust-to-dust-cd/2100247.p?id=98412&skuId=2100247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100247_sa.jpg\"}', 'upc' => '718751797222', 'provider' => 'bestbuy'],\n ['name' => \"Holy Rollers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/holy-rollers-cd/2100256.p?id=173523&skuId=2100256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100256.jpg\"}', 'upc' => '718751798625', 'provider' => 'bestbuy'],\n ['name' => \"The Faith/Void [Split] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-faith-void-split-cd/2100265.p?id=155197&skuId=2100265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100265_sa.jpg\"}', 'upc' => '718751798724', 'provider' => 'bestbuy'],\n ['name' => \"The Lurid Traversal of Route 7 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lurid-traversal-of-route-7-cd/2100283.p?id=154147&skuId=2100283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100283_sa.jpg\"}', 'upc' => '718751798922', 'provider' => 'bestbuy'],\n ['name' => \"Soda Pop Rip Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soda-pop-rip-off-cd/2100292.p?id=115591&skuId=2100292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100292_sa.jpg\"}', 'upc' => '718751799127', 'provider' => 'bestbuy'],\n ['name' => \"Sounds Of The Season - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sounds-of-the-season-cd/2100381.p?id=1514479&skuId=2100381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100381.jpg\"}', 'upc' => '095182010329', 'provider' => 'bestbuy'],\n ['name' => \"Traditions (Hammered Dulcimer... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditions-hammered-dulcimer-cd/2100390.p?id=1459195&skuId=2100390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100390.jpg\"}', 'upc' => '095182010428', 'provider' => 'bestbuy'],\n ['name' => \"Mist and Stone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mist-and-stone-cd/2100407.p?id=1475804&skuId=2100407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100407.jpg\"}', 'upc' => '095182010626', 'provider' => 'bestbuy'],\n ['name' => \"Dance Upon the Shore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-upon-the-shore-cd/2100425.p?id=1459224&skuId=2100425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100425.jpg\"}', 'upc' => '095182010923', 'provider' => 'bestbuy'],\n ['name' => \"Grey Eyed Morn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grey-eyed-morn-cd/2100434.p?id=1468611&skuId=2100434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100434_sa.jpg\"}', 'upc' => '095182020120', 'provider' => 'bestbuy'],\n ['name' => \"Celtic Lace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celtic-lace-cd/2100443.p?id=1459124&skuId=2100443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100443.jpg\"}', 'upc' => '095182020328', 'provider' => 'bestbuy'],\n ['name' => \"Morning Aire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/morning-aire-cd/2100452.p?id=1577164&skuId=2100452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100452.jpg\"}', 'upc' => '095182020427', 'provider' => 'bestbuy'],\n ['name' => \"The Waters and the Wild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-waters-and-the-wild-cd/2100461.p?id=1468612&skuId=2100461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100461.jpg\"}', 'upc' => '095182020526', 'provider' => 'bestbuy'],\n ['name' => \"Whispering Stones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whispering-stones-cd/2100470.p?id=1459225&skuId=2100470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100470.jpg\"}', 'upc' => '095182020625', 'provider' => 'bestbuy'],\n ['name' => \"Soft May Morn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soft-may-morn-cd/2100489.p?id=1459226&skuId=2100489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2100489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2100\\/2100489.jpg\"}', 'upc' => '095182020823', 'provider' => 'bestbuy'],\n ['name' => \"Duracell - CopperTop AAA Batteries (24-Pack) - Black\", 'description_short' => \"Alkaline chemistry; 1.5V; Duralock Power Preserve technology; shelf life up to 10 years\", 'description_long' => \"Alkaline chemistry; 1.5V; Duralock Power Preserve technology; shelf life up to 10 years\", 'price' => 17.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duracell-coppertop-aaa-batteries-24-pack-black/2101019.p?id=1219068628946&skuId=2101019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2101019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2101\\/2101019_sa.jpg\"}', 'upc' => '041333002132', 'provider' => 'bestbuy'],\n ['name' => \"Juggernaut: Alpha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juggernaut-alpha-cd/2101037.p?id=3333738&skuId=2101037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2101037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2101\\/2101037_sa.jpg\"}', 'upc' => '817424013499', 'provider' => 'bestbuy'],\n ['name' => \"Juggernaut: Omega [CD/DVD] [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juggernaut-omega-cd-dvd-cd-dvd-cd-dvd/2101046.p?id=3333739&skuId=2101046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2101046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2101\\/2101046_sa.jpg\"}', 'upc' => '817424014632', 'provider' => 'bestbuy'],\n ['name' => \"Rancid [1993] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rancid-1993-cd/2101656.p?id=95935&skuId=2101656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2101656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2101\\/2101656.jpg\"}', 'upc' => '045778642823', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for Apple® iPad® Air 2 - Black\", 'description_short' => \"Compatible with Apple iPad Air 2; durable construction; built-in screen protector\", 'description_long' => \"Compatible with Apple iPad Air 2; durable construction; built-in screen protector\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-apple-ipad-air-2-black/2102072.p?id=1219528553870&skuId=2102072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2102072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2102\\/2102072_sa.jpg\"}', 'upc' => '660543369585', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for Apple® iPad® Air 2 - Pink\", 'description_short' => \"Compatible with Apple iPad Air 2; durable construction; built-in screen protector\", 'description_long' => \"Compatible with Apple iPad Air 2; durable construction; built-in screen protector\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-apple-ipad-air-2-pink/2103017.p?id=1219528553016&skuId=2103017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103017_sa.jpg\"}', 'upc' => '660543369608', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for Apple® iPad® mini, iPad mini 2 and iPad mini 3 - Black\", 'description_short' => \"Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; durable construction; built-in screen protector\", 'description_long' => \"Compatible with Apple iPad mini, iPad mini 2 and iPad mini 3; durable construction; built-in screen protector\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-3-black/2103026.p?id=1219528554522&skuId=2103026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103026_sa.jpg\"}', 'upc' => '660543369615', 'provider' => 'bestbuy'],\n ['name' => \"Saving Santa (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saving-santa-dvd/2103035.p?id=3276400&skuId=2103035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '013132623696', 'provider' => 'bestbuy'],\n ['name' => \"Teen Comedy Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teen-comedy-collection-4-film-favorites-2-discs-dvd/2103037.p?id=2179930&skuId=2103037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103037_sa.jpg\"}', 'upc' => '025192099779', 'provider' => 'bestbuy'],\n ['name' => \"Classic Western Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-western-collection-4-film-favorites-2-discs-dvd/2103046.p?id=2179919&skuId=2103046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103046_sa.jpg\"}', 'upc' => '025192099786', 'provider' => 'bestbuy'],\n ['name' => \"When Santa Fell To Earth (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-santa-fell-to-earth-dvd/2103053.p?id=3276387&skuId=2103053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103053_sa.jpg\"}', 'upc' => '013132623443', 'provider' => 'bestbuy'],\n ['name' => \"Dog-Gone Holiday Fun Gift Set (DVD) (5 Disc) (Boxed Set) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dog-gone-holiday-fun-gift-set-dvd-5-disc-boxed-set-gift-set/2103062.p?id=3294610&skuId=2103062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '013132625065', 'provider' => 'bestbuy'],\n ['name' => \"Comedy Favorites Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comedy-favorites-collection-4-film-favorites-2-discs-dvd/2103091.p?id=2179921&skuId=2103091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103091_sa.jpg\"}', 'upc' => '025192099793', 'provider' => 'bestbuy'],\n ['name' => \"Cult Horror Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cult-horror-collection-4-film-favorites-2-discs-dvd/2103116.p?id=2179922&skuId=2103116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103116_sa.jpg\"}', 'upc' => '025192099908', 'provider' => 'bestbuy'],\n ['name' => \"Classic War Collection: 4 Film Favorites [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-war-collection-4-film-favorites-2-discs-dvd/2103143.p?id=2179918&skuId=2103143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103143_sa.jpg\"}', 'upc' => '025192099939', 'provider' => 'bestbuy'],\n ['name' => \"Mine to Kill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mine-to-kill-cd/2103351.p?id=270035&skuId=2103351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103351_sa.jpg\"}', 'upc' => '032357209027', 'provider' => 'bestbuy'],\n ['name' => \"Clouds - CD - Live\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clouds-cd-live/2103397.p?id=101827&skuId=2103397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103397.jpg\"}', 'upc' => '727701773629', 'provider' => 'bestbuy'],\n ['name' => \"Elite Screens - SableFrame Series 110\\\" Home Theater Projector Screen - Black\", 'description_short' => \"16:9 aspect ratio; CineWhite 1.1 flat, tensioned screen material; aluminum frame with black velvet surfacing; black screen backing; adjustable fix plates; fixed installation\", 'description_long' => \"16:9 aspect ratio; CineWhite 1.1 flat, tensioned screen material; aluminum frame with black velvet surfacing; black screen backing; adjustable fix plates; fixed installation\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elite-screens-sableframe-series-110-home-theater-projector-screen-black/2103461.p?id=1218309065076&skuId=2103461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103461_sa.jpg\"}', 'upc' => '848448021375', 'provider' => 'bestbuy'],\n ['name' => \"The Guitar Artistry of Enrique Coria - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-guitar-artistry-of-enrique-coria-cd/2103618.p?id=78700&skuId=2103618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103618.jpg\"}', 'upc' => '715949100628', 'provider' => 'bestbuy'],\n ['name' => \"Cruisin' With Porky Chedwick - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruisin-with-porky-chedwick-cd/2103627.p?id=79363&skuId=2103627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103627_sa.jpg\"}', 'upc' => '015668300027', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Cooktop - White\", 'description_short' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'description_long' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-cooktop-white/2103647.p?id=1218309759373&skuId=2103647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103647_sa.jpg\"}', 'upc' => '883049225463', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Cooktop - Stainless Steel\", 'description_short' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'description_long' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-cooktop-stainless-steel/2103683.p?id=1218309755820&skuId=2103683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103683_sa.jpg\"}', 'upc' => '883049225487', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Gas Cooktop - Stainless/Stainless look\", 'description_short' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'description_long' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-gas-cooktop-stainless-stainless-look/2103692.p?id=1218309760597&skuId=2103692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103692_sa.jpg\"}', 'upc' => '883049227634', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Built-In Electric Cooktop - Stainless Steel\", 'description_short' => \"5 elements; 100-3000 watts of power; 2 dual radiant elements; warm zone; AccuSimmer\", 'description_long' => \"5 elements; 100-3000 watts of power; 2 dual radiant elements; warm zone; AccuSimmer\", 'price' => 949.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-built-in-electric-cooktop-stainless-steel/2103738.p?id=1218309758262&skuId=2103738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103738_sa.jpg\"}', 'upc' => '883049225562', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Built-In Electric Cooktop - Stainless Steel\", 'description_short' => \"Tap touch controls; 5 elements; 1200-3000 watts of power; dual and triple radiant elements; AccuSimmer Plus\", 'description_long' => \"Tap touch controls; 5 elements; 1200-3000 watts of power; dual and triple radiant elements; AccuSimmer Plus\", 'price' => 1299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-built-in-electric-cooktop-stainless-steel/2103765.p?id=1218309756669&skuId=2103765&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103765', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103765_sa.jpg\"}', 'upc' => '883049225609', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Cooktop - Black\", 'description_short' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'description_long' => \"4 elements; 1200-3000 watts of power; dual radiant element; AccuSimmer\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-cooktop-black/2103774.p?id=1218309760288&skuId=2103774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103774_sa.jpg\"}', 'upc' => '883049225456', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Gas Cooktop - White\", 'description_short' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'description_long' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-gas-cooktop-white/2103783.p?id=1218309756755&skuId=2103783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103783_sa.jpg\"}', 'upc' => '883049227627', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Cooktop - Stainless Steel\", 'description_short' => \"Tap Touch controls; 5 elements; 100-2500 watts of power; dual radiant element; warm zone; AccuSimmer\", 'description_long' => \"Tap Touch controls; 5 elements; 100-2500 watts of power; dual radiant element; warm zone; AccuSimmer\", 'price' => 1149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-cooktop-stainless-steel/2103792.p?id=1218309756727&skuId=2103792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103792_sa.jpg\"}', 'upc' => '883049225418', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Built-In Electric Cooktop - Black\", 'description_short' => \"5 elements; 100-3000 watts of power; 2 dual radiant elements; warm zone; AccuSimmer\", 'description_long' => \"5 elements; 100-3000 watts of power; 2 dual radiant elements; warm zone; AccuSimmer\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-built-in-electric-cooktop-black/2103829.p?id=1218309756354&skuId=2103829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103829_sa.jpg\"}', 'upc' => '883049225548', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Cooktop - Black\", 'description_short' => \"Tap Touch controls; 5 elements; 100-2500 watts of power; dual radiant element; warm zone; AccuSimmer\", 'description_long' => \"Tap Touch controls; 5 elements; 100-2500 watts of power; dual radiant element; warm zone; AccuSimmer\", 'price' => 999.99, 'sale_price' => 799.99, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-cooktop-black/2103856.p?id=1218309757418&skuId=2103856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103856_sa.jpg\"}', 'upc' => '883049225517', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 36\\\" Built-In Electric Cooktop - Black\", 'description_short' => \"Tap touch controls; 5 elements; 1200-3000 watts of power; dual and triple radiant elements; AccuSimmer Plus\", 'description_long' => \"Tap touch controls; 5 elements; 1200-3000 watts of power; dual and triple radiant elements; AccuSimmer Plus\", 'price' => 1199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-36-built-in-electric-cooktop-black/2103865.p?id=1218309760991&skuId=2103865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103865_sa.jpg\"}', 'upc' => '883049225593', 'provider' => 'bestbuy'],\n ['name' => \"You & Your Sister - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-your-sister-cd/2103912.p?id=103261&skuId=2103912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103912_sa.jpg\"}', 'upc' => '054895117121', 'provider' => 'bestbuy'],\n ['name' => \"Expelled - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/expelled-cd/2103921.p?id=96752&skuId=2103921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103921_sa.jpg\"}', 'upc' => '054895210129', 'provider' => 'bestbuy'],\n ['name' => \"Grim - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grim-cd/2103930.p?id=73355&skuId=2103930&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103930', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103930_sa.jpg\"}', 'upc' => '054895210426', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Gas Cooktop - Black\", 'description_short' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'description_long' => \"4 burners; 5,000-10,500 BTU burner range; AccuSimmer burner\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-gas-cooktop-black/2103938.p?id=1218309756908&skuId=2103938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103938_sa.jpg\"}', 'upc' => '883049227610', 'provider' => 'bestbuy'],\n ['name' => \"Apathetic [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/apathetic-single-cd/2103949.p?id=1576821&skuId=2103949&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103949', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103949_sa.jpg\"}', 'upc' => '054895210525', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Murder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-murder-cd/2103958.p?id=84666&skuId=2103958&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103958', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103958.jpg\"}', 'upc' => '054895210624', 'provider' => 'bestbuy'],\n ['name' => \"For Lovers Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-lovers-only-cd/2103967.p?id=99724&skuId=2103967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103967_sa.jpg\"}', 'upc' => '054895210822', 'provider' => 'bestbuy'],\n ['name' => \"At Yoshi's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-yoshis-cd/2103976.p?id=65083&skuId=2103976&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103976', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103976_sa.jpg\"}', 'upc' => '730182202120', 'provider' => 'bestbuy'],\n ['name' => \"Shukuru - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shukuru-cd/2103985.p?id=70619&skuId=2103985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2103985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2103\\/2103985_sa.jpg\"}', 'upc' => '730182202229', 'provider' => 'bestbuy'],\n ['name' => \"Impressions of Copenhagen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/impressions-of-copenhagen-cd/2104001.p?id=64439&skuId=2104001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104001_sa.jpg\"}', 'upc' => '730182202427', 'provider' => 'bestbuy'],\n ['name' => \"Activision - Skylanders Swap Force Trading Cards - Multi\", 'description_short' => \"Everything you need to show off your Skylanders Swap Force fandom\", 'description_long' => \"Everything you need to show off your Skylanders Swap Force fandom\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/activision-skylanders-swap-force-trading-cards-multi/2104007.p?id=1219068858325&skuId=2104007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104007_sa.jpg\"}', 'upc' => '887521008834', 'provider' => 'bestbuy'],\n ['name' => \"Hard Champion: Art Blakey and the Jazz Messengers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-champion-art-blakey-and-the-jazz-messengers-cd/2104010.p?id=64349&skuId=2104010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104010.jpg\"}', 'upc' => '730182202526', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-vol-1-cd/2104029.p?id=66146&skuId=2104029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104029_sa.jpg\"}', 'upc' => '730182202625', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-vol-2-cd/2104038.p?id=66147&skuId=2104038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104038_sa.jpg\"}', 'upc' => '730182202724', 'provider' => 'bestbuy'],\n ['name' => \"Saving Santa (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saving-santa-blu-ray-disc-2-disc/2104043.p?id=3276400&skuId=2104043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104043_sa.jpg\"}', 'upc' => '013132623702', 'provider' => 'bestbuy'],\n ['name' => \"Suntan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suntan-cd/2104047.p?id=64801&skuId=2104047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104047_sa.jpg\"}', 'upc' => '730182203028', 'provider' => 'bestbuy'],\n ['name' => \"Tickety Toc: Christmas Present Time (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tickety-toc-christmas-present-time-dvd/2104052.p?id=3276317&skuId=2104052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2559\\/25597186.jpg\"}', 'upc' => '013132620367', 'provider' => 'bestbuy'],\n ['name' => \"Animated Holiday Gift Set (DVD) (5 Disc) (Boxed Set) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/animated-holiday-gift-set-dvd-5-disc-boxed-set-gift-set/2104061.p?id=3294712&skuId=2104061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2574\\/25746573.jpg\"}', 'upc' => '013132625072', 'provider' => 'bestbuy'],\n ['name' => \"Blue Autumn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-autumn-cd/2104074.p?id=63559&skuId=2104074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104074_sa.jpg\"}', 'upc' => '730182203523', 'provider' => 'bestbuy'],\n ['name' => \"In Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-concert-cd/2104083.p?id=67414&skuId=2104083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104083.jpg\"}', 'upc' => '730182204827', 'provider' => 'bestbuy'],\n ['name' => \"Jon & Billy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jon-billy-cd/2104092.p?id=66170&skuId=2104092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104092_sa.jpg\"}', 'upc' => '730182205220', 'provider' => 'bestbuy'],\n ['name' => \"Guardian Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guardian-angels-cd/2104109.p?id=71772&skuId=2104109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104109.jpg\"}', 'upc' => '730182205527', 'provider' => 'bestbuy'],\n ['name' => \"A Song I Thought I Heard Buddy Sing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-song-i-thought-i-heard-buddy-sing-cd/2104127.p?id=66865&skuId=2104127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104127.jpg\"}', 'upc' => '730182205725', 'provider' => 'bestbuy'],\n ['name' => \"Blues Hang Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-hang-out-cd/2104145.p?id=77995&skuId=2104145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104145_sa.jpg\"}', 'upc' => '730182600827', 'provider' => 'bestbuy'],\n ['name' => \"Slideslinger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slideslinger-cd/2104154.p?id=85991&skuId=2104154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104154.jpg\"}', 'upc' => '730182600926', 'provider' => 'bestbuy'],\n ['name' => \"Luther's Blues [Evidence] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luthers-blues-evidence-cd/2104163.p?id=87195&skuId=2104163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104163_sa.jpg\"}', 'upc' => '730182601022', 'provider' => 'bestbuy'],\n ['name' => \"Boogie Woogie King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-woogie-king-cd/2104172.p?id=94711&skuId=2104172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104172_sa.jpg\"}', 'upc' => '730182601121', 'provider' => 'bestbuy'],\n ['name' => \"Love Me Papa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-me-papa-cd/2104181.p?id=72766&skuId=2104181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104181_sa.jpg\"}', 'upc' => '730182601527', 'provider' => 'bestbuy'],\n ['name' => \"Let's Pick It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-pick-it-cd/2104190.p?id=76658&skuId=2104190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104190_sa.jpg\"}', 'upc' => '730182603729', 'provider' => 'bestbuy'],\n ['name' => \"Airbusters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/airbusters-cd/2104207.p?id=89309&skuId=2104207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104207_sa.jpg\"}', 'upc' => '730182603828', 'provider' => 'bestbuy'],\n ['name' => \"White Windows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-windows-cd/2104216.p?id=81332&skuId=2104216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104216_sa.jpg\"}', 'upc' => '730182603927', 'provider' => 'bestbuy'],\n ['name' => \"Cecil Taylor Unit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cecil-taylor-unit-cd/2104243.p?id=1459107&skuId=2104243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104243_sa.jpg\"}', 'upc' => '093228020127', 'provider' => 'bestbuy'],\n ['name' => \"3 Phasis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-phasis-cd/2104252.p?id=1459106&skuId=2104252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104252_sa.jpg\"}', 'upc' => '093228030324', 'provider' => 'bestbuy'],\n ['name' => \"The Texas Twister - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-texas-twister-cd/2104261.p?id=1459105&skuId=2104261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104261_sa.jpg\"}', 'upc' => '093228035220', 'provider' => 'bestbuy'],\n ['name' => \"Powwow Songs: Music of the Plains Indians - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/powwow-songs-music-of-the-plains-indians-cd-various/2104298.p?id=1468890&skuId=2104298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104298_sa.jpg\"}', 'upc' => '093228034322', 'provider' => 'bestbuy'],\n ['name' => \"Sitting Pretty - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sitting-pretty-cd/2104305.p?id=2244322&skuId=2104305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104305.jpg\"}', 'upc' => '093228038726', 'provider' => 'bestbuy'],\n ['name' => \"Why I Like Coffee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-i-like-coffee-cd/2104314.p?id=1459103&skuId=2104314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104314.jpg\"}', 'upc' => '093228041924', 'provider' => 'bestbuy'],\n ['name' => \"Too Much Sleep - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-much-sleep-cd/2104494.p?id=2444087&skuId=2104494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104494_sa.jpg\"}', 'upc' => '738641003127', 'provider' => 'bestbuy'],\n ['name' => \"Project Success - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-success-cd/2104564.p?id=1465529&skuId=2104564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104564_sa.jpg\"}', 'upc' => '738641006326', 'provider' => 'bestbuy'],\n ['name' => \"Bill Kennedy's Showtime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-kennedys-showtime-cd/2104573.p?id=1577485&skuId=2104573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2104573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2104\\/2104573.jpg\"}', 'upc' => '738641006425', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Built-In Electric Induction Cooktop - Black\", 'description_short' => \"Glass touch controls; 4 elements; 1400-3200 watts of power; induction technology; boost feature; simmer function\", 'description_long' => \"Glass touch controls; 4 elements; 1400-3200 watts of power; induction technology; boost feature; simmer function\", 'price' => 1349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-built-in-electric-induction-cooktop-black/2105053.p?id=1218309758364&skuId=2105053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2105053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2105\\/2105053_sa.jpg\"}', 'upc' => '883049204710', 'provider' => 'bestbuy'],\n ['name' => \"If I Don't Six - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-i-dont-six-cd/2105126.p?id=106654&skuId=2105126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2105126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2105\\/2105126_sa.jpg\"}', 'upc' => '036172002924', 'provider' => 'bestbuy'],\n ['name' => \"Chief - Perforated Steel Door for 44U E1 Racks - Black\", 'description_short' => \"From our expanded online assortment; reversible design; enhances passive airflow; lock included\", 'description_long' => \"From our expanded online assortment; reversible design; enhances passive airflow; lock included\", 'price' => 359.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chief-perforated-steel-door-for-44u-e1-racks-black/2105141.p?id=1218459139487&skuId=2105141', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2105141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2105\\/2105141_rc.jpg\"}', 'upc' => '670429370840', 'provider' => 'bestbuy'],\n ['name' => \"Chief - 12V On/Off Thermostat Control for Select Chief Raxxess Series Fan Panels - Black\", 'description_short' => \"From our expanded online assortment; compatible with select Chief Raxxess Series fan panels; accommodates up to 2 fan panels; turns fans on at 85&#176; and off at 75&#176;\", 'description_long' => \"From our expanded online assortment; compatible with select Chief Raxxess Series fan panels; accommodates up to 2 fan panels; turns fans on at 85&#176; and off at 75&#176;\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chief-12v-on-off-thermostat-control-for-select-chief-raxxess-series-fan-panels-black/2105266.p?id=1218459127931&skuId=2105266', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2105266', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2105\\/2105266_rc.jpg\"}', 'upc' => '670429370307', 'provider' => 'bestbuy'],\n ['name' => \"Hyperdimension Neptunia - PlayStation 3\", 'description_short' => \"Battle to save the world of gaming\", 'description_long' => \"Battle to save the world of gaming\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hyperdimension-neptunia-playstation-3/2106052.p?id=1218309759770&skuId=2106052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106052.jpg\"}', 'upc' => '813633010984', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - Rectangle Series InstaLLock New Construction Bracket\", 'description_short' => \"SPEAKERCRAFT Rectangle Series InstaLLock New Construction Bracket: Fits MT6, WH6.0RT, WH6.1RT and WH6.2RT speakers; InstaLLock design; 6&quot; size\", 'description_long' => \"SPEAKERCRAFT Rectangle Series InstaLLock New Construction Bracket: Fits MT6, WH6.0RT, WH6.1RT and WH6.2RT speakers; InstaLLock design; 6&quot; size\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-rectangle-series-installock-new-construction-bracket/2106098.p?id=1218309753873&skuId=2106098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106098_sa.jpg\"}', 'upc' => '664254009815', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - InstaLLock Round New Construction Bracket\", 'description_short' => \"SPEAKERCRAFT InstaLLock Round New Construction Bracket: Fits most 8.2BAS, AIM8, AIM8 DT, AIM Wide, CRS8, DT8 Zero and TIME Five speakers; InstaLLock design; 8&quot; size\", 'description_long' => \"SPEAKERCRAFT InstaLLock Round New Construction Bracket: Fits most 8.2BAS, AIM8, AIM8 DT, AIM Wide, CRS8, DT8 Zero and TIME Five speakers; InstaLLock design; 8&quot; size\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-installock-round-new-construction-bracket/2106113.p?id=1218309756085&skuId=2106113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106113_sa.jpg\"}', 'upc' => '664254009839', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - InstaLLock New Construction Bracket\", 'description_short' => \"SPEAKERCRAFT InstaLLock New Construction Bracket: Compatible with AIM LCR series speakers; InstaLLock design\", 'description_long' => \"SPEAKERCRAFT InstaLLock New Construction Bracket: Compatible with AIM LCR series speakers; InstaLLock design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-installock-new-construction-bracket/2106122.p?id=1218309758955&skuId=2106122', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106122_sc.jpg\"}', 'upc' => '664254009785', 'provider' => 'bestbuy'],\n ['name' => \"SpeakerCraft - InstaLLock Round New Construction Bracket\", 'description_short' => \"SPEAKERCRAFT InstaLLock Round New Construction Bracket: Fits most AccuFit CRS7, DT7 and Ultra Slim, AIM7, AIM7 DT, CRS6, DT6 Zero, WH6.0R and WH6.1R speakers; InstaLLock design; 6&quot; size\", 'description_long' => \"SPEAKERCRAFT InstaLLock Round New Construction Bracket: Fits most AccuFit CRS7, DT7 and Ultra Slim, AIM7, AIM7 DT, CRS6, DT6 Zero, WH6.0R and WH6.1R speakers; InstaLLock design; 6&quot; size\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speakercraft-installock-round-new-construction-bracket/2106131.p?id=1218309759088&skuId=2106131', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106131_sc.jpg\"}', 'upc' => '664254009822', 'provider' => 'bestbuy'],\n ['name' => \"Alexander [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alexander-lp-vinyl/2106177.p?id=2182751&skuId=2106177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1901\\/19018628.jpg\"}', 'upc' => '601091065710', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Jimmy Dorsey & His Orchestra,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-jimmy-dorsey-his-orchestra-cd/2106919.p?id=65759&skuId=2106919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106919_sa.jpg\"}', 'upc' => '014921010123', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Larry Clinton & His Orchestra... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-larry-clinton-his-orchestra-cd/2106928.p?id=65019&skuId=2106928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106928.jpg\"}', 'upc' => '014921010925', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Blue Barron & His Orchestra, Vol.... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-blue-barron-his-orchestra-vol-cd/2106937.p?id=63983&skuId=2106937&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106937_sa.jpg\"}', 'upc' => '014921011021', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Dick Jurgens & His Orchestra,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-dick-jurgens-his-orchestra-cd/2106946.p?id=68123&skuId=2106946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106946_sa.jpg\"}', 'upc' => '014921011120', 'provider' => 'bestbuy'],\n ['name' => \"Time After Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-after-time-cd/2106955.p?id=69408&skuId=2106955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106955_sa.jpg\"}', 'upc' => '014921015425', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Tiny Hill and His Orchestra,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-tiny-hill-and-his-orchestra-cd/2106964.p?id=67433&skuId=2106964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106964_sa.jpg\"}', 'upc' => '014921015920', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Shep Fields and His Rippling... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-shep-fields-and-his-rippling-cd/2106973.p?id=66248&skuId=2106973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106973_sa.jpg\"}', 'upc' => '014921017924', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Guy Lombardo & His Royal... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-guy-lombardo-his-royal-cd/2106982.p?id=89558&skuId=2106982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106982_sa.jpg\"}', 'upc' => '014921018723', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected June Christy with the Kentones... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-june-christy-with-the-kentones-cd/2106991.p?id=64962&skuId=2106991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2106991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2106\\/2106991_sa.jpg\"}', 'upc' => '014921021921', 'provider' => 'bestbuy'],\n ['name' => \"Farewell Performances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/farewell-performances-cd/2107008.p?id=201405&skuId=2107008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107008.jpg\"}', 'upc' => '014921024823', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate NES Remix - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Get ready to experience your favorite NES-era 8-bit games in an all-new way\", 'description_long' => \"Get ready to experience your favorite NES-era 8-bit games in an all-new way\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-nes-remix-pre-owned-nintendo-3ds/2107013.p?id=1219528551187&skuId=2107013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107013_sa.jpg\"}', 'upc' => '799007841616', 'provider' => 'bestbuy'],\n ['name' => \"By Request - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-request-cd/2107017.p?id=204146&skuId=2107017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107017_sa.jpg\"}', 'upc' => '014921024922', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Big Bands, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-big-bands-vol-2-cd-various/2107026.p?id=64290&skuId=2107026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107026_sa.jpg\"}', 'upc' => '014921030220', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Big Bands, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-big-bands-vol-3-cd-various/2107035.p?id=64291&skuId=2107035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107035_sa.jpg\"}', 'upc' => '014921030329', 'provider' => 'bestbuy'],\n ['name' => \"Uncollected Big Bands, Vol. 4 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncollected-big-bands-vol-4-various-cd/2107044.p?id=64292&skuId=2107044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107044_sa.jpg\"}', 'upc' => '014921030428', 'provider' => 'bestbuy'],\n ['name' => \"Stan Kenton & His Orchestra Play 18 Original... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-kenton-his-orchestra-play-18-original-cd/2107062.p?id=68193&skuId=2107062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107062.jpg\"}', 'upc' => '014921040724', 'provider' => 'bestbuy'],\n ['name' => \"Great Jazz Bands Play 22 Original Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-jazz-bands-play-22-original-hits-cd/2107071.p?id=67920&skuId=2107071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107071_sa.jpg\"}', 'upc' => '014921041325', 'provider' => 'bestbuy'],\n ['name' => \"Duke Ellington & His World Famous... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duke-ellington-his-world-famous-box-cd/2107080.p?id=66001&skuId=2107080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107080_sa.jpg\"}', 'upc' => '014921050129', 'provider' => 'bestbuy'],\n ['name' => \"Cherries and Other Delights! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cherries-and-other-delights-cd/2107099.p?id=204395&skuId=2107099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107099_sa.jpg\"}', 'upc' => '014921060326', 'provider' => 'bestbuy'],\n ['name' => \"Born to Swing! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-swing-cd/2107106.p?id=155977&skuId=2107106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107106_sa.jpg\"}', 'upc' => '014921070127', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TG6591T DECT 6.0 Plus Expandable Cordless Phone with Digital Answering System - Black\", 'description_short' => \"ENERGY STAR Certified\nCordless base station; call-waiting with talking caller ID; white backlit LCD; silent mode; Intelligent Eco mode\", 'description_long' => \"ENERGY STAR Certified\nCordless base station; call-waiting with talking caller ID; white backlit LCD; silent mode; Intelligent Eco mode\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-tg6591t-dect-6-0-plus-expandable-cordless-phone-with-digital-answering-system-black/2107185.p?id=1218310003619&skuId=2107185', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107185_rc.jpg\"}', 'upc' => '885170020948', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TG6592T DECT 6.0 Plus Expandable Cordless Phone with Digital Answering System - Black\", 'description_short' => \"Base station plus 2 cordless handsets; talking caller ID; call waiting; white backlit LCD; silent mode; Intelligent Eco mode\", 'description_long' => \"Base station plus 2 cordless handsets; talking caller ID; call waiting; white backlit LCD; silent mode; Intelligent Eco mode\", 'price' => 79.99, 'sale_price' => 71.99, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-tg6592t-dect-6-0-plus-expandable-cordless-phone-with-digital-answering-system-black/2107194.p?id=1218310003762&skuId=2107194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107194_rc.jpg\"}', 'upc' => '885170020955', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TS880B Corded Phone with Call-Waiting Caller ID - Black\", 'description_short' => \"50-station phone book; 10-number speed dial; hands-free speakerphone; 20-number redial memory; call-waiting caller ID\", 'description_long' => \"50-station phone book; 10-number speed dial; hands-free speakerphone; 20-number redial memory; call-waiting caller ID\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-ts880b-corded-phone-with-call-waiting-caller-id-black/2107219.p?id=1218310004440&skuId=2107219', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107219_rc.jpg\"}', 'upc' => '885170004641', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TGA660B DECT 6.0 Cordless Expansion Handset - Black\", 'description_short' => \"ENERGY STAR Qualified\nCompatible with Panasonic KX-TG666xx series expandable phone systems; DECT 6.0 technology; silent mode; volume control\", 'description_long' => \"ENERGY STAR Qualified\nCompatible with Panasonic KX-TG666xx series expandable phone systems; DECT 6.0 technology; silent mode; volume control\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-tga660b-dect-6-0-cordless-expansion-handset-black/2107273.p?id=1218310005497&skuId=2107273', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107273_rc.jpg\"}', 'upc' => '885170021136', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TS880W Corded Phone with Call-Waiting Caller ID - White\", 'description_short' => \"50-station phone book; 10-number speed dial; hands-free speakerphone; 20-number redial memory; call-waiting caller ID\", 'description_long' => \"50-station phone book; 10-number speed dial; hands-free speakerphone; 20-number redial memory; call-waiting caller ID\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-ts880w-corded-phone-with-call-waiting-caller-id-white/2107282.p?id=1218310006479&skuId=2107282', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107282_rc.jpg\"}', 'upc' => '885170004658', 'provider' => 'bestbuy'],\n ['name' => \"Panasonic - KX-TGA410M DECT 6.0 Cordless Expansion Handset - Gun Metal\", 'description_short' => \"ENERGY STAR Certified\nCompatible with Panasonic KX-TG41xx series expandable phone systems; DECT 6.0 technology; backlit keypad; 50-number caller ID memory\", 'description_long' => \"ENERGY STAR Certified\nCompatible with Panasonic KX-TG41xx series expandable phone systems; DECT 6.0 technology; backlit keypad; 50-number caller ID memory\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panasonic-kx-tga410m-dect-6-0-cordless-expansion-handset-gun-metal/2107307.p?id=1218310005710&skuId=2107307', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107307_rc.jpg\"}', 'upc' => '885170042315', 'provider' => 'bestbuy'],\n ['name' => \"Imagine Party Planner - PRE-OWNED - Nintendo DS\", 'description_short' => \"Plan the parties of their lives\", 'description_long' => \"Plan the parties of their lives\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagine-party-planner-pre-owned-nintendo-ds/2107343.p?id=1218310009803&skuId=2107343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107343_sa.jpg\"}', 'upc' => '799007789529', 'provider' => 'bestbuy'],\n ['name' => \"Kidz Sports: Crazy Golf - PRE-OWNED - Nintendo Wii\", 'description_short' => \"Crazy golf doesn&#039;t get much crazier than this\", 'description_long' => \"Crazy golf doesn&#039;t get much crazier than this\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kidz-sports-crazy-golf-pre-owned-nintendo-wii/2107352.p?id=1218310009866&skuId=2107352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107352_sa.jpg\"}', 'upc' => '799007789536', 'provider' => 'bestbuy'],\n ['name' => \"Life's Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lifes-story-cd/2107357.p?id=282346&skuId=2107357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107357.jpg\"}', 'upc' => '727321634027', 'provider' => 'bestbuy'],\n ['name' => \"Fort Fun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fort-fun-cd/2107366.p?id=99163&skuId=2107366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107366.jpg\"}', 'upc' => '727321634126', 'provider' => 'bestbuy'],\n ['name' => \"For Those About to Pop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-those-about-to-pop-cd/2107375.p?id=115735&skuId=2107375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107375_sa.jpg\"}', 'upc' => '727321635123', 'provider' => 'bestbuy'],\n ['name' => \"High Velocity Bowling - PRE-OWNED - PlayStation 3\", 'description_short' => \"Bowl with the high rollers\", 'description_long' => \"Bowl with the high rollers\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-velocity-bowling-pre-owned-playstation-3/2107389.p?id=1218310004183&skuId=2107389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107389_sa.jpg\"}', 'upc' => '799007789550', 'provider' => 'bestbuy'],\n ['name' => \"Yakuza 3 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Unleash devastating combos to survive the streets\", 'description_long' => \"Unleash devastating combos to survive the streets\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yakuza-3-pre-owned-playstation-3/2107403.p?id=1218310007863&skuId=2107403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107403_sa.jpg\"}', 'upc' => '799007789574', 'provider' => 'bestbuy'],\n ['name' => \"Heart of the Congos [VP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-of-the-congos-vp-cd/2107883.p?id=113617&skuId=2107883&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107883', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107883.jpg\"}', 'upc' => '054645128728', 'provider' => 'bestbuy'],\n ['name' => \"Tomb of the Mutilated [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomb-of-the-mutilated-pa-cd/2107927.p?id=300136&skuId=2107927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107927_sa.jpg\"}', 'upc' => '039841400328', 'provider' => 'bestbuy'],\n ['name' => \"Tomb of the Mutilated [Clean] [Edited] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomb-of-the-mutilated-clean-edited-pa-cd/2107936.p?id=109097&skuId=2107936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2107936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2107\\/2107936_sa.jpg\"}', 'upc' => '039841401028', 'provider' => 'bestbuy'],\n ['name' => \"Toshiba - Satellite 15.6\\\" Laptop - Intel Core i3 - 4GB Memory - 500GB Hard Drive - Jet Black\", 'description_short' => \"Windows 8.1 64-bitTechnical details: 4th Gen Intel&#174; Core&#8482; i3 processor; 15.6&quot; display; 4GB memory; 500GB hard driveSpecial features: Bluetooth; HDMI output\", 'description_long' => \"Windows 8.1 64-bitTechnical details: 4th Gen Intel&#174; Core&#8482; i3 processor; 15.6&quot; display; 4GB memory; 500GB hard driveSpecial features: Bluetooth; HDMI output\", 'price' => 459.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/toshiba-satellite-15-6-laptop-intel-core-i3-4gb-memory-500gb-hard-drive-jet-black/2108021.p?id=1219528553337&skuId=2108021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108021_sa.jpg\"}', 'upc' => '022265879719', 'provider' => 'bestbuy'],\n ['name' => \"Live At The Connecticut Jazz Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-connecticut-jazz-party-cd/2108089.p?id=2679979&skuId=2108089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108089_sa.jpg\"}', 'upc' => '729531010424', 'provider' => 'bestbuy'],\n ['name' => \"At Disneyland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-disneyland-cd/2108196.p?id=66254&skuId=2108196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108196.jpg\"}', 'upc' => '025218104920', 'provider' => 'bestbuy'],\n ['name' => \"Frisco Band Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frisco-band-favorites-cd/2108221.p?id=70699&skuId=2108221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108221.jpg\"}', 'upc' => '025218301022', 'provider' => 'bestbuy'],\n ['name' => \"Maintaining My Cool - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maintaining-my-cool-cd/2108230.p?id=99458&skuId=2108230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108230.jpg\"}', 'upc' => '739497700123', 'provider' => 'bestbuy'],\n ['name' => \"Louie Louie: Live and Unreleased - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louie-louie-live-and-unreleased-cd/2108258.p?id=88104&skuId=2108258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108258_sa.jpg\"}', 'upc' => '739497700420', 'provider' => 'bestbuy'],\n ['name' => \"Nine Lives - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nine-lives-cd/2108276.p?id=75512&skuId=2108276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108276.jpg\"}', 'upc' => '046346903520', 'provider' => 'bestbuy'],\n ['name' => \"Do Whatcha Wanna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-whatcha-wanna-cd/2108310.p?id=3344769&skuId=2108310&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108310', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108310.jpg\"}', 'upc' => '096094100320', 'provider' => 'bestbuy'],\n ['name' => \"The Best of New Orleans Jazz, Vol. 2 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-new-orleans-jazz-vol-2-various-cd/2108338.p?id=69582&skuId=2108338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108338_sa.jpg\"}', 'upc' => '096094100825', 'provider' => 'bestbuy'],\n ['name' => \"Authentic New Orleans Jazz Funeral - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/authentic-new-orleans-jazz-funeral-cd-various/2108347.p?id=68679&skuId=2108347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108347.jpg\"}', 'upc' => '096094101228', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Jazz Classics: A Tribute to Louis... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-jazz-classics-a-tribute-to-louis-cd-various/2108356.p?id=72261&skuId=2108356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108356_sa.jpg\"}', 'upc' => '096094101624', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night Zydeco - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-zydeco-cd/2108365.p?id=97031&skuId=2108365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108365.jpg\"}', 'upc' => '046346010426', 'provider' => 'bestbuy'],\n ['name' => \"Zydeco Legend! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zydeco-legend-cd/2108374.p?id=77359&skuId=2108374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108374_sa.jpg\"}', 'upc' => '046346010525', 'provider' => 'bestbuy'],\n ['name' => \"Cajun & Zydeco Mardi Gras - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajun-zydeco-mardi-gras-cd-various/2108409.p?id=76553&skuId=2108409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108409.jpg\"}', 'upc' => '046346104422', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Street Singer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-street-singer-cd/2108506.p?id=79834&skuId=2108506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108506.jpg\"}', 'upc' => '025218054720', 'provider' => 'bestbuy'],\n ['name' => \"Last Night Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-night-blues-cd/2108515.p?id=85659&skuId=2108515&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108515_sa.jpg\"}', 'upc' => '025218054829', 'provider' => 'bestbuy'],\n ['name' => \"Free Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-again-cd/2108560.p?id=104311&skuId=2108560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108560_sa.jpg\"}', 'upc' => '025218055321', 'provider' => 'bestbuy'],\n ['name' => \"Talking - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talking-cd/2108766.p?id=69210&skuId=2108766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108766_sa.jpg\"}', 'upc' => '054987401626', 'provider' => 'bestbuy'],\n ['name' => \"Mosaic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mosaic-cd/2108784.p?id=283204&skuId=2108784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108784_sa.jpg\"}', 'upc' => '054987402623', 'provider' => 'bestbuy'],\n ['name' => \"Priestess - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/priestess-cd/2108793.p?id=68861&skuId=2108793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108793_sa.jpg\"}', 'upc' => '054987403125', 'provider' => 'bestbuy'],\n ['name' => \"The Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-cd/2108800.p?id=283208&skuId=2108800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108800_sa.jpg\"}', 'upc' => '054987403729', 'provider' => 'bestbuy'],\n ['name' => \"The Wizard of Oz Suite - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wizard-of-oz-suite-cd/2108819.p?id=133863&skuId=2108819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2108819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2108\\/2108819_sa.jpg\"}', 'upc' => '054987404023', 'provider' => 'bestbuy'],\n ['name' => \"The Gambler (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gambler-dvd/2109011.p?id=3353722&skuId=2109011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2109011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2109\\/2109011_sa.jpg\"}', 'upc' => '032429216199', 'provider' => 'bestbuy'],\n ['name' => \"The Gambler (Blu-ray/DVD)(Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gambler-blu-ray-dvddigital-copy/2109048.p?id=3353722&skuId=2109048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2109048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2109\\/2109048_sa.jpg\"}', 'upc' => '032429216212', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: Trilogy (Blu-ray)(UV Digital Copy)(SteelBook)(Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hobbit-trilogy-blu-rayuv-digital-copysteelbookonly--best-buy/2110016.p?id=3330934&skuId=2110016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2110016.jpg\"}', 'upc' => '883929467334', 'provider' => 'bestbuy'],\n ['name' => \"American Sniper (Blu-ray/DVD)(Digital Copy)(w/Bonus Content)(Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/american-sniper-blu-ray-dvddigital-copyw-bonus-contentonly--best-buy/2110025.p?id=3330426&skuId=2110025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2110025.jpg\"}', 'upc' => '883929468294', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-live-cd/2110049.p?id=1389792&skuId=2110049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2110\\/2110049_sa.jpg\"}', 'upc' => '015668101624', 'provider' => 'bestbuy'],\n ['name' => \"The Mood Is Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mood-is-love-cd/2110067.p?id=188506&skuId=2110067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2110\\/2110067.jpg\"}', 'upc' => '015668102324', 'provider' => 'bestbuy'],\n ['name' => \"Somebody Loves You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somebody-loves-you-cd/2110101.p?id=440444&skuId=2110101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2110\\/2110101_sa.jpg\"}', 'upc' => '015668508225', 'provider' => 'bestbuy'],\n ['name' => \"Georgia Guitar Wizard (1928-1935) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/georgia-guitar-wizard-1928-1935-cd/2110165.p?id=103690&skuId=2110165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2110\\/2110165_sa.jpg\"}', 'upc' => '031397353028', 'provider' => 'bestbuy'],\n ['name' => \"Frankie \\\"Half-Pint\\\" Jaxon (1927-1940) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frankie-half-pint-jaxon-1927-1940-cd/2110192.p?id=86797&skuId=2110192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2110192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2110\\/2110192.jpg\"}', 'upc' => '031397353325', 'provider' => 'bestbuy'],\n ['name' => \"Line 6 - M5 Stompbox Modeler Guitar Pedal - Black\", 'description_short' => \"LINE 6 M5 Stompbox Modeler Guitar Pedal: Compatible with most electric guitars; more than 100 effects; features all Line 6 super stomps effects\", 'description_long' => \"LINE 6 M5 Stompbox Modeler Guitar Pedal: Compatible with most electric guitars; more than 100 effects; features all Line 6 super stomps effects\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/line-6-m5-stompbox-modeler-guitar-pedal-black/2111063.p?id=1218310006410&skuId=2111063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111063_sa.jpg\"}', 'upc' => '614252024112', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Shadows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-shadows-cd/2111333.p?id=84617&skuId=2111333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111333.jpg\"}', 'upc' => '033821992322', 'provider' => 'bestbuy'],\n ['name' => \"Everclear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everclear-cd/2111404.p?id=72889&skuId=2111404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111404.jpg\"}', 'upc' => '093716001522', 'provider' => 'bestbuy'],\n ['name' => \"Landshark/Where the Wild Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/landshark-where-the-wild-thing-cd/2111645.p?id=1459142&skuId=2111645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111645_sa.jpg\"}', 'upc' => '038161000126', 'provider' => 'bestbuy'],\n ['name' => \"Albert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/albert-cd/2111654.p?id=1522828&skuId=2111654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111654.jpg\"}', 'upc' => '038161001222', 'provider' => 'bestbuy'],\n ['name' => \"Ozma - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ozma-cd/2111663.p?id=1459185&skuId=2111663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111663.jpg\"}', 'upc' => '038161001628', 'provider' => 'bestbuy'],\n ['name' => \"Deadly Kung Fu Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deadly-kung-fu-action-cd/2111672.p?id=1459214&skuId=2111672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111672_sa.jpg\"}', 'upc' => '038161001826', 'provider' => 'bestbuy'],\n ['name' => \"Circusized Peanuts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/circusized-peanuts-cd/2111707.p?id=1459213&skuId=2111707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111707_sa.jpg\"}', 'upc' => '038161002724', 'provider' => 'bestbuy'],\n ['name' => \"Blowhard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blowhard-cd/2111716.p?id=1459136&skuId=2111716&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111716', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111716.jpg\"}', 'upc' => '038161002922', 'provider' => 'bestbuy'],\n ['name' => \"Heavy with Puppy [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavy-with-puppy-ep-cd/2111725.p?id=1577328&skuId=2111725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111725_sa.jpg\"}', 'upc' => '038161003028', 'provider' => 'bestbuy'],\n ['name' => \"King Buzzo [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/king-buzzo-ep-cd/2111734.p?id=1459123&skuId=2111734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111734_sa.jpg\"}', 'upc' => '038161003226', 'provider' => 'bestbuy'],\n ['name' => \"Dale Crover - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dale-crover-cd/2111743.p?id=1459131&skuId=2111743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111743_sa.jpg\"}', 'upc' => '038161003325', 'provider' => 'bestbuy'],\n ['name' => \"Joe Preston [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-preston-ep-cd/2111752.p?id=1459192&skuId=2111752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111752_sa.jpg\"}', 'upc' => '038161003424', 'provider' => 'bestbuy'],\n ['name' => \"Melvins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melvins-cd/2111761.p?id=1459184&skuId=2111761&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111761', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111761.jpg\"}', 'upc' => '038161003523', 'provider' => 'bestbuy'],\n ['name' => \"Treasure Trail [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/treasure-trail-ep-cd/2111770.p?id=1484243&skuId=2111770&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111770', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111770_sa.jpg\"}', 'upc' => '038161003721', 'provider' => 'bestbuy'],\n ['name' => \"Love God - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-god-cd/2111789.p?id=1465578&skuId=2111789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111789_sa.jpg\"}', 'upc' => '038161003820', 'provider' => 'bestbuy'],\n ['name' => \"Hit Songs for Girls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hit-songs-for-girls-cd/2111798.p?id=1577329&skuId=2111798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111798_sa.jpg\"}', 'upc' => '038161004025', 'provider' => 'bestbuy'],\n ['name' => \"Seraphim 280z - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seraphim-280z-cd/2111805.p?id=1459200&skuId=2111805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111805_sa.jpg\"}', 'upc' => '038161004124', 'provider' => 'bestbuy'],\n ['name' => \"Some Cocktail Suggestions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-cocktail-suggestions-cd/2111814.p?id=1465612&skuId=2111814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2111814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2111\\/2111814_sa.jpg\"}', 'upc' => '038161004223', 'provider' => 'bestbuy'],\n ['name' => \"Changer & The Changed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/changer-the-changed-cd/2112092.p?id=1507576&skuId=2112092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2112092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2112\\/2112092_sa.jpg\"}', 'upc' => '020002090427', 'provider' => 'bestbuy'],\n ['name' => \"Postcards from Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/postcards-from-paradise-cd/2112163.p?id=104282&skuId=2112163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2112163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2112\\/2112163_sa.jpg\"}', 'upc' => '020002097129', 'provider' => 'bestbuy'],\n ['name' => \"Applause Books - Broadway Musicals, Show-by-Show - White/Black/Purple/Orange/Green/Gray\", 'description_short' => \"APPLAUSE BOOKS Broadway Musicals, Show-by-Show: Paperback; 512 pages; 8th edition; chronologically arranged; includes statistics, critical reception, cast lists, commentary and detailed indexes\", 'description_long' => \"APPLAUSE BOOKS Broadway Musicals, Show-by-Show: Paperback; 512 pages; 8th edition; chronologically arranged; includes statistics, critical reception, cast lists, commentary and detailed indexes\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/applause-books-broadway-musicals-show-by-show-white-black-purple-orange-green-gray/2113013.p?id=1219528554456&skuId=2113013', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113013_sa.jpg\"}', 'upc' => '884088995386', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Steal Away the Night: An Ozzy Osbourne Day-by-Day - Black/Brown/White\", 'description_short' => \"BACKBEAT BOOKS Steal Away the Night: An Ozzy Osbourne Day-by-Day: Follows the 30-plus-year run of Ozzy Osbourne; utilizes interview material, press quotes, and garish imagery; written by celebrated metal expert Martin Popoff\", 'description_long' => \"BACKBEAT BOOKS Steal Away the Night: An Ozzy Osbourne Day-by-Day: Follows the 30-plus-year run of Ozzy Osbourne; utilizes interview material, press quotes, and garish imagery; written by celebrated metal expert Martin Popoff\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-steal-away-the-night-an-ozzy-osbourne-day-by-day-black-brown-white/2113022.p?id=1219528552346&skuId=2113022', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113022_sa.jpg\"}', 'upc' => '884088961541', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Leonard Cohen: Everybody Knows - Black/Brown/White\", 'description_short' => \"BACKBEAT BOOKS Leonard Cohen: Everybody Knows: Follows the life and career of songwriter Leonard Cohen; honors Cohen&#039;s 80th birthday; includes 200 photographs\", 'description_long' => \"BACKBEAT BOOKS Leonard Cohen: Everybody Knows: Follows the life and career of songwriter Leonard Cohen; honors Cohen&#039;s 80th birthday; includes 200 photographs\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-leonard-cohen-everybody-knows-black-brown-white/2113031.p?id=1219528557017&skuId=2113031', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113031_sa.jpg\"}', 'upc' => '884088995607', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Fender® Archives - Blue/Yellow/Black/Green/White/Brown/Red\", 'description_short' => \"HAL LEONARD The Fender Archives: Part history, part archive, part scrapbook and part treasure chest; inside look at the Fender company; includes handwritten letters, logbooks, original sketches, reports and more\", 'description_long' => \"HAL LEONARD The Fender Archives: Part history, part archive, part scrapbook and part treasure chest; inside look at the Fender company; includes handwritten letters, logbooks, original sketches, reports and more\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-fender-archives-blue-yellow-black-green-white-brown-red/2113059.p?id=1219528554320&skuId=2113059', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113059_sa.jpg\"}', 'upc' => '884088690595', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Prog Rock FAQ - Black/White\", 'description_short' => \"BACKBEAT BOOKS Prog Rock FAQ: Follows the controversial, misunderstood musical genre through its 5-decade history; deeper look into progressive rock; includes interviews and taboo topics\", 'description_long' => \"BACKBEAT BOOKS Prog Rock FAQ: Follows the controversial, misunderstood musical genre through its 5-decade history; deeper look into progressive rock; includes interviews and taboo topics\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-prog-rock-faq-black-white/2113068.p?id=1219528552746&skuId=2113068', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113068_sa.jpg\"}', 'upc' => '884088898403', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Excess All Areas - Black/White/Yellow/Purple/Blue/Green/Red/Brown\", 'description_short' => \"BACKBEAT BOOKS Excess All Areas: Inside look at the world of the band contract rider; covers 100 featured riders; delves into the dressing rooms and demands of some of the most famous musical groups; includes illustrations\", 'description_long' => \"BACKBEAT BOOKS Excess All Areas: Inside look at the world of the band contract rider; covers 100 featured riders; delves into the dressing rooms and demands of some of the most famous musical groups; includes illustrations\", 'price' => 27.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/backbeat-books-excess-all-areas-black-white-yellow-purple-blue-green-red-brown/2113077.p?id=1219528553271&skuId=2113077', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113077_sa.jpg\"}', 'upc' => '884088995720', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Musical iPad® - Black/Yellow/Purple/Blue/Green/Red/Orange\", 'description_short' => \"HAL LEONARD Musical iPad: Step-by-step guide to musical apps for Apple iPad 2, iPad 3rd generation, iPad with Retina and iPad mini running iOS 6; covers Cloud storage, tuning and more with the iPad\", 'description_long' => \"HAL LEONARD Musical iPad: Step-by-step guide to musical apps for Apple iPad 2, iPad 3rd generation, iPad with Retina and iPad mini running iOS 6; covers Cloud storage, tuning and more with the iPad\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-musical-ipad-black-yellow-purple-blue-green-red-orange/2113086.p?id=1219528554984&skuId=2113086', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113086_sa.jpg\"}', 'upc' => '884088907549', 'provider' => 'bestbuy'],\n ['name' => \"Jawbone - What's Exactly the Matter with Me? - Black/White\", 'description_short' => \"JAWBONE PRESS What&#039;s Exactly the Matter with Me?: Follows the life and career of songwriter P. F. Sloan; includes his musical success and mental and physical deterioration; first-person account\", 'description_long' => \"JAWBONE PRESS What&#039;s Exactly the Matter with Me?: Follows the life and career of songwriter P. F. Sloan; includes his musical success and mental and physical deterioration; first-person account\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jawbone-whats-exactly-the-matter-with-me-black-white/2113095.p?id=1219528553667&skuId=2113095', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113095_sa.jpg\"}', 'upc' => '888680029067', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Rush FAQ - Black/White\", 'description_short' => \"BACKBEAT BOOKS Rush FAQ: Explores the career of the Canadian band Rush; covers the evolution of the band&#039;s sound; written by Max Mobley\", 'description_long' => \"BACKBEAT BOOKS Rush FAQ: Explores the career of the Canadian band Rush; covers the evolution of the band&#039;s sound; written by Max Mobley\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-rush-faq-black-white/2113119.p?id=1219528556953&skuId=2113119', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113119_sa.jpg\"}', 'upc' => '884088860783', 'provider' => 'bestbuy'],\n ['name' => \"Jawbone - My Bloody Roots - Black/White\", 'description_short' => \"JAWBONE PRESS My Bloody Roots: Autobiography of Max Cavalera from the bands Sepultura and Soulfly; brutally honest tone and delivery; covers family, drugs, death, music and redemption\", 'description_long' => \"JAWBONE PRESS My Bloody Roots: Autobiography of Max Cavalera from the bands Sepultura and Soulfly; brutally honest tone and delivery; covers family, drugs, death, music and redemption\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jawbone-my-bloody-roots-black-white/2113128.p?id=1219528554123&skuId=2113128', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113128_sa.jpg\"}', 'upc' => '888680021085', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Robert Plant: The Voice That Sailed the Zeppelin - Black/White\", 'description_short' => \"BACKBEAT BOOKS Robert Plant: The Voice That Sailed the Zeppelin: Biography of Robert Plant, the lead singer of Led Zeppelin; includes comments from former associates; includes his life before, with, and after the band; hard cover\", 'description_long' => \"BACKBEAT BOOKS Robert Plant: The Voice That Sailed the Zeppelin: Biography of Robert Plant, the lead singer of Led Zeppelin; includes comments from former associates; includes his life before, with, and after the band; hard cover\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-robert-plant-the-voice-that-sailed-the-zeppelin-black-white/2113137.p?id=1219528552879&skuId=2113137', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113137_sa.jpg\"}', 'upc' => '884088918163', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - The Who FAQ - Black/White/Green\", 'description_short' => \"BACKBEAT BOOKS The Who FAQ: Explores the philosophies and facts of The Who; covers politics, influences, gigs, followers, religion and more; 400 pages\", 'description_long' => \"BACKBEAT BOOKS The Who FAQ: Explores the philosophies and facts of The Who; covers politics, influences, gigs, followers, religion and more; 400 pages\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-the-who-faq-black-white-green/2113146.p?id=1219528552080&skuId=2113146', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113146_sa.jpg\"}', 'upc' => '884088876883', 'provider' => 'bestbuy'],\n ['name' => \"Vintage Guitar Books - The Official Vintage Guitar Price Guide 2015 - Black/White/Red/Yellow/Orange\", 'description_short' => \"VINTAGE GUITAR BOOKS The Official Vintage Guitar Price Guide 2015: Current values on electric and acoustic guitars, basses, amps, effects, lap steels, mandolins, ukuleles and banjos; more than 2,000 brands; 1,300 photos; includes historical data\", 'description_long' => \"VINTAGE GUITAR BOOKS The Official Vintage Guitar Price Guide 2015: Current values on electric and acoustic guitars, basses, amps, effects, lap steels, mandolins, ukuleles and banjos; more than 2,000 brands; 1,300 photos; includes historical data\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vintage-guitar-books-the-official-vintage-guitar-price-guide-2015-black-white-red-yellow-orange/2113155.p?id=1219528555295&skuId=2113155', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113155_sa.jpg\"}', 'upc' => '888680032203', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The Pensado Papers - Black/Yellow/Blue/Brown/White\", 'description_short' => \"HAL LEONARD The Pensado Papers: Follows the life and career of Dave Pensado; tips, techniques and truths about audio recording; behind-the-scenes look\", 'description_long' => \"HAL LEONARD The Pensado Papers: Follows the life and career of Dave Pensado; tips, techniques and truths about audio recording; behind-the-scenes look\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-pensado-papers-black-yellow-blue-brown-white/2113164.p?id=1219528551180&skuId=2113164', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113164_sa.jpg\"}', 'upc' => '884088915544', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Brian May's Red Special - Black/White/Yellow/Red\", 'description_short' => \"HAL LEONARD Brian May&#039;s Red Special: Provides an in-depth look at the hand-built guitar Brian May played in all of Queen&#039;s live shows and albums\", 'description_long' => \"HAL LEONARD Brian May&#039;s Red Special: Provides an in-depth look at the hand-built guitar Brian May played in all of Queen&#039;s live shows and albums\", 'price' => 30.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-brian-mays-red-special-black-white-yellow-red/2113173.p?id=1219528554058&skuId=2113173', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113173_sa.jpg\"}', 'upc' => '884088905385', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - Visions of Music - Black/Red/Pink/Brown/White/Yellow/Blue\", 'description_short' => \"HAL LEONARD Visions of Music: Explores vintage sheet music and sheet music covers; illustrated with over 700 reproductions of sheet music covers; hard cover\", 'description_long' => \"HAL LEONARD Visions of Music: Explores vintage sheet music and sheet music covers; illustrated with over 700 reproductions of sheet music covers; hard cover\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-visions-of-music-black-red-pink-brown-white-yellow-blue/2113182.p?id=1219528553076&skuId=2113182', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113182_sa.jpg\"}', 'upc' => '888680006419', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - The Art of Gothic - Black/Purple/Red/White\", 'description_short' => \"BACKBEAT BOOKS The Art of Gothic: Covers the fashion, music, cinematography, fine art and more of the gothic style; heavily illustrated; hard cover\", 'description_long' => \"BACKBEAT BOOKS The Art of Gothic: Covers the fashion, music, cinematography, fine art and more of the gothic style; heavily illustrated; hard cover\", 'price' => 35.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-the-art-of-gothic-black-purple-red-white/2113191.p?id=1219528556482&skuId=2113191', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113191_sa.jpg\"}', 'upc' => '888680008888', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Ticket To Ride - Black/White/Gold\", 'description_short' => \"BACKBEAT BOOKS Ticket To Ride: Written by Larry Kane; an inside look into the Beatles&#039; North American tour; foreword by Dick Clark; bonus CD of interview material; rare photographs; appendix detailing tour schedules\", 'description_long' => \"BACKBEAT BOOKS Ticket To Ride: Written by Larry Kane; an inside look into the Beatles&#039; North American tour; foreword by Dick Clark; bonus CD of interview material; rare photographs; appendix detailing tour schedules\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-ticket-to-ride-black-white-gold/2113301.p?id=1219528553993&skuId=2113301', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113301_sa.jpg\"}', 'upc' => '888680012427', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Johnny Cash FAQ - Black/White\", 'description_short' => \"BACKBEAT BOOKS Johnny Cash FAQ: Provides the story behind the hits and nearly 50-year musical career of Johnny Cash, while also detailing his struggle with addiction\", 'description_long' => \"BACKBEAT BOOKS Johnny Cash FAQ: Provides the story behind the hits and nearly 50-year musical career of Johnny Cash, while also detailing his struggle with addiction\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-johnny-cash-faq-black-white/2113329.p?id=1219528556343&skuId=2113329', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113329_sa.jpg\"}', 'upc' => '884088908225', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - Beating Songwriter's Block Book - Black/White/Orange/Brown/Blue\", 'description_short' => \"BACKBEAT BOOKS Beating Songwriter&#039;s Block Book: Helps you develop a songwriting schedule, set songwriting targets and deal with your fears about songwriting; includes songwriting exercises; paperback format\", 'description_long' => \"BACKBEAT BOOKS Beating Songwriter&#039;s Block Book: Helps you develop a songwriting schedule, set songwriting targets and deal with your fears about songwriting; includes songwriting exercises; paperback format\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-beating-songwriters-block-book-black-white-orange-brown-blue/2113338.p?id=1219528556613&skuId=2113338', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113338_sa.jpg\"}', 'upc' => '884088657048', 'provider' => 'bestbuy'],\n ['name' => \"Backbeat Books - The Plain and Simple Guide to Music Publishing, 3rd Edition - Blue/Black/White\", 'description_short' => \"BACKBEAT BOOKS The Plain and Simple Guide to Music Publishing, 3rd Edition: 3rd edition; paperback; used as a text at major college music industry programs; explains musical copyrights and licensing basics; foreword by Tom Petty\", 'description_long' => \"BACKBEAT BOOKS The Plain and Simple Guide to Music Publishing, 3rd Edition: 3rd edition; paperback; used as a text at major college music industry programs; explains musical copyrights and licensing basics; foreword by Tom Petty\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/backbeat-books-the-plain-and-simple-guide-to-music-publishing-3rd-edition-blue-black-white/2113347.p?id=1219528554854&skuId=2113347', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113347_sa.jpg\"}', 'upc' => '884088948542', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - The iPad® in the Music Studio - Multi\", 'description_short' => \"HAL LEONARD The iPad in the Music Studio: Focuses on Apple iPad connectivity to professional and home projects; covers iPad-related music hardware and software; explanation of apps for multiple iPad models running the latest versions of the iOS\", 'description_long' => \"HAL LEONARD The iPad in the Music Studio: Focuses on Apple iPad connectivity to professional and home projects; covers iPad-related music hardware and software; explanation of apps for multiple iPad models running the latest versions of the iOS\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-the-ipad-in-the-music-studio-multi/2113356.p?id=1219528552614&skuId=2113356', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113356_sa.jpg\"}', 'upc' => '884088909857', 'provider' => 'bestbuy'],\n ['name' => \"Pon Moun Paka Bouge Pepe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pon-moun-paka-bouge-pepe-cd/2113448.p?id=2195555&skuId=2113448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113448.jpg\"}', 'upc' => '026617620127', 'provider' => 'bestbuy'],\n ['name' => \"C.C. Nova - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/c-c-nova-cd/2113590.p?id=173682&skuId=2113590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113590.jpg\"}', 'upc' => '759718003123', 'provider' => 'bestbuy'],\n ['name' => \"Take a Look Inside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-a-look-inside-cd/2113607.p?id=1367954&skuId=2113607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113607_sa.jpg\"}', 'upc' => '759718003222', 'provider' => 'bestbuy'],\n ['name' => \"In My Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-my-mind-cd/2113992.p?id=2943983&skuId=2113992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2113992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2113\\/2113992.jpg\"}', 'upc' => '028392600622', 'provider' => 'bestbuy'],\n ['name' => \"Studio C - Cabana Slimfolio Case for Apple® iPad® mini, iPad mini 2 and iPad mini 2 - Blue/Green\", 'description_short' => \"Compatible with Apple iPad mini, iPad mini 2 and iPad mini 2; printed PU material; sueded lining; locking clips; precision fit\", 'description_long' => \"Compatible with Apple iPad mini, iPad mini 2 and iPad mini 2; printed PU material; sueded lining; locking clips; precision fit\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/studio-c-cabana-slimfolio-case-for-apple-ipad-mini-ipad-mini-2-and-ipad-mini-2-blue-green/2114003.p?id=1219068854849&skuId=2114003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114003_sa.jpg\"}', 'upc' => '079784971547', 'provider' => 'bestbuy'],\n ['name' => \"Back on the Streets Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-on-the-streets-again-cd/2114492.p?id=316367&skuId=2114492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114492_sa.jpg\"}', 'upc' => '734373740729', 'provider' => 'bestbuy'],\n ['name' => \"No, We Ain't from Clarksdale - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-we-aint-from-clarksdale-cd/2114508.p?id=156265&skuId=2114508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114508_sa.jpg\"}', 'upc' => '034373740829', 'provider' => 'bestbuy'],\n ['name' => \"Alpha Rhythms - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpha-rhythms-cd/2114517.p?id=154573&skuId=2114517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114517_sa.jpg\"}', 'upc' => '034373740928', 'provider' => 'bestbuy'],\n ['name' => \"A Treasury of Mainstream Jazz Piano: John Jensen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-treasury-of-mainstream-jazz-piano-john-jensen-cd/2114697.p?id=1575792&skuId=2114697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114697.jpg\"}', 'upc' => '017685062827', 'provider' => 'bestbuy'],\n ['name' => \"That Old Mill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-old-mill-cd/2114802.p?id=104776&skuId=2114802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2114802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2114\\/2114802.jpg\"}', 'upc' => '096678500324', 'provider' => 'bestbuy'],\n ['name' => \"Viva Mexico (Music for Mariachis & Marimbas) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viva-mexico-music-for-mariachis-marimbas-cd-various/2115008.p?id=1448696&skuId=2115008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115008.jpg\"}', 'upc' => '723721436629', 'provider' => 'bestbuy'],\n ['name' => \"Percussions D' Afrique (Percussions of Africa) - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/percussions-d-afrique-percussions-of-africa-various-cd/2115035.p?id=1405582&skuId=2115035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115035_sa.jpg\"}', 'upc' => '723721436322', 'provider' => 'bestbuy'],\n ['name' => \"Tahiti: Dream Island - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tahiti-dream-island-cd-various/2115062.p?id=1396637&skuId=2115062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115062.jpg\"}', 'upc' => '723721436025', 'provider' => 'bestbuy'],\n ['name' => \"Air Mail Music: Balafons and African Drums - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/air-mail-music-balafons-and-african-drums-cd-various/2115286.p?id=1396935&skuId=2115286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115286_sa.jpg\"}', 'upc' => '723721433727', 'provider' => 'bestbuy'],\n ['name' => \"Steel Bands Carnival - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steel-bands-carnival-cd-various/2115552.p?id=1396923&skuId=2115552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115552.jpg\"}', 'upc' => '723721430429', 'provider' => 'bestbuy'],\n ['name' => \"South Pacific Drums - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-pacific-drums-cd-various/2115570.p?id=1396921&skuId=2115570&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115570', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115570.jpg\"}', 'upc' => '723721430122', 'provider' => 'bestbuy'],\n ['name' => \"Cuban Drums - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuban-drums-cd/2115749.p?id=1396919&skuId=2115749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115749_sa.jpg\"}', 'upc' => '723721560928', 'provider' => 'bestbuy'],\n ['name' => \"Drums of Goree - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drums-of-goree-cd/2115936.p?id=1409822&skuId=2115936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115936.jpg\"}', 'upc' => '723721724122', 'provider' => 'bestbuy'],\n ['name' => \"Cornemuses Ecossaises - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cornemuses-ecossaises-various-cd/2115972.p?id=1410508&skuId=2115972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2115972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2115\\/2115972_sa.jpg\"}', 'upc' => '723721789923', 'provider' => 'bestbuy'],\n ['name' => \"Tahiti Kaina Party - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tahiti-kaina-party-cd-various/2116114.p?id=1396936&skuId=2116114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2116114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2116\\/2116114.jpg\"}', 'upc' => '723721437121', 'provider' => 'bestbuy'],\n ['name' => \"Tahiti Belle Epoque: All Time Tahitians Favorites - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tahiti-belle-epoque-all-time-tahitians-favorites-cd-various/2116132.p?id=1396937&skuId=2116132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2116132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2116\\/2116132.jpg\"}', 'upc' => '723721460822', 'provider' => 'bestbuy'],\n ['name' => \"Coco's Temaeva - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cocos-temaeva-cd-various/2116141.p?id=1404077&skuId=2116141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2116141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2116\\/2116141.jpg\"}', 'upc' => '723721561024', 'provider' => 'bestbuy'],\n ['name' => \"Secular Folk Songs From Daleca - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secular-folk-songs-from-daleca-various-cd/2116882.p?id=1784186&skuId=2116882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2116882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2116\\/2116882.jpg\"}', 'upc' => '750582947223', 'provider' => 'bestbuy'],\n ['name' => \"Religious Folk Songs from Dalecarlia - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/religious-folk-songs-from-dalecarlia-various-cd/2116891.p?id=1784894&skuId=2116891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2116891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2116\\/2116891_sa.jpg\"}', 'upc' => '789368011421', 'provider' => 'bestbuy'],\n ['name' => \"Twisted World Of Blowfly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twisted-world-of-blowfly-cd/2117275.p?id=75097&skuId=2117275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2117275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2117\\/2117275_sa.jpg\"}', 'upc' => '054291300721', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Sasha Messenger Laptop Bag - Black\", 'description_short' => \"JILL-E Sasha Messenger Laptop Bag: Fits most laptops with up to a 15&quot; display, including Apple MacBook Pro; leather material; padded laptop compartment; smartphone pocket; zippered water bottle pocket; adjustable shoulder strap\", 'description_long' => \"JILL-E Sasha Messenger Laptop Bag: Fits most laptops with up to a 15&quot; display, including Apple MacBook Pro; leather material; padded laptop compartment; smartphone pocket; zippered water bottle pocket; adjustable shoulder strap\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-sasha-messenger-laptop-bag-black/2118018.p?id=1219528551178&skuId=2118018', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118018_sa.jpg\"}', 'upc' => '094922473202', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Career Laptop Tote - Vanilla\", 'description_short' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'description_long' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-career-laptop-tote-vanilla/2118027.p?id=1219528556344&skuId=2118027', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118027_sa.jpg\"}', 'upc' => '094922373496', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Career Laptop Tote - Black\", 'description_short' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'description_long' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-career-laptop-tote-black/2118036.p?id=1219528553801&skuId=2118036', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118036_sa.jpg\"}', 'upc' => '094922373595', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Jack Lenox Laptop Messenger Bag - Tan\", 'description_short' => \"JILL-E Jack Lenox Laptop Messenger Bag: Compatible with most laptops with up to a 15&quot; display; Colombian leather; 5 interior compartments; cell phone pocket; adjustable shoulder strap; vertical orientation\", 'description_long' => \"JILL-E Jack Lenox Laptop Messenger Bag: Compatible with most laptops with up to a 15&quot; display; Colombian leather; 5 interior compartments; cell phone pocket; adjustable shoulder strap; vertical orientation\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-jack-lenox-laptop-messenger-bag-tan/2118045.p?id=1219528554253&skuId=2118045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118045_sa.jpg\"}', 'upc' => '094922419484', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Jack Savoy Laptop Briefcase - Brown\", 'description_short' => \"JILL-E Jack Savoy Briefcase: Compatible with most laptops with up to a 15&quot; display; Colombian leather; 8 interior compartments; cell phone pocket; adjustable shoulder strap\", 'description_long' => \"JILL-E Jack Savoy Briefcase: Compatible with most laptops with up to a 15&quot; display; Colombian leather; 8 interior compartments; cell phone pocket; adjustable shoulder strap\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-jack-savoy-laptop-briefcase-brown/2118054.p?id=1219528551190&skuId=2118054', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118054_sa.jpg\"}', 'upc' => '094922419507', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Laptop Tote - Black\", 'description_short' => \"JILL-E Laptop Tote: Compatible with most laptops with up to a 15&quot; display and most tablets and e-readers; leather material; 5 interior compartments; outer trolley pocket; handles with 9.5&quot; drop; zipper closure\", 'description_long' => \"JILL-E Laptop Tote: Compatible with most laptops with up to a 15&quot; display and most tablets and e-readers; leather material; 5 interior compartments; outer trolley pocket; handles with 9.5&quot; drop; zipper closure\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-laptop-tote-black/2118063.p?id=1219528556885&skuId=2118063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118063_sa.jpg\"}', 'upc' => '094922373571', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Just Silwex Laptop Messenger Bag - Rum Raisin\", 'description_short' => \"JILL-E Just Silwex Laptop Messenger Bag: Compatible with most laptops with up to a 15&quot; display and most tablets; leather material; 4 outer compartments and 5 inner compartments; adjustable shoulder strap; top handle\", 'description_long' => \"JILL-E Just Silwex Laptop Messenger Bag: Compatible with most laptops with up to a 15&quot; display and most tablets; leather material; 4 outer compartments and 5 inner compartments; adjustable shoulder strap; top handle\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-just-silwex-laptop-messenger-bag-rum-raisin/2118072.p?id=1219528552678&skuId=2118072', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118072_sa.jpg\"}', 'upc' => '094922419385', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Emma Laptop Messenger Bag - Black\", 'description_short' => \"JILL-E Emma Laptop Messenger Bag: Compatible with most laptops with up to 11&quot; display and most tablets and e-readers; leather material; padded compartments, including a smartphone pocket; adjustable shoulder strap; magnetic closure\", 'description_long' => \"JILL-E Emma Laptop Messenger Bag: Compatible with most laptops with up to 11&quot; display and most tablets and e-readers; leather material; padded compartments, including a smartphone pocket; adjustable shoulder strap; magnetic closure\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-emma-laptop-messenger-bag-black/2118081.p?id=1219528552811&skuId=2118081', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118081_sa.jpg\"}', 'upc' => '094922419354', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Laptop Tote - Brown\", 'description_short' => \"JILL-E Laptop Tote: Compatible with most laptops with up to a 15&quot; display and most tablets and e-readers; leather material; 5 interior compartments; outer trolley pocket; handles with 9.5&quot; drop; zipper closure\", 'description_long' => \"JILL-E Laptop Tote: Compatible with most laptops with up to a 15&quot; display and most tablets and e-readers; leather material; 5 interior compartments; outer trolley pocket; handles with 9.5&quot; drop; zipper closure\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-laptop-tote-brown/2118105.p?id=1219528551179&skuId=2118105', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118105_sa.jpg\"}', 'upc' => '094922373588', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Jack Messenger Laptop Bag - Brown\", 'description_short' => \"JILL-E Jack Messenger Laptop Bag: Fits most laptops with up to a 15&quot; display; leather material; padded laptop compartment; zippered back pocket; open front pocket; key keeper and ID tag\", 'description_long' => \"JILL-E Jack Messenger Laptop Bag: Fits most laptops with up to a 15&quot; display; leather material; padded laptop compartment; zippered back pocket; open front pocket; key keeper and ID tag\", 'price' => 224.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-jack-messenger-laptop-bag-brown/2118114.p?id=1219528555545&skuId=2118114', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118114_sa.jpg\"}', 'upc' => '094922419460', 'provider' => 'bestbuy'],\n ['name' => \"Jill-e - Career Laptop Tote - Brown\", 'description_short' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'description_long' => \"JILL-E Career Laptop Tote: Compatible with most laptops with up to a 12&quot; display; leather material; 6 interior compartments; outer zipper pocket; handles with 8.5&quot; drop; key keeper; ID tag\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jill-e-career-laptop-tote-brown/2118123.p?id=1219528551188&skuId=2118123', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2118123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2118\\/2118123_sa.jpg\"}', 'upc' => '094922373601', 'provider' => 'bestbuy'],\n ['name' => \"Lost Girl: Season Three [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-girl-season-three-5-discs-dvd/2119008.p?id=2751595&skuId=2119008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119008.jpg\"}', 'upc' => '704400091162', 'provider' => 'bestbuy'],\n ['name' => \"Prince Avalanche (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-avalanche-blu-ray-disc/2119017.p?id=2751820&skuId=2119017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119017_sa.jpg\"}', 'upc' => '876964006149', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man: The Final Fight (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/ip-man-the-final-fight-dvd/2119026.p?id=2747181&skuId=2119026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119026.jpg\"}', 'upc' => '812491014400', 'provider' => 'bestbuy'],\n ['name' => \"Akira (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/akira-blu-ray-disc-2-disc/2119035.p?id=20150&skuId=2119035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119035.jpg\"}', 'upc' => '704400094187', 'provider' => 'bestbuy'],\n ['name' => \"Wolf Children (Blu-ray Disc) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/wolf-children-blu-ray-disc-3-disc/2119044.p?id=2751339&skuId=2119044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119044_sa.jpg\"}', 'upc' => '704400092428', 'provider' => 'bestbuy'],\n ['name' => \"Lost Girl: Season Three [3 discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-girl-season-three-3-discs-blu-ray-disc/2119053.p?id=2751067&skuId=2119053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119053.jpg\"}', 'upc' => '704400091179', 'provider' => 'bestbuy'],\n ['name' => \"Prince Avalanche (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prince-avalanche-dvd/2119062.p?id=2751820&skuId=2119062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119062_sa.jpg\"}', 'upc' => '876964006132', 'provider' => 'bestbuy'],\n ['name' => \"Blackfish (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blackfish-blu-ray-disc/2119071.p?id=2751893&skuId=2119071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119071_sa.jpg\"}', 'upc' => '876964006187', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man: The Final Fight (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/ip-man-the-final-fight-blu-ray-disc/2119099.p?id=2747181&skuId=2119099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119099_sa.jpg\"}', 'upc' => '812491014417', 'provider' => 'bestbuy'],\n ['name' => \"WWE: History of the WWE (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-history-of-the-wwe-blu-ray-disc-2-disc/2119104.p?id=2751235&skuId=2119104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119104_sa.jpg\"}', 'upc' => '651191951772', 'provider' => 'bestbuy'],\n ['name' => \"One Piece: Strong World (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-piece-strong-world-blu-ray-disc-2-disc/2119122.p?id=2751496&skuId=2119122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119122_sa.jpg\"}', 'upc' => '704400091797', 'provider' => 'bestbuy'],\n ['name' => \"Crystal Fairy (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crystal-fairy-blu-ray-disc/2119131.p?id=2749197&skuId=2119131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119131_sa.jpg\"}', 'upc' => '030306191799', 'provider' => 'bestbuy'],\n ['name' => \"WWE: History of the WWE (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-history-of-the-wwe-dvd-3-disc/2119159.p?id=2751235&skuId=2119159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119159_sa.jpg\"}', 'upc' => '651191951765', 'provider' => 'bestbuy'],\n ['name' => \"Crystal Fairy (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crystal-fairy-dvd/2119168.p?id=2749197&skuId=2119168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119168_sa.jpg\"}', 'upc' => '030306988795', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: The Battle of the Five Armies (Blu-ray/DVD)(UV Digital Copy) (SteelBook) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/the-hobbit-the-battle-of-the-five-armies-blu-ray-dvduv-digital-copy-steelbook-only--best-buy/2119177.p?id=3330917&skuId=2119177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/pdpimages\\/2119177.jpg\"}', 'upc' => '883929467235', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Riverside Recordings [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-riverside-recordings-box-cd/2119816.p?id=69345&skuId=2119816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119816_sa.jpg\"}', 'upc' => '025218440820', 'provider' => 'bestbuy'],\n ['name' => \"The Free Will - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-free-will-cd/2119861.p?id=71802&skuId=2119861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119861_sa.jpg\"}', 'upc' => '063757306320', 'provider' => 'bestbuy'],\n ['name' => \"The Seventh Quadrant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-seventh-quadrant-cd/2119941.p?id=71395&skuId=2119941&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119941', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119941.jpg\"}', 'upc' => '063757504726', 'provider' => 'bestbuy'],\n ['name' => \"My Favourite Songs, Vols. 1-2: The Last Great... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-favourite-songs-vols-1-2-the-last-great-cd/2119969.p?id=63905&skuId=2119969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2119969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2119\\/2119969_sa.jpg\"}', 'upc' => '063757509721', 'provider' => 'bestbuy'],\n ['name' => \"Al-Jadida - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/al-jadida-cd/2120010.p?id=63517&skuId=2120010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120010.jpg\"}', 'upc' => '063757609025', 'provider' => 'bestbuy'],\n ['name' => \"Manfrotto - Veloce V Backpack Camera Bag - Black\", 'description_short' => \"Fits most DSLR cameras with or without grip and up to 70-200mm attached lens; holds a laptop up to 15.4&quot; or a MacBook up to 17&quot;; water-resistant fabric; internal tripod compartment; external tripod connector\", 'description_long' => \"Fits most DSLR cameras with or without grip and up to 70-200mm attached lens; holds a laptop up to 15.4&quot; or a MacBook up to 17&quot;; water-resistant fabric; internal tripod compartment; external tripod connector\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/manfrotto-veloce-v-backpack-camera-bag-black/2120052.p?id=1218310008892&skuId=2120052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120052_rc.jpg\"}', 'upc' => '719821322177', 'provider' => 'bestbuy'],\n ['name' => \"Tales of Kidd Funkadelic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tales-of-kidd-funkadelic-cd/2120350.p?id=1459152&skuId=2120350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120350_sa.jpg\"}', 'upc' => '723485022724', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Beverly Theatre in Hollywood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-beverly-theatre-in-hollywood-cd/2120378.p?id=1577032&skuId=2120378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120378_sa.jpg\"}', 'upc' => '723485111022', 'provider' => 'bestbuy'],\n ['name' => \"Music for Your Mother - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-your-mother-cd/2120387.p?id=1459150&skuId=2120387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120387_sa.jpg\"}', 'upc' => '723485111121', 'provider' => 'bestbuy'],\n ['name' => \"Night & Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-day-cd/2120421.p?id=75431&skuId=2120421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120421_sa.jpg\"}', 'upc' => '723918300221', 'provider' => 'bestbuy'],\n ['name' => \"Dick Hyman Plays Duke Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dick-hyman-plays-duke-ellington-cd/2120715.p?id=1477879&skuId=2120715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120715.jpg\"}', 'upc' => '030911105020', 'provider' => 'bestbuy'],\n ['name' => \"Letters from the Equator - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/letters-from-the-equator-cd/2120733.p?id=1493961&skuId=2120733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120733.jpg\"}', 'upc' => '030911105624', 'provider' => 'bestbuy'],\n ['name' => \"Just Pickin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-pickin-cd/2120975.p?id=87978&skuId=2120975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120975.jpg\"}', 'upc' => '091377072127', 'provider' => 'bestbuy'],\n ['name' => \"Well, All Right! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/well-all-right-cd/2120993.p?id=113671&skuId=2120993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2120993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2120\\/2120993_sa.jpg\"}', 'upc' => '091377120422', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Seldom Scene, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-seldom-scene-vol-1-cd/2121000.p?id=98311&skuId=2121000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121000_sa.jpg\"}', 'upc' => '032511110121', 'provider' => 'bestbuy'],\n ['name' => \"25 Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/25-years-cd/2121019.p?id=265832&skuId=2121019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121019_sa.jpg\"}', 'upc' => '032511110220', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Cellar Door - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-cellar-door-cd/2121028.p?id=98313&skuId=2121028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121028_sa.jpg\"}', 'upc' => '032511110329', 'provider' => 'bestbuy'],\n ['name' => \"Live in Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-japan-cd/2121037.p?id=177959&skuId=2121037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121037.jpg\"}', 'upc' => '032511110428', 'provider' => 'bestbuy'],\n ['name' => \"Puritan Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puritan-sessions-cd/2121064.p?id=84107&skuId=2121064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121064_sa.jpg\"}', 'upc' => '032511110824', 'provider' => 'bestbuy'],\n ['name' => \"Classic Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-bluegrass-cd/2121073.p?id=100040&skuId=2121073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121073_sa.jpg\"}', 'upc' => '032511110923', 'provider' => 'bestbuy'],\n ['name' => \"Long Journey Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-journey-home-cd/2121082.p?id=2331769&skuId=2121082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121082_sa.jpg\"}', 'upc' => '032511011022', 'provider' => 'bestbuy'],\n ['name' => \"Classic Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-bluegrass-cd/2121091.p?id=157377&skuId=2121091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121091_sa.jpg\"}', 'upc' => '032511111128', 'provider' => 'bestbuy'],\n ['name' => \"Classic Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-bluegrass-cd/2121108.p?id=123027&skuId=2121108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121108_sa.jpg\"}', 'upc' => '032511111227', 'provider' => 'bestbuy'],\n ['name' => \"Live! At McClure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-mcclure-cd/2121144.p?id=123044&skuId=2121144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121144_sa.jpg\"}', 'upc' => '032511111821', 'provider' => 'bestbuy'],\n ['name' => \"Classic Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-bluegrass-cd/2121153.p?id=81736&skuId=2121153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121153_sa.jpg\"}', 'upc' => '032511111920', 'provider' => 'bestbuy'],\n ['name' => \"Second Generation Bluegrass [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-generation-bluegrass-remaster-cd/2121171.p?id=156253&skuId=2121171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121171_sa.jpg\"}', 'upc' => '032511150424', 'provider' => 'bestbuy'],\n ['name' => \"Award Winning Country Gentlemen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/award-winning-country-gentlemen-cd/2121180.p?id=78833&skuId=2121180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121180_sa.jpg\"}', 'upc' => '032511150622', 'provider' => 'bestbuy'],\n ['name' => \"Act 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/act-1-cd/2121199.p?id=98309&skuId=2121199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121199_sa.jpg\"}', 'upc' => '032511151124', 'provider' => 'bestbuy'],\n ['name' => \"Act 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/act-3-cd/2121206.p?id=98308&skuId=2121206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121206_sa.jpg\"}', 'upc' => '032511152824', 'provider' => 'bestbuy'],\n ['name' => \"Old Train - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-train-cd/2121215.p?id=98314&skuId=2121215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121215_sa.jpg\"}', 'upc' => '032511153623', 'provider' => 'bestbuy'],\n ['name' => \"California Autumn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-autumn-cd/2121224.p?id=154997&skuId=2121224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121224_sa.jpg\"}', 'upc' => '032511154927', 'provider' => 'bestbuy'],\n ['name' => \"The New Seldom Scene Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-seldom-scene-album-cd/2121233.p?id=156254&skuId=2121233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121233_sa.jpg\"}', 'upc' => '032511156129', 'provider' => 'bestbuy'],\n ['name' => \"Baptizing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/baptizing-cd/2121242.p?id=155483&skuId=2121242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121242_sa.jpg\"}', 'upc' => '032511157324', 'provider' => 'bestbuy'],\n ['name' => \"The Model Church - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-model-church-cd/2121251.p?id=79322&skuId=2121251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121251_sa.jpg\"}', 'upc' => '032511158529', 'provider' => 'bestbuy'],\n ['name' => \"Silver Reflections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silver-reflections-cd/2121288.p?id=99787&skuId=2121288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121288_sa.jpg\"}', 'upc' => '032511165428', 'provider' => 'bestbuy'],\n ['name' => \"New Dreams and Sunshine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-dreams-and-sunshine-cd/2121304.p?id=103158&skuId=2121304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121304_sa.jpg\"}', 'upc' => '032511166524', 'provider' => 'bestbuy'],\n ['name' => \"Hymn Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hymn-time-cd/2121313.p?id=123017&skuId=2121313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121313_sa.jpg\"}', 'upc' => '032511166821', 'provider' => 'bestbuy'],\n ['name' => \"Looking for Yourself - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/looking-for-yourself-cd/2121368.p?id=156256&skuId=2121368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121368_sa.jpg\"}', 'upc' => '032511168023', 'provider' => 'bestbuy'],\n ['name' => \"A Dream Come True - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-dream-come-true-cd/2121386.p?id=155455&skuId=2121386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121386_sa.jpg\"}', 'upc' => '032511168221', 'provider' => 'bestbuy'],\n ['name' => \"Pray for the Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pray-for-the-boys-cd/2121420.p?id=178120&skuId=2121420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121420_sa.jpg\"}', 'upc' => '032511168726', 'provider' => 'bestbuy'],\n ['name' => \"Early Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/early-recordings-cd/2121439.p?id=89280&skuId=2121439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121439_sa.jpg\"}', 'upc' => '032511168825', 'provider' => 'bestbuy'],\n ['name' => \"Carrying the Tradition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/carrying-the-tradition-cd/2121448.p?id=89581&skuId=2121448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121448_sa.jpg\"}', 'upc' => '032511169020', 'provider' => 'bestbuy'],\n ['name' => \"3rd Tyme Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3rd-tyme-out-cd/2121457.p?id=86095&skuId=2121457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121457_sa.jpg\"}', 'upc' => '032511169129', 'provider' => 'bestbuy'],\n ['name' => \"Bound for Gloryland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bound-for-gloryland-cd/2121466.p?id=103160&skuId=2121466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121466_sa.jpg\"}', 'upc' => '032511169228', 'provider' => 'bestbuy'],\n ['name' => \"Larry Sparks Sings Hank Williams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/larry-sparks-sings-hank-williams-cd/2121484.p?id=154292&skuId=2121484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121484_sa.jpg\"}', 'upc' => '032511169426', 'provider' => 'bestbuy'],\n ['name' => \"Timeless and True Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timeless-and-true-love-cd/2121518.p?id=178210&skuId=2121518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121518_sa.jpg\"}', 'upc' => '032511169723', 'provider' => 'bestbuy'],\n ['name' => \"January Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/january-rain-cd/2121563.p?id=123009&skuId=2121563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121563_sa.jpg\"}', 'upc' => '032511170224', 'provider' => 'bestbuy'],\n ['name' => \"Puttin' New Roots Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puttin-new-roots-down-cd/2121572.p?id=86096&skuId=2121572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121572_sa.jpg\"}', 'upc' => '032511170323', 'provider' => 'bestbuy'],\n ['name' => \"Livin' on the Mountain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/livin-on-the-mountain-cd/2121625.p?id=91079&skuId=2121625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121625_sa.jpg\"}', 'upc' => '032511170927', 'provider' => 'bestbuy'],\n ['name' => \"Grandpa's Mandolin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grandpas-mandolin-cd/2121652.p?id=86094&skuId=2121652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121652_sa.jpg\"}', 'upc' => '032511171320', 'provider' => 'bestbuy'],\n ['name' => \"Golden Greats No. 1 [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-greats-no-1-cd-dvd-digipak-cd/2121734.p?id=2198676&skuId=2121734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121734.jpg\"}', 'upc' => '616892140160', 'provider' => 'bestbuy'],\n ['name' => \"Echoing Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoing-angels-cd/2121743.p?id=2190876&skuId=2121743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121743.jpg\"}', 'upc' => '099923233329', 'provider' => 'bestbuy'],\n ['name' => \"Rickey Smiley Prank Calls, Vol. 6 [CD & DVD] [PA] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rickey-smiley-prank-calls-vol-6-cd-dvd-pa-cd-dvd/2121752.p?id=2173852&skuId=2121752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121752_sa.jpg\"}', 'upc' => '099923515821', 'provider' => 'bestbuy'],\n ['name' => \"Lost And Found - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-and-found-cd/2121789.p?id=2189774&skuId=2121789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121789_sa.jpg\"}', 'upc' => '884501371414', 'provider' => 'bestbuy'],\n ['name' => \"Salt on Sea Glass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salt-on-sea-glass-cd/2121798.p?id=2196014&skuId=2121798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121798_sa.jpg\"}', 'upc' => '616892133568', 'provider' => 'bestbuy'],\n ['name' => \"Golden Greats No. 1 [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-greats-no-1-import-cd/2121816.p?id=2198677&skuId=2121816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121816_sa.jpg\"}', 'upc' => '616892140061', 'provider' => 'bestbuy'],\n ['name' => \"Katy Perry: The Girl Who Ran Away (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/katy-perry-the-girl-who-ran-away-dvd/2121825.p?id=2952303&skuId=2121825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '823564524290', 'provider' => 'bestbuy'],\n ['name' => \"Oneirology [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oneirology-pa-cd/2121843.p?id=2190878&skuId=2121843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121843_sa.jpg\"}', 'upc' => '858597002224', 'provider' => 'bestbuy'],\n ['name' => \"Bone Brothers IV: Bone Thugs [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bone-brothers-iv-bone-thugs-pa-cd/2121852.p?id=2190879&skuId=2121852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121852_sa.jpg\"}', 'upc' => '859450002160', 'provider' => 'bestbuy'],\n ['name' => \"Liquid Love [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liquid-love-digipak-cd/2121861.p?id=2198237&skuId=2121861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121861_sa.jpg\"}', 'upc' => '675650002522', 'provider' => 'bestbuy'],\n ['name' => \"Heroes in the Healing... [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heroes-in-the-healing-pa-digipak-cd/2121898.p?id=2190880&skuId=2121898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121898_sa.jpg\"}', 'upc' => '616892144168', 'provider' => 'bestbuy'],\n ['name' => \"The Discovery - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-discovery-cd/2121934.p?id=2190881&skuId=2121934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121934_sa.jpg\"}', 'upc' => '894587001495', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits with a Twist [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-with-a-twist-digipak-cd/2121943.p?id=2190882&skuId=2121943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121943_sa.jpg\"}', 'upc' => '741157480122', 'provider' => 'bestbuy'],\n ['name' => \"Firing Squad [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firing-squad-pa-digipak-cd/2121952.p?id=2198213&skuId=2121952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121952_sa.jpg\"}', 'upc' => '825303232220', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits with a Twist - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-with-a-twist-cd/2121961.p?id=2190883&skuId=2121961&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121961', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121961_sa.jpg\"}', 'upc' => '741157480429', 'provider' => 'bestbuy'],\n ['name' => \"Old School [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-school-digipak-cd/2121989.p?id=2187154&skuId=2121989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121989_sa.jpg\"}', 'upc' => '845121031645', 'provider' => 'bestbuy'],\n ['name' => \"The Fight of Our Lives [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fight-of-our-lives-pa-cd/2121998.p?id=2190884&skuId=2121998&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2121998', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2121\\/2121998_sa.jpg\"}', 'upc' => '099923209522', 'provider' => 'bestbuy'],\n ['name' => \"Everything in Time [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everything-in-time-lp-vinyl/2122005.p?id=3233542&skuId=2122005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122005_sa.jpg\"}', 'upc' => '659123011310', 'provider' => 'bestbuy'],\n ['name' => \"John Leguizamo: Ghetto Klown -... [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-leguizamo-ghetto-klown-digipak-cd-various/2122032.p?id=2190886&skuId=2122032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122032_sa.jpg\"}', 'upc' => '846395071184', 'provider' => 'bestbuy'],\n ['name' => \"Where's That Music Coming From - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wheres-that-music-coming-from-cd/2122078.p?id=2187172&skuId=2122078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122078_sa.jpg\"}', 'upc' => '891836002135', 'provider' => 'bestbuy'],\n ['name' => \"James Brown: Body Heat (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/james-brown-body-heat-dvd/2122096.p?id=49492&skuId=2122096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122096_sa.jpg\"}', 'upc' => '5018755246517', 'provider' => 'bestbuy'],\n ['name' => \"H.N.I.C. [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/h-n-i-c-pa-cd/2122102.p?id=2190888&skuId=2122102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122102_sa.jpg\"}', 'upc' => '859450002153', 'provider' => 'bestbuy'],\n ['name' => \"Kool Moe Dee [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kool-moe-dee-digipak-cd/2122148.p?id=2216029&skuId=2122148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122148_sa.jpg\"}', 'upc' => '829357851123', 'provider' => 'bestbuy'],\n ['name' => \"Kickin' Up Dust - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kickin-up-dust-cd/2122157.p?id=2190890&skuId=2122157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122157_sa.jpg\"}', 'upc' => '732351107625', 'provider' => 'bestbuy'],\n ['name' => \"Special Guest Appearances, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/special-guest-appearances-vol-2-pa-cd/2122175.p?id=2187126&skuId=2122175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122175_sa.jpg\"}', 'upc' => '618763708523', 'provider' => 'bestbuy'],\n ['name' => \"Paper Bag Money [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paper-bag-money-pa-cd/2122184.p?id=2187478&skuId=2122184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122184_sa.jpg\"}', 'upc' => '643157414711', 'provider' => 'bestbuy'],\n ['name' => \"Relentless [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relentless-digipak-cd/2122193.p?id=2156811&skuId=2122193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122193_sa.jpg\"}', 'upc' => '725543290427', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Thizz Iz All N Da Doe [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-thizz-iz-all-n-da-doe-pa-cd/2122209.p?id=2189779&skuId=2122209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122209_sa.jpg\"}', 'upc' => '618763708622', 'provider' => 'bestbuy'],\n ['name' => \"Still Standing, Vol. 1 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-standing-vol-1-pa-cd/2122218.p?id=2187481&skuId=2122218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122218_sa.jpg\"}', 'upc' => '725543708328', 'provider' => 'bestbuy'],\n ['name' => \"The Lincoln Lawyer [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lincoln-lawyer-original-soundtrack-cd-original-soundtrack/2122245.p?id=2188344&skuId=2122245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122245_sa.jpg\"}', 'upc' => '780163421026', 'provider' => 'bestbuy'],\n ['name' => \"Megalithic Symphony [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/megalithic-symphony-digipak-cd/2122254.p?id=2188343&skuId=2122254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122254_sa.jpg\"}', 'upc' => '844942010860', 'provider' => 'bestbuy'],\n ['name' => \"Dell - Inspiron 23\\\" Touch-Screen All-In-One - Intel Core i5 - 8GB Memory - 1TB Hard Drive - Silver\", 'description_short' => \"Windows 8.1, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 23&quot; display; 8GB memory; 1TB hard driveSpecial features: Touch screen; built-in wireless networking; Bluetooth; wireless keyboard and mouse\", 'description_long' => \"Windows 8.1, upgrade to Windows 10 for freeTechnical details: 4th Gen Intel&#174; Core&#8482; i5 processor; 23&quot; display; 8GB memory; 1TB hard driveSpecial features: Touch screen; built-in wireless networking; Bluetooth; wireless keyboard and mouse\", 'price' => 999.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-inspiron-23-touch-screen-all-in-one-intel-core-i5-8gb-memory-1tb-hard-drive-silver/2122317.p?id=1219528552413&skuId=2122317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122317_sa.jpg\"}', 'upc' => '884116164319', 'provider' => 'bestbuy'],\n ['name' => \"Trance Europe, Vol. 1: Electronic Body Experience - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trance-europe-vol-1-electronic-body-experience-cd-various/2122330.p?id=1374651&skuId=2122330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122330_sa.jpg\"}', 'upc' => '741157924329', 'provider' => 'bestbuy'],\n ['name' => \"Navajo Singer Sings for You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/navajo-singer-sings-for-you-cd/2122740.p?id=91942&skuId=2122740&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122740', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122740_sa.jpg\"}', 'upc' => '722871110724', 'provider' => 'bestbuy'],\n ['name' => \"Pow Wow Songs, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pow-wow-songs-vol-1-cd/2122768.p?id=77080&skuId=2122768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2122768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2122\\/2122768_sa.jpg\"}', 'upc' => '722871111622', 'provider' => 'bestbuy'],\n ['name' => \"Upsetting The Nation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/upsetting-the-nation-cd/2123053.p?id=2901272&skuId=2123053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2123053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2123\\/2123053.jpg\"}', 'upc' => '766126133021', 'provider' => 'bestbuy'],\n ['name' => \"Like Someone in Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/like-someone-in-love-cd/2123428.p?id=276366&skuId=2123428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2123428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2123\\/2123428_sa.jpg\"}', 'upc' => '762247701422', 'provider' => 'bestbuy'],\n ['name' => \"Piano & Bass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-bass-cd/2123437.p?id=255410&skuId=2123437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2123437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2123\\/2123437.jpg\"}', 'upc' => '762247709220', 'provider' => 'bestbuy'],\n ['name' => \"Folk Music From Norway - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folk-music-from-norway-various-cd/2124695.p?id=1467827&skuId=2124695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2124695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2124\\/2124695.jpg\"}', 'upc' => '750582885624', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Songs of England - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-songs-of-england-various-cd/2124748.p?id=2417317&skuId=2124748&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2124748', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2124\\/2124748.jpg\"}', 'upc' => '750582875427', 'provider' => 'bestbuy'],\n ['name' => \"Spirit Of Polynesia - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-polynesia-cd-various/2124757.p?id=2281760&skuId=2124757&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2124757', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2124\\/2124757_sa.jpg\"}', 'upc' => '750582871627', 'provider' => 'bestbuy'],\n ['name' => \"All You Need Is Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-you-need-is-now-cd/2125057.p?id=2187501&skuId=2125057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125057.jpg\"}', 'upc' => '807315170127', 'provider' => 'bestbuy'],\n ['name' => \"Party Tested - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tested-cd/2125093.p?id=2188929&skuId=2125093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125093_sa.jpg\"}', 'upc' => '030206188523', 'provider' => 'bestbuy'],\n ['name' => \"NES Remix Pack - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"Get ready to experience your favorite NES-era 8-bit games in an all-new way\", 'description_long' => \"Get ready to experience your favorite NES-era 8-bit games in an all-new way\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nes-remix-pack-pre-owned-nintendo-wii-u/2125099.p?id=1219530044156&skuId=2125099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125099_sa.jpg\"}', 'upc' => '799007841623', 'provider' => 'bestbuy'],\n ['name' => \"All You Need Is Now [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-you-need-is-now-cd-dvd-digipak-cd-dvd-deluxe-edition/2125118.p?id=2187537&skuId=2125118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125118.jpg\"}', 'upc' => '807315170226', 'provider' => 'bestbuy'],\n ['name' => \"Live on I-5 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-on-i-5-pa-cd/2125127.p?id=2188945&skuId=2125127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125127_sa.jpg\"}', 'upc' => '602527621005', 'provider' => 'bestbuy'],\n ['name' => \"Georgia Clay - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/georgia-clay-cd/2125136.p?id=2188919&skuId=2125136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125136_sa.jpg\"}', 'upc' => '602527546520', 'provider' => 'bestbuy'],\n ['name' => \"Wadsworth Mansion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wadsworth-mansion-cd/2125145.p?id=2188931&skuId=2125145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125145_sa.jpg\"}', 'upc' => '030206187526', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Harvey Mandel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-harvey-mandel-cd/2125154.p?id=2188944&skuId=2125154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125154_sa.jpg\"}', 'upc' => '030206187625', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' at the Universal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-at-the-universal-cd/2125163.p?id=2188987&skuId=2125163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125163_sa.jpg\"}', 'upc' => '030206187229', 'provider' => 'bestbuy'],\n ['name' => \"LG - 7.3 Cu. Ft. 14-Cycle Steam Gas Dryer - White\", 'description_short' => \"Front-panel touch-button controls; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Front-panel touch-button controls; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1199.99, 'sale_price' => 999.99, 'url' => 'http://www.bestbuy.com/site/lg-7-3-cu-ft-14-cycle-steam-gas-dryer-white/2125219.p?id=1219530051997&skuId=2125219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125219_sa.jpg\"}', 'upc' => '048231015578', 'provider' => 'bestbuy'],\n ['name' => \"What Dreams May Come (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-dreams-may-come-blu-ray-disc/2125279.p?id=29161&skuId=2125279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125279.jpg\"}', 'upc' => '025192084669', 'provider' => 'bestbuy'],\n ['name' => \"Little Fockers (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-fockers-dvd/2125297.p?id=2188380&skuId=2125297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125297_sa.jpg\"}', 'upc' => '025192044250', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Rick Springfield - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-rick-springfield-cd/2125312.p?id=2188256&skuId=2125312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125312_sa.jpg\"}', 'upc' => '886977867125', 'provider' => 'bestbuy'],\n ['name' => \"Alejandro Fern ndez... Para Ti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alejandro-fernndez-para-ti-cd/2125321.p?id=2188345&skuId=2125321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125321_sa.jpg\"}', 'upc' => '886978449221', 'provider' => 'bestbuy'],\n ['name' => \"The Essential 5th Dimension - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-5th-dimension-cd/2125349.p?id=2187893&skuId=2125349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125349_sa.jpg\"}', 'upc' => '886978270221', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Paul Revere & the Raiders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-paul-revere-the-raiders-cd/2125358.p?id=2188254&skuId=2125358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125358_sa.jpg\"}', 'upc' => '886978156525', 'provider' => 'bestbuy'],\n ['name' => \"Vs. [Expanded Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vs-expanded-edition-digipak-cd/2125367.p?id=2185072&skuId=2125367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125367_sa.jpg\"}', 'upc' => '886978431424', 'provider' => 'bestbuy'],\n ['name' => \"Raising Up the Dead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raising-up-the-dead-cd/2125385.p?id=2188263&skuId=2125385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125385_sa.jpg\"}', 'upc' => '886978614926', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the Gospel Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-gospel-sessions-cd/2125394.p?id=2188247&skuId=2125394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125394_sa.jpg\"}', 'upc' => '027072809225', 'provider' => 'bestbuy'],\n ['name' => \"Heart: Night at Sky Church - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heart-night-at-sky-church-blu-ray-disc/2125409.p?id=2183012&skuId=2125409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125409_sa.jpg\"}', 'upc' => '886978320599', 'provider' => 'bestbuy'],\n ['name' => \"United Nations of Sound [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/united-nations-of-sound-digipak-cd/2125418.p?id=2183088&skuId=2125418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125418_sa.jpg\"}', 'upc' => '793018312523', 'provider' => 'bestbuy'],\n ['name' => \"Angles [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angles-lp-lp-vinyl/2125436.p?id=2188312&skuId=2125436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125436.jpg\"}', 'upc' => '886975347216', 'provider' => 'bestbuy'],\n ['name' => \"Jane Eyre [2011] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jane-eyre-2011-cd-original-soundtrack/2125445.p?id=2186577&skuId=2125445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125445_sa.jpg\"}', 'upc' => '886978525826', 'provider' => 'bestbuy'],\n ['name' => \"With Ernie Haase & Signature Sound - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-ernie-haase-signature-sound-cd/2125454.p?id=2188362&skuId=2125454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125454_sa.jpg\"}', 'upc' => '643157415114', 'provider' => 'bestbuy'],\n ['name' => \"VH1 Storytellers: Dixie Chicks (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vh1-storytellers-dixie-chicks-dvd/2125463.p?id=2190472&skuId=2125463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125463_sa.jpg\"}', 'upc' => '886970532198', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Django Reinhardt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-django-reinhardt-cd/2125472.p?id=2187898&skuId=2125472&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125472', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125472.jpg\"}', 'upc' => '886978373724', 'provider' => 'bestbuy'],\n ['name' => \"1929-1933 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1929-1933-cd/2125480.p?id=1457955&skuId=2125480&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125480', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125480_sa.jpg\"}', 'upc' => '750582457821', 'provider' => 'bestbuy'],\n ['name' => \"Dos Cl sicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clsicos-slipcase-cd/2125481.p?id=2186581&skuId=2125481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125481_sa.jpg\"}', 'upc' => '886978448422', 'provider' => 'bestbuy'],\n ['name' => \"1931-1932 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1931-1932-cd/2125499.p?id=1452588&skuId=2125499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125499.jpg\"}', 'upc' => '750582458422', 'provider' => 'bestbuy'],\n ['name' => \"Vs./Vitalogy/Live at the Orpheum... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vs-vitalogy-live-at-the-orpheum-box-cd/2125506.p?id=2186382&skuId=2125506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125506_sa.jpg\"}', 'upc' => '886978577528', 'provider' => 'bestbuy'],\n ['name' => \"1933-1935 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1933-1935-cd/2125514.p?id=1582972&skuId=2125514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125514.jpg\"}', 'upc' => '750582458927', 'provider' => 'bestbuy'],\n ['name' => \"1933-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1933-1936-cd/2125523.p?id=1581103&skuId=2125523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125523_sa.jpg\"}', 'upc' => '3307517055323', 'provider' => 'bestbuy'],\n ['name' => \"Essential Ricky Skaggs (Bril) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-ricky-skaggs-bril-cd/2125524.p?id=2188255&skuId=2125524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125524_sa.jpg\"}', 'upc' => '886978320629', 'provider' => 'bestbuy'],\n ['name' => \"F.A.M.E. [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/f-a-m-e-pa-cd/2125533.p?id=2188350&skuId=2125533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125533_sa.jpg\"}', 'upc' => '886978606723', 'provider' => 'bestbuy'],\n ['name' => \"Stone Rollin' [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stone-rollin-digipak-cd/2125542.p?id=2188266&skuId=2125542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125542_sa.jpg\"}', 'upc' => '886976056025', 'provider' => 'bestbuy'],\n ['name' => \"1927-1929 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1927-1929-cd/2125550.p?id=3248586&skuId=2125550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125550_sa.jpg\"}', 'upc' => '750582459627', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Eartha Kitt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-eartha-kitt-cd/2125551.p?id=2187891&skuId=2125551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125551_sa.jpg\"}', 'upc' => '886978341921', 'provider' => 'bestbuy'],\n ['name' => \"1938-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-1940-cd/2125569.p?id=3235864&skuId=2125569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125569_sa.jpg\"}', 'upc' => '750582459924', 'provider' => 'bestbuy'],\n ['name' => \"Lil Hardin Armstrong & Her Swing Orchestra:... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lil-hardin-armstrong-her-swing-orchestra-cd/2125578.p?id=1582973&skuId=2125578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125578.jpg\"}', 'upc' => '750582460227', 'provider' => 'bestbuy'],\n ['name' => \"Dos Cl sicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clsicos-slipcase-cd/2125579.p?id=2186580&skuId=2125579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125579_sa.jpg\"}', 'upc' => '886978448323', 'provider' => 'bestbuy'],\n ['name' => \"I Remember Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-remember-me-cd/2125597.p?id=2188265&skuId=2125597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125597_sa.jpg\"}', 'upc' => '886976081928', 'provider' => 'bestbuy'],\n ['name' => \"1935-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-1936-cd/2125621.p?id=1455362&skuId=2125621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125621.jpg\"}', 'upc' => '750582461323', 'provider' => 'bestbuy'],\n ['name' => \"1929-30 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1929-30-cd/2125630.p?id=3221918&skuId=2125630&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125630', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125630_sa.jpg\"}', 'upc' => '750582461620', 'provider' => 'bestbuy'],\n ['name' => \"1926-29 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1926-29-cd/2125685.p?id=3248597&skuId=2125685&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125685', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582462627', 'provider' => 'bestbuy'],\n ['name' => \"1926 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1926-cd/2125694.p?id=1469573&skuId=2125694&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125694', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125694.jpg\"}', 'upc' => '750582462726', 'provider' => 'bestbuy'],\n ['name' => \"1936-1937 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1937-cd/2125701.p?id=1575682&skuId=2125701&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125701.jpg\"}', 'upc' => '750582462825', 'provider' => 'bestbuy'],\n ['name' => \"Stone Rollin' [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stone-rollin-lp-vinyl/2125703.p?id=2403682&skuId=2125703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125703.jpg\"}', 'upc' => '886976056018', 'provider' => 'bestbuy'],\n ['name' => \"1937-1938 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-1938-cd/2125738.p?id=1575696&skuId=2125738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125738.jpg\"}', 'upc' => '750582463129', 'provider' => 'bestbuy'],\n ['name' => \"Vitalogy [Expanded Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vitalogy-expanded-edition-digipak-cd/2125749.p?id=2185073&skuId=2125749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125749_sa.jpg\"}', 'upc' => '886978431226', 'provider' => 'bestbuy'],\n ['name' => \"Femme Fatale [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/femme-fatale-digipak-cd/2125758.p?id=2188257&skuId=2125758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125758_sa.jpg\"}', 'upc' => '886978533227', 'provider' => 'bestbuy'],\n ['name' => \"The Essential Nina Simone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-essential-nina-simone-cd/2125767.p?id=2187899&skuId=2125767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125767_sa.jpg\"}', 'upc' => '886977867026', 'provider' => 'bestbuy'],\n ['name' => \"F.A.M.E. [Deluxe Version] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/f-a-m-e-deluxe-version-pa-digipak-cd/2125776.p?id=2188353&skuId=2125776&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125776', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125776_sa.jpg\"}', 'upc' => '886978607027', 'provider' => 'bestbuy'],\n ['name' => \"Dos Cl sicos [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dos-clsicos-slipcase-cd/2125785.p?id=2186583&skuId=2125785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125785_sa.jpg\"}', 'upc' => '886978448927', 'provider' => 'bestbuy'],\n ['name' => \"Storytellers [Blu-ray Disc] - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storytellers-blu-ray-disc-blu-ray-disc/2125803.p?id=2188357&skuId=2125803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125803.jpg\"}', 'upc' => '886978543592', 'provider' => 'bestbuy'],\n ['name' => \"De Plata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/de-plata-cd/2125812.p?id=2188314&skuId=2125812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125812_sa.jpg\"}', 'upc' => '886978155825', 'provider' => 'bestbuy'],\n ['name' => \"1927 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1927-cd/2125818.p?id=1455400&skuId=2125818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125818.jpg\"}', 'upc' => '750582464126', 'provider' => 'bestbuy'],\n ['name' => \"Angles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/angles-cd/2125821.p?id=2188310&skuId=2125821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125821_sa.jpg\"}', 'upc' => '886975347223', 'provider' => 'bestbuy'],\n ['name' => \"1923-1928 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1923-1928-cd/2125827.p?id=1582989&skuId=2125827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125827.jpg\"}', 'upc' => '750582464225', 'provider' => 'bestbuy'],\n ['name' => \"1930-31 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1930-31-cd/2125836.p?id=3236322&skuId=2125836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582464423', 'provider' => 'bestbuy'],\n ['name' => \"An Evening with Sutton Foster, Live at the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/an-evening-with-sutton-foster-live-at-the-cd/2125849.p?id=2188246&skuId=2125849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125849.jpg\"}', 'upc' => '791558333022', 'provider' => 'bestbuy'],\n ['name' => \"1928-29 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-29-cd/2125863.p?id=3233878&skuId=2125863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582464720', 'provider' => 'bestbuy'],\n ['name' => \"Femme Fatale [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/femme-fatale-deluxe-edition-digipak-cd/2125867.p?id=2188260&skuId=2125867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125867_sa.jpg\"}', 'upc' => '886978533326', 'provider' => 'bestbuy'],\n ['name' => \"1928-1929 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-1929-cd/2125881.p?id=1453863&skuId=2125881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125881_sa.jpg\"}', 'upc' => '3307517061126', 'provider' => 'bestbuy'],\n ['name' => \"1927-1928 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1927-1928-cd/2125907.p?id=3211815&skuId=2125907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2125907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2125\\/2125907_sa.jpg\"}', 'upc' => '750582465529', 'provider' => 'bestbuy'],\n ['name' => \"1929-1930 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1929-1930-cd/2126005.p?id=1452592&skuId=2126005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126005.jpg\"}', 'upc' => '750582467028', 'provider' => 'bestbuy'],\n ['name' => \"1924-1925 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1924-1925-cd/2126014.p?id=1582995&skuId=2126014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126014.jpg\"}', 'upc' => '750582467127', 'provider' => 'bestbuy'],\n ['name' => \"1928-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-1940-cd/2126023.p?id=1452566&skuId=2126023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126023.jpg\"}', 'upc' => '750582467325', 'provider' => 'bestbuy'],\n ['name' => \"1934-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1934-1940-cd/2126032.p?id=1581109&skuId=2126032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582467424', 'provider' => 'bestbuy'],\n ['name' => \"1930-1934 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1930-1934-cd/2126078.p?id=1581210&skuId=2126078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126078.jpg\"}', 'upc' => '750582467929', 'provider' => 'bestbuy'],\n ['name' => \"LG - EasyLoad 7.3 Cu. Ft. 14-Cycle Steam Gas Dryer - Graphite Steel\", 'description_short' => \"Front-panel touch-button controls; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Front-panel touch-button controls; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1299.99, 'sale_price' => 1049.99, 'url' => 'http://www.bestbuy.com/site/lg-easyload-7-3-cu-ft-14-cycle-steam-gas-dryer-graphite-steel/2126089.p?id=1219530041650&skuId=2126089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126089_sa.jpg\"}', 'upc' => '048231015554', 'provider' => 'bestbuy'],\n ['name' => \"1937-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-1939-cd/2126096.p?id=1452819&skuId=2126096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126096.jpg\"}', 'upc' => '750582468124', 'provider' => 'bestbuy'],\n ['name' => \"1935-37 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-37-cd/2126103.p?id=1425529&skuId=2126103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582468322', 'provider' => 'bestbuy'],\n ['name' => \"1933-35 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1933-35-cd/2126112.p?id=3233907&skuId=2126112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126112_sa.jpg\"}', 'upc' => '750582468421', 'provider' => 'bestbuy'],\n ['name' => \"1924, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1924-vol-3-cd/2126121.p?id=1583008&skuId=2126121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582468520', 'provider' => 'bestbuy'],\n ['name' => \"St. Elmo's Fire (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/st-elmos-fire-blu-ray-disc/2126144.p?id=59195&skuId=2126144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126144_sa.jpg\"}', 'upc' => '014381690651', 'provider' => 'bestbuy'],\n ['name' => \"McKinney's Cotton Pickers 1930-1931/Don... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mckinneys-cotton-pickers-1930-1931-don-cd/2126149.p?id=1452831&skuId=2126149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126149.jpg\"}', 'upc' => '750582468728', 'provider' => 'bestbuy'],\n ['name' => \"About Last Night... (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/about-last-night-blu-ray-disc/2126162.p?id=47086&skuId=2126162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126162_sa.jpg\"}', 'upc' => '014381690859', 'provider' => 'bestbuy'],\n ['name' => \"1934-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1934-1940-cd/2126167.p?id=1452833&skuId=2126167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126167_sa.jpg\"}', 'upc' => '750582468926', 'provider' => 'bestbuy'],\n ['name' => \"Closer (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/closer-blu-ray-disc/2126171.p?id=1417150&skuId=2126171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126171_sa.jpg\"}', 'upc' => '014381691559', 'provider' => 'bestbuy'],\n ['name' => \"1936-1938 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1938-cd/2126176.p?id=1457005&skuId=2126176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126176.jpg\"}', 'upc' => '750582469121', 'provider' => 'bestbuy'],\n ['name' => \"The Big Hit (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-hit-blu-ray-disc/2126214.p?id=28880&skuId=2126214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126214_sa.jpg\"}', 'upc' => '014381690958', 'provider' => 'bestbuy'],\n ['name' => \"Taxi Driver (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taxi-driver-blu-ray-disc/2126223.p?id=24938&skuId=2126223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126223_sa.jpg\"}', 'upc' => '043396342101', 'provider' => 'bestbuy'],\n ['name' => \"Mummies: Secrets of the Pharaohs (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mummies-secrets-of-the-pharaohs-blu-ray-disc/2126232.p?id=2018474&skuId=2126232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126232_sa.jpg\"}', 'upc' => '014381676952', 'provider' => 'bestbuy'],\n ['name' => \"The Deep (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-deep-blu-ray-disc/2126241.p?id=21317&skuId=2126241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126241_sa.jpg\"}', 'upc' => '014381690453', 'provider' => 'bestbuy'],\n ['name' => \"1928-1938 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-1938-cd/2126247.p?id=1583015&skuId=2126247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126247.jpg\"}', 'upc' => '750582507427', 'provider' => 'bestbuy'],\n ['name' => \"1925-1926 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1925-1926-cd/2126256.p?id=1452165&skuId=2126256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126256_sa.jpg\"}', 'upc' => '750582507526', 'provider' => 'bestbuy'],\n ['name' => \"1937, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-vol-2-cd/2126336.p?id=1452838&skuId=2126336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126336.jpg\"}', 'upc' => '750582767029', 'provider' => 'bestbuy'],\n ['name' => \"1933-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1933-1941-cd/2126345.p?id=1452839&skuId=2126345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126345.jpg\"}', 'upc' => '3307517069023', 'provider' => 'bestbuy'],\n ['name' => \"1928-1931 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-1931-cd/2126354.p?id=1480413&skuId=2126354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126354.jpg\"}', 'upc' => '750582789120', 'provider' => 'bestbuy'],\n ['name' => \"1936-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1939-cd/2126363.p?id=1479888&skuId=2126363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126363.jpg\"}', 'upc' => '3307517069429', 'provider' => 'bestbuy'],\n ['name' => \"1924-26 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1924-26-cd/2126372.p?id=1589975&skuId=2126372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582821424', 'provider' => 'bestbuy'],\n ['name' => \"Classics, 1929-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classics-1929-1941-cd/2126381.p?id=1457966&skuId=2126381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126381.jpg\"}', 'upc' => '750582821622', 'provider' => 'bestbuy'],\n ['name' => \"1932-34 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1932-34-cd/2126390.p?id=1549910&skuId=2126390&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126390', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126390_sa.jpg\"}', 'upc' => '750582821820', 'provider' => 'bestbuy'],\n ['name' => \"1937-1938 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-1938-cd/2126416.p?id=1583033&skuId=2126416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126416_sa.jpg\"}', 'upc' => '750582850523', 'provider' => 'bestbuy'],\n ['name' => \"Stuff Smith (1936-1939) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stuff-smith-1936-1939-cd/2126425.p?id=1425516&skuId=2126425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126425.jpg\"}', 'upc' => '750582850622', 'provider' => 'bestbuy'],\n ['name' => \"1923-37 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1923-37-cd/2126434.p?id=3236324&skuId=2126434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126434_sa.jpg\"}', 'upc' => '750582850721', 'provider' => 'bestbuy'],\n ['name' => \"1934-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1934-1936-cd/2126461.p?id=1588292&skuId=2126461&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126461', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126461.jpg\"}', 'upc' => '750582858529', 'provider' => 'bestbuy'],\n ['name' => \"1938-1942 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-1942-cd/2126470.p?id=1581112&skuId=2126470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126470.jpg\"}', 'upc' => '750582858628', 'provider' => 'bestbuy'],\n ['name' => \"1941-1942 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1941-1942-cd/2126489.p?id=1548365&skuId=2126489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126489_sa.jpg\"}', 'upc' => '3307517071224', 'provider' => 'bestbuy'],\n ['name' => \"1928-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1928-1936-cd/2126498.p?id=1452840&skuId=2126498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126498.jpg\"}', 'upc' => '750582858826', 'provider' => 'bestbuy'],\n ['name' => \"1935-40 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-40-cd/2126504.p?id=2282289&skuId=2126504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126504_sa.jpg\"}', 'upc' => '750582858925', 'provider' => 'bestbuy'],\n ['name' => \"1936-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1939-cd/2126513.p?id=1474595&skuId=2126513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126513.jpg\"}', 'upc' => '750582870323', 'provider' => 'bestbuy'],\n ['name' => \"Claude Hopkins & His Orchestra 1934-35 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/claude-hopkins-his-orchestra-1934-35-cd/2126522.p?id=2280132&skuId=2126522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126522.jpg\"}', 'upc' => '750582870422', 'provider' => 'bestbuy'],\n ['name' => \"1938, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-vol-2-cd/2126531.p?id=1581233&skuId=2126531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126531_sa.jpg\"}', 'upc' => '750582870521', 'provider' => 'bestbuy'],\n ['name' => \"1926-1927 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1926-1927-cd/2126540.p?id=1583044&skuId=2126540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126540.jpg\"}', 'upc' => '750582870620', 'provider' => 'bestbuy'],\n ['name' => \"1931-1933 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1931-1933-cd/2126559.p?id=1577954&skuId=2126559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126559.jpg\"}', 'upc' => '750582870729', 'provider' => 'bestbuy'],\n ['name' => \"1929-1931 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1929-1931-cd/2126577.p?id=1577622&skuId=2126577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126577.jpg\"}', 'upc' => '750582873720', 'provider' => 'bestbuy'],\n ['name' => \"Boots & His Buddies 1935-37 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boots-his-buddies-1935-37-cd/2126595.p?id=3248625&skuId=2126595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582873928', 'provider' => 'bestbuy'],\n ['name' => \"1939-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1939-1940-cd/2126602.p?id=1456443&skuId=2126602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126602_sa.jpg\"}', 'upc' => '750582874024', 'provider' => 'bestbuy'],\n ['name' => \"1935-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-1940-cd/2126611.p?id=1480794&skuId=2126611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126611_sa.jpg\"}', 'upc' => '750582887123', 'provider' => 'bestbuy'],\n ['name' => \"1938, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-vol-3-cd/2126620.p?id=1479446&skuId=2126620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126620_sa.jpg\"}', 'upc' => '3307517072627', 'provider' => 'bestbuy'],\n ['name' => \"1938-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-1941-cd/2126648.p?id=2277065&skuId=2126648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126648_sa.jpg\"}', 'upc' => '750582887420', 'provider' => 'bestbuy'],\n ['name' => \"Edgar Hayes & His Orchestra 1937-38 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edgar-hayes-his-orchestra-1937-38-cd/2126666.p?id=2282587&skuId=2126666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126666.jpg\"}', 'upc' => '750582900723', 'provider' => 'bestbuy'],\n ['name' => \"1936-1937 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1937-cd/2126675.p?id=1578133&skuId=2126675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126675.jpg\"}', 'upc' => '750582900822', 'provider' => 'bestbuy'],\n ['name' => \"1937-40 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-40-cd/2126693.p?id=1549911&skuId=2126693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126693.jpg\"}', 'upc' => '750582901027', 'provider' => 'bestbuy'],\n ['name' => \"1927 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1927-cd/2126719.p?id=3245156&skuId=2126719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582909320', 'provider' => 'bestbuy'],\n ['name' => \"1937-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1937-1941-cd/2126728.p?id=1578130&skuId=2126728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126728.jpg\"}', 'upc' => '750582909429', 'provider' => 'bestbuy'],\n ['name' => \"1941-43 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1941-43-cd/2126746.p?id=3221852&skuId=2126746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582927621', 'provider' => 'bestbuy'],\n ['name' => \"1939-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1939-1941-cd/2126764.p?id=3219020&skuId=2126764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126764_sa.jpg\"}', 'upc' => '750582927928', 'provider' => 'bestbuy'],\n ['name' => \"1938-1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1938-1939-cd/2126773.p?id=3236104&skuId=2126773&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126773', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126773_sa.jpg\"}', 'upc' => '750582967832', 'provider' => 'bestbuy'],\n ['name' => \"1940-41 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1940-41-cd/2126782.p?id=2275492&skuId=2126782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126782.jpg\"}', 'upc' => '750582967931', 'provider' => 'bestbuy'],\n ['name' => \"1940-1942 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1940-1942-cd/2126791.p?id=1581115&skuId=2126791&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126791', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126791.jpg\"}', 'upc' => '750582968136', 'provider' => 'bestbuy'],\n ['name' => \"1935-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-1940-cd/2126808.p?id=1456917&skuId=2126808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126808_sa.jpg\"}', 'upc' => '750582984228', 'provider' => 'bestbuy'],\n ['name' => \"1924-1926 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1924-1926-cd/2126817.p?id=1456918&skuId=2126817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126817.jpg\"}', 'upc' => '750582984327', 'provider' => 'bestbuy'],\n ['name' => \"1936-1942 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1942-cd/2126880.p?id=1581232&skuId=2126880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126880.jpg\"}', 'upc' => '789368000227', 'provider' => 'bestbuy'],\n ['name' => \"1939 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1939-cd/2126906.p?id=1589972&skuId=2126906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '789368028924', 'provider' => 'bestbuy'],\n ['name' => \"1935-1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1935-1936-cd/2126933.p?id=3236305&skuId=2126933&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2126933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2126\\/2126933_sa.jpg\"}', 'upc' => '789368028726', 'provider' => 'bestbuy'],\n ['name' => \"LG - EasyLoad 7.3 Cu. Ft. 14-Cycle Electric Dryer with Steam - White\", 'description_short' => \"Dual LED display; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Dual LED display; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1099.99, 'sale_price' => 899.99, 'url' => 'http://www.bestbuy.com/site/lg-easyload-7-3-cu-ft-14-cycle-electric-dryer-with-steam-white/2127015.p?id=1219530045519&skuId=2127015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127015_sa.jpg\"}', 'upc' => '048231015561', 'provider' => 'bestbuy'],\n ['name' => \"Musica de Fondo: MTV Unplugged [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musica-de-fondo-mtv-unplugged-cd-dvd-cd-dvd/2127231.p?id=2190492&skuId=2127231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127231.jpg\"}', 'upc' => '5099909514720', 'provider' => 'bestbuy'],\n ['name' => \"Montage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montage-cd/2127264.p?id=110561&skuId=2127264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127264_sa.jpg\"}', 'upc' => '734956100520', 'provider' => 'bestbuy'],\n ['name' => \"Fly on the Wall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fly-on-the-wall-cd/2127268.p?id=2214382&skuId=2127268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127268_sa.jpg\"}', 'upc' => '5099964845128', 'provider' => 'bestbuy'],\n ['name' => \"My Life My Way - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-life-my-way-cd/2127338.p?id=2190493&skuId=2127338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127338_sa.jpg\"}', 'upc' => '727361234928', 'provider' => 'bestbuy'],\n ['name' => \"Eliza Doolittle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eliza-doolittle-cd/2127365.p?id=2765819&skuId=2127365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127365_sa.jpg\"}', 'upc' => '5099909561922', 'provider' => 'bestbuy'],\n ['name' => \"I Don't Want to Cry [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-dont-want-to-cry-compilation-cd/2127816.p?id=2234911&skuId=2127816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2127\\/2127816_sa.jpg\"}', 'upc' => '082333162327', 'provider' => 'bestbuy'],\n ['name' => \"Empress of the Blues [Charly] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empress-of-the-blues-charly-cd/2127834.p?id=3233055&skuId=2127834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2127834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '082333162822', 'provider' => 'bestbuy'],\n ['name' => \"Fast & The Furious (Blu-ray Disc) (Steelbook) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fast-the-furious-blu-ray-disc-steelbook-only--best-buy/2128041.p?id=2724764&skuId=2128041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2128041.jpg\"}', 'upc' => '025192201776', 'provider' => 'bestbuy'],\n ['name' => \"WWE: D-Generation X - One Last Stand (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-d-generation-x-one-last-stand-blu-ray-disc-2-disc/2128063.p?id=2183020&skuId=2128063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128063_sa.jpg\"}', 'upc' => '651191949212', 'provider' => 'bestbuy'],\n ['name' => \"2 Fast 2 Furious (Blu-ray Disc) (Steelbook) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-fast-2-furious-blu-ray-disc-steelbook-only--best-buy/2128069.p?id=2724712&skuId=2128069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2128069.jpg\"}', 'upc' => '025192201783', 'provider' => 'bestbuy'],\n ['name' => \"WWE: D-Generation X - One Last Stand (DVD) (3 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-d-generation-x-one-last-stand-dvd-3-disc/2128072.p?id=2183020&skuId=2128072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128072_sa.jpg\"}', 'upc' => '651191949205', 'provider' => 'bestbuy'],\n ['name' => \"Fast & The Furious: Tokyo Drift (Blu-ray Disc) (Steelbook) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fast-the-furious-tokyo-drift-blu-ray-disc-steelbook-only--best-buy/2128078.p?id=2724727&skuId=2128078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2128078.jpg\"}', 'upc' => '025192201790', 'provider' => 'bestbuy'],\n ['name' => \"H.R. Pufnstuf: The Complete Series [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/h-r-pufnstuf-the-complete-series-3-discs-dvd/2128081.p?id=2162465&skuId=2128081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128081.jpg\"}', 'upc' => '883476029610', 'provider' => 'bestbuy'],\n ['name' => \"Fast Five (Blu-ray Disc) (Steelbook) (Only @ Best Buy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fast-five-blu-ray-disc-steelbook-only--best-buy/2128096.p?id=2246613&skuId=2128096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128096_sa.jpg\"}', 'upc' => '025192201813', 'provider' => 'bestbuy'],\n ['name' => \"Gritos De Muerte Y Libertad (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gritos-de-muerte-y-libertad-2-disc-dvd/2128106.p?id=2183048&skuId=2128106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128106.jpg\"}', 'upc' => '883476031767', 'provider' => 'bestbuy'],\n ['name' => \"LG - EasyLoad 7.3 Cu. Ft. 14-Cycle Electric Dryer with Steam - Graphite Steel\", 'description_short' => \"Dual LED display; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'description_long' => \"Dual LED display; 14 cycles; 5 temperature levels; rust-resistant stainless-steel drum; LoDecibel noise-reduction technology\", 'price' => 1199.99, 'sale_price' => 949.99, 'url' => 'http://www.bestbuy.com/site/lg-easyload-7-3-cu-ft-14-cycle-electric-dryer-with-steam-graphite-steel/2128207.p?id=1219530041651&skuId=2128207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128207_sa.jpg\"}', 'upc' => '048231015547', 'provider' => 'bestbuy'],\n ['name' => \"Still of the Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-of-the-night-cd/2128218.p?id=315609&skuId=2128218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128218_sa.jpg\"}', 'upc' => '095888700029', 'provider' => 'bestbuy'],\n ['name' => \"Alex Murzyn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alex-murzyn-cd/2128236.p?id=69507&skuId=2128236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128236.jpg\"}', 'upc' => '095888700227', 'provider' => 'bestbuy'],\n ['name' => \"My Flame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-flame-cd/2128245.p?id=191241&skuId=2128245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128245.jpg\"}', 'upc' => '095888700326', 'provider' => 'bestbuy'],\n ['name' => \"Virgin Mobile - $50 Broadband to Go Top-Up Card\", 'description_short' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $50 value\", 'description_long' => \"Compatible with Virgin Mobile Beyond Talk, Broadband to Go, payLo and Assurance Wireless plans; redeemable for adding talk time and content services; $50 value\", 'price' => 50, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virgin-mobile-50-broadband-to-go-top-up-card/2128267.p?id=1218311136574&skuId=2128267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128267_sa.jpg\"}', 'upc' => '836182004884', 'provider' => 'bestbuy'],\n ['name' => \"Samurai Champloo: Complete Series [7 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samurai-champloo-complete-series-7-discs-dvd/2128294.p?id=2168053&skuId=2128294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128294_sa.jpg\"}', 'upc' => '704400086588', 'provider' => 'bestbuy'],\n ['name' => \"Black Butler: Season One Part Two (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-butler-season-one-part-two-2-disc-dvd/2128328.p?id=2181024&skuId=2128328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128328.jpg\"}', 'upc' => '704400058479', 'provider' => 'bestbuy'],\n ['name' => \"L'Instinct de Mort (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/linstinct-de-mort-dvd/2128337.p?id=2174695&skuId=2128337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128337_sa.jpg\"}', 'upc' => '705105742854', 'provider' => 'bestbuy'],\n ['name' => \"Hero Tales: Part 1 (3 Disc) (DVD) (Limited Edition) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hero-tales-part-1-3-disc-dvd-limited-edition-boxed-set/2128346.p?id=2181033&skuId=2128346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128346.jpg\"}', 'upc' => '704400089015', 'provider' => 'bestbuy'],\n ['name' => \"All Good Things (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-good-things-blu-ray-disc/2128364.p?id=2181403&skuId=2128364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128364_sa.jpg\"}', 'upc' => '876964003674', 'provider' => 'bestbuy'],\n ['name' => \"A Marine Story (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-marine-story-dvd/2128373.p?id=2180331&skuId=2128373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128373_sa.jpg\"}', 'upc' => '754703763563', 'provider' => 'bestbuy'],\n ['name' => \"Girls, Guns and G-Strings: Andy Sidaris Collection [3 Discs] (DVD) Box\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/girls-guns-and-g-strings-andy-sidaris-collection-3-discs-dvd-box/2128382.p?id=2189528&skuId=2128382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128382_sa.jpg\"}', 'upc' => '683904521576', 'provider' => 'bestbuy'],\n ['name' => \"Evangelion 2.0: You Can (Not) Advance (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => 21.99, 'url' => 'http://www.bestbuy.com/site/evangelion-2-0-you-can-not-advance-blu-ray-disc/2128406.p?id=2181042&skuId=2128406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128406_sa.jpg\"}', 'upc' => '704400098840', 'provider' => 'bestbuy'],\n ['name' => \"On Top of the World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-top-of-the-world-cd/2128441.p?id=156970&skuId=2128441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128441_sa.jpg\"}', 'upc' => '727031971122', 'provider' => 'bestbuy'],\n ['name' => \"Evangelion 2.0: You Can (Not) Advance (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evangelion-2-0-you-can-not-advance-dvd-2-disc/2128442.p?id=2181042&skuId=2128442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128442.jpg\"}', 'upc' => '704400098833', 'provider' => 'bestbuy'],\n ['name' => \"All Good Things (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-good-things-dvd/2128479.p?id=2181403&skuId=2128479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128479_sa.jpg\"}', 'upc' => '876964003667', 'provider' => 'bestbuy'],\n ['name' => \"Excel Saga: Complete Collection [4 Discs] (Uncut) (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/excel-saga-complete-collection-4-discs-uncut-boxed-set-dvd/2128488.p?id=2168067&skuId=2128488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128488_sa.jpg\"}', 'upc' => '704400078606', 'provider' => 'bestbuy'],\n ['name' => \"D Gray-Man: Season Two (4 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/d-gray-man-season-two-4-disc-dvd-boxed-set/2128512.p?id=2181028&skuId=2128512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128512.jpg\"}', 'upc' => '704400069277', 'provider' => 'bestbuy'],\n ['name' => \"Gunslinger Girl: Complete Series With Ova (5 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gunslinger-girl-complete-series-with-ova-5-disc-dvd/2128521.p?id=2181030&skuId=2128521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128521.jpg\"}', 'upc' => '704400084317', 'provider' => 'bestbuy'],\n ['name' => \"L'ennemi Public No. 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lennemi-public-no-1-dvd/2128549.p?id=2185924&skuId=2128549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128549_sa.jpg\"}', 'upc' => '736211211453', 'provider' => 'bestbuy'],\n ['name' => \"Tango! The Dance That Swept the World! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tango-the-dance-that-swept-the-world-cd-various/2128735.p?id=101181&skuId=2128735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128735_sa.jpg\"}', 'upc' => '727031975229', 'provider' => 'bestbuy'],\n ['name' => \"The Early Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-early-classics-cd/2128762.p?id=67555&skuId=2128762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128762_sa.jpg\"}', 'upc' => '727031975625', 'provider' => 'bestbuy'],\n ['name' => \"The Movie Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-movie-hits-cd/2128922.p?id=79254&skuId=2128922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128922.jpg\"}', 'upc' => '727031978428', 'provider' => 'bestbuy'],\n ['name' => \"Django Reinhardt and Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/django-reinhardt-and-friends-cd/2128959.p?id=70293&skuId=2128959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128959_sa.jpg\"}', 'upc' => '727031979227', 'provider' => 'bestbuy'],\n ['name' => \"Paris: Cafe Concert - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paris-cafe-concert-cd-various/2128995.p?id=94388&skuId=2128995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2128995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2128\\/2128995_sa.jpg\"}', 'upc' => '727031979722', 'provider' => 'bestbuy'],\n ['name' => \"A Drop of the Irish: Irish Songs and Ballads - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-drop-of-the-irish-irish-songs-and-ballads-various-cd/2129011.p?id=86286&skuId=2129011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129011.jpg\"}', 'upc' => '727031979920', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Island - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-island-cd/2129013.p?id=2745603&skuId=2129013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129013.jpg\"}', 'upc' => '602537498574', 'provider' => 'bestbuy'],\n ['name' => \"See You Tonight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/see-you-tonight-cd/2129031.p?id=2757602&skuId=2129031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129031_sa.jpg\"}', 'upc' => '602537542871', 'provider' => 'bestbuy'],\n ['name' => \"See You Tonight [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/see-you-tonight-deluxe-edition-cd/2129059.p?id=2757498&skuId=2129059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129059_sa.jpg\"}', 'upc' => '602537542888', 'provider' => 'bestbuy'],\n ['name' => \"Neil Young: Le Noise (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/neil-young-le-noise-dvd/2129062.p?id=2177948&skuId=2129062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129062.jpg\"}', 'upc' => '075993997507', 'provider' => 'bestbuy'],\n ['name' => \"New [Bonus Track] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-bonus-track-digipak-cd/2129068.p?id=2765867&skuId=2129068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129068_sa.jpg\"}', 'upc' => '888072348370', 'provider' => 'bestbuy'],\n ['name' => \"Sinfonica: Reedicion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sinfonica-reedicion-cd/2129071.p?id=2189414&skuId=2129071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129071_sa.jpg\"}', 'upc' => '825646742547', 'provider' => 'bestbuy'],\n ['name' => \"Energizer - MAX AAA Batteries (24-Pack) - Silver\", 'description_short' => \"Alkaline chemistry; 1.5V of power; 1250 mAh capacity; Power Seal technology; up to 10-year shelf life\", 'description_long' => \"Alkaline chemistry; 1.5V of power; 1250 mAh capacity; Power Seal technology; up to 10-year shelf life\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/energizer-max-aaa-batteries-24-pack-silver/2129095.p?id=1219069796882&skuId=2129095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129095_sa.jpg\"}', 'upc' => '039800103895', 'provider' => 'bestbuy'],\n ['name' => \"Margarita: La Diosa de la Cumbia - Sinfonica (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/margarita-la-diosa-de-la-cumbia-sinfonica-dvd/2129114.p?id=2189529&skuId=2129114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129114.jpg\"}', 'upc' => '825646742530', 'provider' => 'bestbuy'],\n ['name' => \"Le Noise - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/le-noise-blu-ray-disc/2129123.p?id=2180646&skuId=2129123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129123.jpg\"}', 'upc' => '075993997538', 'provider' => 'bestbuy'],\n ['name' => \"Atlantic Crossing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantic-crossing-cd/2129132.p?id=2189530&skuId=2129132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129132_sa.jpg\"}', 'upc' => '081227977719', 'provider' => 'bestbuy'],\n ['name' => \"Songs for Celtic Harp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-for-celtic-harp-cd/2129137.p?id=1459372&skuId=2129137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129137.jpg\"}', 'upc' => '717281900188', 'provider' => 'bestbuy'],\n ['name' => \"Die Fruhen Aufnahmen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/die-fruhen-aufnahmen-cd/2129155.p?id=1459134&skuId=2129155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129155_sa.jpg\"}', 'upc' => '717281900324', 'provider' => 'bestbuy'],\n ['name' => \"Greta Keller and IHR Chanson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greta-keller-and-ihr-chanson-cd/2129164.p?id=1459171&skuId=2129164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129164_sa.jpg\"}', 'upc' => '717281931571', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - Pouring Shield for Select KitchenAid Stand Mixers - Clear\", 'description_short' => \"Compatible with KitchenAid stand mixer model KN15EX; 1-piece construction; reduces splashing; dishwasher-safe design\", 'description_long' => \"Compatible with KitchenAid stand mixer model KN15EX; 1-piece construction; reduces splashing; dishwasher-safe design\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-pouring-shield-for-select-kitchenaid-stand-mixers-clear/2129327.p?id=1218310411093&skuId=2129327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129327_sa.jpg\"}', 'upc' => '050946968193', 'provider' => 'bestbuy'],\n ['name' => \"Gattaca (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gattaca-blu-ray-disc/2129614.p?id=54771&skuId=2129614&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129614', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129614.jpg\"}', 'upc' => '014381959154', 'provider' => 'bestbuy'],\n ['name' => \"Peggy Sue Got Married (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/peggy-sue-got-married-blu-ray-disc/2129641.p?id=23811&skuId=2129641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129641_sa.jpg\"}', 'upc' => '014381959451', 'provider' => 'bestbuy'],\n ['name' => \"SodaStream - Metal Source Soda Maker - Black\", 'description_short' => \"Lets you create soda in seconds; touch-responsive top surface; LED carbonation-strength indicator; powered by a CO canister; snap-lock bottle mechanism; brushed-metal finish; includes a 1L bottle\", 'description_long' => \"Lets you create soda in seconds; touch-responsive top surface; LED carbonation-strength indicator; powered by a CO canister; snap-lock bottle mechanism; brushed-metal finish; includes a 1L bottle\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodastream-metal-source-soda-maker-black/2129669.p?id=1219069114346&skuId=2129669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129669_rc.jpg\"}', 'upc' => '811369004543', 'provider' => 'bestbuy'],\n ['name' => \"SodaStream - Plastic Jet Sparkling Water Maker - Red\", 'description_short' => \"Lets you create soda in seconds; powered by a CO&#8322; canister; cordless design; plastic construction; includes a 1L bottle\", 'description_long' => \"Lets you create soda in seconds; powered by a CO&#8322; canister; cordless design; plastic construction; includes a 1L bottle\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodastream-plastic-jet-sparkling-water-maker-red/2129678.p?id=1219069113384&skuId=2129678', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129678_500x500_sa.jpg\"}', 'upc' => '811369001344', 'provider' => 'bestbuy'],\n ['name' => \"SodaStream - 1L Carbonating Bottles (2-Pack) - White\", 'description_short' => \"Hermetic sealing caps; BPA-free; 2-pack\", 'description_long' => \"Hermetic sealing caps; BPA-free; 2-pack\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodastream-1l-carbonating-bottles-2-pack-white/2129687.p?id=1219069112606&skuId=2129687', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129687_rc.jpg\"}', 'upc' => '811369000316', 'provider' => 'bestbuy'],\n ['name' => \"SodaStream - 0.5L Carbonating Bottles (2-Pack) - Black\", 'description_short' => \"Compatible with select SodaStream soda makers; hermetic sealing caps; BPA-free; 2-pack\", 'description_long' => \"Compatible with select SodaStream soda makers; hermetic sealing caps; BPA-free; 2-pack\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodastream-0-5l-carbonating-bottles-2-pack-black/2129696.p?id=1219069110756&skuId=2129696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129696_rc.jpg\"}', 'upc' => '811369002693', 'provider' => 'bestbuy'],\n ['name' => \"SodaStream - 0.5L Carbonating Bottles (2-Pack) - White\", 'description_short' => \"Compatible with select SodaStream soda makers; hermetic sealing caps; BPA-free; 2-pack\", 'description_long' => \"Compatible with select SodaStream soda makers; hermetic sealing caps; BPA-free; 2-pack\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sodastream-0-5l-carbonating-bottles-2-pack-white/2129714.p?id=1219069112668&skuId=2129714', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2129714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2129\\/2129714_rc.jpg\"}', 'upc' => '811369001092', 'provider' => 'bestbuy'],\n ['name' => \"Red, White & Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-white-blues-cd/2130198.p?id=1520984&skuId=2130198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2130198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2130\\/2130198.jpg\"}', 'upc' => '034061008521', 'provider' => 'bestbuy'],\n ['name' => \"VIDBOX for Mac - Mac\", 'description_short' => \"Preserve your precious memories by converting them to digital formats\", 'description_long' => \"Preserve your precious memories by converting them to digital formats\", 'price' => 69.99, 'sale_price' => 55.99, 'url' => 'http://www.bestbuy.com/site/vidbox-for-mac-mac/2131007.p?id=1219069112410&skuId=2131007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2131007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2131\\/2131007_sa.jpg\"}', 'upc' => '882960367832', 'provider' => 'bestbuy'],\n ['name' => \"MLB 15: The Show - PS Vita\", 'description_short' => \"Become immersed in the most exciting moments in Major League Baseball\", 'description_long' => \"Become immersed in the most exciting moments in Major League Baseball\", 'price' => 19.99, 'sale_price' => 12.99, 'url' => 'http://www.bestbuy.com/site/mlb-15-the-show-ps-vita/2132024.p?id=1219526482153&skuId=2132024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2132024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2132\\/2132024_sa.jpg\"}', 'upc' => '711719053095', 'provider' => 'bestbuy'],\n ['name' => \"PNY - Compact Attache 64GB USB 2.0 Flash Drive - Blue\", 'description_short' => \"Data transfer rates up to 480 Mbps via USB 2.0 (up to 12 Mbps via USB 1.1); PC and Mac compatible; high-speed USB 2.0 interface; sliding collar; capless design\", 'description_long' => \"Data transfer rates up to 480 Mbps via USB 2.0 (up to 12 Mbps via USB 1.1); PC and Mac compatible; high-speed USB 2.0 interface; sliding collar; capless design\", 'price' => 39.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/pny-compact-attache-64gb-usb-2-0-flash-drive-blue/2133014.p?id=1219069284724&skuId=2133014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2133014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2133\\/2133014_sa.jpg\"}', 'upc' => '751492569482', 'provider' => 'bestbuy'],\n ['name' => \"Summertime (France) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summertime-france-cd/2135022.p?id=3165204&skuId=2135022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135022.jpg\"}', 'upc' => '042284786225', 'provider' => 'bestbuy'],\n ['name' => \"Love Locked Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-locked-out-cd/2135200.p?id=107204&skuId=2135200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135200.jpg\"}', 'upc' => '735561569221', 'provider' => 'bestbuy'],\n ['name' => \"In Walked Thelonious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-walked-thelonious-cd/2135228.p?id=65599&skuId=2135228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135228_sa.jpg\"}', 'upc' => '735561563120', 'provider' => 'bestbuy'],\n ['name' => \"Their Greatest Yiddish Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/their-greatest-yiddish-hits-cd/2135843.p?id=179323&skuId=2135843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135843_sa.jpg\"}', 'upc' => '076637033629', 'provider' => 'bestbuy'],\n ['name' => \"Best Of The Bird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-bird-cd/2135861.p?id=69753&skuId=2135861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135861_sa.jpg\"}', 'upc' => '076637034022', 'provider' => 'bestbuy'],\n ['name' => \"Irish Folk Songs & Airs - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irish-folk-songs-airs-cd-various/2135905.p?id=77863&skuId=2135905&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135905', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135905_sa.jpg\"}', 'upc' => '076637034923', 'provider' => 'bestbuy'],\n ['name' => \"Feuding Banjos: Bluegrass Banjo of the... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feuding-banjos-bluegrass-banjo-of-the-cd-various/2135923.p?id=73896&skuId=2135923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135923.jpg\"}', 'upc' => '076637035128', 'provider' => 'bestbuy'],\n ['name' => \"Circus Music from the Big Top - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/circus-music-from-the-big-top-cd/2135969.p?id=81737&skuId=2135969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2135969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2135\\/2135969.jpg\"}', 'upc' => '076637035623', 'provider' => 'bestbuy'],\n ['name' => \"Chinese Bamboo Flute Music [Madacy] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chinese-bamboo-flute-music-madacy-cd-various/2136012.p?id=156535&skuId=2136012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136012_sa.jpg\"}', 'upc' => '076637036620', 'provider' => 'bestbuy'],\n ['name' => \"Roots of Dixieland Jazz: New Orleans on... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roots-of-dixieland-jazz-new-orleans-on-cd-various/2136049.p?id=65700&skuId=2136049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136049_sa.jpg\"}', 'upc' => '076637036927', 'provider' => 'bestbuy'],\n ['name' => \"Hines Shines - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hines-shines-cd/2136067.p?id=67439&skuId=2136067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136067_sa.jpg\"}', 'upc' => '076637037122', 'provider' => 'bestbuy'],\n ['name' => \"Kingston - HyperX FURY 120GB Internal Serial ATA III Solid State Drive for Laptops - Black\", 'description_short' => \"KINGSTON HyperX FURY 120GB Internal Serial ATA III Solid State Drive for Laptops: Serial ATA III interface; rugged construction; slim design; data transfer rates up to 500MB/sec.\", 'description_long' => \"KINGSTON HyperX FURY 120GB Internal Serial ATA III Solid State Drive for Laptops: Serial ATA III interface; rugged construction; slim design; data transfer rates up to 500MB/sec.\", 'price' => 69.99, 'sale_price' => 63.99, 'url' => 'http://www.bestbuy.com/site/kingston-hyperx-fury-120gb-internal-serial-ata-iii-solid-state-drive-for-laptops-black/2136075.p?id=1219528993802&skuId=2136075', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136075_sa.jpg\"}', 'upc' => '740617232455', 'provider' => 'bestbuy'],\n ['name' => \"Gold in the Shadow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-in-the-shadow-cd/2136099.p?id=2192310&skuId=2136099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136099_sa.jpg\"}', 'upc' => '067003092128', 'provider' => 'bestbuy'],\n ['name' => \"A Philadelphia Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-philadelphia-story-cd/2136105.p?id=2192315&skuId=2136105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136105_sa.jpg\"}', 'upc' => '633842211220', 'provider' => 'bestbuy'],\n ['name' => \"Arrows [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arrows-digipak-cd/2136114.p?id=2192305&skuId=2136114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136114_sa.jpg\"}', 'upc' => '075678941689', 'provider' => 'bestbuy'],\n ['name' => \"When You're Through Thinking, Say Yes [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-youre-through-thinking-say-yes-lp-vinyl/2136123.p?id=2375774&skuId=2136123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136123.jpg\"}', 'upc' => '790692072514', 'provider' => 'bestbuy'],\n ['name' => \"Queen of the Grand Ole Opry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/queen-of-the-grand-ole-opry-cd/2136129.p?id=132989&skuId=2136129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136129.jpg\"}', 'upc' => '076637037726', 'provider' => 'bestbuy'],\n ['name' => \"Coming Home [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coming-home-digipak-cd/2136132.p?id=2192316&skuId=2136132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136132_sa.jpg\"}', 'upc' => '744302017426', 'provider' => 'bestbuy'],\n ['name' => \"A Matter of Black and White - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-matter-of-black-and-white-cd/2136141.p?id=2192314&skuId=2136141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136141_sa.jpg\"}', 'upc' => '632375721923', 'provider' => 'bestbuy'],\n ['name' => \"When You're Through Thinking, Say Yes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-youre-through-thinking-say-yes-cd/2136169.p?id=2375443&skuId=2136169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136169_sa.jpg\"}', 'upc' => '790692072521', 'provider' => 'bestbuy'],\n ['name' => \"Gold in the Shadow [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gold-in-the-shadow-digipak-cd/2136178.p?id=2192309&skuId=2136178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136178_sa.jpg\"}', 'upc' => '067003092227', 'provider' => 'bestbuy'],\n ['name' => \"Lesser Known [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lesser-known-digipak-cd/2136187.p?id=2192311&skuId=2136187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136187_sa.jpg\"}', 'upc' => '677517006124', 'provider' => 'bestbuy'],\n ['name' => \"Whaling and Sailing Songs from the Days of... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whaling-and-sailing-songs-from-the-days-of-cd-various/2136227.p?id=179397&skuId=2136227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136227_sa.jpg\"}', 'upc' => '076637038921', 'provider' => 'bestbuy'],\n ['name' => \"Night of the Living Dead Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-of-the-living-dead-boys-cd/2136771.p?id=79981&skuId=2136771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136771.jpg\"}', 'upc' => '095081401723', 'provider' => 'bestbuy'],\n ['name' => \"L.A., L.A. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/l-a--l-a-cd/2136806.p?id=3275526&skuId=2136806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2136806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2136\\/2136806_sa.jpg\"}', 'upc' => '095081404625', 'provider' => 'bestbuy'],\n ['name' => \"The King's Speech (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kings-speech-dvd/2137034.p?id=2188642&skuId=2137034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2137034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2137\\/2137034_sa.jpg\"}', 'upc' => '013132313092', 'provider' => 'bestbuy'],\n ['name' => \"The King's Speech (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kings-speech-blu-ray-disc/2137043.p?id=2188642&skuId=2137043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2137043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2137\\/2137043_sa.jpg\"}', 'upc' => '013132313597', 'provider' => 'bestbuy'],\n ['name' => \"Turtle Beach - Ear Force P11 Amplified Stereo Gaming Headset for PlayStation 3 - Black\", 'description_short' => \"Victory never sounded so sweet\", 'description_long' => \"Victory never sounded so sweet\", 'price' => 59.99, 'sale_price' => 39.99, 'url' => 'http://www.bestbuy.com/site/turtle-beach-ear-force-p11-amplified-stereo-gaming-headset-for-playstation-3-black/2137159.p?id=1218310760165&skuId=2137159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2137159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2137\\/2137159_rc.jpg\"}', 'upc' => '731855021352', 'provider' => 'bestbuy'],\n ['name' => \"Cuisinart - Pulp Control Citrus Juicer - Stainless-Steel/Black\", 'description_short' => \"Auto-reversing; adjustable reamer; 3 pulp control settings; nondrip, snap-up spout; final-spin feature\", 'description_long' => \"Auto-reversing; adjustable reamer; 3 pulp control settings; nondrip, snap-up spout; final-spin feature\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuisinart-pulp-control-citrus-juicer-stainless-steel-black/2138042.p?id=1218310759473&skuId=2138042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138042_rc.jpg\"}', 'upc' => '086279036858', 'provider' => 'bestbuy'],\n ['name' => \"Dick Wellstood and His All-Star Orchestra... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dick-wellstood-and-his-all-star-orchestra-cd/2138476.p?id=118110&skuId=2138476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138476_sa.jpg\"}', 'upc' => '091454012923', 'provider' => 'bestbuy'],\n ['name' => \"Stacy Still Swings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stacy-still-swings-cd/2138485.p?id=71117&skuId=2138485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138485.jpg\"}', 'upc' => '091454013326', 'provider' => 'bestbuy'],\n ['name' => \"Dave McKenna Quartet Featuring Zoot Sims - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dave-mckenna-quartet-featuring-zoot-sims-cd/2138494.p?id=68951&skuId=2138494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138494_sa.jpg\"}', 'upc' => '091454013623', 'provider' => 'bestbuy'],\n ['name' => \"John Bunch Plays Kurt Weill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-bunch-plays-kurt-weill-cd/2138500.p?id=64687&skuId=2138500&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138500', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138500.jpg\"}', 'upc' => '091454014422', 'provider' => 'bestbuy'],\n ['name' => \"Merge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merge-cd/2138519.p?id=128208&skuId=2138519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138519.jpg\"}', 'upc' => '091454015627', 'provider' => 'bestbuy'],\n ['name' => \"Live at the New School - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-new-school-cd/2138528.p?id=67440&skuId=2138528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138528.jpg\"}', 'upc' => '091454015726', 'provider' => 'bestbuy'],\n ['name' => \"Alone at the Palace - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alone-at-the-palace-cd/2138537.p?id=71736&skuId=2138537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138537_sa.jpg\"}', 'upc' => '091454016020', 'provider' => 'bestbuy'],\n ['name' => \"Classic Costa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-costa-cd/2138546.p?id=65334&skuId=2138546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138546.jpg\"}', 'upc' => '091454020522', 'provider' => 'bestbuy'],\n ['name' => \"Last of the Whorehouse Piano Players: The... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-of-the-whorehouse-piano-players-the-cd/2138555.p?id=244485&skuId=2138555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138555.jpg\"}', 'upc' => '091454020621', 'provider' => 'bestbuy'],\n ['name' => \"The Music of Lil Hardin Armstrong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-of-lil-hardin-armstrong-cd/2138564.p?id=67985&skuId=2138564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138564.jpg\"}', 'upc' => '091454030224', 'provider' => 'bestbuy'],\n ['name' => \"No Amps Allowed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-amps-allowed-cd/2138573.p?id=2487503&skuId=2138573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138573_sa.jpg\"}', 'upc' => '091454030323', 'provider' => 'bestbuy'],\n ['name' => \"Indiana on Our Minds: The Music of Cole Porter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/indiana-on-our-minds-the-music-of-cole-porter-cd/2138582.p?id=65856&skuId=2138582&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138582', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138582_sa.jpg\"}', 'upc' => '091454030422', 'provider' => 'bestbuy'],\n ['name' => \"Old Times - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-times-cd/2138591.p?id=72241&skuId=2138591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138591.jpg\"}', 'upc' => '091454030729', 'provider' => 'bestbuy'],\n ['name' => \"Two in Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-in-time-cd/2138608.p?id=64230&skuId=2138608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138608_sa.jpg\"}', 'upc' => '091454030828', 'provider' => 'bestbuy'],\n ['name' => \"Old Man Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-man-time-cd/2138617.p?id=67456&skuId=2138617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138617_sa.jpg\"}', 'upc' => '091454031023', 'provider' => 'bestbuy'],\n ['name' => \"Summit Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summit-reunion-cd/2138626.p?id=72059&skuId=2138626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138626.jpg\"}', 'upc' => '091454031122', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Floating Jazz Festival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-floating-jazz-festival-cd/2138635.p?id=66941&skuId=2138635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138635.jpg\"}', 'upc' => '091454031320', 'provider' => 'bestbuy'],\n ['name' => \"The Claw: Live at the Floating Jazz Festival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-claw-live-at-the-floating-jazz-festival-cd/2138644.p?id=70036&skuId=2138644&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138644', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138644.jpg\"}', 'upc' => '091454031429', 'provider' => 'bestbuy'],\n ['name' => \"Roger Kellaway Meets The Duo: Gene Bertoncini... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roger-kellaway-meets-the-duo-gene-bertoncini-cd/2138653.p?id=68150&skuId=2138653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138653_sa.jpg\"}', 'upc' => '091454031528', 'provider' => 'bestbuy'],\n ['name' => \"The Jon Gordon Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jon-gordon-quartet-cd/2138662.p?id=66855&skuId=2138662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138662_sa.jpg\"}', 'upc' => '091454031627', 'provider' => 'bestbuy'],\n ['name' => \"Flying Fingers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flying-fingers-cd/2138671.p?id=65335&skuId=2138671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138671.jpg\"}', 'upc' => '091454031726', 'provider' => 'bestbuy'],\n ['name' => \"The Trio: 1994 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-trio-1994-cd/2138680.p?id=131152&skuId=2138680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138680_sa.jpg\"}', 'upc' => '091454032228', 'provider' => 'bestbuy'],\n ['name' => \"Ankety Low Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ankety-low-day-cd/2138699.p?id=2679978&skuId=2138699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138699.jpg\"}', 'upc' => '008628901624', 'provider' => 'bestbuy'],\n ['name' => \"Burning Kingdom [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burning-kingdom-ep-cd/2138984.p?id=106659&skuId=2138984&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2138984', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2138\\/2138984.jpg\"}', 'upc' => '036172904129', 'provider' => 'bestbuy'],\n ['name' => \"Red Krayola - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-krayola-cd/2139000.p?id=1557675&skuId=2139000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139000.jpg\"}', 'upc' => '036172905225', 'provider' => 'bestbuy'],\n ['name' => \"LifeProof - nüüd Case for Samsung Galaxy S 4 Cell Phones - Black/Clear\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; screenless technology; waterproof; sealed design\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; screenless technology; waterproof; sealed design\", 'price' => 89.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/lifeproof-nuud-case-for-samsung-galaxy-s-4-cell-phones-black-clear/2139009.p?id=1219069248448&skuId=2139009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139009_sa.jpg\"}', 'upc' => '819859011170', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Nature Fusion Folio Case for Apple® iPhone® 6 Plus - Brown\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; vegan faux leather; inner polycarbonate case; automatic sleep/wake lid; integrated stand\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; vegan faux leather; inner polycarbonate case; automatic sleep/wake lid; integrated stand\", 'price' => 44.99, 'sale_price' => 30.99, 'url' => 'http://www.bestbuy.com/site/reveal-nature-fusion-folio-case-for-apple-iphone-6-plus-brown/2139027.p?id=1219530045583&skuId=2139027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139027_rc.jpg\"}', 'upc' => '678358498321', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Nara Folio Case for Apple® iPhone® 6 Plus - Natural\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; wood material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; wood material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'price' => 49.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/reveal-nara-folio-case-for-apple-iphone-6-plus-natural/2139036.p?id=1219530041643&skuId=2139036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139036_sa.jpg\"}', 'upc' => '678358498307', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Hard Shell Case for Apple® iPhone® 6 - Natural\", 'description_short' => \"Compatible with Apple iPhone 6; wood material; slim profile\", 'description_long' => \"Compatible with Apple iPhone 6; wood material; slim profile\", 'price' => 29.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/reveal-hard-shell-case-for-apple-iphone-6-natural/2139045.p?id=1219530041645&skuId=2139045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139045_sa.jpg\"}', 'upc' => '678358498338', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Hard Shell Case for Apple® iPhone® 6 Plus - Natural\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; wood material; slim profile\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; wood material; slim profile\", 'price' => 34.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/reveal-hard-shell-case-for-apple-iphone-6-plus-natural/2139063.p?id=1219530049331&skuId=2139063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139063_sa.jpg\"}', 'upc' => '678358498345', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Nara Folio Case for Apple® iPhone® 6 Plus - Natural\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; bamboo material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; bamboo material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'price' => 49.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/reveal-nara-folio-case-for-apple-iphone-6-plus-natural/2139072.p?id=1219530055015&skuId=2139072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139072_sa.jpg\"}', 'upc' => '678358498246', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Nature Fusion Folio Case for Apple® iPhone® 6 - Brown\", 'description_short' => \"Compatible with Apple iPhone 6; vegan faux leather; inner polycarbonate case; automatic sleep/wake lid; integrated stand\", 'description_long' => \"Compatible with Apple iPhone 6; vegan faux leather; inner polycarbonate case; automatic sleep/wake lid; integrated stand\", 'price' => 44.99, 'sale_price' => 30.99, 'url' => 'http://www.bestbuy.com/site/reveal-nature-fusion-folio-case-for-apple-iphone-6-brown/2139081.p?id=1219530051800&skuId=2139081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139081_rc.jpg\"}', 'upc' => '678358498314', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Nara Folio Case for Apple® iPhone® 6 - Natural\", 'description_short' => \"Compatible with Apple iPhone 6; wood material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'description_long' => \"Compatible with Apple iPhone 6; wood material; inner polycarbonate case; microsuede lining; automatic sleep/wake lid; integrated stand\", 'price' => 49.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/reveal-nara-folio-case-for-apple-iphone-6-natural/2139105.p?id=1219530045156&skuId=2139105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139105_sa.jpg\"}', 'upc' => '678358498291', 'provider' => 'bestbuy'],\n ['name' => \"Reveal - Rome Hard Shell Case for Apple iPhone 6 Plus - Natural\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; sustainable cork material\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; sustainable cork material\", 'price' => 34.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/reveal-rome-hard-shell-case-for-apple-iphone-6-plus-natural/2139123.p?id=1219530054754&skuId=2139123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139123_sa.jpg\"}', 'upc' => '678358498208', 'provider' => 'bestbuy'],\n ['name' => \"The Survivor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-survivor-cd/2139554.p?id=69443&skuId=2139554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139554.jpg\"}', 'upc' => '750817920120', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Perspectives - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-perspectives-cd-various/2139652.p?id=159757&skuId=2139652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139652_sa.jpg\"}', 'upc' => '034066110120', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Perspectives: Putscheid - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-perspectives-putscheid-cd-various/2139661.p?id=247265&skuId=2139661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2139661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2139\\/2139661.jpg\"}', 'upc' => '034066110229', 'provider' => 'bestbuy'],\n ['name' => \"LifeProof - fre Case for Samsung Galaxy S 4 Cell Phones - Black/Clear\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; integrated scratch protector; waterproof; sealed design\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; integrated scratch protector; waterproof; sealed design\", 'price' => 79.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/lifeproof-fre-case-for-samsung-galaxy-s-4-cell-phones-black-clear/2140004.p?id=1219069248447&skuId=2140004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2140004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2140\\/2140004_sa.jpg\"}', 'upc' => '819859011163', 'provider' => 'bestbuy'],\n ['name' => \"KitchenAid - Artisan Series Tilt-Head Stand Mixer - Watermelon\", 'description_short' => \"10 mixing speeds; direct-drive transmission; high-performance motor; 5-quart polished-stainless-steel bowl; die-cast zinc material; easy-access tilt-head design; multipurpose attachment hub\", 'description_long' => \"10 mixing speeds; direct-drive transmission; high-performance motor; 5-quart polished-stainless-steel bowl; die-cast zinc material; easy-access tilt-head design; multipurpose attachment hub\", 'price' => 349.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kitchenaid-artisan-series-tilt-head-stand-mixer-watermelon/2140068.p?id=1219069797008&skuId=2140068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2140068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2140\\/2140068_rc.jpg\"}', 'upc' => '883049286709', 'provider' => 'bestbuy'],\n ['name' => \"Kodak - 10C 2-Pack Ink Cartridges - Multicolor\", 'description_short' => \"Compatible with select Kodak printers; cyan, magenta, yellow, processed black and protective coat ink; 420-page yield per cartridge\", 'description_long' => \"Compatible with select Kodak printers; cyan, magenta, yellow, processed black and protective coat ink; 420-page yield per cartridge\", 'price' => 39.99, 'sale_price' => 37.99, 'url' => 'http://www.bestbuy.com/site/kodak-10c-2-pack-ink-cartridges-multicolor/2140222.p?id=1218311139918&skuId=2140222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2140222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2140\\/2140222_sa.jpg\"}', 'upc' => '041771829995', 'provider' => 'bestbuy'],\n ['name' => \"Swann - Add-On Indoor/Outdoor High-Definition Surveillance Camera - White\", 'description_short' => \"Compatible with Swann Pro-Series high-definition DVRs; CMOS sensor; 1080p resolution; IR night vision up to 100&#039;\", 'description_long' => \"Compatible with Swann Pro-Series high-definition DVRs; CMOS sensor; 1080p resolution; IR night vision up to 100&#039;\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swann-add-on-indoor-outdoor-high-definition-surveillance-camera-white/2142039.p?id=1219530045154&skuId=2142039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2142039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2142\\/2142039_sa.jpg\"}', 'upc' => '840236105649', 'provider' => 'bestbuy'],\n ['name' => \"Pottymouth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pottymouth-cd/2142853.p?id=75749&skuId=2142853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2142853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2142\\/2142853.jpg\"}', 'upc' => '759656020824', 'provider' => 'bestbuy'],\n ['name' => \"The Real Janelle [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-real-janelle-ep-cd/2142880.p?id=106410&skuId=2142880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2142880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2142\\/2142880.jpg\"}', 'upc' => '759656021920', 'provider' => 'bestbuy'],\n ['name' => \"Big Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-heart-cd/2144012.p?id=104702&skuId=2144012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144012.jpg\"}', 'upc' => '063757101321', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Hybrid Case and Holster for Apple® iPhone® SE, 5s and 5 - Hornet\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen shield; belt-clip holster\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen shield; belt-clip holster\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-hybrid-case-and-holster-for-apple-iphone-se-5s-and-5-hornet/2144046.p?id=1219068859232&skuId=2144046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '660543026938', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Realtree Series Hybrid Case and Holster for Apple® iPhone® SE, 5s and 5 - Xtra/Blaze\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen protector; belt-clip holster\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen protector; belt-clip holster\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-realtree-series-hybrid-case-and-holster-for-apple-iphone-se-5s-and-5-xtra-blaze/2144106.p?id=1219068852125&skuId=2144106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '660543026969', 'provider' => 'bestbuy'],\n ['name' => \"Samson - Expedition 308i Portable PA System\", 'description_short' => \"Dual 2-way speakers; internal 300W amplifier; 8-channel mixer; effects processor; built-in Apple&#174; iPod&#174; dock\", 'description_long' => \"Dual 2-way speakers; internal 300W amplifier; 8-channel mixer; effects processor; built-in Apple&#174; iPod&#174; dock\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samson-expedition-308i-portable-pa-system/2144112.p?id=1218311135114&skuId=2144112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144112_sa.jpg\"}', 'upc' => '809164009528', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Hybrid Case and Holster for Apple® iPhone® 5 and 5s - Multi\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen shield; belt-clip holster\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; 2-piece polycarbonate-plastic inner shell; silicone-rubber outer slipcover; built-in screen shield; belt-clip holster\", 'price' => 49.99, 'sale_price' => 35.99, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-hybrid-case-and-holster-for-apple-iphone-5-and-5s-multi/2144115.p?id=1219068840881&skuId=2144115', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144115_sa.jpg\"}', 'upc' => '660543026860', 'provider' => 'bestbuy'],\n ['name' => \"Romántico Desliz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romantico-desliz-cd/2144197.p?id=3322197&skuId=2144197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144197_sa.jpg\"}', 'upc' => '888750512628', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Music For Banjo Fiddle & Bagpipes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-music-for-banjo-fiddle-bagpipes-cd/2144307.p?id=83504&skuId=2144307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144307_sa.jpg\"}', 'upc' => '009001270320', 'provider' => 'bestbuy'],\n ['name' => \"Master Fiddler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/master-fiddler-cd/2144316.p?id=73759&skuId=2144316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144316_sa.jpg\"}', 'upc' => '009001270528', 'provider' => 'bestbuy'],\n ['name' => \"Texas Crapshooter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-crapshooter-cd/2144325.p?id=135535&skuId=2144325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144325_sa.jpg\"}', 'upc' => '009001270627', 'provider' => 'bestbuy'],\n ['name' => \"Fiddle Tunes I Recall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddle-tunes-i-recall-cd/2144334.p?id=176824&skuId=2144334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144334_sa.jpg\"}', 'upc' => '009001270726', 'provider' => 'bestbuy'],\n ['name' => \"Old Time Songs Recorded from 1925 to 1930 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-time-songs-recorded-from-1925-to-1930-cd/2144343.p?id=105846&skuId=2144343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144343_sa.jpg\"}', 'upc' => '009001350121', 'provider' => 'bestbuy'],\n ['name' => \"On the Banks of a Lonely River - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-banks-of-a-lonely-river-cd/2144352.p?id=135538&skuId=2144352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2144352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2144\\/2144352_sa.jpg\"}', 'upc' => '009001350329', 'provider' => 'bestbuy'],\n ['name' => \"Google - Sleeve for Google Nexus 7 Tablets - Black\", 'description_short' => \"Compatible with Google Nexus 7 tablets; neoprene material; faux fur lining; external pocket\", 'description_long' => \"Compatible with Google Nexus 7 tablets; neoprene material; faux fur lining; external pocket\", 'price' => 29.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/google-sleeve-for-google-nexus-7-tablets-black/2145009.p?id=1219069790859&skuId=2145009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2145009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2145\\/2145009_sa.jpg\"}', 'upc' => '819312011167', 'provider' => 'bestbuy'],\n ['name' => \"Razer - Adaro DJ Over-the-Ear Headphones - Black\", 'description_short' => \"RAZER Adaro DJ Over-the-Ear Headphones: Sound isolating; 50mm dynamic drivers with neodymium magnets; adjustable headband; foldable design; included carrying case and audio adapter\", 'description_long' => \"RAZER Adaro DJ Over-the-Ear Headphones: Sound isolating; 50mm dynamic drivers with neodymium magnets; adjustable headband; foldable design; included carrying case and audio adapter\", 'price' => 199.99, 'sale_price' => 192.99, 'url' => 'http://www.bestbuy.com/site/razer-adaro-dj-over-the-ear-headphones-black/2146044.p?id=1219530052126&skuId=2146044', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146044_sa.jpg\"}', 'upc' => '811254021112', 'provider' => 'bestbuy'],\n ['name' => \"Exodus: Gods and Kings [Original Motion... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exodus-gods-and-kings-original-motion-cd-original-soundtrack/2146053.p?id=3308733&skuId=2146053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146053_sa.jpg\"}', 'upc' => '888750190826', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Plus External Battery Case for Apple® iPhone® 6 - White\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'price' => 119.99, 'sale_price' => 89.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-plus-external-battery-case-for-apple-iphone-6-white/2146062.p?id=1219530047644&skuId=2146062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146062_sa.jpg\"}', 'upc' => '810472030722', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Plus External Battery Case for Apple® iPhone® 6 - Black\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'price' => 119.99, 'sale_price' => 109.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-plus-external-battery-case-for-apple-iphone-6-black/2146071.p?id=1219530046347&skuId=2146071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146071_sa.jpg\"}', 'upc' => '810472030715', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Ultra Battery Case for Apple® iPhone® 6 and 6s - Black\", 'description_short' => \"Compatible with Apple iPhone 6 and 6s; provides up to 21 hours of talk time; 3950 mAh rechargeable battery; Lightning interface; standby mode; LED power indicator; absorbs shock; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6 and 6s; provides up to 21 hours of talk time; 3950 mAh rechargeable battery; Lightning interface; standby mode; LED power indicator; absorbs shock; play-through design\", 'price' => 149.99, 'sale_price' => 101.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-ultra-battery-case-for-apple-iphone-6-and-6s-black/2146099.p?id=1219530049266&skuId=2146099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146099_sa.jpg\"}', 'upc' => '810472030746', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack External Battery Case for Apple® iPhone® 6 Plus - White\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; polycarbonate material with rubberized supports; 2600 mAh lithium-ion battery; standby mode; LED indicators; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; polycarbonate material with rubberized supports; 2600 mAh lithium-ion battery; standby mode; LED indicators; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => 90.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-external-battery-case-for-apple-iphone-6-plus-white/2146104.p?id=1219530045161&skuId=2146104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146104_sa.jpg\"}', 'upc' => '810472030852', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack External Battery Case for Apple® iPhone® 6 Plus - Gold\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; polycarbonate material with rubberized supports; 2600 mAh lithium-ion battery; standby mode; LED indicators; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; polycarbonate material with rubberized supports; 2600 mAh lithium-ion battery; standby mode; LED indicators; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => 93.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-external-battery-case-for-apple-iphone-6-plus-gold/2146113.p?id=1219530054688&skuId=2146113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146113_sa.jpg\"}', 'upc' => '810472030869', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Air External Battery Case for Apple® iPhone® 6 - White\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicator lights; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicator lights; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => 65.99, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-air-external-battery-case-for-apple-iphone-6-white/2146122.p?id=1219530049597&skuId=2146122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146122_sa.jpg\"}', 'upc' => '810472030449', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Plus External Battery Case for Apple® iPhone® 6 - Gold\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate material; 3300 mAh lithium-ion battery; standby battery switch; front-facing speaker ports; play-through design; shock absorbent\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-plus-external-battery-case-for-apple-iphone-6-gold/2146131.p?id=1219530052057&skuId=2146131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146131_sa.jpg\"}', 'upc' => '810472030739', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Air External Battery Case for Apple® iPhone® 6 - Gold\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicators; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicators; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-air-external-battery-case-for-apple-iphone-6-gold/2146159.p?id=1219530054818&skuId=2146159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312456783\\/1312456783_sa.jpg\"}', 'upc' => '810472030456', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Air External Battery Case for Apple® iPhone® 6 - Black\", 'description_short' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicators; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6; polycarbonate case material with rubberized supports; 2750 mAh lithium-ion battery; standby switch; LED indicators; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-air-external-battery-case-for-apple-iphone-6-black/2146168.p?id=1219530046484&skuId=2146168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312456134\\/1312456134_sa.jpg\"}', 'upc' => '810472030432', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack Ultra Battery Case for Apple® iPhone® 6 and 6s - Gold\", 'description_short' => \"Compatible with Apple iPhone 6 and 6s; provides up to 21 hours of talk time; 3950 mAh rechargeable battery; Lightning interface; standby mode; LED power indicator; absorbs shock; play-through design\", 'description_long' => \"Compatible with Apple iPhone 6 and 6s; provides up to 21 hours of talk time; 3950 mAh rechargeable battery; Lightning interface; standby mode; LED power indicator; absorbs shock; play-through design\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-ultra-battery-case-for-apple-iphone-6-and-6s-gold/2146186.p?id=1219530047258&skuId=2146186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146186_sa.jpg\"}', 'upc' => '810472030760', 'provider' => 'bestbuy'],\n ['name' => \"mophie - Juice Pack External Battery Case for Apple® iPhone® 6 Plus - Black\", 'description_short' => \"Compatible with Apple iPhone 6 Plus; polycarbonate outer material; 2600 mAh lithium-ion battery; standby switch; front-facing speaker ports; play-through design; shock absorbent\", 'description_long' => \"Compatible with Apple iPhone 6 Plus; polycarbonate outer material; 2600 mAh lithium-ion battery; standby switch; front-facing speaker ports; play-through design; shock absorbent\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mophie-juice-pack-external-battery-case-for-apple-iphone-6-plus-black/2146195.p?id=1219530047386&skuId=2146195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146195_sa.jpg\"}', 'upc' => '810472030845', 'provider' => 'bestbuy'],\n ['name' => \"Coffee People - Donut Shop Decaf Coffee K-Cups (18-Pack) - White\", 'description_short' => \"Compatible with Keurig single-serve beverage machines; decaffeinated coffee; 18-pack\", 'description_long' => \"Compatible with Keurig single-serve beverage machines; decaffeinated coffee; 18-pack\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coffee-people-donut-shop-decaf-coffee-k-cups-18-pack-white/2146562.p?id=1218311135453&skuId=2146562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146562_sa.jpg\"}', 'upc' => '099555018028', 'provider' => 'bestbuy'],\n ['name' => \"Portal 2 - Xbox 360\", 'description_short' => \"Open the door to all-new challenges\", 'description_long' => \"Open the door to all-new challenges\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portal-2-xbox-360/2146641.p?id=1218312186944&skuId=2146641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146641_sa.jpg\"}', 'upc' => '696055245048', 'provider' => 'bestbuy'],\n ['name' => \"Timothy's - Kahlua Coffee K-Cups (18-Pack) - White\", 'description_short' => \"Compatible with Keurig single-serve beverage machines; Kahlua-flavored coffee; hand-picked Arabica beans; 18-pack\", 'description_long' => \"Compatible with Keurig single-serve beverage machines; Kahlua-flavored coffee; hand-picked Arabica beans; 18-pack\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timothys-kahlua-coffee-k-cups-18-pack-white/2146669.p?id=1218311138789&skuId=2146669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146669_sa.jpg\"}', 'upc' => '099555018004', 'provider' => 'bestbuy'],\n ['name' => \"Keurig - Revv Coffee K-Cups (16-Pack) - White\", 'description_short' => \"Compatible with Keurig single-serve beverage machines; 16-pack\", 'description_long' => \"Compatible with Keurig single-serve beverage machines; 16-pack\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keurig-revv-coffee-k-cups-16-pack-white/2146687.p?id=1218311131844&skuId=2146687&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146687', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146687_sa.jpg\"}', 'upc' => '099555007930', 'provider' => 'bestbuy'],\n ['name' => \"VTech - CS6419-2 DECT 6.0 Expandable Cordless Phone System - Silver\", 'description_short' => \"2 handsets includedSpecial Features: Caller ID/call waiting; stores 50 calls; full-duplex handset speakerphone; expandable up to 5 handsets\", 'description_long' => \"2 handsets includedSpecial Features: Caller ID/call waiting; stores 50 calls; full-duplex handset speakerphone; expandable up to 5 handsets\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vtech-cs6419-2-dect-6-0-expandable-cordless-phone-system-silver/2146869.p?id=1218312456420&skuId=2146869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2146869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/2146869_rc.jpg\"}', 'upc' => '735078028242', 'provider' => 'bestbuy'],\n ['name' => \"First Album/The Waiting Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-album-the-waiting-game-cd/2147091.p?id=106173&skuId=2147091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147091.jpg\"}', 'upc' => '046632931329', 'provider' => 'bestbuy'],\n ['name' => \"Collected Works - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collected-works-cd/2147108.p?id=106452&skuId=2147108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147108_sa.jpg\"}', 'upc' => '046632931428', 'provider' => 'bestbuy'],\n ['name' => \"Mother Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mother-earth-cd/2147162.p?id=106431&skuId=2147162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147162.jpg\"}', 'upc' => '046633000727', 'provider' => 'bestbuy'],\n ['name' => \"Biohazard [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/biohazard-pa-cd/2147803.p?id=2244610&skuId=2147803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147803.jpg\"}', 'upc' => '747014400425', 'provider' => 'bestbuy'],\n ['name' => \"Rock & More Roses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-more-roses-cd/2147821.p?id=2472943&skuId=2147821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147821.jpg\"}', 'upc' => '096045001126', 'provider' => 'bestbuy'],\n ['name' => \"The Harper's Land - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-harpers-land-cd/2147830.p?id=85311&skuId=2147830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147830.jpg\"}', 'upc' => '096045001621', 'provider' => 'bestbuy'],\n ['name' => \"Nuair Bhu Mi Og: Gaelic Songs by the Mod Gold... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nuair-bhu-mi-og-gaelic-songs-by-the-mod-gold-cd/2147849.p?id=276444&skuId=2147849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147849_sa.jpg\"}', 'upc' => '096045001225', 'provider' => 'bestbuy'],\n ['name' => \"Swing Time Johnny Red - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swing-time-johnny-red-cd/2147885.p?id=177345&skuId=2147885&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147885', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147885_sa.jpg\"}', 'upc' => '096045003625', 'provider' => 'bestbuy'],\n ['name' => \"Another Quiet Sunday - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-quiet-sunday-cd/2147894.p?id=177348&skuId=2147894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147894_sa.jpg\"}', 'upc' => '096045003724', 'provider' => 'bestbuy'],\n ['name' => \"Uphill Slide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uphill-slide-cd/2147901.p?id=85951&skuId=2147901&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147901', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147901_sa.jpg\"}', 'upc' => '096045004028', 'provider' => 'bestbuy'],\n ['name' => \"Quiet Tradition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quiet-tradition-cd/2147910.p?id=155785&skuId=2147910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147910.jpg\"}', 'upc' => '096045004127', 'provider' => 'bestbuy'],\n ['name' => \"A's Sireadh Spors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-sireadh-spors-cd/2147938.p?id=177337&skuId=2147938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147938.jpg\"}', 'upc' => '096045004325', 'provider' => 'bestbuy'],\n ['name' => \"Fiddlers 5 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddlers-5-cd-various/2147947.p?id=2466660&skuId=2147947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147947.jpg\"}', 'upc' => '096045004424', 'provider' => 'bestbuy'],\n ['name' => \"After Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-hours-cd/2147956.p?id=2398732&skuId=2147956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147956.jpg\"}', 'upc' => '096045004523', 'provider' => 'bestbuy'],\n ['name' => \"VTech - CS6114 DECT 6.0 Cordless Phone - White\", 'description_short' => \"1 handset includedSpecial Features: Caller ID/call waiting; stores 30 calls; backlit keypad and display with voicemail waiting indicator; wall-mount capability\", 'description_long' => \"1 handset includedSpecial Features: Caller ID/call waiting; stores 30 calls; backlit keypad and display with voicemail waiting indicator; wall-mount capability\", 'price' => 19.99, 'sale_price' => 15.99, 'url' => 'http://www.bestbuy.com/site/vtech-cs6114-dect-6-0-cordless-phone-white/2147968.p?id=1218312948554&skuId=2147968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2147968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2147\\/2147968_rc.jpg\"}', 'upc' => '735078018625', 'provider' => 'bestbuy'],\n ['name' => \"Nelson Pinedo Canta - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nelson-pinedo-canta-cd/2148036.p?id=3183454&skuId=2148036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148036.jpg\"}', 'upc' => '739256906223', 'provider' => 'bestbuy'],\n ['name' => \"Ahi Viene - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ahi-viene-cd/2148045.p?id=3181526&skuId=2148045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148045.jpg\"}', 'upc' => '739256912620', 'provider' => 'bestbuy'],\n ['name' => \"La Incomparable Celia - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-incomparable-celia-cd/2148054.p?id=3181495&skuId=2148054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148054.jpg\"}', 'upc' => '739256913627', 'provider' => 'bestbuy'],\n ['name' => \"HP - 126A Image Drum - Multicolor\", 'description_short' => \"HP 126A Image Drum: Compatible with select HP printers; yields up to 7,000 color pages and up to 14,000 black-and-white pages\", 'description_long' => \"HP 126A Image Drum: Compatible with select HP printers; yields up to 7,000 color pages and up to 14,000 black-and-white pages\", 'price' => 81.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-126a-image-drum-multicolor/2148109.p?id=1218311160415&skuId=2148109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148109_sa.jpg\"}', 'upc' => '884962223352', 'provider' => 'bestbuy'],\n ['name' => \"Fujifilm - X-A1 Mirrorless Camera with 16-50mm Lens - Blue\", 'description_short' => \"16.3-megapixel, 23.6mm x 15.6mm (APS-C) CMOS sensorISO 200-6400, expandable to 25,600Shooting speeds up to 5.6 fpsBuilt-in Wi-Fi\", 'description_long' => \"16.3-megapixel, 23.6mm x 15.6mm (APS-C) CMOS sensorISO 200-6400, expandable to 25,600Shooting speeds up to 5.6 fpsBuilt-in Wi-Fi\", 'price' => 499.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fujifilm-x-a1-mirrorless-camera-with-16-50mm-lens-blue/2148481.p?id=1219069797529&skuId=2148481', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148481_sa.jpg\"}', 'upc' => '074101023008', 'provider' => 'bestbuy'],\n ['name' => \"Fujifilm - Fujinon XF 23mm f/1.4 R Wide-Angle Lens for Most Fujifilm X-Trans-Sensor-Equipped Digital Cameras - Black\", 'description_short' => \"Compatible with most Fujifilm digital cameras with an X-Trans CMOS sensor; aspherical element; 62mm filter size\", 'description_long' => \"Compatible with most Fujifilm digital cameras with an X-Trans CMOS sensor; aspherical element; 62mm filter size\", 'price' => 899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fujifilm-fujinon-xf-23mm-f-1-4-r-wide-angle-lens-for-most-fujifilm-x-trans-sensor-equipped-digital-cameras-black/2148507.p?id=1219069790849&skuId=2148507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148507_sa.jpg\"}', 'upc' => '074101023312', 'provider' => 'bestbuy'],\n ['name' => \"Music of the Rainforest Pygmies - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-the-rainforest-pygmies-cd-various/2148955.p?id=95683&skuId=2148955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2148955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2148\\/2148955.jpg\"}', 'upc' => '744457715727', 'provider' => 'bestbuy'],\n ['name' => \"Persian Love Songs & Mystic Chants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/persian-love-songs-mystic-chants-cd/2149017.p?id=94742&skuId=2149017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149017_sa.jpg\"}', 'upc' => '744457723524', 'provider' => 'bestbuy'],\n ['name' => \"Gioteck - HC2 Over-the-Ear Wired Gaming Headset - Black/Blue\", 'description_short' => \"GIOTECK HC2 Over-the-Ear Wired Gaming Headset: Stereo sound; 3.5mm connector; compatible with select gaming consoles and portable devices\", 'description_long' => \"GIOTECK HC2 Over-the-Ear Wired Gaming Headset: Stereo sound; 3.5mm connector; compatible with select gaming consoles and portable devices\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gioteck-hc2-over-the-ear-wired-gaming-headset-black-blue/2149023.p?id=1219530046549&skuId=2149023', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149023_sa.jpg\"}', 'upc' => '812313014533', 'provider' => 'bestbuy'],\n ['name' => \"African Rhythms & Instruments, Vol. 2... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/african-rhythms-instruments-vol-2-various-cd/2149062.p?id=72556&skuId=2149062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149062.jpg\"}', 'upc' => '744457733820', 'provider' => 'bestbuy'],\n ['name' => \"Hal Leonard - ASAP Rudimental Drumming Instructional DVD\", 'description_short' => \"From our expanded online assortment; drum set instruction; DVD format; teaches basic essential rudiments\", 'description_long' => \"From our expanded online assortment; drum set instruction; DVD format; teaches basic essential rudiments\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-leonard-asap-rudimental-drumming-instructional-dvd/2149065.p?id=1218312182254&skuId=2149065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149065_sa.jpg\"}', 'upc' => '884088482039', 'provider' => 'bestbuy'],\n ['name' => \"Ancient Egypt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-egypt-cd/2149080.p?id=95793&skuId=2149080&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149080', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149080_sa.jpg\"}', 'upc' => '744457734728', 'provider' => 'bestbuy'],\n ['name' => \"Music of the Incas: Andean Harp & Violin... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-the-incas-andean-harp-violin-cd/2149099.p?id=73534&skuId=2149099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149099_sa.jpg\"}', 'upc' => '744457734827', 'provider' => 'bestbuy'],\n ['name' => \"Music of the Nile Valley - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-the-nile-valley-cd-various/2149106.p?id=93359&skuId=2149106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149106_sa.jpg\"}', 'upc' => '744457735527', 'provider' => 'bestbuy'],\n ['name' => \"Taqasim: Art of Improvisation in Arabic Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taqasim-art-of-improvisation-in-arabic-music-cd/2149124.p?id=179653&skuId=2149124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149124_sa.jpg\"}', 'upc' => '744457737422', 'provider' => 'bestbuy'],\n ['name' => \"Turkish Sufi Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turkish-sufi-music-cd/2149160.p?id=77810&skuId=2149160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149160_sa.jpg\"}', 'upc' => '744457739228', 'provider' => 'bestbuy'],\n ['name' => \"Gypsy Passions: The Flamenco Guitar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gypsy-passions-the-flamenco-guitar-cd/2149179.p?id=179649&skuId=2149179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149179_sa.jpg\"}', 'upc' => '744457739921', 'provider' => 'bestbuy'],\n ['name' => \"The Ancient Art Music of China - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ancient-art-music-of-china-cd/2149213.p?id=105134&skuId=2149213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149213_sa.jpg\"}', 'upc' => '744457740927', 'provider' => 'bestbuy'],\n ['name' => \"Soh Daiko-Taiko Drum Ensemble - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soh-daiko-taiko-drum-ensemble-cd-various/2149222.p?id=101098&skuId=2149222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149222_sa.jpg\"}', 'upc' => '744457741023', 'provider' => 'bestbuy'],\n ['name' => \"Keys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keys-cd/2149295.p?id=154325&skuId=2149295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149295_sa.jpg\"}', 'upc' => '770641002823', 'provider' => 'bestbuy'],\n ['name' => \"Live Bird '65-'67 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-bird-65-67-cd/2149428.p?id=102167&skuId=2149428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149428_sa.jpg\"}', 'upc' => '090771100627', 'provider' => 'bestbuy'],\n ['name' => \"Drunk on Cock [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drunk-on-cock-ep-cd/2149847.p?id=93110&skuId=2149847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149847.jpg\"}', 'upc' => '723631200624', 'provider' => 'bestbuy'],\n ['name' => \"I Am Joe's Eyes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-joes-eyes-cd/2149990.p?id=106815&skuId=2149990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2149990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2149\\/2149990_sa.jpg\"}', 'upc' => '753701000120', 'provider' => 'bestbuy'],\n ['name' => \"Myn Ynd Wymyn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/myn-ynd-wymyn-cd/2150004.p?id=106818&skuId=2150004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150004_sa.jpg\"}', 'upc' => '753701000328', 'provider' => 'bestbuy'],\n ['name' => \"But I'm Happy Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/but-im-happy-now-cd/2150013.p?id=81414&skuId=2150013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150013_sa.jpg\"}', 'upc' => '753701000427', 'provider' => 'bestbuy'],\n ['name' => \"Live? in Seattle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-seattle-cd/2150022.p?id=91349&skuId=2150022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150022_sa.jpg\"}', 'upc' => '753701000625', 'provider' => 'bestbuy'],\n ['name' => \"Elusive-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elusive-cd/2150031.p?id=242040&skuId=2150031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150031_sa.jpg\"}', 'upc' => '753701000724', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 7.0 Cu. Ft. 11-Cycle Electric Dryer - White\", 'description_short' => \"Electronic controls; 11 drying programs; front loading type; powder coated drum\", 'description_long' => \"Electronic controls; 11 drying programs; front loading type; powder coated drum\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-7-0-cu-ft-11-cycle-electric-dryer-white/2150039.p?id=bb2150039&skuId=2150039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150039_sa.jpg\"}', 'upc' => '883049332239', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 4.3 Cu. Ft. 11-Cycle High-Efficiency Top-Loading Washer - White\", 'description_short' => \"Cycle indicator lights; automatic load size sensing technology; 11 wash cycles; 5 temperature combinations; advanced vibration control; large capacity washer with optimal dispensers\", 'description_long' => \"Cycle indicator lights; automatic load size sensing technology; 11 wash cycles; 5 temperature combinations; advanced vibration control; large capacity washer with optimal dispensers\", 'price' => 649.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-4-3-cu-ft-11-cycle-high-efficiency-top-loading-washer-white/2150048.p?id=bb2150048&skuId=2150048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150048_sa.jpg\"}', 'upc' => '883049330846', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 7.0 Cu. Ft. 11-Cycle Gas Dryer - White\", 'description_short' => \"Electronic controls; 11 drying programs; front loading type; powder coated drum\", 'description_long' => \"Electronic controls; 11 drying programs; front loading type; powder coated drum\", 'price' => 749.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-7-0-cu-ft-11-cycle-gas-dryer-white/2150057.p?id=bb2150057&skuId=2150057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150057_sa.jpg\"}', 'upc' => '883049332284', 'provider' => 'bestbuy'],\n ['name' => \"Comin' Out Hard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comin-out-hard-cd/2150111.p?id=81372&skuId=2150111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150111_sa.jpg\"}', 'upc' => '764344000125', 'provider' => 'bestbuy'],\n ['name' => \"Como Bailaba Cuba - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/como-bailaba-cuba-cd-various/2150120.p?id=79404&skuId=2150120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150120.jpg\"}', 'upc' => '053561110329', 'provider' => 'bestbuy'],\n ['name' => \"Initiation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/initiation-cd/2150166.p?id=132524&skuId=2150166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150166_sa.jpg\"}', 'upc' => '736998588328', 'provider' => 'bestbuy'],\n ['name' => \"Luna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luna-cd/2150175.p?id=132528&skuId=2150175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150175.jpg\"}', 'upc' => '736998594824', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Garden - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-garden-cd/2150184.p?id=81118&skuId=2150184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150184.jpg\"}', 'upc' => '739341000126', 'provider' => 'bestbuy'],\n ['name' => \"S.F. Blues Guitar Summit, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/s-f-blues-guitar-summit-vol-2-cd/2150530.p?id=122375&skuId=2150530&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150530', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150530.jpg\"}', 'upc' => '026245200623', 'provider' => 'bestbuy'],\n ['name' => \"Relentless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relentless-cd/2150889.p?id=106718&skuId=2150889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2150889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2150\\/2150889.jpg\"}', 'upc' => '767771202322', 'provider' => 'bestbuy'],\n ['name' => \"Live in Tokyo 1986 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-tokyo-1986-cd/2151405.p?id=71129&skuId=2151405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2151405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2151\\/2151405_sa.jpg\"}', 'upc' => '750507600622', 'provider' => 'bestbuy'],\n ['name' => \"Remembering North - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remembering-north-cd/2151414.p?id=71000&skuId=2151414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2151414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2151\\/2151414_sa.jpg\"}', 'upc' => '750507600721', 'provider' => 'bestbuy'],\n ['name' => \"Jon & Billy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jon-billy-cd/2151600.p?id=3316284&skuId=2151600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2151600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '717101500123', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Public Theatre in New York, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-public-theatre-in-new-york-vol-2-cd/2151637.p?id=66145&skuId=2151637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2151637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2151\\/2151637_sa.jpg\"}', 'upc' => '730182209020', 'provider' => 'bestbuy'],\n ['name' => \"A Charlie Brown Thanksgiving (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-charlie-brown-thanksgiving-dvd/2152028.p?id=47298&skuId=2152028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152028_sa.jpg\"}', 'upc' => '883929353934', 'provider' => 'bestbuy'],\n ['name' => \"Wild Women Never Die [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-women-never-die-pa-cd/2152039.p?id=171766&skuId=2152039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152039_sa.jpg\"}', 'upc' => '718751851320', 'provider' => 'bestbuy'],\n ['name' => \"The World's Greatest Gospel Singer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-worlds-greatest-gospel-singer-cd/2152235.p?id=86507&skuId=2152235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152235_sa.jpg\"}', 'upc' => '079891327527', 'provider' => 'bestbuy'],\n ['name' => \"The Very Thought of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-thought-of-you-cd/2152262.p?id=275145&skuId=2152262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152262.jpg\"}', 'upc' => '079891330220', 'provider' => 'bestbuy'],\n ['name' => \"Big Bad John and Other Fabulous Songs and... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-bad-john-and-other-fabulous-songs-and-cd/2152324.p?id=155388&skuId=2152324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152324_sa.jpg\"}', 'upc' => '079891358323', 'provider' => 'bestbuy'],\n ['name' => \"Giant Hits [Sony] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giant-hits-sony-cd/2152360.p?id=154199&skuId=2152360&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152360', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152360_sa.jpg\"}', 'upc' => '079891571326', 'provider' => 'bestbuy'],\n ['name' => \"Bob Wills Special - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bob-wills-special-cd/2152379.p?id=112026&skuId=2152379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152379_sa.jpg\"}', 'upc' => '079891581325', 'provider' => 'bestbuy'],\n ['name' => \"Reflections [Sony] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reflections-sony-cd/2152468.p?id=1504608&skuId=2152468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152468_sa.jpg\"}', 'upc' => '079891656122', 'provider' => 'bestbuy'],\n ['name' => \"Clearwater Classics [Sony Special Product] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clearwater-classics-sony-special-product-cd/2152501.p?id=98262&skuId=2152501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152501_sa.jpg\"}', 'upc' => '079891786522', 'provider' => 'bestbuy'],\n ['name' => \"I Walk with God - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-walk-with-god-cd/2152529.p?id=78012&skuId=2152529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152529.jpg\"}', 'upc' => '079891803021', 'provider' => 'bestbuy'],\n ['name' => \"All American Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-american-country-cd/2152565.p?id=73505&skuId=2152565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152565_sa.jpg\"}', 'upc' => '079891887427', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Irish Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-irish-hits-cd/2152609.p?id=154663&skuId=2152609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152609_sa.jpg\"}', 'upc' => '079891997027', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' 60's [Sony Special Products] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-60s-sony-special-products-cd-various/2152707.p?id=99013&skuId=2152707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152707.jpg\"}', 'upc' => '079892113327', 'provider' => 'bestbuy'],\n ['name' => \"For The Love Of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-the-love-of-you-cd/2152743.p?id=86401&skuId=2152743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152743_sa.jpg\"}', 'upc' => '079892134322', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Sony Special Products] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-sony-special-products-cd/2152823.p?id=101493&skuId=2152823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152823_sa.jpg\"}', 'upc' => '079892155129', 'provider' => 'bestbuy'],\n ['name' => \"Gospel Glory - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gospel-glory-cd/2152878.p?id=77028&skuId=2152878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2152878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2152\\/2152878_sa.jpg\"}', 'upc' => '079892160826', 'provider' => 'bestbuy'],\n ['name' => \"Addams Family/Addams Family Values (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/addams-family-addams-family-values-dvd/2153009.p?id=2636706&skuId=2153009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2153009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2153\\/2153009_sa.jpg\"}', 'upc' => '883929322213', 'provider' => 'bestbuy'],\n ['name' => \"Always & Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/always-forever-cd/2153065.p?id=173568&skuId=2153065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2153065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2153\\/2153065_sa.jpg\"}', 'upc' => '079892264128', 'provider' => 'bestbuy'],\n ['name' => \"Star Spangled Rhythm - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-spangled-rhythm-cd-various/2153207.p?id=155146&skuId=2153207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2153207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2153\\/2153207_sa.jpg\"}', 'upc' => '079892331325', 'provider' => 'bestbuy'],\n ['name' => \"It's About Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-about-time-cd/2153751.p?id=94330&skuId=2153751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2153751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2153\\/2153751.jpg\"}', 'upc' => '095081202122', 'provider' => 'bestbuy'],\n ['name' => \"The Last Airbender (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-airbender-blu-ray-disc/2154017.p?id=2154431&skuId=2154017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154017_sa.jpg\"}', 'upc' => '883929310432', 'provider' => 'bestbuy'],\n ['name' => \"Gu-Ru - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gu-ru-cd/2154206.p?id=1452854&skuId=2154206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154206_sa.jpg\"}', 'upc' => '723721902421', 'provider' => 'bestbuy'],\n ['name' => \"Lou'siana Dance Party - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lousiana-dance-party-cd-various/2154420.p?id=286167&skuId=2154420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154420_sa.jpg\"}', 'upc' => '099792300429', 'provider' => 'bestbuy'],\n ['name' => \"Cruel World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cruel-world-cd/2154714.p?id=86689&skuId=2154714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154714.jpg\"}', 'upc' => '748775151021', 'provider' => 'bestbuy'],\n ['name' => \"Strata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strata-cd/2154741.p?id=245444&skuId=2154741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154741_sa.jpg\"}', 'upc' => '748775151823', 'provider' => 'bestbuy'],\n ['name' => \"Who Are These People? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-are-these-people-cd/2154769.p?id=120014&skuId=2154769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2154769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2154\\/2154769.jpg\"}', 'upc' => '727106121025', 'provider' => 'bestbuy'],\n ['name' => \"Golden Years (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-years-dvd-2-disc/2155007.p?id=59223&skuId=2155007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155007_sa.jpg\"}', 'upc' => '097366214240', 'provider' => 'bestbuy'],\n ['name' => \"Prism [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prism-deluxe-edition-digipak-cd/2155025.p?id=2758373&skuId=2155025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155025_sa.jpg\"}', 'upc' => '602537532339', 'provider' => 'bestbuy'],\n ['name' => \"Rin-Daughters Of Mnemosyne: Complete Series (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rin-daughters-of-mnemosyne-complete-series-2-disc-dvd/2155206.p?id=2168061&skuId=2155206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155206.jpg\"}', 'upc' => '704400096426', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 6\\\" 2-Way In-Ceiling Speaker (Each) - Black\", 'description_short' => \"25-80W per-channel recommended amplifier power; 6&quot; woven DuPont&#8482; KEVLAR&#174; fiber bass/midrange driver; two 1&quot; soft-dome tweeters; 2-position stereo/surround switch; binding posts\", 'description_long' => \"25-80W per-channel recommended amplifier power; 6&quot; woven DuPont&#8482; KEVLAR&#174; fiber bass/midrange driver; two 1&quot; soft-dome tweeters; 2-position stereo/surround switch; binding posts\", 'price' => 499.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-6-2-way-in-ceiling-speaker-each-black/2155524.p?id=1219590014500&skuId=2155524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155524_sa.jpg\"}', 'upc' => '714346310364', 'provider' => 'bestbuy'],\n ['name' => \"Bitter Youth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bitter-youth-cd/2155606.p?id=92805&skuId=2155606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155606.jpg\"}', 'upc' => '760291001628', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 999.98, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '714346311644', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 6\\\" 2-Way In-Ceiling Speaker (Each) - White/Black\", 'description_short' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Ceiling Speaker (Each): 80W peak power per channel; dual 1&quot; soft dome tweeters; 6&quot; fiberglass cone bass/midrange driver; 2-position stereo/surround switch; QuickDogs technology\", 'description_long' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Ceiling Speaker (Each): 80W peak power per channel; dual 1&quot; soft dome tweeters; 6&quot; fiberglass cone bass/midrange driver; 2-position stereo/surround switch; QuickDogs technology\", 'price' => 349.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-6-2-way-in-ceiling-speaker-each-white-black/2155621.p?id=1219508238144&skuId=2155621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155621_sa.jpg\"}', 'upc' => '714346310371', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 6\\\" 2-Way In-Ceiling Speakers (Pair) - White/Black\", 'description_short' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Ceiling Speakers (Pair): 130W peak power; 6&quot; woofer; 1&quot; tweeter; 8 ohms nominal impedance; ideal for smaller listening areas\", 'description_long' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Ceiling Speakers (Pair): 130W peak power; 6&quot; woofer; 1&quot; tweeter; 8 ohms nominal impedance; ideal for smaller listening areas\", 'price' => 399.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-6-2-way-in-ceiling-speakers-pair-white-black/2155658.p?id=1219539805489&skuId=2155658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155658_sa.jpg\"}', 'upc' => '714346311705', 'provider' => 'bestbuy'],\n ['name' => \"Bass Jams for Lovers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bass-jams-for-lovers-cd/2155722.p?id=181274&skuId=2155722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155722_sa.jpg\"}', 'upc' => '784023100823', 'provider' => 'bestbuy'],\n ['name' => \"Roots Radicals [Single] [Limited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roots-radicals-single-limited-cd/2155759.p?id=1510429&skuId=2155759&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2155759', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2155\\/2155759_sa.jpg\"}', 'upc' => '045778645220', 'provider' => 'bestbuy'],\n ['name' => \"The Stand (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-stand-dvd-2-disc/2156006.p?id=49023&skuId=2156006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156006_sa.jpg\"}', 'upc' => '097366220746', 'provider' => 'bestbuy'],\n ['name' => \"Viva! Hysteria: Live at... [CD & DVD] [Box] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viva-hysteria-live-at-cd-dvd-box-cd-dvd-deluxe-edition/2156015.p?id=2758270&skuId=2156015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2156015.jpg\"}', 'upc' => '8024391062043', 'provider' => 'bestbuy'],\n ['name' => \"Prism - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prism-cd/2156033.p?id=2758303&skuId=2156033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156033_sa.jpg\"}', 'upc' => '602537532322', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 8\\\" 2-Way Round In-Ceiling Speakers (Pair) - White/Black\", 'description_short' => \"BOWERS &amp; WILKINS 8&quot; 2-Way Round In-Ceiling Speakers (Pair): 130W peak power; 8&quot; fiberglass cone bass/midrange driver; 1&quot; soft dome tweeter; QuickDogs technology; plug-and-play functionality; pivoting tweeter housing; EQ switch\", 'description_long' => \"BOWERS &amp; WILKINS 8&quot; 2-Way Round In-Ceiling Speakers (Pair): 130W peak power; 8&quot; fiberglass cone bass/midrange driver; 1&quot; soft dome tweeter; QuickDogs technology; plug-and-play functionality; pivoting tweeter housing; EQ switch\", 'price' => 599.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-8-2-way-round-in-ceiling-speakers-pair-white-black/2156038.p?id=1219508238141&skuId=2156038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156038_sa.jpg\"}', 'upc' => '714346311736', 'provider' => 'bestbuy'],\n ['name' => \"Apple - Silicone Case for Apple® iPhone® 5c - Pink\", 'description_short' => \"Compatible with Apple iPhone 5c; silicone material\", 'description_long' => \"Compatible with Apple iPhone 5c; silicone material\", 'price' => 29.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/apple-silicone-case-for-apple-iphone-5c-pink/2156042.p?id=1219071383495&skuId=2156042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156042_sa.jpg\"}', 'upc' => '885909787272', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 5\\\" 2-Way In-Wall Speakers (Pair)\", 'description_short' => \"100W maximum power handling; 5&quot; DuPont&#8482; KEVLAR&#174; fiber bass/midrange cone; 1&quot; Nautilus tube-loaded, aluminum-dome tweeter; infinite baffle enclosure; binding posts\", 'description_long' => \"100W maximum power handling; 5&quot; DuPont&#8482; KEVLAR&#174; fiber bass/midrange cone; 1&quot; Nautilus tube-loaded, aluminum-dome tweeter; infinite baffle enclosure; binding posts\", 'price' => 549.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-5-2-way-in-wall-speakers-pair/2156047.p?id=1219203333441&skuId=2156047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156047_sc.jpg\"}', 'upc' => '714346310418', 'provider' => 'bestbuy'],\n ['name' => \"Apple - Silicone Case for Apple® iPhone® 5c - Green\", 'description_short' => \"Compatible with Apple iPhone 5c; silicone material\", 'description_long' => \"Compatible with Apple iPhone 5c; silicone material\", 'price' => 29.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/apple-silicone-case-for-apple-iphone-5c-green/2156051.p?id=1219071229245&skuId=2156051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156051_sa.jpg\"}', 'upc' => '885909787326', 'provider' => 'bestbuy'],\n ['name' => \"Apple - Silicone Case for Apple® iPhone® 5c - Black\", 'description_short' => \"Compatible with Apple iPhone 5c; silicone material\", 'description_long' => \"Compatible with Apple iPhone 5c; silicone material\", 'price' => 29.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/apple-silicone-case-for-apple-iphone-5c-black/2156097.p?id=1219071221807&skuId=2156097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156097_sa.jpg\"}', 'upc' => '885909787470', 'provider' => 'bestbuy'],\n ['name' => \"Apple - Leather Case for Apple® iPhone® 5 and 5s - Brown\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; leather material\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; leather material\", 'price' => 39.99, 'sale_price' => 26.99, 'url' => 'http://www.bestbuy.com/site/apple-leather-case-for-apple-iphone-5-and-5s-brown/2156139.p?id=1219071221795&skuId=2156139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2156139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2156\\/2156139_sa.jpg\"}', 'upc' => '885909787500', 'provider' => 'bestbuy'],\n ['name' => \"New [Best Buy Exclusive] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-best-buy-exclusive-cd/2158004.p?id=2758377&skuId=2158004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158004_sa.jpg\"}', 'upc' => '888072349377', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Solid Pink\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-solid-pink/2158013.p?id=1219530046620&skuId=2158013', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158013_sa.jpg\"}', 'upc' => '846143002712', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Color Mix 32GB USB 2.0 Flash Drive - Blue\", 'description_short' => \"EMTEC Color Mix 32GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'description_long' => \"EMTEC Color Mix 32GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-color-mix-32gb-usb-2-0-flash-drive-blue/2158022.p?id=1219530045459&skuId=2158022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158022_sa.jpg\"}', 'upc' => '846143003177', 'provider' => 'bestbuy'],\n ['name' => \"Blue...Not Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-not-blues-cd/2158024.p?id=1984055&skuId=2158024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '767004010328', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Solid Purple\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-solid-purple/2158031.p?id=1219530055080&skuId=2158031', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158031_sa.jpg\"}', 'upc' => '846143002729', 'provider' => 'bestbuy'],\n ['name' => \"Glee: The Music, Vol. 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glee-the-music-vol-5-cd/2158054.p?id=2195821&skuId=2158054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158054_sa.jpg\"}', 'upc' => '886978585226', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Color Mix 16GB USB 2.0 Flash Drive - Yellow\", 'description_short' => \"EMTEC Color Mix 16GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'description_long' => \"EMTEC Color Mix 16GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-color-mix-16gb-usb-2-0-flash-drive-yellow/2158059.p?id=1219530049532&skuId=2158059', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158059_sa.jpg\"}', 'upc' => '846143003160', 'provider' => 'bestbuy'],\n ['name' => \"Plays the Music of \\\"Walls in the City\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-the-music-of-walls-in-the-city-cd/2158060.p?id=106664&skuId=2158060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158060_sa.jpg\"}', 'upc' => '036172601622', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Solid Blue\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish\", 'price' => 8.99, 'sale_price' => 6.99, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-solid-blue/2158068.p?id=1219530051933&skuId=2158068', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158068_sa.jpg\"}', 'upc' => '846143002705', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Color Mix 8GB USB 2.0 Flash Drive - Purple\", 'description_short' => \"EMTEC Color Mix 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'description_long' => \"EMTEC Color Mix 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 5MB/sec.; for Windows, Mac and Linux; clip-on cap\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-color-mix-8gb-usb-2-0-flash-drive-purple/2158077.p?id=1219530047514&skuId=2158077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158077_sa.jpg\"}', 'upc' => '846143003153', 'provider' => 'bestbuy'],\n ['name' => \"Memorex - CD/CD-R/RW/MP3 Portable Boombox with AM/FM Radio - Silver\", 'description_short' => \"Plays CD, CD-R/RW and MP3 discs; bass boost; programmable CD memory; full-function LCD display\", 'description_long' => \"Plays CD, CD-R/RW and MP3 discs; bass boost; programmable CD memory; full-function LCD display\", 'price' => 49.99, 'sale_price' => 42.99, 'url' => 'http://www.bestbuy.com/site/memorex-cd-cd-r-rw-mp3-portable-boombox-with-am-fm-radio-silver/2158081.p?id=1218339573412&skuId=2158081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158081_sa.jpg\"}', 'upc' => '749720001255', 'provider' => 'bestbuy'],\n ['name' => \"Emtec - Swivel Series 8GB USB 2.0 Flash Drive - Black\", 'description_short' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish; mustache pattern\", 'description_long' => \"EMTEC Swivel Series 8GB USB 2.0 Flash Drive: Read speeds up to 18MB/sec.; write speeds up to 8MB/sec.; works with PC, Mac and Linux; capless swivel design; rubber-coated finish; mustache pattern\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emtec-swivel-series-8gb-usb-2-0-flash-drive-black/2158086.p?id=1219530049467&skuId=2158086', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158086_sa.jpg\"}', 'upc' => '846143002668', 'provider' => 'bestbuy'],\n ['name' => \"Is It...Man or Astro-Man? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/is-it-man-or-astro-man-cd/2158355.p?id=90313&skuId=2158355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158355_sa.jpg\"}', 'upc' => '745058012925', 'provider' => 'bestbuy'],\n ['name' => \"Far East, Vol. 1 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-east-vol-1-various-cd/2158569.p?id=109545&skuId=2158569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158569_sa.jpg\"}', 'upc' => '755603863124', 'provider' => 'bestbuy'],\n ['name' => \"Far East, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/far-east-vol-2-cd/2158578.p?id=109542&skuId=2158578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158578_sa.jpg\"}', 'upc' => '755603863322', 'provider' => 'bestbuy'],\n ['name' => \"When the Rose Bloom in Dixieland - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-rose-bloom-in-dixieland-cd/2158738.p?id=105677&skuId=2158738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158738_sa.jpg\"}', 'upc' => '755757102629', 'provider' => 'bestbuy'],\n ['name' => \"The L&N Don't Stop Here Anymore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-l-n-dont-stop-here-anymore-cd/2158747.p?id=105457&skuId=2158747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158747_sa.jpg\"}', 'upc' => '755757102728', 'provider' => 'bestbuy'],\n ['name' => \"Chubby Wise in Nashville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chubby-wise-in-nashville-cd/2158783.p?id=106303&skuId=2158783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2158783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2158\\/2158783_sa.jpg\"}', 'upc' => '755757103121', 'provider' => 'bestbuy'],\n ['name' => \"Chayanne [1988] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chayanne-1988-cd/2160510.p?id=130043&skuId=2160510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160510_sa.jpg\"}', 'upc' => '037628005124', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mejor de La Baraja con el Rey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mejor-de-la-baraja-con-el-rey-cd/2160538.p?id=109595&skuId=2160538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160538_sa.jpg\"}', 'upc' => '037628005629', 'provider' => 'bestbuy'],\n ['name' => \"Raices - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raices-cd/2160609.p?id=86085&skuId=2160609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160609.jpg\"}', 'upc' => '037628012320', 'provider' => 'bestbuy'],\n ['name' => \"Un Hombre Solo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/un-hombre-solo-cd/2160707.p?id=167914&skuId=2160707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160707.jpg\"}', 'upc' => '037628019121', 'provider' => 'bestbuy'],\n ['name' => \"Canta en Español - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canta-en-espanol-cd/2160725.p?id=167885&skuId=2160725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160725.jpg\"}', 'upc' => '037628019329', 'provider' => 'bestbuy'],\n ['name' => \"Hoy Platique Con Mi Gallo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoy-platique-con-mi-gallo-cd/2160912.p?id=109590&skuId=2160912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160912_sa.jpg\"}', 'upc' => '037628023227', 'provider' => 'bestbuy'],\n ['name' => \"Eydie Gorme & Los Panchos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eydie-gorme-los-panchos-cd/2160921.p?id=167886&skuId=2160921&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2160921', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2160\\/2160921.jpg\"}', 'upc' => '037628023425', 'provider' => 'bestbuy'],\n ['name' => \"Quien Como Tu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quien-como-tu-cd/2161083.p?id=111416&skuId=2161083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161083.jpg\"}', 'upc' => '037628031024', 'provider' => 'bestbuy'],\n ['name' => \"Arriba Huentitan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arriba-huentitan-cd/2161154.p?id=109566&skuId=2161154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161154_sa.jpg\"}', 'upc' => '037628035428', 'provider' => 'bestbuy'],\n ['name' => \"Clasicas de Jose Alfredo Jimenez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clasicas-de-jose-alfredo-jimenez-cd/2161181.p?id=109571&skuId=2161181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161181_sa.jpg\"}', 'upc' => '037628038320', 'provider' => 'bestbuy'],\n ['name' => \"La Muerte de un Gallero - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-muerte-de-un-gallero-cd/2161190.p?id=109592&skuId=2161190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161190_sa.jpg\"}', 'upc' => '037628038825', 'provider' => 'bestbuy'],\n ['name' => \"Punto de Vista - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/punto-de-vista-cd/2161225.p?id=118812&skuId=2161225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161225_sa.jpg\"}', 'upc' => '037628041924', 'provider' => 'bestbuy'],\n ['name' => \"Exitos de Gloria Estefan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exitos-de-gloria-estefan-cd/2161243.p?id=169464&skuId=2161243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161243_sa.jpg\"}', 'upc' => '037628043225', 'provider' => 'bestbuy'],\n ['name' => \"En Vivo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/en-vivo-cd/2161252.p?id=111408&skuId=2161252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161252_sa.jpg\"}', 'upc' => '037628043829', 'provider' => 'bestbuy'],\n ['name' => \"De un Rancho a Otro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/de-un-rancho-a-otro-cd/2161314.p?id=109573&skuId=2161314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161314_sa.jpg\"}', 'upc' => '037628049227', 'provider' => 'bestbuy'],\n ['name' => \"Palabra de Rey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/palabra-de-rey-cd/2161323.p?id=109603&skuId=2161323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161323_sa.jpg\"}', 'upc' => '037628049425', 'provider' => 'bestbuy'],\n ['name' => \"Le Canta a America Latin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/le-canta-a-america-latin-cd/2161350.p?id=109621&skuId=2161350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161350_sa.jpg\"}', 'upc' => '037628052128', 'provider' => 'bestbuy'],\n ['name' => \"Caminando - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caminando-cd/2161430.p?id=113384&skuId=2161430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161430_sa.jpg\"}', 'upc' => '037628059325', 'provider' => 'bestbuy'],\n ['name' => \"Mi Mexico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mi-mexico-cd/2161449.p?id=111410&skuId=2161449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161449_sa.jpg\"}', 'upc' => '037628060529', 'provider' => 'bestbuy'],\n ['name' => \"Todo Panchos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/todo-panchos-cd/2161546.p?id=127522&skuId=2161546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161546_sa.jpg\"}', 'upc' => '037628064220', 'provider' => 'bestbuy'],\n ['name' => \"Estas Tocando Fuego - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/estas-tocando-fuego-cd/2161573.p?id=113585&skuId=2161573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161573.jpg\"}', 'upc' => '037628066026', 'provider' => 'bestbuy'],\n ['name' => \"Perspectiva - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/perspectiva-cd/2161653.p?id=97895&skuId=2161653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161653_sa.jpg\"}', 'upc' => '037628068921', 'provider' => 'bestbuy'],\n ['name' => \"Ricky Martin [1991] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricky-martin-1991-cd/2161671.p?id=164669&skuId=2161671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161671_sa.jpg\"}', 'upc' => '037628069522', 'provider' => 'bestbuy'],\n ['name' => \"Calor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/calor-cd/2161822.p?id=161948&skuId=2161822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161822.jpg\"}', 'upc' => '037628076322', 'provider' => 'bestbuy'],\n ['name' => \"Cuenta Conmigo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuenta-conmigo-cd/2161886.p?id=110985&skuId=2161886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161886_sa.jpg\"}', 'upc' => '037628077626', 'provider' => 'bestbuy'],\n ['name' => \"Que de Raro Tiene - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/que-de-raro-tiene-cd/2161975.p?id=109605&skuId=2161975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2161975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2161\\/2161975_sa.jpg\"}', 'upc' => '037628080923', 'provider' => 'bestbuy'],\n ['name' => \"Provocame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/provocame-cd/2162046.p?id=77298&skuId=2162046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162046.jpg\"}', 'upc' => '037628083122', 'provider' => 'bestbuy'],\n ['name' => \"Como Nunca - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/como-nunca-cd/2162064.p?id=110986&skuId=2162064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162064.jpg\"}', 'upc' => '037628083528', 'provider' => 'bestbuy'],\n ['name' => \"Amor y Control - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amor-y-control-cd/2162073.p?id=74947&skuId=2162073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162073_sa.jpg\"}', 'upc' => '037628083924', 'provider' => 'bestbuy'],\n ['name' => \"Uniden - Professional 40-Channel CB Radio - Black/Chrome\", 'description_short' => \"UNIDEN Professional 40-Channel CB Radio: 40 channels; extra-large S/RF/SWR meter; built-in SWR; microphone gain adjustment; RF gain adjustment; automatic noise limiter and noise blanker; noise-canceling corded microphone\", 'description_long' => \"UNIDEN Professional 40-Channel CB Radio: 40 channels; extra-large S/RF/SWR meter; built-in SWR; microphone gain adjustment; RF gain adjustment; automatic noise limiter and noise blanker; noise-canceling corded microphone\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uniden-professional-40-channel-cb-radio-black-chrome/2162106.p?id=1219530054953&skuId=2162106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162106_rc.jpg\"}', 'upc' => '050633550762', 'provider' => 'bestbuy'],\n ['name' => \"Get Home Safely [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-home-safely-pa-cd/2162115.p?id=2758288&skuId=2162115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162115_sa.jpg\"}', 'upc' => '799491413627', 'provider' => 'bestbuy'],\n ['name' => \"Aftershock [Limited] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aftershock-limited-digipak-cd/2162124.p?id=2765762&skuId=2162124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162124.jpg\"}', 'upc' => '825646410088', 'provider' => 'bestbuy'],\n ['name' => \"Arjona Metamorfosis en Vivo [CD/DVD] [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/arjona-metamorfosis-en-vivo-cd-dvd-cd-dvd-cd-dvd/2162133.p?id=2754869&skuId=2162133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162133.jpg\"}', 'upc' => '825646417049', 'provider' => 'bestbuy'],\n ['name' => \"Echoes from the Underground [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-from-the-underground-digipak-cd/2162179.p?id=2755370&skuId=2162179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162179_sa.jpg\"}', 'upc' => '859711037740', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mas Grande De Little J - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mas-grande-de-little-j-cd/2162180.p?id=89429&skuId=2162180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162180_sa.jpg\"}', 'upc' => '037628087021', 'provider' => 'bestbuy'],\n ['name' => \"Ahora Y Siempre - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ahora-y-siempre-cd/2162313.p?id=113582&skuId=2162313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162313.jpg\"}', 'upc' => '037628092520', 'provider' => 'bestbuy'],\n ['name' => \"Dynamo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynamo-cd/2162475.p?id=99374&skuId=2162475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162475_sa.jpg\"}', 'upc' => '037628095323', 'provider' => 'bestbuy'],\n ['name' => \"Animal Nocturno - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/animal-nocturno-cd/2162581.p?id=73219&skuId=2162581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162581_sa.jpg\"}', 'upc' => '037628096627', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - D7100 DSLR Camera with 18-140mm and 55-300mm VR Lens Kit - Black\", 'description_short' => \"24.1-megapixel, DX-format CMOS sensorISO 100-6400, expandable to 25,600Shooting speeds up to 6 fps51 focus points (15 cross-type)\", 'description_long' => \"24.1-megapixel, DX-format CMOS sensorISO 100-6400, expandable to 25,600Shooting speeds up to 6 fps51 focus points (15 cross-type)\", 'price' => 2129.99, 'sale_price' => 1349.99, 'url' => 'http://www.bestbuy.com/site/nikon-d7100-dslr-camera-with-18-140mm-and-55-300mm-vr-lens-kit-black/2162601.p?id=1219069284738&skuId=2162601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162601_sa.jpg\"}', 'upc' => '018208132935', 'provider' => 'bestbuy'],\n ['name' => \"Jensen - Bluetooth Wireless Speaker System - Black\", 'description_short' => \"Compatible with most Bluetooth-enabled devices; 4W RMS total system power; Bass Blaster; built-in microphone; digital volume control; charging indicator; 2 full-range speakers; auxiliary input jack\", 'description_long' => \"Compatible with most Bluetooth-enabled devices; 4W RMS total system power; Bass Blaster; built-in microphone; digital volume control; charging indicator; 2 full-range speakers; auxiliary input jack\", 'price' => 69.99, 'sale_price' => 32.99, 'url' => 'http://www.bestbuy.com/site/jensen-bluetooth-wireless-speaker-system-black/2162692.p?id=1219069284730&skuId=2162692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162692_sa.jpg\"}', 'upc' => '077283905216', 'provider' => 'bestbuy'],\n ['name' => \"30 Aniversario - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/30-aniversario-cd/2162830.p?id=97854&skuId=2162830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162830.jpg\"}', 'upc' => '037628099628', 'provider' => 'bestbuy'],\n ['name' => \"Hecho en Puerto Rico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hecho-en-puerto-rico-cd/2162965.p?id=78386&skuId=2162965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2162965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2162\\/2162965.jpg\"}', 'upc' => '037628104025', 'provider' => 'bestbuy'],\n ['name' => \"Te Llevo En Mi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/te-llevo-en-mi-cd/2163027.p?id=94691&skuId=2163027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163027.jpg\"}', 'upc' => '037628104629', 'provider' => 'bestbuy'],\n ['name' => \"Justo a Tiempo... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/justo-a-tiempo-cd/2163116.p?id=90485&skuId=2163116&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163116', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163116_sa.jpg\"}', 'upc' => '037628106128', 'provider' => 'bestbuy'],\n ['name' => \"Lastima Que Seas Ajena - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lastima-que-seas-ajena-cd/2163152.p?id=82102&skuId=2163152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163152.jpg\"}', 'upc' => '037628107026', 'provider' => 'bestbuy'],\n ['name' => \"Historias - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/historias-cd/2163731.p?id=111428&skuId=2163731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163731_sa.jpg\"}', 'upc' => '037628128427', 'provider' => 'bestbuy'],\n ['name' => \"20 De Coleccion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-de-coleccion-cd/2163795.p?id=173210&skuId=2163795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163795_sa.jpg\"}', 'upc' => '037628130024', 'provider' => 'bestbuy'],\n ['name' => \"Grandes Exitos a La Manera de Alejandro Fernandez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grandes-exitos-a-la-manera-de-alejandro-fernandez-cd/2163866.p?id=170203&skuId=2163866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163866.jpg\"}', 'upc' => '037628131021', 'provider' => 'bestbuy'],\n ['name' => \"Recordando a Los Panchos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/recordando-a-los-panchos-cd/2163946.p?id=109606&skuId=2163946&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2163946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2163\\/2163946_sa.jpg\"}', 'upc' => '037628132127', 'provider' => 'bestbuy'],\n ['name' => \"Symphony No. 6 (Devil Choirs at the Gates of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-no-6-devil-choirs-at-the-gates-of-cd/2164035.p?id=75719&skuId=2164035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2164035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2164\\/2164035_sa.jpg\"}', 'upc' => '735286191028', 'provider' => 'bestbuy'],\n ['name' => \"Second Three Years/Take... [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-three-years-take-cd-dvd-digipak-cd-dvd/2164854.p?id=2754649&skuId=2164854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2164854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2164\\/2164854.jpg\"}', 'upc' => '689492146351', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - 3-Piece Knob and Nut Accessory Kit for GoPro\", 'description_short' => \"Compatible with most UKPro and GoPro mounts; enhances torque and adjustability; nylon and stainless-steel hardware; wing-nut-style design; high-contrast color; includes sticker\", 'description_long' => \"Compatible with most UKPro and GoPro mounts; enhances torque and adjustability; nylon and stainless-steel hardware; wing-nut-style design; high-contrast color; includes sticker\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-3-piece-knob-and-nut-accessory-kit-for-gopro/2164863.p?id=1219070172786&skuId=2164863', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2164863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2164\\/2164863_sa.jpg\"}', 'upc' => '032705128543', 'provider' => 'bestbuy'],\n ['name' => \"Ricardo Arjona: Arjona Metamorfosis en Vivo - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ricardo-arjona-arjona-metamorfosis-en-vivo-blu-ray-disc/2164881.p?id=2755051&skuId=2164881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2164881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2164\\/2164881_sa.jpg\"}', 'upc' => '825646416998', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - CCM 683 8\\\" 2-Way In-Ceiling Speakers (Pair) - Black\", 'description_short' => \"130W maximum power handling; 8&quot; DuPont&#8482; KEVLAR&#174; fiber bass/midrange cone; 1&quot; aluminum-dome tweeter; infinite baffle enclosure; binding posts\", 'description_long' => \"130W maximum power handling; 8&quot; DuPont&#8482; KEVLAR&#174; fiber bass/midrange cone; 1&quot; aluminum-dome tweeter; infinite baffle enclosure; binding posts\", 'price' => 849.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-ccm-683-8-2-way-in-ceiling-speakers-pair-black/2165036.p?id=1218312458927&skuId=2165036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165036_sa.jpg\"}', 'upc' => '714346311729', 'provider' => 'bestbuy'],\n ['name' => \"Bowers & Wilkins - 6\\\" 2-Way In-Wall Speakers (Pair) - White/Black\", 'description_short' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Wall Speakers (Pair): 25-130W maximum amplifier power; 6&quot; woven glass fiber cone bass/midrange driver; 1&quot; soft-dome tweeter; 3-position high-frequency switch; QuickDog fixing system\", 'description_long' => \"BOWERS &amp; WILKINS 6&quot; 2-Way In-Wall Speakers (Pair): 25-130W maximum amplifier power; 6&quot; woven glass fiber cone bass/midrange driver; 1&quot; soft-dome tweeter; 3-position high-frequency switch; QuickDog fixing system\", 'price' => 549.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bowers-wilkins-6-2-way-in-wall-speakers-pair-white-black/2165063.p?id=1218312456565&skuId=2165063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165063_sa.jpg\"}', 'upc' => '714346310432', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - Freestyler Video Lighting Kit for GoPro\", 'description_short' => \"Compatible with GoPro HERO cameras; water-resistant, wide-angle Freestyler CREE LED video light with up to 200 lumens of brightness; push button activation; includes Flex Grip with telescoping arm\", 'description_long' => \"Compatible with GoPro HERO cameras; water-resistant, wide-angle Freestyler CREE LED video light with up to 200 lumens of brightness; push button activation; includes Flex Grip with telescoping arm\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-freestyler-video-lighting-kit-for-gopro/2165103.p?id=1219070175402&skuId=2165103', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165103_sa.jpg\"}', 'upc' => '032705101027', 'provider' => 'bestbuy'],\n ['name' => \"UKPro - Telescoping Adjustable Compact Grip For GoPro\", 'description_short' => \"Compatible with most GoPro HERO cameras; lets you attach up to 2 cameras; compact, lightweight construction; adjustable, articulating design; includes 3 knobs\", 'description_long' => \"Compatible with most GoPro HERO cameras; lets you attach up to 2 cameras; compact, lightweight construction; adjustable, articulating design; includes 3 knobs\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukpro-telescoping-adjustable-compact-grip-for-gopro/2165112.p?id=1219070172457&skuId=2165112', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165112_sa.jpg\"}', 'upc' => '032705128611', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Evergreen 2' 3.5mm-to-RCA Interconnect Cable - Black/Green\", 'description_short' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'description_long' => \"Compatible with most devices with a 3.5mm or RCA interface; solid long-grain copper conductors; foamed-polyethylene insulation materials; asymmetrical, double-balanced geometry\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-evergreen-2-3-5mm-to-rca-interconnect-cable-black-green/2165121.p?id=1219070172393&skuId=2165121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165121_rc.jpg\"}', 'upc' => '092592060449', 'provider' => 'bestbuy'],\n ['name' => \"Death Magnetic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-magnetic-cd/2165149.p?id=2763267&skuId=2165149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165149_sa.jpg\"}', 'upc' => '856115004583', 'provider' => 'bestbuy'],\n ['name' => \"Metamorfosis en... [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metamorfosis-en-cd-dvd-digipak-cd-dvd/2165158.p?id=2754521&skuId=2165158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165158.jpg\"}', 'upc' => '825646417032', 'provider' => 'bestbuy'],\n ['name' => \"St. Anger [CD & DVD] [PA] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/st-anger-cd-dvd-pa-digipak-cd-dvd/2165167.p?id=2763277&skuId=2165167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165167_sa.jpg\"}', 'upc' => '856115004576', 'provider' => 'bestbuy'],\n ['name' => \"Bad Boys/Bad Boys II (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bad-boys-bad-boys-ii-dvd-2-disc/2165194.p?id=3384543&skuId=2165194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165194_sa.jpg\"}', 'upc' => '043396430068', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 21.7 Cu. Ft. Chest Freezer - White\", 'description_short' => \"WHIRLPOOL 21.7 Cu. Ft. Chest Freezer: 2 fixed and 2 sliding storage baskets; temperature alarm; interior light; key lock; defrost drain; exterior temperature knobs\", 'description_long' => \"WHIRLPOOL 21.7 Cu. Ft. Chest Freezer: 2 fixed and 2 sliding storage baskets; temperature alarm; interior light; key lock; defrost drain; exterior temperature knobs\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-21-7-cu-ft-chest-freezer-white/2165218.p?id=1219530047323&skuId=2165218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312300055\\/1312300055_sa.jpg\"}', 'upc' => '883049341354', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 21.7 Cu. Ft. Chest Freezer - White\", 'description_short' => \"WHIRLPOOL 21.7 Cu. Ft. Chest Freezer: 3 sliding storage baskets; interior light; lock; exterior temperature knobs\", 'description_long' => \"WHIRLPOOL 21.7 Cu. Ft. Chest Freezer: 3 sliding storage baskets; interior light; lock; exterior temperature knobs\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-21-7-cu-ft-chest-freezer-white/2165227.p?id=1219530046422&skuId=2165227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165227_sa.jpg\"}', 'upc' => '883049359168', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 14.8 Cu. Ft. Chest Freezer - White\", 'description_short' => \"WHIRLPOOL 14.8 Cu. Ft. Chest Freezer: 2 sliding storage baskets; temperature alarm; interior light; lock and key; exterior temperature control knobs\", 'description_long' => \"WHIRLPOOL 14.8 Cu. Ft. Chest Freezer: 2 sliding storage baskets; temperature alarm; interior light; lock and key; exterior temperature control knobs\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-14-8-cu-ft-chest-freezer-white/2165236.p?id=1219530047452&skuId=2165236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312300048\\/1312300048_sa.jpg\"}', 'upc' => '883049341347', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 19.6 Cu. Ft. Frost-Free Upright Freezer - White\", 'description_short' => \"WHIRLPOOL 19.6 Cu. Ft. Frost-Free Upright Freezer: 4 adjustable cabinet shelves and 1 basket; temperature alarm; LED interior light; lock; up-front electronic controls\", 'description_long' => \"WHIRLPOOL 19.6 Cu. Ft. Frost-Free Upright Freezer: 4 adjustable cabinet shelves and 1 basket; temperature alarm; LED interior light; lock; up-front electronic controls\", 'price' => 849.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-19-6-cu-ft-frost-free-upright-freezer-white/2165245.p?id=1219530041649&skuId=2165245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165245_sa.jpg\"}', 'upc' => '883049341545', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - 30\\\" Microwave Trim Kit - White\", 'description_short' => \"Whirlpool 30&quot; Microwave Trim Kit: Compatible with 30&quot; Amana, Maytag, JennAir, Whirlpool and KitchenAid microwaves; integrated look; hardware included\", 'description_long' => \"Whirlpool 30&quot; Microwave Trim Kit: Compatible with 30&quot; Amana, Maytag, JennAir, Whirlpool and KitchenAid microwaves; integrated look; hardware included\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-30-microwave-trim-kit-white/2165254.p?id=1219530051734&skuId=2165254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165254_sa.jpg\"}', 'upc' => '883049262369', 'provider' => 'bestbuy'],\n ['name' => \"Two Voices - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-voices-cd/2165392.p?id=2904225&skuId=2165392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165392.jpg\"}', 'upc' => '729281000126', 'provider' => 'bestbuy'],\n ['name' => \"A Lazy Afternoon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-lazy-afternoon-cd/2165926.p?id=1543908&skuId=2165926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2165926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2165\\/2165926_sa.jpg\"}', 'upc' => '723721860226', 'provider' => 'bestbuy'],\n ['name' => \"Marantz - 700W 5.0-Ch. Power Amplifier - Black\", 'description_short' => \"Temperature-sensing forced air cooling; current feedback topology; Marantz reference-grade filter capacitors and high-speed output transistors\", 'description_long' => \"Temperature-sensing forced air cooling; current feedback topology; Marantz reference-grade filter capacitors and high-speed output transistors\", 'price' => 1199.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marantz-700w-5-0-ch-power-amplifier-black/2166035.p?id=1218312456226&skuId=2166035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166035_sa.jpg\"}', 'upc' => '699927121457', 'provider' => 'bestbuy'],\n ['name' => \"The Complete Album Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-complete-album-collection-cd/2166184.p?id=2744834&skuId=2166184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166184_sa.jpg\"}', 'upc' => '886919129229', 'provider' => 'bestbuy'],\n ['name' => \"20th Century Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20th-century-blues-cd/2166211.p?id=112017&skuId=2166211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166211_sa.jpg\"}', 'upc' => '788575000129', 'provider' => 'bestbuy'],\n ['name' => \"Studio C - Tropical Punch Collection Laptop Backpack - Black/Orange/Pink/Purple/Yellow\", 'description_short' => \"STUDIO C Tropical Punch Collection Laptop Backpack: Compatible with most laptops up to 14&quot;; polyester material; external-access laptop compartment; front-organizer pocket; 2 side mesh pockets; padded, adjustable straps; padded air mesh back panel\", 'description_long' => \"STUDIO C Tropical Punch Collection Laptop Backpack: Compatible with most laptops up to 14&quot;; polyester material; external-access laptop compartment; front-organizer pocket; 2 side mesh pockets; padded, adjustable straps; padded air mesh back panel\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/studio-c-tropical-punch-collection-laptop-backpack-black-orange-pink-purple-yellow/2166312.p?id=1219070374138&skuId=2166312', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166312_sa.jpg\"}', 'upc' => '079784940284', 'provider' => 'bestbuy'],\n ['name' => \"Over the Bridge of Time: A Paul Simon... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/over-the-bridge-of-time-a-paul-simon-cd/2166358.p?id=2745287&skuId=2166358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166358_sa.jpg\"}', 'upc' => '888837576727', 'provider' => 'bestbuy'],\n ['name' => \"Guttermouth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guttermouth-cd/2166462.p?id=286117&skuId=2166462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '757181000922', 'provider' => 'bestbuy'],\n ['name' => \"Big Rusty Balls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-rusty-balls-cd/2166499.p?id=107911&skuId=2166499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166499_sa.jpg\"}', 'upc' => '757181001622', 'provider' => 'bestbuy'],\n ['name' => \"XXX [Spanish Version] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/xxx-spanish-version-cd/2166621.p?id=1374653&skuId=2166621&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166621', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166621_sa.jpg\"}', 'upc' => '022924226021', 'provider' => 'bestbuy'],\n ['name' => \"En vivo en la cárcel de Santa Martha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/en-vivo-en-la-carcel-de-santa-martha-cd/2166630.p?id=1374650&skuId=2166630&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166630', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166630_sa.jpg\"}', 'upc' => '022925655721', 'provider' => 'bestbuy'],\n ['name' => \"Si Tu Me Miras - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/si-tu-me-miras-cd/2166701.p?id=1373935&skuId=2166701&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166701', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166701_sa.jpg\"}', 'upc' => '745099285029', 'provider' => 'bestbuy'],\n ['name' => \"El Pan y la Sal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-pan-y-la-sal-cd/2166783.p?id=1577571&skuId=2166783&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2166783', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2166\\/2166783.jpg\"}', 'upc' => '745099570224', 'provider' => 'bestbuy'],\n ['name' => \"Ancient Echoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ancient-echoes-cd/2167078.p?id=137114&skuId=2167078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167078_sa.jpg\"}', 'upc' => '093791778326', 'provider' => 'bestbuy'],\n ['name' => \"50 Aniversario, Vol. 1 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-aniversario-vol-1-digipak-cd/2167129.p?id=2765723&skuId=2167129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167129_sa.jpg\"}', 'upc' => '097037196226', 'provider' => 'bestbuy'],\n ['name' => \"Live & Unplugged - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-unplugged-cd-dvd/2167138.p?id=2833658&skuId=2167138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167138.jpg\"}', 'upc' => '728028297904', 'provider' => 'bestbuy'],\n ['name' => \"Machete Kills [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/machete-kills-original-motion-picture-cd-original-soundtrack/2167147.p?id=2757826&skuId=2167147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167147_sa.jpg\"}', 'upc' => '780014911027', 'provider' => 'bestbuy'],\n ['name' => \"Higher Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/higher-ground-cd/2167149.p?id=107955&skuId=2167149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167149_sa.jpg\"}', 'upc' => '093791784822', 'provider' => 'bestbuy'],\n ['name' => \"Mis Favoritas de Los Traileros, Vol. 1 [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-favoritas-de-los-traileros-vol-1-cd-dvd-cd-dvd/2167156.p?id=2757528&skuId=2167156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167156_sa.jpg\"}', 'upc' => '097037898526', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - 850 PRO 512GB Internal SATA III Solid State Drive for Laptops - Black\", 'description_short' => \"SATA III interface; 3D V-NAND architecture; SED (Self-Encrypting Drive) technology; read speeds up to 550MB/sec., write speeds up to 520MB/sec.\", 'description_long' => \"SATA III interface; 3D V-NAND architecture; SED (Self-Encrypting Drive) technology; read speeds up to 550MB/sec., write speeds up to 520MB/sec.\", 'price' => 259.99, 'sale_price' => 217.99, 'url' => 'http://www.bestbuy.com/site/samsung-850-pro-512gb-internal-sata-iii-solid-state-drive-for-laptops-black/2167165.p?id=1219530041648&skuId=2167165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167165_sa.jpg\"}', 'upc' => '887276057491', 'provider' => 'bestbuy'],\n ['name' => \"Perfection Lies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/perfection-lies-cd/2167247.p?id=100829&skuId=2167247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167247.jpg\"}', 'upc' => '017531700729', 'provider' => 'bestbuy'],\n ['name' => \"Good Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-side-cd/2167274.p?id=106426&skuId=2167274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167274.jpg\"}', 'upc' => '017531501425', 'provider' => 'bestbuy'],\n ['name' => \"Sink with Kalifornija - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sink-with-kalifornija-cd/2167504.p?id=105124&skuId=2167504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167504_sa.jpg\"}', 'upc' => '020282000222', 'provider' => 'bestbuy'],\n ['name' => \"The Crew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-crew-cd/2167513.p?id=98371&skuId=2167513&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167513_sa.jpg\"}', 'upc' => '020282000529', 'provider' => 'bestbuy'],\n ['name' => \"Walk Together, Rock Together - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walk-together-rock-together-cd/2167531.p?id=98372&skuId=2167531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167531_sa.jpg\"}', 'upc' => '020282001021', 'provider' => 'bestbuy'],\n ['name' => \"New Wind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-wind-cd/2167540.p?id=98366&skuId=2167540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167540_sa.jpg\"}', 'upc' => '020282001427', 'provider' => 'bestbuy'],\n ['name' => \"If You Swear You'll Catch No Fish - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-you-swear-youll-catch-no-fish-cd/2167559.p?id=99332&skuId=2167559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167559_sa.jpg\"}', 'upc' => '020282001724', 'provider' => 'bestbuy'],\n ['name' => \"Come Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-again-cd/2167586.p?id=125479&skuId=2167586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167586_sa.jpg\"}', 'upc' => '020282002523', 'provider' => 'bestbuy'],\n ['name' => \"Someone's Gonna Get Their Head to Believe - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/someones-gonna-get-their-head-to-believe-cd-various/2167595.p?id=156168&skuId=2167595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167595_sa.jpg\"}', 'upc' => '020282002622', 'provider' => 'bestbuy'],\n ['name' => \"Happy Hour [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-hour-pa-cd/2167602.p?id=125480&skuId=2167602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167602_sa.jpg\"}', 'upc' => '020282002721', 'provider' => 'bestbuy'],\n ['name' => \"Elimination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elimination-cd/2167611.p?id=144607&skuId=2167611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167611_sa.jpg\"}', 'upc' => '020282002820', 'provider' => 'bestbuy'],\n ['name' => \"Trouble In Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trouble-in-paradise-cd/2167835.p?id=247418&skuId=2167835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167835.jpg\"}', 'upc' => '033876610226', 'provider' => 'bestbuy'],\n ['name' => \"I'm Gonna Let It Shine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-gonna-let-it-shine-cd/2167960.p?id=84821&skuId=2167960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2167960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2167\\/2167960.jpg\"}', 'upc' => '719084040122', 'provider' => 'bestbuy'],\n ['name' => \"Riviera Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riviera-concert-cd/2168111.p?id=85705&skuId=2168111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168111.jpg\"}', 'upc' => '010592103324', 'provider' => 'bestbuy'],\n ['name' => \"By Request - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-request-cd/2168790.p?id=261090&skuId=2168790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168790_sa.jpg\"}', 'upc' => '762247810421', 'provider' => 'bestbuy'],\n ['name' => \"Plus Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plus-four-cd/2168843.p?id=282059&skuId=2168843&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168843', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168843_sa.jpg\"}', 'upc' => '762247619628', 'provider' => 'bestbuy'],\n ['name' => \"Duet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duet-cd/2168852.p?id=248127&skuId=2168852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168852.jpg\"}', 'upc' => '762247622628', 'provider' => 'bestbuy'],\n ['name' => \"Live at the L.A. Classic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-l-a-classic-cd/2168861.p?id=248103&skuId=2168861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168861_sa.jpg\"}', 'upc' => '762247623021', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-rhythm-cd/2168870.p?id=248125&skuId=2168870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2168870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2168\\/2168870.jpg\"}', 'upc' => '762247623526', 'provider' => 'bestbuy'],\n ['name' => \"Nineties Vs. Eighties - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nineties-vs-eighties-cd/2169021.p?id=83682&skuId=2169021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169021.jpg\"}', 'upc' => '718751786325', 'provider' => 'bestbuy'],\n ['name' => \"Palladium Patrol - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/palladium-patrol-cd/2169094.p?id=276926&skuId=2169094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169094.jpg\"}', 'upc' => '722141103128', 'provider' => 'bestbuy'],\n ['name' => \"Blade Runner: The Final Cut (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blade-runner-the-final-cut-blu-ray-disc/2169118.p?id=2755767&skuId=2169118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169118_sa.jpg\"}', 'upc' => '883929382439', 'provider' => 'bestbuy'],\n ['name' => \"All-Time Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-time-greatest-hits-cd/2169127.p?id=3333729&skuId=2169127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169127_sa.jpg\"}', 'upc' => '715187937321', 'provider' => 'bestbuy'],\n ['name' => \"In the Miller Mood 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-miller-mood-2-cd/2169156.p?id=246350&skuId=2169156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169156_sa.jpg\"}', 'upc' => '722141103722', 'provider' => 'bestbuy'],\n ['name' => \"Si - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/si-cd/2169272.p?id=124703&skuId=2169272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169272.jpg\"}', 'upc' => '000206000323', 'provider' => 'bestbuy'],\n ['name' => \"Ballads, Blues & Bebop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ballads-blues-bebop-cd/2169281.p?id=109312&skuId=2169281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169281.jpg\"}', 'upc' => '000206000521', 'provider' => 'bestbuy'],\n ['name' => \"Creation (Asia) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creation-asia-cd/2169343.p?id=2818210&skuId=2169343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169343.jpg\"}', 'upc' => '026617001827', 'provider' => 'bestbuy'],\n ['name' => \"Somebody - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somebody-cd/2169361.p?id=282591&skuId=2169361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169361_sa.jpg\"}', 'upc' => '727901426622', 'provider' => 'bestbuy'],\n ['name' => \"Wishing Well - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wishing-well-cd/2169370.p?id=157717&skuId=2169370&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169370', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169370_sa.jpg\"}', 'upc' => '727901536628', 'provider' => 'bestbuy'],\n ['name' => \"Night Birds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/night-birds-cd/2169432.p?id=83524&skuId=2169432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169432.jpg\"}', 'upc' => '738467191923', 'provider' => 'bestbuy'],\n ['name' => \"Luna - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/luna-cd/2169441.p?id=2015484&skuId=2169441&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169441', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169441.jpg\"}', 'upc' => '738467192128', 'provider' => 'bestbuy'],\n ['name' => \"Merengues 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merengues-2-cd/2169450.p?id=1906061&skuId=2169450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169450.jpg\"}', 'upc' => '733551120728', 'provider' => 'bestbuy'],\n ['name' => \"On Tour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-tour-cd/2169539.p?id=1916171&skuId=2169539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169539.jpg\"}', 'upc' => '733551122920', 'provider' => 'bestbuy'],\n ['name' => \"Y Su Conjunto Sociedad 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/y-su-conjunto-sociedad-2-cd/2169548.p?id=1916023&skuId=2169548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '733551123422', 'provider' => 'bestbuy'],\n ['name' => \"Anorando El Pasado - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anorando-el-pasado-cd/2169557.p?id=1915546&skuId=2169557&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169557', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169557.jpg\"}', 'upc' => '733551124023', 'provider' => 'bestbuy'],\n ['name' => \"Tierra Adentro - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tierra-adentro-cd-various/2169708.p?id=1916224&skuId=2169708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '733551153726', 'provider' => 'bestbuy'],\n ['name' => \"I Hear Love Knockin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-hear-love-knockin-cd/2169735.p?id=106704&skuId=2169735&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169735', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169735.jpg\"}', 'upc' => '722485412726', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Nighthawks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-nighthawks-cd/2169753.p?id=93345&skuId=2169753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169753_sa.jpg\"}', 'upc' => '722485414027', 'provider' => 'bestbuy'],\n ['name' => \"Five O'clock Bells/Mo Breau - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-oclock-bells-mo-breau-cd/2169762.p?id=64497&skuId=2169762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169762_sa.jpg\"}', 'upc' => '722485500621', 'provider' => 'bestbuy'],\n ['name' => \"Buch and the Snake Stretcher's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buch-and-the-snake-stretchers-cd/2169771.p?id=76188&skuId=2169771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169771_sa.jpg\"}', 'upc' => '722485751924', 'provider' => 'bestbuy'],\n ['name' => \"Live at Reggae Sunsplash [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-reggae-sunsplash-cassette-cd/2169780.p?id=104950&skuId=2169780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169780.jpg\"}', 'upc' => '722485890326', 'provider' => 'bestbuy'],\n ['name' => \"Live at Reggae Sunsplash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-reggae-sunsplash-cd/2169815.p?id=91662&skuId=2169815&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169815', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169815.jpg\"}', 'upc' => '722485892627', 'provider' => 'bestbuy'],\n ['name' => \"She Lyin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-lyin-cd/2169824.p?id=106692&skuId=2169824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169824.jpg\"}', 'upc' => '722485990125', 'provider' => 'bestbuy'],\n ['name' => \"Remember Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-me-cd/2169833.p?id=106703&skuId=2169833&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169833', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169833_sa.jpg\"}', 'upc' => '722485990224', 'provider' => 'bestbuy'],\n ['name' => \"Memorial Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-anthology-cd/2169842.p?id=106690&skuId=2169842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169842.jpg\"}', 'upc' => '722485990620', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds in the Rough - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-in-the-rough-cd/2169904.p?id=76999&skuId=2169904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2169904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2169\\/2169904.jpg\"}', 'upc' => '722321010727', 'provider' => 'bestbuy'],\n ['name' => \"Farm & Fun Time Favorites, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/farm-fun-time-favorites-vol-1-cd/2170028.p?id=209561&skuId=2170028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170028_sa.jpg\"}', 'upc' => '722321012523', 'provider' => 'bestbuy'],\n ['name' => \"Curious George: A Halloween Boo Fest (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/curious-george-a-halloween-boo-fest-dvd/2170039.p?id=2719800&skuId=2170039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170039_sa.jpg\"}', 'upc' => '025192205064', 'provider' => 'bestbuy'],\n ['name' => \"Pickin' in the Parlor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pickin-in-the-parlor-cd/2170082.p?id=209580&skuId=2170082&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170082_sa.jpg\"}', 'upc' => '722321013322', 'provider' => 'bestbuy'],\n ['name' => \"Soweto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soweto-cd/2170180.p?id=107936&skuId=2170180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170180_sa.jpg\"}', 'upc' => '027312314120', 'provider' => 'bestbuy'],\n ['name' => \"Time Is Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-is-right-cd/2170199.p?id=70836&skuId=2170199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170199_sa.jpg\"}', 'upc' => '027312316827', 'provider' => 'bestbuy'],\n ['name' => \"Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dances-cd/2170224.p?id=108071&skuId=2170224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170224_sa.jpg\"}', 'upc' => '027312318128', 'provider' => 'bestbuy'],\n ['name' => \"Appointment in Milano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/appointment-in-milano-cd/2170233.p?id=71932&skuId=2170233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170233_sa.jpg\"}', 'upc' => '027312318425', 'provider' => 'bestbuy'],\n ['name' => \"The Trio, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-trio-vol-1-cd/2170279.p?id=71842&skuId=2170279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170279_sa.jpg\"}', 'upc' => '027312319224', 'provider' => 'bestbuy'],\n ['name' => \"The Trio, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-trio-vol-3-cd/2170297.p?id=71843&skuId=2170297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170297_sa.jpg\"}', 'upc' => '027312319422', 'provider' => 'bestbuy'],\n ['name' => \"At Capolinea - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-capolinea-cd/2170322.p?id=63885&skuId=2170322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170322_sa.jpg\"}', 'upc' => '027312320626', 'provider' => 'bestbuy'],\n ['name' => \"Pumpkin's Delight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pumpkins-delight-cd/2170331.p?id=71088&skuId=2170331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170331_sa.jpg\"}', 'upc' => '027312320725', 'provider' => 'bestbuy'],\n ['name' => \"Evening with Joe Henderson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/evening-with-joe-henderson-cd/2170377.p?id=67355&skuId=2170377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170377_sa.jpg\"}', 'upc' => '027312321524', 'provider' => 'bestbuy'],\n ['name' => \"Empty Room - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/empty-room-cd/2170402.p?id=69634&skuId=2170402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170402_sa.jpg\"}', 'upc' => '027312322224', 'provider' => 'bestbuy'],\n ['name' => \"Kick Off - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kick-off-cd/2170439.p?id=65427&skuId=2170439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170439_sa.jpg\"}', 'upc' => '027312322521', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/2170466.p?id=71061&skuId=2170466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170466_sa.jpg\"}', 'upc' => '027312322828', 'provider' => 'bestbuy'],\n ['name' => \"Take It Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-it-easy-cd/2170509.p?id=67708&skuId=2170509&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170509', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170509_sa.jpg\"}', 'upc' => '027312323221', 'provider' => 'bestbuy'],\n ['name' => \"E.T.C. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/e-t-c-cd/2170518.p?id=67410&skuId=2170518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170518_sa.jpg\"}', 'upc' => '027312323320', 'provider' => 'bestbuy'],\n ['name' => \"Nine Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nine-again-cd/2170527.p?id=68583&skuId=2170527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170527_sa.jpg\"}', 'upc' => '027312323429', 'provider' => 'bestbuy'],\n ['name' => \"Plays Cole Porter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-cole-porter-cd/2170545.p?id=68581&skuId=2170545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170545_sa.jpg\"}', 'upc' => '027312323627', 'provider' => 'bestbuy'],\n ['name' => \"Lineage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lineage-cd/2170554.p?id=64208&skuId=2170554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170554_sa.jpg\"}', 'upc' => '027312323726', 'provider' => 'bestbuy'],\n ['name' => \"Blues For Red - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-for-red-cd/2170563.p?id=2708626&skuId=2170563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170563.jpg\"}', 'upc' => '027312323825', 'provider' => 'bestbuy'],\n ['name' => \"Granulate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/granulate-cd/2170581.p?id=69425&skuId=2170581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170581.jpg\"}', 'upc' => '027312324020', 'provider' => 'bestbuy'],\n ['name' => \"Off Minor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/off-minor-cd/2170607.p?id=71844&skuId=2170607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170607_sa.jpg\"}', 'upc' => '027312324228', 'provider' => 'bestbuy'],\n ['name' => \"The Standard Joe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-standard-joe-cd/2170652.p?id=67353&skuId=2170652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170652_sa.jpg\"}', 'upc' => '027312324822', 'provider' => 'bestbuy'],\n ['name' => \"Setting the Standard - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/setting-the-standard-cd/2170705.p?id=68580&skuId=2170705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170705_sa.jpg\"}', 'upc' => '027312325324', 'provider' => 'bestbuy'],\n ['name' => \"Know It Today, Know It Tomorrow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/know-it-today-know-it-tomorrow-cd/2170723.p?id=68574&skuId=2170723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170723_sa.jpg\"}', 'upc' => '027312325522', 'provider' => 'bestbuy'],\n ['name' => \"Over the Ocean - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/over-the-ocean-cd/2170732.p?id=71470&skuId=2170732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2170\\/2170732.jpg\"}', 'upc' => '027312325621', 'provider' => 'bestbuy'],\n ['name' => \"Complete Recorded 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-recorded-2-cd/2170796.p?id=3236329&skuId=2170796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2170796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '788518520226', 'provider' => 'bestbuy'],\n ['name' => \"Escort - Radar Detector - Black\", 'description_short' => \"X-band, K-band, Ka Band, Laser - VG-2 Immunity - City, Highway - 360? Detection\", 'description_long' => \"X-band, K-band, Ka Band, Laser - VG-2 Immunity - City, Highway - 360? Detection\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/escort-radar-detector-black/2171119.p?id=1218312457029&skuId=2171119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2171119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308132776\\/1308132776_sa.jpg\"}', 'upc' => '737795053507', 'provider' => 'bestbuy'],\n ['name' => \"Blue Hula Stomp [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-hula-stomp-digdownload-cd/2171955.p?id=131941&skuId=2171955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2171955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2171\\/2171955.jpg\"}', 'upc' => '025218390521', 'provider' => 'bestbuy'],\n ['name' => \"German Favorites [Monitor] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/german-favorites-monitor-cd-various/2172026.p?id=2498327&skuId=2172026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172026.jpg\"}', 'upc' => '731807139920', 'provider' => 'bestbuy'],\n ['name' => \"Mexico! Monitor Presents Maria Luisa Buchino - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mexico-monitor-presents-maria-luisa-buchino-cd/2172053.p?id=2498719&skuId=2172053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172053.jpg\"}', 'upc' => '731807143125', 'provider' => 'bestbuy'],\n ['name' => \"Gremlins (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gremlins-blu-ray-disc/2172055.p?id=58554&skuId=2172055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172055_sa.jpg\"}', 'upc' => '883929382354', 'provider' => 'bestbuy'],\n ['name' => \"Russian Favorites-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/russian-favorites-cd/2172213.p?id=2497467&skuId=2172213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172213_sa.jpg\"}', 'upc' => '731807179322', 'provider' => 'bestbuy'],\n ['name' => \"Guardzilla - Wireless All-in-One Video Security System - Black\", 'description_short' => \"CMOS image sensor; infrared night vision up to 30&#039;; motion detection; compatible with Apple&#174; iOS and Android devices\", 'description_long' => \"CMOS image sensor; infrared night vision up to 30&#039;; motion detection; compatible with Apple&#174; iOS and Android devices\", 'price' => 99.99, 'sale_price' => 92.99, 'url' => 'http://www.bestbuy.com/site/guardzilla-wireless-all-in-one-video-security-system-black/2172239.p?id=1219535316296&skuId=2172239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172239_sa.jpg\"}', 'upc' => '856751002325', 'provider' => 'bestbuy'],\n ['name' => \"Belly Dancing With George Abdo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belly-dancing-with-george-abdo-cd/2172419.p?id=2497918&skuId=2172419&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172419', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172419_sa.jpg\"}', 'upc' => '731807177724', 'provider' => 'bestbuy'],\n ['name' => \"Polynesian Girl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polynesian-girl-cd/2172482.p?id=2497460&skuId=2172482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172482.jpg\"}', 'upc' => '731807182629', 'provider' => 'bestbuy'],\n ['name' => \"Resolution - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resolution-cd/2172641.p?id=3192662&skuId=2172641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172641.jpg\"}', 'upc' => '027312001426', 'provider' => 'bestbuy'],\n ['name' => \"Duet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duet-cd/2172918.p?id=3192666&skuId=2172918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172918.jpg\"}', 'upc' => '027312005127', 'provider' => 'bestbuy'],\n ['name' => \"Earth Passage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earth-passage-cd/2172927.p?id=3192747&skuId=2172927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172927_sa.jpg\"}', 'upc' => '027312005226', 'provider' => 'bestbuy'],\n ['name' => \"Go In Numbers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-in-numbers-cd/2172936.p?id=3192692&skuId=2172936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172936_sa.jpg\"}', 'upc' => '027312005325', 'provider' => 'bestbuy'],\n ['name' => \"Clevont Fitzhubert (Italy) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clevont-fitzhubert-italy-cd/2172945.p?id=2831347&skuId=2172945&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172945', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172945.jpg\"}', 'upc' => '027312005424', 'provider' => 'bestbuy'],\n ['name' => \"Common Goal (Italy) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-goal-italy-cd/2172981.p?id=2831353&skuId=2172981&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2172981', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2172\\/2172981_sa.jpg\"}', 'upc' => '027312005820', 'provider' => 'bestbuy'],\n ['name' => \"Blues Forever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-forever-cd/2173007.p?id=3192665&skuId=2173007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173007_sa.jpg\"}', 'upc' => '027312006124', 'provider' => 'bestbuy'],\n ['name' => \"Project X (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/project-x-blu-ray-disc/2173009.p?id=2755760&skuId=2173009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173009_sa.jpg\"}', 'upc' => '883929382682', 'provider' => 'bestbuy'],\n ['name' => \"The Rite (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rite-blu-ray-disc/2173018.p?id=2201863&skuId=2173018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173018_sa.jpg\"}', 'upc' => '883929382163', 'provider' => 'bestbuy'],\n ['name' => \"Wee Sneezawee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wee-sneezawee-cd/2173043.p?id=3192683&skuId=2173043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173043_sa.jpg\"}', 'upc' => '027312006728', 'provider' => 'bestbuy'],\n ['name' => \"Sleepers (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sleepers-blu-ray-disc/2173045.p?id=54724&skuId=2173045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173045_sa.jpg\"}', 'upc' => '883929382651', 'provider' => 'bestbuy'],\n ['name' => \"Rebirth Of A Feeling - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebirth-of-a-feeling-cd/2173052.p?id=3192750&skuId=2173052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173052.jpg\"}', 'upc' => '027312006827', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2014 and Later Mitsubishi Mirage Vehicles - Gray/Black\", 'description_short' => \"METRA Dash Kit for Select 2014 and Later Mitsubishi Mirage Vehicles: Compatible with select 2014 and later Mitsubishi Mirage vehicles; double DIN radio provision; high-gloss finish\", 'description_long' => \"METRA Dash Kit for Select 2014 and Later Mitsubishi Mirage Vehicles: Compatible with select 2014 and later Mitsubishi Mirage vehicles; double DIN radio provision; high-gloss finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2014-and-later-mitsubishi-mirage-vehicles-gray-black/2173054.p?id=1219531556030&skuId=2173054', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173054_sa.jpg\"}', 'upc' => '086429293421', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2015-2015 Harley Davidson Roadglide/Streetglide/Standard/Classic/Ultra - Black\", 'description_short' => \"METRA Dash Kit for Select 2015-2015 Harley Davidson Roadglide/Streetglide/Standard/Classic/Ultra: Compatible with select 2015 Harley Davidson models; single DIN radio provision; includes an AXXESS interface and LCD info screen\", 'description_long' => \"METRA Dash Kit for Select 2015-2015 Harley Davidson Roadglide/Streetglide/Standard/Classic/Ultra: Compatible with select 2015 Harley Davidson models; single DIN radio provision; includes an AXXESS interface and LCD info screen\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2015-2015-harley-davidson-roadglide-streetglide-standard-classic-ultra-black/2173063.p?id=1219531560195&skuId=2173063', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173063_sa.jpg\"}', 'upc' => '086429301331', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Bluetooth FM Modulator for Most Vehicles - Multi\", 'description_short' => \"AXXESS Bluetooth FM Modulator for Most Vehicles: Compatible with most vehicles; connect your device via Bluetooth or optional 3.5mm/RCA audio input; 4 FM frequencies; 2.1-amp under-dash USB charging port; RDS capable\", 'description_long' => \"AXXESS Bluetooth FM Modulator for Most Vehicles: Compatible with most vehicles; connect your device via Bluetooth or optional 3.5mm/RCA audio input; 4 FM frequencies; 2.1-amp under-dash USB charging port; RDS capable\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-bluetooth-fm-modulator-for-most-vehicles-multi/2173072.p?id=1219531557779&skuId=2173072', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173072_sa.jpg\"}', 'upc' => '086429282746', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - 6' Male-USB-to-Male-USB 3.0 Cable - Black\", 'description_short' => \"AXXESS 6&#039; Male-USB-to-Male-USB 3.0 Cable: Male USB and Male USB 3.0 connectors; replacement cable; 6&#039; length\", 'description_long' => \"AXXESS 6&#039; Male-USB-to-Male-USB 3.0 Cable: Male USB and Male USB 3.0 connectors; replacement cable; 6&#039; length\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-6-male-usb-to-male-usb-3-0-cable-black/2173081.p?id=1219531553453&skuId=2173081', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173081_sa.jpg\"}', 'upc' => '086429293896', 'provider' => 'bestbuy'],\n ['name' => \"Virtual DJ: Broadcaster - Mac|Windows\", 'description_short' => \"Mix beat-blasting tracks that will fill the dance floor\", 'description_long' => \"Mix beat-blasting tracks that will fill the dance floor\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/virtual-dj-broadcaster-macwindows/2173126.p?id=1218312458185&skuId=2173126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173126_sa.jpg\"}', 'upc' => '705381266303', 'provider' => 'bestbuy'],\n ['name' => \"View from Within - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/view-from-within-cd/2173141.p?id=3298205&skuId=2173141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173141_sa.jpg\"}', 'upc' => '027312008128', 'provider' => 'bestbuy'],\n ['name' => \"HP - 55X 2-Pack High-Yield Toner Cartridges - Black\", 'description_short' => \"Yields up to 25,000 pages total; 12,500 pages per cartridgeCompatible with select HP LaserJet printers\", 'description_long' => \"Yields up to 25,000 pages total; 12,500 pages per cartridgeCompatible with select HP LaserJet printers\", 'price' => 439.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-55x-2-pack-high-yield-toner-cartridges-black/2173171.p?id=1218312455694&skuId=2173171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308753940\\/1308753940_sa.jpg\"}', 'upc' => '885631277102', 'provider' => 'bestbuy'],\n ['name' => \"Give It Up (Spanish) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/give-it-up-spanish-cd/2173196.p?id=2856359&skuId=2173196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173196_sa.jpg\"}', 'upc' => '027312008722', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007 and Later Nissan Vehicles - Black\", 'description_short' => \"METRA Dash Kit for Select 2007 and Later Nissan Vehicles: Compatible with select 2007 and later Nissan vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2007 and Later Nissan Vehicles: Compatible with select 2007 and later Nissan vehicles; double DIN radio provision\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-and-later-nissan-vehicles-black/2173201.p?id=1219531553450&skuId=2173201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173201_sa.jpg\"}', 'upc' => '086429304578', 'provider' => 'bestbuy'],\n ['name' => \"Flow Of Things - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flow-of-things-cd/2173221.p?id=3192678&skuId=2173221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173221_sa.jpg\"}', 'upc' => '027312009026', 'provider' => 'bestbuy'],\n ['name' => \"Disney/Pixar Cars 2 - Nintendo DS\", 'description_short' => \"Buckle your seat belt for full-throttle adventure\", 'description_long' => \"Buckle your seat belt for full-throttle adventure\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-pixar-cars-2-nintendo-ds/2173223.p?id=1218312455026&skuId=2173223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173223_sa.jpg\"}', 'upc' => '712725021399', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for 2014 and Later Dodge RAM Vehicles - Black\", 'description_short' => \"METRA Dash Kit for 2014 and Later Dodge RAM Vehicles: Compatible with 2014 and later Dodge RAM vehicles; double DIN mount\", 'description_long' => \"METRA Dash Kit for 2014 and Later Dodge RAM Vehicles: Compatible with 2014 and later Dodge RAM vehicles; double DIN mount\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-2014-and-later-dodge-ram-vehicles-black/2173229.p?id=1219531556294&skuId=2173229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173229_sa.jpg\"}', 'upc' => '086429297795', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - GM Class II Data Bus Interface for Select Buick, Oldsmobile and Pontiac Vehicles - Multi\", 'description_short' => \"AXXESS GM Class II Data Bus Interface for Select Buick, Oldsmobile and Pontiac Vehicles: Compatible with select Buick, Oldsmobile and Pontiac vehicles; 12V, 10-amp interface; retains warning chimes and R.A.P. (retained accessory power)\", 'description_long' => \"AXXESS GM Class II Data Bus Interface for Select Buick, Oldsmobile and Pontiac Vehicles: Compatible with select Buick, Oldsmobile and Pontiac vehicles; 12V, 10-amp interface; retains warning chimes and R.A.P. (retained accessory power)\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-gm-class-ii-data-bus-interface-for-select-buick-oldsmobile-and-pontiac-vehicles-multi/2173238.p?id=1219531558947&skuId=2173238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173238_sa.jpg\"}', 'upc' => '086429294138', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for 1993-2002 Pontiac Firebird Vehicles - Dark Gray\", 'description_short' => \"METRA Dash Kit for 1993-2002 Pontiac Firebird Vehicles: Compatible with 1993-2002 Pontiac Firebird vehicles; enables installation of most aftermarket stereos; double DIN mounting\", 'description_long' => \"METRA Dash Kit for 1993-2002 Pontiac Firebird Vehicles: Compatible with 1993-2002 Pontiac Firebird vehicles; enables installation of most aftermarket stereos; double DIN mounting\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-1993-2002-pontiac-firebird-vehicles-dark-gray/2173247.p?id=1219531558550&skuId=2173247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173247_sa.jpg\"}', 'upc' => '086429304530', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Can-Data Interface for Most 2002 and Later Volkswagen Vehicles - Multi\", 'description_short' => \"AXXESS Can-Data Interface for Most 2002 and Later Volkswagen Vehicles: Compatible with most 2002 and later Volkswagen models; suitable for non-amplified and amplified models, including select Fender sound systems; retains fade and balance\", 'description_long' => \"AXXESS Can-Data Interface for Most 2002 and Later Volkswagen Vehicles: Compatible with most 2002 and later Volkswagen models; suitable for non-amplified and amplified models, including select Fender sound systems; retains fade and balance\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-can-data-interface-for-most-2002-and-later-volkswagen-vehicles-multi/2173256.p?id=1219531556943&skuId=2173256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173256_sa.jpg\"}', 'upc' => '086429289578', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2014 and Later Nissan Vehicles - Black\", 'description_short' => \"METRA Dash Kit for Select 2014 and Later Nissan Vehicles: Compatible with select 2014 and later Nissan vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2014 and Later Nissan Vehicles: Compatible with select 2014 and later Nissan vehicles; double DIN radio provision\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2014-and-later-nissan-vehicles-black/2173265.p?id=1219531559662&skuId=2173265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173265_sa.jpg\"}', 'upc' => '086429294497', 'provider' => 'bestbuy'],\n ['name' => \"Timo'S Message - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timos-message-cd/2173267.p?id=3193371&skuId=2173267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173267.jpg\"}', 'upc' => '027312009422', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Universal Bluetooth FM Modulator - Multi\", 'description_short' => \"AXXESS Universal Bluetooth FM Modulator: Compatible with most aftermarket stereos; Bluetooth interface; 4 FM frequencies; 2.1-amp USB port\", 'description_long' => \"AXXESS Universal Bluetooth FM Modulator: Compatible with most aftermarket stereos; Bluetooth interface; 4 FM frequencies; 2.1-amp USB port\", 'price' => 174.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-universal-bluetooth-fm-modulator-multi/2173274.p?id=1219531553452&skuId=2173274', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173274_sa.jpg\"}', 'upc' => '086429287208', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-vol-2-cd/2173276.p?id=3192685&skuId=2173276&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173276', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173276_sa.jpg\"}', 'upc' => '027312009521', 'provider' => 'bestbuy'],\n ['name' => \"Marantz - 280W 2.0-Ch. Stereo Power Amplifier - Black\", 'description_short' => \"280W of power (140W x 2); current feedback circuits; LAPT Hyper-Power output transistors; low-impedance continuous-drive capability; high instantaneous peak current design; gold-plated 4-way binding posts\", 'description_long' => \"280W of power (140W x 2); current feedback circuits; LAPT Hyper-Power output transistors; low-impedance continuous-drive capability; high instantaneous peak current design; gold-plated 4-way binding posts\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marantz-280w-2-0-ch-stereo-power-amplifier-black/2173278.p?id=1218312455487&skuId=2173278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173278_sa.jpg\"}', 'upc' => '699927121556', 'provider' => 'bestbuy'],\n ['name' => \"Live At Bam - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-bam-cd/2173285.p?id=3192697&skuId=2173285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173285_sa.jpg\"}', 'upc' => '027312009620', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Interface for Select Honda Vehicles - Multi\", 'description_short' => \"AXXESS Interface for Select Honda Vehicles: Compatible with 2012-2013 Honda Civic and 2012 and later Honda CRV models and most aftermarket stereos; provides 12V, 10-amp accessory; high level speaker input; micro USB updatable\", 'description_long' => \"AXXESS Interface for Select Honda Vehicles: Compatible with 2012-2013 Honda Civic and 2012 and later Honda CRV models and most aftermarket stereos; provides 12V, 10-amp accessory; high level speaker input; micro USB updatable\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-interface-for-select-honda-vehicles-multi/2173292.p?id=1219531556622&skuId=2173292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173292_sa.jpg\"}', 'upc' => '086429293681', 'provider' => 'bestbuy'],\n ['name' => \"Live In Berlin (Spanish) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-berlin-spanish-cd/2173294.p?id=3350814&skuId=2173294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312009729', 'provider' => 'bestbuy'],\n ['name' => \"Natural Balance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/natural-balance-cd/2173301.p?id=3192688&skuId=2173301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173301_sa.jpg\"}', 'upc' => '027312009828', 'provider' => 'bestbuy'],\n ['name' => \"Twista Presents Legit Ballin' [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twista-presents-legit-ballin-pa-cd-various/2173302.p?id=2188986&skuId=2173302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173302_sa.jpg\"}', 'upc' => '720657945324', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan NV200 - Black\", 'description_short' => \"METRA Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan NV200: Compatible with select 2013-2015 Chevrolet City Express and Nissan NV200 vehicles; single DIN radio provision with pocket\", 'description_long' => \"METRA Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan NV200: Compatible with select 2013-2015 Chevrolet City Express and Nissan NV200 vehicles; single DIN radio provision with pocket\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-chevrolet-city-express-nissan-nv200-black/2173306.p?id=1219531557402&skuId=2173306', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173306_sa.jpg\"}', 'upc' => '086429304462', 'provider' => 'bestbuy'],\n ['name' => \"Best of Josh Turner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-josh-turner-cd/2173311.p?id=2188980&skuId=2173311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173311_sa.jpg\"}', 'upc' => '602527634173', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007 and Later Nissan Vehicles - Black\", 'description_short' => \"METRA Dash Kit for Select 2007 and Later Nissan Vehicles: Compatible with select 2007 and later Nissan vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2007 and Later Nissan Vehicles: Compatible with select 2007 and later Nissan vehicles; double DIN radio provision\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-and-later-nissan-vehicles-black/2173315.p?id=1219531557211&skuId=2173315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173315_sa.jpg\"}', 'upc' => '086429293704', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - GM 44-Way LAN Data Interface for Select 2013 and Later Chevy Malibu Vehicles - Multi\", 'description_short' => \"AXXESS GM 44-Way LAN Data Interface for Select 2013 and Later Chevy Malibu Vehicles: Compatible with select 2013 and later Chevy Malibu vehicles; works with most aftermarket stereos; includes a 4-pin-to-4-pin resistor pad harness\", 'description_long' => \"AXXESS GM 44-Way LAN Data Interface for Select 2013 and Later Chevy Malibu Vehicles: Compatible with select 2013 and later Chevy Malibu vehicles; works with most aftermarket stereos; includes a 4-pin-to-4-pin resistor pad harness\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-gm-44-way-lan-data-interface-for-select-2013-and-later-chevy-malibu-vehicles-multi/2173324.p?id=1219531553448&skuId=2173324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173324_sa.jpg\"}', 'upc' => '086429301478', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan Juke - Black\", 'description_short' => \"METRA Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan Juke: Compatible with select 2013-2015 Nissan vehicles; double DIN radio provision; single DIN radio provision with pocket\", 'description_long' => \"METRA Dash Kit for Select 2013-2015 Chevrolet City Express/Nissan Juke: Compatible with select 2013-2015 Nissan vehicles; double DIN radio provision; single DIN radio provision with pocket\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-chevrolet-city-express-nissan-juke-black/2173333.p?id=1219531559077&skuId=2173333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173333_sa.jpg\"}', 'upc' => '086429304585', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2014 and Later Kia Optima Vehicles - Black\", 'description_short' => \"METRA Dash Kit for Select 2014 and Later Kia Optima Vehicles: Compatible with select 2014 and later Kia Optima vehicles; double DIN radio provision; matte finish\", 'description_long' => \"METRA Dash Kit for Select 2014 and Later Kia Optima Vehicles: Compatible with select 2014 and later Kia Optima vehicles; double DIN radio provision; matte finish\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2014-and-later-kia-optima-vehicles-black/2173342.p?id=1219531559139&skuId=2173342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173342_sa.jpg\"}', 'upc' => '086429294787', 'provider' => 'bestbuy'],\n ['name' => \"Black Carousel [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-carousel-pa-cd/2173348.p?id=2189477&skuId=2173348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173348.jpg\"}', 'upc' => '795041781222', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2010-2012 Hyundai Santa Fe Vehicles - Silver\", 'description_short' => \"METRA Dash Kit for Select 2010-2012 Hyundai Santa Fe Vehicles: Compatible with 2010-2012 Hyundai Santa Fe models with factory navigation and most aftermarket stereos; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2010-2012 Hyundai Santa Fe Vehicles: Compatible with 2010-2012 Hyundai Santa Fe models with factory navigation and most aftermarket stereos; double DIN radio provision\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2010-2012-hyundai-santa-fe-vehicles-silver/2173351.p?id=1219531558170&skuId=2173351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173351_sa.jpg\"}', 'upc' => '086429304493', 'provider' => 'bestbuy'],\n ['name' => \"Sophisticated Ladies - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sophisticated-ladies-cd/2173366.p?id=2173086&skuId=2173366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173366_sa.jpg\"}', 'upc' => '602527508160', 'provider' => 'bestbuy'],\n ['name' => \"Contact - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/contact-cd/2173375.p?id=2187238&skuId=2173375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173375_sa.jpg\"}', 'upc' => '602527641393', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - GM Class II Data Bus Interface for 2005-2006 Chevy Equinox and 2006 Oldsmobile Torrent Vehicles - Multi\", 'description_short' => \"AXXESS GM Class II Data Bus Interface for 2005-2006 Chevy Equinox and 2006 Oldsmobile Torrent Vehicles: Compatible with 2005-2006 Chevy Equinox and 2006 Oldsmobile Torrent vehicles; 12V, 10-amp interface\", 'description_long' => \"AXXESS GM Class II Data Bus Interface for 2005-2006 Chevy Equinox and 2006 Oldsmobile Torrent Vehicles: Compatible with 2005-2006 Chevy Equinox and 2006 Oldsmobile Torrent vehicles; 12V, 10-amp interface\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-gm-class-ii-data-bus-interface-for-2005-2006-chevy-equinox-and-2006-oldsmobile-torrent-vehicles-multi/2173379.p?id=1219531553451&skuId=2173379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173379_sa.jpg\"}', 'upc' => '086429294145', 'provider' => 'bestbuy'],\n ['name' => \"Icon [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-pa-cd/2173384.p?id=2198226&skuId=2173384&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173384_sa.jpg\"}', 'upc' => '602527647128', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for 2013 and Later Chevrolet Malibu Vehicles - Gray\", 'description_short' => \"METRA Dash Kit for 2013 and Later Chevrolet Malibu Vehicles: Compatible with 2013 and later Chevrolet Malibu vehicle models; allows you to install an aftermarket stereo in your vehicle&#039;s dash; double DIN with pocket installation\", 'description_long' => \"METRA Dash Kit for 2013 and Later Chevrolet Malibu Vehicles: Compatible with 2013 and later Chevrolet Malibu vehicle models; allows you to install an aftermarket stereo in your vehicle&#039;s dash; double DIN with pocket installation\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-2013-and-later-chevrolet-malibu-vehicles-gray/2173388.p?id=1219531558816&skuId=2173388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173388_sa.jpg\"}', 'upc' => '086429304486', 'provider' => 'bestbuy'],\n ['name' => \"Dodging Bullets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dodging-bullets-cd/2173392.p?id=3192682&skuId=2173392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173392_sa.jpg\"}', 'upc' => '027312010824', 'provider' => 'bestbuy'],\n ['name' => \"Layla and Other Assorted Love Songs [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/layla-and-other-assorted-love-songs-digipak-cd/2173393.p?id=2188983&skuId=2173393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173393.jpg\"}', 'upc' => '600753314296', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Wi-Fi A/V Mirror Interface for Most Vehicles - Multi\", 'description_short' => \"AXXESS Wi-Fi A/V Mirror Interface for Most Vehicles: Compatible with most vehicles and Apple iOS and Android devices; enables you to mirror your smartphone on an after-market in-dash mobile video screen using Wi-Fi\", 'description_long' => \"AXXESS Wi-Fi A/V Mirror Interface for Most Vehicles: Compatible with most vehicles and Apple iOS and Android devices; enables you to mirror your smartphone on an after-market in-dash mobile video screen using Wi-Fi\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-wi-fi-a-v-mirror-interface-for-most-vehicles-multi/2173397.p?id=1219531555840&skuId=2173397', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173397_sa.jpg\"}', 'upc' => '086429297498', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2012 Honda Vehicles - Dark Charcoal\", 'description_short' => \"METRA Dash Kit for Select 2008-2012 Honda Vehicles: Compatible with select 2008-2012 Honda vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2008-2012 Honda Vehicles: Compatible with select 2008-2012 Honda vehicles; double DIN radio provision\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2012-honda-vehicles-dark-charcoal/2173402.p?id=1219531553449&skuId=2173402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173402_sa.jpg\"}', 'upc' => '086429295012', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2014-2015 Hyundai Elantra - Black\", 'description_short' => \"METRA Dash Kit for Select 2014-2015 Hyundai Elantra: Compatible with select 2014-2015 Hyundai Elantra vehicles; single DIN radio provision with pocket; factory-matched finish\", 'description_long' => \"METRA Dash Kit for Select 2014-2015 Hyundai Elantra: Compatible with select 2014-2015 Hyundai Elantra vehicles; single DIN radio provision with pocket; factory-matched finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2014-2015-hyundai-elantra-black/2173411.p?id=1219531556425&skuId=2173411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173411_sa.jpg\"}', 'upc' => '086429304615', 'provider' => 'bestbuy'],\n ['name' => \"Best of Local H: The Island Years [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-local-h-the-island-years-pa-cd/2173417.p?id=2198234&skuId=2173417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173417_sa.jpg\"}', 'upc' => '602527629957', 'provider' => 'bestbuy'],\n ['name' => \"How to Compose Popular Songs That Will Sell [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-compose-popular-songs-that-will-sell-pa-cd/2173426.p?id=2144313&skuId=2173426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173426_sa.jpg\"}', 'upc' => '602527474526', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173435.p?id=2198223&skuId=2173435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173435_sa.jpg\"}', 'upc' => '602527631424', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2012 Honda Vehicles - Taupe\", 'description_short' => \"METRA Dash Kit for Select 2008-2012 Honda Vehicles: Compatible with select 2008-2012 Honda vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2008-2012 Honda Vehicles: Compatible with select 2008-2012 Honda vehicles; double DIN radio provision\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2012-honda-vehicles-taupe/2173439.p?id=1219531557846&skuId=2173439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173439_sa.jpg\"}', 'upc' => '086429295029', 'provider' => 'bestbuy'],\n ['name' => \"The Definitive Albert King on Stax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-definitive-albert-king-on-stax-cd/2173444.p?id=2192307&skuId=2173444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173444_sa.jpg\"}', 'upc' => '888072327658', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013 and Later Nissan NV200 Vehicles - Black\", 'description_short' => \"METRA Dash Kit for Select 2013 and Later Nissan NV200 Vehicles: Compatible with select 2013 and later Nissan NV200 vehicles; double DIN radio provision\", 'description_long' => \"METRA Dash Kit for Select 2013 and Later Nissan NV200 Vehicles: Compatible with select 2013 and later Nissan NV200 vehicles; double DIN radio provision\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-and-later-nissan-nv200-vehicles-black/2173448.p?id=1219531558419&skuId=2173448', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173448_sa.jpg\"}', 'upc' => '086429304455', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Class II Data Bus Interface for Select 1996-2005 Cadillac Vehicles - Multi\", 'description_short' => \"AXXESS Class II Data Bus Interface for Select 1996-2005 Cadillac Vehicles: Compatible with select 1996-2005 Cadillac vehicles; 12V, 10-amp interface; retains warning chimes and R.A.P. (retained accessory power)\", 'description_long' => \"AXXESS Class II Data Bus Interface for Select 1996-2005 Cadillac Vehicles: Compatible with select 1996-2005 Cadillac vehicles; 12V, 10-amp interface; retains warning chimes and R.A.P. (retained accessory power)\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-class-ii-data-bus-interface-for-select-1996-2005-cadillac-vehicles-multi/2173457.p?id=1219531556491&skuId=2173457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173457_sa.jpg\"}', 'upc' => '086429294121', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Amplifier Interface for 2014 and Later Mitsubishi Vehicles - Multi\", 'description_short' => \"AXXESS Amplifier Interface for 2014 and Later Mitsubishi Vehicles: Compatible with 2014 and later Mitsubishi vehicles; retains factory amplifier, balance and fade; USB updatable\", 'description_long' => \"AXXESS Amplifier Interface for 2014 and Later Mitsubishi Vehicles: Compatible with 2014 and later Mitsubishi vehicles; retains factory amplifier, balance and fade; USB updatable\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-amplifier-interface-for-2014-and-later-mitsubishi-vehicles-multi/2173466.p?id=1219531559596&skuId=2173466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173466_sa.jpg\"}', 'upc' => '086429294626', 'provider' => 'bestbuy'],\n ['name' => \"Sin-atra - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sin-atra-cd-various/2173471.p?id=2193986&skuId=2173471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173471.jpg\"}', 'upc' => '826992505527', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Chevrolet Malibu with manual climate controls - Gray\", 'description_short' => \"METRA Dash Kit for Select 2013-2015 Chevrolet Malibu with manual climate controls: Compatible with select 2013-2015 Chevy Malibu vehicles; single DIN radio provision with pockets; factory-matched finish\", 'description_long' => \"METRA Dash Kit for Select 2013-2015 Chevrolet Malibu with manual climate controls: Compatible with select 2013-2015 Chevy Malibu vehicles; single DIN radio provision with pockets; factory-matched finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-chevrolet-malibu-with-manual-climate-controls-gray/2173475.p?id=1219531556095&skuId=2173475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173475_sa.jpg\"}', 'upc' => '086429304479', 'provider' => 'bestbuy'],\n ['name' => \"Blu Blu Blu (Spanish) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blu-blu-blu-spanish-cd/2173481.p?id=3350813&skuId=2173481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173481_sa.jpg\"}', 'upc' => '027312011722', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for 2005-2010 Toyota Avalon Vehicles - Silver\", 'description_short' => \"METRA Dash Kit for 2005-2010 Toyota Avalon Vehicles: Compatible with 2005-2010 Toyota Avalon vehicles; double DIN radio provision; factory-matched finish\", 'description_long' => \"METRA Dash Kit for 2005-2010 Toyota Avalon Vehicles: Compatible with 2005-2010 Toyota Avalon vehicles; double DIN radio provision; factory-matched finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-2005-2010-toyota-avalon-vehicles-silver/2173484.p?id=1219531559269&skuId=2173484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173484_sa.jpg\"}', 'upc' => '086429299249', 'provider' => 'bestbuy'],\n ['name' => \"The Healers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-healers-cd/2173490.p?id=3177424&skuId=2173490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173490_sa.jpg\"}', 'upc' => '027312011821', 'provider' => 'bestbuy'],\n ['name' => \"Icon 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-2-cd/2173499.p?id=2198222&skuId=2173499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173499_sa.jpg\"}', 'upc' => '602527625959', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173514.p?id=2198221&skuId=2173514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173514_sa.jpg\"}', 'upc' => '600753329276', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173532.p?id=2198228&skuId=2173532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173532_sa.jpg\"}', 'upc' => '600753330425', 'provider' => 'bestbuy'],\n ['name' => \"Icon [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-pa-cd/2173541.p?id=2198236&skuId=2173541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173541_sa.jpg\"}', 'upc' => '602527616322', 'provider' => 'bestbuy'],\n ['name' => \"Moving Right Along (Spanish) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moving-right-along-spanish-cd/2173579.p?id=2856361&skuId=2173579&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173579', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173579_sa.jpg\"}', 'upc' => '027312012729', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173587.p?id=2205131&skuId=2173587&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173587', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173587_sa.jpg\"}', 'upc' => '602527646053', 'provider' => 'bestbuy'],\n ['name' => \"Marillion: Live from Cadogan Hall (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/marillion-live-from-cadogan-hall-dvd-2-disc/2173596.p?id=2189478&skuId=2173596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173596_sa.jpg\"}', 'upc' => '801213034796', 'provider' => 'bestbuy'],\n ['name' => \"Unforeseen Blessings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unforeseen-blessings-cd/2173597.p?id=3192680&skuId=2173597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173597.jpg\"}', 'upc' => '027312012927', 'provider' => 'bestbuy'],\n ['name' => \"Icon 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-2-cd/2173611.p?id=2210276&skuId=2173611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173611_sa.jpg\"}', 'upc' => '602527647142', 'provider' => 'bestbuy'],\n ['name' => \"Layla And Other Assorted Love Songs [40th... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/layla-and-other-assorted-love-songs-40th-cd/2173648.p?id=2188984&skuId=2173648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173648_sa.jpg\"}', 'upc' => '600753314289', 'provider' => 'bestbuy'],\n ['name' => \"Berlin 13 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/berlin-13-digipak-cd/2173666.p?id=2189431&skuId=2173666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173666_sa.jpg\"}', 'upc' => '795103017320', 'provider' => 'bestbuy'],\n ['name' => \"Icon 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-2-cd/2173675.p?id=2210275&skuId=2173675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173675_sa.jpg\"}', 'upc' => '600753329269', 'provider' => 'bestbuy'],\n ['name' => \"Mad Men: A Musical Companion (1960-1965) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-men-a-musical-companion-1960-1965-cd-various/2173684.p?id=2188978&skuId=2173684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173684_sa.jpg\"}', 'upc' => '600753329726', 'provider' => 'bestbuy'],\n ['name' => \"Long & Short Of It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-short-of-it-cd/2173686.p?id=2979139&skuId=2173686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173686.jpg\"}', 'upc' => '027312014228', 'provider' => 'bestbuy'],\n ['name' => \"Dust Bowl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dust-bowl-cd/2173693.p?id=2189435&skuId=2173693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173693_sa.jpg\"}', 'upc' => '804879313861', 'provider' => 'bestbuy'],\n ['name' => \"Stringology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stringology-cd/2173695.p?id=3192749&skuId=2173695&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173695', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173695_sa.jpg\"}', 'upc' => '027312014327', 'provider' => 'bestbuy'],\n ['name' => \"Scurrilous [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scurrilous-digipak-cd/2173802.p?id=2189451&skuId=2173802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173802_sa.jpg\"}', 'upc' => '601091065925', 'provider' => 'bestbuy'],\n ['name' => \"Cinema [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cinema-digipak-cd/2173811.p?id=2189476&skuId=2173811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173811.jpg\"}', 'upc' => '657036117624', 'provider' => 'bestbuy'],\n ['name' => \"Kansas City Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kansas-city-nights-cd/2173828.p?id=310506&skuId=2173828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173828_sa.jpg\"}', 'upc' => '778133305728', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173839.p?id=2188981&skuId=2173839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173839_sa.jpg\"}', 'upc' => '602527625812', 'provider' => 'bestbuy'],\n ['name' => \"See My Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/see-my-friends-cd/2173857.p?id=2173093&skuId=2173857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173857_sa.jpg\"}', 'upc' => '602527529424', 'provider' => 'bestbuy'],\n ['name' => \"The Great Divide [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-divide-digipak-cd/2173866.p?id=2189454&skuId=2173866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173866_sa.jpg\"}', 'upc' => '896404002333', 'provider' => 'bestbuy'],\n ['name' => \"Live from Cadogan Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-cadogan-hall-cd/2173884.p?id=2189473&skuId=2173884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173884_sa.jpg\"}', 'upc' => '826992020525', 'provider' => 'bestbuy'],\n ['name' => \"Get Me Some - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-me-some-cd/2173893.p?id=2189472&skuId=2173893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173893_sa.jpg\"}', 'upc' => '826992020426', 'provider' => 'bestbuy'],\n ['name' => \"Library of Congress Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/library-of-congress-sessions-cd/2173908.p?id=1591593&skuId=2173908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173908_sa.jpg\"}', 'upc' => '008637100629', 'provider' => 'bestbuy'],\n ['name' => \"Party Tyme Karaoke:... [CD+G] [Box] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/party-tyme-karaoke-cd-g-box-cd-various/2173911.p?id=2198233&skuId=2173911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173911_sa.jpg\"}', 'upc' => '610017444829', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2173939.p?id=2198219&skuId=2173939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2173939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2173\\/2173939_sa.jpg\"}', 'upc' => '602527625942', 'provider' => 'bestbuy'],\n ['name' => \"Guardzilla - Wireless All-in-One Video Security System - White\", 'description_short' => \"CMOS image sensor; infrared night vision up to 30&#039;; motion detection; compatible with Apple&#174; iOS and Android devices\", 'description_long' => \"CMOS image sensor; infrared night vision up to 30&#039;; motion detection; compatible with Apple&#174; iOS and Android devices\", 'price' => 99.99, 'sale_price' => 86.99, 'url' => 'http://www.bestbuy.com/site/guardzilla-wireless-all-in-one-video-security-system-white/2174017.p?id=1219535312669&skuId=2174017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174017_sa.jpg\"}', 'upc' => '856751002318', 'provider' => 'bestbuy'],\n ['name' => \"Thunderbolt: R&B Sax Instumentals - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thunderbolt-r-b-sax-instumentals-cd-various/2174060.p?id=1528023&skuId=2174060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174060.jpg\"}', 'upc' => '008637102920', 'provider' => 'bestbuy'],\n ['name' => \"Fine as Wine - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fine-as-wine-cd-various/2174079.p?id=1576469&skuId=2174079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174079_sa.jpg\"}', 'upc' => '008637103026', 'provider' => 'bestbuy'],\n ['name' => \"Americon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americon-cd/2174091.p?id=2190943&skuId=2174091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174091_sa.jpg\"}', 'upc' => '097037029517', 'provider' => 'bestbuy'],\n ['name' => \"Raise! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raise-cd/2174107.p?id=2558144&skuId=2174107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174107.jpg\"}', 'upc' => '886976395322', 'provider' => 'bestbuy'],\n ['name' => \"Talk to Me Daddy - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/talk-to-me-daddy-cd-various/2174131.p?id=1528022&skuId=2174131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174131.jpg\"}', 'upc' => '008637103729', 'provider' => 'bestbuy'],\n ['name' => \"Return of the Creole - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/return-of-the-creole-cd/2174143.p?id=2190936&skuId=2174143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174143_sa.jpg\"}', 'upc' => '046346109120', 'provider' => 'bestbuy'],\n ['name' => \"Kenny Chesney: Summer in 3D (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kenny-chesney-summer-in-3d-dvd/2174161.p?id=2105883&skuId=2174161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174161_sa.jpg\"}', 'upc' => '014381699524', 'provider' => 'bestbuy'],\n ['name' => \"Play My Juke Box: East Coast Blues (1943-1954) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/play-my-juke-box-east-coast-blues-1943-1954-cd-various/2174195.p?id=1483885&skuId=2174195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174195.jpg\"}', 'upc' => '008637104528', 'provider' => 'bestbuy'],\n ['name' => \"Original - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-cd/2174198.p?id=2192486&skuId=2174198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174198_sa.jpg\"}', 'upc' => '097037894023', 'provider' => 'bestbuy'],\n ['name' => \"Flux Outside [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flux-outside-digipak-cd/2174222.p?id=2193564&skuId=2174222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174222.jpg\"}', 'upc' => '892038002305', 'provider' => 'bestbuy'],\n ['name' => \"Belong [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belong-digipak-cd/2174231.p?id=2192710&skuId=2174231&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174231', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174231_sa.jpg\"}', 'upc' => '749846013521', 'provider' => 'bestbuy'],\n ['name' => \"Firefight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firefight-cd/2174259.p?id=2193561&skuId=2174259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174259.jpg\"}', 'upc' => '746105062122', 'provider' => 'bestbuy'],\n ['name' => \"Converted Mind: The Early Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/converted-mind-the-early-recordings-cd/2174268.p?id=2193569&skuId=2174268&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174268', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174268_sa.jpg\"}', 'upc' => '895102002584', 'provider' => 'bestbuy'],\n ['name' => \"Dell Vikings, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dell-vikings-vol-2-cd/2174275.p?id=1501213&skuId=2174275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174275_sa.jpg\"}', 'upc' => '008637105327', 'provider' => 'bestbuy'],\n ['name' => \"The Luxe Life [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-luxe-life-digipak-cd/2174277.p?id=2193574&skuId=2174277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174277_sa.jpg\"}', 'upc' => '026656203121', 'provider' => 'bestbuy'],\n ['name' => \"Dusty & Forgotten - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dusty-forgotten-cd-various/2174284.p?id=1578166&skuId=2174284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174284_sa.jpg\"}', 'upc' => '008637105426', 'provider' => 'bestbuy'],\n ['name' => \"Cotonou Club - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cotonou-club-cd/2174286.p?id=2193553&skuId=2174286&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174286', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174286_sa.jpg\"}', 'upc' => '730003307720', 'provider' => 'bestbuy'],\n ['name' => \"1954-1958 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1954-1958-cd/2174293.p?id=1473875&skuId=2174293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174293.jpg\"}', 'upc' => '008637105624', 'provider' => 'bestbuy'],\n ['name' => \"2011 Oasis Contemporary Jazz Awards - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2011-oasis-contemporary-jazz-awards-cd-various/2174295.p?id=2193557&skuId=2174295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174295_sa.jpg\"}', 'upc' => '181475702429', 'provider' => 'bestbuy'],\n ['name' => \"Omnivium - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/omnivium-cd/2174301.p?id=2193565&skuId=2174301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174301_sa.jpg\"}', 'upc' => '781676712625', 'provider' => 'bestbuy'],\n ['name' => \"Rockpango [Deluxe] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockpango-deluxe-cd/2174329.p?id=2192708&skuId=2174329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174329_sa.jpg\"}', 'upc' => '020286155676', 'provider' => 'bestbuy'],\n ['name' => \"Mind Bokeh [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mind-bokeh-digipak-cd/2174338.p?id=2193552&skuId=2174338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174338_sa.jpg\"}', 'upc' => '801061020927', 'provider' => 'bestbuy'],\n ['name' => \"The Naked Flame [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-naked-flame-digipak-cd/2174347.p?id=2193577&skuId=2174347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174347_sa.jpg\"}', 'upc' => '020286155447', 'provider' => 'bestbuy'],\n ['name' => \"Up Through The Years 1954-57 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-through-the-years-1954-57-cd/2174355.p?id=1527025&skuId=2174355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174355_sa.jpg\"}', 'upc' => '790051152468', 'provider' => 'bestbuy'],\n ['name' => \"Top Hat Crown & the Clapmaster 's Son [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/top-hat-crown-the-clapmaster-s-son-digipak-cd/2174356.p?id=2193578&skuId=2174356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174356_sa.jpg\"}', 'upc' => '634457541825', 'provider' => 'bestbuy'],\n ['name' => \"The Female Elvis: Complete Recordings 1956-60 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-female-elvis-complete-recordings-1956-60-cd/2174364.p?id=1399112&skuId=2174364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174364_sa.jpg\"}', 'upc' => '790051154066', 'provider' => 'bestbuy'],\n ['name' => \"Rockpango [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockpango-digipak-cd/2174365.p?id=2192319&skuId=2174365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174365_sa.jpg\"}', 'upc' => '020286155614', 'provider' => 'bestbuy'],\n ['name' => \"Surtur Rising [CD & DVD] - CD - DVD (with Bonus Tracks) Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surtur-rising-cd-dvd-cd-dvd-with-bonus-tracks-deluxe-edition/2174374.p?id=2190930&skuId=2174374&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174374', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174374.jpg\"}', 'upc' => '039841498622', 'provider' => 'bestbuy'],\n ['name' => \"Surtur Rising [CD/DVD] [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surtur-rising-cd-dvd-cd-dvd-digipak-cd-dvd/2174383.p?id=2190928&skuId=2174383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174383_sa.jpg\"}', 'upc' => '039841497229', 'provider' => 'bestbuy'],\n ['name' => \"Folksongs Of The Hills - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/folksongs-of-the-hills-cd/2174391.p?id=1406969&skuId=2174391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174391.jpg\"}', 'upc' => '790051156367', 'provider' => 'bestbuy'],\n ['name' => \"Beat Generation: 10th... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beat-generation-10th-digipak-cd/2174392.p?id=2193563&skuId=2174392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174392.jpg\"}', 'upc' => '730003116223', 'provider' => 'bestbuy'],\n ['name' => \"Gimme Some [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gimme-some-digipak-cd/2174407.p?id=2192709&skuId=2174407&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174407', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174407.jpg\"}', 'upc' => '886976826123', 'provider' => 'bestbuy'],\n ['name' => \"The One Rose: The Capitol Years [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 156.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-one-rose-the-capitol-years-box-cd/2174408.p?id=1422495&skuId=2174408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174408.jpg\"}', 'upc' => '4000127157430', 'provider' => 'bestbuy'],\n ['name' => \"Metamorphosis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metamorphosis-cd/2174416.p?id=2193566&skuId=2174416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174416_sa.jpg\"}', 'upc' => '656191010825', 'provider' => 'bestbuy'],\n ['name' => \"Walk On By - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walk-on-by-cd/2174417.p?id=1419958&skuId=2174417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174417_sa.jpg\"}', 'upc' => '790051157791', 'provider' => 'bestbuy'],\n ['name' => \"Useless Eaters [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/useless-eaters-digipak-cd/2174425.p?id=2193556&skuId=2174425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174425_sa.jpg\"}', 'upc' => '020286155799', 'provider' => 'bestbuy'],\n ['name' => \"Signature Series, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/signature-series-vol-3-cd/2174426.p?id=156895&skuId=2174426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174426_sa.jpg\"}', 'upc' => '723181940421', 'provider' => 'bestbuy'],\n ['name' => \"Signature Series, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/signature-series-vol-4-cd/2174435.p?id=154899&skuId=2174435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174435.jpg\"}', 'upc' => '723181940520', 'provider' => 'bestbuy'],\n ['name' => \"Never Be Content EP [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-be-content-ep-digipak-cd/2174443.p?id=2193562&skuId=2174443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174443_sa.jpg\"}', 'upc' => '844942010792', 'provider' => 'bestbuy'],\n ['name' => \"Morning Visions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/morning-visions-cd/2174444.p?id=155731&skuId=2174444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174444_sa.jpg\"}', 'upc' => '723181940629', 'provider' => 'bestbuy'],\n ['name' => \"20 Great Cruisin' Favourites, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-great-cruisin-favourites-vol-3-cd-various/2174471.p?id=82182&skuId=2174471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174471_sa.jpg\"}', 'upc' => '029667051620', 'provider' => 'bestbuy'],\n ['name' => \"Disguises - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disguises-cd/2174489.p?id=2193559&skuId=2174489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174489.jpg\"}', 'upc' => '746105060920', 'provider' => 'bestbuy'],\n ['name' => \"Best Of [CD & DVD] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd-dvd-box-cd/2174498.p?id=2193558&skuId=2174498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174498.jpg\"}', 'upc' => '746105062726', 'provider' => 'bestbuy'],\n ['name' => \"Screws Get Loose [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/screws-get-loose-digipak-cd/2174504.p?id=2193575&skuId=2174504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174504_sa.jpg\"}', 'upc' => '626570611899', 'provider' => 'bestbuy'],\n ['name' => \"Blues In Disguise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-in-disguise-cd/2174522.p?id=2193573&skuId=2174522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174522_sa.jpg\"}', 'upc' => '020286155713', 'provider' => 'bestbuy'],\n ['name' => \"The Chiswick Story - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chiswick-story-cd-various/2174523.p?id=1452190&skuId=2174523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174523_sa.jpg\"}', 'upc' => '029667410021', 'provider' => 'bestbuy'],\n ['name' => \"Ceremony [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ceremony-original-motion-picture-soundtrack-cd-original-soundtrack/2174531.p?id=2193791&skuId=2174531&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174531', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174531_sa.jpg\"}', 'upc' => '780163417524', 'provider' => 'bestbuy'],\n ['name' => \"In Tides and Drifts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-tides-and-drifts-cd/2174568.p?id=2193570&skuId=2174568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174568_sa.jpg\"}', 'upc' => '654436018926', 'provider' => 'bestbuy'],\n ['name' => \"Veritas [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/veritas-digipak-cd/2174577.p?id=2192318&skuId=2174577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174577_sa.jpg\"}', 'upc' => '753957214821', 'provider' => 'bestbuy'],\n ['name' => \"Super - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-cd-original-soundtrack/2174586.p?id=2193792&skuId=2174586&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174586', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174586_sa.jpg\"}', 'upc' => '780163420920', 'provider' => 'bestbuy'],\n ['name' => \"Descent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/descent-cd/2174595.p?id=2193571&skuId=2174595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174595_sa.jpg\"}', 'upc' => '781676715121', 'provider' => 'bestbuy'],\n ['name' => \"Swan [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swan-pa-cd/2174601.p?id=2192317&skuId=2174601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174601.jpg\"}', 'upc' => '673951027527', 'provider' => 'bestbuy'],\n ['name' => \"Get Right With God: Hot Gospel - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-right-with-god-hot-gospel-cd-various/2174612.p?id=1848870&skuId=2174612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174612.jpg\"}', 'upc' => '008637500122', 'provider' => 'bestbuy'],\n ['name' => \"Norron Livskunst - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/norron-livskunst-cd/2174629.p?id=2193567&skuId=2174629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174629_sa.jpg\"}', 'upc' => '654436019428', 'provider' => 'bestbuy'],\n ['name' => \"We Are Lonely Animals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/we-are-lonely-animals-cd/2174638.p?id=2193576&skuId=2174638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174638_sa.jpg\"}', 'upc' => '654436018629', 'provider' => 'bestbuy'],\n ['name' => \"Present Dreams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/present-dreams-cd/2174827.p?id=1643437&skuId=2174827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174827.jpg\"}', 'upc' => '734336313021', 'provider' => 'bestbuy'],\n ['name' => \"Up & Running - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-running-cd/2174854.p?id=1643632&skuId=2174854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174854.jpg\"}', 'upc' => '734336022190', 'provider' => 'bestbuy'],\n ['name' => \"Voyaging With The Whales - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/voyaging-with-the-whales-cd/2174943.p?id=1643625&skuId=2174943&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2174943', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2174\\/2174943.jpg\"}', 'upc' => '734336113027', 'provider' => 'bestbuy'],\n ['name' => \"Noise For The Sake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/noise-for-the-sake-cd/2175238.p?id=3183427&skuId=2175238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2175238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2175\\/2175238_sa.jpg\"}', 'upc' => '743814063525', 'provider' => 'bestbuy'],\n ['name' => \"Time Stands Still - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/time-stands-still-cd/2175247.p?id=2831386&skuId=2175247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2175247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '743814064522', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-1-cd/2175336.p?id=2037423&skuId=2175336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2175336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2175\\/2175336.jpg\"}', 'upc' => '097037700928', 'provider' => 'bestbuy'],\n ['name' => \"Nights in the Gardens of Maine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nights-in-the-gardens-of-maine-cd/2175522.p?id=1942296&skuId=2175522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2175522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2175\\/2175522.jpg\"}', 'upc' => '051287010428', 'provider' => 'bestbuy'],\n ['name' => \"Jackie Paris - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jackie-paris-cd/2176219.p?id=109220&skuId=2176219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176219_sa.jpg\"}', 'upc' => '762247215820', 'provider' => 'bestbuy'],\n ['name' => \"Soft Whyte - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soft-whyte-cd/2176228.p?id=242030&skuId=2176228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176228_sa.jpg\"}', 'upc' => '762247220428', 'provider' => 'bestbuy'],\n ['name' => \"The Music of Hoagy Carmichael - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-music-of-hoagy-carmichael-cd-various/2176237.p?id=72056&skuId=2176237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176237_sa.jpg\"}', 'upc' => '762247222026', 'provider' => 'bestbuy'],\n ['name' => \"Live! in London - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-london-cd/2176246.p?id=157153&skuId=2176246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176246_sa.jpg\"}', 'upc' => '762247228028', 'provider' => 'bestbuy'],\n ['name' => \"Hoagy's Children, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoagys-children-vol-2-cd/2176255.p?id=109227&skuId=2176255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176255_sa.jpg\"}', 'upc' => '762247229223', 'provider' => 'bestbuy'],\n ['name' => \"Get Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-down-cd/2176629.p?id=1564558&skuId=2176629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176629_sa.jpg\"}', 'upc' => '029667371322', 'provider' => 'bestbuy'],\n ['name' => \"I Got to Try It One Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-got-to-try-it-one-time-cd/2176656.p?id=1465549&skuId=2176656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176656_sa.jpg\"}', 'upc' => '029667372329', 'provider' => 'bestbuy'],\n ['name' => \"NYCNYUSA - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nycnyusa-cd/2176665.p?id=1462237&skuId=2176665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176665_sa.jpg\"}', 'upc' => '029667373029', 'provider' => 'bestbuy'],\n ['name' => \"Hot Box - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-box-cd/2176674.p?id=1572160&skuId=2176674&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176674', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176674_sa.jpg\"}', 'upc' => '029667375627', 'provider' => 'bestbuy'],\n ['name' => \"Is This the Future? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/is-this-the-future-cd/2176683.p?id=1459374&skuId=2176683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176683_sa.jpg\"}', 'upc' => '029667375825', 'provider' => 'bestbuy'],\n ['name' => \"E.S.P. ( Extra Sexual Persuasion ) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/e-s-p--extra-sexual-persuasion--cd/2176692.p?id=1463755&skuId=2176692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176692_sa.jpg\"}', 'upc' => '029667379328', 'provider' => 'bestbuy'],\n ['name' => \"The Sounds of Simon/Simon Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sounds-of-simon-simon-country-cd/2176709.p?id=1564577&skuId=2176709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176709_sa.jpg\"}', 'upc' => '029667195423', 'provider' => 'bestbuy'],\n ['name' => \"Mood, Heart and Soul/Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mood-heart-and-soul-today-cd/2176718.p?id=1574166&skuId=2176718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176718_sa.jpg\"}', 'upc' => '029667197120', 'provider' => 'bestbuy'],\n ['name' => \"Proud Dad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proud-dad-cd/2176736.p?id=129027&skuId=2176736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176736.jpg\"}', 'upc' => '076605220129', 'provider' => 'bestbuy'],\n ['name' => \"The Greenwich Village Folk Festival 1989-90 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greenwich-village-folk-festival-1989-90-cd-various/2176754.p?id=84235&skuId=2176754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176754_sa.jpg\"}', 'upc' => '076605205928', 'provider' => 'bestbuy'],\n ['name' => \"Don't Get Killed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-get-killed-cd/2176772.p?id=75804&skuId=2176772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176772_sa.jpg\"}', 'upc' => '076605208929', 'provider' => 'bestbuy'],\n ['name' => \"Abridged Perversion - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abridged-perversion-cd-various/2176889.p?id=235347&skuId=2176889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2176889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2176\\/2176889_sa.jpg\"}', 'upc' => '759718139822', 'provider' => 'bestbuy'],\n ['name' => \"Emergence of a Legend 1930-39 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emergence-of-a-legend-1930-39-cd/2177236.p?id=99281&skuId=2177236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177236_sa.jpg\"}', 'upc' => '734021040126', 'provider' => 'bestbuy'],\n ['name' => \"Goodnight My Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goodnight-my-love-cd/2177254.p?id=66077&skuId=2177254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177254_sa.jpg\"}', 'upc' => '734021040324', 'provider' => 'bestbuy'],\n ['name' => \"Syncopating Harmonists from New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/syncopating-harmonists-from-new-orleans-cd/2177281.p?id=64447&skuId=2177281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177281_sa.jpg\"}', 'upc' => '734021040621', 'provider' => 'bestbuy'],\n ['name' => \"The First Torch Singers, Vol. 1: The Twenties - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-first-torch-singers-vol-1-the-twenties-cd-various/2177290.p?id=71478&skuId=2177290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177290_sa.jpg\"}', 'upc' => '734021040720', 'provider' => 'bestbuy'],\n ['name' => \"Complete Library of Congress Sessions, 1941-... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-library-of-congress-sessions-1941-cd/2177361.p?id=1552900&skuId=2177361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177361_sa.jpg\"}', 'upc' => '008637800222', 'provider' => 'bestbuy'],\n ['name' => \"Red River Blues 1934-1943 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-river-blues-1934-1943-cd-various/2177414.p?id=135519&skuId=2177414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177414_sa.jpg\"}', 'upc' => '008637800826', 'provider' => 'bestbuy'],\n ['name' => \"Walls We Bounce Off Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walls-we-bounce-off-of-cd/2177520.p?id=2223525&skuId=2177520&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177520', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177520.jpg\"}', 'upc' => '740517039420', 'provider' => 'bestbuy'],\n ['name' => \"It Still Ain't Easy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-still-aint-easy-cd/2177548.p?id=1397927&skuId=2177548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177548_sa.jpg\"}', 'upc' => '772532116329', 'provider' => 'bestbuy'],\n ['name' => \"One Jump Ahead of the Devil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-jump-ahead-of-the-devil-cd/2177566.p?id=1397956&skuId=2177566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177566_sa.jpg\"}', 'upc' => '772532117722', 'provider' => 'bestbuy'],\n ['name' => \"Third Man In - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/third-man-in-cd/2177575.p?id=1456206&skuId=2177575&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177575', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177575_sa.jpg\"}', 'upc' => '772532117920', 'provider' => 'bestbuy'],\n ['name' => \"On Stage Tonight: Baldry's Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-stage-tonight-baldrys-out-cd/2177600.p?id=1397928&skuId=2177600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177600_sa.jpg\"}', 'upc' => '772532119221', 'provider' => 'bestbuy'],\n ['name' => \"Love on the Range - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-on-the-range-cd/2177619.p?id=1398043&skuId=2177619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177619_sa.jpg\"}', 'upc' => '772532119429', 'provider' => 'bestbuy'],\n ['name' => \"Higher Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/higher-ground-cd/2177682.p?id=2944029&skuId=2177682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177682.jpg\"}', 'upc' => '715498890629', 'provider' => 'bestbuy'],\n ['name' => \"Willie Alexander's Persistence of Memory... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/willie-alexanders-persistence-of-memory-cd/2177995.p?id=111723&skuId=2177995&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2177995', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2177\\/2177995_sa.jpg\"}', 'upc' => '743431100221', 'provider' => 'bestbuy'],\n ['name' => \"The Calculus of Pleasure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-calculus-of-pleasure-cd/2178002.p?id=65886&skuId=2178002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178002_sa.jpg\"}', 'upc' => '743431325228', 'provider' => 'bestbuy'],\n ['name' => \"Boost Mobile - ZTE Speed 4G No-Contract Cell Phone - Black\", 'description_short' => \"Android 4.4.4 KitKat operating system4G LTE speed4.5&quot; TN-TFT touch screenBluetooth interface5.0MP rear-facing and 2.0MP front-facing cameras\", 'description_long' => \"Android 4.4.4 KitKat operating system4G LTE speed4.5&quot; TN-TFT touch screenBluetooth interface5.0MP rear-facing and 2.0MP front-facing cameras\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boost-mobile-zte-speed-4g-no-contract-cell-phone-black/2178004.p?id=1219531560050&skuId=2178004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178004_sa.jpg\"}', 'upc' => '885913102511', 'provider' => 'bestbuy'],\n ['name' => \"Sauce - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sauce-cd/2178011.p?id=106644&skuId=2178011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178011_sa.jpg\"}', 'upc' => '743431351326', 'provider' => 'bestbuy'],\n ['name' => \"The Last Elephant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-elephant-cd/2178020.p?id=68701&skuId=2178020&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178020', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178020.jpg\"}', 'upc' => '743431362025', 'provider' => 'bestbuy'],\n ['name' => \"Good Deeds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-deeds-cd/2178039.p?id=68304&skuId=2178039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178039_sa.jpg\"}', 'upc' => '743431380128', 'provider' => 'bestbuy'],\n ['name' => \"When the Moon Jumps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-the-moon-jumps-cd/2178048.p?id=107412&skuId=2178048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178048.jpg\"}', 'upc' => '743431420329', 'provider' => 'bestbuy'],\n ['name' => \"Antigravity-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/antigravity-cd/2178057.p?id=70760&skuId=2178057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178057.jpg\"}', 'upc' => '743431430724', 'provider' => 'bestbuy'],\n ['name' => \"Blind Drive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blind-drive-cd/2178066.p?id=64817&skuId=2178066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178066_sa.jpg\"}', 'upc' => '743431440020', 'provider' => 'bestbuy'],\n ['name' => \"No More Mr. Nice Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-more-mr-nice-guy-cd/2178075.p?id=69268&skuId=2178075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178075_sa.jpg\"}', 'upc' => '743431450128', 'provider' => 'bestbuy'],\n ['name' => \"The Fax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-fax-cd/2178084.p?id=64443&skuId=2178084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178084.jpg\"}', 'upc' => '743431460127', 'provider' => 'bestbuy'],\n ['name' => \"Forevermore - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forevermore-cd/2178088.p?id=2193582&skuId=2178088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178088_sa.jpg\"}', 'upc' => '8024391050927', 'provider' => 'bestbuy'],\n ['name' => \"Plays Music by Rich Latham - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-music-by-rich-latham-cd/2178093.p?id=106668&skuId=2178093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178093_sa.jpg\"}', 'upc' => '743431480026', 'provider' => 'bestbuy'],\n ['name' => \"Revenue Retrievin': Overtime Shift [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenue-retrievin-overtime-shift-pa-digipak-cd/2178097.p?id=2192728&skuId=2178097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178097_sa.jpg\"}', 'upc' => '852020002232', 'provider' => 'bestbuy'],\n ['name' => \"Vermont Avenue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vermont-avenue-cd/2178100.p?id=106682&skuId=2178100&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178100', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178100_sa.jpg\"}', 'upc' => '743431500120', 'provider' => 'bestbuy'],\n ['name' => \"Here We Go Again: Celebrating the Genius of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-we-go-again-celebrating-the-genius-of-cd/2178112.p?id=2189890&skuId=2178112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178112_sa.jpg\"}', 'upc' => '5099909638822', 'provider' => 'bestbuy'],\n ['name' => \"Straight to the Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-to-the-soul-cd/2178119.p?id=114754&skuId=2178119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178119_sa.jpg\"}', 'upc' => '743431500229', 'provider' => 'bestbuy'],\n ['name' => \"Revenue Retrievin':... [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 18.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revenue-retrievin-pa-digipak-cd/2178121.p?id=2192727&skuId=2178121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178121_sa.jpg\"}', 'upc' => '852020002249', 'provider' => 'bestbuy'],\n ['name' => \"Decline Of Western Civilization, Part II: The... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/decline-of-western-civilization-part-ii-the-cd-various/2178149.p?id=2729958&skuId=2178149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178149_sa.jpg\"}', 'upc' => '077779020522', 'provider' => 'bestbuy'],\n ['name' => \"Absolute Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/absolute-hits-cd/2178167.p?id=2193583&skuId=2178167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178167_sa.jpg\"}', 'upc' => '5099909785120', 'provider' => 'bestbuy'],\n ['name' => \"Forevermore - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forevermore-vinyl/2178176.p?id=2208203&skuId=2178176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178176.jpg\"}', 'upc' => '8024391050958', 'provider' => 'bestbuy'],\n ['name' => \"Last of the Country Gentlemen [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-of-the-country-gentlemen-digipak-cd/2178194.p?id=2193793&skuId=2178194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178194.jpg\"}', 'upc' => '724596949726', 'provider' => 'bestbuy'],\n ['name' => \"Doggumentary [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doggumentary-pa-digipak-cd/2178219.p?id=2189886&skuId=2178219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178219_sa.jpg\"}', 'upc' => '5099990795220', 'provider' => 'bestbuy'],\n ['name' => \"Born Again [Miracles Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-again-miracles-edition-cd/2178228.p?id=2196745&skuId=2178228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178228_sa.jpg\"}', 'upc' => '804147158620', 'provider' => 'bestbuy'],\n ['name' => \"Essential - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essential-cd/2178237.p?id=2193794&skuId=2178237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178237_sa.jpg\"}', 'upc' => '5099909785229', 'provider' => 'bestbuy'],\n ['name' => \"Forevermore [DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forevermore-dvd-digipak-cd-dvd/2178246.p?id=2193585&skuId=2178246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178246.jpg\"}', 'upc' => '8024391050941', 'provider' => 'bestbuy'],\n ['name' => \"How I Got Over...Songs That Carried Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-i-got-over-songs-that-carried-us-cd/2178255.p?id=2193786&skuId=2178255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178255_sa.jpg\"}', 'upc' => '5099930615229', 'provider' => 'bestbuy'],\n ['name' => \"Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stories-cd/2178262.p?id=289214&skuId=2178262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178262_sa.jpg\"}', 'upc' => '755532728525', 'provider' => 'bestbuy'],\n ['name' => \"Unseen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unseen-cd/2178282.p?id=2193795&skuId=2178282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178282_sa.jpg\"}', 'upc' => '727701872025', 'provider' => 'bestbuy'],\n ['name' => \"Bloodshot: The Gaity Records Story, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloodshot-the-gaity-records-story-vol-1-cd-various/2178299.p?id=135349&skuId=2178299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178299.jpg\"}', 'upc' => '731253023521', 'provider' => 'bestbuy'],\n ['name' => \"Means of Identification - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/means-of-identification-cd/2178315.p?id=70085&skuId=2178315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178315_sa.jpg\"}', 'upc' => '747985010128', 'provider' => 'bestbuy'],\n ['name' => \"What It Takes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-it-takes-cd/2178324.p?id=64534&skuId=2178324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178324_sa.jpg\"}', 'upc' => '747985011729', 'provider' => 'bestbuy'],\n ['name' => \"The Missouri Connection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-missouri-connection-cd/2178333.p?id=69028&skuId=2178333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178333_sa.jpg\"}', 'upc' => '747985012429', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2178342.p?id=154116&skuId=2178342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178342_sa.jpg\"}', 'upc' => '747985013129', 'provider' => 'bestbuy'],\n ['name' => \"Kidney Stew [Southland] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kidney-stew-southland-cd/2178379.p?id=109150&skuId=2178379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178379_sa.jpg\"}', 'upc' => '762247902928', 'provider' => 'bestbuy'],\n ['name' => \"Blunt Force Trauma [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blunt-force-trauma-pa-cd/2178398.p?id=2194598&skuId=2178398&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178398_sa.jpg\"}', 'upc' => '016861775827', 'provider' => 'bestbuy'],\n ['name' => \"Scala & Kolacny Brothers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scala-kolacny-brothers-cd/2178403.p?id=2189487&skuId=2178403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178403_sa.jpg\"}', 'upc' => '081227977788', 'provider' => 'bestbuy'],\n ['name' => \"The Big Roar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-big-roar-cd/2178412.p?id=2176174&skuId=2178412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178412_sa.jpg\"}', 'upc' => '075678833533', 'provider' => 'bestbuy'],\n ['name' => \"Vices & Virtues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vices-virtues-cd/2178449.p?id=2192917&skuId=2178449&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178449', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178449_sa.jpg\"}', 'upc' => '075678892417', 'provider' => 'bestbuy'],\n ['name' => \"Blunt Force Trauma... [CD & DVD] [PA] [Digipak] - CD - DVD Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blunt-force-trauma-cd-dvd-pa-digipak-cd-dvd-special/2178458.p?id=2194587&skuId=2178458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178458.jpg\"}', 'upc' => '016861775858', 'provider' => 'bestbuy'],\n ['name' => \"Live at the Aragon [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-aragon-cd-dvd-cd-dvd/2178467.p?id=2189486&skuId=2178467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178467.jpg\"}', 'upc' => '093624964728', 'provider' => 'bestbuy'],\n ['name' => \"Awesome as Fk [CD & DVD] [PA] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awesome-as-fk-cd-dvd-pa-cd-dvd/2178476.p?id=2197598&skuId=2178476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178476_sa.jpg\"}', 'upc' => '093624961093', 'provider' => 'bestbuy'],\n ['name' => \"Awesome as Fk [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awesome-as-fk-pa-cd/2178485.p?id=2197602&skuId=2178485&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178485', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178485_sa.jpg\"}', 'upc' => '093624959069', 'provider' => 'bestbuy'],\n ['name' => \"The Unforgiving - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-unforgiving-cd/2178494.p?id=2192921&skuId=2178494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178494_sa.jpg\"}', 'upc' => '016861791728', 'provider' => 'bestbuy'],\n ['name' => \"Midnight at St. Jude's - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-at-st-judes-cd-various/2178495.p?id=112116&skuId=2178495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178495_sa.jpg\"}', 'upc' => '723265121128', 'provider' => 'bestbuy'],\n ['name' => \"The Unforgiving [CD & DVD] [Digipak] - CD - DVD Special\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-unforgiving-cd-dvd-digipak-cd-dvd-special/2178519.p?id=2194593&skuId=2178519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178519_sa.jpg\"}', 'upc' => '016861791759', 'provider' => 'bestbuy'],\n ['name' => \"Let's Pretend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-pretend-cd/2178528.p?id=2194581&skuId=2178528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178528_sa.jpg\"}', 'upc' => '859700393871', 'provider' => 'bestbuy'],\n ['name' => \"Rolling Papers [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/rolling-papers-pa-cd/2178537.p?id=2188377&skuId=2178537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2178537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2178\\/2178537_sa.jpg\"}', 'upc' => '075678827280', 'provider' => 'bestbuy'],\n ['name' => \"The Coming Great Millenium - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-coming-great-millenium-cd/2179699.p?id=1452153&skuId=2179699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2179699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '035828011921', 'provider' => 'bestbuy'],\n ['name' => \"Species Compatibility - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/species-compatibility-cd/2179822.p?id=1452163&skuId=2179822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2179822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2179\\/2179822.jpg\"}', 'upc' => '035828013529', 'provider' => 'bestbuy'],\n ['name' => \"Plain Old Joe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plain-old-joe-cd/2179840.p?id=1452145&skuId=2179840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2179840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2179\\/2179840.jpg\"}', 'upc' => '035828013925', 'provider' => 'bestbuy'],\n ['name' => \"Lobster and Friend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lobster-and-friend-cd/2179895.p?id=1452152&skuId=2179895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2179895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2179\\/2179895_sa.jpg\"}', 'upc' => '035828014724', 'provider' => 'bestbuy'],\n ['name' => \"What Is Anything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-is-anything-cd/2179939.p?id=1452274&skuId=2179939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2179939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2179\\/2179939_sa.jpg\"}', 'upc' => '035828015226', 'provider' => 'bestbuy'],\n ['name' => \"Boogie Awhile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-awhile-cd/2180008.p?id=1543509&skuId=2180008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180008_sa.jpg\"}', 'upc' => '008637600525', 'provider' => 'bestbuy'],\n ['name' => \"Let the Good Times Roll, 1948-1963 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-the-good-times-roll-1948-1963-cd/2180017.p?id=79851&skuId=2180017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180017_sa.jpg\"}', 'upc' => '008637600624', 'provider' => 'bestbuy'],\n ['name' => \"All Eternals Deck [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-eternals-deck-lp-vinyl/2180068.p?id=2194588&skuId=2180068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180068_sa.jpg\"}', 'upc' => '673855040516', 'provider' => 'bestbuy'],\n ['name' => \"Puros - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puros-cd/2180071.p?id=1459182&skuId=2180071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180071.jpg\"}', 'upc' => '726167900327', 'provider' => 'bestbuy'],\n ['name' => \"Actor-Caster [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/actor-caster-digipak-cd/2180077.p?id=2194589&skuId=2180077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180077_sa.jpg\"}', 'upc' => '788377114024', 'provider' => 'bestbuy'],\n ['name' => \"All Eternals Deck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-eternals-deck-cd/2180086.p?id=2194580&skuId=2180086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180086_sa.jpg\"}', 'upc' => '673855040523', 'provider' => 'bestbuy'],\n ['name' => \"Too Young to Be in Love [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-young-to-be-in-love-digipak-cd/2180095.p?id=2240495&skuId=2180095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180095.jpg\"}', 'upc' => '098787303421', 'provider' => 'bestbuy'],\n ['name' => \"Rumba Caliente 88/77 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rumba-caliente-88-77-cd/2180099.p?id=1459177&skuId=2180099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180099_sa.jpg\"}', 'upc' => '726167900525', 'provider' => 'bestbuy'],\n ['name' => \"Cuban Gold: Que Se Sepa, ­Yo Soy De La Habana! - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuban-gold-que-se-sepa-yo-soy-de-la-habana-cd-various/2180106.p?id=1480724&skuId=2180106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180106.jpg\"}', 'upc' => '726167900624', 'provider' => 'bestbuy'],\n ['name' => \"Roadside Attractions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roadside-attractions-cd/2180129.p?id=2192706&skuId=2180129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180129.jpg\"}', 'upc' => '014551494225', 'provider' => 'bestbuy'],\n ['name' => \"Viejo Lazaro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/viejo-lazaro-cd/2180133.p?id=1459234&skuId=2180133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180133.jpg\"}', 'upc' => '726167900921', 'provider' => 'bestbuy'],\n ['name' => \"Lost and Safe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-and-safe-cd/2180138.p?id=2194591&skuId=2180138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180138_sa.jpg\"}', 'upc' => '656605318226', 'provider' => 'bestbuy'],\n ['name' => \"Cult Cargo: Salsa Boricua De Chicago - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cult-cargo-salsa-boricua-de-chicago-cd-various/2180156.p?id=2195554&skuId=2180156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180156_sa.jpg\"}', 'upc' => '825764103626', 'provider' => 'bestbuy'],\n ['name' => \"Something to Die For - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-to-die-for-cd/2180165.p?id=2192700&skuId=2180165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180165_sa.jpg\"}', 'upc' => '603967143928', 'provider' => 'bestbuy'],\n ['name' => \"Jazz: The Smithsonian Anthology [Box] - CD - Various Box\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-the-smithsonian-anthology-box-cd-various-box/2180174.p?id=2195820&skuId=2180174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180174_sa.jpg\"}', 'upc' => '093074082027', 'provider' => 'bestbuy'],\n ['name' => \"Canary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canary-cd/2180208.p?id=2194585&skuId=2180208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180208.jpg\"}', 'upc' => '744302082028', 'provider' => 'bestbuy'],\n ['name' => \"Shake 'Em on Down: A Tribute to... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-em-on-down-a-tribute-to-digipak-cd/2180217.p?id=2195553&skuId=2180217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180217_sa.jpg\"}', 'upc' => '772532134422', 'provider' => 'bestbuy'],\n ['name' => \"Best of 00-10 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-00-10-cd/2180226.p?id=2192707&skuId=2180226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180226_sa.jpg\"}', 'upc' => '067003090421', 'provider' => 'bestbuy'],\n ['name' => \"Truth Is... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truth-is-cd/2180235.p?id=2194590&skuId=2180235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180235.jpg\"}', 'upc' => '856136002568', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Kombat: Annihilation (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-kombat-annihilation-blu-ray-disc/2180305.p?id=49253&skuId=2180305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180305_sa.jpg\"}', 'upc' => '794043143137', 'provider' => 'bestbuy'],\n ['name' => \"Hubble (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hubble-dvd/2180314.p?id=2195832&skuId=2180314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180314_sa.jpg\"}', 'upc' => '883929140367', 'provider' => 'bestbuy'],\n ['name' => \"Growing Pains: The Complete Second Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/growing-pains-the-complete-second-season-3-discs-dvd/2180323.p?id=2179220&skuId=2180323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180323.jpg\"}', 'upc' => '883929173358', 'provider' => 'bestbuy'],\n ['name' => \"Hubble (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hubble-blu-ray-3d-3-d/2180332.p?id=2195832&skuId=2180332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180332_sa.jpg\"}', 'upc' => '883929204755', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Snakedance (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-snakedance-dvd/2180341.p?id=2179226&skuId=2180341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180341_sa.jpg\"}', 'upc' => '883929168026', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2180357.p?id=77184&skuId=2180357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180357.jpg\"}', 'upc' => '724075700220', 'provider' => 'bestbuy'],\n ['name' => \"You're so Fine - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/youre-so-fine-cd-best-of/2180366.p?id=3536360&skuId=2180366&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '724075700329', 'provider' => 'bestbuy'],\n ['name' => \"Scooby-Doo!: Aloha Scooby-Doo! (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scooby-doo-aloha-scooby-doo-blu-ray-disc/2180378.p?id=1400208&skuId=2180378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180378_sa.jpg\"}', 'upc' => '883929159918', 'provider' => 'bestbuy'],\n ['name' => \"If God Is Willing and Da Creek Don't Rise (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-god-is-willing-and-da-creek-dont-rise-dvd-2-disc/2180396.p?id=2184844&skuId=2180396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180396_sa.jpg\"}', 'upc' => '883929174010', 'provider' => 'bestbuy'],\n ['name' => \"Firebreather (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firebreather-blu-ray-disc/2180438.p?id=2179986&skuId=2180438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180438_sa.jpg\"}', 'upc' => '883929182916', 'provider' => 'bestbuy'],\n ['name' => \"Batman Beyond: Return of the Joker (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/batman-beyond-return-of-the-joker-blu-ray-disc/2180447.p?id=32849&skuId=2180447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180447_sa.jpg\"}', 'upc' => '883929159543', 'provider' => 'bestbuy'],\n ['name' => \"Scooby-Doo! 3-Pack Fun [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scooby-doo-3-pack-fun-3-discs-dvd/2180456.p?id=2186616&skuId=2180456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180456_sa.jpg\"}', 'upc' => '883929175581', 'provider' => 'bestbuy'],\n ['name' => \"Vampire Knight: The Complete Series [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vampire-knight-the-complete-series-2-discs-dvd/2180465.p?id=2162887&skuId=2180465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180465_sa.jpg\"}', 'upc' => '782009241621', 'provider' => 'bestbuy'],\n ['name' => \"Soylent Green (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soylent-green-blu-ray-disc/2180474.p?id=24633&skuId=2180474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180474_sa.jpg\"}', 'upc' => '883929174126', 'provider' => 'bestbuy'],\n ['name' => \"Fresh Prince of Bel-Air: The Complete Sixth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-prince-of-bel-air-the-complete-sixth-season-3-discs-dvd/2180508.p?id=2184066&skuId=2180508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2180508.jpg\"}', 'upc' => '883929156788', 'provider' => 'bestbuy'],\n ['name' => \"Naruto: Shippuden - Box Set 6 [3 Discs] (Uncut) (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/naruto-shippuden-box-set-6-3-discs-uncut-boxed-set-dvd/2180526.p?id=2184063&skuId=2180526&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180526', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180526_sa.jpg\"}', 'upc' => '782009241737', 'provider' => 'bestbuy'],\n ['name' => \"Sesame Street: Wild Words and Outdoor Adventures (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sesame-street-wild-words-and-outdoor-adventures-dvd/2180535.p?id=2180267&skuId=2180535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180535.jpg\"}', 'upc' => '854392002162', 'provider' => 'bestbuy'],\n ['name' => \"A Sunday Kind of Love - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-sunday-kind-of-love-cd-best-of/2180543.p?id=275454&skuId=2180543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '724075702125', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Kinda (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-kinda-dvd/2180544.p?id=2179225&skuId=2180544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180544_sa.jpg\"}', 'upc' => '883929168040', 'provider' => 'bestbuy'],\n ['name' => \"Yesterday's Memories - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yesterdays-memories-cd-best-of/2180561.p?id=91376&skuId=2180561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '724075702323', 'provider' => 'bestbuy'],\n ['name' => \"TCM Greatest Classic Films Legends Collection: Marlon Brando [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tcm-greatest-classic-films-legends-collection-marlon-brando-2-discs-dvd/2180562.p?id=2180486&skuId=2180562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180562_sa.jpg\"}', 'upc' => '883929166800', 'provider' => 'bestbuy'],\n ['name' => \"Firebreather (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/firebreather-dvd/2180571.p?id=2179986&skuId=2180571&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180571', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180571_sa.jpg\"}', 'upc' => '883929182909', 'provider' => 'bestbuy'],\n ['name' => \"Moonlight Cocktails [Relic] - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moonlight-cocktails-relic-cd-best-of/2180589.p?id=308977&skuId=2180589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '724075702521', 'provider' => 'bestbuy'],\n ['name' => \"DALLAS: THE MOVIE COLLECTION (2PC) / (FULL SUB) (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dallas-the-movie-collection-2pc-full-sub-dvd-2-disc/2180599.p?id=2180498&skuId=2180599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180599_sa.jpg\"}', 'upc' => '883929170524', 'provider' => 'bestbuy'],\n ['name' => \"Just to Be With You - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-to-be-with-you-cd-best-of/2180641.p?id=129646&skuId=2180641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180641.jpg\"}', 'upc' => '724075703122', 'provider' => 'bestbuy'],\n ['name' => \"Oh Gee Oh Gosh - CD - Best of\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-gee-oh-gosh-cd-best-of/2180703.p?id=88308&skuId=2180703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180703.jpg\"}', 'upc' => '724075703726', 'provider' => 'bestbuy'],\n ['name' => \"Bart Robley: School of Hard Rocks - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bart-robley-school-of-hard-rocks-dvd/2180705.p?id=1908641&skuId=2180705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180705_sa.jpg\"}', 'upc' => '884088283643', 'provider' => 'bestbuy'],\n ['name' => \"Best Of [21 Cuts] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-21-cuts-cd/2180847.p?id=73185&skuId=2180847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180847.jpg\"}', 'upc' => '724075705126', 'provider' => 'bestbuy'],\n ['name' => \"Mexican-American Border Music, Vol. 1: 1928-1958 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mexican-american-border-music-vol-1-1928-1958-cd-various/2180963.p?id=106747&skuId=2180963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180963.jpg\"}', 'upc' => '096297700129', 'provider' => 'bestbuy'],\n ['name' => \"Sextetos Cubanos - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sextetos-cubanos-cd-various/2180972.p?id=179505&skuId=2180972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180972_sa.jpg\"}', 'upc' => '096297700327', 'provider' => 'bestbuy'],\n ['name' => \"Greek-Oriental Rebetica-Songs & Dances in the... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greek-oriental-rebetica-songs-dances-in-the-cd-various/2180990.p?id=84154&skuId=2180990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2180990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2180\\/2180990_sa.jpg\"}', 'upc' => '096297700525', 'provider' => 'bestbuy'],\n ['name' => \"Poor But Ambitious: Calypso Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poor-but-ambitious-calypso-classics-cd/2181007.p?id=85789&skuId=2181007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181007.jpg\"}', 'upc' => '096297701027', 'provider' => 'bestbuy'],\n ['name' => \"Mexico's Pioneer Mariachis, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mexicos-pioneer-mariachis-vol-2-cd/2181016.p?id=90549&skuId=2181016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181016.jpg\"}', 'upc' => '096297701225', 'provider' => 'bestbuy'],\n ['name' => \"Ukrainian Village Music - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ukrainian-village-music-cd-various/2181025.p?id=102739&skuId=2181025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181025.jpg\"}', 'upc' => '096297703021', 'provider' => 'bestbuy'],\n ['name' => \"Dear Dumb Diary - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dear-dumb-diary-cd-original-soundtrack/2181029.p?id=2756001&skuId=2181029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181029_sa.jpg\"}', 'upc' => '780163434323', 'provider' => 'bestbuy'],\n ['name' => \"Page Three - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/page-three-cd/2181034.p?id=133675&skuId=2181034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181034_sa.jpg\"}', 'upc' => '019866901222', 'provider' => 'bestbuy'],\n ['name' => \"Speak a Little Louder [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speak-a-little-louder-pa-digipak-cd/2181038.p?id=2757496&skuId=2181038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181038_sa.jpg\"}', 'upc' => '807315110338', 'provider' => 'bestbuy'],\n ['name' => \"Campfire Memories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/campfire-memories-cd/2181043.p?id=76117&skuId=2181043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181043_sa.jpg\"}', 'upc' => '019866900225', 'provider' => 'bestbuy'],\n ['name' => \"Echoes of Ellington - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/echoes-of-ellington-cd/2181052.p?id=114342&skuId=2181052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181052.jpg\"}', 'upc' => '019866900324', 'provider' => 'bestbuy'],\n ['name' => \"The Digital Page: Page Two - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-digital-page-page-two-cd/2181089.p?id=64907&skuId=2181089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181089.jpg\"}', 'upc' => '019866900621', 'provider' => 'bestbuy'],\n ['name' => \"The King Swings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-king-swings-cd/2181098.p?id=112016&skuId=2181098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181098.jpg\"}', 'upc' => '019866900720', 'provider' => 'bestbuy'],\n ['name' => \"Songs of the Civil War: A Nation Divided - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-the-civil-war-a-nation-divided-cd-various/2181105.p?id=76118&skuId=2181105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181105.jpg\"}', 'upc' => '019866900829', 'provider' => 'bestbuy'],\n ['name' => \"A Meeting by the River - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-meeting-by-the-river-cd/2181196.p?id=78608&skuId=2181196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181196_sa.jpg\"}', 'upc' => '760997002929', 'provider' => 'bestbuy'],\n ['name' => \"Just Like a Devil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-like-a-devil-cd/2181203.p?id=101727&skuId=2181203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181203_sa.jpg\"}', 'upc' => '008128044425', 'provider' => 'bestbuy'],\n ['name' => \"Percy Mayfield Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/percy-mayfield-live-cd/2181212.p?id=90913&skuId=2181212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181212_sa.jpg\"}', 'upc' => '008128044524', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits: Vol 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-vol-2-cd/2181249.p?id=3307529&skuId=2181249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '082333221925', 'provider' => 'bestbuy'],\n ['name' => \"Mambo Chillun: Charly Blues Masterworks, Vol. 19 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mambo-chillun-charly-blues-masterworks-vol-19-cd/2181294.p?id=3173151&skuId=2181294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181294.jpg\"}', 'upc' => '082333159525', 'provider' => 'bestbuy'],\n ['name' => \"Game of Thrones: Season 3 [Blu-ray] (Blu-ray Disc) (7 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/game-of-thrones-season-3-blu-ray-blu-ray-disc-7-disc/2181353.p?id=2756424&skuId=2181353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181353_sa.jpg\"}', 'upc' => '883929330706', 'provider' => 'bestbuy'],\n ['name' => \"Game of Thrones: Season 3 [5 discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 54.99, 'sale_price' => 37.99, 'url' => 'http://www.bestbuy.com/site/game-of-thrones-season-3-5-discs-dvd/2181371.p?id=2756423&skuId=2181371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181371.jpg\"}', 'upc' => '883929330713', 'provider' => 'bestbuy'],\n ['name' => \"Come Into The Jungle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-into-the-jungle-cd/2181846.p?id=2844940&skuId=2181846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2181846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2181\\/2181846.jpg\"}', 'upc' => '774554500124', 'provider' => 'bestbuy'],\n ['name' => \"Moondance [Expanded Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moondance-expanded-edition-digipak-cd/2182019.p?id=2734608&skuId=2182019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182019_sa.jpg\"}', 'upc' => '081227963842', 'provider' => 'bestbuy'],\n ['name' => \"Everything You Ever Wanted to Know About 60's... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everything-you-ever-wanted-to-know-about-60s-cd-various/2182033.p?id=152452&skuId=2182033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182033_sa.jpg\"}', 'upc' => '737835004124', 'provider' => 'bestbuy'],\n ['name' => \"Moondance [Remastered] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moondance-remastered-cd/2182037.p?id=2734721&skuId=2182037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182037_sa.jpg\"}', 'upc' => '081227963637', 'provider' => 'bestbuy'],\n ['name' => \"Waleeco & Space Kids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waleeco-space-kids-cd/2182042.p?id=1896909&skuId=2182042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182042_sa.jpg\"}', 'upc' => '737835004223', 'provider' => 'bestbuy'],\n ['name' => \"Griffin Technology - Flat Aux Stereo Audio Cable - Black\", 'description_short' => \"2.95 ft - 1 x Mini-phone Male Stereo Audio - 1 x Mini-phone Male Stereo Audio - Black\", 'description_long' => \"2.95 ft - 1 x Mini-phone Male Stereo Audio - 1 x Mini-phone Male Stereo Audio - Black\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/griffin-technology-flat-aux-stereo-audio-cable-black/2182057.p?id=1218313331088&skuId=2182057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1308\\/1308097983\\/1308097983_sa.jpg\"}', 'upc' => '685387374410', 'provider' => 'bestbuy'],\n ['name' => \"En el Buzon de Tu Corazón - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/en-el-buzon-de-tu-corazon-cd/2182064.p?id=2760204&skuId=2182064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182064_sa.jpg\"}', 'upc' => '825646406098', 'provider' => 'bestbuy'],\n ['name' => \"Smoke and Mirrors [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smoke-and-mirrors-digipak-cd/2182073.p?id=2743739&skuId=2182073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182073_sa.jpg\"}', 'upc' => '075678684067', 'provider' => 'bestbuy'],\n ['name' => \"Flying Saucer Attack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flying-saucer-attack-cd/2182088.p?id=133908&skuId=2182088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182088_sa.jpg\"}', 'upc' => '783881001129', 'provider' => 'bestbuy'],\n ['name' => \"Through the Storm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/through-the-storm-cd/2182499.p?id=130980&skuId=2182499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182499.jpg\"}', 'upc' => '012414302724', 'provider' => 'bestbuy'],\n ['name' => \"Jams from the Heart [EP] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jams-from-the-heart-ep-ep-cd/2182541.p?id=189362&skuId=2182541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182541.jpg\"}', 'upc' => '093652345223', 'provider' => 'bestbuy'],\n ['name' => \"Twelve Shades of Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twelve-shades-of-light-cd/2182578.p?id=108407&skuId=2182578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182578_sa.jpg\"}', 'upc' => '099144100820', 'provider' => 'bestbuy'],\n ['name' => \"20 Golden Pieces of Patsy Cline - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-golden-pieces-of-patsy-cline-cd/2182612.p?id=169042&skuId=2182612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2182612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2182\\/2182612_sa.jpg\"}', 'upc' => '015668200327', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Cross - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-cross-cd/2183041.p?id=151975&skuId=2183041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183041.jpg\"}', 'upc' => '750442063827', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night & Sunday Morning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-sunday-morning-cd/2183050.p?id=114863&skuId=2183050&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183050', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183050_sa.jpg\"}', 'upc' => '750442900122', 'provider' => 'bestbuy'],\n ['name' => \"Forbidden Planet [Original Motion Picture... - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forbidden-planet-original-motion-picture-cd-original-soundtrack/2183112.p?id=82629&skuId=2183112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183112.jpg\"}', 'upc' => '052824000124', 'provider' => 'bestbuy'],\n ['name' => \"West African Instrumental Quintet, 1929 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-african-instrumental-quintet-1929-cd/2183577.p?id=103816&skuId=2183577&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183577_sa.jpg\"}', 'upc' => '008637501624', 'provider' => 'bestbuy'],\n ['name' => \"Roots of Juju, 1928 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roots-of-juju-1928-cd/2183595.p?id=87528&skuId=2183595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183595.jpg\"}', 'upc' => '008637501822', 'provider' => 'bestbuy'],\n ['name' => \"Caluza's Double Quartet, 1930 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caluzas-double-quartet-1930-cd/2183602.p?id=2472987&skuId=2183602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183602.jpg\"}', 'upc' => '008637501921', 'provider' => 'bestbuy'],\n ['name' => \"The Boogie Woogie Boys - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-boogie-woogie-boys-cd-various/2183693.p?id=179291&skuId=2183693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183693_sa.jpg\"}', 'upc' => '008637402129', 'provider' => 'bestbuy'],\n ['name' => \"Piano Blues: New Orleans Barrelhouse 1960 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-blues-new-orleans-barrelhouse-1960-cd/2183700.p?id=81059&skuId=2183700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183700_sa.jpg\"}', 'upc' => '008637405328', 'provider' => 'bestbuy'],\n ['name' => \"My Desire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-desire-cd/2183782.p?id=107706&skuId=2183782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183782.jpg\"}', 'upc' => '008781000127', 'provider' => 'bestbuy'],\n ['name' => \"John Fahey Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-fahey-christmas-album-cd/2183808.p?id=107452&skuId=2183808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183808.jpg\"}', 'upc' => '008781000424', 'provider' => 'bestbuy'],\n ['name' => \"Suite for the Columbia Gorge - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suite-for-the-columbia-gorge-cd/2183835.p?id=107649&skuId=2183835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183835.jpg\"}', 'upc' => '008781000721', 'provider' => 'bestbuy'],\n ['name' => \"Spirit Of Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spirit-of-christmas-cd/2183853.p?id=82994&skuId=2183853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183853.jpg\"}', 'upc' => '008781000929', 'provider' => 'bestbuy'],\n ['name' => \"El Rauncho Grundgé - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-rauncho-grundge-cd/2183871.p?id=135522&skuId=2183871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183871.jpg\"}', 'upc' => '008781001124', 'provider' => 'bestbuy'],\n ['name' => \"Have Mercy-Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/have-mercy-live-cd/2183880.p?id=87358&skuId=2183880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183880_sa.jpg\"}', 'upc' => '008781001223', 'provider' => 'bestbuy'],\n ['name' => \"Returning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/returning-cd/2183899.p?id=82993&skuId=2183899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183899.jpg\"}', 'upc' => '008781001322', 'provider' => 'bestbuy'],\n ['name' => \"Lead Me On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lead-me-on-cd/2183915.p?id=117457&skuId=2183915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183915_sa.jpg\"}', 'upc' => '008781001520', 'provider' => 'bestbuy'],\n ['name' => \"Give It Up to Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/give-it-up-to-love-cd/2183988.p?id=91054&skuId=2183988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2183988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2183\\/2183988_sa.jpg\"}', 'upc' => '092592111523', 'provider' => 'bestbuy'],\n ['name' => \"Still River - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-river-cd/2184013.p?id=81228&skuId=2184013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184013_sa.jpg\"}', 'upc' => '092592111820', 'provider' => 'bestbuy'],\n ['name' => \"Groovin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groovin-cd/2184166.p?id=64502&skuId=2184166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184166_sa.jpg\"}', 'upc' => '750507600325', 'provider' => 'bestbuy'],\n ['name' => \"Cachao y su Descarga - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cachao-y-su-descarga-cd/2184255.p?id=94094&skuId=2184255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184255.jpg\"}', 'upc' => '053561001320', 'provider' => 'bestbuy'],\n ['name' => \"Shamlet: Political Comedy Of Errors - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shamlet-political-comedy-of-errors-cd/2184424.p?id=76760&skuId=2184424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184424_sa.jpg\"}', 'upc' => '095632100624', 'provider' => 'bestbuy'],\n ['name' => \"Stand by Your Dan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stand-by-your-dan-cd/2184433.p?id=76762&skuId=2184433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184433_sa.jpg\"}', 'upc' => '095632100723', 'provider' => 'bestbuy'],\n ['name' => \"Georgie on My Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/georgie-on-my-mind-cd/2184442.p?id=76758&skuId=2184442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184442_sa.jpg\"}', 'upc' => '095632100822', 'provider' => 'bestbuy'],\n ['name' => \"Sheik, Rattle & Roll! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sheik-rattle-roll-cd/2184451.p?id=76761&skuId=2184451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184451_sa.jpg\"}', 'upc' => '095632100921', 'provider' => 'bestbuy'],\n ['name' => \"76 Bad Loans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/76-bad-loans-cd/2184460.p?id=76756&skuId=2184460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184460_sa.jpg\"}', 'upc' => '095632101027', 'provider' => 'bestbuy'],\n ['name' => \"Fools on the Hill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fools-on-the-hill-cd/2184479.p?id=156690&skuId=2184479&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184479', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184479_sa.jpg\"}', 'upc' => '095632101126', 'provider' => 'bestbuy'],\n ['name' => \"Joy of Sax - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joy-of-sax-cd/2184488.p?id=76764&skuId=2184488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184488_sa.jpg\"}', 'upc' => '095632101225', 'provider' => 'bestbuy'],\n ['name' => \"Lord of the Fries - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lord-of-the-fries-cd/2184497.p?id=156691&skuId=2184497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184497_sa.jpg\"}', 'upc' => '095632101423', 'provider' => 'bestbuy'],\n ['name' => \"Black Whip/Snake Rhythm Rock - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-whip-snake-rhythm-rock-vinyl/2184816.p?id=2398737&skuId=2184816&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184816', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184816_sa.jpg\"}', 'upc' => '029667274326', 'provider' => 'bestbuy'],\n ['name' => \"The Loop/New and Groovy [LP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-loop-new-and-groovy-lp-cd/2184978.p?id=2416754&skuId=2184978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2184978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2184\\/2184978.jpg\"}', 'upc' => '029667196123', 'provider' => 'bestbuy'],\n ['name' => \"In Europe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-europe-cd/2186093.p?id=1465325&skuId=2186093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186093_sa.jpg\"}', 'upc' => '027312100129', 'provider' => 'bestbuy'],\n ['name' => \"Pictures in a Frame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pictures-in-a-frame-cd/2186119.p?id=1465428&skuId=2186119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186119_sa.jpg\"}', 'upc' => '027312100327', 'provider' => 'bestbuy'],\n ['name' => \"Faces of Hope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faces-of-hope-cd/2186164.p?id=1465329&skuId=2186164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186164_sa.jpg\"}', 'upc' => '027312101027', 'provider' => 'bestbuy'],\n ['name' => \"Rainbow Gladiator - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rainbow-gladiator-cd/2186191.p?id=1465217&skuId=2186191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186191_sa.jpg\"}', 'upc' => '027312101621', 'provider' => 'bestbuy'],\n ['name' => \"Tom Varner Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tom-varner-quartet-cd/2186208.p?id=1465470&skuId=2186208&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186208', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186208_sa.jpg\"}', 'upc' => '027312101720', 'provider' => 'bestbuy'],\n ['name' => \"Schecter - Omen Extreme Floyd Rose 6-String Full-Size Electric Guitar - Vintage Sunburst\", 'description_short' => \"From our expanded online assortment; mahogany and quilted maple body; maple neck; 24-fret rosewood fingerboard; 2 Schecter Diamond Plus humbucking pickups; volume, tone and 3-way switch controls\", 'description_long' => \"From our expanded online assortment; mahogany and quilted maple body; maple neck; 24-fret rosewood fingerboard; 2 Schecter Diamond Plus humbucking pickups; volume, tone and 3-way switch controls\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/schecter-omen-extreme-floyd-rose-6-string-full-size-electric-guitar-vintage-sunburst/2186309.p?id=1218313329327&skuId=2186309', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186309_sa.jpg\"}', 'upc' => '081544700441', 'provider' => 'bestbuy'],\n ['name' => \"It Might as Well Be Spring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/it-might-as-well-be-spring-cd/2186388.p?id=1465642&skuId=2186388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312104028', 'provider' => 'bestbuy'],\n ['name' => \"Schecter - TSH-1 6-String Full-Size Electric Guitar - Red Reverse Burst\", 'description_short' => \"From our expanded online assortment; maple body; 3-piece maple neck; rosewood fingerboard; 22 frets\", 'description_long' => \"From our expanded online assortment; maple body; 3-piece maple neck; rosewood fingerboard; 22 frets\", 'price' => 549.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/schecter-tsh-1-6-string-full-size-electric-guitar-red-reverse-burst/2186432.p?id=1218313327675&skuId=2186432', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186432_sa.jpg\"}', 'upc' => '081544701127', 'provider' => 'bestbuy'],\n ['name' => \"Regeneration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/regeneration-cd/2186468.p?id=1465433&skuId=2186468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186468.jpg\"}', 'upc' => '027312105421', 'provider' => 'bestbuy'],\n ['name' => \"Dragonfly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dragonfly-cd/2186501.p?id=1465314&skuId=2186501&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186501', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186501_sa.jpg\"}', 'upc' => '027312105827', 'provider' => 'bestbuy'],\n ['name' => \"You Make Me Smile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-make-me-smile-cd/2186654.p?id=1465289&skuId=2186654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186654_sa.jpg\"}', 'upc' => '027312107623', 'provider' => 'bestbuy'],\n ['name' => \"Ebu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ebu-cd/2186752.p?id=1465244&skuId=2186752&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186752', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186752.jpg\"}', 'upc' => '027312108828', 'provider' => 'bestbuy'],\n ['name' => \"Mutant Variations - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mutant-variations-cd/2186789.p?id=1465228&skuId=2186789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186789_sa.jpg\"}', 'upc' => '027312109122', 'provider' => 'bestbuy'],\n ['name' => \"Not Yet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/not-yet-cd/2186878.p?id=1465235&skuId=2186878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186878_sa.jpg\"}', 'upc' => '027312110524', 'provider' => 'bestbuy'],\n ['name' => \"Verona Rag - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/verona-rag-cd/2186912.p?id=1465331&skuId=2186912&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186912', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312111026', 'provider' => 'bestbuy'],\n ['name' => \"Little Red Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-red-moon-cd/2186930.p?id=1465448&skuId=2186930&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186930', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186930_sa.jpg\"}', 'upc' => '027312111224', 'provider' => 'bestbuy'],\n ['name' => \"Salute to Pops, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salute-to-pops-vol-1-cd/2186967.p?id=1465443&skuId=2186967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2186967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2186\\/2186967_sa.jpg\"}', 'upc' => '027312111620', 'provider' => 'bestbuy'],\n ['name' => \"GoECOlife - 10-Sheet Microcut Paper Shredder\", 'description_short' => \"Up to 10 sheets per pass; cuts pieces to 0.2&quot; x 0.4&quot;; shred speed of up to 7&#039; per minute; GoECO energy-saving technology; carbon-neutral design; auto start/stop; pullout design; quiet operation\", 'description_long' => \"Up to 10 sheets per pass; cuts pieces to 0.2&quot; x 0.4&quot;; shred speed of up to 7&#039; per minute; GoECO energy-saving technology; carbon-neutral design; auto start/stop; pullout design; quiet operation\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goecolife-10-sheet-microcut-paper-shredder/2187005.p?id=1219070442778&skuId=2187005', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187005_500x500_sa.jpg\"}', 'upc' => '847502002541', 'provider' => 'bestbuy'],\n ['name' => \"Testees: The Complete Series [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/testees-the-complete-series-2-discs-dvd/2187034.p?id=2188325&skuId=2187034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187034_sa.jpg\"}', 'upc' => '741952679493', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man 2: Legend of the Grandmaster (Blu-ray Disc) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/ip-man-2-legend-of-the-grandmaster-blu-ray-disc-collectors-edition/2187043.p?id=2181504&skuId=2187043&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187043', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187043.jpg\"}', 'upc' => '812491012079', 'provider' => 'bestbuy'],\n ['name' => \"Waste Land (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waste-land-dvd/2187052.p?id=2171552&skuId=2187052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187052_sa.jpg\"}', 'upc' => '767685239308', 'provider' => 'bestbuy'],\n ['name' => \"Ip Man 2: Legend of the Grandmaster (DVD) (Collector's Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ip-man-2-legend-of-the-grandmaster-dvd-collectors-edition/2187061.p?id=2181504&skuId=2187061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187061_sa.jpg\"}', 'upc' => '812491012062', 'provider' => 'bestbuy'],\n ['name' => \"Down Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-town-cd/2187092.p?id=1465375&skuId=2187092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187092_sa.jpg\"}', 'upc' => '027312113129', 'provider' => 'bestbuy'],\n ['name' => \"Mingus' Sounds of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mingus-sounds-of-love-cd/2187190.p?id=1465380&skuId=2187190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187190_sa.jpg\"}', 'upc' => '027312114225', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather Ultrathin Snap-On Case for Apple® iPhone® SE, 5s and 5 - Mint Green\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; high-density, ultralight Plextonium frame; coated camera ring; snap-on design; soft-touch finish; low-profile design; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; high-density, ultralight Plextonium frame; coated camera ring; snap-on design; soft-touch finish; low-profile design; includes clear screen protector\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-ultrathin-snap-on-case-for-apple-iphone-se-5s-and-5-mint-green/2187192.p?id=1219070374734&skuId=2187192', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187192_sa.jpg\"}', 'upc' => '840076101122', 'provider' => 'bestbuy'],\n ['name' => \"I Get a Kick Out of Bu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-get-a-kick-out-of-bu-cd/2187314.p?id=1468238&skuId=2187314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187314.jpg\"}', 'upc' => '027312115529', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - Watson Folio Wallet for Apple® iPhone® 5c - Black\", 'description_short' => \"Compatible with Apple iPhone 5c; vegan leather material; microsuede interior lining; removable Plextonium hard shell case; 3 slots\", 'description_long' => \"Compatible with Apple iPhone 5c; vegan leather material; microsuede interior lining; removable Plextonium hard shell case; 3 slots\", 'price' => 44.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/incipio-watson-folio-wallet-for-apple-iphone-5c-black/2187339.p?id=1219070371585&skuId=2187339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187339_sa.jpg\"}', 'upc' => '840076102150', 'provider' => 'bestbuy'],\n ['name' => \"Liquid Dancers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liquid-dancers-cd/2187341.p?id=1465312&skuId=2187341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187341.jpg\"}', 'upc' => '027312115826', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Ultrathin Shell Case for Apple® iPhone® 5c - Silver\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium frame; inner EVA pad; volume-button protection; brushed-aluminum finish\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium frame; inner EVA pad; volume-button protection; brushed-aluminum finish\", 'price' => 29.99, 'sale_price' => 17.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-ultrathin-shell-case-for-apple-iphone-5c-silver/2187366.p?id=1219070374929&skuId=2187366', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187366', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187366_sa.jpg\"}', 'upc' => '840076102587', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather CF Ultrathin Shell Case for Apple® iPhone® 5c - Gold\", 'description_short' => \"Compatible with Apple iPhone 5c; high-density, ultralight Plextonium frame; radio-transparent material; snap-on design; carbon fiber finish; transparent sides\", 'description_long' => \"Compatible with Apple iPhone 5c; high-density, ultralight Plextonium frame; radio-transparent material; snap-on design; carbon fiber finish; transparent sides\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-cf-ultrathin-shell-case-for-apple-iphone-5c-gold/2187375.p?id=1219070379306&skuId=2187375', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187375_sa.jpg\"}', 'upc' => '840076102648', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather CLEAR Ultralight Snap-On Case for Apple® iPhone® 5c - Clear Purple\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium shell; snap-on design; lightweight, low-profile construction; translucent design\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium shell; snap-on design; lightweight, low-profile construction; translucent design\", 'price' => 24.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-feather-clear-ultralight-snap-on-case-for-apple-iphone-5c-clear-purple/2187384.p?id=1219070380927&skuId=2187384', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187384', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187384_sa.jpg\"}', 'upc' => '840076102525', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - [OVRMLD] Case for Apple® iPhone® 5c - Blue/Lime\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium shell; impact-resistant Flex2O core; comolded construction; wrap-around design; matte, soft-touch finish\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium shell; impact-resistant Flex2O core; comolded construction; wrap-around design; matte, soft-touch finish\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-ovrmld-case-for-apple-iphone-5c-blue-lime/2187393.p?id=1219070376573&skuId=2187393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187393_sa.jpg\"}', 'upc' => '840076102778', 'provider' => 'bestbuy'],\n ['name' => \"Flute Talk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flute-talk-cd/2187412.p?id=1465268&skuId=2187412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187412_sa.jpg\"}', 'upc' => '027312116526', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - HYDE Ultrathin Shell Case For Apple® iPhone® 5c - Red\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium frame; soft inner cushion; volume-button protection; ultrathin, ultralightweight design; textile finish\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium frame; soft inner cushion; volume-button protection; ultrathin, ultralightweight design; textile finish\", 'price' => 29.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/incipio-hyde-ultrathin-shell-case-for-apple-iphone-5c-red/2187417.p?id=1219070379176&skuId=2187417', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187417_sa.jpg\"}', 'upc' => '840076102426', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - feather SHINE Ultrathin Shell Case for Apple® iPhone® 5s - Metallic Orange\", 'description_short' => \"Compatible with Apple iPhone 5s; high-density, ultralight Plextonium frame; radio-transparent material; brushed-aluminum finish; low-profile design; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone 5s; high-density, ultralight Plextonium frame; radio-transparent material; brushed-aluminum finish; low-profile design; includes clear screen protector\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-feather-shine-ultrathin-shell-case-for-apple-iphone-5s-metallic-orange/2187426.p?id=1219070374669&skuId=2187426', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187426_sa.jpg\"}', 'upc' => '840076101993', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - LGND Hard Shell Folio Case for Apple® iPhone® SE, 5s and 5 - Navy Blue\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; interior microsuede lining; doubles as a stand; steel-mesh earpiece access; textured front face; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; interior microsuede lining; doubles as a stand; steel-mesh earpiece access; textured front face; includes clear screen protector\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-lgnd-hard-shell-folio-case-for-apple-iphone-se-5s-and-5-navy-blue/2187435.p?id=1219070382081&skuId=2187435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187435_sa.jpg\"}', 'upc' => '840076102068', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - NGP Case for Apple® iPhone® 5c - Translucent Mercury\", 'description_short' => \"Compatible with Apple iPhone 5c; soft shell Flex2O material; wrap-around design; smooth matte finish\", 'description_long' => \"Compatible with Apple iPhone 5c; soft shell Flex2O material; wrap-around design; smooth matte finish\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-ngp-case-for-apple-iphone-5c-translucent-mercury/2187444.p?id=1219070375784&skuId=2187444', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187444_sa.jpg\"}', 'upc' => '840076102303', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - [OVRMLD] Case for Apple® iPhone® SE, 5s and 5 - Pink/Yellow\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium shell; impact-resistant NGP core; comolded construction; wrap-around design; matte, soft-touch finish\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium shell; impact-resistant NGP core; comolded construction; wrap-around design; matte, soft-touch finish\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-ovrmld-case-for-apple-iphone-se-5s-and-5-pink-yellow/2187453.p?id=1219070378463&skuId=2187453', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309760732\\/1309760732_sa.jpg\"}', 'upc' => '840076101252', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - BRIG Case for Apple® iPhone® 5c - Pink, White\", 'description_short' => \"iPhone - Pink, White - Checkered Pattern, Two-tone\", 'description_long' => \"iPhone - Pink, White - Checkered Pattern, Two-tone\", 'price' => 29.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/incipio-brig-case-for-apple-iphone-5c-pink-white/2187462.p?id=1219070378730&skuId=2187462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187462_sa.jpg\"}', 'upc' => '840076102280', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - STOWAWAY Card Case for Apple® iPhone® SE, 5s and 5 - White/Lime\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; built-in Kickstand; rigid Plextonium frame; semirigid NGP soft shell core; rear card compartment; gloss finish; includes rear film and screen protectors\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; built-in Kickstand; rigid Plextonium frame; semirigid NGP soft shell core; rear card compartment; gloss finish; includes rear film and screen protectors\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-stowaway-card-case-for-apple-iphone-se-5s-and-5-white-lime/2187471.p?id=1219070372567&skuId=2187471', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309800971\\/1309800971_sa.jpg\"}', 'upc' => '840076101313', 'provider' => 'bestbuy'],\n ['name' => \"Misterioso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/misterioso-cd/2187494.p?id=1465394&skuId=2187494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312117424', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - MARCO Hard Shell Pouch for Apple® iPhone® SE, 5s and 5 - Obsidian Black/Gold\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; interior microsuede lining; internal NGP inserts; custom speaker openings; soft-touch finish; chrome detailing\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; interior microsuede lining; internal NGP inserts; custom speaker openings; soft-touch finish; chrome detailing\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-marco-hard-shell-pouch-for-apple-iphone-se-5s-and-5-obsidian-black-gold/2187506.p?id=1219070374273&skuId=2187506', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187506_sa.jpg\"}', 'upc' => '840076102044', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - EDGE PRO Hard Shell Slider Case for Apple® iPhone® 5 and 5s - Purple/Pink\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; semirigid NGP soft shell core; 2-part, comolded slider design; play-through design; gloss frame finish\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; semirigid NGP soft shell core; 2-part, comolded slider design; play-through design; gloss frame finish\", 'price' => 34.99, 'sale_price' => 25.99, 'url' => 'http://www.bestbuy.com/site/incipio-edge-pro-hard-shell-slider-case-for-apple-iphone-5-and-5s-purple-pink/2187515.p?id=1219070381785&skuId=2187515', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187515', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187515_sa.jpg\"}', 'upc' => '840076101184', 'provider' => 'bestbuy'],\n ['name' => \"Epistrophy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epistrophy-cd/2187519.p?id=1465236&skuId=2187519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187519_sa.jpg\"}', 'upc' => '027312117721', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - EDGE SHINE Slider Case for Apple® iPhone® 5 and 5s - Metallic Pink\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium material; 2-piece sliding design; brushed-aluminum finish\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium material; 2-piece sliding design; brushed-aluminum finish\", 'price' => 34.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/incipio-edge-shine-slider-case-for-apple-iphone-5-and-5s-metallic-pink/2187524.p?id=1219070382242&skuId=2187524', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187524_sa.jpg\"}', 'upc' => '840076102099', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - NGP Case for Apple® iPhone® SE, 5s and 5 - Translucent Blue\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; semirigid NGP soft shell; wrap-around design; smooth matte finish; includes screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; semirigid NGP soft shell; wrap-around design; smooth matte finish; includes screen protector\", 'price' => 19.99, 'sale_price' => 13.99, 'url' => 'http://www.bestbuy.com/site/incipio-ngp-case-for-apple-iphone-se-5s-and-5-translucent-blue/2187542.p?id=1219070374006&skuId=2187542&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187542', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309760787\\/1309760787_sa.jpg\"}', 'upc' => '840076101917', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - FREQUENCY Case for Apple® iPhone® SE, 5s and 5 - Translucent Yellow\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; semirigid NGP soft shell; comolded camera ring; low-profile fit; wrap-around design; matte/gloss graphic finish; includes clear screen protector and video stand\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; semirigid NGP soft shell; comolded camera ring; low-profile fit; wrap-around design; matte/gloss graphic finish; includes clear screen protector and video stand\", 'price' => 24.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/incipio-frequency-case-for-apple-iphone-se-5s-and-5-translucent-yellow/2187551.p?id=1219070381935&skuId=2187551', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309760770\\/1309760770_sa.jpg\"}', 'upc' => '840076101887', 'provider' => 'bestbuy'],\n ['name' => \"Live at Verona Jazz Festival: 1988 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-verona-jazz-festival-1988-cd/2187573.p?id=1465262&skuId=2187573&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187573', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187573_sa.jpg\"}', 'upc' => '027312118322', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro SHINE Case for Apple® iPhone® 5c - Silver/Black\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium outer shell; dLAST inner layer; radio-transparent material; brushed-aluminum finish\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium outer shell; dLAST inner layer; radio-transparent material; brushed-aluminum finish\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-shine-case-for-apple-iphone-5c-silver-black/2187597.p?id=1219070373086&skuId=2187597', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187597_sa.jpg\"}', 'upc' => '840076102716', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - DualPro Case for Apple® iPhone® 5c - Pink/Gray\", 'description_short' => \"Compatible with Apple iPhone 5c; rigid Plextonium outer shell; dLAST interior shell; 2-piece design; soft-touch matte finish\", 'description_long' => \"Compatible with Apple iPhone 5c; rigid Plextonium outer shell; dLAST interior shell; 2-piece design; soft-touch matte finish\", 'price' => 29.99, 'sale_price' => 22.99, 'url' => 'http://www.bestbuy.com/site/incipio-dualpro-case-for-apple-iphone-5c-pink-gray/2187606.p?id=1219070377168&skuId=2187606', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187606_sa.jpg\"}', 'upc' => '840076102709', 'provider' => 'bestbuy'],\n ['name' => \"Valve, No. 10 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/valve-no-10-cd/2187608.p?id=1468237&skuId=2187608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187608_sa.jpg\"}', 'upc' => '027312118629', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - FAXION Hard Shell Case for Apple® iPhone® SE, 5s and 5 - Blue/Hazy Gray\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; semirigid NGP soft shell core; expansion joint; comolded, 1-part design; gloss finish; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; rigid Plextonium frame; semirigid NGP soft shell core; expansion joint; comolded, 1-part design; gloss finish; includes clear screen protector\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-faxion-hard-shell-case-for-apple-iphone-se-5s-and-5-blue-hazy-gray/2187615.p?id=1219070381850&skuId=2187615', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309760718\\/1309760718_sa.jpg\"}', 'upc' => '840076101153', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - KICKSNAP Case for Apple® iPhone® SE, 5s and 5 - Red/Gray\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; built-in Kickstand; rigid Plextonium frame; semirigid NGP soft shell core; comolded, 1-part design with raised core; gloss finish; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; built-in Kickstand; rigid Plextonium frame; semirigid NGP soft shell core; comolded, 1-part design with raised core; gloss finish; includes clear screen protector\", 'price' => 34.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/incipio-kicksnap-case-for-apple-iphone-se-5s-and-5-red-gray/2187624.p?id=1219070375914&skuId=2187624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309760794\\/1309760794_sa.jpg\"}', 'upc' => '840076101962', 'provider' => 'bestbuy'],\n ['name' => \"Notes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/notes-cd/2187635.p?id=1465242&skuId=2187635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187635_sa.jpg\"}', 'upc' => '027312119022', 'provider' => 'bestbuy'],\n ['name' => \"Incipio - EDGE Hard Shell Slider Case for Apple® iPhone® 5 and 5s - Orange\", 'description_short' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; 2-part sliding design; soft-touch finish; includes clear screen protector\", 'description_long' => \"Compatible with Apple iPhone 5 and 5s; rigid Plextonium frame; 2-part sliding design; soft-touch finish; includes clear screen protector\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incipio-edge-hard-shell-slider-case-for-apple-iphone-5-and-5s-orange/2187642.p?id=1219070379832&skuId=2187642', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187642_sa.jpg\"}', 'upc' => '840076102082', 'provider' => 'bestbuy'],\n ['name' => \"The Tree - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tree-cd/2187671.p?id=1465363&skuId=2187671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187671_sa.jpg\"}', 'upc' => '027312119527', 'provider' => 'bestbuy'],\n ['name' => \"Abracadabra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/abracadabra-cd/2187733.p?id=1465591&skuId=2187733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312120127', 'provider' => 'bestbuy'],\n ['name' => \"More Monk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-monk-cd/2187797.p?id=1465352&skuId=2187797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312121025', 'provider' => 'bestbuy'],\n ['name' => \"The Human Factor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-human-factor-cd/2187804.p?id=1465227&skuId=2187804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187804.jpg\"}', 'upc' => '027312121223', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Stuff Smith - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-stuff-smith-cd/2187822.p?id=1468246&skuId=2187822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187822_sa.jpg\"}', 'upc' => '027312121629', 'provider' => 'bestbuy'],\n ['name' => \"Lenovo - Iomega 4-Bay External Network Storage (NAS) - Black\", 'description_short' => \"Gigabit Ethernet connectivity; Marvell Armada XP dual-core processor; 512MB DDR3 SDRAM; EMC LifeLine operating system; LenovoEMC Personal Cloud technology; iSCSI block access\", 'description_long' => \"Gigabit Ethernet connectivity; Marvell Armada XP dual-core processor; 512MB DDR3 SDRAM; EMC LifeLine operating system; LenovoEMC Personal Cloud technology; iSCSI block access\", 'price' => 269.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lenovo-iomega-4-bay-external-network-storage-nas-black/2187842.p?id=1219070172654&skuId=2187842', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187842_sa.jpg\"}', 'upc' => '887770963496', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Commuter Series Wallet Case for Samsung Galaxy S 4 Cell Phones - Primrose\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; polycarbonate and silicone materials; inner slipcover; sliding drawer; includes self-adhering screen protector\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; polycarbonate and silicone materials; inner slipcover; sliding drawer; includes self-adhering screen protector\", 'price' => 44.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/otterbox-commuter-series-wallet-case-for-samsung-galaxy-s-4-cell-phones-primrose/2187933.p?id=1219070174044&skuId=2187933', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187933', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187933_sa.jpg\"}', 'upc' => '660543025733', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for LG G2 Cell Phones (Sprint, T-Cell) - Black\", 'description_short' => \"Compatible with LG G2 cell phones (Sprint, T-cell); polycarbonate shell; silicone skin; thermal-formed clear membrane; play-through design\", 'description_long' => \"Compatible with LG G2 cell phones (Sprint, T-cell); polycarbonate shell; silicone skin; thermal-formed clear membrane; play-through design\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-lg-g2-cell-phones-sprint-t-cell-black/2187942.p?id=1219070175342&skuId=2187942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187942_sa.jpg\"}', 'upc' => '660543026754', 'provider' => 'bestbuy'],\n ['name' => \"R.I.P.D. (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/r-i-p-d-dvd/2187951.p?id=2755392&skuId=2187951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187951_sa.jpg\"}', 'upc' => '025192123672', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2187975.p?id=1465668&skuId=2187975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '027312123524', 'provider' => 'bestbuy'],\n ['name' => \"R.I.P.D. (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => 7.99, 'url' => 'http://www.bestbuy.com/site/r-i-p-d-blu-ray-disc-2-disc-ultraviolet-digital-copy/2187979.p?id=2755392&skuId=2187979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187979_sa.jpg\"}', 'upc' => '025192123665', 'provider' => 'bestbuy'],\n ['name' => \"R.I.P.D. (Blu-ray 3D) (3 Disc) (3-D) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/r-i-p-d-blu-ray-3d-3-disc-3-d-ultraviolet-digital-copy/2187988.p?id=2755392&skuId=2187988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187988_sa.jpg\"}', 'upc' => '025192205804', 'provider' => 'bestbuy'],\n ['name' => \"Sankofa/Rear Garde - CD - Italy\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sankofa-rear-garde-cd-italy/2187993.p?id=1465246&skuId=2187993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187993_sa.jpg\"}', 'upc' => '027312123821', 'provider' => 'bestbuy'],\n ['name' => \"Vornado - 154 Tower Circulator Fan - Black\", 'description_short' => \"V-Flow technology; 4 speeds; powerful motor; contoured air outlets; LED timer; whisper-quiet operation\", 'description_long' => \"V-Flow technology; 4 speeds; powerful motor; contoured air outlets; LED timer; whisper-quiet operation\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vornado-154-tower-circulator-fan-black/2187997.p?id=1219070440486&skuId=2187997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2187997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2187\\/2187997_sa.jpg\"}', 'upc' => '043765006696', 'provider' => 'bestbuy'],\n ['name' => \"Vornado - 673 Air Circulator Fan - Black\", 'description_short' => \"Vortex technology; 3-speed control knob; whisper-quiet operation; removable grille\", 'description_long' => \"Vortex technology; 3-speed control knob; whisper-quiet operation; removable grille\", 'price' => 64.99, 'sale_price' => 45.99, 'url' => 'http://www.bestbuy.com/site/vornado-673-air-circulator-fan-black/2188004.p?id=1219070442691&skuId=2188004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188004_500x500_sa.jpg\"}', 'upc' => '043765005675', 'provider' => 'bestbuy'],\n ['name' => \"Vornado - Zippi Personal Fan - Black\", 'description_short' => \"2 speeds; adjustable head; soft nylon blades; powerful motor; space-saving, fold-down design; whisper-quiet operation\", 'description_long' => \"2 speeds; adjustable head; soft nylon blades; powerful motor; space-saving, fold-down design; whisper-quiet operation\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vornado-zippi-personal-fan-black/2188013.p?id=1219070438653&skuId=2188013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188013_sa.jpg\"}', 'upc' => '043765004265', 'provider' => 'bestbuy'],\n ['name' => \"Seasons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seasons-cd/2188046.p?id=1465634&skuId=2188046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188046_sa.jpg\"}', 'upc' => '027312124521', 'provider' => 'bestbuy'],\n ['name' => \"Inside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inside-cd/2188126.p?id=1465309&skuId=2188126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188126.jpg\"}', 'upc' => '027312125429', 'provider' => 'bestbuy'],\n ['name' => \"My Panamanian Friend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-panamanian-friend-cd/2188153.p?id=1465676&skuId=2188153&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188153', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188153_sa.jpg\"}', 'upc' => '027312126525', 'provider' => 'bestbuy'],\n ['name' => \"UFC 163: Aldo vs. Korean Zombie (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ufc-163-aldo-vs-korean-zombie-dvd-2-disc/2188155.p?id=2752384&skuId=2188155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188155_sa.jpg\"}', 'upc' => '013132602899', 'provider' => 'bestbuy'],\n ['name' => \"The Underground Railroad to My Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-underground-railroad-to-my-heart-cd/2188162.p?id=1465661&skuId=2188162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188162_sa.jpg\"}', 'upc' => '027312126723', 'provider' => 'bestbuy'],\n ['name' => \"Lovelace (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovelace-dvd/2188164.p?id=2757238&skuId=2188164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188164_sa.jpg\"}', 'upc' => '013132609126', 'provider' => 'bestbuy'],\n ['name' => \"Remembering the Moment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remembering-the-moment-cd/2188180.p?id=1465666&skuId=2188180&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188180', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188180_sa.jpg\"}', 'upc' => '027312127829', 'provider' => 'bestbuy'],\n ['name' => \"Lovelace (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovelace-blu-ray-disc/2188182.p?id=2757238&skuId=2188182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188182_sa.jpg\"}', 'upc' => '013132609140', 'provider' => 'bestbuy'],\n ['name' => \"Turbo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-dvd/2188191.p?id=2763139&skuId=2188191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188191_sa.jpg\"}', 'upc' => '024543870425', 'provider' => 'bestbuy'],\n ['name' => \"Prophecy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/prophecy-cd/2188206.p?id=1465675&skuId=2188206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188206_sa.jpg\"}', 'upc' => '027312128727', 'provider' => 'bestbuy'],\n ['name' => \"Lampi (Lightnings) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lampi-lightnings-cd/2188215.p?id=2305357&skuId=2188215&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188215', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188215.jpg\"}', 'upc' => '027312129021', 'provider' => 'bestbuy'],\n ['name' => \"Rockin' the Juke Joint Down - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-the-juke-joint-down-cd/2188251.p?id=1446313&skuId=2188251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188251.jpg\"}', 'upc' => '739788490122', 'provider' => 'bestbuy'],\n ['name' => \"The Oil Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-oil-man-cd/2188260.p?id=1446315&skuId=2188260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188260_sa.jpg\"}', 'upc' => '739788491020', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Prowler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-prowler-cd/2188279.p?id=1536261&skuId=2188279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188279.jpg\"}', 'upc' => '739788491426', 'provider' => 'bestbuy'],\n ['name' => \"Be Careful How You Vote - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/be-careful-how-you-vote-cd/2188288.p?id=1565686&skuId=2188288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188288_sa.jpg\"}', 'upc' => '739788491525', 'provider' => 'bestbuy'],\n ['name' => \"Turbo (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-blu-ray-disc-2-disc/2188301.p?id=2763139&skuId=2188301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188301_sa.jpg\"}', 'upc' => '024543889489', 'provider' => 'bestbuy'],\n ['name' => \"Tell My Story Movin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tell-my-story-movin-cd/2188313.p?id=1450871&skuId=2188313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188313.jpg\"}', 'upc' => '739788491921', 'provider' => 'bestbuy'],\n ['name' => \"Turbo (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-blu-ray-disc-2-disc-ultraviolet-digital-copy/2188329.p?id=2763139&skuId=2188329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188329_sa.jpg\"}', 'upc' => '024543870814', 'provider' => 'bestbuy'],\n ['name' => \"Delta Bluesman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delta-bluesman-cd/2188331.p?id=1450870&skuId=2188331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188331_sa.jpg\"}', 'upc' => '739788492225', 'provider' => 'bestbuy'],\n ['name' => \"Paranoia (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paranoia-dvd/2188338.p?id=2767059&skuId=2188338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188338_sa.jpg\"}', 'upc' => '024543861898', 'provider' => 'bestbuy'],\n ['name' => \"Turbo (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-dvd/2188347.p?id=2763139&skuId=2188347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188347_sa.jpg\"}', 'upc' => '024543870371', 'provider' => 'bestbuy'],\n ['name' => \"Turbo (Blu-ray 3D) (3 Disc) (3-D) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbo-blu-ray-3d-3-disc-3-d-ultraviolet-digital-copy/2188356.p?id=2763139&skuId=2188356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188356_sa.jpg\"}', 'upc' => '024543870906', 'provider' => 'bestbuy'],\n ['name' => \"Wiggin' Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wiggin-out-cd/2188368.p?id=1446311&skuId=2188368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188368.jpg\"}', 'upc' => '739788492621', 'provider' => 'bestbuy'],\n ['name' => \"Tender Shepherd - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tender-shepherd-cd/2188590.p?id=96836&skuId=2188590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188590_sa.jpg\"}', 'upc' => '090167011223', 'provider' => 'bestbuy'],\n ['name' => \"A Closer Walk With Thee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-closer-walk-with-thee-cd/2188643.p?id=105567&skuId=2188643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188643_sa.jpg\"}', 'upc' => '090167011728', 'provider' => 'bestbuy'],\n ['name' => \"Zebra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zebra-cd/2188698.p?id=249750&skuId=2188698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188698_sa.jpg\"}', 'upc' => '710697222622', 'provider' => 'bestbuy'],\n ['name' => \"Magnolia Jazz Band & Art Hodes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magnolia-jazz-band-art-hodes-cd/2188787.p?id=288201&skuId=2188787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188787_sa.jpg\"}', 'upc' => '762247517122', 'provider' => 'bestbuy'],\n ['name' => \"Auf Wiedersehen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/auf-wiedersehen-cd/2188796.p?id=288247&skuId=2188796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188796_sa.jpg\"}', 'upc' => '762247531623', 'provider' => 'bestbuy'],\n ['name' => \"From New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-new-orleans-cd/2188803.p?id=288236&skuId=2188803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188803_sa.jpg\"}', 'upc' => '762247531920', 'provider' => 'bestbuy'],\n ['name' => \"Hooked on Ragtime, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-on-ragtime-vol-1-cd/2188812.p?id=288197&skuId=2188812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188812_sa.jpg\"}', 'upc' => '762247532125', 'provider' => 'bestbuy'],\n ['name' => \"Magnify Him - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magnify-him-cd/2188867.p?id=95523&skuId=2188867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188867_sa.jpg\"}', 'upc' => '048021801121', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2188876.p?id=187637&skuId=2188876&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2188876', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2188\\/2188876.jpg\"}', 'upc' => '048021801220', 'provider' => 'bestbuy'],\n ['name' => \"Bean and Ben (1944-1945) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bean-and-ben-1944-1945-cd/2189036.p?id=1410710&skuId=2189036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189036.jpg\"}', 'upc' => '008637200428', 'provider' => 'bestbuy'],\n ['name' => \"Valaida, Vol. 2: 1935-1940 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/valaida-vol-2-1935-1940-cd/2189143.p?id=1399708&skuId=2189143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189143_sa.jpg\"}', 'upc' => '008637201821', 'provider' => 'bestbuy'],\n ['name' => \"1942-1944 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1942-1944-cd/2189152.p?id=1396570&skuId=2189152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189152_sa.jpg\"}', 'upc' => '008637201920', 'provider' => 'bestbuy'],\n ['name' => \"Don Baretto, Vol. 2 (1935-1936) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-baretto-vol-2-1935-1936-cd/2189161.p?id=1415329&skuId=2189161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189161_sa.jpg\"}', 'upc' => '008637202026', 'provider' => 'bestbuy'],\n ['name' => \"Hot Music from Cuba 1907-1936 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-music-from-cuba-1907-1936-cd-various/2189198.p?id=1578194&skuId=2189198&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189198', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189198_sa.jpg\"}', 'upc' => '008637202323', 'provider' => 'bestbuy'],\n ['name' => \"San Francisco Jazz 1930-1932: The Flexo... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/san-francisco-jazz-1930-1932-the-flexo-cd-various/2189214.p?id=1396572&skuId=2189214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189214_sa.jpg\"}', 'upc' => '008637202521', 'provider' => 'bestbuy'],\n ['name' => \"1936-1937 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-1937-cd/2189223.p?id=1396629&skuId=2189223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189223_sa.jpg\"}', 'upc' => '008637202729', 'provider' => 'bestbuy'],\n ['name' => \"1931-1937 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1931-1937-cd/2189250.p?id=1531423&skuId=2189250&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189250', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189250_sa.jpg\"}', 'upc' => '008637203122', 'provider' => 'bestbuy'],\n ['name' => \"Don Baretto 1939-1943 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/don-baretto-1939-1943-cd/2189296.p?id=1578197&skuId=2189296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189296_sa.jpg\"}', 'upc' => '008637203627', 'provider' => 'bestbuy'],\n ['name' => \"1931-1934, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1931-1934-vol-2-cd/2189321.p?id=1416286&skuId=2189321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189321_sa.jpg\"}', 'upc' => '008637204129', 'provider' => 'bestbuy'],\n ['name' => \"Very First Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-first-recordings-cd/2189376.p?id=282372&skuId=2189376&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189376', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189376_sa.jpg\"}', 'upc' => '762247101024', 'provider' => 'bestbuy'],\n ['name' => \"Oxford Series, Vol. 10 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oxford-series-vol-10-cd/2189385.p?id=290676&skuId=2189385&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189385', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189385.jpg\"}', 'upc' => '762247103028', 'provider' => 'bestbuy'],\n ['name' => \"New York Town Hall 1947 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-town-hall-1947-cd/2189394.p?id=290669&skuId=2189394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189394_sa.jpg\"}', 'upc' => '762247104629', 'provider' => 'bestbuy'],\n ['name' => \"The Dance Hall Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dance-hall-years-cd/2189401.p?id=290675&skuId=2189401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189401_sa.jpg\"}', 'upc' => '762247104827', 'provider' => 'bestbuy'],\n ['name' => \"At Herbert Otto's Party (1949) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-herbert-ottos-party-1949-cd/2189410.p?id=154509&skuId=2189410&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189410', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189410_sa.jpg\"}', 'upc' => '762247107422', 'provider' => 'bestbuy'],\n ['name' => \"The Classic Ellis Marsalis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-classic-ellis-marsalis-cd/2189544.p?id=231875&skuId=2189544&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189544', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189544_sa.jpg\"}', 'upc' => '029667011624', 'provider' => 'bestbuy'],\n ['name' => \"Roots of Modern Jazz: The 1948 Sensation... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roots-of-modern-jazz-the-1948-sensation-cd-various/2189553.p?id=179085&skuId=2189553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2189553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2189\\/2189553_sa.jpg\"}', 'upc' => '029667011723', 'provider' => 'bestbuy'],\n ['name' => \"Every Day (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/every-day-dvd/2190138.p?id=2181187&skuId=2190138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190138_sa.jpg\"}', 'upc' => '014381687026', 'provider' => 'bestbuy'],\n ['name' => \"The Resident (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-resident-dvd/2190147.p?id=2181192&skuId=2190147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190147_sa.jpg\"}', 'upc' => '014381702828', 'provider' => 'bestbuy'],\n ['name' => \"Relaxation Body, Mind & Spirit [Box] [Box] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 41.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relaxation-body-mind-spirit-box-box-various-cd/2190159.p?id=184161&skuId=2190159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190159.jpg\"}', 'upc' => '071083300028', 'provider' => 'bestbuy'],\n ['name' => \"Rhyme and Punishment (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhyme-and-punishment-dvd/2190165.p?id=2181181&skuId=2190165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190165_sa.jpg\"}', 'upc' => '014381486827', 'provider' => 'bestbuy'],\n ['name' => \"50 Irish Pub Sing A Longs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/50-irish-pub-sing-a-longs-cd/2190364.p?id=1834262&skuId=2190364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190364_sa.jpg\"}', 'upc' => '071083371028', 'provider' => 'bestbuy'],\n ['name' => \"Savvy Show Stoppers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/savvy-show-stoppers-cd/2190550.p?id=98451&skuId=2190550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190550_sa.jpg\"}', 'upc' => '723248100928', 'provider' => 'bestbuy'],\n ['name' => \"Sport Fishin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sport-fishin-cd/2190603.p?id=98452&skuId=2190603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190603.jpg\"}', 'upc' => '723248101727', 'provider' => 'bestbuy'],\n ['name' => \"The Longest Line [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-longest-line-ep-cd/2190827.p?id=93483&skuId=2190827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190827_sa.jpg\"}', 'upc' => '751097050323', 'provider' => 'bestbuy'],\n ['name' => \"Daily Grind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/daily-grind-cd/2190845.p?id=93461&skuId=2190845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190845_sa.jpg\"}', 'upc' => '751097050729', 'provider' => 'bestbuy'],\n ['name' => \"Don't Turn Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-turn-away-cd/2190863.p?id=81864&skuId=2190863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2190863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2190\\/2190863.jpg\"}', 'upc' => '751097051528', 'provider' => 'bestbuy'],\n ['name' => \"Google Play - $15 Gift Cards (3-Pack)\", 'description_short' => \"Compatible with Google Play content on the Web and most tablets and cell phones with an Android operating system; redeemable for music, movies, books, apps and more; includes 3 $15 gift cards\", 'description_long' => \"Compatible with Google Play content on the Web and most tablets and cell phones with an Android operating system; redeemable for music, movies, books, apps and more; includes 3 $15 gift cards\", 'price' => 45, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/google-play-15-gift-cards-3-pack/2191001.p?id=1219531553443&skuId=2191001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191001_sa.jpg\"}', 'upc' => '799366317401', 'provider' => 'bestbuy'],\n ['name' => \"The Wonderful 101 - PRE-OWNED - Nintendo Wii U\", 'description_short' => \"There&#039;s no &quot;I&quot; in superhero\", 'description_long' => \"There&#039;s no &quot;I&quot; in superhero\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-wonderful-101-pre-owned-nintendo-wii-u/2191074.p?id=1219070173111&skuId=2191074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191074_sa.jpg\"}', 'upc' => '799007835592', 'provider' => 'bestbuy'],\n ['name' => \"LEGO Battles: Ninjago - Nintendo DS\", 'description_short' => \"Put your ninja skills to the ultimate test\", 'description_long' => \"Put your ninja skills to the ultimate test\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lego-battles-ninjago-nintendo-ds/2191085.p?id=1218313319052&skuId=2191085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191085_sa.jpg\"}', 'upc' => '883929172184', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-blu-ray-disc/2191094.p?id=2193393&skuId=2191094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191094_sa.jpg\"}', 'upc' => '025192047701', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-dvd/2191119.p?id=2193393&skuId=2191119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191119_sa.jpg\"}', 'upc' => '025192047695', 'provider' => 'bestbuy'],\n ['name' => \"From the Cradle to the Grave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-cradle-to-the-grave-cd/2191130.p?id=100703&skuId=2191130&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191130', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191130_sa.jpg\"}', 'upc' => '718750702821', 'provider' => 'bestbuy'],\n ['name' => \"Worlds Apart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-apart-cd/2191149.p?id=2151385&skuId=2191149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191149_sa.jpg\"}', 'upc' => '718750735225', 'provider' => 'bestbuy'],\n ['name' => \"29:29 Split Vision - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2929-split-vision-cd/2191167.p?id=2151384&skuId=2191167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191167_sa.jpg\"}', 'upc' => '718750735423', 'provider' => 'bestbuy'],\n ['name' => \"Paint as a Fragrance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paint-as-a-fragrance-cd/2191309.p?id=97027&skuId=2191309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191309_sa.jpg\"}', 'upc' => '723248200222', 'provider' => 'bestbuy'],\n ['name' => \"Old School - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-school-cd/2191327.p?id=98367&skuId=2191327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191327.jpg\"}', 'upc' => '723248200420', 'provider' => 'bestbuy'],\n ['name' => \"Drive Like Jehu - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/drive-like-jehu-cd/2191354.p?id=80977&skuId=2191354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191354_sa.jpg\"}', 'upc' => '723248200727', 'provider' => 'bestbuy'],\n ['name' => \"Sophomore Jinx! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sophomore-jinx-cd/2191372.p?id=93897&skuId=2191372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191372.jpg\"}', 'upc' => '723248200925', 'provider' => 'bestbuy'],\n ['name' => \"Shrunken Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shrunken-head-cd/2191443.p?id=79991&skuId=2191443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191443_sa.jpg\"}', 'upc' => '723248202424', 'provider' => 'bestbuy'],\n ['name' => \"Amazing Undersea Adventures of Aqua Kitty and... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amazing-undersea-adventures-of-aqua-kitty-and-cd/2191470.p?id=85159&skuId=2191470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191470_sa.jpg\"}', 'upc' => '723248202721', 'provider' => 'bestbuy'],\n ['name' => \"Out the Shizzy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-the-shizzy-cd/2191489.p?id=98369&skuId=2191489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191489.jpg\"}', 'upc' => '723248202820', 'provider' => 'bestbuy'],\n ['name' => \"The Chief Assassin to the Sinister - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chief-assassin-to-the-sinister-cd/2191498.p?id=101798&skuId=2191498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191498.jpg\"}', 'upc' => '723248203025', 'provider' => 'bestbuy'],\n ['name' => \"Home Improvements - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-improvements-cd/2191504.p?id=110590&skuId=2191504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191504.jpg\"}', 'upc' => '723248203223', 'provider' => 'bestbuy'],\n ['name' => \"Very, Very Powerful Motor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-very-powerful-motor-cd/2191602.p?id=81987&skuId=2191602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191602.jpg\"}', 'upc' => '053254001125', 'provider' => 'bestbuy'],\n ['name' => \"One Way Rocket to Kicksville - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-way-rocket-to-kicksville-cd/2191620.p?id=100655&skuId=2191620&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191620', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191620_sa.jpg\"}', 'upc' => '053254006625', 'provider' => 'bestbuy'],\n ['name' => \"Paper Doll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paper-doll-cd/2191639.p?id=94927&skuId=2191639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191639.jpg\"}', 'upc' => '053254006823', 'provider' => 'bestbuy'],\n ['name' => \"Wanna Smash Sensation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wanna-smash-sensation-cd/2191657.p?id=76311&skuId=2191657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191657_sa.jpg\"}', 'upc' => '053254033324', 'provider' => 'bestbuy'],\n ['name' => \"...And His Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-and-his-orchestra-cd/2191666.p?id=81985&skuId=2191666&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191666', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191666_sa.jpg\"}', 'upc' => '053254080328', 'provider' => 'bestbuy'],\n ['name' => \"In the Hall of Fame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-hall-of-fame-cd/2191675.p?id=99310&skuId=2191675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191675.jpg\"}', 'upc' => '053254212125', 'provider' => 'bestbuy'],\n ['name' => \"Failure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/failure-cd/2191684.p?id=95230&skuId=2191684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191684_sa.jpg\"}', 'upc' => '053254232321', 'provider' => 'bestbuy'],\n ['name' => \"Just a Taste: A Summershine Compilation - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-a-taste-a-summershine-compilation-cd-various/2191826.p?id=155160&skuId=2191826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191826_sa.jpg\"}', 'upc' => '749846200822', 'provider' => 'bestbuy'],\n ['name' => \"Punk Rock City USA - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/punk-rock-city-usa-cd/2191844.p?id=99134&skuId=2191844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191844.JPG\"}', 'upc' => '749846202123', 'provider' => 'bestbuy'],\n ['name' => \"Tumult - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tumult-cd/2191997.p?id=81787&skuId=2191997&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2191997', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2191\\/2191997_sa.jpg\"}', 'upc' => '723248801726', 'provider' => 'bestbuy'],\n ['name' => \"Too Many Cowboys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/too-many-cowboys-cd/2192004.p?id=110567&skuId=2192004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192004.jpg\"}', 'upc' => '723248801924', 'provider' => 'bestbuy'],\n ['name' => \"Aural Guerrilla - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aural-guerrilla-cd/2192013.p?id=110570&skuId=2192013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192013.jpg\"}', 'upc' => '723248802129', 'provider' => 'bestbuy'],\n ['name' => \"Logitech - PowerShell Controller + Battery for Select Apple® iPhone® and iPod® Models - Black\", 'description_short' => \"Compatible with select Apple iPhone and iPod models; enables console-style controls for mobile games; 1500 mAh battery; streamlined profile\", 'description_long' => \"Compatible with select Apple iPhone and iPod models; enables console-style controls for mobile games; 1500 mAh battery; streamlined profile\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/logitech-powershell-controller-battery-for-select-apple-iphone-and-ipod-models-black/2192055.p?id=1219070174564&skuId=2192055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192055_sa.jpg\"}', 'upc' => '097855102119', 'provider' => 'bestbuy'],\n ['name' => \"Tortoise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tortoise-cd/2192273.p?id=106579&skuId=2192273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192273_sa.jpg\"}', 'upc' => '790377001327', 'provider' => 'bestbuy'],\n ['name' => \"Fables From the Aqueduct - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fables-from-the-aqueduct-cd/2192291.p?id=108914&skuId=2192291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192291_sa.jpg\"}', 'upc' => '783227100127', 'provider' => 'bestbuy'],\n ['name' => \"The Herb Geller Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-herb-geller-quartet-cd/2192308.p?id=105761&skuId=2192308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192308_sa.jpg\"}', 'upc' => '722937008927', 'provider' => 'bestbuy'],\n ['name' => \"Hal Kemp & His Orchestra 1934 & 1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hal-kemp-his-orchestra-1934-1936-cd/2192317.p?id=261556&skuId=2192317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192317_sa.jpg\"}', 'upc' => '762247402527', 'provider' => 'bestbuy'],\n ['name' => \"1940-1941 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1940-1941-cd/2192326.p?id=247639&skuId=2192326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192326_sa.jpg\"}', 'upc' => '762247404422', 'provider' => 'bestbuy'],\n ['name' => \"Syncopatin Seven - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/syncopatin-seven-cd/2192335.p?id=306053&skuId=2192335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192335_sa.jpg\"}', 'upc' => '762247405726', 'provider' => 'bestbuy'],\n ['name' => \"1936 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1936-cd/2192344.p?id=155546&skuId=2192344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192344_sa.jpg\"}', 'upc' => '762247411024', 'provider' => 'bestbuy'],\n ['name' => \"Double Entendre - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-entendre-cd/2192353.p?id=68504&skuId=2192353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192353_sa.jpg\"}', 'upc' => '734521101228', 'provider' => 'bestbuy'],\n ['name' => \"Thar They Blow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thar-they-blow-cd/2192380.p?id=93565&skuId=2192380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192380.jpg\"}', 'upc' => '732579010226', 'provider' => 'bestbuy'],\n ['name' => \"Look Out! It's Joanie Sommers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/look-out-its-joanie-sommers-cd/2192399.p?id=109222&skuId=2192399&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2192399', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2192\\/2192399_sa.jpg\"}', 'upc' => '722937110620', 'provider' => 'bestbuy'],\n ['name' => \"Clarity - Super-Loud Phone Ringer - White\", 'description_short' => \"From our expanded online assortment; loud ring up to 95dB; visual alert; 4 ringtones; dual modular phone jacks\", 'description_long' => \"From our expanded online assortment; loud ring up to 95dB; visual alert; 4 ringtones; dual modular phone jacks\", 'price' => 39.99, 'sale_price' => 32.99, 'url' => 'http://www.bestbuy.com/site/clarity-super-loud-phone-ringer-white/2193417.p?id=1218313328026&skuId=2193417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193417_sa.jpg\"}', 'upc' => '759599751809', 'provider' => 'bestbuy'],\n ['name' => \"Mr. Downchild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mr-downchild-cd/2193566.p?id=108166&skuId=2193566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193566_sa.jpg\"}', 'upc' => '790276027725', 'provider' => 'bestbuy'],\n ['name' => \"Bloodsucker [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloodsucker-ep-cd/2193584.p?id=98125&skuId=2193584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193584_sa.jpg\"}', 'upc' => '718751841727', 'provider' => 'bestbuy'],\n ['name' => \"The Heart's Tremolo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hearts-tremolo-cd/2193600.p?id=105977&skuId=2193600&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193600', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193600_sa.jpg\"}', 'upc' => '718751882522', 'provider' => 'bestbuy'],\n ['name' => \"Wrong Place at the Wrong Time [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wrong-place-at-the-wrong-time-pa-cd/2193744.p?id=1576892&skuId=2193744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193744_sa.jpg\"}', 'upc' => '043814031327', 'provider' => 'bestbuy'],\n ['name' => \"Lonely City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lonely-city-cd/2193753.p?id=251307&skuId=2193753&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193753', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193753.jpg\"}', 'upc' => '026198273026', 'provider' => 'bestbuy'],\n ['name' => \"The Left Bank of New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-left-bank-of-new-york-cd/2193762.p?id=251306&skuId=2193762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193762.jpg\"}', 'upc' => '026198273224', 'provider' => 'bestbuy'],\n ['name' => \"Soul Mates - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-mates-cd/2193771.p?id=109327&skuId=2193771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193771.jpg\"}', 'upc' => '026198273422', 'provider' => 'bestbuy'],\n ['name' => \"Boston - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boston-cd/2193780.p?id=117747&skuId=2193780&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193780', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193780_sa.jpg\"}', 'upc' => '026198273521', 'provider' => 'bestbuy'],\n ['name' => \"Montreal (1953) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montreal-1953-cd/2193799.p?id=251303&skuId=2193799&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193799', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193799.jpg\"}', 'upc' => '026198273620', 'provider' => 'bestbuy'],\n ['name' => \"Rose Colored Glasses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rose-colored-glasses-cd/2193913.p?id=78534&skuId=2193913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193913_sa.jpg\"}', 'upc' => '076731122823', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - AF-S DX NIKKOR 10-24mm f/3.5-4.5G ED Ultra-Wide Zoom Lens - Black\", 'description_short' => \"Compatible with select Nikon DX DSLR cameras; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; accommodates 77mm filters; 0.79&#039; minimum focusing distance\", 'description_long' => \"Compatible with select Nikon DX DSLR cameras; SWM (Silent Wave Motor); ED (Extra-low Dispersion) glass; Internal Focus; accommodates 77mm filters; 0.79&#039; minimum focusing distance\", 'price' => 899.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-af-s-dx-nikkor-10-24mm-f-3-5-4-5g-ed-ultra-wide-zoom-lens-black/2193948.p?id=1218313905596&skuId=2193948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2193948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2193\\/2193948_rc.jpg\"}', 'upc' => '018208021819', 'provider' => 'bestbuy'],\n ['name' => \"Muse Sick-N-Hour Mess Age [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/muse-sick-n-hour-mess-age-pa-cd/2194226.p?id=95634&skuId=2194226&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2194226', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2194\\/2194226_sa.jpg\"}', 'upc' => '731452336224', 'provider' => 'bestbuy'],\n ['name' => \"Joey Kid - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joey-kid-cd/2194798.p?id=87815&skuId=2194798&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2194798', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '075678212420', 'provider' => 'bestbuy'],\n ['name' => \"Sings Granados - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-granados-cd/2195172.p?id=2025137&skuId=2195172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2195172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2195\\/2195172_sa.jpg\"}', 'upc' => '090266253920', 'provider' => 'bestbuy'],\n ['name' => \"NHL 14 - PRE-OWNED - PlayStation 3\", 'description_short' => \"From the first practice to the playoff game, experience hockey realism\", 'description_long' => \"From the first practice to the playoff game, experience hockey realism\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nhl-14-pre-owned-playstation-3/2196006.p?id=1219070170798&skuId=2196006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196006_sa.jpg\"}', 'upc' => '799007835608', 'provider' => 'bestbuy'],\n ['name' => \"Pinnacle Studio 18 Plus - Windows\", 'description_short' => \"Get ready to turn your videos into stunning works of art\", 'description_long' => \"Get ready to turn your videos into stunning works of art\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pinnacle-studio-18-plus-windows/2196024.p?id=1219531557014&skuId=2196024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196024_sa.jpg\"}', 'upc' => '735163145847', 'provider' => 'bestbuy'],\n ['name' => \"Emperors of Soul [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 67.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emperors-of-soul-box-cd/2196689.p?id=107520&skuId=2196689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196689_sa.jpg\"}', 'upc' => '731453033825', 'provider' => 'bestbuy'],\n ['name' => \"Head to Head - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/head-to-head-cd/2196787.p?id=107701&skuId=2196787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196787_sa.jpg\"}', 'upc' => '731452268228', 'provider' => 'bestbuy'],\n ['name' => \"Four - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-cd/2196849.p?id=108086&skuId=2196849&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196849', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196849_sa.jpg\"}', 'upc' => '731454026529', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Kentucky Headhunters: Still... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-kentucky-headhunters-still-cd/2196938.p?id=108087&skuId=2196938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2196938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2196\\/2196938_sa.jpg\"}', 'upc' => '731452271020', 'provider' => 'bestbuy'],\n ['name' => \"BISSELL - PowerFresh Pet Steam Cleaner - White\", 'description_short' => \"1500W of power; built-in Easy Scrubber; SmartSet digital, variable steam control; removes up to 99.9% of germs and bacteria; 13&quot; cleaning path width\", 'description_long' => \"1500W of power; built-in Easy Scrubber; SmartSet digital, variable steam control; removes up to 99.9% of germs and bacteria; 13&quot; cleaning path width\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bissell-powerfresh-pet-steam-cleaner-white/2197005.p?id=1219531560454&skuId=2197005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2197005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2197\\/2197005_sa.jpg\"}', 'upc' => '011120224221', 'provider' => 'bestbuy'],\n ['name' => \"Puppeteer - PRE-OWNED - PlayStation 3\", 'description_short' => \"Find your way home in this adventure platformer\", 'description_long' => \"Find your way home in this adventure platformer\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puppeteer-pre-owned-playstation-3/2197014.p?id=1219070175012&skuId=2197014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2197014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2197\\/2197014_sa.jpg\"}', 'upc' => '799007835615', 'provider' => 'bestbuy'],\n ['name' => \"Pinnacle Studio 18 Ultimate - Windows\", 'description_short' => \"Get ready to turn your videos into stunning works of art\", 'description_long' => \"Get ready to turn your videos into stunning works of art\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pinnacle-studio-18-ultimate-windows/2197023.p?id=1219531557144&skuId=2197023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2197023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2197\\/2197023_sa.jpg\"}', 'upc' => '735163145922', 'provider' => 'bestbuy'],\n ['name' => \"The Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-concert-cd/2197562.p?id=108031&skuId=2197562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2197562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2197\\/2197562_sa.jpg\"}', 'upc' => '074646610923', 'provider' => 'bestbuy'],\n ['name' => \"NHL 14 - PRE-OWNED - Xbox 360\", 'description_short' => \"From the first practice to the playoff game, experience hockey realism\", 'description_long' => \"From the first practice to the playoff game, experience hockey realism\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nhl-14-pre-owned-xbox-360/2198004.p?id=1219070174361&skuId=2198004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2198004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2198\\/2198004_sa.jpg\"}', 'upc' => '799007835622', 'provider' => 'bestbuy'],\n ['name' => \"ZAGG - Screen Protector for Apple® iPod® touch 6th Generation - Clear\", 'description_short' => \"Compatible with Apple iPod touch 6th generation; protects against cracks; glass construction\", 'description_long' => \"Compatible with Apple iPod touch 6th generation; protects against cracks; glass construction\", 'price' => 39.99, 'sale_price' => 36.99, 'url' => 'http://www.bestbuy.com/site/zagg-screen-protector-for-apple-ipod-touch-6th-generation-clear/2198013.p?id=1219533980878&skuId=2198013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2198013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2198\\/2198013_rc.jpg\"}', 'upc' => '848467027938', 'provider' => 'bestbuy'],\n ['name' => \"Home For Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-for-christmas-cd/2198393.p?id=110850&skuId=2198393&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2198393', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2198\\/2198393_sa.jpg\"}', 'upc' => '026656275029', 'provider' => 'bestbuy'],\n ['name' => \"Clear History (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clear-history-dvd/2199003.p?id=2749393&skuId=2199003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2199003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2199\\/2199003_sa.jpg\"}', 'upc' => '883929357505', 'provider' => 'bestbuy'],\n ['name' => \"Clear History (Blu-ray Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clear-history-blu-ray-disc-digital-copy/2199012.p?id=2749393&skuId=2199012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2199012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2199\\/2199012_sa.jpg\"}', 'upc' => '883929357512', 'provider' => 'bestbuy'],\n ['name' => \"Grown Ups 2 (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy) (Mastered in 4K)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grown-ups-2-blu-ray-disc-2-disc-ultraviolet-digital-copy-mastered-in-4k/2199085.p?id=2756421&skuId=2199085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2199085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2199\\/2199085_sa.jpg\"}', 'upc' => '043396417489', 'provider' => 'bestbuy'],\n ['name' => \"Kingdom Hearts HD 1.5 ReMIX - PRE-OWNED - PlayStation 3\", 'description_short' => \"Relive the origins of the Kingdom Hearts franchise in stunning high-definition\", 'description_long' => \"Relive the origins of the Kingdom Hearts franchise in stunning high-definition\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kingdom-hearts-hd-1-5-remix-pre-owned-playstation-3/2199094.p?id=1219070170799&skuId=2199094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2199094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2199\\/2199094_sa.jpg\"}', 'upc' => '799007835639', 'provider' => 'bestbuy'],\n ['name' => \"Grown Ups 2 (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/grown-ups-2-dvd-ultraviolet-digital-copy/2200019.p?id=2756421&skuId=2200019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2200019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2200\\/2200019_sa.jpg\"}', 'upc' => '043396417526', 'provider' => 'bestbuy'],\n ['name' => \"White House Down (Blu-ray Disc) (2 Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/white-house-down-blu-ray-disc-2-disc-ultraviolet-digital-copy/2201009.p?id=2755098&skuId=2201009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201009_sa.jpg\"}', 'upc' => '043396417557', 'provider' => 'bestbuy'],\n ['name' => \"Rug Doctor - Platinum Anytime Carpet Cleaner Pack - White/Green/Blue/Red\", 'description_short' => \"Permanently removes spots, pet stains and odors; Sparkling Breeze scent; includes four 24-oz. bottles\", 'description_long' => \"Permanently removes spots, pet stains and odors; Sparkling Breeze scent; includes four 24-oz. bottles\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rug-doctor-platinum-anytime-carpet-cleaner-pack-white-green-blue-red/2201018.p?id=1219531557714&skuId=2201018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201018_sa.jpg\"}', 'upc' => '074999050407', 'provider' => 'bestbuy'],\n ['name' => \"Rug Doctor - Pet Care Carpet Cleaner Pack - White/Red/Green\", 'description_short' => \"Pro-enzymatic deep-cleaning formula; eliminates stains and odors; Blue Wave and Sparkling Breeze scents; includes one 64-oz. bottle of Pet Formula Deep Cleaner and two 24-oz. bottles of Platinum Urine Eliminator\", 'description_long' => \"Pro-enzymatic deep-cleaning formula; eliminates stains and odors; Blue Wave and Sparkling Breeze scents; includes one 64-oz. bottle of Pet Formula Deep Cleaner and two 24-oz. bottles of Platinum Urine Eliminator\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rug-doctor-pet-care-carpet-cleaner-pack-white-red-green/2201063.p?id=1219531557649&skuId=2201063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201063_sa.jpg\"}', 'upc' => '074999050391', 'provider' => 'bestbuy'],\n ['name' => \"Rug Doctor - Upright Deep Cleaner - Red/Gray\", 'description_short' => \"1250W of power; clear clean and waste water tanks; dual cross-action brushes; super boost spray mode; 12&quot; cleaning path width; removable upholstery tool; removable tool caddy\", 'description_long' => \"1250W of power; clear clean and waste water tanks; dual cross-action brushes; super boost spray mode; 12&quot; cleaning path width; removable upholstery tool; removable tool caddy\", 'price' => 289.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rug-doctor-upright-deep-cleaner-red-gray/2201229.p?id=1219531558359&skuId=2201229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201229_rc.jpg\"}', 'upc' => '074999931461', 'provider' => 'bestbuy'],\n ['name' => \"Rug Doctor - Portable Machine & Upholstery Cleaners (2-Pack) - Multi\", 'description_short' => \"Includes two 32-oz. bottles of Rug Doctor Portable Machine &amp; Upholstery carpet cleaner; nontoxic; Blue Wave scent\", 'description_long' => \"Includes two 32-oz. bottles of Rug Doctor Portable Machine &amp; Upholstery carpet cleaner; nontoxic; Blue Wave scent\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rug-doctor-portable-machine-upholstery-cleaners-2-pack-multi/2201238.p?id=1219532019798&skuId=2201238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201238_sa.jpg\"}', 'upc' => '074999041276', 'provider' => 'bestbuy'],\n ['name' => \"Rug Doctor - Hardwood Care Pack - Multi\", 'description_short' => \"Includes 24-oz. Floor Doctor Hardwood Spray, 64-oz. Floor Doctor Hardwood Cleaner and 32-oz. Rug Doctor High-Gloss Floor Polish; nontoxic; citrus herb scent\", 'description_long' => \"Includes 24-oz. Floor Doctor Hardwood Spray, 64-oz. Floor Doctor Hardwood Cleaner and 32-oz. Rug Doctor High-Gloss Floor Polish; nontoxic; citrus herb scent\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rug-doctor-hardwood-care-pack-multi/2201315.p?id=1219531555970&skuId=2201315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2201315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2201\\/2201315_sa.jpg\"}', 'upc' => '074999050421', 'provider' => 'bestbuy'],\n ['name' => \"Twilight Forever: The Complete Saga (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twilight-forever-the-complete-saga-dvd-boxed-set/2202008.p?id=2755936&skuId=2202008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2202008.jpg\"}', 'upc' => '025192196812', 'provider' => 'bestbuy'],\n ['name' => \"Twilight Forever: The Complete Saga (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twilight-forever-the-complete-saga-blu-ray-disc-boxed-set/2202026.p?id=2755965&skuId=2202026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2202026.jpg\"}', 'upc' => '025192196836', 'provider' => 'bestbuy'],\n ['name' => \"Brother - MFC-J6920DW Wireless All-In-One Printer - Gray\", 'description_short' => \"4-in-1 functionalityBuilt-in wireless LANPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)500-sheet input trayTouch-screen display\", 'description_long' => \"4-in-1 functionalityBuilt-in wireless LANPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)500-sheet input trayTouch-screen display\", 'price' => 299.99, 'sale_price' => 213.99, 'url' => 'http://www.bestbuy.com/site/brother-mfc-j6920dw-wireless-all-in-one-printer-gray/2202035.p?id=1219070438660&skuId=2202035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202035_sa.jpg\"}', 'upc' => '012502635710', 'provider' => 'bestbuy'],\n ['name' => \"Brother - MFC-J6720DW Wireless All-In-One Printer - Gray\", 'description_short' => \"4-in-1 functionalityBuilt-in wireless LANPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)35-page automatic document feeder2.7&quot; touch-screen display\", 'description_long' => \"4-in-1 functionalityBuilt-in wireless LANPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)35-page automatic document feeder2.7&quot; touch-screen display\", 'price' => 249.99, 'sale_price' => 224.99, 'url' => 'http://www.bestbuy.com/site/brother-mfc-j6720dw-wireless-all-in-one-printer-gray/2202053.p?id=1219070438832&skuId=2202053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202053_sa.jpg\"}', 'upc' => '012502635727', 'provider' => 'bestbuy'],\n ['name' => \"Corsicana Lemonade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corsicana-lemonade-cd/2202062.p?id=2758390&skuId=2202062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202062_sa.jpg\"}', 'upc' => '878037027815', 'provider' => 'bestbuy'],\n ['name' => \"Revolution Rise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/revolution-rise-cd/2202071.p?id=2758425&skuId=2202071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202071_sa.jpg\"}', 'upc' => '727701908427', 'provider' => 'bestbuy'],\n ['name' => \"Line in the Sand - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/line-in-the-sand-cd/2202099.p?id=2758408&skuId=2202099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202099_sa.jpg\"}', 'upc' => '746105069824', 'provider' => 'bestbuy'],\n ['name' => \"IV: Empires Collapse... [CD & DVD] [Digipak] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iv-empires-collapse-cd-dvd-digipak-cd-dvd/2202104.p?id=2758395&skuId=2202104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202104.jpg\"}', 'upc' => '727701907628', 'provider' => 'bestbuy'],\n ['name' => \"Everything Is Debatable [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/everything-is-debatable-digipak-cd/2202113.p?id=2758471&skuId=2202113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202113_sa.jpg\"}', 'upc' => '714753018426', 'provider' => 'bestbuy'],\n ['name' => \"Whales and Leeches [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whales-and-leeches-deluxe-edition-digipak-cd/2202122.p?id=2746474&skuId=2202122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202122_sa.jpg\"}', 'upc' => '781676724123', 'provider' => 'bestbuy'],\n ['name' => \"Anunnaki - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anunnaki-cd/2202131.p?id=2758429&skuId=2202131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202131_sa.jpg\"}', 'upc' => '746105070028', 'provider' => 'bestbuy'],\n ['name' => \"Mediator Between Head... [CD & DVD] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mediator-between-head-cd-dvd-digipak-cd/2202159.p?id=2758480&skuId=2202159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202159.jpg\"}', 'upc' => '727361309909', 'provider' => 'bestbuy'],\n ['name' => \"Still Climbing [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-climbing-digipak-cd/2202168.p?id=2765740&skuId=2202168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202168_sa.jpg\"}', 'upc' => '819873010326', 'provider' => 'bestbuy'],\n ['name' => \"Serpents Unleashed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serpents-unleashed-cd/2202177.p?id=2758392&skuId=2202177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202177_sa.jpg\"}', 'upc' => '656191016025', 'provider' => 'bestbuy'],\n ['name' => \"Home - Phantoms of Summer: The Acoustic Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-phantoms-of-summer-the-acoustic-sessions-cd/2202186.p?id=2765686&skuId=2202186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202186_sa.jpg\"}', 'upc' => '846070021329', 'provider' => 'bestbuy'],\n ['name' => \"Resistance [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resistance-bonus-track-cd/2202195.p?id=2758336&skuId=2202195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202195_sa.jpg\"}', 'upc' => '727701904320', 'provider' => 'bestbuy'],\n ['name' => \"Volition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/volition-cd/2202219.p?id=2757747&skuId=2202219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202219_sa.jpg\"}', 'upc' => '793018351423', 'provider' => 'bestbuy'],\n ['name' => \"Unloved - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unloved-cd/2202228.p?id=2758266&skuId=2202228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202228_sa.jpg\"}', 'upc' => '746105069923', 'provider' => 'bestbuy'],\n ['name' => \"Punk Goes Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/punk-goes-christmas-cd/2202237.p?id=2758311&skuId=2202237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202237_sa.jpg\"}', 'upc' => '714753018228', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Buckcherry [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-buckcherry-pa-cd/2202246.p?id=2765700&skuId=2202246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202246_sa.jpg\"}', 'upc' => '849320010128', 'provider' => 'bestbuy'],\n ['name' => \"Waiting for the End to Come [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/waiting-for-the-end-to-come-bonus-track-cd/2202255.p?id=2758439&skuId=2202255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202255.jpg\"}', 'upc' => '727361314309', 'provider' => 'bestbuy'],\n ['name' => \"Two of a Crime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-of-a-crime-cd/2202264.p?id=2758363&skuId=2202264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202264_sa.jpg\"}', 'upc' => '794558026123', 'provider' => 'bestbuy'],\n ['name' => \"The King's Gift [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-kings-gift-digipak-cd/2202273.p?id=2744228&skuId=2202273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202273_sa.jpg\"}', 'upc' => '766930014127', 'provider' => 'bestbuy'],\n ['name' => \"Back to the Front - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/back-to-the-front-cd/2202282.p?id=2758284&skuId=2202282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202282_sa.jpg\"}', 'upc' => '727701908120', 'provider' => 'bestbuy'],\n ['name' => \"Dark Roots of Thrash [Bonus DVD] [CD & DVD] [Box] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-roots-of-thrash-bonus-dvd-cd-dvd-box-cd-dvd/2202291.p?id=2747103&skuId=2202291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202291.jpg\"}', 'upc' => '727361310103', 'provider' => 'bestbuy'],\n ['name' => \"From Water to War - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-water-to-war-cd/2202305.p?id=2758449&skuId=2202305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202305_sa.jpg\"}', 'upc' => '810488020724', 'provider' => 'bestbuy'],\n ['name' => \"Mediator Between Head and Hands Must Be the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mediator-between-head-and-hands-must-be-the-cd/2202314.p?id=2758391&skuId=2202314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202314_sa.jpg\"}', 'upc' => '727361309923', 'provider' => 'bestbuy'],\n ['name' => \"Speck - CandyShell + Faceplate Case for Apple® iPhone® SE, 5s and 5 - Black/Gray\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; CandyShield faceplate; TrueTap technology; polycarbonate and rubber materials; shock-absorbing lining and corners; rubberized button covers\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; CandyShield faceplate; TrueTap technology; polycarbonate and rubber materials; shock-absorbing lining and corners; rubberized button covers\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-candyshell-faceplate-case-for-apple-iphone-se-5s-and-5-black-gray/2202332.p?id=1219070174630&skuId=2202332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2202332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2202\\/2202332_sa.jpg\"}', 'upc' => '848709006158', 'provider' => 'bestbuy'],\n ['name' => \"The Hobbit: An Unexpected Journey (Blu-ray Disc) (3 Disc) (Extended Edition) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-hobbit-an-unexpected-journey-blu-ray-disc-3-disc-extended-edition-ultraviolet-digital-copy/2203007.p?id=2651538&skuId=2203007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2203007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2203007.jpg\"}', 'upc' => '794043168215', 'provider' => 'bestbuy'],\n ['name' => \"Blindsided - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blindsided-cd/2203341.p?id=107739&skuId=2203341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2203341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2203\\/2203341.jpg\"}', 'upc' => '026245202122', 'provider' => 'bestbuy'],\n ['name' => \"Any Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/any-road-cd/2203396.p?id=107728&skuId=2203396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2203396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2203\\/2203396_sa.jpg\"}', 'upc' => '097149940625', 'provider' => 'bestbuy'],\n ['name' => \"White House Down (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-house-down-dvd-ultraviolet-digital-copy/2204006.p?id=2755098&skuId=2204006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2204006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2204\\/2204006.jpg\"}', 'upc' => '043396417595', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => 3.99, 'url' => 'http://www.bestbuy.com/site/rhythm-of-love-cd/2204019.p?id=73744&skuId=2204019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2204019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2204\\/2204019_sa.jpg\"}', 'upc' => '075596155526', 'provider' => 'bestbuy'],\n ['name' => \"Chocolate and Cheese [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chocolate-and-cheese-pa-cd/2204064.p?id=103732&skuId=2204064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2204064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2204\\/2204064_sa.jpg\"}', 'upc' => '075596163927', 'provider' => 'bestbuy'],\n ['name' => \"Flyer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flyer-cd/2204091.p?id=106383&skuId=2204091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2204091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2204\\/2204091_sa.jpg\"}', 'upc' => '075596168120', 'provider' => 'bestbuy'],\n ['name' => \"My Hope: Songs Inspired by the Message and... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-hope-songs-inspired-by-the-message-and-cd-various/2205005.p?id=2757555&skuId=2205005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205005_sa.jpg\"}', 'upc' => '5099943346721', 'provider' => 'bestbuy'],\n ['name' => \"Classified [Remixed and... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classified-remixed-and-digipak-cd/2205014.p?id=2748488&skuId=2205014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205014_sa.jpg\"}', 'upc' => '011661917521', 'provider' => 'bestbuy'],\n ['name' => \"Perfect Strangers Live [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/perfect-strangers-live-cd-dvd-cd-dvd/2205023.p?id=2755970&skuId=2205023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205023.jpg\"}', 'upc' => '826992034027', 'provider' => 'bestbuy'],\n ['name' => \"No Poison No Paradise [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-poison-no-paradise-pa-digipak-cd/2205032.p?id=2758326&skuId=2205032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205032_sa.jpg\"}', 'upc' => '659123516525', 'provider' => 'bestbuy'],\n ['name' => \"Made in Canada: The 1998-2010 Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/made-in-canada-the-1998-2010-collection-cd/2205041.p?id=2757695&skuId=2205041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205041_sa.jpg\"}', 'upc' => '602537444380', 'provider' => 'bestbuy'],\n ['name' => \"Speak a Little... [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speak-a-little-pa-digipak-cd/2205069.p?id=2757701&skuId=2205069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205069_sa.jpg\"}', 'upc' => '807315110420', 'provider' => 'bestbuy'],\n ['name' => \"Iconos 25 Éxitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iconos-25-exitos-cd/2205078.p?id=2757567&skuId=2205078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205078_sa.jpg\"}', 'upc' => '602537548989', 'provider' => 'bestbuy'],\n ['name' => \"Románticos del Momento - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/romanticos-del-momento-cd/2205087.p?id=2757617&skuId=2205087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205087_sa.jpg\"}', 'upc' => '827865448927', 'provider' => 'bestbuy'],\n ['name' => \"Modern Memoirs [EP] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/modern-memoirs-ep-digipak-cd/2205096.p?id=2758409&skuId=2205096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205096_sa.jpg\"}', 'upc' => '790692078523', 'provider' => 'bestbuy'],\n ['name' => \"Iconos Exitos Salsa - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iconos-exitos-salsa-cd-various/2205101.p?id=2757540&skuId=2205101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205101_sa.jpg\"}', 'upc' => '602537548941', 'provider' => 'bestbuy'],\n ['name' => \"Jake and the Never Land Pirates: Yo Ho, Matey! - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jake-and-the-never-land-pirates-yo-ho-matey-cd-original-soundtrack/2205129.p?id=2750607&skuId=2205129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205129_sa.jpg\"}', 'upc' => '050087297596', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Gift Pack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-gift-pack-cd/2205138.p?id=2757596&skuId=2205138&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2200\\/22006146.jpg\"}', 'upc' => '5099972376225', 'provider' => 'bestbuy'],\n ['name' => \"Rock & Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-roll-cd/2205147.p?id=2758443&skuId=2205147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205147_sa.jpg\"}', 'upc' => '030206198027', 'provider' => 'bestbuy'],\n ['name' => \"Garcia Live, Vol. 3: Dec 14-15,... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garcia-live-vol-3-dec-14-15-digipak-cd/2205156.p?id=2757614&skuId=2205156&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205156_sa.jpg\"}', 'upc' => '880882190828', 'provider' => 'bestbuy'],\n ['name' => \"Las Gruperas Románticas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/las-gruperas-romanticas-cd-various/2205165.p?id=2757647&skuId=2205165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205165_sa.jpg\"}', 'upc' => '600753455180', 'provider' => 'bestbuy'],\n ['name' => \"Boardwalk [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boardwalk-digipak-cd/2205174.p?id=2757804&skuId=2205174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205174_sa.jpg\"}', 'upc' => '659457232320', 'provider' => 'bestbuy'],\n ['name' => \"Change Your Life [EP] [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/change-your-life-ep-pa-digipak-cd/2205183.p?id=2760104&skuId=2205183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205183_sa.jpg\"}', 'upc' => '602537565573', 'provider' => 'bestbuy'],\n ['name' => \"Gaither Gospel Series: Joey + Rory - Inspired (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gaither-gospel-series-joey-rory-inspired-dvd/2205192.p?id=2759371&skuId=2205192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205192_sa.jpg\"}', 'upc' => '617884876890', 'provider' => 'bestbuy'],\n ['name' => \"New [Deluxe Edition] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-deluxe-edition-digipak-cd/2205207.p?id=2757728&skuId=2205207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205207_sa.jpg\"}', 'upc' => '888072348455', 'provider' => 'bestbuy'],\n ['name' => \"A Charlie Brown Christmas [Snoopy Doghouse... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-charlie-brown-christmas-snoopy-doghouse-cd/2205216.p?id=2743988&skuId=2205216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205216_sa.jpg\"}', 'upc' => '888072347601', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Gift Pack [3 CD] [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-gift-pack-3-cd-box-cd/2205225.p?id=2757538&skuId=2205225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205225_sa.jpg\"}', 'upc' => '602537475902', 'provider' => 'bestbuy'],\n ['name' => \"Deep Purple: Perfect Strangers Live (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/deep-purple-perfect-strangers-live-dvd/2205234.p?id=2756190&skuId=2205234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205234_sa.jpg\"}', 'upc' => '801213065196', 'provider' => 'bestbuy'],\n ['name' => \"Splinter (Songs from a Broken Mind) [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/splinter-songs-from-a-broken-mind-digipak-cd/2205243.p?id=2762878&skuId=2205243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205243_sa.jpg\"}', 'upc' => '887158520013', 'provider' => 'bestbuy'],\n ['name' => \"Aftershock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aftershock-cd/2205289.p?id=2760283&skuId=2205289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205289.jpg\"}', 'upc' => '825646410095', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy - Volvo Multi In-Dash Installation Kit\", 'description_short' => \"This kit allows you to install an aftermarket car stereo in your vehicle&#039;s dash.\", 'description_long' => \"This kit allows you to install an aftermarket car stereo in your vehicle&#039;s dash.\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-volvo-multi-in-dash-installation-kit/2205848.p?id=1051384084154&skuId=2205848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205848_sc.jpg\"}', 'upc' => '086429008599', 'provider' => 'bestbuy'],\n ['name' => \"Metra - DIN Installation Kit for Select Honda and Isuzu Vehicles - Black\", 'description_short' => \"From our expanded online assortment; designed for use with select Honda and Isuzu vehicles; accommodates 1 DIN-size component; install an aftermarket in-dash deck\", 'description_long' => \"From our expanded online assortment; designed for use with select Honda and Isuzu vehicles; accommodates 1 DIN-size component; install an aftermarket in-dash deck\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-din-installation-kit-for-select-honda-and-isuzu-vehicles-black/2205857.p?id=1218077634882&skuId=2205857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2205857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2205\\/2205857_sa.jpg\"}', 'upc' => '086429029228', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 70-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 70 pints of water per day; 6.9 amps; soft-touch electronic control panel; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 70 pints of water per day; 6.9 amps; soft-touch electronic control panel; washable air filter; normal and turbo fan speeds\", 'price' => 334.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-70-pint-dehumidifier-white/2206013.p?id=1219070442190&skuId=2206013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206013_sa.jpg\"}', 'upc' => '876840006454', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 18\\\" Portable Dishwasher - Stainless-Steel\", 'description_short' => \"ENERGY STAR Certified\nEasy-to-use controls; accommodates up to 8 place settings; 6 wash programs; delay-start option\", 'description_long' => \"ENERGY STAR Certified\nEasy-to-use controls; accommodates up to 8 place settings; 6 wash programs; delay-start option\", 'price' => 474.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-18-portable-dishwasher-stainless-steel/2206031.p?id=1219070441257&skuId=2206031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206031_500x500_sa.jpg\"}', 'upc' => '876840011915', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 18\\\" Portable Dishwasher - White\", 'description_short' => \"Easy-to-use controls; accommodates up to 8 place settings; 6 wash programs; delay-start option\", 'description_long' => \"Easy-to-use controls; accommodates up to 8 place settings; 6 wash programs; delay-start option\", 'price' => 474.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-18-portable-dishwasher-white/2206059.p?id=1219070442188&skuId=2206059', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206059_sa.jpg\"}', 'upc' => '876840011908', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 0.9 Cu. Ft. Countertop Convection Oven - Stainless-Steel/Black\", 'description_short' => \"Temperature control; 4 functions; 1500W of power; 120-minute timer; full-width crumb tray; 3 rack positions; large viewing window; stainless-steel housing\", 'description_long' => \"Temperature control; 4 functions; 1500W of power; 120-minute timer; full-width crumb tray; 3 rack positions; large viewing window; stainless-steel housing\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-0-9-cu-ft-countertop-convection-oven-stainless-steel-black/2206077.p?id=1219070438657&skuId=2206077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206077_rc.jpg\"}', 'upc' => '876840006102', 'provider' => 'bestbuy'],\n ['name' => \"SPT - 50-Pint Dehumidifier - White\", 'description_short' => \"ENERGY STAR Certified\nRemoves up to 50 pints of water per day; 4.7 amps; soft-touch electronic control panel; washable air filter; normal and turbo fan speeds\", 'description_long' => \"ENERGY STAR Certified\nRemoves up to 50 pints of water per day; 4.7 amps; soft-touch electronic control panel; washable air filter; normal and turbo fan speeds\", 'price' => 309.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spt-50-pint-dehumidifier-white/2206086.p?id=1219070442771&skuId=2206086', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206086_sa.jpg\"}', 'upc' => '876840006447', 'provider' => 'bestbuy'],\n ['name' => \"Broken Silence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broken-silence-cd/2206197.p?id=111782&skuId=2206197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206197_sa.jpg\"}', 'upc' => '033651006923', 'provider' => 'bestbuy'],\n ['name' => \"Rising Tide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rising-tide-cd/2206204.p?id=108365&skuId=2206204&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206204', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206204_sa.jpg\"}', 'upc' => '015891382722', 'provider' => 'bestbuy'],\n ['name' => \"Trying to Get to You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trying-to-get-to-you-cd/2206213.p?id=108366&skuId=2206213&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206213', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206213_sa.jpg\"}', 'upc' => '015891382623', 'provider' => 'bestbuy'],\n ['name' => \"Freetime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freetime-cd/2206428.p?id=71108&skuId=2206428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206428_sa.jpg\"}', 'upc' => '051617800026', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2206446.p?id=1382141&skuId=2206446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206446.jpg\"}', 'upc' => '767522600827', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Wire Harness Adapter for Most Plymouth, Dodge and Mitsubishi Vehicles - Multi\", 'description_short' => \"Compatible with most Plymouth, Dodge and Mitsubishi vehicles; connects factory speaker wires to aftermarket speakers\", 'description_long' => \"Compatible with most Plymouth, Dodge and Mitsubishi vehicles; connects factory speaker wires to aftermarket speakers\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-wire-harness-adapter-for-most-plymouth-dodge-and-mitsubishi-vehicles-multi/2206525.p?id=1051826167289&skuId=2206525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206525_rc.jpg\"}', 'upc' => '086429017195', 'provider' => 'bestbuy'],\n ['name' => \"Complete 1931 Recordings in Chronological Order - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-1931-recordings-in-chronological-order-cd/2206623.p?id=109516&skuId=2206623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206623_sa.jpg\"}', 'upc' => '016351200921', 'provider' => 'bestbuy'],\n ['name' => \"Complete Early Recordings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-early-recordings-cd/2206669.p?id=109524&skuId=2206669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206669_sa.jpg\"}', 'upc' => '016351201126', 'provider' => 'bestbuy'],\n ['name' => \"METRA ELECTRONICS/MOBILE AUDIO - G.M. Speaker Harness\", 'description_short' => \"This speaker harness allows you to connect aftermarket car speakers to your vehicle&#039;s wiring.\", 'description_long' => \"This speaker harness allows you to connect aftermarket car speakers to your vehicle&#039;s wiring.\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-electronics-mobile-audio-g-m-speaker-harness/2206730.p?id=1051826167442&skuId=2206730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206730_sa.jpg\"}', 'upc' => '086429016945', 'provider' => 'bestbuy'],\n ['name' => \"Metra Electronics - Honda/Acura Speaker Harness\", 'description_short' => \"This speaker harness allows you to connect aftermarket car speakers to your vehicle&#039;s wiring.\", 'description_long' => \"This speaker harness allows you to connect aftermarket car speakers to your vehicle&#039;s wiring.\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-electronics-honda-acura-speaker-harness/2206767.p?id=1051826167493&skuId=2206767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206767_rc.jpg\"}', 'upc' => '086429017102', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Wire Harness Adapter for Most 1989 or Later Ford Vehicles - White\", 'description_short' => \"Compatible with most 1989 or later Ford vehicles; connects factory speaker wires to aftermarket speakers; ABS plastic, copper, vinyl and aluminum materials\", 'description_long' => \"Compatible with most 1989 or later Ford vehicles; connects factory speaker wires to aftermarket speakers; ABS plastic, copper, vinyl and aluminum materials\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-wire-harness-adapter-for-most-1989-or-later-ford-vehicles-white/2206810.p?id=1077629974866&skuId=2206810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206810_rc.jpg\"}', 'upc' => '086429017010', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Wire Harness Adapter for Most Nissan Vehicles - Multicolor\", 'description_short' => \"Compatible with most Nissan vehicles; connects factory speaker wires to aftermarket speakers\", 'description_long' => \"Compatible with most Nissan vehicles; connects factory speaker wires to aftermarket speakers\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-wire-harness-adapter-for-most-nissan-vehicles-multicolor/2206838.p?id=1051826167595&skuId=2206838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2206838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2206\\/2206838_rc.jpg\"}', 'upc' => '086429017096', 'provider' => 'bestbuy'],\n ['name' => \"Magpie and the Dandelion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magpie-and-the-dandelion-cd/2207067.p?id=2757713&skuId=2207067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2207067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2207\\/2207067_sa.jpg\"}', 'upc' => '602537535620', 'provider' => 'bestbuy'],\n ['name' => \"There's Nothing Wrong with Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theres-nothing-wrong-with-love-cd/2207123.p?id=108212&skuId=2207123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2207123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2207\\/2207123.jpg\"}', 'upc' => '796818000621', 'provider' => 'bestbuy'],\n ['name' => \"Serious - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serious-cd/2207365.p?id=72768&skuId=2207365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2207365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2207\\/2207365_sa.jpg\"}', 'upc' => '019148228726', 'provider' => 'bestbuy'],\n ['name' => \"Placeholders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/placeholders-cd/2207800.p?id=108220&skuId=2207800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2207800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2207\\/2207800_sa.jpg\"}', 'upc' => '753417003729', 'provider' => 'bestbuy'],\n ['name' => \"Canon - Speedlite 270EX II External Flash - Black\", 'description_short' => \"Compatible with select Canon DSLR cameras; wireless slave function; vertical bounce capability; compact, lightweight design\", 'description_long' => \"Compatible with select Canon DSLR cameras; wireless slave function; vertical bounce capability; compact, lightweight design\", 'price' => 169.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canon-speedlite-270ex-ii-external-flash-black/2208095.p?id=1218314736681&skuId=2208095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208095_rc.jpg\"}', 'upc' => '013803135268', 'provider' => 'bestbuy'],\n ['name' => \"Our Christmas Songbook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/our-christmas-songbook-cd/2208122.p?id=88562&skuId=2208122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208122_sa.jpg\"}', 'upc' => '090431509128', 'provider' => 'bestbuy'],\n ['name' => \"Rainbow '80 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rainbow-80-cd/2208131.p?id=128688&skuId=2208131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208131_sa.jpg\"}', 'upc' => '090431514023', 'provider' => 'bestbuy'],\n ['name' => \"Feelings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feelings-cd/2208140.p?id=128694&skuId=2208140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208140.jpg\"}', 'upc' => '090431514825', 'provider' => 'bestbuy'],\n ['name' => \"Dynamite! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dynamite-cd/2208159.p?id=154167&skuId=2208159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208159_sa.jpg\"}', 'upc' => '090431529829', 'provider' => 'bestbuy'],\n ['name' => \"Rhythm & Blues Christmas 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythm-blues-christmas-2-cd-various/2208168.p?id=128774&skuId=2208168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208168_sa.jpg\"}', 'upc' => '090431529928', 'provider' => 'bestbuy'],\n ['name' => \"Mockingbird: The Best of Charlie & Inez Foxx - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mockingbird-the-best-of-charlie-inez-foxx-cd/2208177.p?id=128787&skuId=2208177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208177.jpg\"}', 'upc' => '090431530122', 'provider' => 'bestbuy'],\n ['name' => \"First Generation Rap: The Old School, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-generation-rap-the-old-school-vol-1-cd-various/2208202.p?id=128804&skuId=2208202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208202.jpg\"}', 'upc' => '090431535127', 'provider' => 'bestbuy'],\n ['name' => \"Old School Rap 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-school-rap-4-cd-various/2208239.p?id=2901244&skuId=2208239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208239_sa.jpg\"}', 'upc' => '090431535424', 'provider' => 'bestbuy'],\n ['name' => \"A Rhythm & Blues Christmas, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-rhythm-blues-christmas-vol-3-cd-various/2208248.p?id=194439&skuId=2208248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208248_sa.jpg\"}', 'upc' => '090431535523', 'provider' => 'bestbuy'],\n ['name' => \"Live at the \\\"Regal\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-regal-cd/2208355.p?id=128651&skuId=2208355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208355_sa.jpg\"}', 'upc' => '090431551622', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2208364.p?id=128662&skuId=2208364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208364_sa.jpg\"}', 'upc' => '090431551820', 'provider' => 'bestbuy'],\n ['name' => \"For Collectors Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-collectors-only-cd/2208373.p?id=79189&skuId=2208373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208373_sa.jpg\"}', 'upc' => '090431881224', 'provider' => 'bestbuy'],\n ['name' => \"Earl Hines and the Duke's Men - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/earl-hines-and-the-dukes-men-cd/2208408.p?id=1395873&skuId=2208408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2208408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2208\\/2208408_sa.jpg\"}', 'upc' => '038153047023', 'provider' => 'bestbuy'],\n ['name' => \"Canon - Speedlite 320EX External Flash\", 'description_short' => \"Compatible with Canon DSLR cameras; built-in LED light; wireless slave function; vertical and horizontal bounce capability; compact, lightweight design\", 'description_long' => \"Compatible with Canon DSLR cameras; built-in LED light; wireless slave function; vertical and horizontal bounce capability; compact, lightweight design\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canon-speedlite-320ex-external-flash/2209049.p?id=1218314735270&skuId=2209049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209049_sa.jpg\"}', 'upc' => '013803136678', 'provider' => 'bestbuy'],\n ['name' => \"Canon - LP-E10 Lithium-Ion Battery Pack - Black\", 'description_short' => \"Compatible with Canon EOS Rebel T3 digital cameras; 7.4V; 860 mAh\", 'description_long' => \"Compatible with Canon EOS Rebel T3 digital cameras; 7.4V; 860 mAh\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/canon-lp-e10-lithium-ion-battery-pack-black/2209067.p?id=1218314737643&skuId=2209067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209067_sa.jpg\"}', 'upc' => '013803133455', 'provider' => 'bestbuy'],\n ['name' => \"The Chronicles of Narnia: The Voyage of the Dawn Treader (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chronicles-of-narnia-the-voyage-of-the-dawn-treader-dvd/2209076.p?id=2190918&skuId=2209076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209076_sa.jpg\"}', 'upc' => '024543707417', 'provider' => 'bestbuy'],\n ['name' => \"The Chronicles of Narnia: The Voyage of the Dawn Treader (Blu-ray/DVD)(Digital Copy)(with Movie Money)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chronicles-of-narnia-the-voyage-of-the-dawn-treader-blu-ray-dvddigital-copywith-movie-money/2209085.p?id=2190918&skuId=2209085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209085_sa.jpg\"}', 'upc' => '024543751182', 'provider' => 'bestbuy'],\n ['name' => \"The Chronicles of Narnia: The Voyage of the Dawn Treader (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-chronicles-of-narnia-the-voyage-of-the-dawn-treader-dvd/2209155.p?id=2190918&skuId=2209155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209155_sa.jpg\"}', 'upc' => '024543740223', 'provider' => 'bestbuy'],\n ['name' => \"The Sporting Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sporting-life-cd/2209336.p?id=106378&skuId=2209336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2209336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2209\\/2209336_sa.jpg\"}', 'upc' => '024596167220', 'provider' => 'bestbuy'],\n ['name' => \"Shadow Boxing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shadow-boxing-cd/2210193.p?id=2609031&skuId=2210193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210193_sa.jpg\"}', 'upc' => '603993920128', 'provider' => 'bestbuy'],\n ['name' => \"Blows for 1300 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blows-for-1300-cd/2210459.p?id=1395874&skuId=2210459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210459_sa.jpg\"}', 'upc' => '038153047122', 'provider' => 'bestbuy'],\n ['name' => \"Get Your Kicks - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-your-kicks-cd/2210468.p?id=1395875&skuId=2210468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210468_sa.jpg\"}', 'upc' => '038153066826', 'provider' => 'bestbuy'],\n ['name' => \"East Coast Jive - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-coast-jive-cd-various/2210477.p?id=1422774&skuId=2210477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210477_sa.jpg\"}', 'upc' => '038153066925', 'provider' => 'bestbuy'],\n ['name' => \"Home [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-pa-cd/2210510.p?id=108285&skuId=2210510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210510_sa.jpg\"}', 'upc' => '724382911326', 'provider' => 'bestbuy'],\n ['name' => \"Christmas in New Orleans with Johnny Adams - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-in-new-orleans-with-johnny-adams-cd/2210538.p?id=148168&skuId=2210538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210538.jpg\"}', 'upc' => '096094501028', 'provider' => 'bestbuy'],\n ['name' => \"Disco 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disco-2-cd/2210832.p?id=107909&skuId=2210832&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2210832', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2210\\/2210832_sa.jpg\"}', 'upc' => '724382810520', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - Flip Case for Samsung Galaxy Note 3 Cell Phones - Pink\", 'description_short' => \"Compatible with Samsung Galaxy Note 3 cell phones; offers screen protection; interactive S-view window; automatic power on/off display\", 'description_long' => \"Compatible with Samsung Galaxy Note 3 cell phones; offers screen protection; interactive S-view window; automatic power on/off display\", 'price' => 59.99, 'sale_price' => 14.99, 'url' => 'http://www.bestbuy.com/site/samsung-flip-case-for-samsung-galaxy-note-3-cell-phones-pink/2211014.p?id=1219070171787&skuId=2211014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211014_sa.jpg\"}', 'upc' => '887276967226', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - Flip Case for Samsung Galaxy Note 3 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy Note 3 cell phones; offers screen protection; interactive S-view window; automatic power on/off display\", 'description_long' => \"Compatible with Samsung Galaxy Note 3 cell phones; offers screen protection; interactive S-view window; automatic power on/off display\", 'price' => 59.99, 'sale_price' => 20.99, 'url' => 'http://www.bestbuy.com/site/samsung-flip-case-for-samsung-galaxy-note-3-cell-phones-black/2211023.p?id=1219070172058&skuId=2211023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211023_sa.jpg\"}', 'upc' => '887276967202', 'provider' => 'bestbuy'],\n ['name' => \"Lost in the Glare - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-in-the-glare-cd/2211069.p?id=2250888&skuId=2211069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211069_sa.jpg\"}', 'upc' => '790377028027', 'provider' => 'bestbuy'],\n ['name' => \"Don't Fight the Feelin' [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-fight-the-feelin-pa-cd/2211261.p?id=108454&skuId=2211261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211261.jpg\"}', 'upc' => '724383088928', 'provider' => 'bestbuy'],\n ['name' => \"Pulp Fiction [PA] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pulp-fiction-pa-cd-original-soundtrack/2211314.p?id=3278901&skuId=2211314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211314_sa.jpg\"}', 'upc' => '008811110321', 'provider' => 'bestbuy'],\n ['name' => \"A Grand Night for Singing [Original Broadway... - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-grand-night-for-singing-original-broadway-cd-original-broadway-cast/2211430.p?id=2066143&skuId=2211430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211430.jpg\"}', 'upc' => '030206551624', 'provider' => 'bestbuy'],\n ['name' => \"The Sweetest Gift - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sweetest-gift-cd/2211608.p?id=108515&skuId=2211608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211608_sa.jpg\"}', 'upc' => '008811109127', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Eve - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-eve-cd/2211699.p?id=108518&skuId=2211699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211699_sa.jpg\"}', 'upc' => '083616104621', 'provider' => 'bestbuy'],\n ['name' => \"Chance In A Million - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chance-in-a-million-cd/2211840.p?id=2674747&skuId=2211840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211840.jpg\"}', 'upc' => '756173196025', 'provider' => 'bestbuy'],\n ['name' => \"Souvenir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/souvenir-cd/2211902.p?id=133531&skuId=2211902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211902_sa.jpg\"}', 'upc' => '724863304128', 'provider' => 'bestbuy'],\n ['name' => \"Gospel Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gospel-favorites-cd/2211939.p?id=108144&skuId=2211939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211939_sa.jpg\"}', 'upc' => '076742078423', 'provider' => 'bestbuy'],\n ['name' => \"The Mad Reel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mad-reel-cd/2211966.p?id=108442&skuId=2211966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2211966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2211\\/2211966_sa.jpg\"}', 'upc' => '096297039724', 'provider' => 'bestbuy'],\n ['name' => \"Songs and Portraits [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-and-portraits-digipak-cd/2212013.p?id=2417760&skuId=2212013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212013_sa.jpg\"}', 'upc' => '896434001504', 'provider' => 'bestbuy'],\n ['name' => \"The Gospel Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gospel-collection-cd/2212068.p?id=2986166&skuId=2212068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212068.jpg\"}', 'upc' => '886977948527', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonk Girl: The Loretta Lynn... [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonk-girl-the-loretta-lynn-box-cd/2212224.p?id=108157&skuId=2212224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212224_sa.jpg\"}', 'upc' => '008811107024', 'provider' => 'bestbuy'],\n ['name' => \"Strung Out on the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strung-out-on-the-blues-cd/2212368.p?id=125246&skuId=2212368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212368_sa.jpg\"}', 'upc' => '028568600326', 'provider' => 'bestbuy'],\n ['name' => \"Bryan White - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bryan-white-cd/2212395.p?id=103899&skuId=2212395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212395_sa.jpg\"}', 'upc' => '075596164221', 'provider' => 'bestbuy'],\n ['name' => \"Segundo Romance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/segundo-romance-cd/2212830.p?id=1373939&skuId=2212830&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2212830', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2212\\/2212830_sa.jpg\"}', 'upc' => '745099723422', 'provider' => 'bestbuy'],\n ['name' => \"Alternating Currents - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alternating-currents-cd/2213973.p?id=71099&skuId=2213973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2213973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2213\\/2213973_sa.jpg\"}', 'upc' => '051617800521', 'provider' => 'bestbuy'],\n ['name' => \"Access All Areas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/access-all-areas-cd/2213982.p?id=71098&skuId=2213982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2213982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2213\\/2213982_sa.jpg\"}', 'upc' => '051617800729', 'provider' => 'bestbuy'],\n ['name' => \"Godzilla - PlayStation 4\", 'description_short' => \"Become the King of the Monsters as Godzilla\", 'description_long' => \"Become the King of the Monsters as Godzilla\", 'price' => 29.99, 'sale_price' => 19.99, 'url' => 'http://www.bestbuy.com/site/godzilla-playstation-4/2214108.p?id=1219532426302&skuId=2214108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2214108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2214\\/2214108_sa.jpg\"}', 'upc' => '722674120333', 'provider' => 'bestbuy'],\n ['name' => \"Regalo de Navidad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/regalo-de-navidad-cd/2214240.p?id=108310&skuId=2214240&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2214240', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2214\\/2214240_sa.jpg\"}', 'upc' => '724383027224', 'provider' => 'bestbuy'],\n ['name' => \"Shake It Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-it-up-cd/2214446.p?id=285573&skuId=2214446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2214446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2214\\/2214446_sa.jpg\"}', 'upc' => '722871114821', 'provider' => 'bestbuy'],\n ['name' => \"Matilda - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/matilda-cd-original-broadway-cast/2215001.p?id=2756129&skuId=2215001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215001_sa.jpg\"}', 'upc' => '884501960021', 'provider' => 'bestbuy'],\n ['name' => \"Bluestime - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluestime-cd/2215098.p?id=108882&skuId=2215098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215098.jpg\"}', 'upc' => '011661313422', 'provider' => 'bestbuy'],\n ['name' => \"Polka Your Troubles Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polka-your-troubles-away-cd/2215132.p?id=110738&skuId=2215132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215132_sa.jpg\"}', 'upc' => '011661605725', 'provider' => 'bestbuy'],\n ['name' => \"From the Cradle - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-cradle-cd/2215212.p?id=108115&skuId=2215212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215212_sa.jpg\"}', 'upc' => '093624573524', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Joe Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-joe-moon-cd/2215392.p?id=108118&skuId=2215392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215392_sa.jpg\"}', 'upc' => '093624571421', 'provider' => 'bestbuy'],\n ['name' => \"Songs of the West - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-the-west-cd/2215418.p?id=108119&skuId=2215418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215418_sa.jpg\"}', 'upc' => '093624572527', 'provider' => 'bestbuy'],\n ['name' => \"David Mullen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/david-mullen-cd/2215463.p?id=107147&skuId=2215463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215463_sa.jpg\"}', 'upc' => '093624576525', 'provider' => 'bestbuy'],\n ['name' => \"Now Look - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-look-cd/2215533.p?id=104694&skuId=2215533&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215533', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215533_sa.jpg\"}', 'upc' => '093624569329', 'provider' => 'bestbuy'],\n ['name' => \"Ready for the Storm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ready-for-the-storm-cd/2215766.p?id=108459&skuId=2215766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215766_sa.jpg\"}', 'upc' => '048248114721', 'provider' => 'bestbuy'],\n ['name' => \"Capernaum - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capernaum-cd/2215775.p?id=108460&skuId=2215775&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2215775', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2215\\/2215775_sa.jpg\"}', 'upc' => '048248114622', 'provider' => 'bestbuy'],\n ['name' => \"Live & Awesome - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-awesome-cd/2216006.p?id=136197&skuId=2216006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216006_sa.jpg\"}', 'upc' => '722485413129', 'provider' => 'bestbuy'],\n ['name' => \"Jacks & Kings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jacks-kings-cd/2216051.p?id=93348&skuId=2216051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216051_sa.jpg\"}', 'upc' => '722485412023', 'provider' => 'bestbuy'],\n ['name' => \"Czech It Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/czech-it-out-cd/2216168.p?id=109410&skuId=2216168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216168_sa.jpg\"}', 'upc' => '715949101229', 'provider' => 'bestbuy'],\n ['name' => \"Cop and Speeder [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cop-and-speeder-pa-cd/2216239.p?id=1459229&skuId=2216239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216239_sa.jpg\"}', 'upc' => '018663106328', 'provider' => 'bestbuy'],\n ['name' => \"Flashback - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flashback-cd/2216417.p?id=109480&skuId=2216417&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216417', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216417_sa.jpg\"}', 'upc' => '011661032224', 'provider' => 'bestbuy'],\n ['name' => \"Language of the Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/language-of-the-soul-cd/2216480.p?id=109506&skuId=2216480&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216480', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216480.jpg\"}', 'upc' => '011661955424', 'provider' => 'bestbuy'],\n ['name' => \"Gershwin for Lovers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gershwin-for-lovers-cd/2216578.p?id=108259&skuId=2216578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216578_sa.jpg\"}', 'upc' => '074646643723', 'provider' => 'bestbuy'],\n ['name' => \"Heartsongs: Live from Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heartsongs-live-from-home-cd/2216738.p?id=108261&skuId=2216738&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216738', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216738_sa.jpg\"}', 'upc' => '074646612323', 'provider' => 'bestbuy'],\n ['name' => \"One More Once - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-once-cd/2216756.p?id=108262&skuId=2216756&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216756_sa.jpg\"}', 'upc' => '074646620427', 'provider' => 'bestbuy'],\n ['name' => \"B-Sides & Lost Grooves - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/b-sides-lost-grooves-cd/2216845.p?id=108266&skuId=2216845&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216845', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216845_sa.jpg\"}', 'upc' => '074645788920', 'provider' => 'bestbuy'],\n ['name' => \"Loverboy Classics: Their Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loverboy-classics-their-greatest-hits-cd/2216863.p?id=108268&skuId=2216863&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2216863', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2216\\/2216863_sa.jpg\"}', 'upc' => '074646664827', 'provider' => 'bestbuy'],\n ['name' => \"Little Mermaid II: Return to the Sea/Little Mermaid: Ariel's Beginning [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-mermaid-ii-return-to-the-sea-little-mermaid-ariels-beginning-2-discs-dvd/2217009.p?id=2755350&skuId=2217009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217009_sa.jpg\"}', 'upc' => '786936838213', 'provider' => 'bestbuy'],\n ['name' => \"Little Mermaid II: Return to the Sea/Little Mermaid: Ariel's Beginning [3 Discs] [Blu-ray/DVD] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-mermaid-ii-return-to-the-sea-little-mermaid-ariels-beginning-3-discs-blu-ray-dvd-blu-ray-disc/2217018.p?id=2755314&skuId=2217018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217018.jpg\"}', 'upc' => '786936836158', 'provider' => 'bestbuy'],\n ['name' => \"Jake and the Never Land Pirates: Jake's Never Land Rescue (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jake-and-the-never-land-pirates-jakes-never-land-rescue-dvd/2217081.p?id=2740001&skuId=2217081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217081_sa.jpg\"}', 'upc' => '786936836899', 'provider' => 'bestbuy'],\n ['name' => \"Planes (Blu-ray Disc) (2 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planes-blu-ray-disc-2-disc-digital-copy/2217105.p?id=2765418&skuId=2217105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217105_sa.jpg\"}', 'upc' => '786936834581', 'provider' => 'bestbuy'],\n ['name' => \"Winnie the Pooh: A Very Merry Pooh Year (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winnie-the-pooh-a-very-merry-pooh-year-blu-ray-disc-2-disc/2217114.p?id=63074&skuId=2217114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2217114.jpg\"}', 'upc' => '786936837049', 'provider' => 'bestbuy'],\n ['name' => \"Planes (DVD) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planes-dvd-digital-copy/2217123.p?id=2765418&skuId=2217123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217123.jpg\"}', 'upc' => '786936834628', 'provider' => 'bestbuy'],\n ['name' => \"Winnie the Pooh: A Very Merry Pooh Year (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winnie-the-pooh-a-very-merry-pooh-year-dvd/2217132.p?id=63074&skuId=2217132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2217132.jpg\"}', 'upc' => '786936837056', 'provider' => 'bestbuy'],\n ['name' => \"Mickey's Christmas Carol (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mickeys-christmas-carol-dvd/2217141.p?id=23238&skuId=2217141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217141_sa.jpg\"}', 'upc' => '786936837179', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-blues-cd/2217158.p?id=108748&skuId=2217158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217158_sa.jpg\"}', 'upc' => '751793003425', 'provider' => 'bestbuy'],\n ['name' => \"Planes (Blu-ray 3D) (3 Disc) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planes-blu-ray-3d-3-disc-digital-copy/2217169.p?id=2765418&skuId=2217169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217169_sa.jpg\"}', 'upc' => '786936836844', 'provider' => 'bestbuy'],\n ['name' => \"Cars (Blu-ray 3D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 42.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cars-blu-ray-3d/2217187.p?id=1565156&skuId=2217187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217187_sa.jpg\"}', 'upc' => '786936835588', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Wii Remote Plus - Red/Blue\", 'description_short' => \"Enjoy increased motion sensitivity and the brilliant colors of this Wii Remote Plus\", 'description_long' => \"Enjoy increased motion sensitivity and the brilliant colors of this Wii Remote Plus\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-wii-remote-plus-red-blue/2217457.p?id=1219071226332&skuId=2217457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217457_sa.jpg\"}', 'upc' => '045496891589', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - Wii Remote Plus - Green/Blue\", 'description_short' => \"Enjoy increased motion sensitivity and the brilliant colors of this Wii Remote Plus\", 'description_long' => \"Enjoy increased motion sensitivity and the brilliant colors of this Wii Remote Plus\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-wii-remote-plus-green-blue/2217466.p?id=1219071226530&skuId=2217466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217466_sa.jpg\"}', 'upc' => '045496891572', 'provider' => 'bestbuy'],\n ['name' => \"Canon - BG-E16 Battery Grip - Black\", 'description_short' => \"Compatible with Canon 7D Mark II cameras; works with 2 LP-E6N batteries, 6 AA LR6 batteries or an AC adapter kit; main dial; multi controller; shutter, AF point selection, AE lock/FE lock, AF start and multifunction buttons\", 'description_long' => \"Compatible with Canon 7D Mark II cameras; works with 2 LP-E6N batteries, 6 AA LR6 batteries or an AC adapter kit; main dial; multi controller; shutter, AF point selection, AE lock/FE lock, AF start and multifunction buttons\", 'price' => 319.99, 'sale_price' => 242.99, 'url' => 'http://www.bestbuy.com/site/canon-bg-e16-battery-grip-black/2217484.p?id=1219533486198&skuId=2217484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2217484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2217\\/2217484_sa.jpg\"}', 'upc' => '013803237061', 'provider' => 'bestbuy'],\n ['name' => \"Canon - LP-E6N Lithium-Ion Battery - Black\", 'description_short' => \"Compatible with Canon EOS 7D Mark II digital cameras; 7.2V DC power; rechargeable design\", 'description_long' => \"Compatible with Canon EOS 7D Mark II digital cameras; 7.2V DC power; rechargeable design\", 'price' => 99.99, 'sale_price' => 76.99, 'url' => 'http://www.bestbuy.com/site/canon-lp-e6n-lithium-ion-battery-black/2219025.p?id=1219533487080&skuId=2219025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2219025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2219\\/2219025_sa.jpg\"}', 'upc' => '013803240054', 'provider' => 'bestbuy'],\n ['name' => \"RCA - 3-Device Universal Remote - Black\", 'description_short' => \"From our expanded online assortment; controls up to 3 devices; partially backlit design; VCR functions; mute key\", 'description_long' => \"From our expanded online assortment; controls up to 3 devices; partially backlit design; VCR functions; mute key\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-3-device-universal-remote-black/2219101.p?id=1051384430732&skuId=2219101', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2219101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2219\\/2219101_sa.jpg\"}', 'upc' => '079000305347', 'provider' => 'bestbuy'],\n ['name' => \"Cabrel 77-78 (France) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cabrel-77-78-france-cd/2219771.p?id=3218436&skuId=2219771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2219771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '766928077226', 'provider' => 'bestbuy'],\n ['name' => \"Definitive Technology - VDXA Mythos ST-L 6\\\" x 10\\\" 3-Way Floor Speaker (Each) - Black\", 'description_short' => \"350W peak power; 1200W amplifier; 6&quot; x 10&quot; active carbon woofer; dual 5-1/4&quot; midrange drivers; magnesium/aluminum-dome tweeter; biwireable, bi-ampable connectors\", 'description_long' => \"350W peak power; 1200W amplifier; 6&quot; x 10&quot; active carbon woofer; dual 5-1/4&quot; midrange drivers; magnesium/aluminum-dome tweeter; biwireable, bi-ampable connectors\", 'price' => 2499.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/definitive-technology-vdxa-mythos-st-l-6-x-10-3-way-floor-speaker-each-black/2220002.p?id=1219070769171&skuId=2220002', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2220002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2220\\/2220002_sa.jpg\"}', 'upc' => '093207098000', 'provider' => 'bestbuy'],\n ['name' => \"Chansons Populaires (France) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chansons-populaires-france-cd/2220019.p?id=3236527&skuId=2220019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2220019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '766928079626', 'provider' => 'bestbuy'],\n ['name' => \"GE - Plug-In Smart Dimmer Light Switch - White\", 'description_short' => \"GE Plug-In Smart Dimmer Light Switch: Compatible with select gateways and hubs; works with Zigbee; 120V; 15 amps; handles up to 300W incandescent and 150W dimmable LED and CFL bulbs\", 'description_long' => \"GE Plug-In Smart Dimmer Light Switch: Compatible with select gateways and hubs; works with Zigbee; 120V; 15 amps; handles up to 300W incandescent and 150W dimmable LED and CFL bulbs\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-plug-in-smart-dimmer-light-switch-white/2220066.p?id=1219533486210&skuId=2220066', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2220066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2220\\/2220066_sa.jpg\"}', 'upc' => '030878138758', 'provider' => 'bestbuy'],\n ['name' => \"Beat Kennel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beat-kennel-cd/2220803.p?id=3192690&skuId=2220803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2220803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2220\\/2220803_sa.jpg\"}', 'upc' => '027312012620', 'provider' => 'bestbuy'],\n ['name' => \"Mystery Project - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mystery-project-cd/2220812.p?id=3192693&skuId=2220812&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2220812', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2220\\/2220812_sa.jpg\"}', 'upc' => '027312014723', 'provider' => 'bestbuy'],\n ['name' => \"GE - Plug-In Smart Light Switch - White\", 'description_short' => \"GE Plug-In Smart Light Switch: Works with Zigbee; compatible with select gateways and hubs; adds remote on/off to table and floor lamps; offers control of small appliances; handles up to 600W from most types of bulbs\", 'description_long' => \"GE Plug-In Smart Light Switch: Works with Zigbee; compatible with select gateways and hubs; adds remote on/off to table and floor lamps; offers control of small appliances; handles up to 600W from most types of bulbs\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ge-plug-in-smart-light-switch-white/2221422.p?id=1219533980579&skuId=2221422', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2221422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2221\\/2221422_sa.jpg\"}', 'upc' => '030878138765', 'provider' => 'bestbuy'],\n ['name' => \"Cool Christmas Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cool-christmas-blues-cd/2222455.p?id=110730&skuId=2222455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222455_sa.jpg\"}', 'upc' => '011661956124', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Gonzo Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-gonzo-style-cd/2222464.p?id=2305315&skuId=2222464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222464_sa.jpg\"}', 'upc' => '014431031229', 'provider' => 'bestbuy'],\n ['name' => \"Catwalk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/catwalk-cd/2222801.p?id=1589445&skuId=2222801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222801.jpg\"}', 'upc' => '009119203821', 'provider' => 'bestbuy'],\n ['name' => \"Epiphany: Gregorian Chants From Hungary - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/epiphany-gregorian-chants-from-hungary-cd/2222829.p?id=1829099&skuId=2222829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '750582157424', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Chant: Trad'L Latin Plainchant - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-chant-tradl-latin-plainchant-various-cd/2222856.p?id=1763900&skuId=2222856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222856.jpg\"}', 'upc' => '750582209925', 'provider' => 'bestbuy'],\n ['name' => \"Welcome Yule: Choral Music For Season Of Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-yule-choral-music-for-season-of-christmas-cd/2222865.p?id=1830013&skuId=2222865&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222865', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222865.jpg\"}', 'upc' => '750582210525', 'provider' => 'bestbuy'],\n ['name' => \"Mandala - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mandala-cd/2222936.p?id=107939&skuId=2222936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2222936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2222\\/2222936.jpg\"}', 'upc' => '794017100128', 'provider' => 'bestbuy'],\n ['name' => \"Dungeon Of Bass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dungeon-of-bass-cd/2223506.p?id=1543819&skuId=2223506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2223506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2223\\/2223506_sa.jpg\"}', 'upc' => '754863201127', 'provider' => 'bestbuy'],\n ['name' => \"Music for the Native Americans - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-the-native-americans-cd-original-soundtrack/2223882.p?id=108435&skuId=2223882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2223882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2223\\/2223882_sa.jpg\"}', 'upc' => '724382829522', 'provider' => 'bestbuy'],\n ['name' => \"The Perfect Flaw - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-perfect-flaw-cd/2223891.p?id=110461&skuId=2223891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2223891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2223\\/2223891_sa.jpg\"}', 'upc' => '025041104524', 'provider' => 'bestbuy'],\n ['name' => \"Proto-Ambient Music from Hearts of Space - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/proto-ambient-music-from-hearts-of-space-cd-various/2223999.p?id=110459&skuId=2223999&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2223999', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2223\\/2223999.jpg\"}', 'upc' => '025041110525', 'provider' => 'bestbuy'],\n ['name' => \"JLAB - Jbuds Glam Rockstar Earbud Headphones - Pink\", 'description_short' => \"JLAB Jbuds Glam Rockstar Earbud Headphones: Sound isolation; universal in-line microphone with track control; 3&#039; flat, tangle-resistant cable; 7 gel tip sizes; cable clip\", 'description_long' => \"JLAB Jbuds Glam Rockstar Earbud Headphones: Sound isolation; universal in-line microphone with track control; 3&#039; flat, tangle-resistant cable; 7 gel tip sizes; cable clip\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jlab-jbuds-glam-rockstar-earbud-headphones-pink/2224062.p?id=1219533486211&skuId=2224062', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224062_sa.jpg\"}', 'upc' => '812887014113', 'provider' => 'bestbuy'],\n ['name' => \"American Cowboy [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-cowboy-box-cd/2224113.p?id=108628&skuId=2224113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224113_sa.jpg\"}', 'upc' => '724383046522', 'provider' => 'bestbuy'],\n ['name' => \"Live '82 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-82-cd/2224284.p?id=109422&skuId=2224284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224284.jpg\"}', 'upc' => '730182604924', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Bitter Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-bitter-blues-cd/2224300.p?id=109440&skuId=2224300&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224300', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224300.jpg\"}', 'upc' => '730182605020', 'provider' => 'bestbuy'],\n ['name' => \"Five Long Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-long-years-cd/2224319.p?id=108348&skuId=2224319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224319_sa.jpg\"}', 'upc' => '730182605129', 'provider' => 'bestbuy'],\n ['name' => \"Decoration Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/decoration-day-cd/2224346.p?id=108350&skuId=2224346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224346_sa.jpg\"}', 'upc' => '730182605327', 'provider' => 'bestbuy'],\n ['name' => \"My Heart Is Bleeding - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-heart-is-bleeding-cd/2224355.p?id=109452&skuId=2224355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224355_sa.jpg\"}', 'upc' => '730182605426', 'provider' => 'bestbuy'],\n ['name' => \"Goin' on Main Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/goin-on-main-street-cd/2224364.p?id=109457&skuId=2224364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224364_sa.jpg\"}', 'upc' => '730182605525', 'provider' => 'bestbuy'],\n ['name' => \"Blind John Davis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blind-john-davis-cd/2224382.p?id=109466&skuId=2224382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224382.jpg\"}', 'upc' => '730182605624', 'provider' => 'bestbuy'],\n ['name' => \"Midnight Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/midnight-baby-cd/2224391.p?id=109469&skuId=2224391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224391_sa.jpg\"}', 'upc' => '730182605723', 'provider' => 'bestbuy'],\n ['name' => \"The Sacred Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sacred-fire-cd/2224505.p?id=108810&skuId=2224505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224505_sa.jpg\"}', 'upc' => '046286366423', 'provider' => 'bestbuy'],\n ['name' => \"Bangin' on Wax, Vol. 2: The Saga Continues [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bangin-on-wax-vol-2-the-saga-continues-pa-cd/2224532.p?id=109557&skuId=2224532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224532_sa.jpg\"}', 'upc' => '026656671524', 'provider' => 'bestbuy'],\n ['name' => \"Old Corrals and Sagebrush & Other Cowboy... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-corrals-and-sagebrush-other-cowboy-cd/2224550.p?id=108291&skuId=2224550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224550_sa.jpg\"}', 'upc' => '015707005227', 'provider' => 'bestbuy'],\n ['name' => \"Old Time Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-time-music-cd/2224578.p?id=108289&skuId=2224578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224578_sa.jpg\"}', 'upc' => '015707701129', 'provider' => 'bestbuy'],\n ['name' => \"Clinch Mountain Bluegrass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clinch-mountain-bluegrass-cd/2224596.p?id=108290&skuId=2224596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224596_sa.jpg\"}', 'upc' => '015707701822', 'provider' => 'bestbuy'],\n ['name' => \"Show Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/show-me-cd/2224612.p?id=79028&skuId=2224612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224612_sa.jpg\"}', 'upc' => '026656274626', 'provider' => 'bestbuy'],\n ['name' => \"Piano Impressions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-impressions-cd/2224667.p?id=1580657&skuId=2224667&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224667', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224667_sa.jpg\"}', 'upc' => '096507715325', 'provider' => 'bestbuy'],\n ['name' => \"South to Mississippi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-to-mississippi-cd/2224710.p?id=122818&skuId=2224710&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224710', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224710_sa.jpg\"}', 'upc' => '034373280721', 'provider' => 'bestbuy'],\n ['name' => \"Brandy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brandy-cd/2224836.p?id=108023&skuId=2224836&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224836', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224836_sa.jpg\"}', 'upc' => '075678261022', 'provider' => 'bestbuy'],\n ['name' => \"I See It Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-see-it-now-cd/2224881.p?id=108024&skuId=2224881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224881_sa.jpg\"}', 'upc' => '075678265624', 'provider' => 'bestbuy'],\n ['name' => \"Whip-Smart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whip-smart-cd/2224907.p?id=1953675&skuId=2224907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2224907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2224\\/2224907.jpg\"}', 'upc' => '724385409820', 'provider' => 'bestbuy'],\n ['name' => \"With You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-you-cd/2225121.p?id=1452155&skuId=2225121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2225121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2225\\/2225121.jpg\"}', 'upc' => '035828015028', 'provider' => 'bestbuy'],\n ['name' => \"The Switch (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-switch-dvd/2225162.p?id=2182366&skuId=2225162&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2225162', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2225\\/2225162_sa.jpg\"}', 'upc' => '031398134251', 'provider' => 'bestbuy'],\n ['name' => \"The Switch (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/the-switch-blu-ray-disc/2225171.p?id=2182366&skuId=2225171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2225171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2225\\/2225171_sa.jpg\"}', 'upc' => '031398134862', 'provider' => 'bestbuy'],\n ['name' => \"HP - Premium Plus Glossy Photo Paper - White\", 'description_short' => \"Compatible with most inkjet printers; designed for photo printing; 4&quot; x 6&quot; photo paper; 100 sheets of paper; smudge- and water-resistant design\", 'description_long' => \"Compatible with most inkjet printers; designed for photo printing; 4&quot; x 6&quot; photo paper; 100 sheets of paper; smudge- and water-resistant design\", 'price' => 16.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-premium-plus-glossy-photo-paper-white/2225357.p?id=1218315367009&skuId=2225357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2225357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2225\\/2225357_sa.jpg\"}', 'upc' => '886111138838', 'provider' => 'bestbuy'],\n ['name' => \"Cumbia & Jazz Fusion [Bonus Tracks] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cumbia-jazz-fusion-bonus-tracks-cd/2225746.p?id=108048&skuId=2225746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2225746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2225\\/2225746_sa.jpg\"}', 'upc' => '081227178529', 'provider' => 'bestbuy'],\n ['name' => \"HP - Premium Plus Glossy Inkjet Photo Paper - White\", 'description_short' => \"Compatible with most inkjet printers; designed for photo printing; 8.5&quot; x 11&quot; photo paper; 25 sheets of paper; smudge- and water-resistant design\", 'description_long' => \"Compatible with most inkjet printers; designed for photo printing; 8.5&quot; x 11&quot; photo paper; 25 sheets of paper; smudge- and water-resistant design\", 'price' => 17.49, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hp-premium-plus-glossy-inkjet-photo-paper-white/2226037.p?id=1218318236889&skuId=2226037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226037_sa.jpg\"}', 'upc' => '886111138852', 'provider' => 'bestbuy'],\n ['name' => \"Yesshows [8 Tracks] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yesshows-8-tracks-remaster-cd/2226040.p?id=104990&skuId=2226040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226040_sa.jpg\"}', 'upc' => '075678268625', 'provider' => 'bestbuy'],\n ['name' => \"Corky Siegel's Chamber Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corky-siegels-chamber-blues-cd/2226442.p?id=108452&skuId=2226442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226442_sa.jpg\"}', 'upc' => '014551482420', 'provider' => 'bestbuy'],\n ['name' => \"Hoodoo Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoodoo-moon-cd/2226451.p?id=108453&skuId=2226451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226451.jpg\"}', 'upc' => '014551482529', 'provider' => 'bestbuy'],\n ['name' => \"Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stories-cd/2226549.p?id=2620678&skuId=2226549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226549_sa.jpg\"}', 'upc' => '029793072421', 'provider' => 'bestbuy'],\n ['name' => \"Brown & Proud, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brown-proud-vol-1-cd-various/2226610.p?id=155047&skuId=2226610&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226610', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226610_sa.jpg\"}', 'upc' => '054291884627', 'provider' => 'bestbuy'],\n ['name' => \"Unto You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unto-you-cd/2226861.p?id=132824&skuId=2226861&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2226861', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2226\\/2226861_sa.jpg\"}', 'upc' => '021401482028', 'provider' => 'bestbuy'],\n ['name' => \"Vampire Knight, Vol. 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vampire-knight-vol-1-dvd/2227014.p?id=2109344&skuId=2227014&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227014', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227014_sa.jpg\"}', 'upc' => '782009241331', 'provider' => 'bestbuy'],\n ['name' => \"Replacement Killers/Truth or Consequences, N.M. (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/replacement-killers-truth-or-consequences-n-m-blu-ray-disc/2227023.p?id=2650680&skuId=2227023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227023.jpg\"}', 'upc' => '683904631084', 'provider' => 'bestbuy'],\n ['name' => \"Stealth/Vertical Limit (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stealth-vertical-limit-blu-ray-disc/2227041.p?id=2593863&skuId=2227041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227041_sa.jpg\"}', 'upc' => '683904631183', 'provider' => 'bestbuy'],\n ['name' => \"Jason's Lyric [PA] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jasons-lyric-pa-cd-original-soundtrack/2227414.p?id=109112&skuId=2227414&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227414', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227414_sa.jpg\"}', 'upc' => '731452291523', 'provider' => 'bestbuy'],\n ['name' => \"Boomtown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boomtown-cd/2227432.p?id=107116&skuId=2227432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227432_sa.jpg\"}', 'upc' => '731452340726', 'provider' => 'bestbuy'],\n ['name' => \"Caravan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caravan-cd/2227888.p?id=108247&skuId=2227888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227888.jpg\"}', 'upc' => '731452303028', 'provider' => 'bestbuy'],\n ['name' => \"Verve Jazz Masters 24: Ella Fitzgerald &... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/verve-jazz-masters-24-ella-fitzgerald-cd/2227931.p?id=108251&skuId=2227931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2227931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2227\\/2227931_sa.jpg\"}', 'upc' => '731452185129', 'provider' => 'bestbuy'],\n ['name' => \"The Last Airbender (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-last-airbender-dvd/2228004.p?id=2154431&skuId=2228004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228004_sa.jpg\"}', 'upc' => '883929302345', 'provider' => 'bestbuy'],\n ['name' => \"Galaxy Quest (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/galaxy-quest-blu-ray-disc/2228031.p?id=49843&skuId=2228031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228031_sa.jpg\"}', 'upc' => '883929302109', 'provider' => 'bestbuy'],\n ['name' => \"Rugrats Movie/Rugrats Go Wild [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rugrats-movie-rugrats-go-wild-2-discs-dvd/2228068.p?id=2649006&skuId=2228068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228068_sa.jpg\"}', 'upc' => '883929310722', 'provider' => 'bestbuy'],\n ['name' => \"2 Pianos Are Better Than 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2-pianos-are-better-than-1-cd/2228084.p?id=276636&skuId=2228084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228084_sa.jpg\"}', 'upc' => '089408037627', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 21.7 Cu. Ft. French Door Refrigerator - Black\", 'description_short' => \"PowerCold feature; Wide-N-Fresh deli drawer; Spill-Catcher glass crisper shelf; sealed FreshLock crispers with humidity control; Beverage Chiller compartment; spill-proof glass shelves\", 'description_long' => \"PowerCold feature; Wide-N-Fresh deli drawer; Spill-Catcher glass crisper shelf; sealed FreshLock crispers with humidity control; Beverage Chiller compartment; spill-proof glass shelves\", 'price' => 2099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-21-7-cu-ft-french-door-refrigerator-black/2228086.p?id=bb2228086&skuId=2228086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228086_sa.jpg\"}', 'upc' => '883049355597', 'provider' => 'bestbuy'],\n ['name' => \"She Turns Me On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/she-turns-me-on-cd/2228182.p?id=96669&skuId=2228182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228182_sa.jpg\"}', 'upc' => '091377120323', 'provider' => 'bestbuy'],\n ['name' => \"Beyond the Valley of the Gift Police - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beyond-the-valley-of-the-gift-police-cd/2228280.p?id=108483&skuId=2228280&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228280', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228280.jpg\"}', 'upc' => '721616015027', 'provider' => 'bestbuy'],\n ['name' => \"Pure Pleasure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-pleasure-cd/2228967.p?id=108232&skuId=2228967&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2228967', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2228\\/2228967_sa.jpg\"}', 'upc' => '011105402620', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 21.7 Cu. Ft. French Door Refrigerator - White\", 'description_short' => \"Electronic controls; spill proof glass shelf, fixed shelf, full-width shelf; chiller zone; freezer: full-width drawer, half-width drawer, slide-out plastic basket; auto defrost; LED interior lighting\", 'description_long' => \"Electronic controls; spill proof glass shelf, fixed shelf, full-width shelf; chiller zone; freezer: full-width drawer, half-width drawer, slide-out plastic basket; auto defrost; LED interior lighting\", 'price' => 2099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-21-7-cu-ft-french-door-refrigerator-white/2229021.p?id=bb2229021&skuId=2229021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2229021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2229\\/2229021_sa.jpg\"}', 'upc' => '883049357300', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Is Here Again (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-is-here-again-dvd/2230016.p?id=1898285&skuId=2230016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2230016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2230\\/2230016_sa.jpg\"}', 'upc' => '683904527844', 'provider' => 'bestbuy'],\n ['name' => \"Maytag - 21.7 Cu. Ft. French Door Refrigerator - Stainless Steel\", 'description_short' => \"PowerCold feature; Wide-N-Fresh deli drawer; Spill-Catcher glass crisper shelf; sealed FreshLock crispers with humidity control; Beverage Chiller compartment; spill-proof glass shelves\", 'description_long' => \"PowerCold feature; Wide-N-Fresh deli drawer; Spill-Catcher glass crisper shelf; sealed FreshLock crispers with humidity control; Beverage Chiller compartment; spill-proof glass shelves\", 'price' => 2099.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/maytag-21-7-cu-ft-french-door-refrigerator-stainless-steel/2230025.p?id=bb2230025&skuId=2230025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2230025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2230\\/2230025_sa.jpg\"}', 'upc' => '883049357270', 'provider' => 'bestbuy'],\n ['name' => \"Laughter in the Rain: The Best of Neil... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laughter-in-the-rain-the-best-of-neil-cd/2230730.p?id=108384&skuId=2230730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2230730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2230\\/2230730_sa.jpg\"}', 'upc' => '030206553925', 'provider' => 'bestbuy'],\n ['name' => \"The Rockin' Chair Lady (1931-1950) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rockin-chair-lady-1931-1950-cd/2231034.p?id=108390&skuId=2231034&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2231034', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2231\\/2231034_sa.jpg\"}', 'upc' => '011105064422', 'provider' => 'bestbuy'],\n ['name' => \"Universe Symph / Orch Set #2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/universe-symph-orch-set-2-cd/2231114.p?id=1757374&skuId=2231114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2231114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2231\\/2231114.jpg\"}', 'upc' => '789368048526', 'provider' => 'bestbuy'],\n ['name' => \"The Conway Twitty Collection [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 37.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-conway-twitty-collection-box-cd/2231187.p?id=108230&skuId=2231187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2231187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2231\\/2231187_sa.jpg\"}', 'upc' => '008811109523', 'provider' => 'bestbuy'],\n ['name' => \"Andrew Lloyd Webber: Welterfolge II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andrew-lloyd-webber-welterfolge-ii-cd/2232426.p?id=3183398&skuId=2232426&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2232426', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2232\\/2232426.jpg\"}', 'upc' => '731451715921', 'provider' => 'bestbuy'],\n ['name' => \"Strategem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strategem-cd/2232471.p?id=108161&skuId=2232471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2232471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2232\\/2232471_sa.jpg\"}', 'upc' => '075992458023', 'provider' => 'bestbuy'],\n ['name' => \"Mind, Body & Soul - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mind-body-soul-cd/2232514.p?id=108171&skuId=2232514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2232514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2232\\/2232514_sa.jpg\"}', 'upc' => '075992455824', 'provider' => 'bestbuy'],\n ['name' => \"Monster - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monster-cd/2232603.p?id=108177&skuId=2232603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2232603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2232\\/2232603_sa.jpg\"}', 'upc' => '093624574026', 'provider' => 'bestbuy'],\n ['name' => \"Make Him Do Right - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/make-him-do-right-cd/2232729.p?id=108192&skuId=2232729&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2232729', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2232\\/2232729_sa.jpg\"}', 'upc' => '093624540021', 'provider' => 'bestbuy'],\n ['name' => \"Merry Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/merry-christmas-cd/2233112.p?id=108780&skuId=2233112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2233112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2233\\/2233112_sa.jpg\"}', 'upc' => '074646422229', 'provider' => 'bestbuy'],\n ['name' => \"Bitter Tears (Ballads of the American Indian) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bitter-tears-ballads-of-the-american-indian-cd/2233345.p?id=108792&skuId=2233345&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2233345', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2233\\/2233345.jpg\"}', 'upc' => '074646650721', 'provider' => 'bestbuy'],\n ['name' => \"Louisiana Christmas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louisiana-christmas-cd-various/2233559.p?id=2162428&skuId=2233559&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2233559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2233\\/2233559_sa.jpg\"}', 'upc' => '046346903926', 'provider' => 'bestbuy'],\n ['name' => \"Birds in the Church - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/birds-in-the-church-cd/2233568.p?id=130596&skuId=2233568&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2233568', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2233\\/2233568_sa.jpg\"}', 'upc' => '048021447022', 'provider' => 'bestbuy'],\n ['name' => \"Mejor Que Nunca (Better Than Ever) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mejor-que-nunca-better-than-ever-cd/2233693.p?id=112313&skuId=2233693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2233693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2233\\/2233693.jpg\"}', 'upc' => '025218922623', 'provider' => 'bestbuy'],\n ['name' => \"Jensen - Rechargeable Battery for Select V-Tech Cordless Phones - White\", 'description_short' => \"Compatible with select V-Tech cordless phones; rechargeable battery; lightweight design\", 'description_long' => \"Compatible with select V-Tech cordless phones; rechargeable battery; lightweight design\", 'price' => 19.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/jensen-rechargeable-battery-for-select-v-tech-cordless-phones-white/2234072.p?id=1218315366820&skuId=2234072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234072_sa.jpg\"}', 'upc' => '044476085741', 'provider' => 'bestbuy'],\n ['name' => \"What If We Were Real - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/what-if-we-were-real-cd/2234133.p?id=2196747&skuId=2234133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234133_sa.jpg\"}', 'upc' => '5099996786321', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Leon Russell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-leon-russell-cd/2234151.p?id=2192750&skuId=2234151&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234151', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234151_sa.jpg\"}', 'upc' => '5099907104428', 'provider' => 'bestbuy'],\n ['name' => \"Philharmonics [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/philharmonics-pa-cd/2234197.p?id=2199182&skuId=2234197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234197_sa.jpg\"}', 'upc' => '843798000476', 'provider' => 'bestbuy'],\n ['name' => \"How to Become Clairvoyant [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/how-to-become-clairvoyant-digipak-cd/2234203.p?id=2192389&skuId=2234203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234203.jpg\"}', 'upc' => '795041782120', 'provider' => 'bestbuy'],\n ['name' => \"That's How We Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-how-we-roll-cd/2234212.p?id=2198212&skuId=2234212&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234212', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234212_sa.jpg\"}', 'upc' => '888072323636', 'provider' => 'bestbuy'],\n ['name' => \"Lonely Lover [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lonely-lover-box-cd/2234221.p?id=2199186&skuId=2234221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234221_sa.jpg\"}', 'upc' => '778325631123', 'provider' => 'bestbuy'],\n ['name' => \"Faithful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/faithful-cd/2234249.p?id=2469407&skuId=2234249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234249_sa.jpg\"}', 'upc' => '602527591056', 'provider' => 'bestbuy'],\n ['name' => \"Rory Gallagher: Irish Tour 1974 - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rory-gallagher-irish-tour-1974-dvd/2234258.p?id=37794&skuId=2234258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234258_sa.jpg\"}', 'upc' => '801213029495', 'provider' => 'bestbuy'],\n ['name' => \"At The Salzburg Festival - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-salzburg-festival-cd/2234264.p?id=1829235&skuId=2234264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234264.jpg\"}', 'upc' => '789368041824', 'provider' => 'bestbuy'],\n ['name' => \"Huevos Rancheros - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/huevos-rancheros-cd/2234267.p?id=2197603&skuId=2234267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234267_sa.jpg\"}', 'upc' => '808835463928', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2234285.p?id=2198214&skuId=2234285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234285_sa.jpg\"}', 'upc' => '602527636931', 'provider' => 'bestbuy'],\n ['name' => \"The Deep Field [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-deep-field-digipak-cd/2234294.p?id=2199183&skuId=2234294&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234294', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234294_sa.jpg\"}', 'upc' => '843798000483', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Kombat: Songs Inspired by the Warriors - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-kombat-songs-inspired-by-the-warriors-cd-original-soundtrack/2234319.p?id=2199188&skuId=2234319&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234319', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234319_sa.jpg\"}', 'upc' => '794043148644', 'provider' => 'bestbuy'],\n ['name' => \"TRON: Legacy Reconfigured - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-legacy-reconfigured-cd-original-soundtrack/2234328.p?id=2189179&skuId=2234328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234328_sa.jpg\"}', 'upc' => '050087239633', 'provider' => 'bestbuy'],\n ['name' => \"Irish Tour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/irish-tour-cd/2234337.p?id=2199179&skuId=2234337&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234337', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234337_sa.jpg\"}', 'upc' => '826992019529', 'provider' => 'bestbuy'],\n ['name' => \"I Want to Be More Like You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-want-to-be-more-like-you-cd/2234344.p?id=131852&skuId=2234344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234344_sa.jpg\"}', 'upc' => '021401482127', 'provider' => 'bestbuy'],\n ['name' => \"Human Hearts [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/human-hearts-digipak-cd/2234346.p?id=2199184&skuId=2234346&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234346', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234346_sa.jpg\"}', 'upc' => '842803005826', 'provider' => 'bestbuy'],\n ['name' => \"No Problem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-problem-cd/2234355.p?id=2322070&skuId=2234355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234355_sa.jpg\"}', 'upc' => '602527411606', 'provider' => 'bestbuy'],\n ['name' => \"Coathanga Strangla [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coathanga-strangla-pa-cd/2234364.p?id=2199181&skuId=2234364&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234364', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234364_sa.jpg\"}', 'upc' => '893981001865', 'provider' => 'bestbuy'],\n ['name' => \"Icon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icon-cd/2234391.p?id=2198225&skuId=2234391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234391.jpg\"}', 'upc' => '602527651842', 'provider' => 'bestbuy'],\n ['name' => \"Highway Fun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/highway-fun-cd/2234424.p?id=111500&skuId=2234424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234424_sa.jpg\"}', 'upc' => '748775152226', 'provider' => 'bestbuy'],\n ['name' => \"Mary Poppins The Supercalifragilistic Musical - CD - Original Cast Recording\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mary-poppins-the-supercalifragilistic-musical-cd-original-cast-recording/2234628.p?id=2189178&skuId=2234628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234628_sa.jpg\"}', 'upc' => '050087238704', 'provider' => 'bestbuy'],\n ['name' => \"Lemonade Mouth - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lemonade-mouth-cd-original-soundtrack/2234646.p?id=2186572&skuId=2234646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234646_sa.jpg\"}', 'upc' => '050087238605', 'provider' => 'bestbuy'],\n ['name' => \"Above the Noise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/above-the-noise-cd/2234664.p?id=2210273&skuId=2234664&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234664_sa.jpg\"}', 'upc' => '600753329245', 'provider' => 'bestbuy'],\n ['name' => \"Definitive Bill Evans on Riverside and... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/definitive-bill-evans-on-riverside-and-cd/2234673.p?id=2192469&skuId=2234673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234673_sa.jpg\"}', 'upc' => '888072327634', 'provider' => 'bestbuy'],\n ['name' => \"The Definitive Miles Davis on Prestige - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-definitive-miles-davis-on-prestige-cd/2234682.p?id=2192468&skuId=2234682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234682_sa.jpg\"}', 'upc' => '888072327627', 'provider' => 'bestbuy'],\n ['name' => \"Bible Songs For Kids [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bible-songs-for-kids-box-cd/2234691.p?id=2199187&skuId=2234691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234691_sa.jpg\"}', 'upc' => '778325631024', 'provider' => 'bestbuy'],\n ['name' => \"Rory Gallagher: Irish Tour 1974 - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rory-gallagher-irish-tour-1974-blu-ray-disc/2234719.p?id=37794&skuId=2234719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2234719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2234\\/2234719_sa.jpg\"}', 'upc' => '801213337590', 'provider' => 'bestbuy'],\n ['name' => \"Halo 5: Guardians Limited Edition - Xbox One\", 'description_short' => \"Hunt the truth\", 'description_long' => \"Hunt the truth\", 'price' => 99.99, 'sale_price' => 84.99, 'url' => 'http://www.bestbuy.com/site/halo-5-guardians-limited-edition-xbox-one/2235002.p?id=1219533980899&skuId=2235002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235002_sa.jpg\"}', 'upc' => '885370928556', 'provider' => 'bestbuy'],\n ['name' => \"Violin Concerto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-concerto-cd/2235334.p?id=1676053&skuId=2235334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235334.jpg\"}', 'upc' => '074645896724', 'provider' => 'bestbuy'],\n ['name' => \"Diamonds and Dirt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diamonds-and-dirt-cd/2235372.p?id=2194307&skuId=2235372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235372_sa.jpg\"}', 'upc' => '693723309071', 'provider' => 'bestbuy'],\n ['name' => \"Money Bags [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/money-bags-pa-cd/2235381.p?id=2194308&skuId=2235381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235381_sa.jpg\"}', 'upc' => '809367217423', 'provider' => 'bestbuy'],\n ['name' => \"Razorback Killers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/razorback-killers-cd/2235609.p?id=2194305&skuId=2235609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235609_sa.jpg\"}', 'upc' => '693723088921', 'provider' => 'bestbuy'],\n ['name' => \"Go Hard Texas, Vol. 2 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-hard-texas-vol-2-pa-cd/2235618.p?id=2194309&skuId=2235618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235618.jpg\"}', 'upc' => '786984091622', 'provider' => 'bestbuy'],\n ['name' => \"The Lost and Found [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-and-found-digipak-cd/2235627.p?id=2194310&skuId=2235627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235627_sa.jpg\"}', 'upc' => '823889911324', 'provider' => 'bestbuy'],\n ['name' => \"Stoner Witch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stoner-witch-cd/2235628.p?id=108614&skuId=2235628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235628_sa.jpg\"}', 'upc' => '075678270420', 'provider' => 'bestbuy'],\n ['name' => \"Rendered Waters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rendered-waters-cd/2235645.p?id=2194312&skuId=2235645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235645_sa.jpg\"}', 'upc' => '693723086927', 'provider' => 'bestbuy'],\n ['name' => \"Awake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/awake-cd/2235646.p?id=108578&skuId=2235646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235646_sa.jpg\"}', 'upc' => '075679012623', 'provider' => 'bestbuy'],\n ['name' => \"Fresh: The Definition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fresh-the-definition-cd/2235654.p?id=2194313&skuId=2235654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235654_sa.jpg\"}', 'upc' => '099923214120', 'provider' => 'bestbuy'],\n ['name' => \"Latin Rap and Videos [CD & DVD] [PA] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/latin-rap-and-videos-cd-dvd-pa-cd-dvd/2235663.p?id=2194314&skuId=2235663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235663.jpg\"}', 'upc' => '809367217621', 'provider' => 'bestbuy'],\n ['name' => \"7... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-digipak-cd/2235672.p?id=2192816&skuId=2235672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235672_sa.jpg\"}', 'upc' => '016351578723', 'provider' => 'bestbuy'],\n ['name' => \"Putumayo Presents: Rumba,... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/putumayo-presents-rumba-digipak-cd/2235681.p?id=2192924&skuId=2235681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235681.jpg\"}', 'upc' => '790248030821', 'provider' => 'bestbuy'],\n ['name' => \"Reckless & Relentless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reckless-relentless-cd/2235709.p?id=2210277&skuId=2235709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235709_sa.jpg\"}', 'upc' => '894587001501', 'provider' => 'bestbuy'],\n ['name' => \"Neighborhood Music, Vol. 2 [Box] [PA] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/neighborhood-music-vol-2-box-pa-cd-various/2235718.p?id=2194315&skuId=2235718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235718_sa.jpg\"}', 'upc' => '809367217522', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2235727.p?id=2194316&skuId=2235727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235727_sa.jpg\"}', 'upc' => '099923514725', 'provider' => 'bestbuy'],\n ['name' => \"2011 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2011-cd/2235736.p?id=2194317&skuId=2235736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235736_sa.jpg\"}', 'upc' => '099923200420', 'provider' => 'bestbuy'],\n ['name' => \"Steady as She Goes [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steady-as-she-goes-digipak-cd/2235745.p?id=2194318&skuId=2235745&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235745', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235745_sa.jpg\"}', 'upc' => '033651024125', 'provider' => 'bestbuy'],\n ['name' => \"Never Stop [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-stop-cd-dvd-digipak-cd-dvd-deluxe-edition/2235754.p?id=2194435&skuId=2235754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235754.jpg\"}', 'upc' => '099923236221', 'provider' => 'bestbuy'],\n ['name' => \"Cut - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cut-cd/2235772.p?id=2193975&skuId=2235772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235772_sa.jpg\"}', 'upc' => '800212997521', 'provider' => 'bestbuy'],\n ['name' => \"Final Approach [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/final-approach-digipak-cd/2235809.p?id=2194306&skuId=2235809&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235809', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235809_sa.jpg\"}', 'upc' => '706442390425', 'provider' => 'bestbuy'],\n ['name' => \"The Cold Still - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-cold-still-cd/2235818.p?id=2195540&skuId=2235818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2235818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2235\\/2235818_sa.jpg\"}', 'upc' => '634457543829', 'provider' => 'bestbuy'],\n ['name' => \"Beautiful Empty [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beautiful-empty-digipak-cd/2236098.p?id=2196541&skuId=2236098&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236098', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236098_sa.jpg\"}', 'upc' => '029817997525', 'provider' => 'bestbuy'],\n ['name' => \"Guiltless - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guiltless-cd/2236104.p?id=2196542&skuId=2236104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236104_sa.jpg\"}', 'upc' => '781676710928', 'provider' => 'bestbuy'],\n ['name' => \"Transhuman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transhuman-cd/2236113.p?id=2212922&skuId=2236113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236113.jpg\"}', 'upc' => '039841499124', 'provider' => 'bestbuy'],\n ['name' => \"Last Rites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-rites-cd/2236122.p?id=2196544&skuId=2236122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236122.jpg\"}', 'upc' => '039841498127', 'provider' => 'bestbuy'],\n ['name' => \"Until Spring - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/until-spring-cd/2236131.p?id=2196545&skuId=2236131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236131_sa.jpg\"}', 'upc' => '020286155812', 'provider' => 'bestbuy'],\n ['name' => \"Here We Rest [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-we-rest-digipak-cd/2236159.p?id=2196546&skuId=2236159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236159_sa.jpg\"}', 'upc' => '804879246527', 'provider' => 'bestbuy'],\n ['name' => \"Got Your Back [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/got-your-back-digipak-cd/2236168.p?id=2196547&skuId=2236168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236168_sa.jpg\"}', 'upc' => '751097075029', 'provider' => 'bestbuy'],\n ['name' => \"Always Be Happy, But Stay Evil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/always-be-happy-but-stay-evil-cd/2236177.p?id=2196548&skuId=2236177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236177_sa.jpg\"}', 'upc' => '020286155348', 'provider' => 'bestbuy'],\n ['name' => \"Murder the Mountains - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/murder-the-mountains-cd/2236195.p?id=2196550&skuId=2236195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236195.jpg\"}', 'upc' => '781676714421', 'provider' => 'bestbuy'],\n ['name' => \"GB City [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gb-city-digipak-cd/2236229.p?id=2196551&skuId=2236229&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236229_sa.jpg\"}', 'upc' => '767981124520', 'provider' => 'bestbuy'],\n ['name' => \"Level 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/level-2-cd/2236238.p?id=2196552&skuId=2236238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236238_sa.jpg\"}', 'upc' => '656191008921', 'provider' => 'bestbuy'],\n ['name' => \"American Legacies [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-legacies-digipak-cd/2236247.p?id=2196553&skuId=2236247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236247.jpg\"}', 'upc' => '829305001525', 'provider' => 'bestbuy'],\n ['name' => \"Rebirth of New Orleans [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rebirth-of-new-orleans-digipak-cd/2236256.p?id=2196554&skuId=2236256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236256_sa.jpg\"}', 'upc' => '652905120224', 'provider' => 'bestbuy'],\n ['name' => \"Africa for Africa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/africa-for-africa-cd/2236265.p?id=2196762&skuId=2236265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236265_sa.jpg\"}', 'upc' => '720841111320', 'provider' => 'bestbuy'],\n ['name' => \"Lollipop [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lollipop-digipak-cd/2236283.p?id=2196555&skuId=2236283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236283_sa.jpg\"}', 'upc' => '020286155645', 'provider' => 'bestbuy'],\n ['name' => \"Origins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/origins-cd/2236308.p?id=2196557&skuId=2236308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236308_sa.jpg\"}', 'upc' => '734923006343', 'provider' => 'bestbuy'],\n ['name' => \"Why You Worried 'Bout Me? [Single] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/why-you-worried-bout-me-single-pa-cd/2236317.p?id=2198679&skuId=2236317&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236317', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236317_sa.jpg\"}', 'upc' => '652905120323', 'provider' => 'bestbuy'],\n ['name' => \"Hit After Hit [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hit-after-hit-digipak-cd/2236335.p?id=2196559&skuId=2236335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236335.jpg\"}', 'upc' => '767981124025', 'provider' => 'bestbuy'],\n ['name' => \"Hope & Ruin [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hope-ruin-digipak-cd/2236344.p?id=2196764&skuId=2236344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236344_sa.jpg\"}', 'upc' => '766929975026', 'provider' => 'bestbuy'],\n ['name' => \"Never Be Tamed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-be-tamed-cd/2236353.p?id=2196560&skuId=2236353&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236353', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236353_sa.jpg\"}', 'upc' => '623141168929', 'provider' => 'bestbuy'],\n ['name' => \"Life Stories: Highlife & Afrobeat Classics... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/life-stories-highlife-afrobeat-classics-cd/2236362.p?id=2196561&skuId=2236362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236362_sa.jpg\"}', 'upc' => '730003307225', 'provider' => 'bestbuy'],\n ['name' => \"Parallax: Hypersleep... [Single] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parallax-hypersleep-single-digipak-cd/2236371.p?id=2196562&skuId=2236371&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236371', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236371_sa.jpg\"}', 'upc' => '039841499926', 'provider' => 'bestbuy'],\n ['name' => \"First Light [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-light-digipak-cd/2236608.p?id=2193855&skuId=2236608&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236608', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236608_sa.jpg\"}', 'upc' => '657481102527', 'provider' => 'bestbuy'],\n ['name' => \"Laura - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laura-cd/2236617.p?id=2196765&skuId=2236617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236617_sa.jpg\"}', 'upc' => '753182545295', 'provider' => 'bestbuy'],\n ['name' => \"American Nomad [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-nomad-digipak-cd/2236626.p?id=2196766&skuId=2236626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236626_sa.jpg\"}', 'upc' => '626570611967', 'provider' => 'bestbuy'],\n ['name' => \"Action-Refraction [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/action-refraction-digipak-cd/2236635.p?id=2196564&skuId=2236635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236635_sa.jpg\"}', 'upc' => '753957214920', 'provider' => 'bestbuy'],\n ['name' => \"Come Down with Me [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-down-with-me-digipak-cd/2236653.p?id=2196390&skuId=2236653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236653_sa.jpg\"}', 'upc' => '666017216928', 'provider' => 'bestbuy'],\n ['name' => \"Into Darkness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-darkness-cd/2236662.p?id=2196566&skuId=2236662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236662_sa.jpg\"}', 'upc' => '808720012422', 'provider' => 'bestbuy'],\n ['name' => \"Dissimulation - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dissimulation-cd/2236671.p?id=2212914&skuId=2236671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236671_sa.jpg\"}', 'upc' => '803847110228', 'provider' => 'bestbuy'],\n ['name' => \"Statement of Purpose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/statement-of-purpose-cd/2236699.p?id=2196568&skuId=2236699&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236699', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236699_sa.jpg\"}', 'upc' => '654436019220', 'provider' => 'bestbuy'],\n ['name' => \"Sonatas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sonatas-cd/2236744.p?id=2193064&skuId=2236744&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236744', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236744_sa.jpg\"}', 'upc' => '886976888220', 'provider' => 'bestbuy'],\n ['name' => \"Musicforthemorningafter [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musicforthemorningafter-lp-vinyl/2236762.p?id=2192928&skuId=2236762&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236762', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236762_sa.jpg\"}', 'upc' => '886978302915', 'provider' => 'bestbuy'],\n ['name' => \"1812 Overture & Marche Slave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1812-overture-marche-slave-cd/2236808.p?id=2193063&skuId=2236808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236808_sa.jpg\"}', 'upc' => '886977007323', 'provider' => 'bestbuy'],\n ['name' => \"Overtures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/overtures-cd/2236817.p?id=2193061&skuId=2236817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236817_sa.jpg\"}', 'upc' => '886976896423', 'provider' => 'bestbuy'],\n ['name' => \"Hello Fear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hello-fear-cd/2236826.p?id=2190926&skuId=2236826&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236826', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236826_sa.jpg\"}', 'upc' => '886977791727', 'provider' => 'bestbuy'],\n ['name' => \"I Am the Dance Commander + I Command You to... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-the-dance-commander-i-command-you-to-cd/2236835.p?id=2192364&skuId=2236835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236835_sa.jpg\"}', 'upc' => '886978650825', 'provider' => 'bestbuy'],\n ['name' => \"Live at Wrigley Field [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-wrigley-field-digipak-cd/2236844.p?id=2192930&skuId=2236844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236844.jpg\"}', 'upc' => '886978625427', 'provider' => 'bestbuy'],\n ['name' => \"Four Seasons & Four Double Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-seasons-four-double-concertos-cd/2236853.p?id=2192953&skuId=2236853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236853_sa.jpg\"}', 'upc' => '886976896126', 'provider' => 'bestbuy'],\n ['name' => \"Concierto De Aranjuez - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/concierto-de-aranjuez-cd/2236871.p?id=2193068&skuId=2236871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236871_sa.jpg\"}', 'upc' => '886976905422', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Roots: The Music of the Americas - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-roots-the-music-of-the-americas-cd-various/2236899.p?id=2192942&skuId=2236899&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236899', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236899_sa.jpg\"}', 'upc' => '886978577023', 'provider' => 'bestbuy'],\n ['name' => \"15 Exitos, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/15-exitos-vol-2-cd/2236908.p?id=2192933&skuId=2236908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236908.jpg\"}', 'upc' => '886978585622', 'provider' => 'bestbuy'],\n ['name' => \"Sister Act - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sister-act-cd/2236917.p?id=2192925&skuId=2236917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236917_sa.jpg\"}', 'upc' => '791558444629', 'provider' => 'bestbuy'],\n ['name' => \"Symphony No 10 (Hybr) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphony-no-10-hybr-cd/2236944.p?id=2192943&skuId=2236944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236944_sa.jpg\"}', 'upc' => '886977689529', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies No 5 In C Minor Op 67 & No 7 In A Major - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-no-5-in-c-minor-op-67-no-7-in-a-major-cd/2236953.p?id=2192952&skuId=2236953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236953_sa.jpg\"}', 'upc' => '886976888121', 'provider' => 'bestbuy'],\n ['name' => \"Bolero La Valse Rhapsodie Espagnole - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bolero-la-valse-rhapsodie-espagnole-cd/2236962.p?id=2192945&skuId=2236962&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2236962', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2236\\/2236962_sa.jpg\"}', 'upc' => '886976896829', 'provider' => 'bestbuy'],\n ['name' => \"Glam Nation Live [CD & DVD] - CD - CD DVD (with Bonus Tracks)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/glam-nation-live-cd-dvd-cd-cd-dvd-with-bonus-tracks/2237006.p?id=2192363&skuId=2237006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237006_sa.jpg\"}', 'upc' => '886978342621', 'provider' => 'bestbuy'],\n ['name' => \"Inside These Walls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/inside-these-walls-cd/2237015.p?id=2192934&skuId=2237015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237015_sa.jpg\"}', 'upc' => '728028036602', 'provider' => 'bestbuy'],\n ['name' => \"Presenting Montserrat Caballe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/presenting-montserrat-caballe-cd/2237024.p?id=2147777&skuId=2237024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237024.jpg\"}', 'upc' => '886976896324', 'provider' => 'bestbuy'],\n ['name' => \"Halo 5: Guardians Limited Collector's Edition - Xbox One\", 'description_short' => \"Hunt the truth\", 'description_long' => \"Hunt the truth\", 'price' => 249.99, 'sale_price' => 134.99, 'url' => 'http://www.bestbuy.com/site/halo-5-guardians-limited-collectors-edition-xbox-one/2237037.p?id=1219534062973&skuId=2237037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237037_sa.jpg\"}', 'upc' => '885370936964', 'provider' => 'bestbuy'],\n ['name' => \"Finlandia Valse Triste - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finlandia-valse-triste-cd/2237042.p?id=2193011&skuId=2237042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237042_sa.jpg\"}', 'upc' => '886976897529', 'provider' => 'bestbuy'],\n ['name' => \"Something Big - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-big-cd/2237051.p?id=2192768&skuId=2237051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237051_sa.jpg\"}', 'upc' => '886976233020', 'provider' => 'bestbuy'],\n ['name' => \"Monument Singles: A-... [DVD] [Box] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monument-singles-a-dvd-box-cd-dvd/2237079.p?id=2186363&skuId=2237079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237079_sa.jpg\"}', 'upc' => '886978415820', 'provider' => 'bestbuy'],\n ['name' => \"Pictures At An Exhibition & Britten Young Persons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pictures-at-an-exhibition-britten-young-persons-cd/2237088.p?id=2193054&skuId=2237088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237088_sa.jpg\"}', 'upc' => '886976910020', 'provider' => 'bestbuy'],\n ['name' => \"Old Tyme Religion [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-tyme-religion-pa-cd/2237097.p?id=2192929&skuId=2237097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237097_sa.jpg\"}', 'upc' => '886975792528', 'provider' => 'bestbuy'],\n ['name' => \"Soul of the South - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-of-the-south-cd/2237103.p?id=2192938&skuId=2237103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237103.jpg\"}', 'upc' => '826663123531', 'provider' => 'bestbuy'],\n ['name' => \"Symphonies Nos 9 & 8 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/symphonies-nos-9-8-cd/2237112.p?id=2193067&skuId=2237112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237112_sa.jpg\"}', 'upc' => '886976895822', 'provider' => 'bestbuy'],\n ['name' => \"Violin Concerto No 1 G Minor Op 26 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-concerto-no-1-g-minor-op-26-cd/2237121.p?id=2192963&skuId=2237121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237121.jpg\"}', 'upc' => '886976895921', 'provider' => 'bestbuy'],\n ['name' => \"Teddy Pendergrass: Live in London (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teddy-pendergrass-live-in-london-dvd/2237149.p?id=2192926&skuId=2237149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '826663124828', 'provider' => 'bestbuy'],\n ['name' => \"I Will Praise You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-will-praise-you-cd/2237167.p?id=2192939&skuId=2237167&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237167', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237167_sa.jpg\"}', 'upc' => '602341015929', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [2011] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-2011-cd/2237176.p?id=2192937&skuId=2237176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237176_sa.jpg\"}', 'upc' => '826663124033', 'provider' => 'bestbuy'],\n ['name' => \"Monument Singles: A-Sides (1960-1964) [20-Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monument-singles-a-sides-1960-1964-20-track-cd/2237185.p?id=2192789&skuId=2237185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237185_sa.jpg\"}', 'upc' => '886978674128', 'provider' => 'bestbuy'],\n ['name' => \"Women of Hope - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/women-of-hope-cd-various/2237291.p?id=2180265&skuId=2237291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237291.jpg\"}', 'upc' => '783027019124', 'provider' => 'bestbuy'],\n ['name' => \"Priscilla Queen of the Desert: The Musical - CD - Original Broadway Cast\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/priscilla-queen-of-the-desert-the-musical-cd-original-broadway-cast/2237316.p?id=2189026&skuId=2237316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237316_sa.jpg\"}', 'upc' => '081227977733', 'provider' => 'bestbuy'],\n ['name' => \"The Return of Mr. Zone 6 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-return-of-mr-zone-6-pa-cd/2237325.p?id=2189490&skuId=2237325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237325_sa.jpg\"}', 'upc' => '093624958468', 'provider' => 'bestbuy'],\n ['name' => \"Josh Wright - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/josh-wright-cd/2237334.p?id=2180266&skuId=2237334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237334.jpg\"}', 'upc' => '783027019223', 'provider' => 'bestbuy'],\n ['name' => \"Ebbets Field 1974 (Uk) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ebbets-field-1974-uk-cd/2237343.p?id=3183415&skuId=2237343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2237343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2237\\/2237343_sa.jpg\"}', 'upc' => '899079002769', 'provider' => 'bestbuy'],\n ['name' => \"Raven In the Grave [4/5] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raven-in-the-grave-4-5-cd/2238096.p?id=2192771&skuId=2238096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238096_sa.jpg\"}', 'upc' => '883888002423', 'provider' => 'bestbuy'],\n ['name' => \"Heavy Metal Kings [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavy-metal-kings-pa-digipak-cd/2238111.p?id=2199984&skuId=2238111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238111_sa.jpg\"}', 'upc' => '857259002046', 'provider' => 'bestbuy'],\n ['name' => \"Polar - Loop Activity Tracker - Black\", 'description_short' => \"Measures steps taken, distance traveled, elapsed time and pulse; touch-swipe button; 80-LED display; waterproof design; USB port\", 'description_long' => \"Measures steps taken, distance traveled, elapsed time and pulse; touch-swipe button; 80-LED display; waterproof design; USB port\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/polar-loop-activity-tracker-black/2238123.p?id=1219070441711&skuId=2238123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238123_rc.jpg\"}', 'upc' => '725882015842', 'provider' => 'bestbuy'],\n ['name' => \"Skullcandy - Hesh 2 Wireless Over-the-Ear Headphones - Camo\", 'description_short' => \"Wireless; built-in Bluetooth; adjustable headband; in-line control; phone control; carrying case included\", 'description_long' => \"Wireless; built-in Bluetooth; adjustable headband; in-line control; phone control; carrying case included\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/skullcandy-hesh-2-wireless-over-the-ear-headphones-camo/2238141.p?id=1219533486197&skuId=2238141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238141_sa.jpg\"}', 'upc' => '878615073418', 'provider' => 'bestbuy'],\n ['name' => \"Stairwells [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stairwells-digipak-cd/2238148.p?id=2192776&skuId=2238148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238148_sa.jpg\"}', 'upc' => '855105002103', 'provider' => 'bestbuy'],\n ['name' => \"Love Town - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-town-cd/2238184.p?id=2194436&skuId=2238184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238184.jpg\"}', 'upc' => '704565720525', 'provider' => 'bestbuy'],\n ['name' => \"Texas Sugar/Strat Magik - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/texas-sugar-strat-magik-cd/2238778.p?id=108458&skuId=2238778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238778.jpg\"}', 'upc' => '012414154620', 'provider' => 'bestbuy'],\n ['name' => \"The Diary [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-diary-pa-cd/2238910.p?id=1409244&skuId=2238910&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238910', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238910_sa.jpg\"}', 'upc' => '034744199720', 'provider' => 'bestbuy'],\n ['name' => \"Blowout Comb - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blowout-comb-cd/2238947.p?id=108430&skuId=2238947&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238947', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238947_sa.jpg\"}', 'upc' => '724383065424', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2238965.p?id=108436&skuId=2238965&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2238965', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2238\\/2238965_sa.jpg\"}', 'upc' => '724383033423', 'provider' => 'bestbuy'],\n ['name' => \"Mickey's Christmas Carol (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mickeys-christmas-carol-blu-ray-disc/2239017.p?id=23238&skuId=2239017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239017_sa.jpg\"}', 'upc' => '786936837148', 'provider' => 'bestbuy'],\n ['name' => \"Live - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/2239063.p?id=108786&skuId=2239063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239063_sa.jpg\"}', 'upc' => '077778058922', 'provider' => 'bestbuy'],\n ['name' => \"Rose and Charcoal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rose-and-charcoal-cd/2239072.p?id=108788&skuId=2239072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239072.jpg\"}', 'upc' => '724383008025', 'provider' => 'bestbuy'],\n ['name' => \"Question the Answers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/question-the-answers-cd/2239474.p?id=108945&skuId=2239474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239474_sa.jpg\"}', 'upc' => '731452284525', 'provider' => 'bestbuy'],\n ['name' => \"Broadway: The Music of Richard Rodgers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/broadway-the-music-of-richard-rodgers-cd/2239820.p?id=109027&skuId=2239820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239820_sa.jpg\"}', 'upc' => '028944260328', 'provider' => 'bestbuy'],\n ['name' => \"If Every Day Was Like Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/if-every-day-was-like-christmas-cd/2239875.p?id=108465&skuId=2239875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2239875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2239\\/2239875_sa.jpg\"}', 'upc' => '078636648224', 'provider' => 'bestbuy'],\n ['name' => \"G-Technology - G-DRIVE with Thunderbolt 3TB External USB 3.0 Hard Drive - Silver\", 'description_short' => \"USB 3.0 and Thunderbolt interfaces; integrated heat sink; Apple&#174; Time Machine compatible; aluminum case; data transfer rates up to 165MB/sec.\", 'description_long' => \"USB 3.0 and Thunderbolt interfaces; integrated heat sink; Apple&#174; Time Machine compatible; aluminum case; data transfer rates up to 165MB/sec.\", 'price' => 279.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-technology-g-drive-with-thunderbolt-3tb-external-usb-3-0-hard-drive-silver/2240012.p?id=1219535314512&skuId=2240012&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240012', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240012_sa.jpg\"}', 'upc' => '705487193886', 'provider' => 'bestbuy'],\n ['name' => \"G-Technology - G-DRIVE mobile with Thunderbolt 1TB External USB 3.0 Portable Hard Drive - Silver\", 'description_short' => \"USB 3.0 and Thunderbolt interfaces; bus-powered design; Apple&#174; Time Machine compatible; aluminum case; data transfer rates up to 136MB/sec.\", 'description_long' => \"USB 3.0 and Thunderbolt interfaces; bus-powered design; Apple&#174; Time Machine compatible; aluminum case; data transfer rates up to 136MB/sec.\", 'price' => 189.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/g-technology-g-drive-mobile-with-thunderbolt-1tb-external-usb-3-0-portable-hard-drive-silver/2240049.p?id=1219535312662&skuId=2240049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1309\\/1309193394\\/1309193394_sa.jpg\"}', 'upc' => '705487193183', 'provider' => 'bestbuy'],\n ['name' => \"Billboard #1 Gospel Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/billboard-1-gospel-hits-cd-various/2240067.p?id=3329369&skuId=2240067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240067_sa.jpg\"}', 'upc' => '099923945727', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - Wireless Mobile Storage 500GB External USB Portable Hard Drive - Blue\", 'description_short' => \"USB interface; built-in Wi-Fi; supports simple wireless media streaming to up to 3 devices simultaneously; backup for mobile devices\", 'description_long' => \"USB interface; built-in Wi-Fi; supports simple wireless media streaming to up to 3 devices simultaneously; backup for mobile devices\", 'price' => 129.99, 'sale_price' => 64.99, 'url' => 'http://www.bestbuy.com/site/seagate-wireless-mobile-storage-500gb-external-usb-portable-hard-drive-blue/2240076.p?id=1219535313545&skuId=2240076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240076_sa.jpg\"}', 'upc' => '763649066805', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - Backup Plus Desktop 8TB External USB 3.0 Hard Drive - Black\", 'description_short' => \"USB 3.0 port; automatic backup; backup for mobile devices\", 'description_long' => \"USB 3.0 port; automatic backup; backup for mobile devices\", 'price' => 299.99, 'sale_price' => 229.99, 'url' => 'http://www.bestbuy.com/site/seagate-backup-plus-desktop-8tb-external-usb-3-0-hard-drive-black/2240085.p?id=1219535314581&skuId=2240085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1312\\/1312358643\\/1312358643_sa.jpg\"}', 'upc' => '763649067123', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - Personal Cloud 4TB External Hard Drive (NAS) - Black\", 'description_short' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'description_long' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'price' => 219.99, 'sale_price' => 179.99, 'url' => 'http://www.bestbuy.com/site/seagate-personal-cloud-4tb-external-hard-drive-nas-black/2240094.p?id=1219535312656&skuId=2240094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240094_sa.jpg\"}', 'upc' => '763649066515', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - Personal Cloud 5TB External Hard Drive (NAS) - Black\", 'description_short' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'description_long' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'price' => 249.99, 'sale_price' => 199.99, 'url' => 'http://www.bestbuy.com/site/seagate-personal-cloud-5tb-external-hard-drive-nas-black/2240109.p?id=1219535315666&skuId=2240109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240109_sa.jpg\"}', 'upc' => '763649066539', 'provider' => 'bestbuy'],\n ['name' => \"Seagate - Personal Cloud 3TB External Hard Drive (NAS) - Black\", 'description_short' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'description_long' => \"USB and Ethernet interfaces; provides a personal Cloud; backup for mobile devices; supports wireless streaming and remote file access\", 'price' => 169.99, 'sale_price' => 139.99, 'url' => 'http://www.bestbuy.com/site/seagate-personal-cloud-3tb-external-hard-drive-nas-black/2240118.p?id=1219535315476&skuId=2240118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240118_sa.jpg\"}', 'upc' => '763649066492', 'provider' => 'bestbuy'],\n ['name' => \"Cracked: What Lies Beneath (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cracked-what-lies-beneath-dvd-2-disc/2240127.p?id=3325607&skuId=2240127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240127.jpg\"}', 'upc' => '883929430864', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Last Christmas (DVD) (5 Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-last-christmas-dvd-5-disc-boxed-set/2240136.p?id=3329959&skuId=2240136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240136.jpg\"}', 'upc' => '883929455966', 'provider' => 'bestbuy'],\n ['name' => \"About Schmidt (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/about-schmidt-blu-ray-disc/2240145.p?id=40111&skuId=2240145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240145.jpg\"}', 'upc' => '883929374915', 'provider' => 'bestbuy'],\n ['name' => \"War and Peace (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/war-and-peace-blu-ray-disc/2240154.p?id=53960&skuId=2240154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240154_sa.jpg\"}', 'upc' => '883929443949', 'provider' => 'bestbuy'],\n ['name' => \"Doctor Who: Last Christmas (Blu-ray Disc) (5 Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doctor-who-last-christmas-blu-ray-disc-5-disc-boxed-set/2240163.p?id=3329959&skuId=2240163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240163.jpg\"}', 'upc' => '883929455973', 'provider' => 'bestbuy'],\n ['name' => \"Love & Basketball (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-basketball-blu-ray-disc/2240172.p?id=50014&skuId=2240172&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240172', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240172.jpg\"}', 'upc' => '883929442331', 'provider' => 'bestbuy'],\n ['name' => \"Diner (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diner-blu-ray-disc/2240181.p?id=58388&skuId=2240181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240181_sa.jpg\"}', 'upc' => '883929444182', 'provider' => 'bestbuy'],\n ['name' => \"Atlantis: Season Two, Part One [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantis-season-two-part-one-2-discs-dvd/2240214.p?id=3328973&skuId=2240214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240214.jpg\"}', 'upc' => '883929455997', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Royal Rumble 2015 (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-royal-rumble-2015-dvd-2-disc/2240223.p?id=3332368&skuId=2240223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240223.jpg\"}', 'upc' => '651191953950', 'provider' => 'bestbuy'],\n ['name' => \"Save Our Skins (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/save-our-skins-dvd/2240232.p?id=3314548&skuId=2240232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240232_sa.jpg\"}', 'upc' => '883929453658', 'provider' => 'bestbuy'],\n ['name' => \"Jane Austen: Complete Collection (6pc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 47.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jane-austen-complete-collection-6pc-dvd/2240241.p?id=2075363&skuId=2240241&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240241', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '883929104802', 'provider' => 'bestbuy'],\n ['name' => \"The Whale (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-whale-dvd/2240269.p?id=3328913&skuId=2240269&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240269', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240269_sa.jpg\"}', 'upc' => '883929439157', 'provider' => 'bestbuy'],\n ['name' => \"Notebook/Lucky One [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/notebook-lucky-one-2-discs-blu-ray-disc/2240278.p?id=3274529&skuId=2240278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2240278.jpg\"}', 'upc' => '883929389377', 'provider' => 'bestbuy'],\n ['name' => \"Dreamgirls/Sparkle (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dreamgirls-sparkle-blu-ray-disc/2240287.p?id=2727863&skuId=2240287&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240287', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240287_sa.jpg\"}', 'upc' => '883929343454', 'provider' => 'bestbuy'],\n ['name' => \"The Replacements (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-replacements-blu-ray-disc/2240296.p?id=55736&skuId=2240296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240296.jpg\"}', 'upc' => '883929443741', 'provider' => 'bestbuy'],\n ['name' => \"BBC Natural History Collection, Vol. 2 Featuring Life [10 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bbc-natural-history-collection-vol-2-featuring-life-10-discs-dvd/2240406.p?id=2144843&skuId=2240406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240406_sa.jpg\"}', 'upc' => '883929165773', 'provider' => 'bestbuy'],\n ['name' => \"WWE: The Destruction of the Shield (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-the-destruction-of-the-shield-dvd/2240415.p?id=3332290&skuId=2240415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240415_sa.jpg\"}', 'upc' => '651191953936', 'provider' => 'bestbuy'],\n ['name' => \"WWE: The Destruction of the Shield (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 25.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-the-destruction-of-the-shield-blu-ray-disc/2240424.p?id=3332290&skuId=2240424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240424_sa.jpg\"}', 'upc' => '651191953943', 'provider' => 'bestbuy'],\n ['name' => \"Atlantis: Season Two, Part One [2 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/atlantis-season-two-part-one-2-discs-blu-ray-disc/2240433.p?id=3328931&skuId=2240433&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240433', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240433.jpg\"}', 'upc' => '883929456000', 'provider' => 'bestbuy'],\n ['name' => \"The Game (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-game-dvd-2-disc/2240442.p?id=3341502&skuId=2240442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240442_sa.jpg\"}', 'upc' => '883929430482', 'provider' => 'bestbuy'],\n ['name' => \"Resurrection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/resurrection-cd/2240818.p?id=108784&skuId=2240818&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240818', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240818_sa.jpg\"}', 'upc' => '088561120825', 'provider' => 'bestbuy'],\n ['name' => \"Day Dreamin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/day-dreamin-cd/2240989.p?id=108661&skuId=2240989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2240989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2240\\/2240989.jpg\"}', 'upc' => '090368011725', 'provider' => 'bestbuy'],\n ['name' => \"Man of Steel (Blu-ray 3D) (3-D) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-of-steel-blu-ray-3d-3-d-ultraviolet-digital-copy/2241011.p?id=2750600&skuId=2241011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241011_sa.jpg\"}', 'upc' => '883929246922', 'provider' => 'bestbuy'],\n ['name' => \"Getaway (DVD) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/getaway-dvd-ultraviolet-digital-copy/2241039.p?id=2767060&skuId=2241039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241039_sa.jpg\"}', 'upc' => '883929318667', 'provider' => 'bestbuy'],\n ['name' => \"Man of Steel (DVD) (2 Disc) (Special Edition) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-of-steel-dvd-2-disc-special-edition-ultraviolet-digital-copy/2241057.p?id=2750600&skuId=2241057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241057_sa.jpg\"}', 'upc' => '883929248001', 'provider' => 'bestbuy'],\n ['name' => \"We're the Millers (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => 11.99, 'url' => 'http://www.bestbuy.com/site/were-the-millers-blu-ray-disc-ultraviolet-digital-copy/2241066.p?id=2767061&skuId=2241066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241066.jpg\"}', 'upc' => '883929317646', 'provider' => 'bestbuy'],\n ['name' => \"Man of Steel (Blu-ray 3D) (Collector's Edition) (Boxed Set) (Gift Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-of-steel-blu-ray-3d-collectors-edition-boxed-set-gift-set/2241075.p?id=2750600&skuId=2241075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241075_sa.jpg\"}', 'upc' => '883929344413', 'provider' => 'bestbuy'],\n ['name' => \"Getaway (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/getaway-blu-ray-disc-ultraviolet-digital-copy/2241084.p?id=2767060&skuId=2241084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241084_sa.jpg\"}', 'upc' => '883929318681', 'provider' => 'bestbuy'],\n ['name' => \"My Big Fat Greek Wedding (Blu-ray Disc) (Ultraviolet Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-big-fat-greek-wedding-blu-ray-disc-ultraviolet-digital-copy/2241117.p?id=39568&skuId=2241117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '883929444175', 'provider' => 'bestbuy'],\n ['name' => \"Low - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/low-cd/2241247.p?id=108570&skuId=2241247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241247_sa.jpg\"}', 'upc' => '075678264528', 'provider' => 'bestbuy'],\n ['name' => \"Timepiece - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/timepiece-cd/2241363.p?id=108576&skuId=2241363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2241363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2241\\/2241363_sa.jpg\"}', 'upc' => '075678269820', 'provider' => 'bestbuy'],\n ['name' => \"Nothing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nothing-cd/2242488.p?id=2976121&skuId=2242488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2242488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2242\\/2242488_sa.jpg\"}', 'upc' => '016581872028', 'provider' => 'bestbuy'],\n ['name' => \"Holly & Ivy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/holly-ivy-cd/2242585.p?id=107154&skuId=2242585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2242585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2242\\/2242585_sa.jpg\"}', 'upc' => '075596170420', 'provider' => 'bestbuy'],\n ['name' => \"Mad Men: Season 6 [3 discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => 10.99, 'url' => 'http://www.bestbuy.com/site/mad-men-season-6-3-discs-blu-ray-disc/2243019.p?id=2751796&skuId=2243019&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243019', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2243019.jpg\"}', 'upc' => '031398171911', 'provider' => 'bestbuy'],\n ['name' => \"Mad Men: Season 6 [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mad-men-season-6-4-discs-dvd/2243028.p?id=2751906&skuId=2243028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2243028.jpg\"}', 'upc' => '031398171904', 'provider' => 'bestbuy'],\n ['name' => \"Fair Game (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fair-game-blu-ray-disc/2243033.p?id=2188382&skuId=2243033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243033_sa.jpg\"}', 'upc' => '025192096990', 'provider' => 'bestbuy'],\n ['name' => \"Fair Game (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fair-game-dvd/2243042.p?id=2188382&skuId=2243042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243042_sa.jpg\"}', 'upc' => '025192096983', 'provider' => 'bestbuy'],\n ['name' => \"Toshiba - Canvio Connect II 1TB USB 3.0 Portable Hard Drive - Black\", 'description_short' => \"USB 3.0 interface; NTI Backup Now EZ software; data transfer rate of up to 5 Gbps; 8MB buffer\", 'description_long' => \"USB 3.0 interface; NTI Backup Now EZ software; data transfer rate of up to 5 Gbps; 8MB buffer\", 'price' => 74.99, 'sale_price' => 54.99, 'url' => 'http://www.bestbuy.com/site/toshiba-canvio-connect-ii-1tb-usb-3-0-portable-hard-drive-black/2243046.p?id=1219535315343&skuId=2243046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243046_rc.jpg\"}', 'upc' => '022265902424', 'provider' => 'bestbuy'],\n ['name' => \"Toshiba - Canvio Connect II 2TB External USB 3.0 Portable Hard Drive - Black\", 'description_short' => \"USB 3.0 interface; NTI Backup Now EZ software; data transfer rate of up to 5 Gbps; 8MB buffer\", 'description_long' => \"USB 3.0 interface; NTI Backup Now EZ software; data transfer rate of up to 5 Gbps; 8MB buffer\", 'price' => 119.99, 'sale_price' => 81.99, 'url' => 'http://www.bestbuy.com/site/toshiba-canvio-connect-ii-2tb-external-usb-3-0-portable-hard-drive-black/2243055.p?id=1219535314830&skuId=2243055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243055_sa.jpg\"}', 'upc' => '022265902400', 'provider' => 'bestbuy'],\n ['name' => \"Complete 7 (1941-1944) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-7-1941-1944-cd/2243263.p?id=2015266&skuId=2243263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1046\\/10469502.jpg\"}', 'upc' => '788518512221', 'provider' => 'bestbuy'],\n ['name' => \"Ma - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ma-cd/2243851.p?id=109032&skuId=2243851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243851_sa.jpg\"}', 'upc' => '731453027923', 'provider' => 'bestbuy'],\n ['name' => \"Rev - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rev-cd/2243968.p?id=113606&skuId=2243968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2243968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2243\\/2243968_sa.jpg\"}', 'upc' => '045778643622', 'provider' => 'bestbuy'],\n ['name' => \"Klipsch - Mounting Kit for Most Klipsch In-Wall Speakers with a 6-1/2\\\" Woofer\", 'description_short' => \"Compatible with most Klipsch in-wall speakers with a 6-1/2&quot; woofer; color-coded brackets; breakaway wire tie; ribbed, perforated metal wings\", 'description_long' => \"Compatible with most Klipsch in-wall speakers with a 6-1/2&quot; woofer; color-coded brackets; breakaway wire tie; ribbed, perforated metal wings\", 'price' => 32.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/klipsch-mounting-kit-for-most-klipsch-in-wall-speakers-with-a-6-1-2-woofer/2244009.p?id=1219070443203&skuId=2244009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244009_500x500_sa.jpg\"}', 'upc' => '743878017205', 'provider' => 'bestbuy'],\n ['name' => \"Born to Raise Hell (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-raise-hell-dvd/2244041.p?id=2189789&skuId=2244041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244041_sa.jpg\"}', 'upc' => '097368522442', 'provider' => 'bestbuy'],\n ['name' => \"Diego Saves The World (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/diego-saves-the-world-dvd/2244069.p?id=2186561&skuId=2244069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244069.jpg\"}', 'upc' => '097368217744', 'provider' => 'bestbuy'],\n ['name' => \"South Park: The Complete Fourteenth Season [2 Discs / Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-park-the-complete-fourteenth-season-2-discs-blu-ray-blu-ray-disc/2244078.p?id=2189794&skuId=2244078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244078.jpg\"}', 'upc' => '097361166544', 'provider' => 'bestbuy'],\n ['name' => \"South Park: The Complete Fourteenth Season [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-park-the-complete-fourteenth-season-3-discs-dvd/2244087.p?id=2189793&skuId=2244087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244087.jpg\"}', 'upc' => '097368217546', 'provider' => 'bestbuy'],\n ['name' => \"Born to Raise Hell (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/born-to-raise-hell-blu-ray-disc/2244096.p?id=2189789&skuId=2244096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244096_sa.jpg\"}', 'upc' => '097361437743', 'provider' => 'bestbuy'],\n ['name' => \"iCarly: Season 2, Vol. 3 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/icarly-season-2-vol-3-3-discs-dvd/2244102.p?id=2186559&skuId=2244102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244102_sa.jpg\"}', 'upc' => '097368509849', 'provider' => 'bestbuy'],\n ['name' => \"The Greatest Game Ever Played (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-greatest-game-ever-played-blu-ray-disc-2-disc/2244166.p?id=1508817&skuId=2244166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244166_sa.jpg\"}', 'upc' => '786936813807', 'provider' => 'bestbuy'],\n ['name' => \"Freestyle Greatest Beats: Complete... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freestyle-greatest-beats-complete-cd-various/2244173.p?id=133566&skuId=2244173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244173_sa.jpg\"}', 'upc' => '016998109625', 'provider' => 'bestbuy'],\n ['name' => \"Tron (DVD) (2 Disc) (Special Edition)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tron-dvd-2-disc-special-edition/2244175.p?id=53914&skuId=2244175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244175_sa.jpg\"}', 'upc' => '786936811711', 'provider' => 'bestbuy'],\n ['name' => \"Avengers: Earth's Mightiest Heroes, Vol. 1 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avengers-earths-mightiest-heroes-vol-1-dvd/2244184.p?id=2192818&skuId=2244184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244184_sa.jpg\"}', 'upc' => '786936814828', 'provider' => 'bestbuy'],\n ['name' => \"Miracle (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miracle-blu-ray-disc-2-disc/2244193.p?id=1356762&skuId=2244193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244193_sa.jpg\"}', 'upc' => '786936813746', 'provider' => 'bestbuy'],\n ['name' => \"The Tempest (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tempest-dvd/2244209.p?id=2190894&skuId=2244209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244209_sa.jpg\"}', 'upc' => '786936811698', 'provider' => 'bestbuy'],\n ['name' => \"Remember the Titans (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/remember-the-titans-blu-ray-disc-2-disc/2244218.p?id=35635&skuId=2244218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244218_sa.jpg\"}', 'upc' => '786936813760', 'provider' => 'bestbuy'],\n ['name' => \"Alice in Wonderland (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alice-in-wonderland-blu-ray-disc-2-disc/2244227.p?id=2105433&skuId=2244227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244227_sa.jpg\"}', 'upc' => '786936814415', 'provider' => 'bestbuy'],\n ['name' => \"Avengers: Earth's Mightiest Heroes, Vol. 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avengers-earths-mightiest-heroes-vol-2-dvd/2244245.p?id=2192820&skuId=2244245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244245_sa.jpg\"}', 'upc' => '786936814842', 'provider' => 'bestbuy'],\n ['name' => \"Cars (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cars-blu-ray-disc-2-disc/2244254.p?id=1565156&skuId=2244254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244254.jpg\"}', 'upc' => '786936811551', 'provider' => 'bestbuy'],\n ['name' => \"Invincible (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/invincible-blu-ray-disc-2-disc/2244263.p?id=1605970&skuId=2244263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2244263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2244\\/2244263_sa.jpg\"}', 'upc' => '786936813722', 'provider' => 'bestbuy'],\n ['name' => \"Disney Interactive Studios - Club Penguin 6-Month Membership Card - Multicolor\", 'description_short' => \"Interact with other kids as you embark on an adventure in a winter wonderland\", 'description_long' => \"Interact with other kids as you embark on an adventure in a winter wonderland\", 'price' => 39.95, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/disney-interactive-studios-club-penguin-6-month-membership-card-multicolor/2245008.p?id=1219070765990&skuId=2245008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2245008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2245\\/2245008_sa.jpg\"}', 'upc' => '799366752615', 'provider' => 'bestbuy'],\n ['name' => \"Live: Boston, 1964 & Philadelphia 1966 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-boston-1964-philadelphia-1966-cd/2245797.p?id=1397356&skuId=2245797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2245797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2245\\/2245797_sa.jpg\"}', 'upc' => '788518514928', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - 1 AW1 Waterproof Mirrorless Camera with 11-27.5mm Lens - Silver\", 'description_short' => \"14.2-megapixel, CX-format CMOS sensorWaterproof up to 49&#039;Shooting speeds up to 60 fpsHybrid autofocus systemGPS capability\", 'description_long' => \"14.2-megapixel, CX-format CMOS sensorWaterproof up to 49&#039;Shooting speeds up to 60 fpsHybrid autofocus systemGPS capability\", 'price' => 799.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-1-aw1-waterproof-mirrorless-camera-with-11-27-5mm-lens-silver/2246007.p?id=1219070374535&skuId=2246007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2246007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2246\\/2246007_sa.jpg\"}', 'upc' => '018208276660', 'provider' => 'bestbuy'],\n ['name' => \"Zhu Zhu Puppies with Limited Edition Zhu Zhu Puppy - Nintendo DS\", 'description_short' => \"Adopt a cute and cuddly pup of your very own\", 'description_long' => \"Adopt a cute and cuddly pup of your very own\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zhu-zhu-puppies-with-limited-edition-zhu-zhu-puppy-nintendo-ds/2246155.p?id=1218317362237&skuId=2246155', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2246155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2246\\/2246155_sa.jpg\"}', 'upc' => '047875765443', 'provider' => 'bestbuy'],\n ['name' => \"Sesame Street Essential Collection: Milestones [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sesame-street-essential-collection-milestones-3-discs-dvd/2246252.p?id=2186617&skuId=2246252&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2246252', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2246\\/2246252.jpg\"}', 'upc' => '854392002216', 'provider' => 'bestbuy'],\n ['name' => \"American Tragedy [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-tragedy-pa-cd/2246289.p?id=2199193&skuId=2246289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2246289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2246\\/2246289_sa.jpg\"}', 'upc' => '602527621425', 'provider' => 'bestbuy'],\n ['name' => \"Complete Recorded Works 1929-1951 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-recorded-works-1929-1951-cd/2246377.p?id=1409829&skuId=2246377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2246377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2246\\/2246377_sa.jpg\"}', 'upc' => '788518517820', 'provider' => 'bestbuy'],\n ['name' => \"SOL REPUBLIC - PUNK Indoor/Outdoor Bluetooth Speaker - Ion Green\", 'description_short' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'description_long' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sol-republic-punk-indoor-outdoor-bluetooth-speaker-ion-green/2247024.p?id=1219535315599&skuId=2247024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2247024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2247\\/2247024_sa.jpg\"}', 'upc' => '812925020366', 'provider' => 'bestbuy'],\n ['name' => \"B-Sides & Rarities [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/b-sides-rarities-pa-cd/2247145.p?id=2193987&skuId=2247145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2247145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2247\\/2247145.jpg\"}', 'upc' => '044003136250', 'provider' => 'bestbuy'],\n ['name' => \"Cross Road: The Best of Bon Jovi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-road-the-best-of-bon-jovi-cd/2247866.p?id=108919&skuId=2247866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2247866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2247\\/2247866_sa.jpg\"}', 'upc' => '731452601322', 'provider' => 'bestbuy'],\n ['name' => \"SOL REPUBLIC - PUNK Indoor/Outdoor Bluetooth Speaker - Lemon Lime\", 'description_short' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'description_long' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sol-republic-punk-indoor-outdoor-bluetooth-speaker-lemon-lime/2248032.p?id=1219535316231&skuId=2248032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2248032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2248\\/2248032_sa.jpg\"}', 'upc' => '812925020427', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: Dark of the Moon Autobots - Nintendo DS\", 'description_short' => \"Transform into an epic hero or a vehicular villain\", 'description_long' => \"Transform into an epic hero or a vehicular villain\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-dark-of-the-moon-autobots-nintendo-ds/2248296.p?id=1218315553340&skuId=2248296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2248296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2248\\/2248296_sa.jpg\"}', 'upc' => '047875841406', 'provider' => 'bestbuy'],\n ['name' => \"Dummy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dummy-cd/2248400.p?id=109052&skuId=2248400&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2248400', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2248\\/2248400_sa.jpg\"}', 'upc' => '042282855329', 'provider' => 'bestbuy'],\n ['name' => \"Kodak - 30 Ink Cartridge - Black\", 'description_short' => \"Compatible with select Kodak ESP printers; black ink; yields approximately 335 pages\", 'description_long' => \"Compatible with select Kodak ESP printers; black ink; yields approximately 335 pages\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kodak-30-ink-cartridge-black/2248569.p?id=1218325539901&skuId=2248569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2248569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2248\\/2248569_sa.jpg\"}', 'upc' => '041778345214', 'provider' => 'bestbuy'],\n ['name' => \"Piano Works - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-works-cd/2248623.p?id=1676006&skuId=2248623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2248623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2248\\/2248623.jpg\"}', 'upc' => '028944083620', 'provider' => 'bestbuy'],\n ['name' => \"Music from the Mauve Decades - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-from-the-mauve-decades-cd/2249560.p?id=112056&skuId=2249560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2249560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2249\\/2249560_sa.jpg\"}', 'upc' => '778133203321', 'provider' => 'bestbuy'],\n ['name' => \"Old Tyme Modern - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-tyme-modern-cd/2249588.p?id=2015515&skuId=2249588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2249588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2249\\/2249588_sa.jpg\"}', 'upc' => '778133300327', 'provider' => 'bestbuy'],\n ['name' => \"Saturday Night Function - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/saturday-night-function-cd/2249604.p?id=3420571&skuId=2249604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2249604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2249\\/2249604_sa.jpg\"}', 'upc' => '778133302826', 'provider' => 'bestbuy'],\n ['name' => \"The Sackville All Star Christmas Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-sackville-all-star-christmas-record-cd/2249622.p?id=3283944&skuId=2249622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2249622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2249\\/2249622.jpg\"}', 'upc' => '778133303823', 'provider' => 'bestbuy'],\n ['name' => \"SOL REPUBLIC - PUNK Indoor/Outdoor Bluetooth Speaker - Navy\", 'description_short' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'description_long' => \"SOL REPUBLIC PUNK Indoor/Outdoor Bluetooth Speaker: Compatible with most Bluetooth-enabled devices, including select Apple and Android devices; 5.7W amplifier power; Bluetooth interface; line-in and line-out\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sol-republic-punk-indoor-outdoor-bluetooth-speaker-navy/2250029.p?id=1219535315030&skuId=2250029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250029_sa.jpg\"}', 'upc' => '812925020373', 'provider' => 'bestbuy'],\n ['name' => \"Alela Diane & Wild Divine [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alela-diane-wild-divine-digipak-cd/2250112.p?id=2192801&skuId=2250112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250112_sa.jpg\"}', 'upc' => '883870061629', 'provider' => 'bestbuy'],\n ['name' => \"Civil War Navy Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civil-war-navy-songs-cd/2250149.p?id=2195815&skuId=2250149&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250149', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250149.jpg\"}', 'upc' => '093074018927', 'provider' => 'bestbuy'],\n ['name' => \"Jardpuls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jardpuls-cd/2250158.p?id=2195818&skuId=2250158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250158_sa.jpg\"}', 'upc' => '885470002088', 'provider' => 'bestbuy'],\n ['name' => \"Blood Pressures [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-pressures-lp-vinyl/2250176.p?id=2195817&skuId=2250176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250176.jpg\"}', 'upc' => '801390028311', 'provider' => 'bestbuy'],\n ['name' => \"High Atmosphere - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-atmosphere-cd/2250185.p?id=2192931&skuId=2250185&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250185', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250185_sa.jpg\"}', 'upc' => '852007001456', 'provider' => 'bestbuy'],\n ['name' => \"Death of a Decade [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/death-of-a-decade-digipak-cd/2250194.p?id=2195816&skuId=2250194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250194_sa.jpg\"}', 'upc' => '744302018126', 'provider' => 'bestbuy'],\n ['name' => \"A Treasury of Civil War Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-treasury-of-civil-war-songs-cd/2250219.p?id=2195819&skuId=2250219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250219.jpg\"}', 'upc' => '093074018729', 'provider' => 'bestbuy'],\n ['name' => \"Blood Pressures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blood-pressures-cd/2250237.p?id=2195814&skuId=2250237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250237_sa.jpg\"}', 'upc' => '801390028328', 'provider' => 'bestbuy'],\n ['name' => \"The Truly Great Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-truly-great-hits-cd/2250290.p?id=112487&skuId=2250290&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250290', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250290_sa.jpg\"}', 'upc' => '789505770129', 'provider' => 'bestbuy'],\n ['name' => \"Two Cello Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-cello-concertos-cd/2250806.p?id=1777793&skuId=2250806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250806.jpg\"}', 'upc' => '750582921421', 'provider' => 'bestbuy'],\n ['name' => \"Lemminkainen'S Island Adventures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lemminkainens-island-adventures-cd/2250842.p?id=1784721&skuId=2250842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250842.jpg\"}', 'upc' => '750582988226', 'provider' => 'bestbuy'],\n ['name' => \"Pro Et Contra For Large Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-et-contra-for-large-orchestra-cd/2250888.p?id=1784730&skuId=2250888&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2250888', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2250\\/2250888.jpg\"}', 'upc' => '789368014125', 'provider' => 'bestbuy'],\n ['name' => \"Speck - CandyShell + Faceplate Case for Apple® iPhone® SE, 5s and 5 - White/Gray\", 'description_short' => \"Compatible with Apple iPhone SE, 5s and 5; TrueTap technology; polycarbonate and rubber materials; rubberized button covers; includes CandyShield faceplate\", 'description_long' => \"Compatible with Apple iPhone SE, 5s and 5; TrueTap technology; polycarbonate and rubber materials; rubberized button covers; includes CandyShield faceplate\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/speck-candyshell-faceplate-case-for-apple-iphone-se-5s-and-5-white-gray/2251037.p?id=1219071228610&skuId=2251037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2251037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2251\\/2251037_sa.jpg\"}', 'upc' => '848709006165', 'provider' => 'bestbuy'],\n ['name' => \"Blade Runner: The Final Cut (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blade-runner-the-final-cut-blu-ray-disc/2251041.p?id=2755767&skuId=2251041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2251041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2251\\/2251041_sa.jpg\"}', 'upc' => '883929146697', 'provider' => 'bestbuy'],\n ['name' => \"My Fair Lady [Original Soundtrack] [Bonus Tracks] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-fair-lady-original-soundtrack-bonus-tracks-cd-original-soundtrack/2251253.p?id=2089729&skuId=2251253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2251253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2251\\/2251253_sa.jpg\"}', 'upc' => '074646671122', 'provider' => 'bestbuy'],\n ['name' => \"La Traviata - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-traviata-cd/2251609.p?id=2024785&skuId=2251609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2251609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2251\\/2251609.jpg\"}', 'upc' => '750582879227', 'provider' => 'bestbuy'],\n ['name' => \"Giulio Cesare-Comp Opera - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 51.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giulio-cesare-comp-opera-cd/2251618.p?id=1802968&skuId=2251618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2251618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2251\\/2251618.jpg\"}', 'upc' => '750582993329', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Aftermarket Radio Installation Kit for 2011 and Later Kia Optima Vehicles - Matte Black\", 'description_short' => \"Compatible with 2011 and later Kia Optima vehicles; double DIN radio provision; ABS plastic material; factory-matched paint\", 'description_long' => \"Compatible with 2011 and later Kia Optima vehicles; double DIN radio provision; ABS plastic material; factory-matched paint\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-aftermarket-radio-installation-kit-for-2011-and-later-kia-optima-vehicles-matte-black/2252009.p?id=1219070763337&skuId=2252009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252009_sa.jpg\"}', 'upc' => '086429255306', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2006-2011 Honda Civic Vehicles - Taupe\", 'description_short' => \"Compatible with most 2006-2011 Honda Civic vehicles; DIN with pocket, ISO DIN with pocket, double DIN, ISO stacked and stacked DIN head unit provisions; ABS plastic material\", 'description_long' => \"Compatible with most 2006-2011 Honda Civic vehicles; DIN with pocket, ISO DIN with pocket, double DIN, ISO stacked and stacked DIN head unit provisions; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2006-2011-honda-civic-vehicles-taupe/2252018.p?id=1219070775497&skuId=2252018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252018_sa.jpg\"}', 'upc' => '086429161720', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for Most 1987-2006 Nissan Vehicles - Black\", 'description_short' => \"Compatible with most 1987-2006 Nissan vehicles; antenna adapter; copper, polypropylene and steel materials\", 'description_long' => \"Compatible with most 1987-2006 Nissan vehicles; antenna adapter; copper, polypropylene and steel materials\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-most-1987-2006-nissan-vehicles-black/2252027.p?id=1219070772047&skuId=2252027&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252027', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252027_sa.jpg\"}', 'upc' => '086429007110', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amplifier Bypass Harness for Select 2002-2005 Dodge Ram Vehicles - Multicolor\", 'description_short' => \"Compatible with select 2002-2005 Dodge Ram vehicles with Infiniti sound systems; amplifier bypass harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with select 2002-2005 Dodge Ram vehicles with Infiniti sound systems; amplifier bypass harness; ABS plastic-molded connector\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amplifier-bypass-harness-for-select-2002-2005-dodge-ram-vehicles-multicolor/2252036.p?id=1219070775308&skuId=2252036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252036_sa.jpg\"}', 'upc' => '086429199914', 'provider' => 'bestbuy'],\n ['name' => \"No Big Surprise: Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-big-surprise-anthology-cd/2252038.p?id=109471&skuId=2252038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252038_sa.jpg\"}', 'upc' => '092941100826', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2006 and Later Suzuki Grand Vitara Vehicles - Tan\", 'description_short' => \"Compatible with select 2006 and later Suzuki Grand Vitara vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2006 and later Suzuki Grand Vitara vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2006-and-later-suzuki-grand-vitara-vehicles-tan/2252045.p?id=1219070775176&skuId=2252045&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252045', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252045_sa.jpg\"}', 'upc' => '086429200481', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Aftermarket Radio Installation Kit for 2012 and Later Hyundai Veloster Vehicles - Matte Black\", 'description_short' => \"Compatible with 2012 and later Hyundai Veloster vehicles; double DIN radio provision; ABS plastic material; scratch-resistant, factory-matched paint\", 'description_long' => \"Compatible with 2012 and later Hyundai Veloster vehicles; double DIN radio provision; ABS plastic material; scratch-resistant, factory-matched paint\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-aftermarket-radio-installation-kit-for-2012-and-later-hyundai-veloster-vehicles-matte-black/2252054.p?id=1219070768434&skuId=2252054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252054_sa.jpg\"}', 'upc' => '086429266074', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Nissan Sentra - Gray\", 'description_short' => \"Compatible with most 2013-2015 Nissan Sentra vehicles; ISO DIN head unit provision with pocket; ABS plastic material\", 'description_long' => \"Compatible with most 2013-2015 Nissan Sentra vehicles; ISO DIN head unit provision with pocket; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-nissan-sentra-gray/2252063.p?id=1219070767972&skuId=2252063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252063_sa.jpg\"}', 'upc' => '086429279203', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2009 and Later Honda Fit Vehicles - Silver\", 'description_short' => \"Compatible with most 2009 and later Honda Fit vehicles; double-DIN radio provision; stacked ISO mount units provision; ABS plastic material; matches factory color\", 'description_long' => \"Compatible with most 2009 and later Honda Fit vehicles; double-DIN radio provision; stacked ISO mount units provision; ABS plastic material; matches factory color\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2009-and-later-honda-fit-vehicles-silver/2252072.p?id=1219070764339&skuId=2252072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252072_sa.jpg\"}', 'upc' => '086429280582', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Mounting Kit for Most 2005-2007 Chrysler 300 Vehicles - Matte Black\", 'description_short' => \"Compatible with most 2005-2007 Chrysler 300 vehicles; double-DIN radio provision; DIN and ISO-DIN radio provisions with pockets; OE bezel; ABS plastic material\", 'description_long' => \"Compatible with most 2005-2007 Chrysler 300 vehicles; double-DIN radio provision; DIN and ISO-DIN radio provisions with pockets; OE bezel; ABS plastic material\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-mounting-kit-for-most-2005-2007-chrysler-300-vehicles-matte-black/2252081.p?id=1219070774405&skuId=2252081&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252081', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252081_sa.jpg\"}', 'upc' => '086429276653', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Vehicles - Multicolor\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-vehicles-multicolor/2252105.p?id=1219070768764&skuId=2252105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252105_sa.jpg\"}', 'upc' => '086429275601', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Bullet Camera for Most Vehicles - Black\", 'description_short' => \"Compatible with most vehicles; 170&#176; viewing angle; defeatable parking-assist lines; water-resistant connections\", 'description_long' => \"Compatible with most vehicles; 170&#176; viewing angle; defeatable parking-assist lines; water-resistant connections\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-bullet-camera-for-most-vehicles-black/2252114.p?id=1219070769753&skuId=2252114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252114_sa.jpg\"}', 'upc' => '086429255528', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Hyundai Genesis Coupe non-NAV - Black\", 'description_short' => \"Compatible with select 2013-2015 Hyundai Genesis Coupe vehicles; ISO DIN provision with pocket; matte black finish; ABS plastic material\", 'description_long' => \"Compatible with select 2013-2015 Hyundai Genesis Coupe vehicles; ISO DIN provision with pocket; matte black finish; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-hyundai-genesis-coupe-non-nav-black/2252123.p?id=1219070765394&skuId=2252123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252123_sa.jpg\"}', 'upc' => '086429277308', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Ford, Lincoln and Mercury Vehicles - Multicolor\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-ford-lincoln-and-mercury-vehicles-multicolor/2252132.p?id=1219070774585&skuId=2252132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252132_sa.jpg\"}', 'upc' => '086429275618', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Porsche Vehicles - Gray\", 'description_short' => \"Compatible with select Porsche vehicles; double-DIN radio provision; mounting sleeve; ABS plastic material\", 'description_long' => \"Compatible with select Porsche vehicles; double-DIN radio provision; mounting sleeve; ABS plastic material\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-porsche-vehicles-gray/2252169.p?id=1219070775898&skuId=2252169', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252169_sa.jpg\"}', 'upc' => '086429265381', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2006-2008 Mazda Mazda6 - Black\", 'description_short' => \"Compatible with most 2006-2008 Mazda 6 vehicles; double DIN and ISO DIN with pocket provisions; ABS plastic material; includes wiring harness\", 'description_long' => \"Compatible with most 2006-2008 Mazda 6 vehicles; double DIN and ISO DIN with pocket provisions; ABS plastic material; includes wiring harness\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2006-2008-mazda-mazda6-black/2252178.p?id=1219070776351&skuId=2252178&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252178', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252178_sa.jpg\"}', 'upc' => '086429280346', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2010 and later Kia Forte and Forte Koup Vehicles - High-Gloss Black\", 'description_short' => \"Compatible with most 2010 and later Kia Forte and Forte Koup vehicles; double-DIN radio provision; DIN and ISO-mount radio provisions with pockets; ABS plastic material\", 'description_long' => \"Compatible with most 2010 and later Kia Forte and Forte Koup vehicles; double-DIN radio provision; DIN and ISO-mount radio provisions with pockets; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2010-and-later-kia-forte-and-forte-koup-vehicles-high-gloss-black/2252187.p?id=1219070766460&skuId=2252187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252187_sa.jpg\"}', 'upc' => '086429225439', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2007-2008 Hyundai Santa Fe without NAV - Silver\", 'description_short' => \"Compatible with select 2007-2008 Hyundai Santa Fe vehicles; DIN and ISO radio provisions with pockets; ABS plastic material; matches factory paint\", 'description_long' => \"Compatible with select 2007-2008 Hyundai Santa Fe vehicles; DIN and ISO radio provisions with pockets; ABS plastic material; matches factory paint\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2007-2008-hyundai-santa-fe-without-nav-silver/2252196.p?id=1219070768830&skuId=2252196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252196_sa.jpg\"}', 'upc' => '086429274772', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2009 and Later Toyota Corolla Vehicles - Silver\", 'description_short' => \"Compatible with select 2009 and later Toyota Corolla vehicles; allows installation of an aftermarket radio into a factory dash location; painted finish and complementary texture\", 'description_long' => \"Compatible with select 2009 and later Toyota Corolla vehicles; allows installation of an aftermarket radio into a factory dash location; painted finish and complementary texture\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2009-and-later-toyota-corolla-vehicles-silver/2252201.p?id=1219070767648&skuId=2252201&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252201', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252201_sa.jpg\"}', 'upc' => '086429183005', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2010 and Later Suzuki Kizashi Vehicles - Black\", 'description_short' => \"Compatible with most 2010 and later Suzuki Kizashi vehicles; double-DIN head unit provision; ABS plastic material\", 'description_long' => \"Compatible with most 2010 and later Suzuki Kizashi vehicles; double-DIN head unit provision; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2010-and-later-suzuki-kizashi-vehicles-black/2252229.p?id=1219070768307&skuId=2252229', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252229', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252229_sa.jpg\"}', 'upc' => '086429265343', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Windshield Mirror Mount for Select Kia and Hyundai Vehicles\", 'description_short' => \"Compatible with select Kia and Hyundai vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'description_long' => \"Compatible with select Kia and Hyundai vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-windshield-mirror-mount-for-select-kia-and-hyundai-vehicles/2252238.p?id=1219070774208&skuId=2252238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252238_500x500_sa.jpg\"}', 'upc' => '086429274826', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Volkswagen Vehicles - Black\", 'description_short' => \"Allows installation in select Volkswagen vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select Volkswagen vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-volkswagen-vehicles-black/2252247.p?id=1219070764259&skuId=2252247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252247_sa.jpg\"}', 'upc' => '086429275663', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Amp Axxess ADBOX Data Interface Harness for Select Lexus and Toyota Vehicles - Multicolor\", 'description_short' => \"Allows installation in select Lexus and Toyota vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select Lexus and Toyota vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-amp-axxess-adbox-data-interface-harness-for-select-lexus-and-toyota-vehicles-multicolor/2252256.p?id=1219070768698&skuId=2252256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252256_sa.jpg\"}', 'upc' => '086429275670', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Windshield Mirror Mount for Select Audi and Volkswagen Vehicles\", 'description_short' => \"Compatible with select Audi and Volkswagen vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'description_long' => \"Compatible with select Audi and Volkswagen vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-windshield-mirror-mount-for-select-audi-and-volkswagen-vehicles/2252265.p?id=1219070768565&skuId=2252265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252265_500x500_sa.jpg\"}', 'upc' => '086429274819', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2013 and Later Hyundai Genesis Vehicles - Matte Black\", 'description_short' => \"Compatible with 2013 and later Hyundai Genesis vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with 2013 and later Hyundai Genesis vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2013-and-later-hyundai-genesis-vehicles-matte-black/2252274.p?id=1219070773077&skuId=2252274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252274_sa.jpg\"}', 'upc' => '086429277315', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2014 Toyota Prius C - Black\", 'description_short' => \"Compatible with select 2012-2014 Toyota Prius C vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2014 Toyota Prius C vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2014-toyota-prius-c-black/2252283.p?id=1219070773140&skuId=2252283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252283_sa.jpg\"}', 'upc' => '086429276943', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2006 Lexus RX330/RX350/ 400H - Silver\", 'description_short' => \"Compatible with select Lexus RX series vehicles; allows the installation of an aftermarket radio into a factory dash location; double DIN head unit provisions\", 'description_long' => \"Compatible with select Lexus RX series vehicles; allows the installation of an aftermarket radio into a factory dash location; double DIN head unit provisions\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2006-lexus-rx330-rx350-400h-silver/2252292.p?id=1219070767906&skuId=2252292&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252292', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252292_sa.jpg\"}', 'upc' => '086429264254', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2012 and Later Kia Soul Vehicles - Matte Black\", 'description_short' => \"Compatible with 2012 and later Kia Soul vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with 2012 and later Kia Soul vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2012-and-later-kia-soul-vehicles-matte-black/2252306.p?id=1219070769431&skuId=2252306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252306_sa.jpg\"}', 'upc' => '086429265985', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Chevrolet, Pontiac and Saturn Vehicles - Multicolor\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-chevrolet-pontiac-and-saturn-vehicles-multicolor/2252315.p?id=1219070771476&skuId=2252315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252315_sa.jpg\"}', 'upc' => '086429275595', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for Most 2009 and Later Hyundai and Kia Vehicles - Black\", 'description_short' => \"Compatible with most 2009 and later Hyundai and Kia vehicles; antenna adapter for use with FM modulator; copper, polypropylene and steel materials\", 'description_long' => \"Compatible with most 2009 and later Hyundai and Kia vehicles; antenna adapter for use with FM modulator; copper, polypropylene and steel materials\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-most-2009-and-later-hyundai-and-kia-vehicles-black/2252333.p?id=1219070769951&skuId=2252333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252333_sa.jpg\"}', 'upc' => '086429170609', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire 20-Pin Wire Harness for Select Jaguar and Land Rover Vehicles - Black\", 'description_short' => \"Compatible with 2003 and later Jaguar and 2005 and later Land Rover vehicles; allows you to connect an aftermarket radio to your vehicle&#039;s harness; ABS-plastic connector\", 'description_long' => \"Compatible with 2003 and later Jaguar and 2005 and later Land Rover vehicles; allows you to connect an aftermarket radio to your vehicle&#039;s harness; ABS-plastic connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-20-pin-wire-harness-for-select-jaguar-and-land-rover-vehicles-black/2252342.p?id=1219070770479&skuId=2252342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252342_sa.jpg\"}', 'upc' => '086429213443', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2005 Mazda Mazda6 - Silver\", 'description_short' => \"Compatible with select 2003-2005 Mazda 6 vehicles; double DIN, DDIN with pocket and ISO DIN with pocket provisions; ABS plastic material; includes wiring harness\", 'description_long' => \"Compatible with select 2003-2005 Mazda 6 vehicles; double DIN, DDIN with pocket and ISO DIN with pocket provisions; ABS plastic material; includes wiring harness\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2005-mazda-mazda6-silver/2252351.p?id=1219070769299&skuId=2252351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252351_sa.jpg\"}', 'upc' => '086429280339', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1995-1998 Nissan 200SX/Sentra - Black\", 'description_short' => \"Compatible with most 1995-1998 Nissan 200SX/Sentra vehicles; enables quick conversion from 2-shaft to DIN installation; ABS plastic material\", 'description_long' => \"Compatible with most 1995-1998 Nissan 200SX/Sentra vehicles; enables quick conversion from 2-shaft to DIN installation; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1995-1998-nissan-200sx-sentra-black/2252379.p?id=1219070768632&skuId=2252379', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252379_sa.jpg\"}', 'upc' => '086429019113', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1995-1998 Nissan 240SX/Maxima - Black\", 'description_short' => \"Compatible with most 1995-1998 Nissan 240SX/Maxima vehicles; enables quick conversion from 2-shaft to DIN installation; equalizer provisions\", 'description_long' => \"Compatible with most 1995-1998 Nissan 240SX/Maxima vehicles; enables quick conversion from 2-shaft to DIN installation; equalizer provisions\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1995-1998-nissan-240sx-maxima-black/2252388.p?id=1219070769365&skuId=2252388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252388_sa.jpg\"}', 'upc' => '086429018901', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2013 Hyundai Elantra - Black\", 'description_short' => \"Compatible with select 2011-2013 Hyundai Elantra vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2011-2013 Hyundai Elantra vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2013-hyundai-elantra-black/2252397.p?id=1219070765197&skuId=2252397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252397_sa.jpg\"}', 'upc' => '086429258536', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2007-2012 Hyundai Santa Fe Vehicles - Black\", 'description_short' => \"Compatible with non-nav-equipped 2007-2012 Hyundai Santa Fe vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with non-nav-equipped 2007-2012 Hyundai Santa Fe vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2007-2012-hyundai-santa-fe-vehicles-black/2252402.p?id=1219070766920&skuId=2252402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252402_sa.jpg\"}', 'upc' => '086429274765', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2012 and Later Toyota Prius C Vehicles - Matte Black\", 'description_short' => \"Compatible with most 2012 and later Toyota Prius C vehicles; double-DIN radio provision; ABS plastic material\", 'description_long' => \"Compatible with most 2012 and later Toyota Prius C vehicles; double-DIN radio provision; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2012-and-later-toyota-prius-c-vehicles-matte-black/2252411.p?id=1219070769819&skuId=2252411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252411_sa.jpg\"}', 'upc' => '086429276950', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2008-2009 Saturn Astra silver dash - Silver\", 'description_short' => \"Compatible with most 2008-2009 Saturn Astra vehicles; Quick Release Snap-In ISO mount system with custom trim ring; DIN and ISO radio provisions; oversize under-radio storage pocket\", 'description_long' => \"Compatible with most 2008-2009 Saturn Astra vehicles; Quick Release Snap-In ISO mount system with custom trim ring; DIN and ISO radio provisions; oversize under-radio storage pocket\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2008-2009-saturn-astra-silver-dash-silver/2252439.p?id=1219070767052&skuId=2252439', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252439_sa.jpg\"}', 'upc' => '086429183036', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2011 Buick Regal with brown dash - Brown\", 'description_short' => \"Compatible with select 2011 Buick Regal vehicles; ISO DIN and DDIN provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2011 Buick Regal vehicles; ISO DIN and DDIN provisions; ABS plastic material\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2011-buick-regal-with-brown-dash-brown/2252448.p?id=1219071223635&skuId=2252448', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252448_sa.jpg\"}', 'upc' => '086429259014', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2014 Dodge Charger with 4.3 inch screen - Matte Black\", 'description_short' => \"Compatible with select 2011-2014 Dodge Charger vehicles with 4.3&quot; screen and without OE amplifier; allows installation of an aftermarket radio into a factory dash location\", 'description_long' => \"Compatible with select 2011-2014 Dodge Charger vehicles with 4.3&quot; screen and without OE amplifier; allows installation of an aftermarket radio into a factory dash location\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2014-dodge-charger-with-4-3-inch-screen-matte-black/2252457.p?id=1219070763258&skuId=2252457', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252457_sa.jpg\"}', 'upc' => '086429274093', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Mounting Kit for Most 2011-2012 Ford F-150 Vehicles - Black\", 'description_short' => \"Compatible with most 2011-2012 Ford F-150 vehicles; single-DIN and ISO-DIN radio provisions; ABS plastic material; high-gloss paint\", 'description_long' => \"Compatible with most 2011-2012 Ford F-150 vehicles; single-DIN and ISO-DIN radio provisions; ABS plastic material; high-gloss paint\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-mounting-kit-for-most-2011-2012-ford-f-150-vehicles-black/2252466.p?id=1219070771069&skuId=2252466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252466_sa.jpg\"}', 'upc' => '086429276066', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Ford Explorer, Fiesta and Focus Vehicles - Multicolor\", 'description_short' => \"Allows installation in select Ford vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select Ford vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-ford-explorer-fiesta-and-focus-vehicles-multicolor/2252475.p?id=1219070776219&skuId=2252475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252475_sa.jpg\"}', 'upc' => '086429275625', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2005-2011 Toyota Tacoma Vehicles - Black\", 'description_short' => \"Compatible with select 2005-2011 Toyota Tacoma vehicles; allows installation of an aftermarket radio into your vehicle&#039;s factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2005-2011 Toyota Tacoma vehicles; allows installation of an aftermarket radio into your vehicle&#039;s factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2005-2011-toyota-tacoma-vehicles-black/2252484.p?id=1219070764405&skuId=2252484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252484_sa.jpg\"}', 'upc' => '086429264674', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Aftermarket Radio Installation Kit for 2013 Nissan Altima Sedan Vehicles - Gray\", 'description_short' => \"Compatible with 2013 Nissan Altima sedan vehicles; double DIN radio provision; ABS plastic material; high-gloss paint\", 'description_long' => \"Compatible with 2013 Nissan Altima sedan vehicles; double DIN radio provision; ABS plastic material; high-gloss paint\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-aftermarket-radio-installation-kit-for-2013-nissan-altima-sedan-vehicles-gray/2252493.p?id=1219070769555&skuId=2252493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252493_sa.jpg\"}', 'upc' => '086429275243', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Axxess Auto-Detect Interface Control Box for Select Vehicles - Black\", 'description_short' => \"Compatible with select vehicles; lets you install an aftermarket radio\", 'description_long' => \"Compatible with select vehicles; lets you install an aftermarket radio\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-axxess-auto-detect-interface-control-box-for-select-vehicles-black/2252619.p?id=1219070763339&skuId=2252619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252619_sa.jpg\"}', 'upc' => '086429275571', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Scion FRS/Subaru BRZ - Black\", 'description_short' => \"Compatible with select 2013-2015 Scion FR-S vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2013-2015 Scion FR-S vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-scion-frs-subaru-brz-black/2252628.p?id=1219070775701&skuId=2252628', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252628_sa.jpg\"}', 'upc' => '086429273546', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Trim-Ring Spacer for Most DIN-Style Radios - Black\", 'description_short' => \"Compatible with most DIN-style radios; finishing for custom radio installation; 3/8&quot; thickness; ABS plastic material\", 'description_long' => \"Compatible with most DIN-style radios; finishing for custom radio installation; 3/8&quot; thickness; ABS plastic material\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-trim-ring-spacer-for-most-din-style-radios-black/2252637.p?id=1219070771003&skuId=2252637', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252637_sa.jpg\"}', 'upc' => '086429153800', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire 2-Way Speaker Harness for Most Hyundai and Kia Vehicles - White\", 'description_short' => \"Compatible with most Hyundai and Kia vehicles; 2-way speaker harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with most Hyundai and Kia vehicles; 2-way speaker harness; ABS plastic-molded connector\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-2-way-speaker-harness-for-most-hyundai-and-kia-vehicles-white/2252646.p?id=1219070772420&skuId=2252646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252646_sa.jpg\"}', 'upc' => '086429232390', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amplifier Bypass for Select 1998-2003 Ford, Lincoln, Mercury and Mazda Vehicles\", 'description_short' => \"Compatible with select 1998-2003 Ford, Lincoln, Mercury and Mazda vehicles with RCAS; allows installation of an aftermarket radio\", 'description_long' => \"Compatible with select 1998-2003 Ford, Lincoln, Mercury and Mazda vehicles with RCAS; allows installation of an aftermarket radio\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amplifier-bypass-for-select-1998-2003-ford-lincoln-mercury-and-mazda-vehicles/2252655.p?id=1219070768109&skuId=2252655', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252655', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252655_500x500_sa.jpg\"}', 'upc' => '086429145775', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amplifier Bypass Harness for Select 1994-1997 Ford Vehicles - Multicolor\", 'description_short' => \"Compatible with select 1994-1997 Ford vehicles with premium sound systems; allows you to wire an aftermarket radio into a vehicle and keep your vehicle&#039;s radio harness intact\", 'description_long' => \"Compatible with select 1994-1997 Ford vehicles with premium sound systems; allows you to wire an aftermarket radio into a vehicle and keep your vehicle&#039;s radio harness intact\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amplifier-bypass-harness-for-select-1994-1997-ford-vehicles-multicolor/2252664.p?id=1219070772623&skuId=2252664', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252664', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252664_sa.jpg\"}', 'upc' => '086429086795', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire OEM Harness for Most 2007 and Later Nissan and 2008 and Later Subaru Vehicles - White\", 'description_short' => \"Compatible with most 2007 and later Nissan and 2008 and later Subaru vehicles; OEM wire harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 2007 and later Nissan and 2008 and later Subaru vehicles; OEM wire harness; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-oem-harness-for-most-2007-and-later-nissan-and-2008-and-later-subaru-vehicles-white/2252673.p?id=1219070770083&skuId=2252673&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252673', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252673_sa.jpg\"}', 'upc' => '086429162260', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2011-2012 Ford F-150 Harley Davidson Vehicles - Smoked Satin\", 'description_short' => \"Compatible with 2011-2012 Ford F-150 Harley Davidson vehicles without navigation; allows installation of an aftermarket radio in a factory dash location; ABS plastic\", 'description_long' => \"Compatible with 2011-2012 Ford F-150 Harley Davidson vehicles without navigation; allows installation of an aftermarket radio in a factory dash location; ABS plastic\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2011-2012-ford-f-150-harley-davidson-vehicles-smoked-satin/2252682.p?id=1219070770220&skuId=2252682', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252682_sa.jpg\"}', 'upc' => '086429265015', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Most 1995-2005 GM Full-Size Pick-Up Vehicles (Pair) - Black\", 'description_short' => \"Compatible with most 1995-2005 GM full-size pick-up vehicles; adapts a 5-1/4&quot; or 6-1/2&quot; speaker to a front-door speaker location; steel construction\", 'description_long' => \"Compatible with most 1995-2005 GM full-size pick-up vehicles; adapts a 5-1/4&quot; or 6-1/2&quot; speaker to a front-door speaker location; steel construction\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-most-1995-2005-gm-full-size-pick-up-vehicles-pair-black/2252691.p?id=1219070771849&skuId=2252691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252691_500x500_sa.jpg\"}', 'upc' => '086429020706', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Most Vehicles With 6\\\" Speaker Locations (Pair) - Black\", 'description_short' => \"Allows installation of a 5-1/4&quot; or 6-1/2&quot; speaker and a separate 3/4&quot; to 2&quot; tweeter in a 6&quot; speaker location; steel construction\", 'description_long' => \"Allows installation of a 5-1/4&quot; or 6-1/2&quot; speaker and a separate 3/4&quot; to 2&quot; tweeter in a 6&quot; speaker location; steel construction\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-most-vehicles-with-6-speaker-locations-pair-black/2252719.p?id=1219070763252&skuId=2252719&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252719', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252719_500x500_sa.jpg\"}', 'upc' => '086429084654', 'provider' => 'bestbuy'],\n ['name' => \"Metra - 6-1/2\\\" Aftermarket Speaker Installation Kit - Black\", 'description_short' => \"Universal design; 6-1/2&quot; adapter plate; steel material\", 'description_long' => \"Universal design; 6-1/2&quot; adapter plate; steel material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-6-1-2-aftermarket-speaker-installation-kit-black/2252728.p?id=1219070771981&skuId=2252728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252728_sa.jpg\"}', 'upc' => '086429260768', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amp Retention Harness for Select 2003 and Later Honda Element Vehicles - Multicolor\", 'description_short' => \"Compatible with most 2003 and later Honda Element EX and SC vehicles; wiring harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 2003 and later Honda Element EX and SC vehicles; wiring harness; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amp-retention-harness-for-select-2003-and-later-honda-element-vehicles-multicolor/2252737.p?id=1219070764737&skuId=2252737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252737_sa.jpg\"}', 'upc' => '086429238859', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Nissan Altima Sedan - Gray\", 'description_short' => \"Compatible with most 2013-2015 Nissan Altima Sedan vehicles; ISO DIN provision with pocket; ABS plastic material; high-gloss finish\", 'description_long' => \"Compatible with most 2013-2015 Nissan Altima Sedan vehicles; ISO DIN provision with pocket; ABS plastic material; high-gloss finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-nissan-altima-sedan-gray/2252746.p?id=1219070770937&skuId=2252746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252746_sa.jpg\"}', 'upc' => '086429275236', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Recess Mount Dash Kit for Most 1994-2004 Chevrolet, Oldsmobile and Pontiac Vehicles - Black\", 'description_short' => \"Compatible with most 1994-2004 Chevrolet, Oldsmobile and Pontiac vehicles; recess mount; DIN head unit provision; ABS plastic material\", 'description_long' => \"Compatible with most 1994-2004 Chevrolet, Oldsmobile and Pontiac vehicles; recess mount; DIN head unit provision; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-recess-mount-dash-kit-for-most-1994-2004-chevrolet-oldsmobile-and-pontiac-vehicles-black/2252755.p?id=1219070773007&skuId=2252755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252755_sa.jpg\"}', 'upc' => '086429033140', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2004 and Later GM, Pontiac and Saturn Vehicles - Silver\", 'description_short' => \"Compatible with select 2004 and later GM, Pontiac and Saturn vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2004 and later GM, Pontiac and Saturn vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2004-and-later-gm-pontiac-and-saturn-vehicles-silver/2252764.p?id=1219070766394&skuId=2252764', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252764_sa.jpg\"}', 'upc' => '086429247509', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1995-2001 Nissan Altima - Black\", 'description_short' => \"Compatible with 1995-2001 Nissan Altima vehicles; enables quick conversion from DIN to 2-shaft installation; accommodates ISO DIN radios; equalizer provisions; ABS plastic material\", 'description_long' => \"Compatible with 1995-2001 Nissan Altima vehicles; enables quick conversion from DIN to 2-shaft installation; accommodates ISO DIN radios; equalizer provisions; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1995-2001-nissan-altima-black/2252773.p?id=1219070765724&skuId=2252773&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252773', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252773_sa.jpg\"}', 'upc' => '086429058600', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Nissan Vehicles - Black\", 'description_short' => \"Compatible with Nissan 1987-1988 Maxima, 1987-1990 Pulsar and 1990-1992 Stanza vehicles; shaft, DIN and equalizer provisions; ABS plastic material\", 'description_long' => \"Compatible with Nissan 1987-1988 Maxima, 1987-1990 Pulsar and 1990-1992 Stanza vehicles; shaft, DIN and equalizer provisions; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-nissan-vehicles-black/2252782.p?id=1219070774657&skuId=2252782', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252782_sa.jpg\"}', 'upc' => '086429003075', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2015 Ford Explorer with factory 4.3\\\" screen - Charcoal Gray\", 'description_short' => \"Compatible with select 2011-2015 Ford Explorer vehicles; ISO DIN with pocket and DDIN head unit provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2011-2015 Ford Explorer vehicles; ISO DIN with pocket and DDIN head unit provisions; ABS plastic material\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2015-ford-explorer-with-factory-4-3-screen-charcoal-gray/2252819.p?id=1219071227689&skuId=2252819&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252819', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252819_sa.jpg\"}', 'upc' => '086429277223', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2004-2008 Mazda RX-8 Vehicles - Black\", 'description_short' => \"Compatible with most 2004-2008 Mazda RX-8 vehicles; stacked ISO mount head provision; quick-release brackets; accommodates 1 double DIN or 2 single DIN radios; ABS plastic material\", 'description_long' => \"Compatible with most 2004-2008 Mazda RX-8 vehicles; stacked ISO mount head provision; quick-release brackets; accommodates 1 double DIN or 2 single DIN radios; ABS plastic material\", 'price' => 249.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2004-2008-mazda-rx-8-vehicles-black/2252828.p?id=1219070774207&skuId=2252828', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252828_sa.jpg\"}', 'upc' => '086429182961', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2006-2008 Suzuki Grand Vitara Vehicles - Tan\", 'description_short' => \"Compatible with most 2006-2008 Suzuki Grand Vitara vehicles; DIN with pocket and ISO DIN with pocket head unit provisions; ABS plastic material\", 'description_long' => \"Compatible with most 2006-2008 Suzuki Grand Vitara vehicles; DIN with pocket and ISO DIN with pocket head unit provisions; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2006-2008-suzuki-grand-vitara-vehicles-tan/2252837.p?id=1219070763260&skuId=2252837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252837_sa.jpg\"}', 'upc' => '086429200498', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Most 6 x 9 Vehicle Speaker Locations (Pair) - Black\", 'description_short' => \"Compatible with most 6 x 9 vehicle speaker locations; allow the installation of a 5-1/4&quot; or 6-1/2&quot; speaker and a separate 3/4&quot; to 2&quot; tweeter in a 6 x 9 speaker location\", 'description_long' => \"Compatible with most 6 x 9 vehicle speaker locations; allow the installation of a 5-1/4&quot; or 6-1/2&quot; speaker and a separate 3/4&quot; to 2&quot; tweeter in a 6 x 9 speaker location\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-most-6-x-9-vehicle-speaker-locations-pair-black/2252846.p?id=1219070766657&skuId=2252846&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252846', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252846_500x500_sa.jpg\"}', 'upc' => '086429084661', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Most Ford Vehicles (Pair) - Black\", 'description_short' => \"Compatible with most Ford vehicles; allow the installation of a 5-1/4&quot; or 6-1/2&quot; speaker into a Ford 5-1/14&quot; opening; steel construction\", 'description_long' => \"Compatible with most Ford vehicles; allow the installation of a 5-1/4&quot; or 6-1/2&quot; speaker into a Ford 5-1/14&quot; opening; steel construction\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-most-ford-vehicles-pair-black/2252855.p?id=1219070771332&skuId=2252855&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252855', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252855_500x500_sa.jpg\"}', 'upc' => '086429196562', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 1994-1997 GM and Isuzu Small Truck Vehicles - Black\", 'description_short' => \"Compatible with most 1994-1997 GM and Isuzu small truck vehicles; ISO-DIN radio provision; ABS plastic material; matches factory color\", 'description_long' => \"Compatible with most 1994-1997 GM and Isuzu small truck vehicles; ISO-DIN radio provision; ABS plastic material; matches factory color\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-1994-1997-gm-and-isuzu-small-truck-vehicles-black/2252864.p?id=1219070770674&skuId=2252864', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252864', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252864_sa.jpg\"}', 'upc' => '086429017768', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness for Most 2007 and Later Chrysler Vehicles - Gray\", 'description_short' => \"Compatible with most 2007 and later Chrysler vehicles; wires an aftermarket radio into a vehicle; eliminates the need to cut/splice the factory radio harness\", 'description_long' => \"Compatible with most 2007 and later Chrysler vehicles; wires an aftermarket radio into a vehicle; eliminates the need to cut/splice the factory radio harness\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-for-most-2007-and-later-chrysler-vehicles-gray/2252873.p?id=1219070776029&skuId=2252873&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252873', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252873_sa.jpg\"}', 'upc' => '086429167104', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Wiring Harness with Amplifier Integration Plug for Select 1987-2002 Volkswagen Vehicles - Black\", 'description_short' => \"Compatible with select 1987-2002 Volkswagen vehicles; wiring harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with select 1987-2002 Volkswagen vehicles; wiring harness; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-wiring-harness-with-amplifier-integration-plug-for-select-1987-2002-volkswagen-vehicles-black/2252882.p?id=1219070770297&skuId=2252882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252882_sa.jpg\"}', 'upc' => '086429014217', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1997-2000 Infiniti QX4/Nissan Pathfinder - Black\", 'description_short' => \"Compatible with most 1997-2000 Infiniti QX4/Nissan Pathfinder vehicles; accommodates DIN radios; shaft, DIN-unit and equalizer provisions; Side Arm Support System\", 'description_long' => \"Compatible with most 1997-2000 Infiniti QX4/Nissan Pathfinder vehicles; accommodates DIN radios; shaft, DIN-unit and equalizer provisions; Side Arm Support System\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1997-2000-infiniti-qx4-nissan-pathfinder-black/2252891.p?id=1219070773930&skuId=2252891&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252891', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252891_sa.jpg\"}', 'upc' => '086429030484', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Mazda BT-50 and Ford Ranger Vehicles - Silver\", 'description_short' => \"Compatible with select Mazda BT-50 and Ford Ranger vehicles; DIN with pocket, ISO DIN with pocket, DDIN and ISO stacked head unit provisions; ABS plastic material\", 'description_long' => \"Compatible with select Mazda BT-50 and Ford Ranger vehicles; DIN with pocket, ISO DIN with pocket, DDIN and ISO stacked head unit provisions; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-mazda-bt-50-and-ford-ranger-vehicles-silver/2252919.p?id=1219070773404&skuId=2252919', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252919_sa.jpg\"}', 'upc' => '086429222759', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Saturn Vehicles - Black\", 'description_short' => \"Compatible with select Saturn vehicles; double-DIN and ISO-DIN head unit provisions with pockets; ABS plastic material\", 'description_long' => \"Compatible with select Saturn vehicles; double-DIN and ISO-DIN head unit provisions with pockets; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-saturn-vehicles-black/2252928.p?id=1219070770871&skuId=2252928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252928_sa.jpg\"}', 'upc' => '086429255252', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2005-2011 Porsche (997) 911 and 2005-2012 (987) Boxster Vehicles - Black\", 'description_short' => \"Compatible with select 2005-2011 Porsche (997) 911 and 2005-2012 (987) Boxster vehicles; allows installation of an aftermarket radio\", 'description_long' => \"Compatible with select 2005-2011 Porsche (997) 911 and 2005-2012 (987) Boxster vehicles; allows installation of an aftermarket radio\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2005-2011-porsche-997-911-and-2005-2012-987-boxster-vehicles-black/2252937.p?id=1219070773996&skuId=2252937', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252937', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252937_sa.jpg\"}', 'upc' => '086429265398', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2009 and Later Honda Fit Vehicles - Matte Black\", 'description_short' => \"Compatible with select 2009 and later Honda Fit vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2009 and later Honda Fit vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2009-and-later-honda-fit-vehicles-matte-black/2252946.p?id=1219070771783&skuId=2252946', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252946', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252946_sa.jpg\"}', 'upc' => '086429280575', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2009 and Later Toyota Corolla Vehicles - Silver\", 'description_short' => \"Compatible with 2009 and later Toyota Corolla vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material; painted finish\", 'description_long' => \"Compatible with 2009 and later Toyota Corolla vehicles; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material; painted finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2009-and-later-toyota-corolla-vehicles-silver/2252955.p?id=1219070763338&skuId=2252955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252955_sa.jpg\"}', 'upc' => '086429183135', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2004-2008 Toyota Solara Vehicles - Silver\", 'description_short' => \"Compatible with 2004-2008 Toyota Solara vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO support system; recessed DIN opening\", 'description_long' => \"Compatible with 2004-2008 Toyota Solara vehicles; allows the installation of an aftermarket radio into a factory dash location; snap-in ISO support system; recessed DIN opening\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2004-2008-toyota-solara-vehicles-silver/2252964.p?id=1219070765790&skuId=2252964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252964_sa.jpg\"}', 'upc' => '086429153091', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2012 and Later Toyota Tacoma Vehicles - Black\", 'description_short' => \"Compatible with most 2012 and later Toyota Tacoma vehicles; double-DIN radio and stacked ISO-mount unit provisions; ABS plastic material; matches factory color\", 'description_long' => \"Compatible with most 2012 and later Toyota Tacoma vehicles; double-DIN radio and stacked ISO-mount unit provisions; ABS plastic material; matches factory color\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2012-and-later-toyota-tacoma-vehicles-black/2252973.p?id=1219070764605&skuId=2252973&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252973', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252973_sa.jpg\"}', 'upc' => '086429273577', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Replacement Rear-View Mirror\", 'description_short' => \"Allows installation in most vehicles; integrated 4.3&quot; color LCD screen; 2 video inputs; includes back-up bullet camera and windshield mount\", 'description_long' => \"Allows installation in most vehicles; integrated 4.3&quot; color LCD screen; 2 video inputs; includes back-up bullet camera and windshield mount\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-replacement-rear-view-mirror/2252982.p?id=1219070771915&skuId=2252982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252982_500x500_sa.jpg\"}', 'upc' => '086429274796', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2010 and Later Hyundai Genesis Coupe Vehicles - Silver\", 'description_short' => \"Compatible with select 2010 and later Hyundai Genesis Coupe vehicles with manual climate control; allows installation of an aftermarket radio into a factory dash location\", 'description_long' => \"Compatible with select 2010 and later Hyundai Genesis Coupe vehicles with manual climate control; allows installation of an aftermarket radio into a factory dash location\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2010-and-later-hyundai-genesis-coupe-vehicles-silver/2252991.p?id=1219070764936&skuId=2252991', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2252991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2252\\/2252991_sa.jpg\"}', 'upc' => '086429219575', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Chrysler, Dodge, Jeep and Mitsubishi Vehicles - Multicolor\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-chrysler-dodge-jeep-and-mitsubishi-vehicles-multicolor/2253008.p?id=1219070766723&skuId=2253008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253008_sa.jpg\"}', 'upc' => '086429275649', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Double DIN Installation Kit for Select 2010 and Later Hyundai Genesis Coupe 2.0 Vehicles - Matte Black\", 'description_short' => \"Compatible with select 2010 and later Hyundai Genesis coupe 2.0 vehicles; for installation of an aftermarket radio into your vehicle&#039;s dash; matte finish\", 'description_long' => \"Compatible with select 2010 and later Hyundai Genesis coupe 2.0 vehicles; for installation of an aftermarket radio into your vehicle&#039;s dash; matte finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-double-din-installation-kit-for-select-2010-and-later-hyundai-genesis-coupe-2-0-vehicles-matte-black/2253017.p?id=1219070764805&skuId=2253017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253017_sa.jpg\"}', 'upc' => '086429238620', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2009-2010 Ford F-150 Lariat Vehicles - Milano Maple\", 'description_short' => \"Compatible with select 2009-2010 non-nav-enabled Ford F-150 Lariat vehicles with driver info switches in the factory panel; allows installation of an aftermarket radio\", 'description_long' => \"Compatible with select 2009-2010 non-nav-enabled Ford F-150 Lariat vehicles with driver info switches in the factory panel; allows installation of an aftermarket radio\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2009-2010-ford-f-150-lariat-vehicles-milano-maple/2253026.p?id=1219070765527&skuId=2253026', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253026_sa.jpg\"}', 'upc' => '086429219414', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2004-2009 Toyota Prius - Black\", 'description_short' => \"Compatible with 2004-2009 Toyota Prius vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with 2004-2009 Toyota Prius vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2004-2009-toyota-prius-black/2253035.p?id=1219070770608&skuId=2253035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253035_sa.jpg\"}', 'upc' => '086429279876', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Select Mazda, Nissan and Ford Vehicles (Pair) - Black\", 'description_short' => \"Compatible with select Mazda, Nissan and Ford vehicles; allow the installation of a 5-1/4&quot; - 6 or 6-1/2&quot; speaker into an oversize OEM 6-1/2&quot; opening; steel construction\", 'description_long' => \"Compatible with select Mazda, Nissan and Ford vehicles; allow the installation of a 5-1/4&quot; - 6 or 6-1/2&quot; speaker into an oversize OEM 6-1/2&quot; opening; steel construction\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-select-mazda-nissan-and-ford-vehicles-pair-black/2253044.p?id=1219070773667&skuId=2253044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253044_500x500_sa.jpg\"}', 'upc' => '086429010110', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Toyota 2008-2010 Sequoia and 2007-2010 Tundra Vehicles - Charcoal Gray\", 'description_short' => \"Compatible with Toyota 2008-2010 Sequoia and 2007-2010 Tundra vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with Toyota 2008-2010 Sequoia and 2007-2010 Tundra vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-toyota-2008-2010-sequoia-and-2007-2010-tundra-vehicles-charcoal-gray/2253053.p?id=1219070772624&skuId=2253053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253053_sa.jpg\"}', 'upc' => '086429223107', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Amplifier Bypass for 1995-2000 Mitsubishi Eclipse and 1997-1998 Mitsubishi Galant Vehicles - White\", 'description_short' => \"Compatible with 1995-2000 Mitsubishi Eclipse and 1997-1998 Mitsubishi Galant vehicles; allows installation of an aftermarket radio\", 'description_long' => \"Compatible with 1995-2000 Mitsubishi Eclipse and 1997-1998 Mitsubishi Galant vehicles; allows installation of an aftermarket radio\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-amplifier-bypass-for-1995-2000-mitsubishi-eclipse-and-1997-1998-mitsubishi-galant-vehicles-white/2253062.p?id=1219070773600&skuId=2253062', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253062_sa.jpg\"}', 'upc' => '086429087181', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 2005-2006 Kia Spectra 5 Vehicles - Black\", 'description_short' => \"Compatible with 2005-2006 Kia Spectra 5 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with 2005-2006 Kia Spectra 5 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-2005-2006-kia-spectra-5-vehicles-black/2253071.p?id=1219070766986&skuId=2253071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253071_sa.jpg\"}', 'upc' => '086429204977', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2013 Nissan Rogue S/Rogue SV - Black\", 'description_short' => \"Compatible with select 2012-2013 Nissan Rogue vehicles; ISO DIN with pocket and DDIN head unit provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2013 Nissan Rogue vehicles; ISO DIN with pocket and DDIN head unit provisions; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2013-nissan-rogue-s-rogue-sv-black/2253099.p?id=1219070774404&skuId=2253099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253099_sa.jpg\"}', 'upc' => '086429274215', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 1999-2004 Porsche (TY996) 911 Vehicles - Matte Black\", 'description_short' => \"Compatible with select 1999-2004 Porsche (TY996) 911 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 1999-2004 Porsche (TY996) 911 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-1999-2004-porsche-ty996-911-vehicles-matte-black/2253104.p?id=1219070770017&skuId=2253104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253104_sa.jpg\"}', 'upc' => '086429265374', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2003-2007 Nissan Murano with brushed aluminium dash - Aluminum\", 'description_short' => \"Compatible with most 2003-2007 Nissan Murano vehicles; DDIN and ISO DIN with pocket head unit provisions; metallic coating; ABS plastic material\", 'description_long' => \"Compatible with most 2003-2007 Nissan Murano vehicles; DDIN and ISO DIN with pocket head unit provisions; metallic coating; ABS plastic material\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2003-2007-nissan-murano-with-brushed-aluminium-dash-aluminum/2253113.p?id=1219070776285&skuId=2253113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253113_sa.jpg\"}', 'upc' => '086429265008', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Mercedes Benz Vehicles - Black\", 'description_short' => \"Compatible with select Mercedes Benz vehicles; double-DIN radio provision; ABS plastic material; matches factory paint\", 'description_long' => \"Compatible with select Mercedes Benz vehicles; double-DIN radio provision; ABS plastic material; matches factory paint\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-mercedes-benz-vehicles-black/2253122.p?id=1219070765328&skuId=2253122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253122_sa.jpg\"}', 'upc' => '086429265329', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2011 Buick Regal with black dash - Black\", 'description_short' => \"Compatible with select 2011 Buick Regal vehicles; ISO DIN and DDIN provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2011 Buick Regal vehicles; ISO DIN and DDIN provisions; ABS plastic material\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2011-buick-regal-with-black-dash-black/2253131.p?id=1219071221801&skuId=2253131', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253131_sa.jpg\"}', 'upc' => '086429259007', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2010 and Later Kia Forte and Forte Koup Vehicles - Black\", 'description_short' => \"Compatible with select 2010 and later Kia Forte and Forte Koup vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2010 and later Kia Forte and Forte Koup vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2010-and-later-kia-forte-and-forte-koup-vehicles-black/2253159.p?id=1219070766055&skuId=2253159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253159_sa.jpg\"}', 'upc' => '086429225422', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2013 and Later Nissan Sentra Vehicles - Gray\", 'description_short' => \"Compatible with most 2013 and later Nissan Sentra vehicles; double-DIN head unit provision; ABS plastic material; matches factory finish\", 'description_long' => \"Compatible with most 2013 and later Nissan Sentra vehicles; double-DIN head unit provision; ABS plastic material; matches factory finish\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2013-and-later-nissan-sentra-vehicles-gray/2253168.p?id=1219070769432&skuId=2253168&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253168', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253168_sa.jpg\"}', 'upc' => '086429279197', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Back-Up Camera for Most Vehicles - Black\", 'description_short' => \"Compatible with most vehicles; mounts to the top bolts of your vehicle&#039;s license plate; 170&#176; viewing angle; selectable parking-assist lines; water-resistant design\", 'description_long' => \"Compatible with most vehicles; mounts to the top bolts of your vehicle&#039;s license plate; 170&#176; viewing angle; selectable parking-assist lines; water-resistant design\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-back-up-camera-for-most-vehicles-black/2253177.p?id=1219070772751&skuId=2253177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253177_sa.jpg\"}', 'upc' => '086429270125', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Chrysler, Dodge, Jeep and Mitsubishi Vehicles - Multicolor\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-chrysler-dodge-jeep-and-mitsubishi-vehicles-multicolor/2253186.p?id=1219070768240&skuId=2253186&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253186', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253186_sa.jpg\"}', 'upc' => '086429275632', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for 1985-1994 Volkswagen Jetta Vehicles - Black\", 'description_short' => \"Compatible with 1985-1994 Volkswagen Jetta vehicles; allows the installation of an aftermarket radio into a factory dash location; shaft unit provisions; ABS plastic material\", 'description_long' => \"Compatible with 1985-1994 Volkswagen Jetta vehicles; allows the installation of an aftermarket radio into a factory dash location; shaft unit provisions; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-1985-1994-volkswagen-jetta-vehicles-black/2253195.p?id=1219070775242&skuId=2253195', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253195_sa.jpg\"}', 'upc' => '086429003891', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Windshield Mirror Mount for Select Honda and Subaru Vehicles\", 'description_short' => \"Compatible with select Honda and Subaru vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'description_long' => \"Compatible with select Honda and Subaru vehicles; lets you mount a TE-RVMC windshield mirror (not included) in your vehicle; ABS plastic material\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-windshield-mirror-mount-for-select-honda-and-subaru-vehicles/2253219.p?id=1219070763340&skuId=2253219&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253219', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253219_500x500_sa.jpg\"}', 'upc' => '086429274802', 'provider' => 'bestbuy'],\n ['name' => \"American Tranquility - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-tranquility-cd/2253224.p?id=110366&skuId=2253224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253224.jpg\"}', 'upc' => '016351531223', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Most Mazda 2007 and Later CX-7 and CX-9 Vehicles - Multicolor\", 'description_short' => \"Allows installation in select Mazda vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select Mazda vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-most-mazda-2007-and-later-cx-7-and-cx-9-vehicles-multicolor/2253228.p?id=1219070772546&skuId=2253228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253228_sa.jpg\"}', 'upc' => '086429275656', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Axxess ADBOX Data Interface Harness for Select Vehicles - Black\", 'description_short' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'description_long' => \"Allows installation in select vehicles; requires an AX-ADBOX1 or AX-ADBOX2 control box (not included); lets you retain select factory features\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-axxess-adbox-data-interface-harness-for-select-vehicles-black/2253237.p?id=1219070767647&skuId=2253237&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253237', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253237_sa.jpg\"}', 'upc' => '086429275588', 'provider' => 'bestbuy'],\n ['name' => \"My Soul Looks Back: The Genius of Marion... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-soul-looks-back-the-genius-of-marion-cd/2253242.p?id=110371&skuId=2253242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253242_sa.jpg\"}', 'upc' => '016351601124', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2015 Toyota Tacoma - Charcoal\", 'description_short' => \"Compatible with select 2012-2015 Toyota Tacoma vehicles; allows the installation of an aftermarket radio into a factory dash location; single DIN head unit provision; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2015 Toyota Tacoma vehicles; allows the installation of an aftermarket radio into a factory dash location; single DIN head unit provision; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2015-toyota-tacoma-charcoal/2253246.p?id=1219070766789&skuId=2253246', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253246_sa.jpg\"}', 'upc' => '086429272679', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2004 and Later GM, Pontiac and Saturn Vehicles - Silver\", 'description_short' => \"Compatible with select 2004 and later GM, Pontiac and Saturn vehicles; allows installation of an aftermarket radio in a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2004 and later GM, Pontiac and Saturn vehicles; allows installation of an aftermarket radio in a factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2004-and-later-gm-pontiac-and-saturn-vehicles-silver/2253255.p?id=1219070773338&skuId=2253255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253255_sa.jpg\"}', 'upc' => '086429247493', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Speaker Adapter Plates for Select Honda and Volkswagen Vehicles (2-Count)\", 'description_short' => \"Compatible with select Honda and Volkswagen vehicles; 5-1/4&quot; and 6-1/2&quot; speaker adapter plates; steel material\", 'description_long' => \"Compatible with select Honda and Volkswagen vehicles; 5-1/4&quot; and 6-1/2&quot; speaker adapter plates; steel material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-speaker-adapter-plates-for-select-honda-and-volkswagen-vehicles-2-count/2253264.p?id=1219070767249&skuId=2253264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253264_500x500_sa.jpg\"}', 'upc' => '086429118519', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Toyota Vehicles - Black\", 'description_short' => \"Compatible with select Toyota vehicles; allows installation of an aftermarket radio into a factory dash location; enables conversion from 2-shaft to DIN; multi faceplates\", 'description_long' => \"Compatible with select Toyota vehicles; allows installation of an aftermarket radio into a factory dash location; enables conversion from 2-shaft to DIN; multi faceplates\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-toyota-vehicles-black/2253273.p?id=1219070770298&skuId=2253273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253273_sa.jpg\"}', 'upc' => '086429002900', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Professional Installer Series TurboKit for Most 1995-2001 Geo Metro and Suzuki Swift Vehicles - Black\", 'description_short' => \"Compatible with most 1995-2001 Geo Metro and Suzuki Swift vehicles; accommodates quick conversion from 2-shaft to DIN; ABS plastic material\", 'description_long' => \"Compatible with most 1995-2001 Geo Metro and Suzuki Swift vehicles; accommodates quick conversion from 2-shaft to DIN; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-professional-installer-series-turbokit-for-most-1995-2001-geo-metro-and-suzuki-swift-vehicles-black/2253282.p?id=1219070774790&skuId=2253282', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253282_sa.jpg\"}', 'upc' => '086429017850', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness for Select 2006 and Later Chevrolet Vehicles - Black\", 'description_short' => \"Compatible with 2006 and later Chevrolet Impala and Monte Carlo vehicles; wires an aftermarket radio into a vehicle; keeps the factory harness intact\", 'description_long' => \"Compatible with 2006 and later Chevrolet Impala and Monte Carlo vehicles; wires an aftermarket radio into a vehicle; keeps the factory harness intact\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-for-select-2006-and-later-chevrolet-vehicles-black/2253291.p?id=1219070774062&skuId=2253291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253291_sa.jpg\"}', 'upc' => '086429153770', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire OEM Harness for Most 2002 and Later BMW and Volkswagen Vehicles - Black\", 'description_short' => \"Compatible with most 2002 and later BMW and Volkswagen vehicles; OEM wire harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 2002 and later BMW and Volkswagen vehicles; OEM wire harness; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-oem-harness-for-most-2002-and-later-bmw-and-volkswagen-vehicles-black/2253305.p?id=1219070766591&skuId=2253305&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253305', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253305_sa.jpg\"}', 'upc' => '086429090051', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Chevrolet Spark - Black\", 'description_short' => \"Compatible with most 2013-2015 Chevrolet Spark vehicles; double-DIN head unit and ISO-DIN head unit with pocket provisions; included interface; 12V accessory power\", 'description_long' => \"Compatible with most 2013-2015 Chevrolet Spark vehicles; double-DIN head unit and ISO-DIN head unit with pocket provisions; included interface; 12V accessory power\", 'price' => 174.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-chevrolet-spark-black/2253314.p?id=1219070770299&skuId=2253314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253314_sa.jpg\"}', 'upc' => '086429280216', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Aftermarket Radio Installation Kit for Select Subaru Legacy and Outback Vehicles - Silver\", 'description_short' => \"Compatible with select Subaru Legacy and Outback vehicles; stacked ISO and double DIN radio provisions; ABS plastic material; factory-matched paint\", 'description_long' => \"Compatible with select Subaru Legacy and Outback vehicles; stacked ISO and double DIN radio provisions; ABS plastic material; factory-matched paint\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-aftermarket-radio-installation-kit-for-select-subaru-legacy-and-outback-vehicles-silver/2253323.p?id=1219070772874&skuId=2253323&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253323', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253323_sa.jpg\"}', 'upc' => '086429250332', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2001-2006.5 Kia Optima - Black\", 'description_short' => \"Compatible with select Kia vehicles; ISO head unit provisions; CD jewel case pocket; ABS plastic material\", 'description_long' => \"Compatible with select Kia vehicles; ISO head unit provisions; CD jewel case pocket; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2001-2006-5-kia-optima-black/2253332.p?id=1219070768500&skuId=2253332', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253332_sa.jpg\"}', 'upc' => '086429084104', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Professional Installer Series TurboKit for select Hyundai Vehicles - Black\", 'description_short' => \"Compatible with select Hyundai vehicles; accommodates quick conversion from 2-shaft to DIN; ABS plastic material; designed to mount to the OEM radio mounting positions\", 'description_long' => \"Compatible with select Hyundai vehicles; accommodates quick conversion from 2-shaft to DIN; ABS plastic material; designed to mount to the OEM radio mounting positions\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-professional-installer-series-turbokit-for-select-hyundai-vehicles-black/2253341.p?id=1219070765461&skuId=2253341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253341_sa.jpg\"}', 'upc' => '086429019243', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2008 and Later Ford Escape, Mazda Tribute and Mercury Mariner Vehicles - Black\", 'description_short' => \"Compatible with select 2008 and later Ford Escape, Mazda Tribute and Mercury Mariner vehicles; allows installation of an aftermarket radio\", 'description_long' => \"Compatible with select 2008 and later Ford Escape, Mazda Tribute and Mercury Mariner vehicles; allows installation of an aftermarket radio\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2008-and-later-ford-escape-mazda-tribute-and-mercury-mariner-vehicles-black/2253369.p?id=1219070763255&skuId=2253369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253369_sa.jpg\"}', 'upc' => '086429233090', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2012 and Later Mazda CX-5 and 2014 and Later Mazda 6 Vehicles - Matte Black\", 'description_short' => \"Compatible with select 2012 and later Mazda CX-5 and 2014 and later Mazda 6 vehicles; allows installation of an aftermarket radio a factory dash location\", 'description_long' => \"Compatible with select 2012 and later Mazda CX-5 and 2014 and later Mazda 6 vehicles; allows installation of an aftermarket radio a factory dash location\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2012-and-later-mazda-cx-5-and-2014-and-later-mazda-6-vehicles-matte-black/2253378.p?id=1219070767840&skuId=2253378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253378_sa.jpg\"}', 'upc' => '086429272624', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2005-2011 Toyota Tacoma Vehicles - Gray\", 'description_short' => \"Compatible with most 2005-2011 Toyota Tacoma vehicles; double-DIN head unit provision; ABS plastic material; factory-matched paint and texture\", 'description_long' => \"Compatible with most 2005-2011 Toyota Tacoma vehicles; double-DIN head unit provision; ABS plastic material; factory-matched paint and texture\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2005-2011-toyota-tacoma-vehicles-gray/2253387.p?id=1219070767183&skuId=2253387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253387_sa.jpg\"}', 'upc' => '086429264681', 'provider' => 'bestbuy'],\n ['name' => \"Axxess - Axxess Auto-Detect Interface Control Box for Select Vehicles - Black\", 'description_short' => \"Compatible with select vehicles; lets you install an aftermarket radio\", 'description_long' => \"Compatible with select vehicles; lets you install an aftermarket radio\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/axxess-axxess-auto-detect-interface-control-box-for-select-vehicles-black/2253396.p?id=1219070767315&skuId=2253396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253396_sa.jpg\"}', 'upc' => '086429275564', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select Honda Accord and Crosstour Vehicles - Taupe\", 'description_short' => \"Compatible with select 2008 and later Honda Accord and 2010 and later Crosstour vehicles; DIN with pocket, ISO with pocket, double DIN and stacked ISO provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2008 and later Honda Accord and 2010 and later Crosstour vehicles; DIN with pocket, ISO with pocket, double DIN and stacked ISO provisions; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-honda-accord-and-crosstour-vehicles-taupe/2253401.p?id=1219070771265&skuId=2253401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253401_sa.jpg\"}', 'upc' => '086429179022', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2013-2015 Buick Enclave/Chevrolet Traverse/Gmc Acadia - Black\", 'description_short' => \"Compatible with select 2013-2015 and later Buick, Chevrolet and GMC vehicles; ISO-DIN head unit provision with pocket; ABS plastic material\", 'description_long' => \"Compatible with select 2013-2015 and later Buick, Chevrolet and GMC vehicles; ISO-DIN head unit provision with pocket; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2013-2015-buick-enclave-chevrolet-traverse-gmc-acadia-black/2253429.p?id=1219070770805&skuId=2253429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253429_sa.jpg\"}', 'upc' => '086429280711', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness for Select 1998-2005 Ford Vehicles - Multicolor\", 'description_short' => \"Compatible with select 1998-2005 Ford vehicles; allows installation of an aftermarket radio while keeping the factory radio harness intact; ABS-plastic material\", 'description_long' => \"Compatible with select 1998-2005 Ford vehicles; allows installation of an aftermarket radio while keeping the factory radio harness intact; ABS-plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-for-select-1998-2005-ford-vehicles-multicolor/2253438.p?id=1219070772941&skuId=2253438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253438_sa.jpg\"}', 'upc' => '086429153015', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Main Power Harness for Most 2011 and Later Ford Fiesta Vehicles - Black\", 'description_short' => \"Compatible with most 2011 and later Ford Fiesta vehicles; main power harness with 4 speaker connections; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 2011 and later Ford Fiesta vehicles; main power harness with 4 speaker connections; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-main-power-harness-for-most-2011-and-later-ford-fiesta-vehicles-black/2253447.p?id=1219070767581&skuId=2253447&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253447', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253447_sa.jpg\"}', 'upc' => '086429250981', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amplifier Bypass Jumper for Most 2000-2001 Chevrolet Impala and Monte Carlo Vehicles - Gray\", 'description_short' => \"Compatible with most 2000-2001 Chevrolet Impala and Monte Carlo vehicles; allows you to remove the factory amplifier without rewiring\", 'description_long' => \"Compatible with most 2000-2001 Chevrolet Impala and Monte Carlo vehicles; allows you to remove the factory amplifier without rewiring\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amplifier-bypass-jumper-for-most-2000-2001-chevrolet-impala-and-monte-carlo-vehicles-gray/2253456.p?id=1219070768896&skuId=2253456&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253456', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253456_sa.jpg\"}', 'upc' => '086429115099', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Amplifier Integration Plug for Select 1989-2000 Ford Vehicles - Black\", 'description_short' => \"Compatible with select 1989-2000 Ford vehicles that use aftermarket radios with 35W or less; for installation of aftermarket radios while keeping factory radio harness intact\", 'description_long' => \"Compatible with select 1989-2000 Ford vehicles that use aftermarket radios with 35W or less; for installation of aftermarket radios while keeping factory radio harness intact\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-amplifier-integration-plug-for-select-1989-2000-ford-vehicles-black/2253465.p?id=1219070772354&skuId=2253465', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253465_sa.jpg\"}', 'upc' => '086429008384', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Trim-Ring Border for Most DIN-Style Radios - Black\", 'description_short' => \"Compatible with most DIN-style radios; 3/4&quot; border; finishing for custom radio installation; kit replacement pocket; ABS plastic material\", 'description_long' => \"Compatible with most DIN-style radios; 3/4&quot; border; finishing for custom radio installation; kit replacement pocket; ABS plastic material\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-trim-ring-border-for-most-din-style-radios-black/2253474.p?id=1219070773206&skuId=2253474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253474_500x500_sa.jpg\"}', 'upc' => '086429005550', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2011-2013 Mitsubishi Outlander Sport - Black\", 'description_short' => \"Compatible with most 2011-2013 Mitsubishi Outlander Sport vehicles; DIN with pocket, double DIN, ISO with pocket and stacked ISO provisions; ABS plastic material\", 'description_long' => \"Compatible with most 2011-2013 Mitsubishi Outlander Sport vehicles; DIN with pocket, double DIN, ISO with pocket and stacked ISO provisions; ABS plastic material\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2011-2013-mitsubishi-outlander-sport-black/2253492.p?id=1219071227445&skuId=2253492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253492_sa.jpg\"}', 'upc' => '086429247455', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1987-1993 Nissan Hardbody Pickup/Pathfinder - Black\", 'description_short' => \"Compatible with most 1987-1993 Nissan Hardbody Pickup and Pathfinder vehicles; enables quick conversion from 2-shaft to DIN installation; snap-in shaft supports\", 'description_long' => \"Compatible with most 1987-1993 Nissan Hardbody Pickup and Pathfinder vehicles; enables quick conversion from 2-shaft to DIN installation; snap-in shaft supports\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1987-1993-nissan-hardbody-pickup-pathfinder-black/2253609.p?id=1219070763253&skuId=2253609&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253609', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253609_sa.jpg\"}', 'upc' => '086429008476', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1999-2002 Mercury Villager/Nissan Quest - Black\", 'description_short' => \"Compatible with most 1999-2002 Mercury Villager and Nissan Quest vehicles; DIN head unit provisions; pocket; recessed design\", 'description_long' => \"Compatible with most 1999-2002 Mercury Villager and Nissan Quest vehicles; DIN head unit provisions; pocket; recessed design\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1999-2002-mercury-villager-nissan-quest-black/2253618.p?id=1219070764671&skuId=2253618', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253618_sa.jpg\"}', 'upc' => '086429081431', 'provider' => 'bestbuy'],\n ['name' => \"Flame Job [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flame-job-pa-cd/2253625.p?id=108832&skuId=2253625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253625_sa.jpg\"}', 'upc' => '075992459228', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2014 Hyundai Accent without factory radio - Black\", 'description_short' => \"Compatible with select 2012-2014 Hyundai Accent vehicles with Radio Delete; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2014 Hyundai Accent vehicles with Radio Delete; allows the installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2014-hyundai-accent-without-factory-radio-black/2253627.p?id=1219070775771&skuId=2253627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253627_sa.jpg\"}', 'upc' => '086429258574', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2008-2011 Mercedes-Benz C-Class Vehicles - Black\", 'description_short' => \"Compatible with select 2008-2011 Mercedes-Benz C-Class vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2008-2011 Mercedes-Benz C-Class vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2008-2011-mercedes-benz-c-class-vehicles-black/2253636.p?id=1219070771398&skuId=2253636&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253636', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253636_500x500_sa.jpg\"}', 'upc' => '086429265312', 'provider' => 'bestbuy'],\n ['name' => \"The Gate to the Mind's Eye - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gate-to-the-minds-eye-cd/2253643.p?id=108833&skuId=2253643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253643_sa.jpg\"}', 'upc' => '075992458627', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Most 2004-2009 Toyota Prius Vehicles - Matte Black\", 'description_short' => \"Compatible with most 2004-2009 Toyota Prius vehicles; double-DIN radio provision; ABS plastic material\", 'description_long' => \"Compatible with most 2004-2009 Toyota Prius vehicles; double-DIN radio provision; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-most-2004-2009-toyota-prius-vehicles-matte-black/2253645.p?id=1219070763254&skuId=2253645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253645_sa.jpg\"}', 'upc' => '086429279883', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Aftermarket Radio Installation Kit for 2007-2011 Toyota Camry Vehicles - Silver\", 'description_short' => \"Compatible with 2007-2011 Toyota Camry vehicles; double DIN radio provision; ABS plastic material; factory-matched paint\", 'description_long' => \"Compatible with 2007-2011 Toyota Camry vehicles; double DIN radio provision; ABS plastic material; factory-matched paint\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-aftermarket-radio-installation-kit-for-2007-2011-toyota-camry-vehicles-silver/2253654.p?id=1219070773276&skuId=2253654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253654_sa.jpg\"}', 'upc' => '086429273270', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Install Bay Square Back-Up Camera for Most Vehicles - Black\", 'description_short' => \"Compatible with most vehicles; 4 IR LEDs; 170&#176; viewing angle; surface-mount design; ABS plastic material\", 'description_long' => \"Compatible with most vehicles; 4 IR LEDs; 170&#176; viewing angle; surface-mount design; ABS plastic material\", 'price' => 64.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-install-bay-square-back-up-camera-for-most-vehicles-black/2253663.p?id=1219070775045&skuId=2253663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253663_sa.jpg\"}', 'upc' => '086429274833', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2013 and Later Dodge Ram 1500, 2500 and 3500 Vehicles - Matte Black\", 'description_short' => \"Compatible with select 2013 and later Dodge Ram 1500, 2500 and 3500 vehicles; allows installation of an aftermarket radio into a factory dash location\", 'description_long' => \"Compatible with select 2013 and later Dodge Ram 1500, 2500 and 3500 vehicles; allows installation of an aftermarket radio into a factory dash location\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2013-and-later-dodge-ram-1500-2500-and-3500-vehicles-matte-black/2253672.p?id=1219070763257&skuId=2253672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253672_sa.jpg\"}', 'upc' => '086429281060', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 2012-2015 Toyota Tacoma - Black\", 'description_short' => \"Compatible with select 2012-2015 Toyota Tacoma vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO DIN head unit provision; ABS plastic material\", 'description_long' => \"Compatible with select 2012-2015 Toyota Tacoma vehicles; allows the installation of an aftermarket radio into a factory dash location; ISO DIN head unit provision; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-2012-2015-toyota-tacoma-black/2253681.p?id=1219070765658&skuId=2253681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253681_sa.jpg\"}', 'upc' => '086429273560', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2008 and Later Honda Accord Vehicles - Taupe\", 'description_short' => \"Compatible with select 2008 and later Honda Accord vehicles; DIN and ISO with pocket, double DIN and stacked ISO provisions; ABS plastic material\", 'description_long' => \"Compatible with select 2008 and later Honda Accord vehicles; DIN and ISO with pocket, double DIN and stacked ISO provisions; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2008-and-later-honda-accord-vehicles-taupe/2253709.p?id=1219070769622&skuId=2253709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253709_sa.jpg\"}', 'upc' => '086429179015', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire SWC Harness with RCAs for Most 2003-2010 Toyota Vehicles - Multicolor\", 'description_short' => \"Compatible with most 2003-2010 Toyota vehicles; SWC harness; RCAs; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 2003-2010 Toyota vehicles; SWC harness; RCAs; ABS plastic-molded connector\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-swc-harness-with-rcas-for-most-2003-2010-toyota-vehicles-multicolor/2253718.p?id=1219070774857&skuId=2253718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253718_sa.jpg\"}', 'upc' => '086429230822', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire Aftermarket Radio Wire Harness for Most 2002 and Later Chrysler Vehicles - Multicolor\", 'description_short' => \"Compatible with most 2002 and later Chrysler vehicles; wires an aftermarket radio into a vehicle; eliminates the need to cut/splice factory radio harness\", 'description_long' => \"Compatible with most 2002 and later Chrysler vehicles; wires an aftermarket radio into a vehicle; eliminates the need to cut/splice factory radio harness\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-aftermarket-radio-wire-harness-for-most-2002-and-later-chrysler-vehicles-multicolor/2253727.p?id=1219070773474&skuId=2253727&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253727', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253727_sa.jpg\"}', 'upc' => '086429082346', 'provider' => 'bestbuy'],\n ['name' => \"Wildflowers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/wildflowers-cd/2253732.p?id=108297&skuId=2253732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253732_sa.jpg\"}', 'upc' => '093624575924', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Antenna Adapter for Most 2009 and Later Subaru Vehicles - Black\", 'description_short' => \"Compatible with most 2009 and later Subaru vehicles; antenna adapter; copper, polypropylene and steel materials\", 'description_long' => \"Compatible with most 2009 and later Subaru vehicles; antenna adapter; copper, polypropylene and steel materials\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-antenna-adapter-for-most-2009-and-later-subaru-vehicles-black/2253736.p?id=1219070776030&skuId=2253736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253736_sa.jpg\"}', 'upc' => '086429137954', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Installation Kit for Select 2009 and Later Ford F-150 Vehicles - High Gloss Black\", 'description_short' => \"Compatible with select 2009 and later Ford F-150 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'description_long' => \"Compatible with select 2009 and later Ford F-150 vehicles; allows installation of an aftermarket radio into a factory dash location; ABS plastic material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-installation-kit-for-select-2009-and-later-ford-f-150-vehicles-high-gloss-black/2253754.p?id=1219070763341&skuId=2253754&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253754', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253754_sa.jpg\"}', 'upc' => '086429276059', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Turbo Wire OEM Harness for Most 1998-2008 GM Vehicles - Black/White\", 'description_short' => \"Compatible with most 1998-2008 GM vehicles; OEM wire harness; ABS plastic-molded connector\", 'description_long' => \"Compatible with most 1998-2008 GM vehicles; OEM wire harness; ABS plastic-molded connector\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-turbo-wire-oem-harness-for-most-1998-2008-gm-vehicles-black-white/2253763.p?id=1219070766254&skuId=2253763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253763_sa.jpg\"}', 'upc' => '086429081646', 'provider' => 'bestbuy'],\n ['name' => \"Apple - 6.6' Lightning-to-USB 2.0 Cable - White\", 'description_short' => \"Compatible with most Apple&#174; iPad&#174;, iPhone&#174; and iPod&#174; models with a Lightning connector; charges and syncs your device; reversible design\", 'description_long' => \"Compatible with most Apple&#174; iPad&#174;, iPhone&#174; and iPod&#174; models with a Lightning connector; charges and syncs your device; reversible design\", 'price' => 32.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/apple-6-6-lightning-to-usb-2-0-cable-white/2253772.p?id=1219070443474&skuId=2253772&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253772', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253772_sa.jpg\"}', 'upc' => '888462322997', 'provider' => 'bestbuy'],\n ['name' => \"Fina Estampa - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fina-estampa-cd/2253894.p?id=108965&skuId=2253894&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2253894', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2253\\/2253894_sa.jpg\"}', 'upc' => '731452274526', 'provider' => 'bestbuy'],\n ['name' => \"Soul Sauce - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-sauce-cd/2254125.p?id=71459&skuId=2254125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254125_sa.jpg\"}', 'upc' => '731452166821', 'provider' => 'bestbuy'],\n ['name' => \"Best of Ella Fitzgerald: First Lady of Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-ella-fitzgerald-first-lady-of-song-cd/2254143.p?id=109061&skuId=2254143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254143_sa.jpg\"}', 'upc' => '731452338228', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Masters 26: Lionel Hampton with Oscar... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-masters-26-lionel-hampton-with-oscar-cd/2254189.p?id=109067&skuId=2254189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254189_sa.jpg\"}', 'upc' => '731452185327', 'provider' => 'bestbuy'],\n ['name' => \"Juned - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/juned-cd/2254429.p?id=109099&skuId=2254429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254429_sa.jpg\"}', 'upc' => '796818000720', 'provider' => 'bestbuy'],\n ['name' => \"Idjit Savant - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/idjit-savant-cd/2254811.p?id=108892&skuId=2254811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254811.jpg\"}', 'upc' => '021075116823', 'provider' => 'bestbuy'],\n ['name' => \"It's Alive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-alive-cd/2254893.p?id=108899&skuId=2254893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254893.jpg\"}', 'upc' => '028121100829', 'provider' => 'bestbuy'],\n ['name' => \"Dystrophy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dystrophy-cd/2254964.p?id=108911&skuId=2254964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2254964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2254\\/2254964.jpg\"}', 'upc' => '026245107427', 'provider' => 'bestbuy'],\n ['name' => \"Songs and Moments - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-and-moments-cd/2255053.p?id=111679&skuId=2255053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255053_sa.jpg\"}', 'upc' => '063757807223', 'provider' => 'bestbuy'],\n ['name' => \"Nikon - SB-700 AF Speedlight External Flash - Black\", 'description_short' => \"Compatible with most Nikon digital SLR cameras with a hot shoe; wireless flash control; 3 light distribution patterns; color filter identification\", 'description_long' => \"Compatible with most Nikon digital SLR cameras with a hot shoe; wireless flash control; 3 light distribution patterns; color filter identification\", 'price' => 329.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nikon-sb-700-af-speedlight-external-flash-black/2255056.p?id=1218315990890&skuId=2255056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255056_rc.jpg\"}', 'upc' => '018208048083', 'provider' => 'bestbuy'],\n ['name' => \"Leadbelly's Last Sessions [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leadbellys-last-sessions-box-cd/2255071.p?id=110460&skuId=2255071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255071_sa.jpg\"}', 'upc' => '093074006825', 'provider' => 'bestbuy'],\n ['name' => \"Poet Game - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/poet-game-cd/2255099.p?id=110497&skuId=2255099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255099_sa.jpg\"}', 'upc' => '033651006824', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Toni Basil: Mickey & Other Love Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-toni-basil-mickey-other-love-songs-cd/2255133.p?id=110418&skuId=2255133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255133_sa.jpg\"}', 'upc' => '793018205726', 'provider' => 'bestbuy'],\n ['name' => \"Leading Off... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leading-off-cd/2255179.p?id=109556&skuId=2255179&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255179', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255179.jpg\"}', 'upc' => '015891382821', 'provider' => 'bestbuy'],\n ['name' => \"Blue Divide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-divide-cd/2255428.p?id=111794&skuId=2255428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255428_sa.jpg\"}', 'upc' => '016351801425', 'provider' => 'bestbuy'],\n ['name' => \"Brother - Shipping Label Tape Cartridge - White\", 'description_short' => \"4&quot; Width x 2.40&quot; Length - 1 / Roll - 300/Roll - Paper - White\", 'description_long' => \"4&quot; Width x 2.40&quot; Length - 1 / Roll - 300/Roll - Paper - White\", 'price' => 27.99, 'sale_price' => 18.99, 'url' => 'http://www.bestbuy.com/site/brother-shipping-label-tape-cartridge-white/2255444.p?id=1218315552940&skuId=2255444', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255444_sa.jpg\"}', 'upc' => '012502611660', 'provider' => 'bestbuy'],\n ['name' => \"Happy Birthday, Louis! Armstrong & His All-Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-birthday-louis-armstrong-his-all-stars-cd/2255473.p?id=108755&skuId=2255473&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255473', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255473.jpg\"}', 'upc' => '723918302423', 'provider' => 'bestbuy'],\n ['name' => \"Summit Conference - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/summit-conference-cd/2255482.p?id=111188&skuId=2255482&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255482', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255482_sa.jpg\"}', 'upc' => '782737100320', 'provider' => 'bestbuy'],\n ['name' => \"Synth Thesis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/synth-thesis-cd/2255491.p?id=112557&skuId=2255491&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255491', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255491_sa.jpg\"}', 'upc' => '782737100122', 'provider' => 'bestbuy'],\n ['name' => \"As - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-cd/2255507.p?id=112558&skuId=2255507&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255507', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255507_sa.jpg\"}', 'upc' => '782737100429', 'provider' => 'bestbuy'],\n ['name' => \"Milagro - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/milagro-cd/2255525.p?id=112559&skuId=2255525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255525.jpg\"}', 'upc' => '782737100221', 'provider' => 'bestbuy'],\n ['name' => \"Double Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-time-cd/2255534.p?id=112562&skuId=2255534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255534_sa.jpg\"}', 'upc' => '068944005826', 'provider' => 'bestbuy'],\n ['name' => \"Mirage - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mirage-cd/2255543.p?id=112565&skuId=2255543&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255543', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255543.jpg\"}', 'upc' => '068944003822', 'provider' => 'bestbuy'],\n ['name' => \"Just You, Just Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-you-just-me-cd/2255810.p?id=110455&skuId=2255810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255810_sa.jpg\"}', 'upc' => '089408336324', 'provider' => 'bestbuy'],\n ['name' => \"Don't Get Sassy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-get-sassy-cd/2255829.p?id=150943&skuId=2255829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2255829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2255\\/2255829_sa.jpg\"}', 'upc' => '089408336829', 'provider' => 'bestbuy'],\n ['name' => \"PLAYS BALL / (FULL DOL) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/plays-ball-full-dol-dvd/2256443.p?id=2190902&skuId=2256443&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256443', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2256\\/2256443_sa.jpg\"}', 'upc' => '025192077975', 'provider' => 'bestbuy'],\n ['name' => \"Bionic Woman: Season 2 [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bionic-woman-season-2-5-discs-dvd/2256452.p?id=2190904&skuId=2256452&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256452', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2256\\/2256452.jpg\"}', 'upc' => '025192075391', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256559', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055193936', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256577', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055193813', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055193875', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055193868', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256756', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_software_l.jpg\"}', 'upc' => '696055193943', 'provider' => 'bestbuy'],\n ['name' => \"Jensen - Rechargeable Battery for Select Panasonic and Uniden Cordless Telephones - White\", 'description_short' => \"Compatible with select Panasonic and Uniden cordless telephones; rechargeable\", 'description_long' => \"Compatible with select Panasonic and Uniden cordless telephones; rechargeable\", 'price' => 19.99, 'sale_price' => 10.99, 'url' => 'http://www.bestbuy.com/site/jensen-rechargeable-battery-for-select-panasonic-and-uniden-cordless-telephones-white/2256974.p?id=1218315992835&skuId=2256974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2256974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2256\\/2256974_sa.jpg\"}', 'upc' => '044476085710', 'provider' => 'bestbuy'],\n ['name' => \"Sharp - 50\\\" Class (49.7\\\" Diag.) - LED - 1080p - HDTV - Black\", 'description_short' => \"Only at Best Buy\n1080p resolution60Hz refresh rate\", 'description_long' => \"Only at Best Buy\n1080p resolution60Hz refresh rate\", 'price' => 449.99, 'sale_price' => 379.99, 'url' => 'http://www.bestbuy.com/site/sharp-50-class-49-7-diag--led-1080p-hdtv-black/2257095.p?id=1219535627181&skuId=2257095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257095_sa.jpg\"}', 'upc' => '600603185649', 'provider' => 'bestbuy'],\n ['name' => \"Just 88 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-88-cd/2257131.p?id=112568&skuId=2257131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257131_sa.jpg\"}', 'upc' => '068944005123', 'provider' => 'bestbuy'],\n ['name' => \"Suite Mingus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/suite-mingus-cd/2257140.p?id=112570&skuId=2257140&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257140', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257140.jpg\"}', 'upc' => '068944001521', 'provider' => 'bestbuy'],\n ['name' => \"English Country Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/english-country-dances-cd/2257177.p?id=2066128&skuId=2257177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257177.jpg\"}', 'upc' => '750582212321', 'provider' => 'bestbuy'],\n ['name' => \"Creation's Journey: Native American Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creations-journey-native-american-music-cd/2257355.p?id=112615&skuId=2257355&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257355', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257355_sa.jpg\"}', 'upc' => '093074041024', 'provider' => 'bestbuy'],\n ['name' => \"Bring Back Romance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bring-back-romance-cd/2257382.p?id=110406&skuId=2257382&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257382', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257382_sa.jpg\"}', 'upc' => '021471141726', 'provider' => 'bestbuy'],\n ['name' => \"Country Strong (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-strong-dvd/2257406.p?id=2195833&skuId=2257406&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257406', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257406_sa.jpg\"}', 'upc' => '043396374461', 'provider' => 'bestbuy'],\n ['name' => \"Country Strong (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-strong-blu-ray-disc/2257424.p?id=2195833&skuId=2257424&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257424', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257424_sa.jpg\"}', 'upc' => '043396374430', 'provider' => 'bestbuy'],\n ['name' => \"True Grit: Music from the Classic Films of... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-grit-music-from-the-classic-films-of-cd-various/2257435.p?id=112625&skuId=2257435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257435.jpg\"}', 'upc' => '738572103729', 'provider' => 'bestbuy'],\n ['name' => \"Complete Early Recordings 1929-1930 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-early-recordings-1929-1930-cd/2257453.p?id=180716&skuId=2257453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257453_sa.jpg\"}', 'upc' => '016351201225', 'provider' => 'bestbuy'],\n ['name' => \"Transformers: The Complete Series [15 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/transformers-the-complete-series-15-discs-dvd/2257512.p?id=2193878&skuId=2257512&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257512', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257512_sa.jpg\"}', 'upc' => '826663125368', 'provider' => 'bestbuy'],\n ['name' => \"Super Hero Squad Show: Quest for the Infinity Sword! Vol. 4 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hero-squad-show-quest-for-the-infinity-sword-vol-4-dvd/2257521.p?id=2193854&skuId=2257521&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257521', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257521_sa.jpg\"}', 'upc' => '826663125047', 'provider' => 'bestbuy'],\n ['name' => \"Ron Howard Action Pack [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ron-howard-action-pack-2-discs-dvd/2257549.p?id=2193876&skuId=2257549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257549_sa.jpg\"}', 'upc' => '826663124644', 'provider' => 'bestbuy'],\n ['name' => \"Beverly Kills 50187 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beverly-kills-50187-cd/2257578.p?id=2103167&skuId=2257578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257578.jpg\"}', 'upc' => '756504400029', 'provider' => 'bestbuy'],\n ['name' => \"Five Deadly Venoms (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/five-deadly-venoms-blu-ray-disc/2257585.p?id=48893&skuId=2257585&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257585', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257585_sa.jpg\"}', 'upc' => '883476032054', 'provider' => 'bestbuy'],\n ['name' => \"The Terror Wheel [EP] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-terror-wheel-ep-pa-cd/2257596.p?id=2444037&skuId=2257596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257596_sa.jpg\"}', 'upc' => '756504400128', 'provider' => 'bestbuy'],\n ['name' => \"Melissa & Joey: Season 1 Pt.1 (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/melissa-joey-season-1-pt-1-2-disc-dvd/2257619.p?id=2193874&skuId=2257619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257619.jpg\"}', 'upc' => '826663125689', 'provider' => 'bestbuy'],\n ['name' => \"Soy Tu Duena (4 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soy-tu-duena-4-disc-dvd/2257628.p?id=2193853&skuId=2257628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257628.jpg\"}', 'upc' => '883476032023', 'provider' => 'bestbuy'],\n ['name' => \"WWE: Wrestlemania XXVII (DVD) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-wrestlemania-xxvii-dvd-2-disc/2257637.p?id=2193865&skuId=2257637&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257637', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257637_sa.jpg\"}', 'upc' => '651191949656', 'provider' => 'bestbuy'],\n ['name' => \"Wild Thornberries: Season 1 [4 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-thornberries-season-1-4-discs-dvd/2257646.p?id=2193872&skuId=2257646&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257646', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257646_sa.jpg\"}', 'upc' => '826663125054', 'provider' => 'bestbuy'],\n ['name' => \"Acoustic Counterpoint - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acoustic-counterpoint-cd/2257827.p?id=2177802&skuId=2257827&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2257827', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2257\\/2257827_sa.jpg\"}', 'upc' => '022551003224', 'provider' => 'bestbuy'],\n ['name' => \"Mis 40 en Bellas Artes: En Vivo Desde Bellas... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-40-en-bellas-artes-en-vivo-desde-bellas-cd/2258021.p?id=3330825&skuId=2258021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258021_sa.jpg\"}', 'upc' => '602537819614', 'provider' => 'bestbuy'],\n ['name' => \"Ain't Love Wonderful - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-love-wonderful-cd/2258023.p?id=186690&skuId=2258023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258023_sa.jpg\"}', 'upc' => '048021442027', 'provider' => 'bestbuy'],\n ['name' => \"Stars of Jazz, Vol. 2 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stars-of-jazz-vol-2-various-cd/2258032.p?id=67957&skuId=2258032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258032_sa.jpg\"}', 'upc' => '762247606321', 'provider' => 'bestbuy'],\n ['name' => \"Tejano Siempre #1's - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tejano-siempre-1s-cd-various/2258049.p?id=3328235&skuId=2258049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258049.jpg\"}', 'upc' => '602547007452', 'provider' => 'bestbuy'],\n ['name' => \"Banda, No. 1's: 2014 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/banda-no-1s-2014-cd-various/2258058.p?id=3320056&skuId=2258058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258058_sa.jpg\"}', 'upc' => '600753563618', 'provider' => 'bestbuy'],\n ['name' => \"Norteño #1's 2014 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/norteno-1s-2014-cd-various/2258076.p?id=3328238&skuId=2258076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258076.jpg\"}', 'upc' => '600753554104', 'provider' => 'bestbuy'],\n ['name' => \"Los Dúo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/los-duo-cd/2258085.p?id=3332062&skuId=2258085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258085_sa.jpg\"}', 'upc' => '602547092991', 'provider' => 'bestbuy'],\n ['name' => \"Salt City Six - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/salt-city-six-cd/2258087.p?id=282073&skuId=2258087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258087_sa.jpg\"}', 'upc' => '762247607823', 'provider' => 'bestbuy'],\n ['name' => \"Mis 40 en Bellas Artes: En Vivo Desde Bellas... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mis-40-en-bellas-artes-en-vivo-desde-bellas-cd/2258094.p?id=3330804&skuId=2258094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258094.jpg\"}', 'upc' => '602537819607', 'provider' => 'bestbuy'],\n ['name' => \"Promise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/promise-cd/2258096.p?id=130861&skuId=2258096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258096_sa.jpg\"}', 'upc' => '048021800827', 'provider' => 'bestbuy'],\n ['name' => \"Dúo [Deluxe] [CD/DVD] [CD & DVD] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duo-deluxe-cd-dvd-cd-dvd-cd-dvd-deluxe-edition/2258109.p?id=3338832&skuId=2258109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258109_sa.jpg\"}', 'upc' => '602547187543', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Record Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-record-story-cd/2258121.p?id=282042&skuId=2258121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258121.jpg\"}', 'upc' => '762247608226', 'provider' => 'bestbuy'],\n ['name' => \"All Stars 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-stars-1-cd/2258194.p?id=265657&skuId=2258194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258194.jpg\"}', 'upc' => '762247609124', 'provider' => 'bestbuy'],\n ['name' => \"All Stars 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-stars-2-cd/2258210.p?id=282041&skuId=2258210&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258210', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258210.jpg\"}', 'upc' => '762247609223', 'provider' => 'bestbuy'],\n ['name' => \"Camel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/camel-cd/2258309.p?id=265390&skuId=2258309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258309.jpg\"}', 'upc' => '741299000226', 'provider' => 'bestbuy'],\n ['name' => \"On the Road 1972 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-road-1972-cd/2258336.p?id=248663&skuId=2258336&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258336', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258336_sa.jpg\"}', 'upc' => '741299000325', 'provider' => 'bestbuy'],\n ['name' => \"Never Let Go - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/never-let-go-cd/2258363.p?id=248662&skuId=2258363&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258363', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258363.jpg\"}', 'upc' => '741299000424', 'provider' => 'bestbuy'],\n ['name' => \"In the Beginning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-beginning-cd/2258434.p?id=104882&skuId=2258434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258434.jpg\"}', 'upc' => '762247800125', 'provider' => 'bestbuy'],\n ['name' => \"Outrageous - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outrageous-cd/2258470.p?id=255409&skuId=2258470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258470.jpg\"}', 'upc' => '762247810520', 'provider' => 'bestbuy'],\n ['name' => \"Strange Celestial Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strange-celestial-road-cd/2258611.p?id=71215&skuId=2258611&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258611', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258611_sa.jpg\"}', 'upc' => '011661303522', 'provider' => 'bestbuy'],\n ['name' => \"Stride by Stride - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stride-by-stride-cd/2258657.p?id=109013&skuId=2258657&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258657', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258657_sa.jpg\"}', 'upc' => '762247810629', 'provider' => 'bestbuy'],\n ['name' => \"In Jesus (Love is All I Need) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-jesus-love-is-all-i-need-cd/2258675.p?id=373148&skuId=2258675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258675.jpg\"}', 'upc' => '015668550729', 'provider' => 'bestbuy'],\n ['name' => \"Rags-Blues-Joys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rags-blues-joys-cd/2258700.p?id=276345&skuId=2258700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258700_sa.jpg\"}', 'upc' => '762247810926', 'provider' => 'bestbuy'],\n ['name' => \"Living a Ragtime Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-a-ragtime-life-cd/2258782.p?id=255408&skuId=2258782&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258782', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258782.jpg\"}', 'upc' => '762247811022', 'provider' => 'bestbuy'],\n ['name' => \"13 of the Best: Doo Wop Love Songs - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/13-of-the-best-doo-wop-love-songs-various-cd/2258817.p?id=105725&skuId=2258817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258817.jpg\"}', 'upc' => '081658905527', 'provider' => 'bestbuy'],\n ['name' => \"Second Stage: The Symphonic Sound Stage, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/second-stage-the-symphonic-sound-stage-vol-2-cd-various/2258871.p?id=2257982&skuId=2258871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258871.jpg\"}', 'upc' => '013491350424', 'provider' => 'bestbuy'],\n ['name' => \"Trumpets No End - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trumpets-no-end-cd/2258880.p?id=70890&skuId=2258880&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258880', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258880.jpg\"}', 'upc' => '013491400327', 'provider' => 'bestbuy'],\n ['name' => \"Essence: The Timeless All-Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/essence-the-timeless-all-stars-cd/2258906.p?id=71432&skuId=2258906&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258906', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258906.jpg\"}', 'upc' => '013491400624', 'provider' => 'bestbuy'],\n ['name' => \"The Butch Thompson Trio Plays Favorites - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-butch-thompson-trio-plays-favorites-cd/2258915.p?id=276349&skuId=2258915&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258915', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258915_sa.jpg\"}', 'upc' => '762247811329', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-piano-cd/2258951.p?id=276346&skuId=2258951&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258951', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258951_sa.jpg\"}', 'upc' => '762247811428', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Streets 1981-1985 Suite for Piano - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-streets-1981-1985-suite-for-piano-cd/2258979.p?id=70382&skuId=2258979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2258979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2258\\/2258979.jpg\"}', 'upc' => '762247811527', 'provider' => 'bestbuy'],\n ['name' => \"Live At The 100 Club - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-100-club-cd/2259004.p?id=2015512&skuId=2259004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259004.jpg\"}', 'upc' => '762247808923', 'provider' => 'bestbuy'],\n ['name' => \"Alligator Crawl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alligator-crawl-cd/2259022.p?id=109362&skuId=2259022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259022_sa.jpg\"}', 'upc' => '762247809227', 'provider' => 'bestbuy'],\n ['name' => \"Chicago Session -- 1987 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chicago-session-1987-cd/2259040.p?id=71002&skuId=2259040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259040.jpg\"}', 'upc' => '762247809821', 'provider' => 'bestbuy'],\n ['name' => \"S Wonderful... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/s-wonderful-cd/2259086.p?id=248121&skuId=2259086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259086.jpg\"}', 'upc' => '762247618126', 'provider' => 'bestbuy'],\n ['name' => \"California Here I Come - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-here-i-come-cd/2259120.p?id=265656&skuId=2259120&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259120', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259120.jpg\"}', 'upc' => '762247618225', 'provider' => 'bestbuy'],\n ['name' => \"Variety of Country Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/variety-of-country-songs-cd/2259148.p?id=96454&skuId=2259148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259148.jpg\"}', 'upc' => '012676064620', 'provider' => 'bestbuy'],\n ['name' => \"Petite Fleur - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/petite-fleur-cd/2259184.p?id=248119&skuId=2259184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259184.jpg\"}', 'upc' => '762247618423', 'provider' => 'bestbuy'],\n ['name' => \"There's Yes! Yes! In Your Eyes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/theres-yes-yes-in-your-eyes-cd/2259200.p?id=2065315&skuId=2259200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259200.jpg\"}', 'upc' => '762247618621', 'provider' => 'bestbuy'],\n ['name' => \"Extra! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/extra-cd/2259255.p?id=69717&skuId=2259255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259255_sa.jpg\"}', 'upc' => '762247619024', 'provider' => 'bestbuy'],\n ['name' => \"The Great Composer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-great-composer-cd/2259264.p?id=75702&skuId=2259264&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259264', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259264_sa.jpg\"}', 'upc' => '012676065320', 'provider' => 'bestbuy'],\n ['name' => \"Dangerhouse, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dangerhouse-vol-2-cd-various/2259273.p?id=1476253&skuId=2259273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259273_sa.jpg\"}', 'upc' => '018663105024', 'provider' => 'bestbuy'],\n ['name' => \"Introducing Alain Bouchet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/introducing-alain-bouchet-cd/2259308.p?id=282054&skuId=2259308&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259308', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259308.jpg\"}', 'upc' => '762247619222', 'provider' => 'bestbuy'],\n ['name' => \"The Band Swings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-band-swings-cd/2259335.p?id=63606&skuId=2259335&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259335', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259335.jpg\"}', 'upc' => '012676065726', 'provider' => 'bestbuy'],\n ['name' => \"Singin The Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singin-the-blues-cd/2259344.p?id=282053&skuId=2259344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259344.jpg\"}', 'upc' => '762247619321', 'provider' => 'bestbuy'],\n ['name' => \"Who Do You Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/who-do-you-love-cd/2259415.p?id=97906&skuId=2259415&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259415', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259415_sa.jpg\"}', 'upc' => '090431500729', 'provider' => 'bestbuy'],\n ['name' => \"Battle of the Blues, Vol. 4 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-of-the-blues-vol-4-cd/2259451.p?id=84893&skuId=2259451&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259451', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259451_sa.jpg\"}', 'upc' => '012676066822', 'provider' => 'bestbuy'],\n ['name' => \"Stomps & Blues - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stomps-blues-various-cd/2259629.p?id=265655&skuId=2259629&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259629', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259629.jpg\"}', 'upc' => '762247619529', 'provider' => 'bestbuy'],\n ['name' => \"Singing Songs Everyone Knows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-songs-everyone-knows-cd/2259647.p?id=63605&skuId=2259647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259647_sa.jpg\"}', 'upc' => '012676067621', 'provider' => 'bestbuy'],\n ['name' => \"Kenny Davern Big Three - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kenny-davern-big-three-cd/2259665.p?id=65481&skuId=2259665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259665_sa.jpg\"}', 'upc' => '762247619727', 'provider' => 'bestbuy'],\n ['name' => \"Coast to Coast Swingin' Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coast-to-coast-swingin-jazz-cd/2259692.p?id=248111&skuId=2259692&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259692', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259692_sa.jpg\"}', 'upc' => '762247619826', 'provider' => 'bestbuy'],\n ['name' => \"The Five Royales - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-five-royales-cd/2259709.p?id=82325&skuId=2259709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259709.jpg\"}', 'upc' => '012676067829', 'provider' => 'bestbuy'],\n ['name' => \"Wild Bill Davison's Jazzologists - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-bill-davisons-jazzologists-cd/2259781.p?id=281021&skuId=2259781&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259781', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259781.jpg\"}', 'upc' => '762247600220', 'provider' => 'bestbuy'],\n ['name' => \"Muggsy Remembered, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/muggsy-remembered-vol-2-cd/2259825.p?id=72037&skuId=2259825&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259825', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259825.jpg\"}', 'upc' => '762247620020', 'provider' => 'bestbuy'],\n ['name' => \"The Lost Texas Tapes, Vol. 5 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-lost-texas-tapes-vol-5-cd/2259834.p?id=85682&skuId=2259834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259834.jpg\"}', 'upc' => '090431520727', 'provider' => 'bestbuy'],\n ['name' => \"Singasong - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singasong-cd/2259870.p?id=2151375&skuId=2259870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259870_sa.jpg\"}', 'upc' => '012676070928', 'provider' => 'bestbuy'],\n ['name' => \"Swingin & Singin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swingin-singin-cd/2259889.p?id=265654&skuId=2259889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259889.jpg\"}', 'upc' => '762247620228', 'provider' => 'bestbuy'],\n ['name' => \"With a Southern Accent - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-a-southern-accent-cd/2259914.p?id=248110&skuId=2259914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259914.jpg\"}', 'upc' => '762247620327', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Rock n' Blues, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-rock-n-blues-vol-3-cd-various/2259969.p?id=84826&skuId=2259969&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2259969', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2259\\/2259969_sa.jpg\"}', 'upc' => '090431521021', 'provider' => 'bestbuy'],\n ['name' => \"Featuring Clyde McPhatter and Jackie Wilson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/featuring-clyde-mcphatter-and-jackie-wilson-cd/2260163.p?id=103468&skuId=2260163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260163.jpg\"}', 'upc' => '012676073325', 'provider' => 'bestbuy'],\n ['name' => \"Pearls - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pearls-cd/2260225.p?id=1550496&skuId=2260225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260225_sa.jpg\"}', 'upc' => '762247620426', 'provider' => 'bestbuy'],\n ['name' => \"Withholding Pattern [DigDownLoad] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/withholding-pattern-digdownload-cd/2260458.p?id=71243&skuId=2260458&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260458', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260458.jpg\"}', 'upc' => '042282540720', 'provider' => 'bestbuy'],\n ['name' => \"JisonCase - Matelassé Quilted Folio Case for Samsung Galaxy S 4 Cell Phones - Black\", 'description_short' => \"Compatible with Samsung Galaxy S 4 cell phones; quilted leather cover; internal lining; precision cutouts; automatically wakes your phone when opened\", 'description_long' => \"Compatible with Samsung Galaxy S 4 cell phones; quilted leather cover; internal lining; precision cutouts; automatically wakes your phone when opened\", 'price' => 43.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jisoncase-matelasse-quilted-folio-case-for-samsung-galaxy-s-4-cell-phones-black/2260477.p?id=1219070765132&skuId=2260477', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260477_sa.jpg\"}', 'upc' => '6955165680601', 'provider' => 'bestbuy'],\n ['name' => \"I Won't Complain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-wont-complain-cd/2260760.p?id=127996&skuId=2260760&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260760', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260760_sa.jpg\"}', 'upc' => '758237100122', 'provider' => 'bestbuy'],\n ['name' => \"Boy Girl Boy - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boy-girl-boy-cd-various/2260886.p?id=87984&skuId=2260886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260886_sa.jpg\"}', 'upc' => '012676077729', 'provider' => 'bestbuy'],\n ['name' => \"Love Letters: 1944-46 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-letters-1944-46-cd/2260895.p?id=251617&skuId=2260895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2260895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2260\\/2260895_sa.jpg\"}', 'upc' => '786386015226', 'provider' => 'bestbuy'],\n ['name' => \"Bob Schulz & Frisco Jazz Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bob-schulz-frisco-jazz-band-cd/2261037.p?id=282048&skuId=2261037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261037_sa.jpg\"}', 'upc' => '762247620624', 'provider' => 'bestbuy'],\n ['name' => \"Edmond Hall Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edmond-hall-quartet-cd/2261206.p?id=282072&skuId=2261206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261206_sa.jpg\"}', 'upc' => '762247620723', 'provider' => 'bestbuy'],\n ['name' => \"Some Sunny Day - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-sunny-day-cd/2261331.p?id=281028&skuId=2261331&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261331', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261331.jpg\"}', 'upc' => '762247620822', 'provider' => 'bestbuy'],\n ['name' => \"Sings of Love & Other Matters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-of-love-other-matters-cd/2261368.p?id=282047&skuId=2261368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261368_sa.jpg\"}', 'upc' => '762247621027', 'provider' => 'bestbuy'],\n ['name' => \"Stampede - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stampede-cd/2261395.p?id=265653&skuId=2261395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261395_sa.jpg\"}', 'upc' => '762247621126', 'provider' => 'bestbuy'],\n ['name' => \"On the Road - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-road-cd/2261439.p?id=282071&skuId=2261439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261439_sa.jpg\"}', 'upc' => '762247621423', 'provider' => 'bestbuy'],\n ['name' => \"It'S Been A Long Long Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-been-a-long-long-time-cd/2261625.p?id=281022&skuId=2261625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261625_sa.jpg\"}', 'upc' => '762247621522', 'provider' => 'bestbuy'],\n ['name' => \"Palm Court Strut - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/palm-court-strut-cd/2261714.p?id=265652&skuId=2261714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2261714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2261\\/2261714_sa.jpg\"}', 'upc' => '762247621621', 'provider' => 'bestbuy'],\n ['name' => \"OtterBox - Defender Series Case for Samsung Galaxy Tab 3 7\\\" - Black\", 'description_short' => \"Compatible with Samsung Galaxy Tab 3 7&quot;; polycarbonate inner layer; outer slip cover; port covers; play-through design; includes shield stand and screen protector\", 'description_long' => \"Compatible with Samsung Galaxy Tab 3 7&quot;; polycarbonate inner layer; outer slip cover; port covers; play-through design; includes shield stand and screen protector\", 'price' => 69.99, 'sale_price' => 27.99, 'url' => 'http://www.bestbuy.com/site/otterbox-defender-series-case-for-samsung-galaxy-tab-3-7-black/2262105.p?id=1219070771204&skuId=2262105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262105_sa.jpg\"}', 'upc' => '660543024163', 'provider' => 'bestbuy'],\n ['name' => \"Pete Fountain at Piper's Opera House - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pete-fountain-at-pipers-opera-house-cd/2262143.p?id=248109&skuId=2262143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262143_sa.jpg\"}', 'upc' => '762247621720', 'provider' => 'bestbuy'],\n ['name' => \"At the Atlanta Jazz Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-atlanta-jazz-party-cd/2262205.p?id=68483&skuId=2262205&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262205', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262205_sa.jpg\"}', 'upc' => '762247621829', 'provider' => 'bestbuy'],\n ['name' => \"After Hours - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-hours-cd/2262214.p?id=248131&skuId=2262214&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262214', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262214.jpg\"}', 'upc' => '762247602224', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Artist Guild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-artist-guild-cd/2262330.p?id=2858043&skuId=2262330&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262330', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262330.jpg\"}', 'upc' => '031397902226', 'provider' => 'bestbuy'],\n ['name' => \"Iced Earth [Reissue] [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/iced-earth-reissue-remaster-cd/2262517.p?id=86046&skuId=2262517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262517_sa.jpg\"}', 'upc' => '727701771427', 'provider' => 'bestbuy'],\n ['name' => \"Ave Maria Gregorian Chants With Sounds Of Nature - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ave-maria-gregorian-chants-with-sounds-of-nature-cd/2262642.p?id=2943990&skuId=2262642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262642_sa.jpg\"}', 'upc' => '039848110220', 'provider' => 'bestbuy'],\n ['name' => \"Star Of The Sea Gregorian Chants With Sounds Of Na - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-of-the-sea-gregorian-chants-with-sounds-of-na-cd/2262731.p?id=2944079&skuId=2262731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262731.jpg\"}', 'upc' => '039848110428', 'provider' => 'bestbuy'],\n ['name' => \"W.C. Handy's Memphis Blues Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/w-c-handys-memphis-blues-band-cd/2262866.p?id=114698&skuId=2262866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262866_sa.jpg\"}', 'upc' => '781371700620', 'provider' => 'bestbuy'],\n ['name' => \"Songs I Learned At My Mothers Knee & Other... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-i-learned-at-my-mothers-knee-other-cd/2262900.p?id=66969&skuId=2262900&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2262900', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2262\\/2262900_sa.jpg\"}', 'upc' => '762247622024', 'provider' => 'bestbuy'],\n ['name' => \"A Day in Hollywood/A Night in the Ukraine - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-day-in-hollywood-a-night-in-the-ukraine-cd-original-soundtrack/2263160.p?id=79896&skuId=2263160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263160.jpg\"}', 'upc' => '021471258028', 'provider' => 'bestbuy'],\n ['name' => \"Ben Pollack and His Pick-A-Rib Boys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ben-pollack-and-his-pick-a-rib-boys-cd/2263259.p?id=248108&skuId=2263259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263259.jpg\"}', 'upc' => '762247622420', 'provider' => 'bestbuy'],\n ['name' => \"Ain't Cha' Got Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aint-cha-got-music-cd/2263295.p?id=248118&skuId=2263295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263295.jpg\"}', 'upc' => '762247622529', 'provider' => 'bestbuy'],\n ['name' => \"Excursion in Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/excursion-in-blue-cd/2263641.p?id=67165&skuId=2263641&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263641', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263641.jpg\"}', 'upc' => '052951010522', 'provider' => 'bestbuy'],\n ['name' => \"Barney Bigard & the Pelican Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/barney-bigard-the-pelican-trio-cd/2263730.p?id=281027&skuId=2263730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263730.jpg\"}', 'upc' => '762247622826', 'provider' => 'bestbuy'],\n ['name' => \"Funeral at the Movies/Ten Spot [Remaster] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funeral-at-the-movies-ten-spot-remaster-cd/2263749.p?id=98680&skuId=2263749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263749.jpg\"}', 'upc' => '718751795525', 'provider' => 'bestbuy'],\n ['name' => \"Blowin' the Blues Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blowin-the-blues-away-cd/2263838.p?id=281025&skuId=2263838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263838_sa.jpg\"}', 'upc' => '762247622925', 'provider' => 'bestbuy'],\n ['name' => \"Spreading Joy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spreading-joy-cd/2263874.p?id=248126&skuId=2263874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263874_sa.jpg\"}', 'upc' => '762247623229', 'provider' => 'bestbuy'],\n ['name' => \"Surfside Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surfside-jazz-cd/2263936.p?id=248113&skuId=2263936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263936.jpg\"}', 'upc' => '762247602521', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Jazz Concert #1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-jazz-concert-1-cd-various/2263972.p?id=282060&skuId=2263972&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2263972', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2263\\/2263972.jpg\"}', 'upc' => '762247630128', 'provider' => 'bestbuy'],\n ['name' => \"World's Greatest Jazz Concert #2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worlds-greatest-jazz-concert-2-cd-various/2264007.p?id=248107&skuId=2264007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264007.jpg\"}', 'upc' => '762247630227', 'provider' => 'bestbuy'],\n ['name' => \"Over the Edge, Vol. 7: Time Zones Exchange... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/over-the-edge-vol-7-time-zones-exchange-cd/2264052.p?id=109724&skuId=2264052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264052_sa.jpg\"}', 'upc' => '753762001227', 'provider' => 'bestbuy'],\n ['name' => \"Jazz Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-trio-cd/2264061.p?id=281026&skuId=2264061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264061.jpg\"}', 'upc' => '762247630722', 'provider' => 'bestbuy'],\n ['name' => \"Jazz on a Saturday Afternoon, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-on-a-saturday-afternoon-vol-1-cd/2264089.p?id=248130&skuId=2264089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264089.jpg\"}', 'upc' => '762247603726', 'provider' => 'bestbuy'],\n ['name' => \"iFrogz - Bullfrogz Case for Apple® iPod® touch 5th Generation - Black/Green\", 'description_short' => \"Compatible with Apple iPod touch 5th generation; polycarbonate core; silicone exterior; impact protection; play-through design; 2-piece construction\", 'description_long' => \"Compatible with Apple iPod touch 5th generation; polycarbonate core; silicone exterior; impact protection; play-through design; 2-piece construction\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ifrogz-bullfrogz-case-for-apple-ipod-touch-5th-generation-black-green/2264103.p?id=1219070769232&skuId=2264103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264103_rc.jpg\"}', 'upc' => '848467009040', 'provider' => 'bestbuy'],\n ['name' => \"Points - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/points-cd/2264105.p?id=1370768&skuId=2264105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264105.jpg\"}', 'upc' => '759091584226', 'provider' => 'bestbuy'],\n ['name' => \"iFrogz - Bullfrogz Case for Apple® iPod® touch 5th Generation - Pink\", 'description_short' => \"Compatible with Apple iPod touch 5th generation; polycarbonate core; silicone exterior; impact protection; play-through design; 2-piece construction\", 'description_long' => \"Compatible with Apple iPod touch 5th generation; polycarbonate core; silicone exterior; impact protection; play-through design; 2-piece construction\", 'price' => 29.99, 'sale_price' => 23.99, 'url' => 'http://www.bestbuy.com/site/ifrogz-bullfrogz-case-for-apple-ipod-touch-5th-generation-pink/2264112.p?id=1219070775563&skuId=2264112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264112_rc.jpg\"}', 'upc' => '848467009033', 'provider' => 'bestbuy'],\n ['name' => \"Jazz on a Saturday Afternoon, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-on-a-saturday-afternoon-vol-2-cd/2264150.p?id=248129&skuId=2264150&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264150', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '762247603825', 'provider' => 'bestbuy'],\n ['name' => \"African Rhythms & Instruments, Vol. 3... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/african-rhythms-instruments-vol-3-cd-various/2264169.p?id=244468&skuId=2264169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264169_sa.jpg\"}', 'upc' => '744457733929', 'provider' => 'bestbuy'],\n ['name' => \"Rhythmic Essence: The Art of The Doumbek - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rhythmic-essence-the-art-of-the-doumbek-various-cd/2264187.p?id=82283&skuId=2264187&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264187', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264187_sa.jpg\"}', 'upc' => '744457741122', 'provider' => 'bestbuy'],\n ['name' => \"Raymond Wise & the Raise Production Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raymond-wise-the-raise-production-choir-cd/2264221.p?id=373196&skuId=2264221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '723498219524', 'provider' => 'bestbuy'],\n ['name' => \"Signs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/signs-cd/2264267.p?id=109676&skuId=2264267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264267_sa.jpg\"}', 'upc' => '053361302726', 'provider' => 'bestbuy'],\n ['name' => \"Pure Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pure-gold-cd/2264338.p?id=269805&skuId=2264338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '723498220421', 'provider' => 'bestbuy'],\n ['name' => \"Over the Edge, Vol. 1: Jam Con '84 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/over-the-edge-vol-1-jam-con-84-cd/2264383.p?id=92966&skuId=2264383&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264383', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264383.jpg\"}', 'upc' => '753762000428', 'provider' => 'bestbuy'],\n ['name' => \"Mountain Snow and Mistletoe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mountain-snow-and-mistletoe-cd/2264418.p?id=253624&skuId=2264418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264418_sa.jpg\"}', 'upc' => '765172910624', 'provider' => 'bestbuy'],\n ['name' => \"Camels, Spilled Corona and the Sound of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/camels-spilled-corona-and-the-sound-of-cd/2264436.p?id=86457&skuId=2264436&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264436', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264436_sa.jpg\"}', 'upc' => '760291001727', 'provider' => 'bestbuy'],\n ['name' => \"This Is Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-is-jazz-cd/2264454.p?id=282066&skuId=2264454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264454.jpg\"}', 'upc' => '762247604228', 'provider' => 'bestbuy'],\n ['name' => \"Bobbing for Pavement - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bobbing-for-pavement-cd-various/2264481.p?id=109718&skuId=2264481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264481_sa.jpg\"}', 'upc' => '760291003127', 'provider' => 'bestbuy'],\n ['name' => \"Stars of Jazz, Vol. 1 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stars-of-jazz-vol-1-various-cd/2264506.p?id=282065&skuId=2264506&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264506', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264506.jpg\"}', 'upc' => '762247606222', 'provider' => 'bestbuy'],\n ['name' => \"Bricks and Windows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bricks-and-windows-cd/2264524.p?id=109328&skuId=2264524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '765172930721', 'provider' => 'bestbuy'],\n ['name' => \"Duo 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duo-2-cd/2264711.p?id=308874&skuId=2264711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264711.jpg\"}', 'upc' => '716043101023', 'provider' => 'bestbuy'],\n ['name' => \"Showdown! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/showdown-cd/2264953.p?id=109717&skuId=2264953&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2264953', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2264\\/2264953.jpg\"}', 'upc' => '790276033320', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - Arc Touch Surface Edition Mouse - Dark Titanium\", 'description_short' => \"BlueTrack technology; Touch Strip; 2 scrolling options; can be curved and flattened; Bluetooth 4.0 wireless connectivity\", 'description_long' => \"BlueTrack technology; Touch Strip; 2 scrolling options; can be curved and flattened; Bluetooth 4.0 wireless connectivity\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-arc-touch-surface-edition-mouse-dark-titanium/2265102.p?id=1219071224224&skuId=2265102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265102_sa.jpg\"}', 'upc' => '885370619911', 'provider' => 'bestbuy'],\n ['name' => \"Flashback with the Grateful Dead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flashback-with-the-grateful-dead-cd/2265105.p?id=2194623&skuId=2265105&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265105', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265105_sa.jpg\"}', 'upc' => '081227977566', 'provider' => 'bestbuy'],\n ['name' => \"Tough Love [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tough-love-pa-cd/2265114.p?id=2194429&skuId=2265114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265114.jpg\"}', 'upc' => '093624959298', 'provider' => 'bestbuy'],\n ['name' => \"Lisa Lampanelli: Tough Love (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lisa-lampanelli-tough-love-dvd/2265123.p?id=2194430&skuId=2265123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265123.jpg\"}', 'upc' => '075993997545', 'provider' => 'bestbuy'],\n ['name' => \"El Cariño Que Perdí - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-carino-que-perdi-cd-various/2265132.p?id=2194629&skuId=2265132&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265132', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265132_sa.jpg\"}', 'upc' => '825646744152', 'provider' => 'bestbuy'],\n ['name' => \"Miguel Bosé: Cardio Tour (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/miguel-bose-cardio-tour-dvd/2265169.p?id=2194428&skuId=2265169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265169_sa.jpg\"}', 'upc' => '825646740734', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Reunion - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-reunion-various-cd/2265239.p?id=70612&skuId=2265239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265239.jpg\"}', 'upc' => '762247528326', 'provider' => 'bestbuy'],\n ['name' => \"Antiquity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/antiquity-cd/2265300.p?id=1535019&skuId=2265300&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265300', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265300_sa.jpg\"}', 'upc' => '716043102822', 'provider' => 'bestbuy'],\n ['name' => \"Frigidaire - 18,500 BTU Window Air Conditioner - White\", 'description_short' => \"1170 sq. ft. cooling capacity; electronic controls; full-function remote; 3 cool settings; 3 fan speeds; antimicrobial filter\", 'description_long' => \"1170 sq. ft. cooling capacity; electronic controls; full-function remote; 3 cool settings; 3 fan speeds; antimicrobial filter\", 'price' => 599.99, 'sale_price' => 539.99, 'url' => 'http://www.bestbuy.com/site/frigidaire-18500-btu-window-air-conditioner-white/2265309.p?id=1218317315209&skuId=2265309&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265309', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265309_sa.jpg\"}', 'upc' => '012505273889', 'provider' => 'bestbuy'],\n ['name' => \"Michley - Mechanical Sewing Machine - White\", 'description_short' => \"Bobbin System - 8\", 'description_long' => \"Bobbin System - 8\", 'price' => 49.99, 'sale_price' => 48.99, 'url' => 'http://www.bestbuy.com/site/michley-mechanical-sewing-machine-white/2265327.p?id=1218317315238&skuId=2265327', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265327_sa.jpg\"}', 'upc' => '753182094533', 'provider' => 'bestbuy'],\n ['name' => \"13-Point Program to Destroy America - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/13-point-program-to-destroy-america-cd/2265328.p?id=92870&skuId=2265328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265328_sa.jpg\"}', 'upc' => '718751795723', 'provider' => 'bestbuy'],\n ['name' => \"Clarity - 76593 P300 Amplified Corded Photo Phone - White\", 'description_short' => \"Corded phone; 75dB ringer with 18dB amplification; 9 programmable photo memory buttons; large buttons; hearing aid compatible; adjustable incoming volume control\", 'description_long' => \"Corded phone; 75dB ringer with 18dB amplification; 9 programmable photo memory buttons; large buttons; hearing aid compatible; adjustable incoming volume control\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clarity-76593-p300-amplified-corded-photo-phone-white/2265372.p?id=1218316933302&skuId=2265372&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265372', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265372_rc.jpg\"}', 'upc' => '759599765936', 'provider' => 'bestbuy'],\n ['name' => \"CAD - D12 Kick Drum Microphone - Black\", 'description_short' => \"From our expanded online assortment; compatible with most kick drums; delivers thump and snap and extended frequency response; integrated stand adapter\", 'description_long' => \"From our expanded online assortment; compatible with most kick drums; delivers thump and snap and extended frequency response; integrated stand adapter\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cad-d12-kick-drum-microphone-black/2265478.p?id=1218316935493&skuId=2265478', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265478', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265478_sa.jpg\"}', 'upc' => '631922105667', 'provider' => 'bestbuy'],\n ['name' => \"Bouncin' with Dex - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bouncin-with-dex-cd/2265792.p?id=278934&skuId=2265792&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265792', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265792_sa.jpg\"}', 'upc' => '716043106028', 'provider' => 'bestbuy'],\n ['name' => \"Jazz a Juan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-a-juan-cd/2265907.p?id=278811&skuId=2265907&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2265907', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2265\\/2265907.jpg\"}', 'upc' => '716043107223', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Silver Filter for Alen BreatheSmart Air Purifiers - Black\", 'description_short' => \"Compatible with Alen BreatheSmart air purifiers; silver-ion threads; washable prefilter; activated carbon layer; HEPA-style material\", 'description_long' => \"Compatible with Alen BreatheSmart air purifiers; silver-ion threads; washable prefilter; activated carbon layer; HEPA-style material\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-silver-filter-for-alen-breathesmart-air-purifiers-black/2266101.p?id=1219071226129&skuId=2266101&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266101', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266101_sa.jpg\"}', 'upc' => '893127001544', 'provider' => 'bestbuy'],\n ['name' => \"Alen - BreatheSmart Air Purifier - White\", 'description_short' => \"ENERGY STAR Certified\nUp to 1100 sq. ft. of coverage; removes dust, pollen and other allergens; SmartSensor technology; WhisperMax technology; compatible with select Alen HEPA filters\", 'description_long' => \"ENERGY STAR Certified\nUp to 1100 sq. ft. of coverage; removes dust, pollen and other allergens; SmartSensor technology; WhisperMax technology; compatible with select Alen HEPA filters\", 'price' => 599.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-breathesmart-air-purifier-white/2266129.p?id=1219071545899&skuId=2266129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266129_sa.jpg\"}', 'upc' => '893127001537', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-OdorCell Filter for Alen BreatheSmart Air Purifiers - Black\", 'description_short' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; molecular conversion powder; HEPA-style material\", 'description_long' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; molecular conversion powder; HEPA-style material\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-odorcell-filter-for-alen-breathesmart-air-purifiers-black/2266138.p?id=1219071227044&skuId=2266138', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266138', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266138_sa.jpg\"}', 'upc' => '893127001568', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-OdorCell Filter for Alen A350 and A375 Air Purifiers - Black\", 'description_short' => \"Compatible with Alen A350 and A375 air purifiers; washable prefilter; molecular conversion powder; HEPA-style material\", 'description_long' => \"Compatible with Alen A350 and A375 air purifiers; washable prefilter; molecular conversion powder; HEPA-style material\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-odorcell-filter-for-alen-a350-and-a375-air-purifiers-black/2266147.p?id=1219071224629&skuId=2266147', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266147_sa.jpg\"}', 'upc' => '893127001285', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Pure Filter for Alen A350 Air Purifiers - Black\", 'description_short' => \"Compatible with Alen A350 air purifiers; HEPA-style material; washable prefilter\", 'description_long' => \"Compatible with Alen A350 air purifiers; HEPA-style material; washable prefilter\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-pure-filter-for-alen-a350-air-purifiers-black/2266156.p?id=1219071227307&skuId=2266156', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266156', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266156_sa.jpg\"}', 'upc' => '893127001513', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Fresh Filter for Alen Paralda Air Purifiers - Green\", 'description_short' => \"Compatible with Alen Paralda air purifiers; activated carbon layer; HEPA-style material\", 'description_long' => \"Compatible with Alen Paralda air purifiers; activated carbon layer; HEPA-style material\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-fresh-filter-for-alen-paralda-air-purifiers-green/2266165.p?id=1219071224429&skuId=2266165', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266165_sa.jpg\"}', 'upc' => '893127001483', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Pure Filter for Alen BreatheSmart Air Purifiers - Black/White\", 'description_short' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; HEPA-style material\", 'description_long' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; HEPA-style material\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-pure-filter-for-alen-breathesmart-air-purifiers-black-white/2266174.p?id=1219071227446&skuId=2266174', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266174_sa.jpg\"}', 'upc' => '893127001520', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-OdorCell Filter for Alen Paralda Air Purifiers - Green\", 'description_short' => \"Compatible with Alen Paralda air purifiers; molecular conversion powder; HEPA-style material\", 'description_long' => \"Compatible with Alen Paralda air purifiers; molecular conversion powder; HEPA-style material\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-odorcell-filter-for-alen-paralda-air-purifiers-green/2266183.p?id=1219071224630&skuId=2266183&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266183', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266183_sa.jpg\"}', 'upc' => '893127001476', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Silver Filter for Alen A350 and A375 Air Purifiers - Black\", 'description_short' => \"Compatible with Alen A350 and A375 air purifiers; silver-ion threads; washable prefilter; activated carbon layer; HEPA-style material\", 'description_long' => \"Compatible with Alen A350 and A375 air purifiers; silver-ion threads; washable prefilter; activated carbon layer; HEPA-style material\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-silver-filter-for-alen-a350-and-a375-air-purifiers-black/2266192.p?id=1219071227368&skuId=2266192', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266192_sa.jpg\"}', 'upc' => '893127001445', 'provider' => 'bestbuy'],\n ['name' => \"Alen - Paralda Tower Air Purifier - Green\", 'description_short' => \"ENERGY STAR Certified\nUp to 500 sq. ft. of coverage; removes dust, pollen and other allergens; dual airflow design; compatible with select Alen HEPA filters\", 'description_long' => \"ENERGY STAR Certified\nUp to 500 sq. ft. of coverage; removes dust, pollen and other allergens; dual airflow design; compatible with select Alen HEPA filters\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-paralda-tower-air-purifier-green/2266207.p?id=1219071543735&skuId=2266207', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266207_sa.jpg\"}', 'upc' => '893127001353', 'provider' => 'bestbuy'],\n ['name' => \"Flight to Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flight-to-japan-cd/2266238.p?id=308806&skuId=2266238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266238.jpg\"}', 'upc' => '716043108824', 'provider' => 'bestbuy'],\n ['name' => \"Divine Gemini - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/divine-gemini-cd/2266256.p?id=300569&skuId=2266256&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266256', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266256.jpg\"}', 'upc' => '716043108923', 'provider' => 'bestbuy'],\n ['name' => \"Cuttin' Loose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cuttin-loose-cd/2266498.p?id=308871&skuId=2266498&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266498', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266498.jpg\"}', 'upc' => '716043110520', 'provider' => 'bestbuy'],\n ['name' => \"Tootie's Tempo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tooties-tempo-cd/2266522.p?id=308801&skuId=2266522&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266522', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266522_sa.jpg\"}', 'upc' => '716043110827', 'provider' => 'bestbuy'],\n ['name' => \"Legacy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/legacy-cd/2266853.p?id=66169&skuId=2266853&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266853', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266853_sa.jpg\"}', 'upc' => '013431429128', 'provider' => 'bestbuy'],\n ['name' => \"Reflections - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reflections-cd/2266988.p?id=64651&skuId=2266988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2266988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2266\\/2266988_sa.jpg\"}', 'upc' => '013431429920', 'provider' => 'bestbuy'],\n ['name' => \"Parade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/parade-cd/2267022.p?id=154340&skuId=2267022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267022.jpg\"}', 'upc' => '716043111626', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-FreshPlus Filter for Alen BreatheSmart Air Purifiers - Black\", 'description_short' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; activated carbon layer; HEPA-style material\", 'description_long' => \"Compatible with Alen BreatheSmart air purifiers; washable prefilter; activated carbon layer; HEPA-style material\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-freshplus-filter-for-alen-breathesmart-air-purifiers-black/2267146.p?id=1219071227755&skuId=2267146', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267146_sa.jpg\"}', 'upc' => '893127001551', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Pure Filter for Alen Paralda Air Purifiers - Green\", 'description_short' => \"Compatible with Alen Paralda air purifiers; HEPA-style material\", 'description_long' => \"Compatible with Alen Paralda air purifiers; HEPA-style material\", 'price' => 44.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-pure-filter-for-alen-paralda-air-purifiers-green/2267155.p?id=1219071223309&skuId=2267155', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267155_sa.jpg\"}', 'upc' => '893127001315', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Fresh Filter for Alen A350 and A375 Air Purifiers - Black\", 'description_short' => \"Compatible with Alen A350 and A375 air purifiers; washable prefilter; activated carbon layer; HEPA-style material\", 'description_long' => \"Compatible with Alen A350 and A375 air purifiers; washable prefilter; activated carbon layer; HEPA-style material\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-fresh-filter-for-alen-a350-and-a375-air-purifiers-black/2267173.p?id=1219071225935&skuId=2267173', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267173_sa.jpg\"}', 'upc' => '893127001179', 'provider' => 'bestbuy'],\n ['name' => \"Alen - HEPA-Silver Filter for Alen Paralda Air Purifiers - White\", 'description_short' => \"Compatible with Alen Paralda air purifiers; silver-ion threads; HEPA-style material\", 'description_long' => \"Compatible with Alen Paralda air purifiers; silver-ion threads; HEPA-style material\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alen-hepa-silver-filter-for-alen-paralda-air-purifiers-white/2267182.p?id=1219071225671&skuId=2267182', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267182_sa.jpg\"}', 'upc' => '893127001469', 'provider' => 'bestbuy'],\n ['name' => \"Delgo / Igor (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/delgo-igor-dvd/2267206.p?id=2891351&skuId=2267206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267206.jpg\"}', 'upc' => '024543833802', 'provider' => 'bestbuy'],\n ['name' => \"Black & Decker - 4-Slice Toaster Oven - Black/Stainless-Steel\", 'description_short' => \"One-touch controls; 30-minute timer with stay-on feature; toast, broil, bake and keep-warm settings; Even Toast technology; removable crumb tray; power indicator light\", 'description_long' => \"One-touch controls; 30-minute timer with stay-on feature; toast, broil, bake and keep-warm settings; Even Toast technology; removable crumb tray; power indicator light\", 'price' => 38.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-decker-4-slice-toaster-oven-black-stainless-steel/2267329.p?id=1219071221800&skuId=2267329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267329_rc.jpg\"}', 'upc' => '050875809918', 'provider' => 'bestbuy'],\n ['name' => \"George Foreman - Next Grilleration Grill - Red\", 'description_short' => \"George Tough triple nonstick coating; sloped, fat-removing design; large surface area; floating hinge; dishwasher-safe removable grill plates\", 'description_long' => \"George Tough triple nonstick coating; sloped, fat-removing design; large surface area; floating hinge; dishwasher-safe removable grill plates\", 'price' => 69.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/george-foreman-next-grilleration-grill-red/2267338.p?id=1219071228219&skuId=2267338', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267338_rc.jpg\"}', 'upc' => '027043992826', 'provider' => 'bestbuy'],\n ['name' => \"Black & Decker - Fruit and Vegetable Juice Extractor - Black\", 'description_short' => \"400W of power; 10-oz. pitcher; high-quality strainer; 28-oz. pulp collector; dishwasher-safe parts; dual safety-locking mechanism; nonskid feet; stainless-steel blades\", 'description_long' => \"400W of power; 10-oz. pitcher; high-quality strainer; 28-oz. pulp collector; dishwasher-safe parts; dual safety-locking mechanism; nonskid feet; stainless-steel blades\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-decker-fruit-and-vegetable-juice-extractor-black/2267347.p?id=1219071228019&skuId=2267347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267347_sa.jpg\"}', 'upc' => '050875804753', 'provider' => 'bestbuy'],\n ['name' => \"Incurso - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/incurso-cd/2267392.p?id=2391750&skuId=2267392&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267392', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267392_sa.jpg\"}', 'upc' => '781676718429', 'provider' => 'bestbuy'],\n ['name' => \"Live at Wacken [CD & DVD] - CD - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-wacken-cd-dvd-cd-dvd/2267434.p?id=2612917&skuId=2267434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2073\\/20734275.jpg\"}', 'upc' => '039841516722', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - HD Digital A/V Adapter for Surface and Surface 2 - Black\", 'description_short' => \"Connects a Microsoft Surface and Surface 2 to an HDMI-compatible device or display; male HDMI interface\", 'description_long' => \"Connects a Microsoft Surface and Surface 2 to an HDMI-compatible device or display; male HDMI interface\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-hd-digital-a-v-adapter-for-surface-and-surface-2-black/2267541.p?id=1219071224099&skuId=2267541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267541_sa.jpg\"}', 'upc' => '885370711851', 'provider' => 'bestbuy'],\n ['name' => \"In New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-new-orleans-cd/2267558.p?id=286161&skuId=2267558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267558.jpg\"}', 'upc' => '762247528623', 'provider' => 'bestbuy'],\n ['name' => \"In the Nude [Clean] [Edited] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-the-nude-clean-edited-cd/2267834.p?id=125589&skuId=2267834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2267834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2267\\/2267834_sa.jpg\"}', 'upc' => '022471020127', 'provider' => 'bestbuy'],\n ['name' => \"Dig This [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dig-this-digipak-cd/2268109.p?id=2759634&skuId=2268109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268109_sa.jpg\"}', 'upc' => '822960100084', 'provider' => 'bestbuy'],\n ['name' => \"Memorial [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memorial-digipak-cd/2268118.p?id=2759649&skuId=2268118&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268118', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268118_sa.jpg\"}', 'upc' => '634457623620', 'provider' => 'bestbuy'],\n ['name' => \"World Psychedelic Classics, Vol. 5: Who Is... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-psychedelic-classics-vol-5-who-is-cd/2268127.p?id=2753702&skuId=2268127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268127_sa.jpg\"}', 'upc' => '680899007924', 'provider' => 'bestbuy'],\n ['name' => \"Get There [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/get-there-digipak-cd/2268136.p?id=2759697&skuId=2268136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268136_sa.jpg\"}', 'upc' => '655173113929', 'provider' => 'bestbuy'],\n ['name' => \"Quality Street: A Seasonal... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/quality-street-a-seasonal-digipak-cd/2268145.p?id=2736083&skuId=2268145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268145_sa.jpg\"}', 'upc' => '634457233027', 'provider' => 'bestbuy'],\n ['name' => \"Tain't No Sin... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taint-no-sin-cd/2268708.p?id=286144&skuId=2268708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268708.jpg\"}', 'upc' => '762247528920', 'provider' => 'bestbuy'],\n ['name' => \"Lazy Bird - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lazy-bird-cd/2268842.p?id=1552929&skuId=2268842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2268842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2268\\/2268842.jpg\"}', 'upc' => '716043120024', 'provider' => 'bestbuy'],\n ['name' => \"Relax & Enjoy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relax-enjoy-cd/2269075.p?id=308797&skuId=2269075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269075.jpg\"}', 'upc' => '716043121021', 'provider' => 'bestbuy'],\n ['name' => \"Jolly Reeds and Steamin' Horns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jolly-reeds-and-steamin-horns-cd/2269084.p?id=288257&skuId=2269084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269084.jpg\"}', 'upc' => '762247529026', 'provider' => 'bestbuy'],\n ['name' => \"Full - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-cd/2269100.p?id=110219&skuId=2269100&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269100', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269100_sa.jpg\"}', 'upc' => '780898010724', 'provider' => 'bestbuy'],\n ['name' => \"HP - Paris Laptop Sleeve - Black/Red\", 'description_short' => \"Fits laptops with up to a 15.6&quot; display, including 15.6&quot; Ultrabooks; faux-fur lining; exterior pocket; zippered closure; plush padding; water-resistant exterior; polished hardware\", 'description_long' => \"Fits laptops with up to a 15.6&quot; display, including 15.6&quot; Ultrabooks; faux-fur lining; exterior pocket; zippered closure; plush padding; water-resistant exterior; polished hardware\", 'price' => 31.99, 'sale_price' => 22.99, 'url' => 'http://www.bestbuy.com/site/hp-paris-laptop-sleeve-black-red/2269108.p?id=1219070767772&skuId=2269108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269108_sa.jpg\"}', 'upc' => '888182023778', 'provider' => 'bestbuy'],\n ['name' => \"FUGOO - Style Waterproof Bluetooth Wireless Speaker - Silver\", 'description_short' => \"FUGOO Style Waterproof Bluetooth Wireless Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'description_long' => \"FUGOO Style Waterproof Bluetooth Wireless Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'price' => 179.99, 'sale_price' => 157.99, 'url' => 'http://www.bestbuy.com/site/fugoo-style-waterproof-bluetooth-wireless-speaker-silver/2269126.p?id=1219535315411&skuId=2269126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269126_sa.jpg\"}', 'upc' => '859065004009', 'provider' => 'bestbuy'],\n ['name' => \"FUGOO - Sport Waterproof Bluetooth Speaker - Black/Blue\", 'description_short' => \"FUGOO Sport Waterproof Bluetooth Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'description_long' => \"FUGOO Sport Waterproof Bluetooth Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fugoo-sport-waterproof-bluetooth-speaker-black-blue/2269135.p?id=1219535314382&skuId=2269135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269135_sa.jpg\"}', 'upc' => '859065004016', 'provider' => 'bestbuy'],\n ['name' => \"FUGOO - Tough Bluetooth Wireless Speaker - Black/Aluminum\", 'description_short' => \"FUGOO Tough Bluetooth Wireless Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'description_long' => \"FUGOO Tough Bluetooth Wireless Speaker: Bluetooth/Wireless; rechargeable battery; water-, dust-, snow- and shockproof; speakerphone; Special features: 3.5mm audio input jack\", 'price' => 229.99, 'sale_price' => 184.99, 'url' => 'http://www.bestbuy.com/site/fugoo-tough-bluetooth-wireless-speaker-black-aluminum/2269144.p?id=1219535315477&skuId=2269144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269144_sa.jpg\"}', 'upc' => '859065004023', 'provider' => 'bestbuy'],\n ['name' => \"Just a Little While - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-a-little-while-cd/2269155.p?id=286143&skuId=2269155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269155_sa.jpg\"}', 'upc' => '762247529224', 'provider' => 'bestbuy'],\n ['name' => \"The Knocks [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-knocks-pa-cd/2269164.p?id=219358&skuId=2269164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269164.jpg\"}', 'upc' => '795864040421', 'provider' => 'bestbuy'],\n ['name' => \"Turk Murphy Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turk-murphy-style-cd/2269217.p?id=288248&skuId=2269217&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269217', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269217_sa.jpg\"}', 'upc' => '762247529521', 'provider' => 'bestbuy'],\n ['name' => \"Groovin' [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groovin-import-cd/2269235.p?id=258664&skuId=2269235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269235_sa.jpg\"}', 'upc' => '716043121823', 'provider' => 'bestbuy'],\n ['name' => \"In California - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-california-cd/2269244.p?id=71401&skuId=2269244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269244.jpg\"}', 'upc' => '762247529620', 'provider' => 'bestbuy'],\n ['name' => \"Someday Sweetheart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/someday-sweetheart-cd/2269271.p?id=288203&skuId=2269271&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269271', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269271.jpg\"}', 'upc' => '762247529927', 'provider' => 'bestbuy'],\n ['name' => \"Do You Know What It Means to Miss New Orleans? - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-you-know-what-it-means-to-miss-new-orleans-cd/2269306.p?id=286160&skuId=2269306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269306_sa.jpg\"}', 'upc' => '762247530022', 'provider' => 'bestbuy'],\n ['name' => \"From the Dawn of Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-the-dawn-of-time-cd/2269333.p?id=1428495&skuId=2269333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269333.jpg\"}', 'upc' => '090204045563', 'provider' => 'bestbuy'],\n ['name' => \"The Spectral Sorrows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-spectral-sorrows-cd/2269422.p?id=2149946&skuId=2269422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269422.jpg\"}', 'upc' => '012743003729', 'provider' => 'bestbuy'],\n ['name' => \"Bullhead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bullhead-cd/2269468.p?id=1459183&skuId=2269468&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269468', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269468_sa.jpg\"}', 'upc' => '038161002526', 'provider' => 'bestbuy'],\n ['name' => \"Johnny Lives - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/johnny-lives-cd/2269510.p?id=2412028&skuId=2269510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2269510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2269\\/2269510_sa.jpg\"}', 'upc' => '716043122820', 'provider' => 'bestbuy'],\n ['name' => \"The Little Mermaid (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-little-mermaid-dvd/2270001.p?id=22952&skuId=2270001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270001_sa.jpg\"}', 'upc' => '786936834994', 'provider' => 'bestbuy'],\n ['name' => \"Winds Of Change - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/winds-of-change-cd/2270143.p?id=1550575&skuId=2270143&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270143', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270143.jpg\"}', 'upc' => '716043125623', 'provider' => 'bestbuy'],\n ['name' => \"Bebop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bebop-cd/2270232.p?id=1550573&skuId=2270232&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270232', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270232.jpg\"}', 'upc' => '723721870027', 'provider' => 'bestbuy'],\n ['name' => \"Heavy Blue [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heavy-blue-import-cd/2270401.p?id=258662&skuId=2270401&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270401', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270401.jpg\"}', 'upc' => '716043126927', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [ZYX] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-zyx-cd/2270697.p?id=1478441&skuId=2270697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270697.jpg\"}', 'upc' => '090204203420', 'provider' => 'bestbuy'],\n ['name' => \"Another Day in Paradise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-day-in-paradise-cd/2270731.p?id=174224&skuId=2270731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270731_sa.jpg\"}', 'upc' => '751097051726', 'provider' => 'bestbuy'],\n ['name' => \"Electric Salsa - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/electric-salsa-various-cd/2270955.p?id=230129&skuId=2270955&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2270955', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2270\\/2270955.jpg\"}', 'upc' => '025221052324', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837942720', 'provider' => 'bestbuy'],\n ['name' => \"Rain Dancer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rain-dancer-cd/2271044.p?id=107935&skuId=2271044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271044_sa.jpg\"}', 'upc' => '025221052423', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271082', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837945523', 'provider' => 'bestbuy'],\n ['name' => \"20 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-cd/2271091.p?id=2768800&skuId=2271091&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271091_sa.jpg\"}', 'upc' => '888837734929', 'provider' => 'bestbuy'],\n ['name' => \"Elmo's Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/elmos-fire-cd/2271124.p?id=300558&skuId=2271124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271124.jpg\"}', 'upc' => '716043128921', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837946827', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837942324', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837943826', 'provider' => 'bestbuy'],\n ['name' => \"Penn-Wiggs New Orleans All Star Concert, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penn-wiggs-new-orleans-all-star-concert-vol-2-cd/2271277.p?id=288256&skuId=2271277&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271277', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '762247530121', 'provider' => 'bestbuy'],\n ['name' => \"Penn-Wiggs New Orleans All Star Concert, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/penn-wiggs-new-orleans-all-star-concert-vol-2-cd/2271295.p?id=288210&skuId=2271295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271295.jpg\"}', 'upc' => '762247530220', 'provider' => 'bestbuy'],\n ['name' => \"\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => '', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '888837946025', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits/2271316.p?id=3223982&skuId=2271316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271316_sa.jpg\"}', 'upc' => '888837943628', 'provider' => 'bestbuy'],\n ['name' => \"Really the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/really-the-blues-cd/2271320.p?id=286159&skuId=2271320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271320.jpg\"}', 'upc' => '762247530329', 'provider' => 'bestbuy'],\n ['name' => \"Clive Wilson & Trevor Richards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clive-wilson-trevor-richards-cd/2271357.p?id=251508&skuId=2271357&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271357', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271357.jpg\"}', 'upc' => '762247530428', 'provider' => 'bestbuy'],\n ['name' => \"Kid Thomas at Moose Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kid-thomas-at-moose-hall-cd/2271437.p?id=288222&skuId=2271437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271437_sa.jpg\"}', 'upc' => '762247530527', 'provider' => 'bestbuy'],\n ['name' => \"Don't Put Up Your Lip - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-put-up-your-lip-cd/2271464.p?id=288242&skuId=2271464&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271464', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271464.jpg\"}', 'upc' => '762247530626', 'provider' => 'bestbuy'],\n ['name' => \"Coalescence [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/coalescence-import-cd/2271794.p?id=258646&skuId=2271794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271794.jpg\"}', 'upc' => '716043130825', 'provider' => 'bestbuy'],\n ['name' => \"Pink Elephants - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pink-elephants-cd/2271936.p?id=288255&skuId=2271936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271936.jpg\"}', 'upc' => '762247530725', 'provider' => 'bestbuy'],\n ['name' => \"Two Clarinets On The Porch - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-clarinets-on-the-porch-cd/2271990.p?id=286158&skuId=2271990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2271990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2271\\/2271990.jpg\"}', 'upc' => '762247530824', 'provider' => 'bestbuy'],\n ['name' => \"Creole Rhapsody - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/creole-rhapsody-cd/2272061.p?id=288254&skuId=2272061&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272061', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272061_sa.jpg\"}', 'upc' => '762247530923', 'provider' => 'bestbuy'],\n ['name' => \"Reunion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reunion-cd/2272089.p?id=63731&skuId=2272089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272089.jpg\"}', 'upc' => '762247531029', 'provider' => 'bestbuy'],\n ['name' => \"Shout Sister Shout: Edegran Orchestra and the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shout-sister-shout-edegran-orchestra-and-the-cd/2272123.p?id=288199&skuId=2272123&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272123', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272123_sa.jpg\"}', 'upc' => '762247531128', 'provider' => 'bestbuy'],\n ['name' => \"Jamie Wight Featuring John Joymakers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jamie-wight-featuring-john-joymakers-cd/2272169.p?id=288253&skuId=2272169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272169.jpg\"}', 'upc' => '762247531227', 'provider' => 'bestbuy'],\n ['name' => \"Lee Gunness Sings the Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lee-gunness-sings-the-blues-cd/2272196.p?id=288252&skuId=2272196&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272196', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272196.jpg\"}', 'upc' => '762247531425', 'provider' => 'bestbuy'],\n ['name' => \"Storm is Passing Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/storm-is-passing-over-cd/2272221.p?id=288207&skuId=2272221&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272221', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272221.jpg\"}', 'upc' => '762247531524', 'provider' => 'bestbuy'],\n ['name' => \"Emile Martyn's Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/emile-martyns-band-cd/2272230.p?id=251507&skuId=2272230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272230.jpg\"}', 'upc' => '762247531722', 'provider' => 'bestbuy'],\n ['name' => \"Magolia Jazz Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magolia-jazz-band-cd/2272301.p?id=288198&skuId=2272301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272301.jpg\"}', 'upc' => '762247532026', 'provider' => 'bestbuy'],\n ['name' => \"Hooked on Ragtime, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooked-on-ragtime-vol-2-cd/2272338.p?id=251502&skuId=2272338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272338_sa.jpg\"}', 'upc' => '762247532224', 'provider' => 'bestbuy'],\n ['name' => \"Very Handy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/very-handy-cd/2272347.p?id=288235&skuId=2272347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272347_sa.jpg\"}', 'upc' => '762247532521', 'provider' => 'bestbuy'],\n ['name' => \"Twin Smooth Snouts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/twin-smooth-snouts-cd/2272365.p?id=1848880&skuId=2272365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272365.jpg\"}', 'upc' => '759718700527', 'provider' => 'bestbuy'],\n ['name' => \"Start Today - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/start-today-cd/2272409.p?id=83901&skuId=2272409&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272409', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272409.jpg\"}', 'upc' => '098796001226', 'provider' => 'bestbuy'],\n ['name' => \"Stompin At the Jazz Cafe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stompin-at-the-jazz-cafe-cd/2272427.p?id=288234&skuId=2272427&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272427', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272427_sa.jpg\"}', 'upc' => '762247532620', 'provider' => 'bestbuy'],\n ['name' => \"For Dancers Only - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-dancers-only-cd/2272454.p?id=68524&skuId=2272454&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272454', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272454_sa.jpg\"}', 'upc' => '762247503729', 'provider' => 'bestbuy'],\n ['name' => \"Collaboration - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collaboration-cd/2272481.p?id=288214&skuId=2272481&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272481', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272481.jpg\"}', 'upc' => '762247504023', 'provider' => 'bestbuy'],\n ['name' => \"In Concert, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-concert-vol-2-cd/2272524.p?id=288245&skuId=2272524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272524_sa.jpg\"}', 'upc' => '762247509226', 'provider' => 'bestbuy'],\n ['name' => \"Live at Hambone Kelly's - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-hambone-kellys-cd/2272551.p?id=251503&skuId=2272551&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272551', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272551_sa.jpg\"}', 'upc' => '762247509325', 'provider' => 'bestbuy'],\n ['name' => \"Ignaurus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ignaurus-cd/2272597.p?id=105985&skuId=2272597&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272597', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272597_sa.jpg\"}', 'upc' => '098796003527', 'provider' => 'bestbuy'],\n ['name' => \"Wild Bill Davison and His Jazz Band, 1943 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-bill-davison-and-his-jazz-band-1943-cd/2272604.p?id=282064&skuId=2272604&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272604', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272604.jpg\"}', 'upc' => '762247610328', 'provider' => 'bestbuy'],\n ['name' => \"Break Down the Walls [Reissue] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/break-down-the-walls-reissue-cd/2272622.p?id=107802&skuId=2272622&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272622', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272622_sa.jpg\"}', 'upc' => '098796000823', 'provider' => 'bestbuy'],\n ['name' => \"Cliff Leeman & His All Stars - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cliff-leeman-his-all-stars-cd/2272631.p?id=282055&skuId=2272631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272631.jpg\"}', 'upc' => '762247611226', 'provider' => 'bestbuy'],\n ['name' => \"Solo Flight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/solo-flight-cd/2272668.p?id=248128&skuId=2272668&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272668', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272668.jpg\"}', 'upc' => '762247611424', 'provider' => 'bestbuy'],\n ['name' => \"Benny Waters - Freddy Randall Jazz Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benny-waters-freddy-randall-jazz-band-cd/2272686.p?id=71928&skuId=2272686&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272686', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272686_sa.jpg\"}', 'upc' => '762247612421', 'provider' => 'bestbuy'],\n ['name' => \"Lady of the Evening - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lady-of-the-evening-cd/2272711.p?id=248112&skuId=2272711&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272711', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272711.jpg\"}', 'upc' => '762247614326', 'provider' => 'bestbuy'],\n ['name' => \"Dee Felice and the Sleep Cat Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dee-felice-and-the-sleep-cat-band-cd/2272739.p?id=282063&skuId=2272739&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272739', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272739.jpg\"}', 'upc' => '762247616825', 'provider' => 'bestbuy'],\n ['name' => \"Radio Rhythm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-rhythm-cd/2272828.p?id=224814&skuId=2272828&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272828', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272828.jpg\"}', 'upc' => '762247617525', 'provider' => 'bestbuy'],\n ['name' => \"Pleasure Mad - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pleasure-mad-cd/2272882.p?id=282062&skuId=2272882&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272882', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272882.jpg\"}', 'upc' => '762247617822', 'provider' => 'bestbuy'],\n ['name' => \"In Japan 1975 With Yoshio Toyama - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-japan-1975-with-yoshio-toyama-cd/2272917.p?id=248120&skuId=2272917&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272917', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272917.jpg\"}', 'upc' => '762247617921', 'provider' => 'bestbuy'],\n ['name' => \"Swing It! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swing-it-cd/2272926.p?id=66970&skuId=2272926&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2272926', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2272\\/2272926_sa.jpg\"}', 'upc' => '762247618027', 'provider' => 'bestbuy'],\n ['name' => \"Love to Love You Donna [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-to-love-you-donna-digipak-cd/2273008.p?id=2758327&skuId=2273008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273008_sa.jpg\"}', 'upc' => '602537506552', 'provider' => 'bestbuy'],\n ['name' => \"A Mary Christmas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-mary-christmas-cd/2273017.p?id=2756002&skuId=2273017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273017_sa.jpg\"}', 'upc' => '602537477012', 'provider' => 'bestbuy'],\n ['name' => \"Reminiscing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/reminiscing-cd/2273024.p?id=103767&skuId=2273024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273024_sa.jpg\"}', 'upc' => '014921822726', 'provider' => 'bestbuy'],\n ['name' => \"Burials [Best Buy Exclusive] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burials-best-buy-exclusive-digipak-cd/2273026.p?id=2757511&skuId=2273026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273026_sa.jpg\"}', 'upc' => '602537524051', 'provider' => 'bestbuy'],\n ['name' => \"Love in Portofino [CD & DVD] - DVD - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-in-portofino-cd-dvd-dvd-cd/2273035.p?id=2756204&skuId=2273035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273035_sa.jpg\"}', 'upc' => '602537526697', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-series-cd/2273044.p?id=2979800&skuId=2273044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273044_sa.jpg\"}', 'upc' => '825646846160', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Series [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-series-box-cd/2273053.p?id=2644760&skuId=2273053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273053_sa.jpg\"}', 'upc' => '081227982843', 'provider' => 'bestbuy'],\n ['name' => \"Hymns & Country - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hymns-country-cd/2273060.p?id=92775&skuId=2273060&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273060', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273060_sa.jpg\"}', 'upc' => '014921823129', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Series [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-series-box-cd/2273071.p?id=2091908&skuId=2273071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273071_sa.jpg\"}', 'upc' => '081227982744', 'provider' => 'bestbuy'],\n ['name' => \"Original Album Series [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/original-album-series-box-cd/2273099.p?id=2091926&skuId=2273099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273099.jpg\"}', 'upc' => '081227983604', 'provider' => 'bestbuy'],\n ['name' => \"Surfbeat - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surfbeat-cd/2273122.p?id=77159&skuId=2273122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273122_sa.jpg\"}', 'upc' => '090771602923', 'provider' => 'bestbuy'],\n ['name' => \"Forget - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/forget-cd/2273211.p?id=91893&skuId=2273211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273211.jpg\"}', 'upc' => '722975002420', 'provider' => 'bestbuy'],\n ['name' => \"Kill Kill Kill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kill-kill-kill-cd/2273239.p?id=2390067&skuId=2273239&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273239_sa.jpg\"}', 'upc' => '722975002727', 'provider' => 'bestbuy'],\n ['name' => \"Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-cd/2273248.p?id=108446&skuId=2273248&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273248', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273248_sa.jpg\"}', 'upc' => '096297041826', 'provider' => 'bestbuy'],\n ['name' => \"The Gift - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-gift-cd/2273257.p?id=275677&skuId=2273257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273257_sa.jpg\"}', 'upc' => '722975002925', 'provider' => 'bestbuy'],\n ['name' => \"Masters of the Banjo - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masters-of-the-banjo-cd-various/2273293.p?id=73898&skuId=2273293&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273293.jpg\"}', 'upc' => '096297042120', 'provider' => 'bestbuy'],\n ['name' => \"Touch of Klez! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/touch-of-klez-cd/2273373.p?id=88234&skuId=2273373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273373.jpg\"}', 'upc' => '015707945523', 'provider' => 'bestbuy'],\n ['name' => \"Fill 'Er Up and Go! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fill-er-up-and-go-cd/2273391.p?id=109721&skuId=2273391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273391.jpg\"}', 'upc' => '053477332327', 'provider' => 'bestbuy'],\n ['name' => \"Sweep the Desert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweep-the-desert-cd/2273480.p?id=197562&skuId=2273480&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273480', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273480_sa.jpg\"}', 'upc' => '095081004122', 'provider' => 'bestbuy'],\n ['name' => \"Hardcore Techno - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hardcore-techno-cd-various/2273499.p?id=1479450&skuId=2273499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273499_sa.jpg\"}', 'upc' => '090204039166', 'provider' => 'bestbuy'],\n ['name' => \"Liam Clancy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/liam-clancy-cd/2273569.p?id=77872&skuId=2273569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273569_sa.jpg\"}', 'upc' => '015707916929', 'provider' => 'bestbuy'],\n ['name' => \"Wrecker! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wrecker-cd/2273658.p?id=92088&skuId=2273658&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273658', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273658_sa.jpg\"}', 'upc' => '745058012321', 'provider' => 'bestbuy'],\n ['name' => \"Into The Outlands - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/into-the-outlands-cd/2273881.p?id=3248670&skuId=2273881&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273881', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273881.jpg\"}', 'upc' => '026617501723', 'provider' => 'bestbuy'],\n ['name' => \"Oh My People - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oh-my-people-cd/2273916.p?id=2192920&skuId=2273916&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2273916', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2273\\/2273916.jpg\"}', 'upc' => '026617610821', 'provider' => 'bestbuy'],\n ['name' => \"Here Comes Another Christmas: Greetings from... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-comes-another-christmas-greetings-from-cd-various/2274425.p?id=106566&skuId=2274425&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2274425', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2274\\/2274425.jpg\"}', 'upc' => '748897012026', 'provider' => 'bestbuy'],\n ['name' => \"Brother - MFC-J6520DW Wireless All-In-One Printer - Gray\", 'description_short' => \"4-in-1 functionalityWi-FiPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)35-sheet ADF2.7&quot; touch-screen display\", 'description_long' => \"4-in-1 functionalityWi-FiPrints up to 35 ISO ppm in black, up to 27 ISO ppm in color (Print speeds vary with use. See mfg. for info on print speeds.)35-sheet ADF2.7&quot; touch-screen display\", 'price' => 229.99, 'sale_price' => 206.99, 'url' => 'http://www.bestbuy.com/site/brother-mfc-j6520dw-wireless-all-in-one-printer-gray/2275006.p?id=1219071229573&skuId=2275006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275006_sa.jpg\"}', 'upc' => '012502635734', 'provider' => 'bestbuy'],\n ['name' => \"The Life You've Chosen - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-life-youve-chosen-cd/2275015.p?id=2760042&skuId=2275015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275015_sa.jpg\"}', 'upc' => '045778727223', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-songs-cd/2275024.p?id=2759846&skuId=2275024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275024_sa.jpg\"}', 'upc' => '045778727629', 'provider' => 'bestbuy'],\n ['name' => \"Under the Influence: Holiday Edition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-influence-holiday-edition-cd/2275033.p?id=2763268&skuId=2275033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275033_sa.jpg\"}', 'upc' => '075678683909', 'provider' => 'bestbuy'],\n ['name' => \"Benefit [Deluxe... [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benefit-deluxe-cd-dvd-digipak-cd-dvd-deluxe-edition/2275042.p?id=2756788&skuId=2275042&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275042', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275042_sa.jpg\"}', 'upc' => '825646413270', 'provider' => 'bestbuy'],\n ['name' => \"I'm a Stranger Here [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-a-stranger-here-digipak-cd/2275051.p?id=2755990&skuId=2275051&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275051', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275051_sa.jpg\"}', 'upc' => '607396628223', 'provider' => 'bestbuy'],\n ['name' => \"The Odd Couple - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-odd-couple-cd/2275166.p?id=70400&skuId=2275166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275166.jpg\"}', 'upc' => '054987400827', 'provider' => 'bestbuy'],\n ['name' => \"Trio - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trio-cd/2275175.p?id=2341705&skuId=2275175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275175_sa.jpg\"}', 'upc' => '054987400926', 'provider' => 'bestbuy'],\n ['name' => \"This Heart of Mine - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-heart-of-mine-cd/2275200.p?id=70512&skuId=2275200&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275200', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275200_sa.jpg\"}', 'upc' => '054987401022', 'provider' => 'bestbuy'],\n ['name' => \"Take Note! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-note-cd/2275228.p?id=67491&skuId=2275228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275228.jpg\"}', 'upc' => '054987401121', 'provider' => 'bestbuy'],\n ['name' => \"Witness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/witness-cd/2275273.p?id=283212&skuId=2275273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275273.jpg\"}', 'upc' => '054987401428', 'provider' => 'bestbuy'],\n ['name' => \"Super Bass [Capri] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-bass-capri-cd/2275291.p?id=283200&skuId=2275291&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275291', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275291_sa.jpg\"}', 'upc' => '054987401824', 'provider' => 'bestbuy'],\n ['name' => \"Groove Shop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groove-shop-cd/2275326.p?id=65015&skuId=2275326&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275326', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275326_sa.jpg\"}', 'upc' => '054987402128', 'provider' => 'bestbuy'],\n ['name' => \"Further Adventures - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/further-adventures-cd/2275362.p?id=67492&skuId=2275362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275362.jpg\"}', 'upc' => '054987402227', 'provider' => 'bestbuy'],\n ['name' => \"Sweet and Slow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-and-slow-cd/2275601.p?id=68481&skuId=2275601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275601.jpg\"}', 'upc' => '762247226024', 'provider' => 'bestbuy'],\n ['name' => \"Are You Having Any Fun?: A Celebration of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/are-you-having-any-fun-a-celebration-of-cd/2275638.p?id=282626&skuId=2275638&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275638', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275638_sa.jpg\"}', 'upc' => '762247226123', 'provider' => 'bestbuy'],\n ['name' => \"Sweet Madness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sweet-madness-cd/2275665.p?id=65113&skuId=2275665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275665.jpg\"}', 'upc' => '762247226222', 'provider' => 'bestbuy'],\n ['name' => \"Ellis Larkin Plays - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ellis-larkin-plays-cd-various/2275683.p?id=242027&skuId=2275683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275683.jpg\"}', 'upc' => '762247226321', 'provider' => 'bestbuy'],\n ['name' => \"I've Got My Fingers Crossed: A Celebration Of... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ive-got-my-fingers-crossed-a-celebration-of-cd/2275709.p?id=282612&skuId=2275709&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275709', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275709.jpg\"}', 'upc' => '762247226420', 'provider' => 'bestbuy'],\n ['name' => \"Confessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/confessions-cd/2275736.p?id=75790&skuId=2275736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275736_sa.jpg\"}', 'upc' => '762247226925', 'provider' => 'bestbuy'],\n ['name' => \"At the Atlanta Jazz Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-atlanta-jazz-party-cd/2275763.p?id=157152&skuId=2275763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275763_sa.jpg\"}', 'upc' => '762247227021', 'provider' => 'bestbuy'],\n ['name' => \"Unless It's You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unless-its-you-cd/2275790.p?id=282637&skuId=2275790&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275790', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275790.jpg\"}', 'upc' => '762247227120', 'provider' => 'bestbuy'],\n ['name' => \"Easy Chair Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-chair-jazz-cd/2275834.p?id=282630&skuId=2275834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275834.jpg\"}', 'upc' => '762247227229', 'provider' => 'bestbuy'],\n ['name' => \"Basic Reeding - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/basic-reeding-cd/2275852.p?id=70270&skuId=2275852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275852.jpg\"}', 'upc' => '762247227328', 'provider' => 'bestbuy'],\n ['name' => \"Swingin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/swingin-cd/2275898.p?id=282635&skuId=2275898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275898_sa.jpg\"}', 'upc' => '762247227823', 'provider' => 'bestbuy'],\n ['name' => \"Lovers After All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovers-after-all-cd/2275914.p?id=282632&skuId=2275914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275914.jpg\"}', 'upc' => '762247228226', 'provider' => 'bestbuy'],\n ['name' => \"Hoagy's Children, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hoagys-children-vol-1-cd/2275932.p?id=109226&skuId=2275932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275932_sa.jpg\"}', 'upc' => '762247229124', 'provider' => 'bestbuy'],\n ['name' => \"On the Sunny Side of the Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-sunny-side-of-the-street-cd/2275978.p?id=109334&skuId=2275978&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2275978', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2275\\/2275978.jpg\"}', 'upc' => '762247204725', 'provider' => 'bestbuy'],\n ['name' => \"Imagination - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imagination-cd/2276003.p?id=85075&skuId=2276003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276003.jpg\"}', 'upc' => '762247207924', 'provider' => 'bestbuy'],\n ['name' => \"Two Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/two-moods-cd/2276021.p?id=70247&skuId=2276021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276021.jpg\"}', 'upc' => '762247208020', 'provider' => 'bestbuy'],\n ['name' => \"A Woman in Love [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-woman-in-love-compilation-cd/2276058.p?id=68484&skuId=2276058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276058_sa.jpg\"}', 'upc' => '762247208624', 'provider' => 'bestbuy'],\n ['name' => \"Through the Years - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/through-the-years-cd/2276085.p?id=282634&skuId=2276085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276085.jpg\"}', 'upc' => '762247208921', 'provider' => 'bestbuy'],\n ['name' => \"Mardi Gras Parade Music from New Orleans - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mardi-gras-parade-music-from-new-orleans-cd-various/2276147.p?id=68779&skuId=2276147&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276147', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276147.jpg\"}', 'upc' => '762247510727', 'provider' => 'bestbuy'],\n ['name' => \"Play Jelly Roll Morton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/play-jelly-roll-morton-cd/2276174.p?id=288262&skuId=2276174&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276174', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276174.jpg\"}', 'upc' => '762247501220', 'provider' => 'bestbuy'],\n ['name' => \"1947-1961 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1947-1961-cd/2276209.p?id=251506&skuId=2276209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276209_sa.jpg\"}', 'upc' => '762247501329', 'provider' => 'bestbuy'],\n ['name' => \"Art Hodes & the Magnolia Jazz Band Vol.2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-hodes-the-magnolia-jazz-band-vol-2-cd/2276236.p?id=288244&skuId=2276236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276236.jpg\"}', 'upc' => '762247517221', 'provider' => 'bestbuy'],\n ['name' => \"Louis Nelson's Creole Jazz Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/louis-nelsons-creole-jazz-band-cd/2276272.p?id=69560&skuId=2276272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276272.jpg\"}', 'upc' => '762247517320', 'provider' => 'bestbuy'],\n ['name' => \"Butch Thompson's King Oliver Centennial Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/butch-thompsons-king-oliver-centennial-band-cd/2276307.p?id=288225&skuId=2276307&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276307', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276307_sa.jpg\"}', 'upc' => '762247520221', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Ragtime Orchestra [Vanguard] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-ragtime-orchestra-vanguard-cd/2276361.p?id=288217&skuId=2276361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276361_sa.jpg\"}', 'upc' => '762247521020', 'provider' => 'bestbuy'],\n ['name' => \"Red Hot Reeds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-hot-reeds-cd/2276389.p?id=286162&skuId=2276389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276389.jpg\"}', 'upc' => '762247521921', 'provider' => 'bestbuy'],\n ['name' => \"New Orleans Blue Serenaders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-orleans-blue-serenaders-cd/2276405.p?id=288224&skuId=2276405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276405.jpg\"}', 'upc' => '762247522126', 'provider' => 'bestbuy'],\n ['name' => \"Walking Through the Streets of the City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/walking-through-the-streets-of-the-city-cd/2276432.p?id=288213&skuId=2276432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276432.jpg\"}', 'upc' => '762247522829', 'provider' => 'bestbuy'],\n ['name' => \"Live in Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-in-japan-cd/2276450.p?id=288212&skuId=2276450&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276450', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276450.jpg\"}', 'upc' => '762247523123', 'provider' => 'bestbuy'],\n ['name' => \"Down to Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-to-earth-cd/2276487.p?id=286147&skuId=2276487&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276487', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276487.jpg\"}', 'upc' => '762247523321', 'provider' => 'bestbuy'],\n ['name' => \"Ginger Pig New Orleans Jazz Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ginger-pig-new-orleans-jazz-band-cd/2276511.p?id=66708&skuId=2276511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276511.jpg\"}', 'upc' => '762247523222', 'provider' => 'bestbuy'],\n ['name' => \"So Beautiful or So What [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-beautiful-or-so-what-digipak-cd/2276547.p?id=2187806&skuId=2276547&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276547', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276547_sa.jpg\"}', 'upc' => '888072328143', 'provider' => 'bestbuy'],\n ['name' => \"Long Deep & Wide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/long-deep-wide-cd/2276548.p?id=288223&skuId=2276548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276548_sa.jpg\"}', 'upc' => '762247523727', 'provider' => 'bestbuy'],\n ['name' => \"Nine Types of Light [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nine-types-of-light-digipak-cd/2276556.p?id=2198215&skuId=2276556&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276556', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276556_sa.jpg\"}', 'upc' => '602527662145', 'provider' => 'bestbuy'],\n ['name' => \"Live at Earthquake McGoon's, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-earthquake-mcgoons-vol-1-cd/2276566.p?id=288243&skuId=2276566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276566.jpg\"}', 'upc' => '762247523826', 'provider' => 'bestbuy'],\n ['name' => \"Nine Types of Light - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nine-types-of-light-cd/2276574.p?id=2192960&skuId=2276574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276574_sa.jpg\"}', 'upc' => '602527662138', 'provider' => 'bestbuy'],\n ['name' => \"American Tragedy [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-tragedy-pa-cd/2276592.p?id=2198220&skuId=2276592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276592_sa.jpg\"}', 'upc' => '602527621418', 'provider' => 'bestbuy'],\n ['name' => \"Live at Earthquake McGoon's, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-earthquake-mcgoons-vol-2-cd/2276593.p?id=288205&skuId=2276593&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276593', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276593.jpg\"}', 'upc' => '762247523925', 'provider' => 'bestbuy'],\n ['name' => \"The Way It Was - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-way-it-was-cd/2276626.p?id=2198224&skuId=2276626&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276626', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276626_sa.jpg\"}', 'upc' => '602527625911', 'provider' => 'bestbuy'],\n ['name' => \"The Dixie Land Saints in Japan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-dixie-land-saints-in-japan-cd/2276628.p?id=288259&skuId=2276628&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276628', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276628_sa.jpg\"}', 'upc' => '762247524328', 'provider' => 'bestbuy'],\n ['name' => \"Moving Pictures [CD & DVD] [Digipak] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moving-pictures-cd-dvd-digipak-cd-dvd-deluxe-edition/2276635.p?id=2198231&skuId=2276635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276635.jpg\"}', 'upc' => '602527621074', 'provider' => 'bestbuy'],\n ['name' => \"Finally Famous [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finally-famous-pa-cd/2276662.p?id=2193645&skuId=2276662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276662.jpg\"}', 'upc' => '602527650258', 'provider' => 'bestbuy'],\n ['name' => \"Australian Archive Series - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/australian-archive-series-cd/2276682.p?id=2105052&skuId=2276682&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276682', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276682.jpg\"}', 'upc' => '762247527022', 'provider' => 'bestbuy'],\n ['name' => \"Ready Aye Ready - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ready-aye-ready-cd/2276708.p?id=288258&skuId=2276708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276708.jpg\"}', 'upc' => '762247527428', 'provider' => 'bestbuy'],\n ['name' => \"Jim Robinson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jim-robinson-cd/2276771.p?id=288204&skuId=2276771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276771.jpg\"}', 'upc' => '762247527626', 'provider' => 'bestbuy'],\n ['name' => \"Light Me Up [Bonus Track] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/light-me-up-bonus-track-cd/2276817.p?id=2198235&skuId=2276817&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276817', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276817_sa.jpg\"}', 'upc' => '602527626055', 'provider' => 'bestbuy'],\n ['name' => \"Milneburg Joys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/milneburg-joys-cd/2276824.p?id=288211&skuId=2276824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276824.jpg\"}', 'upc' => '762247527725', 'provider' => 'bestbuy'],\n ['name' => \"Love? [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-pa-cd/2276835.p?id=2192964&skuId=2276835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276835_sa.jpg\"}', 'upc' => '602527534343', 'provider' => 'bestbuy'],\n ['name' => \"At the Streckstrump - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-streckstrump-cd/2276842.p?id=69149&skuId=2276842&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276842', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276842.jpg\"}', 'upc' => '762247527824', 'provider' => 'bestbuy'],\n ['name' => \"Celebration: A Musical Journey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celebration-a-musical-journey-cd/2276844.p?id=2198217&skuId=2276844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276844_sa.jpg\"}', 'upc' => '600753319017', 'provider' => 'bestbuy'],\n ['name' => \"Sings Ira & George Gershwin & Cole Porter - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-ira-george-gershwin-cole-porter-cd/2276897.p?id=72066&skuId=2276897&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276897', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276897.jpg\"}', 'upc' => '762247200123', 'provider' => 'bestbuy'],\n ['name' => \"Secret Of Comedy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/secret-of-comedy-cd/2276904.p?id=3463626&skuId=2276904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '738641007521', 'provider' => 'bestbuy'],\n ['name' => \"Sings the Songs of Rodgers & Hart and Harold... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-the-songs-of-rodgers-hart-and-harold-cd/2276913.p?id=72065&skuId=2276913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276913.jpg\"}', 'upc' => '762247201021', 'provider' => 'bestbuy'],\n ['name' => \"A Breath of Fresh Air - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-breath-of-fresh-air-cd/2276931.p?id=71744&skuId=2276931&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276931', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276931_sa.jpg\"}', 'upc' => '762247210924', 'provider' => 'bestbuy'],\n ['name' => \"Here Comes Mr. Jordan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-comes-mr-jordan-cd/2276959.p?id=282627&skuId=2276959&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276959', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276959_sa.jpg\"}', 'upc' => '762247211426', 'provider' => 'bestbuy'],\n ['name' => \"Lovers and Losers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lovers-and-losers-cd/2276968.p?id=68242&skuId=2276968&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2276968', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2276\\/2276968_sa.jpg\"}', 'upc' => '762247211723', 'provider' => 'bestbuy'],\n ['name' => \"Loves Johnny Mercer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loves-johnny-mercer-cd/2277020.p?id=71746&skuId=2277020&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277020', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277020.jpg\"}', 'upc' => '762247213826', 'provider' => 'bestbuy'],\n ['name' => \"True Blue Hugh - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-blue-hugh-cd/2277057.p?id=98506&skuId=2277057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277057.jpg\"}', 'upc' => '762247214021', 'provider' => 'bestbuy'],\n ['name' => \"Anything Goes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anything-goes-cd/2277075.p?id=282639&skuId=2277075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277075.jpg\"}', 'upc' => '762247214229', 'provider' => 'bestbuy'],\n ['name' => \"Memories of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-you-cd/2277093.p?id=63852&skuId=2277093&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277093', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277093.jpg\"}', 'upc' => '762247214328', 'provider' => 'bestbuy'],\n ['name' => \"House of Flowers, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/house-of-flowers-vol-1-cd/2277119.p?id=65650&skuId=2277119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277119.jpg\"}', 'upc' => '762247215325', 'provider' => 'bestbuy'],\n ['name' => \"Harold Arlen Tunes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harold-arlen-tunes-cd/2277155.p?id=109335&skuId=2277155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277155.jpg\"}', 'upc' => '762247216827', 'provider' => 'bestbuy'],\n ['name' => \"This One's for Tedi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/this-ones-for-tedi-cd/2277173.p?id=282638&skuId=2277173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277173_sa.jpg\"}', 'upc' => '762247218128', 'provider' => 'bestbuy'],\n ['name' => \"Country Strong: More Music from the... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-strong-more-music-from-the-digipak-cd/2277176.p?id=2189896&skuId=2277176&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277176', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277176_sa.jpg\"}', 'upc' => '043396348172', 'provider' => 'bestbuy'],\n ['name' => \"A Woman's Intuition - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-womans-intuition-cd/2277191.p?id=65471&skuId=2277191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277191_sa.jpg\"}', 'upc' => '762247219125', 'provider' => 'bestbuy'],\n ['name' => \"First Time Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-time-out-cd/2277235.p?id=109224&skuId=2277235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277235_sa.jpg\"}', 'upc' => '762247219620', 'provider' => 'bestbuy'],\n ['name' => \"In a Concert of Vernon Duke Songs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-a-concert-of-vernon-duke-songs-cd/2277253.p?id=242029&skuId=2277253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277253_sa.jpg\"}', 'upc' => '762247219729', 'provider' => 'bestbuy'],\n ['name' => \"Memories of You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-of-you-cd/2277262.p?id=79876&skuId=2277262&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277262', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277262_sa.jpg\"}', 'upc' => '762247220121', 'provider' => 'bestbuy'],\n ['name' => \"The Lady's in Love with You! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-ladys-in-love-with-you-cd/2277299.p?id=103936&skuId=2277299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277299_sa.jpg\"}', 'upc' => '762247220725', 'provider' => 'bestbuy'],\n ['name' => \"Down Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/down-home-cd/2277315.p?id=65474&skuId=2277315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277315.jpg\"}', 'upc' => '762247221425', 'provider' => 'bestbuy'],\n ['name' => \"Sings Alec Wilder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-alec-wilder-cd/2277333.p?id=71747&skuId=2277333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277333_sa.jpg\"}', 'upc' => '762247221821', 'provider' => 'bestbuy'],\n ['name' => \"Softly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/softly-cd/2277351.p?id=1534897&skuId=2277351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277351_sa.jpg\"}', 'upc' => '762247222422', 'provider' => 'bestbuy'],\n ['name' => \"Karaoke: Young Female Pop, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/karaoke-young-female-pop-vol-2-cd-various/2277352.p?id=2195613&skuId=2277352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277352_sa.jpg\"}', 'upc' => '827249015639', 'provider' => 'bestbuy'],\n ['name' => \"That's My Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thats-my-style-cd/2277379.p?id=65473&skuId=2277379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277379.jpg\"}', 'upc' => '762247222729', 'provider' => 'bestbuy'],\n ['name' => \"Spring Isn't Everything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spring-isnt-everything-cd/2277397.p?id=71202&skuId=2277397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277397_sa.jpg\"}', 'upc' => '762247222927', 'provider' => 'bestbuy'],\n ['name' => \"One More Rose: A Tribute to Alan Lerner - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-more-rose-a-tribute-to-alan-lerner-cd/2277404.p?id=67730&skuId=2277404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277404_sa.jpg\"}', 'upc' => '762247223023', 'provider' => 'bestbuy'],\n ['name' => \"Sings and Plays the Jimmy Van Heusen... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sings-and-plays-the-jimmy-van-heusen-cd/2277431.p?id=65651&skuId=2277431&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277431', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277431_sa.jpg\"}', 'upc' => '762247223429', 'provider' => 'bestbuy'],\n ['name' => \"Good Vibes For Kurt Weill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-vibes-for-kurt-weill-cd/2277459.p?id=136616&skuId=2277459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277459.jpg\"}', 'upc' => '762247223627', 'provider' => 'bestbuy'],\n ['name' => \"With Much Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/with-much-love-cd/2277477.p?id=66209&skuId=2277477&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277477', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277477.jpg\"}', 'upc' => '762247223726', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Quintet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-quintet-cd/2277495.p?id=70066&skuId=2277495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277495.jpg\"}', 'upc' => '762247223825', 'provider' => 'bestbuy'],\n ['name' => \"Something Old, Something New, Something... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-old-something-new-something-cd/2277529.p?id=68476&skuId=2277529&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277529', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277529_sa.jpg\"}', 'upc' => '762247224020', 'provider' => 'bestbuy'],\n ['name' => \"Getting Some Fun out of Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/getting-some-fun-out-of-life-cd/2277538.p?id=69447&skuId=2277538&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277538', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277538_sa.jpg\"}', 'upc' => '762247224129', 'provider' => 'bestbuy'],\n ['name' => \"Bloodless Coup [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bloodless-coup-digipak-cd/2277546.p?id=2197605&skuId=2277546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277546_sa.jpg\"}', 'upc' => '634457224124', 'provider' => 'bestbuy'],\n ['name' => \"Happy Days Are Here Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-days-are-here-again-cd/2277565.p?id=103895&skuId=2277565&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277565', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277565.jpg\"}', 'upc' => '762247224228', 'provider' => 'bestbuy'],\n ['name' => \"Just You, Just Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-you-just-me-cd/2277592.p?id=224818&skuId=2277592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277592_sa.jpg\"}', 'upc' => '762247224426', 'provider' => 'bestbuy'],\n ['name' => \"The King of Limbs [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-king-of-limbs-digipak-cd/2277634.p?id=2201525&skuId=2277634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277634_sa.jpg\"}', 'upc' => '827565057665', 'provider' => 'bestbuy'],\n ['name' => \"All in a Night's Work - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-in-a-nights-work-cd/2277663.p?id=104037&skuId=2277663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277663.jpg\"}', 'upc' => '762247224723', 'provider' => 'bestbuy'],\n ['name' => \"L.A. Quartet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/l-a-quartet-cd/2277672.p?id=67897&skuId=2277672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277672.jpg\"}', 'upc' => '762247224822', 'provider' => 'bestbuy'],\n ['name' => \"Sullivan Shakespeare Hyman - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sullivan-shakespeare-hyman-cd/2277707.p?id=282611&skuId=2277707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277707.jpg\"}', 'upc' => '762247225027', 'provider' => 'bestbuy'],\n ['name' => \"Hooray for Hoagy! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hooray-for-hoagy-cd/2277734.p?id=282621&skuId=2277734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277734.jpg\"}', 'upc' => '762247225126', 'provider' => 'bestbuy'],\n ['name' => \"You're the Cats! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/youre-the-cats-cd/2277743.p?id=68482&skuId=2277743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277743_sa.jpg\"}', 'upc' => '762247225225', 'provider' => 'bestbuy'],\n ['name' => \"Olds Friends - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/olds-friends-cd/2277789.p?id=64835&skuId=2277789&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277789', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277789.jpg\"}', 'upc' => '762247225423', 'provider' => 'bestbuy'],\n ['name' => \"One for My Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-for-my-baby-cd/2277805.p?id=242028&skuId=2277805&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277805', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277805_sa.jpg\"}', 'upc' => '762247225522', 'provider' => 'bestbuy'],\n ['name' => \"A Quiet Storm - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-quiet-storm-cd/2277814.p?id=71745&skuId=2277814&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277814', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277814_sa.jpg\"}', 'upc' => '762247225621', 'provider' => 'bestbuy'],\n ['name' => \"One on One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-on-one-cd/2277878.p?id=64804&skuId=2277878&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277878', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277878.jpg\"}', 'upc' => '762247225928', 'provider' => 'bestbuy'],\n ['name' => \"Country Gospel [Hollywood] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-gospel-hollywood-cd-various/2277887.p?id=78886&skuId=2277887&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277887', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277887.jpg\"}', 'upc' => '012676010122', 'provider' => 'bestbuy'],\n ['name' => \"The King of Limbs [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-king-of-limbs-lp-vinyl/2277889.p?id=2201747&skuId=2277889&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2277889', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2277\\/2277889_sa.jpg\"}', 'upc' => '827565057672', 'provider' => 'bestbuy'],\n ['name' => \"WWE: TLC - Tables, Ladders and Chairs 2014 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wwe-tlc-tables-ladders-and-chairs-2014-dvd/2278003.p?id=3329363&skuId=2278003&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278003', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278003_sa.jpg\"}', 'upc' => '651191953905', 'provider' => 'bestbuy'],\n ['name' => \"Giddy-Up-Go [Hollywood] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giddy-up-go-hollywood-cd/2278010.p?id=99738&skuId=2278010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278010_sa.jpg\"}', 'upc' => '012676011624', 'provider' => 'bestbuy'],\n ['name' => \"Le P'tit Chevrolet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/le-ptit-chevrolet-cd/2278041.p?id=2198681&skuId=2278041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278041.jpg\"}', 'upc' => '687066703221', 'provider' => 'bestbuy'],\n ['name' => \"Thrill Me Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thrill-me-up-cd/2278047.p?id=3571002&skuId=2278047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '026617800123', 'provider' => 'bestbuy'],\n ['name' => \"Roadrunner [Hollywood] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/roadrunner-hollywood-cd-various/2278056.p?id=102371&skuId=2278056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278056.jpg\"}', 'upc' => '012676012126', 'provider' => 'bestbuy'],\n ['name' => \"Adapt [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/adapt-cd-dvd-cd/2278069.p?id=2198674&skuId=2278069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278069_sa.jpg\"}', 'upc' => '677516546324', 'provider' => 'bestbuy'],\n ['name' => \"Truckin' On [Hollywood] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truckin-on-hollywood-cd-various/2278074.p?id=102374&skuId=2278074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278074_sa.jpg\"}', 'upc' => '012676012225', 'provider' => 'bestbuy'],\n ['name' => \"40 Miles of Bad Road - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/40-miles-of-bad-road-cd-various/2278083.p?id=78852&skuId=2278083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278083_sa.jpg\"}', 'upc' => '012676012423', 'provider' => 'bestbuy'],\n ['name' => \"Mississippi Mass Choir: Then Sings My Soul (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mississippi-mass-choir-then-sings-my-soul-dvd/2278096.p?id=2192793&skuId=2278096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_movies_l.jpg\"}', 'upc' => '048021905690', 'provider' => 'bestbuy'],\n ['name' => \"Street Anthem, Vol. 3 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-anthem-vol-3-pa-cd/2278102.p?id=2198682&skuId=2278102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278102_sa.jpg\"}', 'upc' => '768476995328', 'provider' => 'bestbuy'],\n ['name' => \"16 Fiddlers' Greatest Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-fiddlers-greatest-hits-cd-various/2278127.p?id=82149&skuId=2278127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278127_sa.jpg\"}', 'upc' => '012676013123', 'provider' => 'bestbuy'],\n ['name' => \"16 Greatest Original Bluegrass Hits - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-greatest-original-bluegrass-hits-cd-various/2278136.p?id=75161&skuId=2278136&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278136', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278136_sa.jpg\"}', 'upc' => '012676013222', 'provider' => 'bestbuy'],\n ['name' => \"Missile Bell, Vol. 2 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/missile-bell-vol-2-digipak-cd/2278139.p?id=2198683&skuId=2278139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278139_sa.jpg\"}', 'upc' => '677516579728', 'provider' => 'bestbuy'],\n ['name' => \"Kelly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kelly-cd/2278157.p?id=2198684&skuId=2278157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278157_sa.jpg\"}', 'upc' => '734373210123', 'provider' => 'bestbuy'],\n ['name' => \"In Case I Don't Make It [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-case-i-dont-make-it-digipak-cd/2278175.p?id=2198678&skuId=2278175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278175_sa.jpg\"}', 'upc' => '673790027528', 'provider' => 'bestbuy'],\n ['name' => \"Unmatched: The Very Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unmatched-the-very-best-of-cd/2278184.p?id=2198675&skuId=2278184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278184_sa.jpg\"}', 'upc' => '048021753826', 'provider' => 'bestbuy'],\n ['name' => \"Pipe Dreams [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pipe-dreams-pa-cd/2278209.p?id=2198685&skuId=2278209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278209_sa.jpg\"}', 'upc' => '097037463120', 'provider' => 'bestbuy'],\n ['name' => \"16 Country Hits from the 1940's - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-country-hits-from-the-1940s-cd-various/2278216.p?id=78836&skuId=2278216&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278216', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278216_sa.jpg\"}', 'upc' => '012676020824', 'provider' => 'bestbuy'],\n ['name' => \"Rock Stars on LP, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-stars-on-lp-vol-1-cd-various/2278341.p?id=202091&skuId=2278341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278341.jpg\"}', 'upc' => '012676033626', 'provider' => 'bestbuy'],\n ['name' => \"Rock Stars on LP, Vol. 2-Various-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-stars-on-lp-vol-2-various-cd/2278369.p?id=202092&skuId=2278369&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278369', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278369.jpg\"}', 'upc' => '012676033725', 'provider' => 'bestbuy'],\n ['name' => \"Rock Stars on LP, Vol. 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-stars-on-lp-vol-3-cd-various/2278378.p?id=202093&skuId=2278378&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278378', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278378.jpg\"}', 'upc' => '012676033824', 'provider' => 'bestbuy'],\n ['name' => \"Rock Stars on LP, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-stars-on-lp-vol-4-cd-various/2278396.p?id=202094&skuId=2278396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278396.jpg\"}', 'upc' => '012676033923', 'provider' => 'bestbuy'],\n ['name' => \"The Jan & Dean Story [Hollywood] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jan-dean-story-hollywood-cd/2278412.p?id=86711&skuId=2278412&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278412_sa.jpg\"}', 'upc' => '012676037921', 'provider' => 'bestbuy'],\n ['name' => \"Eden of the East: The King of Eden (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eden-of-the-east-the-king-of-eden-dvd/2278448.p?id=2181039&skuId=2278448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278448_sa.jpg\"}', 'upc' => '704400088438', 'provider' => 'bestbuy'],\n ['name' => \"Junjo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/junjo-cd/2278518.p?id=1545792&skuId=2278518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278518_sa.jpg\"}', 'upc' => '8427328883368', 'provider' => 'bestbuy'],\n ['name' => \"Brushfire Fairytales [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brushfire-fairytales-digipak-cd/2278527.p?id=2174754&skuId=2278527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278527.jpg\"}', 'upc' => '181229100723', 'provider' => 'bestbuy'],\n ['name' => \"Homefront [Import] [Original Game Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/homefront-import-original-game-soundtrack-cd-original-soundtrack/2278536.p?id=2192365&skuId=2278536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278536.jpg\"}', 'upc' => '669311208224', 'provider' => 'bestbuy'],\n ['name' => \"Starlit Hour - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starlit-hour-cd/2278546.p?id=66334&skuId=2278546&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278546.jpg\"}', 'upc' => '012676040624', 'provider' => 'bestbuy'],\n ['name' => \"Hero Tales: Part 2 (3 Disc) (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hero-tales-part-2-3-disc-dvd-boxed-set/2278563.p?id=2181031&skuId=2278563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278563.jpg\"}', 'upc' => '704400089022', 'provider' => 'bestbuy'],\n ['name' => \"Comedy for the Road - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/comedy-for-the-road-cd-various/2278653.p?id=102368&skuId=2278653&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278653', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278653_sa.jpg\"}', 'upc' => '012676041423', 'provider' => 'bestbuy'],\n ['name' => \"Rideback: Complete Series (2 Disc) (DVD) (Limited Edition) (Uncut)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rideback-complete-series-2-disc-dvd-limited-edition-uncut/2278679.p?id=2168059&skuId=2278679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278679.jpg\"}', 'upc' => '704400012457', 'provider' => 'bestbuy'],\n ['name' => \"Famous Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/famous-duets-cd/2278680.p?id=99737&skuId=2278680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278680.jpg\"}', 'upc' => '012676041621', 'provider' => 'bestbuy'],\n ['name' => \"A Rainbow Path - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-rainbow-path-cd/2278804.p?id=136760&skuId=2278804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278804_sa.jpg\"}', 'upc' => '023234010324', 'provider' => 'bestbuy'],\n ['name' => \"Garden of Ecstasy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/garden-of-ecstasy-cd/2278822.p?id=136761&skuId=2278822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278822_sa.jpg\"}', 'upc' => '023234010720', 'provider' => 'bestbuy'],\n ['name' => \"Amazon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amazon-cd/2278902.p?id=136764&skuId=2278902&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278902', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278902_sa.jpg\"}', 'upc' => '023234011123', 'provider' => 'bestbuy'],\n ['name' => \"Lady of the Lake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lady-of-the-lake-cd/2278920.p?id=136765&skuId=2278920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278920_sa.jpg\"}', 'upc' => '023234011222', 'provider' => 'bestbuy'],\n ['name' => \"One Spirit - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-spirit-cd/2278948.p?id=136766&skuId=2278948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2278948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2278\\/2278948_sa.jpg\"}', 'upc' => '023234011321', 'provider' => 'bestbuy'],\n ['name' => \"Ocean Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ocean-moon-cd/2279073.p?id=136835&skuId=2279073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279073.jpg\"}', 'upc' => '023234008529', 'provider' => 'bestbuy'],\n ['name' => \"All Star Rock and Roll Revue - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-star-rock-and-roll-revue-cd-various/2279126.p?id=72727&skuId=2279126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279126_sa.jpg\"}', 'upc' => '012676051323', 'provider' => 'bestbuy'],\n ['name' => \"Love & Politics: A 30 Year Saga - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-politics-a-30-year-saga-cd/2279135.p?id=136834&skuId=2279135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279135_sa.jpg\"}', 'upc' => '023234000721', 'provider' => 'bestbuy'],\n ['name' => \"As You Desire Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/as-you-desire-me-cd/2279144.p?id=80678&skuId=2279144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279144_sa.jpg\"}', 'upc' => '012676052320', 'provider' => 'bestbuy'],\n ['name' => \"Dame Dreaming - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dame-dreaming-cd/2279171.p?id=80679&skuId=2279171&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279171', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279171_sa.jpg\"}', 'upc' => '012676053228', 'provider' => 'bestbuy'],\n ['name' => \"Doggett Beat for Dancing Feet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doggett-beat-for-dancing-feet-cd/2279224.p?id=80681&skuId=2279224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279224_sa.jpg\"}', 'upc' => '012676055727', 'provider' => 'bestbuy'],\n ['name' => \"Clyde McPhatter with Billy Ward & His Dominoes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/clyde-mcphatter-with-billy-ward-his-dominoes-cd/2279242.p?id=91254&skuId=2279242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279242.jpg\"}', 'upc' => '012676055925', 'provider' => 'bestbuy'],\n ['name' => \"Come Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-home-cd/2279279.p?id=87162&skuId=2279279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279279_sa.jpg\"}', 'upc' => '012676056922', 'provider' => 'bestbuy'],\n ['name' => \"Songs of the Hills - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-of-the-hills-cd/2279368.p?id=95939&skuId=2279368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279368_sa.jpg\"}', 'upc' => '012676058827', 'provider' => 'bestbuy'],\n ['name' => \"Somewhere Between Truth and Fiction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somewhere-between-truth-and-fiction-cd/2279377.p?id=1452278&skuId=2279377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279377_sa.jpg\"}', 'upc' => '035828015325', 'provider' => 'bestbuy'],\n ['name' => \"Steve Lawrence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/steve-lawrence-cd/2279395.p?id=88823&skuId=2279395&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279395', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279395_sa.jpg\"}', 'upc' => '012676059329', 'provider' => 'bestbuy'],\n ['name' => \"Alto Magic: Dance Party with Earl Bostic - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alto-magic-dance-party-with-earl-bostic-cd/2279402.p?id=75597&skuId=2279402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279402_sa.jpg\"}', 'upc' => '012676059725', 'provider' => 'bestbuy'],\n ['name' => \"Mister Little Willie John - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mister-little-willie-john-cd/2279420.p?id=87103&skuId=2279420&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279420', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279420_sa.jpg\"}', 'upc' => '012676060325', 'provider' => 'bestbuy'],\n ['name' => \"Blue and Moody - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-and-moody-cd/2279439.p?id=96273&skuId=2279439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279439_sa.jpg\"}', 'upc' => '012676060424', 'provider' => 'bestbuy'],\n ['name' => \"16 of His Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-of-his-greatest-hits-cd/2279457.p?id=85948&skuId=2279457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279457_sa.jpg\"}', 'upc' => '012676060523', 'provider' => 'bestbuy'],\n ['name' => \"Battle of the Blues, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-of-the-blues-vol-1-cd/2279466.p?id=84891&skuId=2279466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279466_sa.jpg\"}', 'upc' => '012676060721', 'provider' => 'bestbuy'],\n ['name' => \"Dance Music from the Bostic Workshop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-music-from-the-bostic-workshop-cd/2279484.p?id=75599&skuId=2279484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279484_sa.jpg\"}', 'upc' => '012676061322', 'provider' => 'bestbuy'],\n ['name' => \"Battle of the Blues, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-of-the-blues-vol-2-cd/2279527.p?id=84892&skuId=2279527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279527_sa.jpg\"}', 'upc' => '012676062725', 'provider' => 'bestbuy'],\n ['name' => \"Battle of the Organs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-of-the-organs-cd/2279554.p?id=96766&skuId=2279554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279554.jpg\"}', 'upc' => '012676063128', 'provider' => 'bestbuy'],\n ['name' => \"Battle of the Blues, Vol. 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/battle-of-the-blues-vol-3-cd/2279572.p?id=71763&skuId=2279572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279572_sa.jpg\"}', 'upc' => '012676063425', 'provider' => 'bestbuy'],\n ['name' => \"The Uncollected Charlie Spivak & His Orchestra - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-uncollected-charlie-spivak-his-orchestra-cd/2279616.p?id=71094&skuId=2279616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279616.jpg\"}', 'upc' => '014921010529', 'provider' => 'bestbuy'],\n ['name' => \"Eddy Howard & His Orchestra Play 22 Original... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eddy-howard-his-orchestra-play-22-original-cd/2279643.p?id=116893&skuId=2279643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279643.jpg\"}', 'upc' => '014921040526', 'provider' => 'bestbuy'],\n ['name' => \"Margo Hennebach - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/margo-hennebach-cd/2279705.p?id=1506850&skuId=2279705&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279705', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279705.jpg\"}', 'upc' => '782073000421', 'provider' => 'bestbuy'],\n ['name' => \"Last Night While You Slept-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/last-night-while-you-slept-cd/2279983.p?id=107680&skuId=2279983&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2279983', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2279\\/2279983_sa.jpg\"}', 'upc' => '743431500724', 'provider' => 'bestbuy'],\n ['name' => \"Ducktales: Remastered - PlayStation 3\", 'description_short' => \"Your favorite ducks are back and better than ever\", 'description_long' => \"Your favorite ducks are back and better than ever\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ducktales-remastered-playstation-3/2280001.p?id=1219071226263&skuId=2280001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280001_sa.jpg\"}', 'upc' => '013388340798', 'provider' => 'bestbuy'],\n ['name' => \"Ducktales: Remastered - Nintendo Wii U\", 'description_short' => \"Your favorite ducks are back and better than ever\", 'description_long' => \"Your favorite ducks are back and better than ever\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ducktales-remastered-nintendo-wii-u/2280029.p?id=1219071228675&skuId=2280029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280029_sa.jpg\"}', 'upc' => '013388390076', 'provider' => 'bestbuy'],\n ['name' => \"Half Life Of Desire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/half-life-of-desire-cd/2280089.p?id=65885&skuId=2280089&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280089', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280089.jpg\"}', 'upc' => '743431324221', 'provider' => 'bestbuy'],\n ['name' => \"Dante's Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dantes-blues-cd/2280258.p?id=65507&skuId=2280258&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280258', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280258.jpg\"}', 'upc' => '743431351227', 'provider' => 'bestbuy'],\n ['name' => \"Best of Voyage: Souvenirs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-voyage-souvenirs-cd/2280285.p?id=129762&skuId=2280285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280285_sa.jpg\"}', 'upc' => '053993001226', 'provider' => 'bestbuy'],\n ['name' => \"La Spada di San Galgano (The Sword of St.... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/la-spada-di-san-galgano-the-sword-of-st-cd/2280356.p?id=68700&skuId=2280356&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280356', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280356_sa.jpg\"}', 'upc' => '743431361622', 'provider' => 'bestbuy'],\n ['name' => \"Seven Point Perspective - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven-point-perspective-cd/2280418.p?id=64485&skuId=2280418&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280418', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280418.jpg\"}', 'upc' => '743431371126', 'provider' => 'bestbuy'],\n ['name' => \"Research and Development - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/research-and-development-cd/2280463.p?id=68305&skuId=2280463&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280463', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280463.jpg\"}', 'upc' => '743431380029', 'provider' => 'bestbuy'],\n ['name' => \"Whole Lot of Shakin' Going On - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whole-lot-of-shakin-going-on-cd-various/2280784.p?id=97013&skuId=2280784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280784.jpg\"}', 'upc' => '012676782227', 'provider' => 'bestbuy'],\n ['name' => \"Best Of - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-cd/2280793.p?id=156380&skuId=2280793&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280793', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280793_sa.jpg\"}', 'upc' => '053993336021', 'provider' => 'bestbuy'],\n ['name' => \"22 Greats - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/22-greats-cd/2280971.p?id=202138&skuId=2280971&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2280971', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2280\\/2280971_sa.jpg\"}', 'upc' => '012676786225', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 1960 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1960-cd-various/2281122.p?id=99002&skuId=2281122&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281122_sa.jpg\"}', 'upc' => '012676786829', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Enjoy - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-enjoy-cd-various/2281131.p?id=129057&skuId=2281131&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281131', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281131.jpg\"}', 'upc' => '053993000526', 'provider' => 'bestbuy'],\n ['name' => \"20 Greatest Hits 1965 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-greatest-hits-1965-cd-various/2281195.p?id=99004&skuId=2281195&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281195', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281195_sa.jpg\"}', 'upc' => '012676787123', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 1969 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1969-cd-various/2281257.p?id=99007&skuId=2281257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281257.jpg\"}', 'upc' => '012676787420', 'provider' => 'bestbuy'],\n ['name' => \"Love & Desire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-desire-cd/2281275.p?id=154998&skuId=2281275&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281275', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281275_sa.jpg\"}', 'upc' => '053993662526', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits 1970 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-1970-cd-various/2281284.p?id=98402&skuId=2281284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281284.jpg\"}', 'upc' => '012676787529', 'provider' => 'bestbuy'],\n ['name' => \"At Their Best - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-their-best-cd/2281328.p?id=202144&skuId=2281328&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281328', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281328.jpg\"}', 'upc' => '012676787727', 'provider' => 'bestbuy'],\n ['name' => \"The Jiggs Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-jiggs-up-cd/2281408.p?id=72036&skuId=2281408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281408_sa.jpg\"}', 'upc' => '054987402425', 'provider' => 'bestbuy'],\n ['name' => \"16 Hits of Hawaii - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/16-hits-of-hawaii-cd/2281471.p?id=90249&skuId=2281471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281471_sa.jpg\"}', 'upc' => '012676790321', 'provider' => 'bestbuy'],\n ['name' => \"Tales of the Pilot: Bud Shank Plays the Music... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tales-of-the-pilot-bud-shank-plays-the-music-cd/2281499.p?id=70779&skuId=2281499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281499.jpg\"}', 'upc' => '054987402524', 'provider' => 'bestbuy'],\n ['name' => \"Don't Let Me Be Misunderstood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-let-me-be-misunderstood-cd/2281523.p?id=179173&skuId=2281523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281523_sa.jpg\"}', 'upc' => '053993663424', 'provider' => 'bestbuy'],\n ['name' => \"Late and Great Patsy Cline & Dottie West: 16... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/late-and-great-patsy-cline-dottie-west-16-cd/2281532.p?id=202146&skuId=2281532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281532.jpg\"}', 'upc' => '012676791328', 'provider' => 'bestbuy'],\n ['name' => \"The House of the Rising Sun - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-house-of-the-rising-sun-cd/2281550.p?id=179174&skuId=2281550&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281550', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281550.jpg\"}', 'upc' => '053993663523', 'provider' => 'bestbuy'],\n ['name' => \"Another Cha-Cha - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/another-cha-cha-cd/2281603.p?id=179171&skuId=2281603&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281603', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281603_sa.jpg\"}', 'upc' => '053993663721', 'provider' => 'bestbuy'],\n ['name' => \"Don't Be Shy Tonight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-be-shy-tonight-cd/2281630.p?id=156406&skuId=2281630&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281630', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281630.jpg\"}', 'upc' => '053993663820', 'provider' => 'bestbuy'],\n ['name' => \"First Nocturn of the Night... [Import] - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-nocturn-of-the-night-import-various-cd/2281710.p?id=84244&skuId=2281710&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281710', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281710.jpg\"}', 'upc' => '013711302226', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Avi Records - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-avi-records-cd-various/2281747.p?id=130011&skuId=2281747&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281747', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281747.jpg\"}', 'upc' => '053993000724', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Butterfly Records - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-butterfly-records-cd-various/2281774.p?id=129682&skuId=2281774&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281774', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281774.jpg\"}', 'upc' => '053993000922', 'provider' => 'bestbuy'],\n ['name' => \"Vices and Virtues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vices-and-virtues-cd/2281785.p?id=2189489&skuId=2281785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281785_sa.jpg\"}', 'upc' => '093624968795', 'provider' => 'bestbuy'],\n ['name' => \"Norwegian Wood [Original Motion... [Digipak] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/norwegian-wood-original-motion-digipak-cd-original-soundtrack/2281803.p?id=2192948&skuId=2281803&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281803', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281803_sa.jpg\"}', 'upc' => '075597977448', 'provider' => 'bestbuy'],\n ['name' => \"Slow Airs & Set Dances - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slow-airs-set-dances-cd/2281854.p?id=93671&skuId=2281854&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281854', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281854_sa.jpg\"}', 'upc' => '048248101523', 'provider' => 'bestbuy'],\n ['name' => \"Real Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/real-time-cd/2281952.p?id=108654&skuId=2281952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281952_sa.jpg\"}', 'upc' => '090368011824', 'provider' => 'bestbuy'],\n ['name' => \"Gliders - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gliders-cd/2281970.p?id=68615&skuId=2281970&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281970', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281970.jpg\"}', 'upc' => '028568800221', 'provider' => 'bestbuy'],\n ['name' => \"Puma Creek-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/puma-creek-cd/2281989.p?id=125258&skuId=2281989&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2281989', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2281\\/2281989.jpg\"}', 'upc' => '028568801129', 'provider' => 'bestbuy'],\n ['name' => \"Greetings from New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greetings-from-new-york-cd/2282005.p?id=125260&skuId=2282005&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282005', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282005.jpg\"}', 'upc' => '028568801426', 'provider' => 'bestbuy'],\n ['name' => \"Straight Ahead - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-ahead-cd/2282032.p?id=69998&skuId=2282032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282032.jpg\"}', 'upc' => '028568802027', 'provider' => 'bestbuy'],\n ['name' => \"Charles Blenzig - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/charles-blenzig-cd/2282041.p?id=125360&skuId=2282041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282041.jpg\"}', 'upc' => '028568802225', 'provider' => 'bestbuy'],\n ['name' => \"Don't Forget the Way Home - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-forget-the-way-home-cd/2282050.p?id=125376&skuId=2282050&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282050', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282050.jpg\"}', 'upc' => '028568802423', 'provider' => 'bestbuy'],\n ['name' => \"The Mystery Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mystery-man-cd/2282069.p?id=66559&skuId=2282069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282069.jpg\"}', 'upc' => '028568802621', 'provider' => 'bestbuy'],\n ['name' => \"The Joys of Living 2008-2010 [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-joys-of-living-2008-2010-digipak-cd/2282074.p?id=2195843&skuId=2282074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282074_sa.jpg\"}', 'upc' => '856136002582', 'provider' => 'bestbuy'],\n ['name' => \"Zzah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zzah-cd/2282096.p?id=238873&skuId=2282096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282096.jpg\"}', 'upc' => '028568803222', 'provider' => 'bestbuy'],\n ['name' => \"Strollin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strollin-cd/2282103.p?id=70901&skuId=2282103&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282103', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282103.jpg\"}', 'upc' => '028568803420', 'provider' => 'bestbuy'],\n ['name' => \"Out of My Head [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-my-head-digipak-cd/2282108.p?id=2199976&skuId=2282108&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282108', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282108_sa.jpg\"}', 'upc' => '705438005121', 'provider' => 'bestbuy'],\n ['name' => \"Stories to Tell - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stories-to-tell-cd/2282112.p?id=108964&skuId=2282112&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282112', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282112.jpg\"}', 'upc' => '028568803925', 'provider' => 'bestbuy'],\n ['name' => \"Love Notes/Letter Bombs - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-notes-letter-bombs-cd/2282117.p?id=2192802&skuId=2282117&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282117', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282117_sa.jpg\"}', 'upc' => '067003091923', 'provider' => 'bestbuy'],\n ['name' => \"I Hope So - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-hope-so-cd/2282121.p?id=125249&skuId=2282121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282121.jpg\"}', 'upc' => '028568804021', 'provider' => 'bestbuy'],\n ['name' => \"Cherish the Light Years [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cherish-the-light-years-digipak-cd/2282126.p?id=2195841&skuId=2282126&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282126', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282126_sa.jpg\"}', 'upc' => '744861092124', 'provider' => 'bestbuy'],\n ['name' => \"Strings Attached - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/strings-attached-cd/2282675.p?id=92012&skuId=2282675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282675_sa.jpg\"}', 'upc' => '048248102728', 'provider' => 'bestbuy'],\n ['name' => \"Makin' the Rounds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/makin-the-rounds-cd/2282684.p?id=2424917&skuId=2282684&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282684', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282684_sa.jpg\"}', 'upc' => '048248103428', 'provider' => 'bestbuy'],\n ['name' => \"The New Land - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-new-land-cd/2282693.p?id=102065&skuId=2282693&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282693', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282693.jpg\"}', 'upc' => '048248104029', 'provider' => 'bestbuy'],\n ['name' => \"Fair Warning - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fair-warning-cd/2282700.p?id=79458&skuId=2282700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282700_sa.jpg\"}', 'upc' => '048248104722', 'provider' => 'bestbuy'],\n ['name' => \"Jealousy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jealousy-cd/2282728.p?id=102064&skuId=2282728&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282728', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282728_sa.jpg\"}', 'upc' => '048248105026', 'provider' => 'bestbuy'],\n ['name' => \"Buttons & Bows - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/buttons-bows-cd/2282737.p?id=76434&skuId=2282737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282737_sa.jpg\"}', 'upc' => '048248105125', 'provider' => 'bestbuy'],\n ['name' => \"Uncommon Bonds - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uncommon-bonds-cd/2282746.p?id=92014&skuId=2282746&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282746', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282746_sa.jpg\"}', 'upc' => '048248105323', 'provider' => 'bestbuy'],\n ['name' => \"Premiére: Music from Brittany - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/premiere-music-from-brittany-cd/2282755.p?id=88376&skuId=2282755&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282755', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282755_sa.jpg\"}', 'upc' => '048248105521', 'provider' => 'bestbuy'],\n ['name' => \"There Were Roses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-were-roses-cd/2282764.p?id=92016&skuId=2282764&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282764', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282764.jpg\"}', 'upc' => '048248105729', 'provider' => 'bestbuy'],\n ['name' => \"Relativity - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/relativity-cd/2282808.p?id=79459&skuId=2282808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282808_sa.jpg\"}', 'upc' => '048248105927', 'provider' => 'bestbuy'],\n ['name' => \"The Times We've Had - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-times-weve-had-cd/2282835.p?id=86317&skuId=2282835&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282835', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282835_sa.jpg\"}', 'upc' => '048248106320', 'provider' => 'bestbuy'],\n ['name' => \"Kind Providence - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kind-providence-cd/2282862.p?id=82024&skuId=2282862&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282862', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282862_sa.jpg\"}', 'upc' => '048248106429', 'provider' => 'bestbuy'],\n ['name' => \"Happy to Meet & Sorry to Part - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-to-meet-sorry-to-part-cd/2282924.p?id=76333&skuId=2282924&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282924', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282924_sa.jpg\"}', 'upc' => '048248106924', 'provider' => 'bestbuy'],\n ['name' => \"Patrick Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/patrick-street-cd/2282942.p?id=76341&skuId=2282942&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282942', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282942_sa.jpg\"}', 'upc' => '048248107129', 'provider' => 'bestbuy'],\n ['name' => \"Kilkelly - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kilkelly-cd/2282979.p?id=92015&skuId=2282979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2282979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2282\\/2282979_sa.jpg\"}', 'upc' => '048248107228', 'provider' => 'bestbuy'],\n ['name' => \"The Invasion - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-invasion-cd/2283013.p?id=93716&skuId=2283013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283013_sa.jpg\"}', 'upc' => '048248107426', 'provider' => 'bestbuy'],\n ['name' => \"Altan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/altan-cd/2283022.p?id=87744&skuId=2283022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283022.jpg\"}', 'upc' => '048248107822', 'provider' => 'bestbuy'],\n ['name' => \"Dancing Feet - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancing-feet-cd/2283040.p?id=101190&skuId=2283040&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283040', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283040.jpg\"}', 'upc' => '048248108126', 'provider' => 'bestbuy'],\n ['name' => \"Dublin Lady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dublin-lady-cd/2283059.p?id=100426&skuId=2283059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283059_sa.jpg\"}', 'upc' => '048248108324', 'provider' => 'bestbuy'],\n ['name' => \"Foggy Dew - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/foggy-dew-cd/2283068.p?id=93672&skuId=2283068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283068_sa.jpg\"}', 'upc' => '048248108423', 'provider' => 'bestbuy'],\n ['name' => \"The Light of Other Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-light-of-other-days-cd/2283086.p?id=77118&skuId=2283086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283086.jpg\"}', 'upc' => '048248108621', 'provider' => 'bestbuy'],\n ['name' => \"No. 2 Patrick Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-2-patrick-street-cd/2283157.p?id=94511&skuId=2283157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283157_sa.jpg\"}', 'upc' => '048248108829', 'provider' => 'bestbuy'],\n ['name' => \"Stranger at the Gate - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stranger-at-the-gate-cd/2283193.p?id=2387491&skuId=2283193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283193.jpg\"}', 'upc' => '048248109123', 'provider' => 'bestbuy'],\n ['name' => \"Horse with a Heart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/horse-with-a-heart-cd/2283246.p?id=72836&skuId=2283246&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283246', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283246_sa.jpg\"}', 'upc' => '048248109529', 'provider' => 'bestbuy'],\n ['name' => \"Green Fields of America: Live in Concert - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/green-fields-of-america-live-in-concert-cd-various/2283282.p?id=84230&skuId=2283282&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283282', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283282_sa.jpg\"}', 'upc' => '048248109628', 'provider' => 'bestbuy'],\n ['name' => \"New French Folk Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-french-folk-music-cd/2283344.p?id=72450&skuId=2283344&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283344', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283344_sa.jpg\"}', 'upc' => '048248109925', 'provider' => 'bestbuy'],\n ['name' => \"Primeval - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/primeval-cd/2283380.p?id=96042&skuId=2283380&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283380', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283380.jpg\"}', 'upc' => '048248110426', 'provider' => 'bestbuy'],\n ['name' => \"Celtic Music - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celtic-music-cd/2283442.p?id=94062&skuId=2283442&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283442', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283442_sa.jpg\"}', 'upc' => '048248110624', 'provider' => 'bestbuy'],\n ['name' => \"Cullen Bay - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cullen-bay-cd/2283488.p?id=101189&skuId=2283488&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283488', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283488_sa.jpg\"}', 'upc' => '048248110822', 'provider' => 'bestbuy'],\n ['name' => \"Sniper: Ghost Warrior - PlayStation 3\", 'description_short' => \"Control the power of death as you ghost through the jungle\", 'description_long' => \"Control the power of death as you ghost through the jungle\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sniper-ghost-warrior-playstation-3/2283504.p?id=1218317764858&skuId=2283504&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283504', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283504_sa.jpg\"}', 'upc' => '816293014019', 'provider' => 'bestbuy'],\n ['name' => \"Space Piper - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/space-piper-cd/2283549.p?id=96043&skuId=2283549&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283549', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283549_sa.jpg\"}', 'upc' => '048248111522', 'provider' => 'bestbuy'],\n ['name' => \"The Back Door - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-back-door-cd/2283558.p?id=77376&skuId=2283558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283558_sa.jpg\"}', 'upc' => '048248111928', 'provider' => 'bestbuy'],\n ['name' => \"The Mermaid's Song - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mermaids-song-cd/2283576.p?id=101193&skuId=2283576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283576_sa.jpg\"}', 'upc' => '048248112123', 'provider' => 'bestbuy'],\n ['name' => \"A Heart Made of Glass - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-heart-made-of-glass-cd/2283594.p?id=99945&skuId=2283594&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283594', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283594_sa.jpg\"}', 'upc' => '048248112321', 'provider' => 'bestbuy'],\n ['name' => \"Tryin' to Survive in the Ghetto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tryin-to-survive-in-the-ghetto-cd/2283601.p?id=114973&skuId=2283601&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283601', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283601_sa.jpg\"}', 'upc' => '783476253223', 'provider' => 'bestbuy'],\n ['name' => \"Martin Hayes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/martin-hayes-cd/2283610.p?id=85071&skuId=2283610&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283610', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283610_sa.jpg\"}', 'upc' => '048248112727', 'provider' => 'bestbuy'],\n ['name' => \"3 Way Street - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-way-street-cd/2283647.p?id=92017&skuId=2283647&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283647', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283647_sa.jpg\"}', 'upc' => '048248112925', 'provider' => 'bestbuy'],\n ['name' => \"Country Impressions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-impressions-cd/2283656.p?id=108878&skuId=2283656&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283656', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283656.jpg\"}', 'upc' => '710571094321', 'provider' => 'bestbuy'],\n ['name' => \"Snap! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/snap-cd/2283665.p?id=98706&skuId=2283665&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283665', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283665.jpg\"}', 'upc' => '748775150222', 'provider' => 'bestbuy'],\n ['name' => \"Before We Arrive - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/before-we-arrive-cd/2283683.p?id=79992&skuId=2283683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283683.jpg\"}', 'upc' => '748775150925', 'provider' => 'bestbuy'],\n ['name' => \"Magico Magico!-CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/magico-magico-cd/2283736.p?id=89330&skuId=2283736&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283736', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283736_sa.jpg\"}', 'upc' => '744626000623', 'provider' => 'bestbuy'],\n ['name' => \"Years Gone By - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/years-gone-by-cd/2283852.p?id=87904&skuId=2283852&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283852', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283852_sa.jpg\"}', 'upc' => '025218852227', 'provider' => 'bestbuy'],\n ['name' => \"Celtic Hotel - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celtic-hotel-cd/2283870.p?id=276439&skuId=2283870&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283870', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283870_sa.jpg\"}', 'upc' => '096045200222', 'provider' => 'bestbuy'],\n ['name' => \"Anthem for the Common Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/anthem-for-the-common-man-cd/2283914.p?id=276448&skuId=2283914&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283914', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283914.jpg\"}', 'upc' => '096045200826', 'provider' => 'bestbuy'],\n ['name' => \"On the Rise - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-rise-cd/2283923.p?id=276438&skuId=2283923&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283923', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283923.jpg\"}', 'upc' => '096045200925', 'provider' => 'bestbuy'],\n ['name' => \"Music In Trust 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-in-trust-1-cd/2283932.p?id=276437&skuId=2283932&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283932', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283932.jpg\"}', 'upc' => '096045201021', 'provider' => 'bestbuy'],\n ['name' => \"Scottish Harp - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scottish-harp-cd/2283950.p?id=311280&skuId=2283950&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2283950', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2283\\/2283950.jpg\"}', 'upc' => '096045200529', 'provider' => 'bestbuy'],\n ['name' => \"Take the Bull by The Horns - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-the-bull-by-the-horns-cd/2284227.p?id=80692&skuId=2284227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2284227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2284\\/2284227_sa.jpg\"}', 'upc' => '048248113120', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-canada-cd/2284469.p?id=1516923&skuId=2284469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2284469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2284\\/2284469.jpg\"}', 'upc' => '068381712721', 'provider' => 'bestbuy'],\n ['name' => \"Best Of Gary Low - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-gary-low-cd/2284566.p?id=1440627&skuId=2284566&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2284566', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2284\\/2284566.jpg\"}', 'upc' => '068381713025', 'provider' => 'bestbuy'],\n ['name' => \"Best of Soft Lee - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-soft-lee-cd/2284708.p?id=1447254&skuId=2284708&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2284708', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2284\\/2284708_sa.jpg\"}', 'upc' => '025633346820', 'provider' => 'bestbuy'],\n ['name' => \"Mixcraft Home Studio 7 - Windows\", 'description_short' => \"Record and mix your own tracks with an array of virtual instruments and effects at your fingertips\", 'description_long' => \"Record and mix your own tracks with an array of virtual instruments and effects at your fingertips\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mixcraft-home-studio-7-windows/2285024.p?id=1219535314129&skuId=2285024&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285024', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285024_sa.jpg\"}', 'upc' => '728028218398', 'provider' => 'bestbuy'],\n ['name' => \"Dance Lady Dance [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-lady-dance-import-cd/2285495.p?id=1518419&skuId=2285495&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285495', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285495.jpg\"}', 'upc' => '068381715524', 'provider' => 'bestbuy'],\n ['name' => \"Raga Bhairavi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-bhairavi-cd/2285583.p?id=285139&skuId=2285583&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285583_sa.jpg\"}', 'upc' => '731838100128', 'provider' => 'bestbuy'],\n ['name' => \"Raga Desh - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-desh-cd/2285592.p?id=285144&skuId=2285592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285592_sa.jpg\"}', 'upc' => '731838100227', 'provider' => 'bestbuy'],\n ['name' => \"Raga Yaman/Raga Kirwani - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-yaman-raga-kirwani-cd/2285618.p?id=155831&skuId=2285618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285618.jpg\"}', 'upc' => '731838100326', 'provider' => 'bestbuy'],\n ['name' => \"Raga Malkauns/Raga Mishra Bhairavi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-malkauns-raga-mishra-bhairavi-cd/2285645.p?id=285138&skuId=2285645&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285645', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285645_sa.jpg\"}', 'upc' => '731838100425', 'provider' => 'bestbuy'],\n ['name' => \"Raga Puriya Dhanashri - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-puriya-dhanashri-cd/2285663.p?id=285143&skuId=2285663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285663_sa.jpg\"}', 'upc' => '731838100524', 'provider' => 'bestbuy'],\n ['name' => \"Raga Jhinjhoti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-jhinjhoti-cd/2285672.p?id=296545&skuId=2285672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285672_sa.jpg\"}', 'upc' => '731838100623', 'provider' => 'bestbuy'],\n ['name' => \"Ahir Bhairav & Bhairavi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ahir-bhairav-bhairavi-cd/2285681.p?id=155575&skuId=2285681&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285681', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285681_sa.jpg\"}', 'upc' => '731838100722', 'provider' => 'bestbuy'],\n ['name' => \"Sarod - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sarod-cd/2285707.p?id=261108&skuId=2285707&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285707', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285707_sa.jpg\"}', 'upc' => '731838100821', 'provider' => 'bestbuy'],\n ['name' => \"Raga Shahana Kanada - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-shahana-kanada-cd/2285734.p?id=261107&skuId=2285734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285734_sa.jpg\"}', 'upc' => '731838100920', 'provider' => 'bestbuy'],\n ['name' => \"Raga Jaijaivanti - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-jaijaivanti-cd/2285743.p?id=155898&skuId=2285743&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285743', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285743.jpg\"}', 'upc' => '731838101026', 'provider' => 'bestbuy'],\n ['name' => \"Take It Up (Import) [1994] [Single] (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-it-up-import-1994-single-canada-cd/2285985.p?id=1595570&skuId=2285985&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2285985', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2285\\/2285985.jpg\"}', 'upc' => '068381120526', 'provider' => 'bestbuy'],\n ['name' => \"Leyden Zar - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leyden-zar-cd/2286065.p?id=1933225&skuId=2286065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286065.jpg\"}', 'upc' => '068381200129', 'provider' => 'bestbuy'],\n ['name' => \"Feel Good Party Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/feel-good-party-time-cd/2286190.p?id=1436337&skuId=2286190&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286190', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286190_sa.jpg\"}', 'upc' => '068381702425', 'provider' => 'bestbuy'],\n ['name' => \"A-Freak-A - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-freak-a-cd/2286207.p?id=1474466&skuId=2286207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '068381702524', 'provider' => 'bestbuy'],\n ['name' => \"Learning to Dance All Over Again (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/learning-to-dance-all-over-again-import-canada-cd/2286225.p?id=1464892&skuId=2286225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286225.jpg\"}', 'upc' => '068381702623', 'provider' => 'bestbuy'],\n ['name' => \"You Got What It Takes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-got-what-it-takes-cd/2286234.p?id=2151928&skuId=2286234&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286234', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286234.jpg\"}', 'upc' => '068381702722', 'provider' => 'bestbuy'],\n ['name' => \"I'm Caught Up (In a One Night... [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-caught-up-in-a-one-night-import-cd/2286270.p?id=1436367&skuId=2286270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286270_sa.jpg\"}', 'upc' => '068381703026', 'provider' => 'bestbuy'],\n ['name' => \"I Am Your Woman, She Is Your Wife [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-am-your-woman-she-is-your-wife-import-cd/2286298.p?id=2151673&skuId=2286298&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286298', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286298.jpg\"}', 'upc' => '068381703125', 'provider' => 'bestbuy'],\n ['name' => \"Keep on Jumpin' (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-on-jumpin-import-canada-cd/2286341.p?id=1436366&skuId=2286341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286341_sa.jpg\"}', 'upc' => '068381703422', 'provider' => 'bestbuy'],\n ['name' => \"Your Love Is A Lifesaver - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/your-love-is-a-lifesaver-cd/2286387.p?id=1484269&skuId=2286387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286387.jpg\"}', 'upc' => '068381703521', 'provider' => 'bestbuy'],\n ['name' => \"Sharon Redd [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sharon-redd-import-cd/2286396.p?id=1436406&skuId=2286396&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286396', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286396.jpg\"}', 'upc' => '068381706324', 'provider' => 'bestbuy'],\n ['name' => \"Dancin' the Night Away [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dancin-the-night-away-import-cd/2286403.p?id=1438633&skuId=2286403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286403_sa.jpg\"}', 'upc' => '068381703729', 'provider' => 'bestbuy'],\n ['name' => \"There But for the Grace of God Go I - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/there-but-for-the-grace-of-god-go-i-cd/2286430.p?id=2276123&skuId=2286430&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286430', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286430_sa.jpg\"}', 'upc' => '068381703828', 'provider' => 'bestbuy'],\n ['name' => \"Menergy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/menergy-cd/2286476.p?id=1438994&skuId=2286476&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286476', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286476.jpg\"}', 'upc' => '068381704023', 'provider' => 'bestbuy'],\n ['name' => \"Wuthering Heights (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wuthering-heights-import-canada-cd/2286519.p?id=1440895&skuId=2286519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286519.jpg\"}', 'upc' => '068381704122', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Sufi Qawwalis 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-sufi-qawwalis-2-cd/2286537.p?id=3322370&skuId=2286537&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286537', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '760452001726', 'provider' => 'bestbuy'],\n ['name' => \"Live At Kufa Gallery London 1990 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-kufa-gallery-london-1990-cd/2286555.p?id=3322372&skuId=2286555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286555_sa.jpg\"}', 'upc' => '760452000729', 'provider' => 'bestbuy'],\n ['name' => \"Raga Bihag-Bhairvi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raga-bihag-bhairvi-cd/2286564.p?id=1985677&skuId=2286564&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286564', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '760452000828', 'provider' => 'bestbuy'],\n ['name' => \"Jump Shout - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jump-shout-cd/2286617.p?id=1436407&skuId=2286617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286617.jpg\"}', 'upc' => '068381704627', 'provider' => 'bestbuy'],\n ['name' => \"It'S A Beat Wave - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-a-beat-wave-cd/2286662.p?id=2294068&skuId=2286662&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286662', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286662_sa.jpg\"}', 'upc' => '068381704825', 'provider' => 'bestbuy'],\n ['name' => \"So Many Men, So Little Time [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/so-many-men-so-little-time-import-cd/2286680.p?id=1438521&skuId=2286680&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286680', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286680.jpg\"}', 'upc' => '068381704924', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits Dance Party [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-dance-party-import-cd/2286715.p?id=1436352&skuId=2286715&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286715', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286715_sa.jpg\"}', 'upc' => '068381705129', 'provider' => 'bestbuy'],\n ['name' => \"Mind Warp [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mind-warp-import-cd/2286733.p?id=2015421&skuId=2286733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286733_sa.jpg\"}', 'upc' => '068381705327', 'provider' => 'bestbuy'],\n ['name' => \"Do Ya Wanna Funk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-ya-wanna-funk-cd/2286751.p?id=2015438&skuId=2286751&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286751', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286751_sa.jpg\"}', 'upc' => '068381705426', 'provider' => 'bestbuy'],\n ['name' => \"Call Me [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-me-import-cd/2286779.p?id=1448281&skuId=2286779&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286779', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286779.jpg\"}', 'upc' => '068381705525', 'provider' => 'bestbuy'],\n ['name' => \"Rock the Box [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-the-box-import-cd/2286797.p?id=1436412&skuId=2286797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286797_sa.jpg\"}', 'upc' => '068381705624', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-1-cd-various/2286822.p?id=1436386&skuId=2286822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286822_sa.jpg\"}', 'upc' => '068381705822', 'provider' => 'bestbuy'],\n ['name' => \"Music [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-import-cd/2286868.p?id=2151705&skuId=2286868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286868.jpg\"}', 'upc' => '068381706027', 'provider' => 'bestbuy'],\n ['name' => \"Something'S On Your Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somethings-on-your-mind-cd/2286886.p?id=1436374&skuId=2286886&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286886', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286886.jpg\"}', 'upc' => '068381706126', 'provider' => 'bestbuy'],\n ['name' => \"The Best of the 12\\\" Mixes (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-12-mixes-import-canada-cd/2286911.p?id=1434685&skuId=2286911&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286911', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286911_sa.jpg\"}', 'upc' => '068381706225', 'provider' => 'bestbuy'],\n ['name' => \"Redd Hot [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/redd-hot-import-cd/2286957.p?id=1438264&skuId=2286957&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286957', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286957.jpg\"}', 'upc' => '068381706423', 'provider' => 'bestbuy'],\n ['name' => \"Come to Me (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-to-me-import-canada-cd/2286993.p?id=1484270&skuId=2286993&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2286993', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2286\\/2286993.jpg\"}', 'upc' => '068381706621', 'provider' => 'bestbuy'],\n ['name' => \"Tonight [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tonight-import-cd/2287028.p?id=2151710&skuId=2287028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287028.jpg\"}', 'upc' => '068381706720', 'provider' => 'bestbuy'],\n ['name' => \"Now [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/now-import-cd/2287046.p?id=1438271&skuId=2287046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287046_sa.jpg\"}', 'upc' => '068381706829', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 2 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-2-import-cd-various/2287135.p?id=1437936&skuId=2287135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287135.jpg\"}', 'upc' => '068381707024', 'provider' => 'bestbuy'],\n ['name' => \"Morrissey: 25 - Live - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/morrissey-25-live-blu-ray-disc/2287182.p?id=2756048&skuId=2287182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287182_sa.jpg\"}', 'upc' => '801213347391', 'provider' => 'bestbuy'],\n ['name' => \"The Mighty Two (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-mighty-two-import-canada-cd/2287199.p?id=1436383&skuId=2287199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287199_sa.jpg\"}', 'upc' => '068381201522', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 3 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-3-import-cd-various/2287206.p?id=1477353&skuId=2287206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287206.jpg\"}', 'upc' => '068381707321', 'provider' => 'bestbuy'],\n ['name' => \"Tous Les Succes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tous-les-succes-cd/2287224.p?id=2276499&skuId=2287224&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287224', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287224.jpg\"}', 'upc' => '068381201928', 'provider' => 'bestbuy'],\n ['name' => \"Private Collection, Vol. 4: Studio Sessions,... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/private-collection-vol-4-studio-sessions-cd/2287242.p?id=3184730&skuId=2287242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287242.jpg\"}', 'upc' => '068381203427', 'provider' => 'bestbuy'],\n ['name' => \"Let's Do It Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-do-it-again-cd/2287279.p?id=1453984&skuId=2287279&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287279', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287279.jpg\"}', 'upc' => '068381206220', 'provider' => 'bestbuy'],\n ['name' => \"About Us - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/about-us-cd/2287288.p?id=1671014&skuId=2287288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287288.jpg\"}', 'upc' => '068381206824', 'provider' => 'bestbuy'],\n ['name' => \"Go for It - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-for-it-cd/2287297.p?id=247145&skuId=2287297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287297.jpg\"}', 'upc' => '068381207425', 'provider' => 'bestbuy'],\n ['name' => \"Circumstantial Evidence [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/circumstantial-evidence-import-cd/2287304.p?id=1640361&skuId=2287304&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287304', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287304.jpg\"}', 'upc' => '068381207821', 'provider' => 'bestbuy'],\n ['name' => \"Ultralive Ballisticrock... [CD & DVD] [Box] [PA] - CD - DVD Deluxe Edition\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultralive-ballisticrock-cd-dvd-box-pa-cd-dvd-deluxe-edition/2287329.p?id=2758325&skuId=2287329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287329_sa.jpg\"}', 'upc' => '8024391061848', 'provider' => 'bestbuy'],\n ['name' => \"Ted Nugent: Ultralive Ballisticrock - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ted-nugent-ultralive-ballisticrock-blu-ray-disc/2287338.p?id=2758360&skuId=2287338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287338_sa.jpg\"}', 'upc' => '8024391061886', 'provider' => 'bestbuy'],\n ['name' => \"Morrissey: 25 - Live (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/morrissey-25-live-dvd/2287347.p?id=2756048&skuId=2287347&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287347', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287347_sa.jpg\"}', 'upc' => '801213065394', 'provider' => 'bestbuy'],\n ['name' => \"On My Own (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-my-own-import-canada-cd/2287741.p?id=1449999&skuId=2287741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287741.jpg\"}', 'upc' => '068381200624', 'provider' => 'bestbuy'],\n ['name' => \"I Put a Spell on You [1977] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-put-a-spell-on-you-1977-cd/2287769.p?id=1443002&skuId=2287769&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287769', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287769.jpg\"}', 'upc' => '068381200921', 'provider' => 'bestbuy'],\n ['name' => \"Chain Reaction - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/chain-reaction-cd/2287821.p?id=1979546&skuId=2287821&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2287821', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2287\\/2287821.jpg\"}', 'upc' => '068381201027', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-4-cd-various/2288018.p?id=1984243&skuId=2288018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288018.jpg\"}', 'upc' => '068381707420', 'provider' => 'bestbuy'],\n ['name' => \"Street Kings 2: Motor City (Blu-ray Disc) (Unrated)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-kings-2-motor-city-blu-ray-disc-unrated/2288032.p?id=2196188&skuId=2288032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288032_sa.jpg\"}', 'upc' => '024543720287', 'provider' => 'bestbuy'],\n ['name' => \"Benny & Joon (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/benny-joon-blu-ray-disc/2288041.p?id=47181&skuId=2288041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288041_sa.jpg\"}', 'upc' => '883904233282', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 5 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-5-import-cd-various/2288063.p?id=1451202&skuId=2288063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288063.jpg\"}', 'upc' => '068381707529', 'provider' => 'bestbuy'],\n ['name' => \"Fiddler on the Roof (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fiddler-on-the-roof-blu-ray-disc-2-disc/2288069.p?id=47478&skuId=2288069&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288069', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288069_sa.jpg\"}', 'upc' => '883904232988', 'provider' => 'bestbuy'],\n ['name' => \"Gulliver's Travels (Blu-ray 3D) (3-D)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gullivers-travels-blu-ray-3d-3-d/2288078.p?id=2196388&skuId=2288078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288078_sa.jpg\"}', 'upc' => '024543742722', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 6 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-6-cd-various/2288090.p?id=2276381&skuId=2288090&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288090', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288090.jpg\"}', 'upc' => '068381707628', 'provider' => 'bestbuy'],\n ['name' => \"Casino Jack (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/casino-jack-blu-ray-disc/2288096.p?id=2192381&skuId=2288096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288096_sa.jpg\"}', 'upc' => '024543738732', 'provider' => 'bestbuy'],\n ['name' => \"American Dad!, Vol. 6 [3 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-dad-vol-6-3-discs-dvd/2288111.p?id=2196572&skuId=2288111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288111_sa.jpg\"}', 'upc' => '024543716853', 'provider' => 'bestbuy'],\n ['name' => \"Casino Jack (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/casino-jack-dvd/2288148.p?id=2192381&skuId=2288148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288148_sa.jpg\"}', 'upc' => '024543738695', 'provider' => 'bestbuy'],\n ['name' => \"I'm Coming Home Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-coming-home-again-cd/2288161.p?id=1438246&skuId=2288161&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288161', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288161.jpg\"}', 'upc' => '068381201225', 'provider' => 'bestbuy'],\n ['name' => \"Collection [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collection-import-cd/2288223.p?id=1437957&skuId=2288223&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288223', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288223.jpg\"}', 'upc' => '068381070807', 'provider' => 'bestbuy'],\n ['name' => \"First True Love Affair [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/first-true-love-affair-import-cd/2288278.p?id=1436365&skuId=2288278&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288278', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288278_sa.jpg\"}', 'upc' => '068381708120', 'provider' => 'bestbuy'],\n ['name' => \"Listen Up! [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/listen-up-import-cd/2288296.p?id=1436416&skuId=2288296&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288296', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288296.jpg\"}', 'upc' => '068381201423', 'provider' => 'bestbuy'],\n ['name' => \"New York City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-york-city-cd/2288312.p?id=2282976&skuId=2288312&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288312', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288312.jpg\"}', 'upc' => '068381708229', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Darkness [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-darkness-import-cd/2288349.p?id=1437944&skuId=2288349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288349.jpg\"}', 'upc' => '068381201621', 'provider' => 'bestbuy'],\n ['name' => \"Good Lovin' Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/good-lovin-blues-cd/2288358.p?id=1507332&skuId=2288358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288358_sa.jpg\"}', 'upc' => '029667129923', 'provider' => 'bestbuy'],\n ['name' => \"Laurie Vocal Groups: The Doo Wop Sound - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/laurie-vocal-groups-the-doo-wop-sound-cd-various/2288394.p?id=1472366&skuId=2288394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288394_sa.jpg\"}', 'upc' => '029667130929', 'provider' => 'bestbuy'],\n ['name' => \"Best of Toulouse (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-toulouse-import-canada-cd/2288429.p?id=1450012&skuId=2288429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288429.jpg\"}', 'upc' => '068381201829', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Rest of Johnny Maestro & the... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-rest-of-johnny-maestro-the-cd/2288438.p?id=1523627&skuId=2288438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288438_sa.jpg\"}', 'upc' => '029667132220', 'provider' => 'bestbuy'],\n ['name' => \"Happy Organs Wild Guitars & Piano Shuffles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/happy-organs-wild-guitars-piano-shuffles-cd/2288474.p?id=1576242&skuId=2288474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288474_sa.jpg\"}', 'upc' => '029667138628', 'provider' => 'bestbuy'],\n ['name' => \"Best of the Beau-Marks [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-of-the-beau-marks-import-cd/2288483.p?id=1450009&skuId=2288483&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288483', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288483.jpg\"}', 'upc' => '068381202321', 'provider' => 'bestbuy'],\n ['name' => \"Doo Wop Shop [Ace] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/doo-wop-shop-ace-cd-various/2288492.p?id=1576380&skuId=2288492&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288492', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288492.jpg\"}', 'upc' => '029667139229', 'provider' => 'bestbuy'],\n ['name' => \"Searching to Find the One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/searching-to-find-the-one-cd/2288517.p?id=1436424&skuId=2288517&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288517', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288517.jpg\"}', 'upc' => '068381708328', 'provider' => 'bestbuy'],\n ['name' => \"Cajun's Greatest: The Definitive Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cajuns-greatest-the-definitive-collection-cd/2288535.p?id=1452223&skuId=2288535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288535_sa.jpg\"}', 'upc' => '029667142823', 'provider' => 'bestbuy'],\n ['name' => \"Can't Fake the Feeling [Import] [Single] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-fake-the-feeling-import-single-cd/2288553.p?id=1436385&skuId=2288553&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288553', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288553_sa.jpg\"}', 'upc' => '068381708427', 'provider' => 'bestbuy'],\n ['name' => \"Freight Train Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/freight-train-boogie-cd/2288562.p?id=1452197&skuId=2288562&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288562', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288562.jpg\"}', 'upc' => '029667145527', 'provider' => 'bestbuy'],\n ['name' => \"Living on Video [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/living-on-video-import-cd/2288599.p?id=1436404&skuId=2288599&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288599', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288599_sa.jpg\"}', 'upc' => '068381708526', 'provider' => 'bestbuy'],\n ['name' => \"Do It Your Way [Import] [Deluxe Edition] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-it-your-way-import-deluxe-edition-cd/2288633.p?id=1436420&skuId=2288633&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288633', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288633.jpg\"}', 'upc' => '068381715227', 'provider' => 'bestbuy'],\n ['name' => \"Somebody Else's Guy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/somebody-elses-guy-cd/2288642.p?id=1436426&skuId=2288642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288642.jpg\"}', 'upc' => '068381700124', 'provider' => 'bestbuy'],\n ['name' => \"Hip Hop Be Bop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hip-hop-be-bop-cd/2288679.p?id=2733065&skuId=2288679&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288679', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288679.jpg\"}', 'upc' => '068381708823', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] [Unidisc] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-unidisc-cd/2288697.p?id=1437927&skuId=2288697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288697_sa.jpg\"}', 'upc' => '068381708922', 'provider' => 'bestbuy'],\n ['name' => \"12\\\" Collection (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-collection-import-canada-cd/2288722.p?id=1522713&skuId=2288722&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288722', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288722.jpg\"}', 'upc' => '068381709127', 'provider' => 'bestbuy'],\n ['name' => \"Struck Gold - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/struck-gold-cd/2288731.p?id=3245459&skuId=2288731&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288731', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288731.jpg\"}', 'upc' => '068381715722', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2288768.p?id=2151670&skuId=2288768&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288768', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288768.jpg\"}', 'upc' => '068381715821', 'provider' => 'bestbuy'],\n ['name' => \"Venus [Import] [De Lite] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/venus-import-de-lite-cd/2288795.p?id=1436410&skuId=2288795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288795_sa.jpg\"}', 'upc' => '068381715920', 'provider' => 'bestbuy'],\n ['name' => \"I Like What I Like [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-like-what-i-like-import-cd/2288811.p?id=1437923&skuId=2288811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288811.jpg\"}', 'upc' => '068381716026', 'provider' => 'bestbuy'],\n ['name' => \"For You, For Only You [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/for-you-for-only-you-import-cd/2288820.p?id=1504009&skuId=2288820&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288820', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288820.jpg\"}', 'upc' => '068381716125', 'provider' => 'bestbuy'],\n ['name' => \"Rare Preludes, Vol. 2 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rare-preludes-vol-2-import-cd-various/2288848.p?id=1437960&skuId=2288848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288848.jpg\"}', 'upc' => '068381716224', 'provider' => 'bestbuy'],\n ['name' => \"Seventh Heaven [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seventh-heaven-import-cd/2288875.p?id=1437942&skuId=2288875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288875.jpg\"}', 'upc' => '068381709721', 'provider' => 'bestbuy'],\n ['name' => \"Soul on Your Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-on-your-side-cd/2288919.p?id=3289501&skuId=2288919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288919.jpg\"}', 'upc' => '068381709929', 'provider' => 'bestbuy'],\n ['name' => \"I'll Do Anything for You [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ill-do-anything-for-you-import-cd/2288928.p?id=1437567&skuId=2288928&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288928', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288928.jpg\"}', 'upc' => '068381700322', 'provider' => 'bestbuy'],\n ['name' => \"Teen Beat, Vol. 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teen-beat-vol-2-cd-various/2288964.p?id=1452376&skuId=2288964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2288964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2288\\/2288964_sa.jpg\"}', 'upc' => '029667152228', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] [Unidisc] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-unidisc-cd/2289017.p?id=1440896&skuId=2289017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289017.jpg\"}', 'upc' => '068381700728', 'provider' => 'bestbuy'],\n ['name' => \"Precious Stone: In the Studio with Sly Stone... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/precious-stone-in-the-studio-with-sly-stone-cd/2289026.p?id=1476953&skuId=2289026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289026_sa.jpg\"}', 'upc' => '029667153928', 'provider' => 'bestbuy'],\n ['name' => \"Collection (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/collection-import-canada-cd/2289053.p?id=1436368&skuId=2289053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289053_sa.jpg\"}', 'upc' => '068381700827', 'provider' => 'bestbuy'],\n ['name' => \"Mainly Rock N Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mainly-rock-n-roll-cd/2289160.p?id=1849026&skuId=2289160&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289160', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289160_sa.jpg\"}', 'upc' => '029667293426', 'provider' => 'bestbuy'],\n ['name' => \"Shake Some Action - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shake-some-action-cd/2289197.p?id=82368&skuId=2289197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289197_sa.jpg\"}', 'upc' => '752211101723', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-canada-cd/2289295.p?id=2151681&skuId=2289295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289295_sa.jpg\"}', 'upc' => '068381701121', 'provider' => 'bestbuy'],\n ['name' => \"South of Lafayette - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-of-lafayette-cd/2289311.p?id=1543637&skuId=2289311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289311.jpg\"}', 'upc' => '789456434323', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-cd/2289428.p?id=1436422&skuId=2289428&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289428', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289428.jpg\"}', 'upc' => '068381701527', 'provider' => 'bestbuy'],\n ['name' => \"You'll Never Know [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/youll-never-know-import-cd/2289437.p?id=1436388&skuId=2289437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289437.jpg\"}', 'upc' => '068381701626', 'provider' => 'bestbuy'],\n ['name' => \"Red Zone - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/red-zone-cd/2289516.p?id=127754&skuId=2289516&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289516', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289516_sa.jpg\"}', 'upc' => '747985010326', 'provider' => 'bestbuy'],\n ['name' => \"Round Trip - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/round-trip-cd/2289552.p?id=69367&skuId=2289552&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289552', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289552_sa.jpg\"}', 'upc' => '747985010425', 'provider' => 'bestbuy'],\n ['name' => \"Must Be the Music (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/must-be-the-music-import-canada-cd/2289589.p?id=1436330&skuId=2289589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289589_sa.jpg\"}', 'upc' => '068381702029', 'provider' => 'bestbuy'],\n ['name' => \"New Outlook - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/new-outlook-cd/2289598.p?id=2151896&skuId=2289598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289598_sa.jpg\"}', 'upc' => '747985010623', 'provider' => 'bestbuy'],\n ['name' => \"Moscow - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moscow-cd/2289623.p?id=155098&skuId=2289623&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289623', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289623_sa.jpg\"}', 'upc' => '747985010722', 'provider' => 'bestbuy'],\n ['name' => \"Raincheck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/raincheck-cd/2289669.p?id=64533&skuId=2289669&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289669', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289669_sa.jpg\"}', 'upc' => '747985010821', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-cd/2289696.p?id=1438269&skuId=2289696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289696_sa.jpg\"}', 'upc' => '068381717924', 'provider' => 'bestbuy'],\n ['name' => \"The Main Attraction [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-main-attraction-import-cd/2289712.p?id=1519170&skuId=2289712&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289712', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289712.jpg\"}', 'upc' => '068381718020', 'provider' => 'bestbuy'],\n ['name' => \"Your Love [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/your-love-import-cd/2289721.p?id=1437956&skuId=2289721&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289721', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289721_sa.jpg\"}', 'upc' => '068381718129', 'provider' => 'bestbuy'],\n ['name' => \"Lime II [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lime-ii-import-cd/2289749.p?id=1436413&skuId=2289749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289749_sa.jpg\"}', 'upc' => '068381718228', 'provider' => 'bestbuy'],\n ['name' => \"Lime 3 [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lime-3-import-cd/2289785.p?id=1437930&skuId=2289785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289785.jpg\"}', 'upc' => '068381718327', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] [Unidisc] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-unidisc-cd/2289794.p?id=1516913&skuId=2289794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289794_sa.jpg\"}', 'upc' => '068381716927', 'provider' => 'bestbuy'],\n ['name' => \"Keep on Bumpin' & Masterplan (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keep-on-bumpin-masterplan-import-canada-cd/2289801.p?id=1496058&skuId=2289801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289801.jpg\"}', 'upc' => '068381710024', 'provider' => 'bestbuy'],\n ['name' => \"Sensual Sensation [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sensual-sensation-import-cd/2289810.p?id=1440897&skuId=2289810&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289810', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289810.jpg\"}', 'upc' => '068381718426', 'provider' => 'bestbuy'],\n ['name' => \"A Little Pleasure - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-little-pleasure-cd/2289847.p?id=154505&skuId=2289847&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289847', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289847_sa.jpg\"}', 'upc' => '747985010920', 'provider' => 'bestbuy'],\n ['name' => \"Unexpected Lovers [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unexpected-lovers-import-cd/2289856.p?id=1440893&skuId=2289856&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289856', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289856_sa.jpg\"}', 'upc' => '068381718525', 'provider' => 'bestbuy'],\n ['name' => \"Find A Friend - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/find-a-friend-cd/2289874.p?id=2280264&skuId=2289874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289874.jpg\"}', 'upc' => '068381710123', 'provider' => 'bestbuy'],\n ['name' => \"Take the Love [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/take-the-love-import-cd/2289892.p?id=1437154&skuId=2289892&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289892', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289892.jpg\"}', 'upc' => '068381718624', 'provider' => 'bestbuy'],\n ['name' => \"Just Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-jazz-cd/2289909.p?id=157086&skuId=2289909&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289909', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289909_sa.jpg\"}', 'upc' => '747985011026', 'provider' => 'bestbuy'],\n ['name' => \"Kilowatt [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kilowatt-import-cd/2289927.p?id=1518420&skuId=2289927&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289927', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289927.jpg\"}', 'upc' => '068381710222', 'provider' => 'bestbuy'],\n ['name' => \"Music Of Kenny Dorham - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-kenny-dorham-cd/2289936.p?id=2015478&skuId=2289936&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289936', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289936_sa.jpg\"}', 'upc' => '747985011125', 'provider' => 'bestbuy'],\n ['name' => \"Burn Me Up [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/burn-me-up-import-cd/2289963.p?id=1438523&skuId=2289963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289963.jpg\"}', 'upc' => '068381710321', 'provider' => 'bestbuy'],\n ['name' => \"Brand New Day [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brand-new-day-import-cd/2289990.p?id=1450008&skuId=2289990&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2289990', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2289\\/2289990.jpg\"}', 'upc' => '068381718723', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-cd/2290023.p?id=1436439&skuId=2290023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290023.jpg\"}', 'upc' => '068381710420', 'provider' => 'bestbuy'],\n ['name' => \"Caroline [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/caroline-import-cd/2290032.p?id=1437170&skuId=2290032&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290032', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290032_sa.jpg\"}', 'upc' => '068381718822', 'provider' => 'bestbuy'],\n ['name' => \"12 Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/12-stories-cd/2290038.p?id=3335075&skuId=2290038&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290038', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290038_sa.jpg\"}', 'upc' => '093624930549', 'provider' => 'bestbuy'],\n ['name' => \"Conjuration: Fat Tuesday's Session - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/conjuration-fat-tuesdays-session-cd/2290041.p?id=63525&skuId=2290041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290041_sa.jpg\"}', 'upc' => '747985011323', 'provider' => 'bestbuy'],\n ['name' => \"Hyperview - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hyperview-cd/2290056.p?id=3338813&skuId=2290056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290056_sa.jpg\"}', 'upc' => '045778738328', 'provider' => 'bestbuy'],\n ['name' => \"Paddington [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/paddington-original-motion-picture-soundtrack-cd-original-soundtrack/2290065.p?id=3330834&skuId=2290065&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290065', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290065_sa.jpg\"}', 'upc' => '600753576601', 'provider' => 'bestbuy'],\n ['name' => \"The Soundtrack of My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-soundtrack-of-my-life-cd/2290083.p?id=3330840&skuId=2290083&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290083', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290083_sa.jpg\"}', 'upc' => '602547104465', 'provider' => 'bestbuy'],\n ['name' => \"Smooth Sailing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smooth-sailing-cd/2290096.p?id=2151372&skuId=2290096&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290096', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290096_sa.jpg\"}', 'upc' => '747985011422', 'provider' => 'bestbuy'],\n ['name' => \"Only One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/only-one-cd/2290121.p?id=2015477&skuId=2290121&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290121', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290121_sa.jpg\"}', 'upc' => '747985011521', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2290158.p?id=1434139&skuId=2290158&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290158', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290158_sa.jpg\"}', 'upc' => '068381710628', 'provider' => 'bestbuy'],\n ['name' => \"Ridin High - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ridin-high-cd/2290194.p?id=2015496&skuId=2290194&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290194', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290194_sa.jpg\"}', 'upc' => '747985011620', 'provider' => 'bestbuy'],\n ['name' => \"Can't Live Without Your Love:... (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cant-live-without-your-love-import-canada-cd/2290247.p?id=1443003&skuId=2290247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290247_sa.jpg\"}', 'upc' => '068381718921', 'provider' => 'bestbuy'],\n ['name' => \"Outrageous [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outrageous-import-cd/2290265.p?id=1450006&skuId=2290265&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290265', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290265_sa.jpg\"}', 'upc' => '068381717320', 'provider' => 'bestbuy'],\n ['name' => \"CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cd/2290274.p?id=3567757&skuId=2290274&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290274', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290274_sa.jpg\"}', 'upc' => '747985011828', 'provider' => 'bestbuy'],\n ['name' => \"Profile - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/profile-cd/2290327.p?id=70086&skuId=2290327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290327_sa.jpg\"}', 'upc' => '747985011927', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Tavares Revisited (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-tavares-revisited-import-canada-cd/2290354.p?id=1450453&skuId=2290354&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290354', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290354_sa.jpg\"}', 'upc' => '068381719225', 'provider' => 'bestbuy'],\n ['name' => \"Steel Diver - Nintendo 3DS\", 'description_short' => \"Plunge into the deep for a truly immersive submarine adventure\", 'description_long' => \"Plunge into the deep for a truly immersive submarine adventure\", 'price' => 19.99, 'sale_price' => 4.99, 'url' => 'http://www.bestbuy.com/site/steel-diver-nintendo-3ds/2290368.p?id=1218318235771&skuId=2290368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290368_sa.jpg\"}', 'upc' => '045496741426', 'provider' => 'bestbuy'],\n ['name' => \"Radio Waves - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/radio-waves-cd/2290381.p?id=70670&skuId=2290381&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290381', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290381_sa.jpg\"}', 'upc' => '747985012023', 'provider' => 'bestbuy'],\n ['name' => \"Portrait (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/portrait-import-canada-cd/2290416.p?id=1436378&skuId=2290416&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290416', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290416_sa.jpg\"}', 'upc' => '068381719324', 'provider' => 'bestbuy'],\n ['name' => \"Moment - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moment-cd/2290434.p?id=2151802&skuId=2290434&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290434', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290434_sa.jpg\"}', 'upc' => '747985012122', 'provider' => 'bestbuy'],\n ['name' => \"Andy Griffith Show: 16 Episodes (2 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/andy-griffith-show-16-episodes-2-disc-dvd/2290437.p?id=2171556&skuId=2290437&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290437', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290437.jpg\"}', 'upc' => '011891514422', 'provider' => 'bestbuy'],\n ['name' => \"John Wayne Collection [5 Discs] (Boxed Set) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-wayne-collection-5-discs-boxed-set-dvd/2290446.p?id=1473759&skuId=2290446&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290446', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290446_sa.jpg\"}', 'upc' => '011891951005', 'provider' => 'bestbuy'],\n ['name' => \"Monterey Pop - Blu-ray Disc\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 34.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/monterey-pop-blu-ray-disc/2290455.p?id=23327&skuId=2290455&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290455', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290455_sa.jpg\"}', 'upc' => '715515048316', 'provider' => 'bestbuy'],\n ['name' => \"Double Dutch Bus (Import) [Unidisc] (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/double-dutch-bus-import-unidisc-canada-cd/2290470.p?id=1436377&skuId=2290470&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290470', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290470.jpg\"}', 'upc' => '068381719423', 'provider' => 'bestbuy'],\n ['name' => \"Let's Cool One - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-cool-one-cd/2290489.p?id=64219&skuId=2290489&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290489', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290489.jpg\"}', 'upc' => '747985012221', 'provider' => 'bestbuy'],\n ['name' => \"Breakin' Out (Import) [Bonus Tracks] (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breakin-out-import-bonus-tracks-canada-cd/2290540.p?id=1437950&skuId=2290540&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290540', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290540.jpg\"}', 'upc' => '068381719522', 'provider' => 'bestbuy'],\n ['name' => \"Mighty Body [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mighty-body-import-cd/2290595.p?id=1504007&skuId=2290595&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290595', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290595.jpg\"}', 'upc' => '068381719720', 'provider' => 'bestbuy'],\n ['name' => \"It's Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-time-cd/2290639.p?id=64531&skuId=2290639&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290639', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290639.jpg\"}', 'upc' => '747985012320', 'provider' => 'bestbuy'],\n ['name' => \"Finders Keepers [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/finders-keepers-import-cd/2290648.p?id=1437922&skuId=2290648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290648.jpg\"}', 'upc' => '068381719829', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil-First Set - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-first-set-cd/2290675.p?id=64535&skuId=2290675&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290675', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290675_sa.jpg\"}', 'upc' => '747985012528', 'provider' => 'bestbuy'],\n ['name' => \"You Are My Desire (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-are-my-desire-import-canada-cd/2290700.p?id=1437939&skuId=2290700&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290700', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290700.jpg\"}', 'upc' => '068381720627', 'provider' => 'bestbuy'],\n ['name' => \"Standards - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/standards-cd/2290737.p?id=70671&skuId=2290737&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290737', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290737_sa.jpg\"}', 'upc' => '747985012627', 'provider' => 'bestbuy'],\n ['name' => \"3 Way Play - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-way-play-cd/2290808.p?id=68136&skuId=2290808&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290808', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290808_sa.jpg\"}', 'upc' => '747985012726', 'provider' => 'bestbuy'],\n ['name' => \"East Coast Stroll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/east-coast-stroll-cd/2290871.p?id=64218&skuId=2290871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290871_sa.jpg\"}', 'upc' => '747985012825', 'provider' => 'bestbuy'],\n ['name' => \"No Parking on the Dance Floor (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-parking-on-the-dance-floor-import-canada-cd/2290960.p?id=1519052&skuId=2290960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290960.jpg\"}', 'upc' => '068381711724', 'provider' => 'bestbuy'],\n ['name' => \"Yes I'm Ready (Import) [1981] (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yes-im-ready-import-1981-canada-cd/2290979.p?id=1438262&skuId=2290979&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290979', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290979.jpg\"}', 'upc' => '068381721020', 'provider' => 'bestbuy'],\n ['name' => \"A Special Rapport - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-special-rapport-cd/2290988.p?id=112073&skuId=2290988&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2290988', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2290\\/2290988_sa.jpg\"}', 'upc' => '747985012924', 'provider' => 'bestbuy'],\n ['name' => \"Withings - Activité Pop Activity Tracker Watch - Gray Silicone\", 'description_short' => \"Measures walking and running steps taken, distance traveled, calories burned, sleep and more; selectable daily goals; smart touch detection; water-resistant up to 150&#039;; Bluetooth interface\", 'description_long' => \"Measures walking and running steps taken, distance traveled, calories burned, sleep and more; selectable daily goals; smart touch detection; water-resistant up to 150&#039;; Bluetooth interface\", 'price' => 149.99, 'sale_price' => 124.99, 'url' => 'http://www.bestbuy.com/site/withings-activite-pop-activity-tracker-watch-gray-silicone/2291064.p?id=1219535314259&skuId=2291064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291064_sa.jpg\"}', 'upc' => '3700546700774', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 13 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-13-import-cd-various/2291086.p?id=1447528&skuId=2291086&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291086', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291086_sa.jpg\"}', 'upc' => '068381721327', 'provider' => 'bestbuy'],\n ['name' => \"Funk U Right on Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/funk-u-right-on-up-cd/2291139.p?id=257613&skuId=2291139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291139_sa.jpg\"}', 'upc' => '794756200028', 'provider' => 'bestbuy'],\n ['name' => \"Vol. 14-Star Funk - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vol-14-star-funk-cd-various/2291148.p?id=3165217&skuId=2291148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291148.jpg\"}', 'upc' => '068381721426', 'provider' => 'bestbuy'],\n ['name' => \"Vol. 1-Solar System - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/vol-1-solar-system-cd-various/2291184.p?id=3165219&skuId=2291184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291184.jpg\"}', 'upc' => '068381712028', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 16 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-16-import-cd-various/2291228.p?id=1518415&skuId=2291228&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291228', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291228.jpg\"}', 'upc' => '068381721624', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 17 [Import] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-17-import-cd-various/2291273.p?id=1438526&skuId=2291273&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291273', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291273.jpg\"}', 'upc' => '068381721723', 'provider' => 'bestbuy'],\n ['name' => \"Star Funk, Vol. 12 (Import) (Canada) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-funk-vol-12-import-canada-cd-various/2291362.p?id=1437951&skuId=2291362&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291362', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291362_sa.jpg\"}', 'upc' => '068381712325', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2291460.p?id=1436014&skuId=2291460&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291460', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291460_sa.jpg\"}', 'upc' => '068381800428', 'provider' => 'bestbuy'],\n ['name' => \"The Best of D Train (Import) [Unidisc] (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-d-train-import-unidisc-canada-cd/2291497.p?id=1436423&skuId=2291497&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291497', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291497_sa.jpg\"}', 'upc' => '068381800626', 'provider' => 'bestbuy'],\n ['name' => \"Beat the Street: The Very Best... [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beat-the-street-the-very-best-import-cd/2291576.p?id=1484268&skuId=2291576&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291576', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291576_sa.jpg\"}', 'upc' => '068381800923', 'provider' => 'bestbuy'],\n ['name' => \"Tropical Dance Classics at Its Best - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tropical-dance-classics-at-its-best-cd-various/2291996.p?id=1580660&skuId=2291996&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2291996', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2291\\/2291996_sa.jpg\"}', 'upc' => '068381802026', 'provider' => 'bestbuy'],\n ['name' => \"The Best of Voyage [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-voyage-import-cd/2292021.p?id=1437959&skuId=2292021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292021.jpg\"}', 'upc' => '068381802125', 'provider' => 'bestbuy'],\n ['name' => \"Ultimate Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultimate-collection-cd/2292067.p?id=1436018&skuId=2292067&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292067.jpg\"}', 'upc' => '068381802323', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-import-canada-cd/2292129.p?id=1440898&skuId=2292129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292129_sa.jpg\"}', 'upc' => '068381802521', 'provider' => 'bestbuy'],\n ['name' => \"The President's Book of Secrets (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-presidents-book-of-secrets-dvd/2292471.p?id=2173887&skuId=2292471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292471_sa.jpg\"}', 'upc' => '733961240160', 'provider' => 'bestbuy'],\n ['name' => \"Man vs. Wild: Season 5 [2 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-vs-wild-season-5-2-discs-dvd/2292499.p?id=2189185&skuId=2292499&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292499', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292499_sa.jpg\"}', 'upc' => '018713580412', 'provider' => 'bestbuy'],\n ['name' => \"Sacrifice (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacrifice-blu-ray-disc/2292505.p?id=2186316&skuId=2292505&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292505', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292505_sa.jpg\"}', 'upc' => '687797133960', 'provider' => 'bestbuy'],\n ['name' => \"Sacrifice (DVD) (Digital Copy)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sacrifice-dvd-digital-copy/2292523.p?id=2186316&skuId=2292523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292523_sa.jpg\"}', 'upc' => '687797133991', 'provider' => 'bestbuy'],\n ['name' => \"Full Time (Import) (Canada) - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/full-time-import-canada-cd-various/2292548.p?id=1450004&skuId=2292548&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292548', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292548.jpg\"}', 'upc' => '068381803429', 'provider' => 'bestbuy'],\n ['name' => \"UNIVERSE: COMPLETE SERIES (16PC) (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 104.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/universe-complete-series-16pc-blu-ray-disc/2292578.p?id=2186834&skuId=2292578&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292578', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292578_sa.jpg\"}', 'upc' => '733961242997', 'provider' => 'bestbuy'],\n ['name' => \"The Collection (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-collection-import-canada-cd/2292584.p?id=1436364&skuId=2292584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292584_sa.jpg\"}', 'upc' => '068381803528', 'provider' => 'bestbuy'],\n ['name' => \"Stan Lee'S Superhumans (3 Disc) (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stan-lees-superhumans-3-disc-dvd/2292596.p?id=2168027&skuId=2292596&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292596', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292596.jpg\"}', 'upc' => '733961239782', 'provider' => 'bestbuy'],\n ['name' => \"BREED & DAY OF THE DEAD / (WS AC3 DOL) (Blu-ray Disc) (2 Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/breed-day-of-the-dead-ws-ac3-dol-blu-ray-disc-2-disc/2292602.p?id=2186321&skuId=2292602&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292602', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292602_sa.jpg\"}', 'upc' => '634991358163', 'provider' => 'bestbuy'],\n ['name' => \"Dance Party (Import) (Canada) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dance-party-import-canada-cd/2292619.p?id=1436403&skuId=2292619&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2292619', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2292\\/2292619_sa.jpg\"}', 'upc' => '068381803627', 'provider' => 'bestbuy'],\n ['name' => \"Duck Dynasty: I'm Dreaming of a Redneck Christmas (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duck-dynasty-im-dreaming-of-a-redneck-christmas-dvd/2293008.p?id=2752846&skuId=2293008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/en_US\\/images\\/musicmoviegame\\/\\/pdpimages\\/2293008.jpg\"}', 'upc' => '031398179139', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - 6-1/2\\\" 2-Way Component Speaker System with Multi-Layer Hybrid Fiber Cone (Pair) - Black\", 'description_short' => \"Handles up to 330W peak power (110W RMS); Multi-Layer Hybrid Fiber Cone ; 1&quot; Ring Radiator Tweeter\", 'description_long' => \"Handles up to 330W peak power (110W RMS); Multi-Layer Hybrid Fiber Cone ; 1&quot; Ring Radiator Tweeter\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-6-1-2-2-way-component-speaker-system-with-multi-layer-hybrid-fiber-cone-pair-black/2293046.p?id=1218318856003&skuId=2293046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293046_sa.jpg\"}', 'upc' => '793276011039', 'provider' => 'bestbuy'],\n ['name' => \"Lost Lady - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lost-lady-cd/2293299.p?id=1465687&skuId=2293299&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293299', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293299.jpg\"}', 'upc' => '027312126327', 'provider' => 'bestbuy'],\n ['name' => \"You Were on My Mind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/you-were-on-my-mind-cd/2293324.p?id=1397957&skuId=2293324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293324.jpg\"}', 'upc' => '772532114028', 'provider' => 'bestbuy'],\n ['name' => \"From A Jack To A King - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/from-a-jack-to-a-king-cd/2293459.p?id=1418580&skuId=2293459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293459_sa.jpg\"}', 'upc' => '790051154967', 'provider' => 'bestbuy'],\n ['name' => \"American Impressionist Songwriters - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/american-impressionist-songwriters-various-cd/2293510.p?id=129530&skuId=2293510&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293510', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293510_sa.jpg\"}', 'upc' => '753114000625', 'provider' => 'bestbuy'],\n ['name' => \"The Memphis Days: Definitive Edition, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-memphis-days-definitive-edition-vol-2-cd/2293574.p?id=1397320&skuId=2293574&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293574', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293574_sa.jpg\"}', 'upc' => '790051155001', 'provider' => 'bestbuy'],\n ['name' => \"Eager Beaver Boy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eager-beaver-boy-cd/2293618.p?id=1524750&skuId=2293618&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293618', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293618_sa.jpg\"}', 'upc' => '790051155018', 'provider' => 'bestbuy'],\n ['name' => \"Singing Ranger 3 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 189.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-ranger-3-box-cd/2293672.p?id=1417368&skuId=2293672&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293672', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293672_sa.jpg\"}', 'upc' => '790051155025', 'provider' => 'bestbuy'],\n ['name' => \"Encore!/Mr. Everything - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 21.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/encore-mr-everything-cd/2293734.p?id=1484250&skuId=2293734&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2293734', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2293\\/2293734_sa.jpg\"}', 'upc' => '029667211024', 'provider' => 'bestbuy'],\n ['name' => \"One Summer Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-summer-night-cd/2294029.p?id=1419942&skuId=2294029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294029_sa.jpg\"}', 'upc' => '790051155032', 'provider' => 'bestbuy'],\n ['name' => \"Sock It To Me Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sock-it-to-me-baby-cd/2294047.p?id=1419961&skuId=2294047&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294047', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294047_sa.jpg\"}', 'upc' => '790051155049', 'provider' => 'bestbuy'],\n ['name' => \"Boogie My Blues Away - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 45.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boogie-my-blues-away-cd/2294074.p?id=1395450&skuId=2294074&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294074', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294074.jpg\"}', 'upc' => '790051155056', 'provider' => 'bestbuy'],\n ['name' => \"Decca Years & More (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/decca-years-more-box-cd/2294109.p?id=1419979&skuId=2294109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294109.jpg\"}', 'upc' => '790051155063', 'provider' => 'bestbuy'],\n ['name' => \"Montana Slim: Dynamite Trail Decca Years 1954-58 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montana-slim-dynamite-trail-decca-years-1954-58-cd/2294127.p?id=1419924&skuId=2294127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294127.jpg\"}', 'upc' => '790051155070', 'provider' => 'bestbuy'],\n ['name' => \"Classic Recordings 1956-59 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-recordings-1956-59-cd/2294163.p?id=1417365&skuId=2294163&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294163', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294163.jpg\"}', 'upc' => '790051155148', 'provider' => 'bestbuy'],\n ['name' => \"Memphis Days - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memphis-days-cd/2294181.p?id=1448249&skuId=2294181&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294181', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294181_sa.jpg\"}', 'upc' => '790051155155', 'provider' => 'bestbuy'],\n ['name' => \"Ducktail - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ducktail-cd/2294207.p?id=1474160&skuId=2294207&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294207', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294207_sa.jpg\"}', 'upc' => '790051155162', 'provider' => 'bestbuy'],\n ['name' => \"Complete Phoenix Concerts - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-phoenix-concerts-cd/2294225.p?id=1524797&skuId=2294225&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294225', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294225_sa.jpg\"}', 'upc' => '790051155186', 'provider' => 'bestbuy'],\n ['name' => \"Cannons In The Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cannons-in-the-rain-cd/2294243.p?id=1524796&skuId=2294243&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294243', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294243_sa.jpg\"}', 'upc' => '790051155193', 'provider' => 'bestbuy'],\n ['name' => \"At Town Hall - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-town-hall-cd/2294261.p?id=1421274&skuId=2294261&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294261', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294261_sa.jpg\"}', 'upc' => '790051155209', 'provider' => 'bestbuy'],\n ['name' => \"Wondering Boy 1951-58 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 119.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wondering-boy-1951-58-box-cd/2294314.p?id=1421278&skuId=2294314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294314_sa.jpg\"}', 'upc' => '4000127155221', 'provider' => 'bestbuy'],\n ['name' => \"Just Walkin In The Rain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-walkin-in-the-rain-cd/2294332.p?id=1427476&skuId=2294332&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294332', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294332_sa.jpg\"}', 'upc' => '790051155230', 'provider' => 'bestbuy'],\n ['name' => \"Be Bop Boy W/ Walker Horton & Mose Vinson - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/be-bop-boy-w-walker-horton-mose-vinson-cd/2294350.p?id=1425625&skuId=2294350&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294350', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294350_sa.jpg\"}', 'upc' => '790051155247', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass 1959-69 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 91.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-1959-69-box-cd/2294403.p?id=1409186&skuId=2294403&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294403', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294403.jpg\"}', 'upc' => '790051155292', 'provider' => 'bestbuy'],\n ['name' => \"Spellbound (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 52.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/spellbound-box-cd/2294421.p?id=1421285&skuId=2294421&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294421_sa.jpg\"}', 'upc' => '790051155308', 'provider' => 'bestbuy'],\n ['name' => \"Dark Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dark-moon-cd/2294467.p?id=1524860&skuId=2294467&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294467', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294467.jpg\"}', 'upc' => '4000127155313', 'provider' => 'bestbuy'],\n ['name' => \"Let'S Go Jivin To Rock & Roll - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lets-go-jivin-to-rock-roll-cd-various/2294494.p?id=1418577&skuId=2294494&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294494', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294494.jpg\"}', 'upc' => '4000127155337', 'provider' => 'bestbuy'],\n ['name' => \"Live Action - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-action-cd-various/2294519.p?id=3547343&skuId=2294519&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294519', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '082333166141', 'provider' => 'bestbuy'],\n ['name' => \"Classic Scott: Way I Walk (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-scott-way-i-walk-box-cd/2294528.p?id=1427495&skuId=2294528&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294528', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294528.jpg\"}', 'upc' => '790051155346', 'provider' => 'bestbuy'],\n ['name' => \"Gonna Shake This Shack Tonight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gonna-shake-this-shack-tonight-cd/2294555.p?id=1425603&skuId=2294555&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294555', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294555_sa.jpg\"}', 'upc' => '790051155353', 'provider' => 'bestbuy'],\n ['name' => \"Hard Working Man - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hard-working-man-cd/2294617.p?id=3165218&skuId=2294617&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294617', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '082333155527', 'provider' => 'bestbuy'],\n ['name' => \"Singing Brakeman (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-brakeman-box-cd/2294635.p?id=1427494&skuId=2294635&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294635', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294635_sa.jpg\"}', 'upc' => '790051155407', 'provider' => 'bestbuy'],\n ['name' => \"On The Trail Again - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-trail-again-cd/2294733.p?id=1425600&skuId=2294733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294733_sa.jpg\"}', 'upc' => '790051156329', 'provider' => 'bestbuy'],\n ['name' => \"Road To Torreon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/road-to-torreon-cd/2294742.p?id=1524803&skuId=2294742&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294742', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294742_sa.jpg\"}', 'upc' => '4000127156334', 'provider' => 'bestbuy'],\n ['name' => \"High Noon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/high-noon-cd/2294760.p?id=1427489&skuId=2294760&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294760', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294760_sa.jpg\"}', 'upc' => '790051156343', 'provider' => 'bestbuy'],\n ['name' => \"1952-55 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1952-55-cd/2294788.p?id=1421295&skuId=2294788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294788_sa.jpg\"}', 'upc' => '790051156350', 'provider' => 'bestbuy'],\n ['name' => \"Guitar Rags & A Too Far Past (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guitar-rags-a-too-far-past-box-cd/2294797.p?id=1418553&skuId=2294797&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294797', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294797_sa.jpg\"}', 'upc' => '790051156374', 'provider' => 'bestbuy'],\n ['name' => \"Eartha-quake - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 191.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/eartha-quake-cd/2294804.p?id=3356113&skuId=2294804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294804_sa.jpg\"}', 'upc' => '790051156398', 'provider' => 'bestbuy'],\n ['name' => \"Out Of New Orleans (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-new-orleans-box-cd/2294813.p?id=1419954&skuId=2294813&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294813_sa.jpg\"}', 'upc' => '790051155414', 'provider' => 'bestbuy'],\n ['name' => \"Onie'S Bop - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/onies-bop-cd/2294822.p?id=1524813&skuId=2294822&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294822', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294822_sa.jpg\"}', 'upc' => '790051155421', 'provider' => 'bestbuy'],\n ['name' => \"Rockin Rollin Johnny Horton - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-rollin-johnny-horton-cd/2294831.p?id=1421289&skuId=2294831&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294831', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294831_sa.jpg\"}', 'upc' => '790051155438', 'provider' => 'bestbuy'],\n ['name' => \"Great Shakin Fever - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-shakin-fever-cd/2294840.p?id=1419909&skuId=2294840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294840.jpg\"}', 'upc' => '4000127155450', 'provider' => 'bestbuy'],\n ['name' => \"Wagon West (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wagon-west-box-cd/2294859.p?id=1417369&skuId=2294859&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294859', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294859.jpg\"}', 'upc' => '790051156404', 'provider' => 'bestbuy'],\n ['name' => \"My Heart Is An Open Book - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-heart-is-an-open-book-cd/2294868.p?id=1419953&skuId=2294868&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294868', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294868_sa.jpg\"}', 'upc' => '790051155469', 'provider' => 'bestbuy'],\n ['name' => \"Wild Sound Of New Orleans - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wild-sound-of-new-orleans-cd/2294877.p?id=1418551&skuId=2294877&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294877', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294877.jpg\"}', 'upc' => '790051156411', 'provider' => 'bestbuy'],\n ['name' => \"Wiedersehn Ist Wunderschon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wiedersehn-ist-wunderschon-cd/2294895.p?id=2275537&skuId=2294895&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294895', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294895_sa.jpg\"}', 'upc' => '790051156442', 'provider' => 'bestbuy'],\n ['name' => \"Up Through the Years, 1955-1957 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-through-the-years-1955-1957-cd/2294920.p?id=1400210&skuId=2294920&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294920', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294920_sa.jpg\"}', 'upc' => '790051152475', 'provider' => 'bestbuy'],\n ['name' => \"Worryin Kind - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/worryin-kind-cd/2294939.p?id=1418581&skuId=2294939&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294939', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294939.jpg\"}', 'upc' => '790051156435', 'provider' => 'bestbuy'],\n ['name' => \"Some Think He Might Be King Elvis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/some-think-he-might-be-king-elvis-cd/2294948.p?id=1427464&skuId=2294948&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294948', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294948.jpg\"}', 'upc' => '790051155483', 'provider' => 'bestbuy'],\n ['name' => \"Fool - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fool-cd/2294966.p?id=1524754&skuId=2294966&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294966', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294966_sa.jpg\"}', 'upc' => '790051155490', 'provider' => 'bestbuy'],\n ['name' => \"Auctioneer - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/auctioneer-cd/2294975.p?id=1421272&skuId=2294975&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2294975', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2294\\/2294975_sa.jpg\"}', 'upc' => '790051156473', 'provider' => 'bestbuy'],\n ['name' => \"I Got A Rocket In My Pocket - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-got-a-rocket-in-my-pocket-cd/2295000.p?id=1425622&skuId=2295000&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295000', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295000.jpg\"}', 'upc' => '790051156503', 'provider' => 'bestbuy'],\n ['name' => \"Rca Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rca-sessions-cd/2295028.p?id=1405896&skuId=2295028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295028_sa.jpg\"}', 'upc' => '790051154073', 'provider' => 'bestbuy'],\n ['name' => \"Hank Garland & Sugar Footers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hank-garland-sugar-footers-cd/2295037.p?id=1419972&skuId=2295037&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295037.jpg\"}', 'upc' => '4000127155511', 'provider' => 'bestbuy'],\n ['name' => \"Up Through The Years 1956-63 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/up-through-the-years-1956-63-cd/2295046.p?id=1527011&skuId=2295046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295046_sa.jpg\"}', 'upc' => '4000127154088', 'provider' => 'bestbuy'],\n ['name' => \"Heroes & Cowboys (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 74.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heroes-cowboys-box-cd/2295055.p?id=1417376&skuId=2295055&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295055', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295055_sa.jpg\"}', 'upc' => '790051155520', 'provider' => 'bestbuy'],\n ['name' => \"Making Believe (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/making-believe-box-cd/2295064.p?id=1586444&skuId=2295064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295064_sa.jpg\"}', 'upc' => '790051156510', 'provider' => 'bestbuy'],\n ['name' => \"That Scratchy Guitar From Memphis - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/that-scratchy-guitar-from-memphis-cd/2295073.p?id=1524810&skuId=2295073&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295073.jpg\"}', 'upc' => '790051154158', 'provider' => 'bestbuy'],\n ['name' => \"Rock With A Sock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-with-a-sock-cd/2295135.p?id=1419915&skuId=2295135&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295135', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295135_sa.jpg\"}', 'upc' => '790051156541', 'provider' => 'bestbuy'],\n ['name' => \"Let The Good Times Roll: Decca 1938-54 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-the-good-times-roll-decca-1938-54-box-cd/2295199.p?id=1567901&skuId=2295199&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295199', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295199.jpg\"}', 'upc' => '790051155575', 'provider' => 'bestbuy'],\n ['name' => \"Cross The Brazos At Waco (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cross-the-brazos-at-waco-box-cd/2295206.p?id=1419949&skuId=2295206&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295206', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295206.jpg\"}', 'upc' => '790051156572', 'provider' => 'bestbuy'],\n ['name' => \"Classic (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-box-cd/2295233.p?id=1425612&skuId=2295233&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295233', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295233.jpg\"}', 'upc' => '790051154202', 'provider' => 'bestbuy'],\n ['name' => \"I Witness Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-witness-life-cd/2295242.p?id=1421282&skuId=2295242&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295242', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295242_sa.jpg\"}', 'upc' => '790051156589', 'provider' => 'bestbuy'],\n ['name' => \"1959-63 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1959-63-box-cd/2295251.p?id=1550648&skuId=2295251&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295251', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295251_sa.jpg\"}', 'upc' => '790051155599', 'provider' => 'bestbuy'],\n ['name' => \"Blue Train - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-train-cd/2295260.p?id=1524718&skuId=2295260&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295260', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295260.jpg\"}', 'upc' => '4000127154217', 'provider' => 'bestbuy'],\n ['name' => \"It'S My Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-my-time-cd/2295288.p?id=1524719&skuId=2295288&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295288', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295288_sa.jpg\"}', 'upc' => '790051154226', 'provider' => 'bestbuy'],\n ['name' => \"Rock & Roll Daddy-O - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rock-roll-daddy-o-cd/2295297.p?id=1419930&skuId=2295297&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295297', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295297.jpg\"}', 'upc' => '4000127155603', 'provider' => 'bestbuy'],\n ['name' => \"Close Harmony (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/close-harmony-box-cd/2295313.p?id=1425626&skuId=2295313&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295313', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295313_sa.jpg\"}', 'upc' => '790051155612', 'provider' => 'bestbuy'],\n ['name' => \"All American Boy 1 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/all-american-boy-1-box-cd/2295322.p?id=1419917&skuId=2295322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295322.jpg\"}', 'upc' => '790051156633', 'provider' => 'bestbuy'],\n ['name' => \"Man In Black 2: 1959-62 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/man-in-black-2-1959-62-box-cd/2295340.p?id=1419928&skuId=2295340&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295340', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295340.jpg\"}', 'upc' => '4000127155627', 'provider' => 'bestbuy'],\n ['name' => \"Singer Songwriter 1961-66 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singer-songwriter-1961-66-box-cd/2295368.p?id=1419973&skuId=2295368&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295368', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295368.jpg\"}', 'upc' => '790051156640', 'provider' => 'bestbuy'],\n ['name' => \"1949-52 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1949-52-cd/2295377.p?id=1418592&skuId=2295377&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295377', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295377_sa.jpg\"}', 'upc' => '4000127155641', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass 1950-58 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-1950-58-box-cd/2295386.p?id=1427456&skuId=2295386&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295386', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295386_sa.jpg\"}', 'upc' => '790051154233', 'provider' => 'bestbuy'],\n ['name' => \"Rockin Rollin Robbins - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-rollin-robbins-cd/2295439.p?id=1427490&skuId=2295439&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295439', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295439_sa.jpg\"}', 'upc' => '4000127155665', 'provider' => 'bestbuy'],\n ['name' => \"Three Bells (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 256.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/three-bells-box-cd/2295448.p?id=1418578&skuId=2295448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295448.jpg\"}', 'upc' => '790051156657', 'provider' => 'bestbuy'],\n ['name' => \"Story Of My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/story-of-my-life-cd/2295457.p?id=1427491&skuId=2295457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295457_sa.jpg\"}', 'upc' => '790051155674', 'provider' => 'bestbuy'],\n ['name' => \"Hawaii'S Calling Me - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hawaiis-calling-me-cd/2295466.p?id=1427493&skuId=2295466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295466.jpg\"}', 'upc' => '790051155681', 'provider' => 'bestbuy'],\n ['name' => \"Rockin Rollin Robbins 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-rollin-robbins-3-cd/2295475.p?id=1586452&skuId=2295475&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295475', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295475_sa.jpg\"}', 'upc' => '790051155698', 'provider' => 'bestbuy'],\n ['name' => \"Country 1951-1958 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-1951-1958-box-cd/2295484.p?id=1395506&skuId=2295484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295484_sa.jpg\"}', 'upc' => '790051155704', 'provider' => 'bestbuy'],\n ['name' => \"Musical Journey To Caribbean & Mexico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/musical-journey-to-caribbean-mexico-cd/2295493.p?id=1417385&skuId=2295493&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295493', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295493_sa.jpg\"}', 'upc' => '790051155711', 'provider' => 'bestbuy'],\n ['name' => \"Live At London Palladium - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-london-palladium-cd/2295518.p?id=1427482&skuId=2295518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295518.jpg\"}', 'upc' => '790051156664', 'provider' => 'bestbuy'],\n ['name' => \"Hillbilly Hula - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hillbilly-hula-cd/2295527.p?id=1448248&skuId=2295527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295527_sa.jpg\"}', 'upc' => '790051155742', 'provider' => 'bestbuy'],\n ['name' => \"Western Swing & Steel Instrumentals - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/western-swing-steel-instrumentals-cd/2295554.p?id=1417377&skuId=2295554&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295554', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295554.jpg\"}', 'upc' => '4000127155757', 'provider' => 'bestbuy'],\n ['name' => \"Sear-Iously - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sear-iously-cd/2295563.p?id=2292279&skuId=2295563&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295563', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295563.jpg\"}', 'upc' => '790051156688', 'provider' => 'bestbuy'],\n ['name' => \"Blow Man Blow (W - CD - Box w/Book\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blow-man-blow-w-cd-box-w-book/2295572.p?id=1549928&skuId=2295572&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295572', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295572.jpg\"}', 'upc' => '790051156701', 'provider' => 'bestbuy'],\n ['name' => \"Imperial Sessions (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 52.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/imperial-sessions-box-cd/2295581.p?id=1418591&skuId=2295581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295581_sa.jpg\"}', 'upc' => '790051156732', 'provider' => 'bestbuy'],\n ['name' => \"Bluebirds Over The Mountain - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluebirds-over-the-mountain-cd/2295590.p?id=1421287&skuId=2295590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295590_sa.jpg\"}', 'upc' => '790051156763', 'provider' => 'bestbuy'],\n ['name' => \"1953-59 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 52.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1953-59-box-cd/2295607.p?id=1419982&skuId=2295607&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295607', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295607_sa.jpg\"}', 'upc' => '790051156817', 'provider' => 'bestbuy'],\n ['name' => \"Jubilee Recordings (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jubilee-recordings-box-cd/2295616.p?id=1427463&skuId=2295616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295616_sa.jpg\"}', 'upc' => '790051156824', 'provider' => 'bestbuy'],\n ['name' => \"Bonanza: Ponderosa Party Time - CD - Box Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bonanza-ponderosa-party-time-cd-box-original-soundtrack/2295634.p?id=1419980&skuId=2295634&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295634', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295634.jpg\"}', 'upc' => '790051156848', 'provider' => 'bestbuy'],\n ['name' => \"Yellow Rose Of Texas (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yellow-rose-of-texas-box-cd/2295652.p?id=1418559&skuId=2295652&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295652', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295652.jpg\"}', 'upc' => '790051156886', 'provider' => 'bestbuy'],\n ['name' => \"South Texas Swing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/south-texas-swing-cd/2295698.p?id=109591&skuId=2295698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295698_sa.jpg\"}', 'upc' => '096297702925', 'provider' => 'bestbuy'],\n ['name' => \"Lightfoot - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lightfoot-cd/2295956.p?id=1418562&skuId=2295956&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295956', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295956_sa.jpg\"}', 'upc' => '790051155766', 'provider' => 'bestbuy'],\n ['name' => \"Leonard (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/leonard-box-cd/2295974.p?id=1419936&skuId=2295974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295974_sa.jpg\"}', 'upc' => '790051155773', 'provider' => 'bestbuy'],\n ['name' => \"Flash Crash & Thunder - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flash-crash-thunder-cd/2295992.p?id=1419963&skuId=2295992&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2295992', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2295\\/2295992_sa.jpg\"}', 'upc' => '4000127155795', 'provider' => 'bestbuy'],\n ['name' => \"Oklahoma Hills - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/oklahoma-hills-cd/2296018.p?id=1524861&skuId=2296018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296018_sa.jpg\"}', 'upc' => '790051155803', 'provider' => 'bestbuy'],\n ['name' => \"Golden Steel Guitar Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-steel-guitar-hits-cd/2296107.p?id=1419952&skuId=2296107&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296107', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296107.jpg\"}', 'upc' => '4000127155832', 'provider' => 'bestbuy'],\n ['name' => \"Yodelling Ranger (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/yodelling-ranger-box-cd/2296125.p?id=1524967&skuId=2296125&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296125', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296125_sa.jpg\"}', 'upc' => '790051155872', 'provider' => 'bestbuy'],\n ['name' => \"Country Boy'S Dream - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-boys-dream-cd/2296152.p?id=1427469&skuId=2296152&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296152', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296152_sa.jpg\"}', 'upc' => '4000127155931', 'provider' => 'bestbuy'],\n ['name' => \"Fraulein: Classic Years (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fraulein-classic-years-box-cd/2296189.p?id=1524774&skuId=2296189&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296189', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296189.jpg\"}', 'upc' => '790051155940', 'provider' => 'bestbuy'],\n ['name' => \"I Like Your Kind Of Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-like-your-kind-of-love-cd/2296321.p?id=1586465&skuId=2296321&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296321', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296321_sa.jpg\"}', 'upc' => '4000127155955', 'provider' => 'bestbuy'],\n ['name' => \"The Rogue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-rogue-cd/2296349.p?id=1395449&skuId=2296349&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296349', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296349_sa.jpg\"}', 'upc' => '790051155964', 'provider' => 'bestbuy'],\n ['name' => \"Outlaw - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outlaw-cd/2296367.p?id=1395453&skuId=2296367&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296367', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296367_sa.jpg\"}', 'upc' => '790051156053', 'provider' => 'bestbuy'],\n ['name' => \"When - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-cd/2296394.p?id=1421299&skuId=2296394&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296394', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296394_sa.jpg\"}', 'upc' => '4000127155979', 'provider' => 'bestbuy'],\n ['name' => \"Still In Style - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-in-style-cd/2296429.p?id=1419939&skuId=2296429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296429.jpg\"}', 'upc' => '790051155995', 'provider' => 'bestbuy'],\n ['name' => \"Classic Recordings (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-recordings-box-cd/2296474.p?id=1524898&skuId=2296474&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296474', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296474_sa.jpg\"}', 'upc' => '790051156008', 'provider' => 'bestbuy'],\n ['name' => \"Moon'S Rock - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/moons-rock-cd/2296508.p?id=1427461&skuId=2296508&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296508', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296508_sa.jpg\"}', 'upc' => '790051156077', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Live Shows On Earth - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-live-shows-on-earth-cd/2296535.p?id=1419975&skuId=2296535&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296535', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296535_sa.jpg\"}', 'upc' => '790051156084', 'provider' => 'bestbuy'],\n ['name' => \"Rural String Bands of Virginia - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rural-string-bands-of-virginia-various-cd/2296795.p?id=114687&skuId=2296795&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296795', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296795_sa.jpg\"}', 'upc' => '009001350220', 'provider' => 'bestbuy'],\n ['name' => \"Music for Easy Listening (The Original) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-for-easy-listening-the-original-cd/2296919.p?id=103831&skuId=2296919&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296919', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296919_sa.jpg\"}', 'upc' => '783121110222', 'provider' => 'bestbuy'],\n ['name' => \"Easy Jazz - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/easy-jazz-cd/2296964.p?id=103830&skuId=2296964&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296964', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296964.jpg\"}', 'upc' => '783121110925', 'provider' => 'bestbuy'],\n ['name' => \"Crescent City - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crescent-city-cd/2296982.p?id=103829&skuId=2296982&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2296982', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2296\\/2296982_sa.jpg\"}', 'upc' => '783121111625', 'provider' => 'bestbuy'],\n ['name' => \"Personal Best: The Harry Nilsson Anthology - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/personal-best-the-harry-nilsson-anthology-cd/2297008.p?id=108464&skuId=2297008&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297008', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297008.jpg\"}', 'upc' => '078636635422', 'provider' => 'bestbuy'],\n ['name' => \"Live At the Roosevelt Grill - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-roosevelt-grill-cd/2297026.p?id=67060&skuId=2297026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297026_sa.jpg\"}', 'upc' => '091454010523', 'provider' => 'bestbuy'],\n ['name' => \"Avid - Torq 2.0 DJ Performance Software\", 'description_short' => \"From our expanded online assortment; compatible with PC and Mac; 4 full-featured decks; Traq Morph technology; 13 built-in effects with VST support; 18-cell sampler and advanced looping; snapshots; tempo anchors\", 'description_long' => \"From our expanded online assortment; compatible with PC and Mac; 4 full-featured decks; Traq Morph technology; 13 built-in effects with VST support; 18-cell sampler and advanced looping; snapshots; tempo anchors\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/avid-torq-2-0-dj-performance-software/2297033.p?id=1218320073496&skuId=2297033', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297033_rc.jpg\"}', 'upc' => '724643113490', 'provider' => 'bestbuy'],\n ['name' => \"Boom Boom Baby - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boom-boom-baby-cd/2297062.p?id=1419938&skuId=2297062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297062.jpg\"}', 'upc' => '790051156107', 'provider' => 'bestbuy'],\n ['name' => \"Joe Venuti and Zoot Sims - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joe-venuti-and-zoot-sims-cd/2297099.p?id=71741&skuId=2297099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297099.jpg\"}', 'upc' => '091454014224', 'provider' => 'bestbuy'],\n ['name' => \"Joanne Shenandoah - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/joanne-shenandoah-cd/2297124.p?id=98571&skuId=2297124&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297124', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297124_sa.jpg\"}', 'upc' => '729337054523', 'provider' => 'bestbuy'],\n ['name' => \"White Sox Pink Lipstick & Stupid Cupid (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 191.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/white-sox-pink-lipstick-stupid-cupid-box-cd/2297133.p?id=1419967&skuId=2297133&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297133', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297133_sa.jpg\"}', 'upc' => '4000127156167', 'provider' => 'bestbuy'],\n ['name' => \"Jimmy Heap & The Melody Masters - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jimmy-heap-the-melody-masters-cd/2297142.p?id=1524773&skuId=2297142&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297142', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297142.jpg\"}', 'upc' => '4000127156174', 'provider' => 'bestbuy'],\n ['name' => \"The Night Owl - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-night-owl-cd/2297348.p?id=2432450&skuId=2297348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297348.jpg\"}', 'upc' => '769804444228', 'provider' => 'bestbuy'],\n ['name' => \"Papa Wemba - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/papa-wemba-cd/2297561.p?id=1493978&skuId=2297561&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297561', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297561.jpg\"}', 'upc' => '740042102620', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Hangout - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-hangout-cd/2297598.p?id=1417379&skuId=2297598&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297598', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297598_sa.jpg\"}', 'upc' => '790051156947', 'provider' => 'bestbuy'],\n ['name' => \"Great Pop Answer Discs From 50'S & 60'S 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/great-pop-answer-discs-from-50s-60s-1-cd-various/2297678.p?id=1418631&skuId=2297678&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297678', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297678.jpg\"}', 'upc' => '790051157913', 'provider' => 'bestbuy'],\n ['name' => \"More Than Pie In The Sky (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 214.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-than-pie-in-the-sky-box-cd/2297730.p?id=1419955&skuId=2297730&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297730', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297730.jpg\"}', 'upc' => '4000127157003', 'provider' => 'bestbuy'],\n ['name' => \"At His Best (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 48.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-his-best-box-cd/2297785.p?id=1572454&skuId=2297785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297785_sa.jpg\"}', 'upc' => '4000127157034', 'provider' => 'bestbuy'],\n ['name' => \"Duets - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duets-cd/2297874.p?id=1425607&skuId=2297874&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297874', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297874_sa.jpg\"}', 'upc' => '790051156206', 'provider' => 'bestbuy'],\n ['name' => \"That'll Flat Git It!, Vol. 1 - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thatll-flat-git-it-vol-1-various-cd/2297918.p?id=1400439&skuId=2297918&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297918', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297918.jpg\"}', 'upc' => '790051156220', 'provider' => 'bestbuy'],\n ['name' => \"That'LL Flat Git It 2 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thatll-flat-git-it-2-cd-various/2297963.p?id=1418564&skuId=2297963&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2297963', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2297\\/2297963.jpg\"}', 'upc' => '4000127156235', 'provider' => 'bestbuy'],\n ['name' => \"& Sunny Mountain Boys (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/-sunny-mountain-boys-box-cd/2298016.p?id=1425640&skuId=2298016&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298016', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298016.jpg\"}', 'upc' => '790051157050', 'provider' => 'bestbuy'],\n ['name' => \"Tomb Raider - PlayStation 3\", 'description_short' => \"Discover the visceral and gritty origin of the Tomb Raider\", 'description_long' => \"Discover the visceral and gritty origin of the Tomb Raider\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomb-raider-playstation-3/2298021.p?id=1219539696617&skuId=2298021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298021_sa.jpg\"}', 'upc' => '662248914954', 'provider' => 'bestbuy'],\n ['name' => \"Singing Ranger (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-ranger-box-cd/2298052.p?id=1527031&skuId=2298052&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298052', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298052.jpg\"}', 'upc' => '4000127154262', 'provider' => 'bestbuy'],\n ['name' => \"Mysterious Rhinestone Cowboy - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mysterious-rhinestone-cowboy-cd/2298114.p?id=1406971&skuId=2298114&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298114', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298114_sa.jpg\"}', 'upc' => '790051157067', 'provider' => 'bestbuy'],\n ['name' => \"Longhaired Redneck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/longhaired-redneck-cd/2298169.p?id=1419932&skuId=2298169&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298169', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298169.jpg\"}', 'upc' => '790051157074', 'provider' => 'bestbuy'],\n ['name' => \"That'LL Flat Git It! 3 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thatll-flat-git-it-3-cd-various/2298203.p?id=1537523&skuId=2298203&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298203', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298203_sa.jpg\"}', 'upc' => '790051156244', 'provider' => 'bestbuy'],\n ['name' => \"Mississippi Mile [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mississippi-mile-digipak-cd/2298209.p?id=2198867&skuId=2298209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298209_sa.jpg\"}', 'upc' => '093624959199', 'provider' => 'bestbuy'],\n ['name' => \"Hypnotized [Import] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hypnotized-import-cd/2298230.p?id=1524890&skuId=2298230&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298230', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298230_sa.jpg\"}', 'upc' => '4000127154286', 'provider' => 'bestbuy'],\n ['name' => \"Go, and Sell All of Your Things [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/go-and-sell-all-of-your-things-digipak-cd/2298236.p?id=2201754&skuId=2298236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298236_sa.jpg\"}', 'upc' => '790692072729', 'provider' => 'bestbuy'],\n ['name' => \"In and Out of Youth and Lightness [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/in-and-out-of-youth-and-lightness-digipak-cd/2298245.p?id=2201749&skuId=2298245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298245_sa.jpg\"}', 'upc' => '656605318820', 'provider' => 'bestbuy'],\n ['name' => \"C'mon [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cmon-digipak-cd/2298254.p?id=2201542&skuId=2298254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298254_sa.jpg\"}', 'upc' => '098787090529', 'provider' => 'bestbuy'],\n ['name' => \"Something to Die For [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/something-to-die-for-lp-vinyl/2298263.p?id=2201752&skuId=2298263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298263.jpg\"}', 'upc' => '603967143911', 'provider' => 'bestbuy'],\n ['name' => \"Gunfight At O.K. Corral - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gunfight-at-o-k-corral-cd/2298267.p?id=1524811&skuId=2298267&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298267', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298267.jpg\"}', 'upc' => '790051154295', 'provider' => 'bestbuy'],\n ['name' => \"Tomboy [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomboy-lp-vinyl/2298272.p?id=2195805&skuId=2298272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1907\\/19079427.jpg\"}', 'upc' => '677517103618', 'provider' => 'bestbuy'],\n ['name' => \"Complete Control... [12inch Vinyl Disc] [EP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/complete-control-12inch-vinyl-disc-ep-vinyl/2298281.p?id=2201545&skuId=2298281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298281.jpg\"}', 'upc' => '603967144314', 'provider' => 'bestbuy'],\n ['name' => \"No Devoluci¢n - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/no-devolucin-cd/2298306.p?id=2201546&skuId=2298306&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298306', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298306.jpg\"}', 'upc' => '045778712120', 'provider' => 'bestbuy'],\n ['name' => \"Share the Joy [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/share-the-joy-digipak-cd/2298315.p?id=2201750&skuId=2298315&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298315', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298315.jpg\"}', 'upc' => '644110021427', 'provider' => 'bestbuy'],\n ['name' => \"Loverboy [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loverboy-digipak-cd/2298324.p?id=2192797&skuId=2298324&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298324', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298324_sa.jpg\"}', 'upc' => '803020153424', 'provider' => 'bestbuy'],\n ['name' => \"Big Weather - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-weather-cd/2298329.p?id=2947277&skuId=2298329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298329.jpg\"}', 'upc' => '749262202028', 'provider' => 'bestbuy'],\n ['name' => \"Jonny [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jonny-digipak-cd/2298333.p?id=2201753&skuId=2298333&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298333', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298333_sa.jpg\"}', 'upc' => '673855041322', 'provider' => 'bestbuy'],\n ['name' => \"John Lennon for President - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/john-lennon-for-president-cd/2298338.p?id=3170319&skuId=2298338&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298338', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298338.jpg\"}', 'upc' => '095451600220', 'provider' => 'bestbuy'],\n ['name' => \"Here Before [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/here-before-digipak-cd/2298342.p?id=2201761&skuId=2298342&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298342', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298342_sa.jpg\"}', 'upc' => '032862020421', 'provider' => 'bestbuy'],\n ['name' => \"Figurines - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/figurines-cd/2298351.p?id=2201760&skuId=2298351&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298351', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298351_sa.jpg\"}', 'upc' => '650384027126', 'provider' => 'bestbuy'],\n ['name' => \"C'mon [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cmon-lp-vinyl/2298379.p?id=2201543&skuId=2298379&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298379', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298379_sa.jpg\"}', 'upc' => '098787090512', 'provider' => 'bestbuy'],\n ['name' => \"Fake History [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fake-history-digipak-cd/2298388.p?id=2203568&skuId=2298388&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298388', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298388_sa.jpg\"}', 'upc' => '045778713929', 'provider' => 'bestbuy'],\n ['name' => \"Tomboy [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tomboy-digipak-cd/2298397.p?id=2192769&skuId=2298397&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298397', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298397_sa.jpg\"}', 'upc' => '677517103625', 'provider' => 'bestbuy'],\n ['name' => \"Queens of the Stone Age [Remastered] [Bonus... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/queens-of-the-stone-age-remastered-bonus-cd/2298402.p?id=2196392&skuId=2298402&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298402', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298402_sa.jpg\"}', 'upc' => '801391800121', 'provider' => 'bestbuy'],\n ['name' => \"The Family Sign [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 23.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-family-sign-lp-vinyl/2298411.p?id=2201544&skuId=2298411&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298411', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298411_sa.jpg\"}', 'upc' => '826257013019', 'provider' => 'bestbuy'],\n ['name' => \"The Family Sign [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-family-sign-pa-digipak-cd/2298448.p?id=2201547&skuId=2298448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298448_sa.jpg\"}', 'upc' => '826257013026', 'provider' => 'bestbuy'],\n ['name' => \"Queens of the Stone Age [LP] [LP] - VINYL\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/queens-of-the-stone-age-lp-lp-vinyl/2298457.p?id=2196393&skuId=2298457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298457_sa.jpg\"}', 'upc' => '801391800114', 'provider' => 'bestbuy'],\n ['name' => \"Ring Of Fire - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ring-of-fire-cd/2298524.p?id=1524751&skuId=2298524&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298524', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298524_sa.jpg\"}', 'upc' => '4000127154347', 'provider' => 'bestbuy'],\n ['name' => \"Black Jack Choir - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/black-jack-choir-cd/2298560.p?id=1524801&skuId=2298560&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298560', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298560_sa.jpg\"}', 'upc' => '790051154356', 'provider' => 'bestbuy'],\n ['name' => \"Love Is Strange (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-is-strange-box-cd/2298837.p?id=1524785&skuId=2298837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298837_sa.jpg\"}', 'upc' => '790051154387', 'provider' => 'bestbuy'],\n ['name' => \"Trance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/trance-cd/2298944.p?id=132527&skuId=2298944&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2298944', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2298\\/2298944.jpg\"}', 'upc' => '736998592721', 'provider' => 'bestbuy'],\n ['name' => \"Cold Virginia Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cold-virginia-night-cd/2299033.p?id=110909&skuId=2299033&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299033', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299033_sa.jpg\"}', 'upc' => '032511170422', 'provider' => 'bestbuy'],\n ['name' => \"Song Of The Cowboys - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-of-the-cowboys-cd/2299202.p?id=1519257&skuId=2299202&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299202', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '4000127156273', 'provider' => 'bestbuy'],\n ['name' => \"Right Or Wrong (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/right-or-wrong-box-cd/2299220.p?id=1421292&skuId=2299220&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299220', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299220_sa.jpg\"}', 'upc' => '790051156299', 'provider' => 'bestbuy'],\n ['name' => \"Teenage Dance Party - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/teenage-dance-party-cd/2299284.p?id=1524832&skuId=2299284&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299284', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299284.jpg\"}', 'upc' => '790051154400', 'provider' => 'bestbuy'],\n ['name' => \"Hills of Erin - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hills-of-erin-cd/2299373.p?id=1464341&skuId=2299373&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299373', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299373.jpg\"}', 'upc' => '095182020724', 'provider' => 'bestbuy'],\n ['name' => \"Celtic Circles - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/celtic-circles-cd/2299391.p?id=1459227&skuId=2299391&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299391', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299391.jpg\"}', 'upc' => '095182020922', 'provider' => 'bestbuy'],\n ['name' => \"The All Star Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-all-star-sessions-cd/2299435.p?id=67587&skuId=2299435&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299435', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299435_sa.jpg\"}', 'upc' => '025218473729', 'provider' => 'bestbuy'],\n ['name' => \"Milestone Jazzstars in Concert - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/milestone-jazzstars-in-concert-cd/2299523.p?id=70439&skuId=2299523&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299523', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299523_sa.jpg\"}', 'upc' => '025218550628', 'provider' => 'bestbuy'],\n ['name' => \"Shin Megami Tensei: Devil Survivor 2 Record Breaker - Nintendo 3DS\", 'description_short' => \"Save the future of mankind\", 'description_long' => \"Save the future of mankind\", 'price' => 49.99, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/shin-megami-tensei-devil-survivor-2-record-breaker-nintendo-3ds/2299558.p?id=1219556851049&skuId=2299558&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2299558', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2299\\/2299558_sa.jpg\"}', 'upc' => '730865300198', 'provider' => 'bestbuy'],\n ['name' => \"Belkin - WeMo Insight Switch - White/Gray\", 'description_short' => \"Designed for use with select Apple&#174; and Android devices; allows you to turn your home electronics on or off; operates over Wi-Fi and mobile Internet\", 'description_long' => \"Designed for use with select Apple&#174; and Android devices; allows you to turn your home electronics on or off; operates over Wi-Fi and mobile Internet\", 'price' => 49.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/belkin-wemo-insight-switch-white-gray/2300063.p?id=1219071227185&skuId=2300063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300063_sa.jpg\"}', 'upc' => '722868980439', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme Pro 16GB SDHC Memory Card - Black/Red\", 'description_short' => \"Compatible with most digital cameras and camcorders with a SDHC slot; 16GB capacity; 45MB/sec. data transfer rate\", 'description_long' => \"Compatible with most digital cameras and camcorders with a SDHC slot; 16GB capacity; 45MB/sec. data transfer rate\", 'price' => 69.99, 'sale_price' => 29.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-pro-16gb-sdhc-memory-card-black-red/2300092.p?id=1218318852603&skuId=2300092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300092_sa.jpg\"}', 'upc' => '619659070922', 'provider' => 'bestbuy'],\n ['name' => \"Surfin' With - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/surfin-with-cd/2300129.p?id=1524969&skuId=2300129&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300129', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300129_sa.jpg\"}', 'upc' => '790051154424', 'provider' => 'bestbuy'],\n ['name' => \"SanDisk - Extreme Pro 32GB SDHC Memory Card - Black/Red\", 'description_short' => \"Compatible with most digital cameras and camcorders with a SDHC slot; 32GB capacity; 95MB/sec. data transfer rate\", 'description_long' => \"Compatible with most digital cameras and camcorders with a SDHC slot; 32GB capacity; 95MB/sec. data transfer rate\", 'price' => 99.99, 'sale_price' => 34.99, 'url' => 'http://www.bestbuy.com/site/sandisk-extreme-pro-32gb-sdhc-memory-card-black-red/2300144.p?id=1218318855730&skuId=2300144&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300144', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300144_sa.jpg\"}', 'upc' => '619659070939', 'provider' => 'bestbuy'],\n ['name' => \"Classic Recording 1956-60 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-recording-1956-60-box-cd/2300165.p?id=1524727&skuId=2300165&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300165', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300165.jpg\"}', 'upc' => '790051154448', 'provider' => 'bestbuy'],\n ['name' => \"On Groove - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-groove-cd/2300192.p?id=1524729&skuId=2300192&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300192', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300192_sa.jpg\"}', 'upc' => '790051154455', 'provider' => 'bestbuy'],\n ['name' => \"Formative Years 1951-53 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/formative-years-1951-53-cd/2300236.p?id=1527013&skuId=2300236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300236_sa.jpg\"}', 'upc' => '790051154486', 'provider' => 'bestbuy'],\n ['name' => \"Hot New Orleans Nights - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hot-new-orleans-nights-cd/2300245.p?id=1524747&skuId=2300245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300245_sa.jpg\"}', 'upc' => '4000127154491', 'provider' => 'bestbuy'],\n ['name' => \"Cry - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cry-cd/2300263.p?id=1396622&skuId=2300263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300263_sa.jpg\"}', 'upc' => '790051154509', 'provider' => 'bestbuy'],\n ['name' => \"Sixteen Tons Rock N Roll - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sixteen-tons-rock-n-roll-cd/2300272.p?id=1536271&skuId=2300272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300272_sa.jpg\"}', 'upc' => '790051154516', 'provider' => 'bestbuy'],\n ['name' => \"Heartaches By The Number - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/heartaches-by-the-number-cd/2300281.p?id=1524786&skuId=2300281&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300281', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300281_sa.jpg\"}', 'upc' => '790051154547', 'provider' => 'bestbuy'],\n ['name' => \"Memphis Days-The Defin 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memphis-days-the-defin-1-cd/2300316.p?id=1524958&skuId=2300316&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300316', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300316_sa.jpg\"}', 'upc' => '790051154608', 'provider' => 'bestbuy'],\n ['name' => \"Love Songs & Blues - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-songs-blues-cd/2300325.p?id=1524802&skuId=2300325&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300325_sa.jpg\"}', 'upc' => '790051154646', 'provider' => 'bestbuy'],\n ['name' => \"Americana (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/americana-box-cd/2300343.p?id=1524849&skuId=2300343&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300343', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300343_sa.jpg\"}', 'upc' => '790051154653', 'provider' => 'bestbuy'],\n ['name' => \"The Raging Teens, Vol. 1 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-raging-teens-vol-1-cd-various/2300389.p?id=95844&skuId=2300389&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300389', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300389_sa.jpg\"}', 'upc' => '731253022821', 'provider' => 'bestbuy'],\n ['name' => \"California Bloodliness - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/california-bloodliness-cd/2300405.p?id=1524795&skuId=2300405&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300405', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300405_sa.jpg\"}', 'upc' => '790051154684', 'provider' => 'bestbuy'],\n ['name' => \"The Real Kids - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-real-kids-cd/2300432.p?id=96155&skuId=2300432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300432_sa.jpg\"}', 'upc' => '731253022227', 'provider' => 'bestbuy'],\n ['name' => \"PNY - 8GB microSDHC Class 10 Memory Card - Black\", 'description_short' => \"Compatible with most digital cameras and mobile devices with an SDHC slot; 8GB capacity; 10MB/sec. transfer rate\", 'description_long' => \"Compatible with most digital cameras and mobile devices with an SDHC slot; 8GB capacity; 10MB/sec. transfer rate\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pny-8gb-microsdhc-class-10-memory-card-black/2300462.p?id=1218318855359&skuId=2300462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300462_sa.jpg\"}', 'upc' => '751492498126', 'provider' => 'bestbuy'],\n ['name' => \"Uh Huh Honey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/uh-huh-honey-cd/2300469.p?id=82037&skuId=2300469&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300469', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300469_sa.jpg\"}', 'upc' => '731253022524', 'provider' => 'bestbuy'],\n ['name' => \"Music Minus Five - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-minus-five-cd/2300511.p?id=72288&skuId=2300511&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300511', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300511_sa.jpg\"}', 'upc' => '731253023323', 'provider' => 'bestbuy'],\n ['name' => \"Bop A Hula (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bop-a-hula-box-cd/2300539.p?id=1524724&skuId=2300539&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300539', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300539_sa.jpg\"}', 'upc' => '790051154691', 'provider' => 'bestbuy'],\n ['name' => \"PNY - 8GB SDHC Class 6 Memory Card - Black\", 'description_short' => \"Compatible with most digital cameras with a SDHC slot; 8GB capacity\", 'description_long' => \"Compatible with most digital cameras with a SDHC slot; 8GB capacity\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pny-8gb-sdhc-class-6-memory-card-black/2300569.p?id=1218319596826&skuId=2300569&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300569', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300569_sa.jpg\"}', 'upc' => '751492500799', 'provider' => 'bestbuy'],\n ['name' => \"Home for the Holidays - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/home-for-the-holidays-cd/2300691.p?id=275491&skuId=2300691&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300691', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300691_sa.jpg\"}', 'upc' => '715498888923', 'provider' => 'bestbuy'],\n ['name' => \"1948-59 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 131.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1948-59-box-cd/2300771.p?id=1524766&skuId=2300771&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300771', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300771_sa.jpg\"}', 'upc' => '790051154721', 'provider' => 'bestbuy'],\n ['name' => \"Running Bear - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/running-bear-cd/2300806.p?id=1524896&skuId=2300806&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300806.jpg\"}', 'upc' => '4000127154736', 'provider' => 'bestbuy'],\n ['name' => \"Rockbilly Boogie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockbilly-boogie-cd/2300824.p?id=1419910&skuId=2300824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300824_sa.jpg\"}', 'upc' => '790051154745', 'provider' => 'bestbuy'],\n ['name' => \"Singer Songwriter 1949-60 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 91.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singer-songwriter-1949-60-box-cd/2300851.p?id=1395222&skuId=2300851&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300851', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300851_sa.jpg\"}', 'upc' => '790051154752', 'provider' => 'bestbuy'],\n ['name' => \"Singing Ranger Vol 2 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 109.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/singing-ranger-vol-2-box-cd/2300879.p?id=1417366&skuId=2300879&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300879', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300879_sa.jpg\"}', 'upc' => '790051154769', 'provider' => 'bestbuy'],\n ['name' => \"On The Trail - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 31.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/on-the-trail-cd/2300904.p?id=1524876&skuId=2300904&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300904', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300904.jpg\"}', 'upc' => '4000127154804', 'provider' => 'bestbuy'],\n ['name' => \"Taylor Texas 1988 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/taylor-texas-1988-cd/2300922.p?id=1566582&skuId=2300922&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300922', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300922.jpg\"}', 'upc' => '790051154868', 'provider' => 'bestbuy'],\n ['name' => \"Sixteen Tons - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sixteen-tons-cd/2300940.p?id=1418561&skuId=2300940&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300940', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300940.jpg\"}', 'upc' => '790051154875', 'provider' => 'bestbuy'],\n ['name' => \"Thesaurus Transcriptions (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/thesaurus-transcriptions-box-cd/2300977.p?id=1524912&skuId=2300977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2300977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2300\\/2300977_sa.jpg\"}', 'upc' => '790051154882', 'provider' => 'bestbuy'],\n ['name' => \"Classic Years 1952-62 (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 139.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-years-1952-62-box-cd/2301002.p?id=1417384&skuId=2301002&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301002', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301002_sa.jpg\"}', 'upc' => '790051154936', 'provider' => 'bestbuy'],\n ['name' => \"Dexter: Complete Series Collection [24 Discs] (Blu-ray Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dexter-complete-series-collection-24-discs-blu-ray-disc-boxed-set/2301017.p?id=2738206&skuId=2301017&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301017', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301017_sa.jpg\"}', 'upc' => '032429142900', 'provider' => 'bestbuy'],\n ['name' => \"Bill Cosby: Far from Finished (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-cosby-far-from-finished-dvd/2301026.p?id=2755100&skuId=2301026&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301026', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301026_sa.jpg\"}', 'upc' => '097368053045', 'provider' => 'bestbuy'],\n ['name' => \"Bill Cosby: Far from Finished (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bill-cosby-far-from-finished-blu-ray-disc/2301035.p?id=2755100&skuId=2301035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301035_sa.jpg\"}', 'upc' => '032429144010', 'provider' => 'bestbuy'],\n ['name' => \"Classic (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 161.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/classic-box-cd/2301039.p?id=1427470&skuId=2301039&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301039', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301039.jpg\"}', 'upc' => '4000127154941', 'provider' => 'bestbuy'],\n ['name' => \"Under the Dome: Season One [4 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-dome-season-one-4-discs-dvd-boxed-set/2301044.p?id=2742398&skuId=2301044&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301044', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301044_sa.jpg\"}', 'upc' => '097368050044', 'provider' => 'bestbuy'],\n ['name' => \"Call Of The Wild - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/call-of-the-wild-cd/2301048.p?id=1524911&skuId=2301048&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301048', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301048_sa.jpg\"}', 'upc' => '4000127154958', 'provider' => 'bestbuy'],\n ['name' => \"Dexter: The Complete Final Season [4 Discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dexter-the-complete-final-season-4-discs-dvd-boxed-set/2301053.p?id=2737648&skuId=2301053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301053_sa.jpg\"}', 'upc' => '032429135377', 'provider' => 'bestbuy'],\n ['name' => \"Still in Hollywood - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/still-in-hollywood-cd/2301057.p?id=109326&skuId=2301057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301057.jpg\"}', 'upc' => '724382912828', 'provider' => 'bestbuy'],\n ['name' => \"Dexter: The Complete Final Season [3 Discs] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 17.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dexter-the-complete-final-season-3-discs-blu-ray-disc/2301062.p?id=2737379&skuId=2301062&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301062', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301062_sa.jpg\"}', 'upc' => '032429135353', 'provider' => 'bestbuy'],\n ['name' => \"Under the Dome: Season One (Blu-ray Disc) (4 Disc) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 22.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/under-the-dome-season-one-blu-ray-disc-4-disc-boxed-set/2301071.p?id=2742421&skuId=2301071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301071_sa.jpg\"}', 'upc' => '032429144065', 'provider' => 'bestbuy'],\n ['name' => \"Out in L.A. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-in-l-a-cd/2301075.p?id=96187&skuId=2301075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301075.jpg\"}', 'upc' => '724382966524', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: The Next Generation - Season 5 [6 Discs] [Blu-ray] (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 52.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-the-next-generation-season-5-6-discs-blu-ray-blu-ray-disc/2301099.p?id=2748899&skuId=2301099&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301099', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301099_sa.jpg\"}', 'upc' => '032429135131', 'provider' => 'bestbuy'],\n ['name' => \"Dexter: Complete Series Collection [32 discs] (DVD) (Boxed Set)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 143.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dexter-complete-series-collection-32-discs-dvd-boxed-set/2301104.p?id=2738934&skuId=2301104&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301104_sa.jpg\"}', 'upc' => '032429142917', 'provider' => 'bestbuy'],\n ['name' => \"Star Trek: The Next Generation - Unification (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/star-trek-the-next-generation-unification-blu-ray-disc/2301113.p?id=2748900&skuId=2301113&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301113', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301113_sa.jpg\"}', 'upc' => '097368052246', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - 9\\\" Portable DVD Player - Black\", 'description_short' => \"Plays DVD&#177;R/RW, DVD, CD-R/RW, CD and JPEG formats; up to 2.5 hours of battery life per full charge; 1 headphone output\", 'description_long' => \"Plays DVD&#177;R/RW, DVD, CD-R/RW, CD and JPEG formats; up to 2.5 hours of battery life per full charge; 1 headphone output\", 'price' => 89.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-9-portable-dvd-player-black/2301159.p?id=1219071539151&skuId=2301159&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301159', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301159_sa.jpg\"}', 'upc' => '600603162176', 'provider' => 'bestbuy'],\n ['name' => \"MOBILE VID <250 1YR REN 24MO\", 'description_short' => \"2 Year Geek Squad Protection Renewal\", 'description_long' => \"2 Year Geek Squad Protection Renewal\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mobile-vid-250-1yr-ren-24mo/2301222.p?id=2752119&skuId=2301222&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301222', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400023012224', 'provider' => 'bestbuy'],\n ['name' => \"MOBILE VID <250 2YR REN 24MO\", 'description_short' => \"2 Year Geek Squad Protection Renewal\", 'description_long' => \"2 Year Geek Squad Protection Renewal\", 'price' => 44.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mobile-vid-250-2yr-ren-24mo/2301259.p?id=2752189&skuId=2301259&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301259', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_hardlines_l.jpg\"}', 'upc' => '400023012590', 'provider' => 'bestbuy'],\n ['name' => \"Whirlpool - Laundry 123 Clothing Rack - White\", 'description_short' => \"Collapsible design; scratch-resistant magnets; rotating arms\", 'description_long' => \"Collapsible design; scratch-resistant magnets; rotating arms\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whirlpool-laundry-123-clothing-rack-white/2301365.p?id=1218320892932&skuId=2301365&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301365', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301365_sa.jpg\"}', 'upc' => '883049220642', 'provider' => 'bestbuy'],\n ['name' => \"AME Accounting: Small Business - Windows\", 'description_short' => \"Take the stress and spending out of accounting\", 'description_long' => \"Take the stress and spending out of accounting\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ame-accounting-small-business-windows/2301513.p?id=1218320823302&skuId=2301513', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301513', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301513_sa.jpg\"}', 'upc' => '896991001108', 'provider' => 'bestbuy'],\n ['name' => \"Rockin Daddy (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 52.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rockin-daddy-box-cd/2301592.p?id=1419919&skuId=2301592&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301592', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301592.jpg\"}', 'upc' => '4000127157089', 'provider' => 'bestbuy'],\n ['name' => \"Galloping Guitar: The Early Years [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 111.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/galloping-guitar-the-early-years-box-cd/2301627.p?id=1395468&skuId=2301627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301627_sa.jpg\"}', 'upc' => '790051157142', 'provider' => 'bestbuy'],\n ['name' => \"Bob King & The Country Kings - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bob-king-the-country-kings-cd/2301654.p?id=1425598&skuId=2301654&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301654', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301654_sa.jpg\"}', 'upc' => '4000127157195', 'provider' => 'bestbuy'],\n ['name' => \"Kindred Spirits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kindred-spirits-cd/2301725.p?id=75613&skuId=2301725&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301725', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301725_sa.jpg\"}', 'upc' => '025041105323', 'provider' => 'bestbuy'],\n ['name' => \"PNY - Pro Elite 16GB SDHC Class 10 UHS-1 Memory Card - Black\", 'description_short' => \"Compatible with most devices with a SDHC slot; 16GB capacity; up to 90MB/sec. read speed\", 'description_long' => \"Compatible with most devices with a SDHC slot; 16GB capacity; up to 90MB/sec. read speed\", 'price' => 29.99, 'sale_price' => 9.99, 'url' => 'http://www.bestbuy.com/site/pny-pro-elite-16gb-sdhc-class-10-uhs-1-memory-card-black/2301801.p?id=1218320077933&skuId=2301801&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301801', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301801_sa.jpg\"}', 'upc' => '751492563886', 'provider' => 'bestbuy'],\n ['name' => \"Tanburi Cemil Bey - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tanburi-cemil-bey-cd/2301823.p?id=111135&skuId=2301823&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301823', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301823_sa.jpg\"}', 'upc' => '780702426420', 'provider' => 'bestbuy'],\n ['name' => \"Istanbul 1925 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/istanbul-1925-cd-various/2301841.p?id=115662&skuId=2301841&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301841', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301841_sa.jpg\"}', 'upc' => '780702426628', 'provider' => 'bestbuy'],\n ['name' => \"Art of Taksim - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/art-of-taksim-cd/2301850.p?id=112946&skuId=2301850&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301850', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301850_sa.jpg\"}', 'upc' => '780702426727', 'provider' => 'bestbuy'],\n ['name' => \"Ask Me No Questions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ask-me-no-questions-cd/2301869.p?id=177761&skuId=2301869&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2301869', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2301\\/2301869_sa.jpg\"}', 'upc' => '780702426826', 'provider' => 'bestbuy'],\n ['name' => \"Acer - Aspire 11.6\\\" - Intel Pentium - 4GB Memory - 500GB Hard Drive - Silver\", 'description_short' => \"Windows 7, upgrade to Windows 10 for freeTechnical details: Intel&#174; Pentium&#174; processor; 11.6&quot; display; 4GB memory; 500GB hard driveSpecial features: Bluetooth; HDMI outputNote: DVD/CD drive not included\", 'description_long' => \"Windows 7, upgrade to Windows 10 for freeTechnical details: Intel&#174; Pentium&#174; processor; 11.6&quot; display; 4GB memory; 500GB hard driveSpecial features: Bluetooth; HDMI outputNote: DVD/CD drive not included\", 'price' => 299.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/acer-aspire-11-6-intel-pentium-4gb-memory-500gb-hard-drive-silver/2302025.p?id=1219535627184&skuId=2302025&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302025', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302025_sa.jpg\"}', 'upc' => '887899655234', 'provider' => 'bestbuy'],\n ['name' => \"Hope - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hope-cd/2302270.p?id=129231&skuId=2302270&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302270', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302270_sa.jpg\"}', 'upc' => '753114000229', 'provider' => 'bestbuy'],\n ['name' => \"Little Signs of Autumn - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/little-signs-of-autumn-cd/2302289.p?id=130210&skuId=2302289&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302289', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302289_sa.jpg\"}', 'upc' => '753114000328', 'provider' => 'bestbuy'],\n ['name' => \"Ireland by Sail - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ireland-by-sail-cd/2302671.p?id=262014&skuId=2302671&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302671', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302671.jpg\"}', 'upc' => '045507205428', 'provider' => 'bestbuy'],\n ['name' => \"Live at Reggae Sunsplash [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-reggae-sunsplash-cassette-cd/2302724.p?id=106806&skuId=2302724&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302724', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302724.jpg\"}', 'upc' => '722485890227', 'provider' => 'bestbuy'],\n ['name' => \"Live at Reggae Sunsplash - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-reggae-sunsplash-cd/2302733.p?id=74653&skuId=2302733&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302733', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302733.jpg\"}', 'upc' => '722485890524', 'provider' => 'bestbuy'],\n ['name' => \"Life's a Lesson [Cassette] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lifes-a-lesson-cassette-cd/2302788.p?id=1577671&skuId=2302788&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302788', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302788.jpg\"}', 'upc' => '789925131821', 'provider' => 'bestbuy'],\n ['name' => \"Shipwreck - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shipwreck-cd/2302804.p?id=111205&skuId=2302804&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2302804', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2302\\/2302804.jpg\"}', 'upc' => '016581721425', 'provider' => 'bestbuy'],\n ['name' => \"Blue Valentine (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-valentine-dvd/2303035.p?id=2194601&skuId=2303035&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303035', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303035_sa.jpg\"}', 'upc' => '013132317892', 'provider' => 'bestbuy'],\n ['name' => \"Blue Valentine (Blu-ray Disc)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blue-valentine-blu-ray-disc/2303053.p?id=2194601&skuId=2303053&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303053', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303053_sa.jpg\"}', 'upc' => '013132318394', 'provider' => 'bestbuy'],\n ['name' => \"Masters of Terror 3 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masters-of-terror-3-dvd/2303079.p?id=2717428&skuId=2303079&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303079', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303079_sa.jpg\"}', 'upc' => '096009839192', 'provider' => 'bestbuy'],\n ['name' => \"CIVIL War Anniversary Collection (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/civil-war-anniversary-collection-dvd/2303097.p?id=2461165&skuId=2303097&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303097', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303097.jpg\"}', 'upc' => '096009829094', 'provider' => 'bestbuy'],\n ['name' => \"4-Movie Bible Story Collection 2 (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/4-movie-bible-story-collection-2-dvd/2303111.p?id=2706938&skuId=2303111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2146\\/21461611.jpg\"}', 'upc' => '096009205942', 'provider' => 'bestbuy'],\n ['name' => \"Superman Cartoons (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/superman-cartoons-dvd/2303157.p?id=2771726&skuId=2303157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303157.jpg\"}', 'upc' => '096009329297', 'provider' => 'bestbuy'],\n ['name' => \"3 Men And A Baby Grand Salute The Rat Pack - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/3-men-and-a-baby-grand-salute-the-rat-pack-cd/2303175.p?id=1626831&skuId=2303175&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303175', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303175_sa.jpg\"}', 'upc' => '711788021421', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Forest 9.8' In-Wall HDMI Cable - Black\", 'description_short' => \"Connects 1 HDMI component to another HDMI component via HDMI connection; 0.5% silver-plated copper material; nitrogen-injected insulation materials; high-speed rating; supports 1080p, 4K and 3D signals\", 'description_long' => \"Connects 1 HDMI component to another HDMI component via HDMI connection; 0.5% silver-plated copper material; nitrogen-injected insulation materials; high-speed rating; supports 1080p, 4K and 3D signals\", 'price' => 89.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-forest-9-8-in-wall-hdmi-cable-black/2303253.p?id=1219071223141&skuId=2303253&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303253', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310264755\\/1310264755_sa.jpg\"}', 'upc' => '092592077881', 'provider' => 'bestbuy'],\n ['name' => \"One Size Fits All - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/one-size-fits-all-cd/2303322.p?id=108618&skuId=2303322&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303322', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303322_sa.jpg\"}', 'upc' => '075679245922', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Buck Owens, Vol. 1 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-buck-owens-vol-1-cd/2303536.p?id=108675&skuId=2303536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303536_sa.jpg\"}', 'upc' => '081227181628', 'provider' => 'bestbuy'],\n ['name' => \"Seconds Out - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seconds-out-cd/2303670.p?id=83481&skuId=2303670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303670_sa.jpg\"}', 'upc' => '075678268922', 'provider' => 'bestbuy'],\n ['name' => \"Golden Hits [Masters] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 3.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/golden-hits-masters-cd/2303938.p?id=129351&skuId=2303938&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2303938', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2303\\/2303938_sa.jpg\"}', 'upc' => '024266108928', 'provider' => 'bestbuy'],\n ['name' => \"The Order of Things [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-order-of-things-digipak-cd/2304023.p?id=3335068&skuId=2304023&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304023', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304023_sa.jpg\"}', 'upc' => '793018361422', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - 4\\\" x 6\\\" Coaxial Speakers with Polypropylene Cones (Pair) - Graphite\", 'description_short' => \"From our expanded online assortment; 60W peak power handling (30W RMS); tapered curvilinear polypropylene cones; 1/2&quot; polyethylene naphthalate tweeters; extended voice coil technology\", 'description_long' => \"From our expanded online assortment; 60W peak power handling (30W RMS); tapered curvilinear polypropylene cones; 1/2&quot; polyethylene naphthalate tweeters; extended voice coil technology\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-4-x-6-coaxial-speakers-with-polypropylene-cones-pair-graphite/2304177.p?id=1218320157394&skuId=2304177&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304177', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304177_sa.jpg\"}', 'upc' => '713034055150', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - Solo-Baric L7 12\\\" Dual-Voice-Coil 2-Ohm Subwoofers with Enclosure - Black\", 'description_short' => \"From our expanded online assortment; handles up to 3000W peak power (1500W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cones with santoprene surrounds\", 'description_long' => \"From our expanded online assortment; handles up to 3000W peak power (1500W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cones with santoprene surrounds\", 'price' => 879.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-solo-baric-l7-12-dual-voice-coil-2-ohm-subwoofers-with-enclosure-black/2304283.p?id=1218320823890&skuId=2304283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304283_sa.jpg\"}', 'upc' => '713034055457', 'provider' => 'bestbuy'],\n ['name' => \"Bedtime Stories - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bedtime-stories-cd/2304358.p?id=108849&skuId=2304358&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304358', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304358_sa.jpg\"}', 'upc' => '093624576723', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - Solo-Baric L7 12\\\" Single Dual-Voice-Coil 2-Ohm Subwoofer with Enclosure - Black\", 'description_short' => \"From our expanded online assortment; handles up to 1500W peak power (750W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cone with santoprene surround\", 'description_long' => \"From our expanded online assortment; handles up to 1500W peak power (750W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cone with santoprene surround\", 'price' => 479.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-solo-baric-l7-12-single-dual-voice-coil-2-ohm-subwoofer-with-enclosure-black/2304404.p?id=1218320075880&skuId=2304404&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304404', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304404_sa.jpg\"}', 'upc' => '713034055464', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - 4\\\" Coaxial Speakers with Polypropylene Cones (Pair) - Graphite\", 'description_short' => \"From our expanded online assortment; 60W peak power handling (30W RMS); tapered curvilinear polypropylene cones; 1/2&quot; polyethylene naphthalate tweeters; extended voice coil technology\", 'description_long' => \"From our expanded online assortment; 60W peak power handling (30W RMS); tapered curvilinear polypropylene cones; 1/2&quot; polyethylene naphthalate tweeters; extended voice coil technology\", 'price' => 79.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-4-coaxial-speakers-with-polypropylene-cones-pair-graphite/2304459.p?id=1218320156839&skuId=2304459&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304459', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304459_sa.jpg\"}', 'upc' => '713034055136', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - Marine Dual-Zone Remote Level Controller - Black\", 'description_short' => \"From our expanded online assortment; compatible with most aftermarket audio setups with a Kicker amplifier; RCA input; sealed pigtail connections; plastic material\", 'description_long' => \"From our expanded online assortment; compatible with most aftermarket audio setups with a Kicker amplifier; RCA input; sealed pigtail connections; plastic material\", 'price' => 99.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-marine-dual-zone-remote-level-controller-black/2304486.p?id=1218320819346&skuId=2304486', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304486', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304486_sa.jpg\"}', 'upc' => '713034053545', 'provider' => 'bestbuy'],\n ['name' => \"Kicker - Solo-Baric L7 10\\\" Single Dual-Voice-Coil 2-Ohm Subwoofer with Enclosure\", 'description_short' => \"From our expanded online assortment; handles up to 1200W peak power (600W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cone with santoprene surround\", 'description_long' => \"From our expanded online assortment; handles up to 1200W peak power (600W RMS); nickel-plated, spring-loaded terminals; polypropylene woofer cone with santoprene surround\", 'price' => 379.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/kicker-solo-baric-l7-10-single-dual-voice-coil-2-ohm-subwoofer-with-enclosure/2304583.p?id=1218320078144&skuId=2304583', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2304583', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2304\\/2304583_rc.jpg\"}', 'upc' => '713034055471', 'provider' => 'bestbuy'],\n ['name' => \"A Flourish and a Spoil [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-flourish-and-a-spoil-digipak-cd/2305013.p?id=3336043&skuId=2305013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305013_sa.jpg\"}', 'upc' => '767981149721', 'provider' => 'bestbuy'],\n ['name' => \"Stripped Down [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/stripped-down-cd-dvd-cd/2305022.p?id=3336045&skuId=2305022&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305022', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305022_sa.jpg\"}', 'upc' => '858135004659', 'provider' => 'bestbuy'],\n ['name' => \"Whiskey On My Breath [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/whiskey-on-my-breath-digipak-cd/2305031.p?id=3336044&skuId=2305031&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305031', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305031_sa.jpg\"}', 'upc' => '766930017623', 'provider' => 'bestbuy'],\n ['name' => \"The Underdog [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-underdog-digipak-cd/2305059.p?id=3336047&skuId=2305059&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305059', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305059_sa.jpg\"}', 'upc' => '794504002379', 'provider' => 'bestbuy'],\n ['name' => \"Dearly Departed - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dearly-departed-cd/2305068.p?id=3336042&skuId=2305068&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305068', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305068_sa.jpg\"}', 'upc' => '727701922928', 'provider' => 'bestbuy'],\n ['name' => \"Ultra Dance, Vol. 16 [Digipak] - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ultra-dance-vol-16-digipak-cd-various/2305077.p?id=3336046&skuId=2305077&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305077', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305077_sa.jpg\"}', 'upc' => '617465587528', 'provider' => 'bestbuy'],\n ['name' => \"Rise Up - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/rise-up-cd/2305106.p?id=116123&skuId=2305106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305106_sa.jpg\"}', 'upc' => '743431100320', 'provider' => 'bestbuy'],\n ['name' => \"The Brunt - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-brunt-cd/2305115.p?id=111183&skuId=2305115&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305115', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305115_sa.jpg\"}', 'upc' => '743431326225', 'provider' => 'bestbuy'],\n ['name' => \"Cooler Master - MegaFlow 200mm Chassis Cooling Fan - Clear\", 'description_short' => \"Compatible with 3-pin TX3 connectors; 200mm size; 110 cfm airflow volume; sleeve bearing design\", 'description_long' => \"Compatible with 3-pin TX3 connectors; 200mm size; 110 cfm airflow volume; sleeve bearing design\", 'price' => 19.99, 'sale_price' => 16.99, 'url' => 'http://www.bestbuy.com/site/cooler-master-megaflow-200mm-chassis-cooling-fan-clear/2305255.p?id=1218320079276&skuId=2305255&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305255', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305255_rc.jpg\"}', 'upc' => '884102004001', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - Type R 6-1/2\\\" 2-Way Coaxial Car Speaker with Hybrid Fiber Cones (Pair) - Black\", 'description_short' => \"300W peak power handling (100W RMS); 6-1/2&quot; hybrid fiber woofer cone; TPE plastic woofer surround; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'description_long' => \"300W peak power handling (100W RMS); 6-1/2&quot; hybrid fiber woofer cone; TPE plastic woofer surround; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-type-r-6-1-2-2-way-coaxial-car-speaker-with-hybrid-fiber-cones-pair-black/2305546.p?id=1218320404058&skuId=2305546', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305546', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305546_sa.jpg\"}', 'upc' => '793276011053', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - Type R 6\\\" x 9\\\" 2-Way Coaxial Car Speakers with Hybrid Fiber Cones (Pair) - Black\", 'description_short' => \"300W peak power handling (100W RMS); 6&quot; x 9&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'description_long' => \"300W peak power handling (100W RMS); 6&quot; x 9&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-type-r-6-x-9-2-way-coaxial-car-speakers-with-hybrid-fiber-cones-pair-black/2305625.p?id=1218320078775&skuId=2305625&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305625', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305625_sa.jpg\"}', 'upc' => '793276011077', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - Type R 5-1/4\\\" 2-Way Coaxial Car Speakers with Hybrid Fiber Cones (Pair) - Black\", 'description_short' => \"270W peak power handling (90W RMS); 5-1/4&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'description_long' => \"270W peak power handling (90W RMS); 5-1/4&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-type-r-5-1-4-2-way-coaxial-car-speakers-with-hybrid-fiber-cones-pair-black/2305807.p?id=1218320406807&skuId=2305807&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305807', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305807_sa.jpg\"}', 'upc' => '793276011060', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $100 Birthday Blowout Gift Card\", 'description_short' => \"A Birthday Blowout gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"A Birthday Blowout gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 100, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-100-birthday-blowout-gift-card/2305898.p?id=null&skuId=2305898&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305898', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305898_sc.jpg\"}', 'upc' => '400023058987', 'provider' => 'bestbuy'],\n ['name' => \"Alpine - Type R 6\\\" x 8\\\" 2-Way Coaxial Car Speakers with Hybrid Fiber Cones (Pair) - Black\", 'description_short' => \"300W peak power handling (100W RMS); 6&quot; x 8&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'description_long' => \"300W peak power handling (100W RMS); 6&quot; x 8&quot; hybrid fiber woofer cone; 1&quot; swivel ring dome tweeter with silk diaphragm; Wave Guide\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/alpine-type-r-6-x-8-2-way-coaxial-car-speakers-with-hybrid-fiber-cones-pair-black/2305934.p?id=1218320406947&skuId=2305934&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305934', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305934_sa.jpg\"}', 'upc' => '793276011084', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $200 Birthday Blowout Gift Card\", 'description_short' => \"A Birthday Blowout gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"A Birthday Blowout gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 200, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-200-birthday-blowout-gift-card/2305952.p?id=null&skuId=2305952&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2305952', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2305\\/2305952_sc.jpg\"}', 'upc' => '400023059526', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - New 3DS XL - Black\", 'description_short' => \"Jump into your favorite games with immersive 3D\", 'description_long' => \"Jump into your favorite games with immersive 3D\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-new-3ds-xl-black/2306021.p?id=1219535294085&skuId=2306021&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306021', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306021_sa.jpg\"}', 'upc' => '045496781514', 'provider' => 'bestbuy'],\n ['name' => \"Country Preacher: \\\"Live\\\" at Operation Breadbasket - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/country-preacher-live-at-operation-breadbasket-cd/2306285.p?id=109353&skuId=2306285&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306285', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306285_sa.jpg\"}', 'upc' => '724383045228', 'provider' => 'bestbuy'],\n ['name' => \"West Side Story - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-side-story-cd/2306329.p?id=109369&skuId=2306329&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306329', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306329_sa.jpg\"}', 'upc' => '724382991427', 'provider' => 'bestbuy'],\n ['name' => \"Do You Want More?!!!??! [Explicit Version] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/do-you-want-more-explicit-version-pa-cd/2306445.p?id=109232&skuId=2306445&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306445', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306445_sa.jpg\"}', 'upc' => '720642470824', 'provider' => 'bestbuy'],\n ['name' => \"Sing It Loud [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-it-loud-digipak-cd/2306518.p?id=2192724&skuId=2306518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306518_sa.jpg\"}', 'upc' => '075597978360', 'provider' => 'bestbuy'],\n ['name' => \"I Will Stand by You: The Essential Collection - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/i-will-stand-by-you-the-essential-collection-cd/2306536.p?id=2193619&skuId=2306536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2306536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2306\\/2306536_sa.jpg\"}', 'upc' => '715187923423', 'provider' => 'bestbuy'],\n ['name' => \"Nintendo - New 3DS XL - Red\", 'description_short' => \"Jump into your favorite games with immersive 3D\", 'description_long' => \"Jump into your favorite games with immersive 3D\", 'price' => 199.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nintendo-new-3ds-xl-red/2307075.p?id=1219535294084&skuId=2307075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2307075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2307\\/2307075_sa.jpg\"}', 'upc' => '045496781507', 'provider' => 'bestbuy'],\n ['name' => \"EA - Star Wars: The Old Republic 2400 Cartel Coins Card for Windows\", 'description_short' => \"Redeem this card to purchase gear and more at the Cartel Market in The Old Republic\", 'description_long' => \"Redeem this card to purchase gear and more at the Cartel Market in The Old Republic\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ea-star-wars-the-old-republic-2400-cartel-coins-card-for-windows/2308029.p?id=1219074063119&skuId=2308029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2308029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2308\\/2308029_sa.jpg\"}', 'upc' => '799366052005', 'provider' => 'bestbuy'],\n ['name' => \"Greatest Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/greatest-hits-cd/2308327.p?id=109094&skuId=2308327&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2308327', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2308\\/2308327_sa.jpg\"}', 'upc' => '054895211829', 'provider' => 'bestbuy'],\n ['name' => \"Terraria - PRE-OWNED - PlayStation 4\", 'description_short' => \"Build a world of pure imagination as you dig, fight and explore\", 'description_long' => \"Build a world of pure imagination as you dig, fight and explore\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terraria-pre-owned-playstation-4/2309028.p?id=1219551027654&skuId=2309028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2309028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2309\\/2309028_sa.jpg\"}', 'upc' => '799007841647', 'provider' => 'bestbuy'],\n ['name' => \"Bluegrass Album, Vol. 4 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bluegrass-album-vol-4-cd-various/2309718.p?id=75156&skuId=2309718&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2309718', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2309\\/2309718.jpg\"}', 'upc' => '011661021020', 'provider' => 'bestbuy'],\n ['name' => \"Gifts of the Angels - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gifts-of-the-angels-cd/2309763.p?id=110187&skuId=2309763&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2309763', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2309\\/2309763_sa.jpg\"}', 'upc' => '093791785522', 'provider' => 'bestbuy'],\n ['name' => \"A To a Higher Place - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-to-a-higher-place-cd/2309834.p?id=109411&skuId=2309834&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2309834', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2309\\/2309834_sa.jpg\"}', 'upc' => '074645787626', 'provider' => 'bestbuy'],\n ['name' => \"Old, New, Borrowed & Blue - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/old-new-borrowed-blue-cd/2310010.p?id=109520&skuId=2310010&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310010', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310010_sa.jpg\"}', 'upc' => '014551482628', 'provider' => 'bestbuy'],\n ['name' => \"Come to Find - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/come-to-find-cd/2310127.p?id=109699&skuId=2310127&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310127', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310127_sa.jpg\"}', 'upc' => '092592112728', 'provider' => 'bestbuy'],\n ['name' => \"Super Hits - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/super-hits-cd/2310314.p?id=1643116&skuId=2310314&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310314', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310314_sa.jpg\"}', 'upc' => '886970527927', 'provider' => 'bestbuy'],\n ['name' => \"The Very Best of Rex Allen, Jr. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-very-best-of-rex-allen-jr-cd/2310341.p?id=108839&skuId=2310341&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310341', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310341_sa.jpg\"}', 'upc' => '093624576624', 'provider' => 'bestbuy'],\n ['name' => \"Amorica [Clean] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/amorica-clean-cd/2310387.p?id=279429&skuId=2310387&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310387', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '093624300120', 'provider' => 'bestbuy'],\n ['name' => \"Even More Dazed & Confused - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/even-more-dazed-confused-cd-original-soundtrack/2310591.p?id=108844&skuId=2310591&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310591', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310591_sa.jpg\"}', 'upc' => '075992458825', 'provider' => 'bestbuy'],\n ['name' => \"Turbulent Indigo - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/turbulent-indigo-cd/2310813.p?id=108851&skuId=2310813&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310813', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310813_sa.jpg\"}', 'upc' => '093624578628', 'provider' => 'bestbuy'],\n ['name' => \"The Bard & The Balladeer: Live From Cowtown - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-bard-the-balladeer-live-from-cowtown-cd/2310840.p?id=108852&skuId=2310840&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2310840', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2310\\/2310840_sa.jpg\"}', 'upc' => '093624578321', 'provider' => 'bestbuy'],\n ['name' => \"Microsoft - $25 Xbox Gift Card - World of Tanks\", 'description_short' => \"Embark on an epic entertainment journey through the Xbox Live Marketplace\", 'description_long' => \"Embark on an epic entertainment journey through the Xbox Live Marketplace\", 'price' => 25, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/microsoft-25-xbox-gift-card-world-of-tanks/2311013.p?id=1219074063120&skuId=2311013&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311013', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311013_sa.jpg\"}', 'upc' => '799366142874', 'provider' => 'bestbuy'],\n ['name' => \"Seven Gates: A Christmas Album - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/seven-gates-a-christmas-album-cd/2311046.p?id=108855&skuId=2311046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311046_sa.jpg\"}', 'upc' => '093624577324', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mejor De... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mejor-de-cd/2311095.p?id=3332129&skuId=2311095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311095_sa.jpg\"}', 'upc' => '602547132062', 'provider' => 'bestbuy'],\n ['name' => \"Las Bandas Románticas De América 2015 - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/las-bandas-romanticas-de-america-2015-cd-various/2311128.p?id=3332083&skuId=2311128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311128_sa.jpg\"}', 'upc' => '600753581933', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-cd/2311137.p?id=3332123&skuId=2311137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311137_sa.jpg\"}', 'upc' => '600753578810', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-cd/2311146.p?id=3332140&skuId=2311146&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311146', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311146_sa.jpg\"}', 'upc' => '602547121820', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-cd/2311155.p?id=3332097&skuId=2311155&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311155', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311155_sa.jpg\"}', 'upc' => '602547183569', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-cd/2311164.p?id=3332069&skuId=2311164&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311164', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311164_sa.jpg\"}', 'upc' => '602547123879', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos: Grupero - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-grupero-cd-various/2311173.p?id=3332105&skuId=2311173&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311173', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311173_sa.jpg\"}', 'upc' => '600753576663', 'provider' => 'bestbuy'],\n ['name' => \"20 Kilates Románticos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/20-kilates-romanticos-cd/2311182.p?id=3332085&skuId=2311182&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311182', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311182_sa.jpg\"}', 'upc' => '602547146038', 'provider' => 'bestbuy'],\n ['name' => \"Lo Mejor De... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lo-mejor-de-cd/2311191.p?id=3332134&skuId=2311191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311191_sa.jpg\"}', 'upc' => '602547163530', 'provider' => 'bestbuy'],\n ['name' => \"Boleros De Nostalgia - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/boleros-de-nostalgia-cd-various/2311301.p?id=3332067&skuId=2311301&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311301', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311301_sa.jpg\"}', 'upc' => '602547170491', 'provider' => 'bestbuy'],\n ['name' => \"Song Out Of My Trees - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/song-out-of-my-trees-cd/2311448.p?id=3192698&skuId=2311448&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311448', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311448_sa.jpg\"}', 'upc' => '027312015423', 'provider' => 'bestbuy'],\n ['name' => \"Smokehouse - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/smokehouse-cd/2311457.p?id=3192753&skuId=2311457&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311457', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311457_sa.jpg\"}', 'upc' => '027312015720', 'provider' => 'bestbuy'],\n ['name' => \"Flute Music of the Andes - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/flute-music-of-the-andes-cd-various/2311466.p?id=72990&skuId=2311466&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311466', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311466_sa.jpg\"}', 'upc' => '076637030529', 'provider' => 'bestbuy'],\n ['name' => \"Edinburgh Military Tattoo: Bagpipe Marches of... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/edinburgh-military-tattoo-bagpipe-marches-of-various-cd/2311484.p?id=81318&skuId=2311484&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311484', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311484_sa.jpg\"}', 'upc' => '076637030925', 'provider' => 'bestbuy'],\n ['name' => \"Memories (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 58.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memories-box-cd/2311518.p?id=1419944&skuId=2311518&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311518', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311518.jpg\"}', 'upc' => '790051157227', 'provider' => 'bestbuy'],\n ['name' => \"Hits & Misses - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hits-misses-cd/2311527.p?id=1427472&skuId=2311527&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311527', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311527_sa.jpg\"}', 'upc' => '790051157241', 'provider' => 'bestbuy'],\n ['name' => \"Hello Stranger - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hello-stranger-cd/2311536.p?id=1431024&skuId=2311536&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311536', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311536_sa.jpg\"}', 'upc' => '790051157258', 'provider' => 'bestbuy'],\n ['name' => \"Jazz From The Hills - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jazz-from-the-hills-cd-various/2311545.p?id=1419937&skuId=2311545&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311545', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311545_sa.jpg\"}', 'upc' => '790051157289', 'provider' => 'bestbuy'],\n ['name' => \"West Texas Sky - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/west-texas-sky-cd/2311581.p?id=1417373&skuId=2311581&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311581', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311581_sa.jpg\"}', 'upc' => '790051157364', 'provider' => 'bestbuy'],\n ['name' => \"Sing Great Country Favorites [Bear Family] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-great-country-favorites-bear-family-cd/2311590.p?id=1419969&skuId=2311590&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311590', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311590_sa.jpg\"}', 'upc' => '790051157371', 'provider' => 'bestbuy'],\n ['name' => \"Crying My Heart Out Over You - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 26.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crying-my-heart-out-over-you-cd/2311616.p?id=1419921&skuId=2311616&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311616', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311616_sa.jpg\"}', 'upc' => '4000127157393', 'provider' => 'bestbuy'],\n ['name' => \"Four Platters & One Lovely Dish (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 149.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/four-platters-one-lovely-dish-box-cd/2311643.p?id=1427474&skuId=2311643&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311643', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311643.jpg\"}', 'upc' => '790051157418', 'provider' => 'bestbuy'],\n ['name' => \"It'S My Party (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/its-my-party-box-cd/2311661.p?id=1419977&skuId=2311661&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311661', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311661.jpg\"}', 'upc' => '790051157425', 'provider' => 'bestbuy'],\n ['name' => \"Shame, Shame, Shame - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 156.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/shame-shame-shame-cd/2311670.p?id=3382962&skuId=2311670&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311670', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311670_sa.jpg\"}', 'upc' => '4000127157454', 'provider' => 'bestbuy'],\n ['name' => \"Montana Slim: Praire Legend (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 129.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/montana-slim-praire-legend-box-cd/2311689.p?id=1524752&skuId=2311689&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311689', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311689_sa.jpg\"}', 'upc' => '790051157548', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonkin In Mississippi - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonkin-in-mississippi-cd/2311698.p?id=1586443&skuId=2311698&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311698', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311698_sa.jpg\"}', 'upc' => '790051157586', 'provider' => 'bestbuy'],\n ['name' => \"Truck Driving Man (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 20.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/truck-driving-man-box-cd/2311714.p?id=1419964&skuId=2311714&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311714', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311714_sa.jpg\"}', 'upc' => '790051157623', 'provider' => 'bestbuy'],\n ['name' => \"Honky Tonk Heroes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/honky-tonk-heroes-cd/2311723.p?id=1418602&skuId=2311723&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311723', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311723_sa.jpg\"}', 'upc' => '790051157753', 'provider' => 'bestbuy'],\n ['name' => \"Capitol Recordings (Box) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 241.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/capitol-recordings-box-cd/2311732.p?id=1419981&skuId=2311732&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311732', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311732.jpg\"}', 'upc' => '790051157760', 'provider' => 'bestbuy'],\n ['name' => \"Frankie Lymon & The Teenagers - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/frankie-lymon-the-teenagers-cd/2311741.p?id=1425633&skuId=2311741&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311741', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311741_sa.jpg\"}', 'upc' => '790051157821', 'provider' => 'bestbuy'],\n ['name' => \"German Military Marches - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/german-military-marches-cd/2311778.p?id=83526&skuId=2311778&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311778', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311778_sa.jpg\"}', 'upc' => '076637031427', 'provider' => 'bestbuy'],\n ['name' => \"The Best Of The Clancy Brothers And Tommy Makem - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-best-of-the-clancy-brothers-and-tommy-makem-cd/2311787.p?id=77855&skuId=2311787&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311787', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311787_sa.jpg\"}', 'upc' => '076637032028', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Music & Songs of Italy - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-music-songs-of-italy-cd-various/2311796.p?id=86445&skuId=2311796&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311796', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311796.jpg\"}', 'upc' => '076637032226', 'provider' => 'bestbuy'],\n ['name' => \"French Military Marches - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/french-military-marches-cd-various/2311858.p?id=82825&skuId=2311858&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311858', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311858_sa.jpg\"}', 'upc' => '076637033124', 'provider' => 'bestbuy'],\n ['name' => \"Traditional Music of Mexico - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traditional-music-of-mexico-cd/2311867.p?id=98925&skuId=2311867&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311867', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311867_sa.jpg\"}', 'upc' => '076637033421', 'provider' => 'bestbuy'],\n ['name' => \"1 2 3 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/1-2-3-cd/2311974.p?id=117461&skuId=2311974&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2311974', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2311\\/2311974.jpg\"}', 'upc' => '008781001728', 'provider' => 'bestbuy'],\n ['name' => \"Samsung - Protective Cover for Samsung Galaxy S 4 Mini Cell Phones - Light Blue\", 'description_short' => \"SAMSUNG Protective Cover for Samsung Galaxy S 4 Mini Cell Phones: Compatible with Samsung Galaxy S 4 Mini cell phones; polycarbonate material\", 'description_long' => \"SAMSUNG Protective Cover for Samsung Galaxy S 4 Mini Cell Phones: Compatible with Samsung Galaxy S 4 Mini cell phones; polycarbonate material\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/samsung-protective-cover-for-samsung-galaxy-s-4-mini-cell-phones-light-blue/2312067.p?id=1219543503997&skuId=2312067', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312067', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312067_sa.jpg\"}', 'upc' => '887276966564', 'provider' => 'bestbuy'],\n ['name' => \"Fanshawe: African Sanctus - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fanshawe-african-sanctus-cd/2312438.p?id=321611&skuId=2312438&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312438', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312438.jpg\"}', 'upc' => '738572600327', 'provider' => 'bestbuy'],\n ['name' => \"Live from London - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-from-london-cd/2312465.p?id=2123751&skuId=2312465&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312465', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312465.jpg\"}', 'upc' => '021471143027', 'provider' => 'bestbuy'],\n ['name' => \"After Midnight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/after-midnight-cd/2312606.p?id=110224&skuId=2312606&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312606', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312606_sa.jpg\"}', 'upc' => '015891372129', 'provider' => 'bestbuy'],\n ['name' => \"Wearing the Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/wearing-the-time-cd/2312615.p?id=110227&skuId=2312615&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312615', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312615_sa.jpg\"}', 'upc' => '015891104522', 'provider' => 'bestbuy'],\n ['name' => \"Songs From the Southern Mountains - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/songs-from-the-southern-mountains-cd/2312624.p?id=110223&skuId=2312624&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312624', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312624_sa.jpg\"}', 'upc' => '015891382920', 'provider' => 'bestbuy'],\n ['name' => \"Let Them Talk - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/let-them-talk-cd/2312642.p?id=110501&skuId=2312642&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312642', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312642_sa.jpg\"}', 'upc' => '033651006626', 'provider' => 'bestbuy'],\n ['name' => \"True to Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/true-to-life-cd/2312651.p?id=110498&skuId=2312651&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312651', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312651_sa.jpg\"}', 'upc' => '033651006725', 'provider' => 'bestbuy'],\n ['name' => \"Hi-Bop Ska - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hi-bop-ska-cd/2312688.p?id=110349&skuId=2312688&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312688', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312688_sa.jpg\"}', 'upc' => '016351451927', 'provider' => 'bestbuy'],\n ['name' => \"Mississippi Masters: Early American Blues... - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mississippi-masters-early-american-blues-cd/2312697.p?id=110357&skuId=2312697&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312697', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312697.jpg\"}', 'upc' => '016351200723', 'provider' => 'bestbuy'],\n ['name' => \"Memphis Masters: Early American Blues Classics - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/memphis-masters-early-american-blues-classics-cd/2312704.p?id=110354&skuId=2312704&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312704', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312704_sa.jpg\"}', 'upc' => '016351200822', 'provider' => 'bestbuy'],\n ['name' => \"Big Ones - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/big-ones-cd/2312857.p?id=109233&skuId=2312857&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312857', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312857_sa.jpg\"}', 'upc' => '720642471623', 'provider' => 'bestbuy'],\n ['name' => \"MTV Unplugged in New York - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mtv-unplugged-in-new-york-cd/2312875.p?id=108448&skuId=2312875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2312875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2312\\/2312875_sa.jpg\"}', 'upc' => '720642472729', 'provider' => 'bestbuy'],\n ['name' => \"Crock-Pot - 3.5-Quart Crock Casserole - Blue\", 'description_short' => \"High, low and warm settings; 9&quot; x 13&quot; casserole-shape, dishwasher-safe stoneware; see-through, dishwasher-safe lid; includes Campbell&#039;s recipe book\", 'description_long' => \"High, low and warm settings; 9&quot; x 13&quot; casserole-shape, dishwasher-safe stoneware; see-through, dishwasher-safe lid; includes Campbell&#039;s recipe book\", 'price' => 49.99, 'sale_price' => 38.99, 'url' => 'http://www.bestbuy.com/site/crock-pot-3-5-quart-crock-casserole-blue/2313075.p?id=1219540930386&skuId=2313075&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313075', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313075_rc.jpg\"}', 'upc' => '048894054785', 'provider' => 'bestbuy'],\n ['name' => \"Just So Happens - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/just-so-happens-cd/2313525.p?id=112492&skuId=2313525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313525_sa.jpg\"}', 'upc' => '782737100528', 'provider' => 'bestbuy'],\n ['name' => \"Harlem Sunset - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harlem-sunset-cd/2313589.p?id=111801&skuId=2313589&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313589', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313589_sa.jpg\"}', 'upc' => '782737100627', 'provider' => 'bestbuy'],\n ['name' => \"Free Trade - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/free-trade-cd/2313696.p?id=112637&skuId=2313696&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313696', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313696_sa.jpg\"}', 'upc' => '068944006427', 'provider' => 'bestbuy'],\n ['name' => \"Loose - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/loose-cd/2313703.p?id=112638&skuId=2313703&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313703', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313703_sa.jpg\"}', 'upc' => '068944006526', 'provider' => 'bestbuy'],\n ['name' => \"Music of Indonesia, Vol. 5: Betawi and... - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-indonesia-vol-5-betawi-and-various-cd/2313749.p?id=111703&skuId=2313749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313749_sa.jpg\"}', 'upc' => '093074042120', 'provider' => 'bestbuy'],\n ['name' => \"7-Toku - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/7-toku-cd/2313758.p?id=107342&skuId=2313758&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313758', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313758_sa.jpg\"}', 'upc' => '036172601820', 'provider' => 'bestbuy'],\n ['name' => \"Music of Indonesia, Vol. 6: Night Music of... - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/music-of-indonesia-vol-6-night-music-of-cd-various/2313767.p?id=111704&skuId=2313767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313767_sa.jpg\"}', 'upc' => '093074042229', 'provider' => 'bestbuy'],\n ['name' => \"Starlite Walker - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starlite-walker-cd/2313794.p?id=106665&skuId=2313794&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313794', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313794_sa.jpg\"}', 'upc' => '036172905522', 'provider' => 'bestbuy'],\n ['name' => \"Common Ground - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/common-ground-cd/2313838.p?id=112642&skuId=2313838&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313838', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313838_sa.jpg\"}', 'upc' => '746022110623', 'provider' => 'bestbuy'],\n ['name' => \"Starting Young - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/starting-young-cd/2313954.p?id=281871&skuId=2313954&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2313954', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2313\\/2313954_sa.jpg\"}', 'upc' => '722871115521', 'provider' => 'bestbuy'],\n ['name' => \"nabi - Screen Protectors for nabi Jr. (2-Pack) - Clear\", 'description_short' => \"Compatible with nabi Jr.; 3-layer structure; scratch-resistant; high-resolution clarity; bubble-free application\", 'description_long' => \"Compatible with nabi Jr.; 3-layer structure; scratch-resistant; high-resolution clarity; bubble-free application\", 'price' => 14.99, 'sale_price' => 5.99, 'url' => 'http://www.bestbuy.com/site/nabi-screen-protectors-for-nabi-jr-2-pack-clear/2314029.p?id=1219768988725&skuId=2314029&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314029', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314029_sa.jpg\"}', 'upc' => '858119003739', 'provider' => 'bestbuy'],\n ['name' => \"Amazon - Standing Origami Case for Kindle Fire HDX 7\\\" - Black\", 'description_short' => \"Compatible with Kindle Fire HDX 7&quot;; polyurethane material; microfiber interior; built-in Origami stand; automatic sleep-and-wake capability; integrated magnetic closure\", 'description_long' => \"Compatible with Kindle Fire HDX 7&quot;; polyurethane material; microfiber interior; built-in Origami stand; automatic sleep-and-wake capability; integrated magnetic closure\", 'price' => 50.49, 'sale_price' => 24.99, 'url' => 'http://www.bestbuy.com/site/amazon-standing-origami-case-for-kindle-fire-hdx-7-black/2314056.p?id=1219071546351&skuId=2314056&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314056', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314056_sa.jpg\"}', 'upc' => '848719015201', 'provider' => 'bestbuy'],\n ['name' => \"Terraria - PRE-OWNED - Xbox One\", 'description_short' => \"Build a world of pure imagination as you dig, fight and explore\", 'description_long' => \"Build a world of pure imagination as you dig, fight and explore\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/terraria-pre-owned-xbox-one/2314092.p?id=1219549288679&skuId=2314092&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314092', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314092_sa.jpg\"}', 'upc' => '799007841654', 'provider' => 'bestbuy'],\n ['name' => \"Sun Moon - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sun-moon-cd/2314249.p?id=2487527&skuId=2314249&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314249', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314249.jpg\"}', 'upc' => '022551006928', 'provider' => 'bestbuy'],\n ['name' => \"Harmonica According to Charlie - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/harmonica-according-to-charlie-cd/2314766.p?id=178735&skuId=2314766&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314766', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314766_sa.jpg\"}', 'upc' => '019148501621', 'provider' => 'bestbuy'],\n ['name' => \"Don't Stop Now! (Feat. Pete Christlieb) - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dont-stop-now-feat-pete-christlieb-cd/2314800.p?id=256682&skuId=2314800&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314800', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314800_sa.jpg\"}', 'upc' => '054987100123', 'provider' => 'bestbuy'],\n ['name' => \"Then and Now - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/then-and-now-cd/2314837.p?id=244430&skuId=2314837&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2314837', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2314\\/2314837_sa.jpg\"}', 'upc' => '054987100222', 'provider' => 'bestbuy'],\n ['name' => \"Ellington Is Forever, Vol. 2 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/ellington-is-forever-vol-2-cd/2315015.p?id=112973&skuId=2315015&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315015', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315015_sa.jpg\"}', 'upc' => '025218790826', 'provider' => 'bestbuy'],\n ['name' => \"Crock-Pot - 3-Quart Double Slow Cooker - Charcoal\", 'description_short' => \"Low, high and warm heat settings; connectable entertainment system; removable stoneware; dishwasher-safe parts; stackable hook-ups\", 'description_long' => \"Low, high and warm heat settings; connectable entertainment system; removable stoneware; dishwasher-safe parts; stackable hook-ups\", 'price' => 59.99, 'sale_price' => 56.99, 'url' => 'http://www.bestbuy.com/site/crock-pot-3-quart-double-slow-cooker-charcoal/2315028.p?id=1219540930387&skuId=2315028&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315028_rc.jpg\"}', 'upc' => '048894049279', 'provider' => 'bestbuy'],\n ['name' => \"When Farmer Met Gryce - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/when-farmer-met-gryce-cd/2315444.p?id=156194&skuId=2315444&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315444', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315444.jpg\"}', 'upc' => '025218607223', 'provider' => 'bestbuy'],\n ['name' => \"Out of the Forrest - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/out-of-the-forrest-cd/2315453.p?id=155625&skuId=2315453&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315453', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315453_sa.jpg\"}', 'upc' => '025218609722', 'provider' => 'bestbuy'],\n ['name' => \"Bird on 52nd St. - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bird-on-52nd-st-cd/2315462.p?id=131111&skuId=2315462&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315462', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315462_sa.jpg\"}', 'upc' => '025218611428', 'provider' => 'bestbuy'],\n ['name' => \"Blue's Moods - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/blues-moods-cd/2315471.p?id=69203&skuId=2315471&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315471', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315471_sa.jpg\"}', 'upc' => '025218613828', 'provider' => 'bestbuy'],\n ['name' => \"A Flower Is a Lovesome Thing - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 15.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-flower-is-a-lovesome-thing-cd/2315514.p?id=67030&skuId=2315514&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315514', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315514_sa.jpg\"}', 'upc' => '025218623520', 'provider' => 'bestbuy'],\n ['name' => \"Giant Steps - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/giant-steps-cd/2315532.p?id=67375&skuId=2315532&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315532', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315532_sa.jpg\"}', 'upc' => '025218634427', 'provider' => 'bestbuy'],\n ['name' => \"The Concert Years [Box] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 33.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-concert-years-box-cd/2315541.p?id=66350&skuId=2315541&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315541', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315541_sa.jpg\"}', 'upc' => '025218441421', 'provider' => 'bestbuy'],\n ['name' => \"Soul Meeting [Compilation] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-meeting-compilation-cd/2315612.p?id=113000&skuId=2315612&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2315612', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2315\\/2315612_sa.jpg\"}', 'upc' => '025218543323', 'provider' => 'bestbuy'],\n ['name' => \"Crock-Pot - 2-Quart Double Slow Cooker - Charcoal\", 'description_short' => \"Switch controls; low, high and warm settings; connectable entertainment system; plugs into outlet or 2nd slow cooker (not included); nonslip base; cool-touch exterior; dishwasher-safe; removable stoneware\", 'description_long' => \"Switch controls; low, high and warm settings; connectable entertainment system; plugs into outlet or 2nd slow cooker (not included); nonslip base; cool-touch exterior; dishwasher-safe; removable stoneware\", 'price' => 49.99, 'sale_price' => 41.99, 'url' => 'http://www.bestbuy.com/site/crock-pot-2-quart-double-slow-cooker-charcoal/2316018.p?id=1219540930392&skuId=2316018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2316018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2316\\/2316018_rc.jpg\"}', 'upc' => '048894049330', 'provider' => 'bestbuy'],\n ['name' => \"Sabian - 19\\\" Vault Holy China Cymbal - Natural\", 'description_short' => \"From our expanded online assortment; compatible with most acoustic drum kits; thin weight; brilliant finish; loud and cutting sound\", 'description_long' => \"From our expanded online assortment; compatible with most acoustic drum kits; thin weight; brilliant finish; loud and cutting sound\", 'price' => 269.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sabian-19-vault-holy-china-cymbal-natural/2316066.p?id=1218320403992&skuId=2316066&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2316066', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{null}', 'upc' => '622537063695', 'provider' => 'bestbuy'],\n ['name' => \"Love Within the Universe - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/love-within-the-universe-cd/2316078.p?id=108916&skuId=2316078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2316078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2316\\/2316078_sa.jpg\"}', 'upc' => '794787100922', 'provider' => 'bestbuy'],\n ['name' => \"CrazySexyCool - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crazysexycool-cd/2316648.p?id=109121&skuId=2316648&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2316648', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2316\\/2316648_sa.jpg\"}', 'upc' => '730082600927', 'provider' => 'bestbuy'],\n ['name' => \"The Most Beautifullest Thing in This World - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-most-beautifullest-thing-in-this-world-cd/2317095.p?id=109128&skuId=2317095&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317095', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317095_sa.jpg\"}', 'upc' => '012414155528', 'provider' => 'bestbuy'],\n ['name' => \"Zmodo - Surveillance Camera\", 'description_short' => \"1/3&quot; Sony color CCD sensor; night vision up to 80&#039;; 360&#176; pan rotation; 90&#176; tilt rotation\", 'description_long' => \"1/3&quot; Sony color CCD sensor; night vision up to 80&#039;; 360&#176; pan rotation; 90&#176; tilt rotation\", 'price' => 84.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zmodo-surveillance-camera/2317104.p?id=1219071543605&skuId=2317104', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317104', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317104_500x500_sa.jpg\"}', 'upc' => '846655000862', 'provider' => 'bestbuy'],\n ['name' => \"Zmodo - 8-Channel, 8-Camera Indoor/Outdoor Security System - Black\", 'description_short' => \"Includes an 8-channel DVR and 8 outdoor IR security cameras; 1/4&quot; color CMOS image sensor; IR night vision up to 65&#039;; PTZ (pan/tilt/zoom) camera control\", 'description_long' => \"Includes an 8-channel DVR and 8 outdoor IR security cameras; 1/4&quot; color CMOS image sensor; IR night vision up to 65&#039;; PTZ (pan/tilt/zoom) camera control\", 'price' => 289.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/zmodo-8-channel-8-camera-indoor-outdoor-security-system-black/2317122.p?id=1219071537156&skuId=2317122', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317122', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317122_sa.jpg\"}', 'upc' => '846655011615', 'provider' => 'bestbuy'],\n ['name' => \"Crock-Pot - 2-Quart Double-Crock Slow Cooker - Charcoal\", 'description_short' => \"Switch controls; low, high and warm settings; connectable entertainment system; plugs into outlet or 2nd slow cooker (not included); nonslip base; cool-touch exterior; dishwasher-safe; two 1-quart crocks\", 'description_long' => \"Switch controls; low, high and warm settings; connectable entertainment system; plugs into outlet or 2nd slow cooker (not included); nonslip base; cool-touch exterior; dishwasher-safe; two 1-quart crocks\", 'price' => 59.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crock-pot-2-quart-double-crock-slow-cooker-charcoal/2317429.p?id=1219540930388&skuId=2317429&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317429', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317429_rc.jpg\"}', 'upc' => '048894049323', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $15 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 15, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-15-un-cumpleanos-fenomenal-birthday-gift-card/2317784.p?id=null&skuId=2317784&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317784', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317784_sc.jpg\"}', 'upc' => '400023177848', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $20 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 20, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-20-un-cumpleanos-fenomenal-birthday-gift-card/2317802.p?id=null&skuId=2317802&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317802', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317802_sc.jpg\"}', 'upc' => '400023178029', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $25 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 25, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-25-un-cumpleanos-fenomenal-birthday-gift-card/2317811.p?id=null&skuId=2317811&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317811', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317811_sc.jpg\"}', 'upc' => '400023178111', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $30 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 30, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-30-un-cumpleanos-fenomenal-birthday-gift-card/2317839.p?id=null&skuId=2317839&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317839', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317839_sc.jpg\"}', 'upc' => '400023178395', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $50 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 50, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-50-un-cumpleanos-fenomenal-birthday-gift-card/2317848.p?id=null&skuId=2317848&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317848', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317848_sc.jpg\"}', 'upc' => '400023178487', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $60 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 60, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-60-un-cumpleanos-fenomenal-birthday-gift-card/2317866.p?id=null&skuId=2317866&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317866', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317866_sc.jpg\"}', 'upc' => '400023178661', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $75 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 75, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-75-un-cumpleanos-fenomenal-birthday-gift-card/2317875.p?id=null&skuId=2317875&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317875', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317875_sc.jpg\"}', 'upc' => '400023178753', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $100 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 100, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-100-un-cumpleanos-fenomenal-birthday-gift-card/2317884.p?id=null&skuId=2317884&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317884', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317884_sc.jpg\"}', 'upc' => '400023178845', 'provider' => 'bestbuy'],\n ['name' => \"Best Buy GC - $200 Un Cumpleaños Fenomenal Birthday Gift Card\", 'description_short' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'description_long' => \"Un Cumplea&#241;os Fenomenal gift card; shipped free; no expiration date or fees; safeguards against theft protect your purchase; good toward any purchase online and in US or Puerto Rico Best Buy stores\", 'price' => 200, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/best-buy-gc-200-un-cumpleanos-fenomenal-birthday-gift-card/2317893.p?id=null&skuId=2317893&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2317893', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2317\\/2317893_sc.jpg\"}', 'upc' => '400023178937', 'provider' => 'bestbuy'],\n ['name' => \"Scribblenauts Unmasked - A DC Comics Adventure - PRE-OWNED - Nintendo 3DS\", 'description_short' => \"Blend quirky Scribblenauts art with the epic action of DC Comics\", 'description_long' => \"Blend quirky Scribblenauts art with the epic action of DC Comics\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scribblenauts-unmasked-a-dc-comics-adventure-pre-owned-nintendo-3ds/2318007.p?id=1219071544649&skuId=2318007&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2318007', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2318\\/2318007_sa.jpg\"}', 'upc' => '799007835691', 'provider' => 'bestbuy'],\n ['name' => \"Metra - Dash Kit for Select 1995-1999 Saturn Saturn all - Black\", 'description_short' => \"From our expanded online assortment; compatible with most 1995-1999 Saturn vehicles; allows for installation of an aftermarket radio into the factory dash location; ABS plastic material\", 'description_long' => \"From our expanded online assortment; compatible with most 1995-1999 Saturn vehicles; allows for installation of an aftermarket radio into the factory dash location; ABS plastic material\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/metra-dash-kit-for-select-1995-1999-saturn-saturn-all-black/2318806.p?id=1218118704525&skuId=2318806', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2318806', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2318\\/2318806_sa.jpg\"}', 'upc' => '086429017775', 'provider' => 'bestbuy'],\n ['name' => \"Soul Shoutin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/soul-shoutin-cd/2318913.p?id=113011&skuId=2318913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2318913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2318\\/2318913_sa.jpg\"}', 'upc' => '025218514224', 'provider' => 'bestbuy'],\n ['name' => \"Armored Core: Verdict Day - PRE-OWNED - PlayStation 3\", 'description_short' => \"Survive a landscape desolated by war\", 'description_long' => \"Survive a landscape desolated by war\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/armored-core-verdict-day-pre-owned-playstation-3/2319006.p?id=1219071539849&skuId=2319006&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319006', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319006_sa.jpg\"}', 'upc' => '799007835707', 'provider' => 'bestbuy'],\n ['name' => \"Keystone Bop: Sunday Night - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/keystone-bop-sunday-night-cd/2319191.p?id=113015&skuId=2319191&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319191', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319191_sa.jpg\"}', 'upc' => '025218514620', 'provider' => 'bestbuy'],\n ['name' => \"Brother Jack McDuff Live! - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/brother-jack-mcduff-live-cd/2319235.p?id=113017&skuId=2319235&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319235', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319235.jpg\"}', 'upc' => '025218514729', 'provider' => 'bestbuy'],\n ['name' => \"Tical - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tical-cd/2319422.p?id=109664&skuId=2319422&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319422', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319422_sa.jpg\"}', 'upc' => '731452383921', 'provider' => 'bestbuy'],\n ['name' => \"Verve Jazz Masters 34 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/verve-jazz-masters-34-cd/2319627.p?id=109858&skuId=2319627&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319627', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319627_sa.jpg\"}', 'upc' => '731452185624', 'provider' => 'bestbuy'],\n ['name' => \"Verve Jazz Masters 38 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/verve-jazz-masters-38-cd/2319663.p?id=109857&skuId=2319663&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319663', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319663_sa.jpg\"}', 'upc' => '731451693120', 'provider' => 'bestbuy'],\n ['name' => \"Hello, Dolly! [Original Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hello-dolly-original-soundtrack-cd-original-soundtrack/2319690.p?id=85197&skuId=2319690&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2319690', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2319\\/2319690_sa.jpg\"}', 'upc' => '042281036828', 'provider' => 'bestbuy'],\n ['name' => \"Pro Evolution Soccer 2014 - PRE-OWNED - PlayStation 3\", 'description_short' => \"Revel in the heart of authentic professional soccer\", 'description_long' => \"Revel in the heart of authentic professional soccer\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pro-evolution-soccer-2014-pre-owned-playstation-3/2320001.p?id=1219071540248&skuId=2320001&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320001', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320001_sa.jpg\"}', 'upc' => '799007835714', 'provider' => 'bestbuy'],\n ['name' => \"The Golem [Slipcase] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-golem-slipcase-cd/2320041.p?id=2196642&skuId=2320041&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320041', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320041_sa.jpg\"}', 'upc' => '755491189429', 'provider' => 'bestbuy'],\n ['name' => \"Mobbin Thru Da West [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mobbin-thru-da-west-pa-cd/2320078.p?id=2327062&skuId=2320078&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320078', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320078_sa.jpg\"}', 'upc' => '618763708721', 'provider' => 'bestbuy'],\n ['name' => \"The Tonite Show With Messy Marv [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-tonite-show-with-messy-marv-pa-cd/2320087.p?id=2199790&skuId=2320087&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320087', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320087.jpg\"}', 'upc' => '847108059499', 'provider' => 'bestbuy'],\n ['name' => \"17 Exitos Canciones y Corridos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/17-exitos-canciones-y-corridos-cd/2320102.p?id=2154457&skuId=2320102&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320102', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '079508233623', 'provider' => 'bestbuy'],\n ['name' => \"Corridos de Amor - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/corridos-de-amor-cd/2320111.p?id=2154286&skuId=2320111&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320111', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320111.jpg\"}', 'upc' => '064313594625', 'provider' => 'bestbuy'],\n ['name' => \"Traicion Federal - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traicion-federal-cd/2320139.p?id=2151190&skuId=2320139&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320139', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/nonsku\\/default_music_l.jpg\"}', 'upc' => '064313414626', 'provider' => 'bestbuy'],\n ['name' => \"17 Exitos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/17-exitos-cd/2320148.p?id=2154456&skuId=2320148&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320148', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320148.jpg\"}', 'upc' => '064313533228', 'provider' => 'bestbuy'],\n ['name' => \"17 Exitos [Brentwood] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/17-exitos-brentwood-cd/2320157.p?id=1434907&skuId=2320157&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320157', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320157.jpg\"}', 'upc' => '064313233425', 'provider' => 'bestbuy'],\n ['name' => \"World Record - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/world-record-cd/2320166.p?id=2198868&skuId=2320166&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320166', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320166_sa.jpg\"}', 'upc' => '894587001587', 'provider' => 'bestbuy'],\n ['name' => \"H-Town Chronic, Vol. 5 [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/h-town-chronic-vol-5-pa-cd/2320184.p?id=2198870&skuId=2320184&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320184', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320184_sa.jpg\"}', 'upc' => '786984092223', 'provider' => 'bestbuy'],\n ['name' => \"Serve and Collect 3 (Immahogg) [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/serve-and-collect-3-immahogg-pa-cd/2320193.p?id=2198871&skuId=2320193&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320193', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320193_sa.jpg\"}', 'upc' => '099923514428', 'provider' => 'bestbuy'],\n ['name' => \"Cali Rollercoaster [CD & DVD] [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/cali-rollercoaster-cd-dvd-pa-cd/2320209.p?id=2198872&skuId=2320209&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320209', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320209.jpg\"}', 'upc' => '644250206920', 'provider' => 'bestbuy'],\n ['name' => \"I'm Back - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/im-back-cd/2320218.p?id=2198873&skuId=2320218&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320218', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320218_sa.jpg\"}', 'upc' => '747656310120', 'provider' => 'bestbuy'],\n ['name' => \"Silent Assassin [PA] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/silent-assassin-pa-cd/2320227.p?id=2198874&skuId=2320227&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320227', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320227_sa.jpg\"}', 'upc' => '099923516323', 'provider' => 'bestbuy'],\n ['name' => \"Exit 110 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/exit-110-cd/2320236.p?id=2198875&skuId=2320236&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320236', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320236_sa.jpg\"}', 'upc' => '891143001463', 'provider' => 'bestbuy'],\n ['name' => \"Welcome to My DNA - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/welcome-to-my-dna-cd/2320245.p?id=2198876&skuId=2320245&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320245', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320245_sa.jpg\"}', 'upc' => '802644816821', 'provider' => 'bestbuy'],\n ['name' => \"Nü Revolution [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nu-revolution-digipak-cd/2320254.p?id=2198877&skuId=2320254&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320254', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320254_sa.jpg\"}', 'upc' => '016351578822', 'provider' => 'bestbuy'],\n ['name' => \"The Icarus EP [CD & DVD] [EP] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-icarus-ep-cd-dvd-ep-cd/2320263.p?id=2198878&skuId=2320263&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320263', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320263.jpg\"}', 'upc' => '894587001488', 'provider' => 'bestbuy'],\n ['name' => \"Riches, Royalty & Respect [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/riches-royalty-respect-pa-digipak-cd/2320272.p?id=2198879&skuId=2320272&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320272', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320272_sa.jpg\"}', 'upc' => '659123514224', 'provider' => 'bestbuy'],\n ['name' => \"Richard M. Nixon: The Nixon Tapes - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/richard-m-nixon-the-nixon-tapes-cd/2320991.p?id=109165&skuId=2320991&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2320991', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2320\\/2320991_sa.jpg\"}', 'upc' => '739497703520', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Office Chair - Espresso\", 'description_short' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'description_long' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'price' => 179.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-office-chair-espresso/2321028.p?id=1219071546982&skuId=2321028', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321028', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321028_sa.jpg\"}', 'upc' => '631680900511', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Elektra TV Stand for Most Flat-Panel TVs Up to 50\\\" - Black\", 'description_short' => \"Wood veneer material; tempered safety-glass component shelving; chrome cylinder shelf supports; wire management\", 'description_long' => \"Wood veneer material; tempered safety-glass component shelving; chrome cylinder shelf supports; wire management\", 'price' => 239.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-elektra-tv-stand-for-most-flat-panel-tvs-up-to-50-black/2321037.p?id=1219071840150&skuId=2321037', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321037', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321037_sa.jpg\"}', 'upc' => '846158006705', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Elektra 3-in-1 TV Mount System for Most Flat-Panel TVs Up to 60\\\" - Cherry\", 'description_short' => \"Supports most TVs up to 60&quot; or 150 lbs.; wood veneer material; tempered safety-glass component shelves; chrome cylinder shelf supports; back post; wall-mountable\", 'description_long' => \"Supports most TVs up to 60&quot; or 150 lbs.; wood veneer material; tempered safety-glass component shelves; chrome cylinder shelf supports; back post; wall-mountable\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-elektra-3-in-1-tv-mount-system-for-most-flat-panel-tvs-up-to-60-cherry/2321046.p?id=1219071846153&skuId=2321046&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321046', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321046_sa.jpg\"}', 'upc' => '846158006736', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Executive Chair - Black\", 'description_short' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'description_long' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'price' => 229.99, 'sale_price' => 138.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-executive-chair-black/2321064.p?id=1219071538179&skuId=2321064&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321064', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321064_sa.jpg\"}', 'upc' => '846158004992', 'provider' => 'bestbuy'],\n ['name' => \"The Battlefield Band - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-battlefield-band-cd/2321071.p?id=156694&skuId=2321071&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321071', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321071_sa.jpg\"}', 'upc' => '096045005520', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Makena 3-in-1 TV Mount System for Most Flat-Panel TVs Up to 60\\\" - Cherry\", 'description_short' => \"Wood veneer material; 3 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; wire management\", 'description_long' => \"Wood veneer material; 3 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; wire management\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-makena-3-in-1-tv-mount-system-for-most-flat-panel-tvs-up-to-60-cherry/2321073.p?id=1219071848496&skuId=2321073', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321073', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321073_sa.jpg\"}', 'upc' => '846158002844', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Executive Chair - Black\", 'description_short' => \"Padded seat cushion; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; matching upholstered arm rests\", 'description_long' => \"Padded seat cushion; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; matching upholstered arm rests\", 'price' => 219.99, 'sale_price' => 152.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-executive-chair-black/2321091.p?id=1219071545504&skuId=2321091', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321091', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321091_sa.jpg\"}', 'upc' => '846158005012', 'provider' => 'bestbuy'],\n ['name' => \"At the Front - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/at-the-front-cd/2321106.p?id=155465&skuId=2321106&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321106', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321106_sa.jpg\"}', 'upc' => '096045005629', 'provider' => 'bestbuy'],\n ['name' => \"Groove Time - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/groove-time-cd/2321197.p?id=110627&skuId=2321197&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321197', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321197_sa.jpg\"}', 'upc' => '014551482727', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Aviton TV Stand for Most Flat-Panel TVs Up to 55\\\" - Black\", 'description_short' => \"Metal material; 2 tempered safety-glass component shelves; chrome cylinder supports; wire management\", 'description_long' => \"Metal material; 2 tempered safety-glass component shelves; chrome cylinder supports; wire management\", 'price' => 219.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-aviton-tv-stand-for-most-flat-panel-tvs-up-to-55-black/2321211.p?id=1219071845255&skuId=2321211&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321211', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321211_sa.jpg\"}', 'upc' => '846158001489', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Merako Highboy TV Console for Most Flat-Panel TVs Up to 60\\\" - Espresso\", 'description_short' => \"Wood veneer material; solid-wood door frames with glass; tempered safety-glass top; adjustable tempered-glass shelves; wire management\", 'description_long' => \"Wood veneer material; solid-wood door frames with glass; tempered safety-glass top; adjustable tempered-glass shelves; wire management\", 'price' => 399.99, 'sale_price' => 314.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-merako-highboy-tv-console-for-most-flat-panel-tvs-up-to-60-espresso/2321239.p?id=1219071845578&skuId=2321239', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321239', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321239_sa.jpg\"}', 'upc' => '846158004749', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Nero Computer Desk - Black/Clear\", 'description_short' => \"Powdercoat metal frame; tempered safety-glass desktop; pull-out keyboard tray; attached 3-tier bookcase\", 'description_long' => \"Powdercoat metal frame; tempered safety-glass desktop; pull-out keyboard tray; attached 3-tier bookcase\", 'price' => 159.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-nero-computer-desk-black-clear/2321257.p?id=1219071842262&skuId=2321257&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321257', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321257_sa.jpg\"}', 'upc' => '631680900245', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Office Chair - Black\", 'description_short' => \"Padded seat cushion; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; adjustable arm rest height\", 'description_long' => \"Padded seat cushion; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; adjustable arm rest height\", 'price' => 149.99, 'sale_price' => 97.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-office-chair-black/2321293.p?id=1219071547634&skuId=2321293', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321293', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321293_500x500_sa.jpg\"}', 'upc' => '846158003513', 'provider' => 'bestbuy'],\n ['name' => \"Crescent with Love - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/crescent-with-love-cd/2321295.p?id=110231&skuId=2321295&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321295', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321295_sa.jpg\"}', 'upc' => '730182209921', 'provider' => 'bestbuy'],\n ['name' => \"Panamanhattan - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/panamanhattan-cd/2321302.p?id=110233&skuId=2321302&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321302', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321302_sa.jpg\"}', 'upc' => '730182210026', 'provider' => 'bestbuy'],\n ['name' => \"Tribute to Wes Montgomery - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/tribute-to-wes-montgomery-cd-various/2321311.p?id=110235&skuId=2321311&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321311', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321311_sa.jpg\"}', 'upc' => '730182210125', 'provider' => 'bestbuy'],\n ['name' => \"Autumn Leaves: Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/autumn-leaves-live-at-sweet-basil-cd/2321320.p?id=110236&skuId=2321320&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321320', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321320_sa.jpg\"}', 'upc' => '730182210224', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Cyrus Computer Desk - Cherry/Black\", 'description_short' => \"Metal material; tempered-glass desktop; chrome cylinder supports; pull-out keyboard-and-mouse tray; casters\", 'description_long' => \"Metal material; tempered-glass desktop; chrome cylinder supports; pull-out keyboard-and-mouse tray; casters\", 'price' => 199.99, 'sale_price' => 184.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-cyrus-computer-desk-cherry-black/2321325.p?id=1219071843536&skuId=2321325', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321325', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321325_sa.jpg\"}', 'upc' => '846158002677', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Paris 3-in-1 TV Mount System for Most Flat-Panel TVs Up to 70\\\" - Bronze\", 'description_short' => \"Bronze powdercoat frame; mahogany accents; 3 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; wire management\", 'description_long' => \"Bronze powdercoat frame; mahogany accents; 3 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; wire management\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-paris-3-in-1-tv-mount-system-for-most-flat-panel-tvs-up-to-70-bronze/2321334.p?id=1219071840946&skuId=2321334&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321334', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321334_sa.jpg\"}', 'upc' => '846158002851', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2321339.p?id=110237&skuId=2321339&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321339', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321339_sa.jpg\"}', 'upc' => '730182210323', 'provider' => 'bestbuy'],\n ['name' => \"Live at Sweet Basil - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-sweet-basil-cd/2321348.p?id=110238&skuId=2321348&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321348', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321348_sa.jpg\"}', 'upc' => '730182210422', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Executive Chair - Black\", 'description_short' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'description_long' => \"Deluxe-memory-foam seat; contoured seat and back; built-in lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'price' => 179.99, 'sale_price' => 147.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-executive-chair-black/2321352.p?id=1219071540112&skuId=2321352&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321352', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321352_sa.jpg\"}', 'upc' => '631680900542', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Sync 3-in-1 TV Mount System for Most Flat-Panel TVs Up to 60\\\" - Black\", 'description_short' => \"Wood material; 2 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; storage drawer\", 'description_long' => \"Wood material; 2 tempered safety-glass component shelves; chrome cylinder supports; 3-in-1 mount system; storage drawer\", 'price' => 449.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-sync-3-in-1-tv-mount-system-for-most-flat-panel-tvs-up-to-60-black/2321361.p?id=1219071843412&skuId=2321361&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321361', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321361_sa.jpg\"}', 'upc' => '631680101055', 'provider' => 'bestbuy'],\n ['name' => \"Bandstand Memories: 1938 to 1948 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 24.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bandstand-memories-1938-to-1948-cd/2321375.p?id=137124&skuId=2321375&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321375', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321375_sa.jpg\"}', 'upc' => '014921050327', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Leather Executive Chair - Brown\", 'description_short' => \"Deluxe-memory-foam seat; contoured seat and back with lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'description_long' => \"Deluxe-memory-foam seat; contoured seat and back with lumbar support; pneumatic seat height adjustment; butterfly seat plate; waterfall seat edge; leather-upholstered arm rests\", 'price' => 199.99, 'sale_price' => 130.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-leather-executive-chair-brown/2321398.p?id=1219071538886&skuId=2321398', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321398', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321398_500x500_sa.jpg\"}', 'upc' => '846158005029', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Willow 3-in-1 TV Mount System for Most Flat-Panel TVs Up to 60\\\" - Brown\", 'description_short' => \"Wood veneer material; tempered safety-glass component shelving; chrome cylinder supports; 3-in-1 mount system; wire management\", 'description_long' => \"Wood veneer material; tempered safety-glass component shelving; chrome cylinder supports; 3-in-1 mount system; wire management\", 'price' => 399.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/z-line-designs-willow-3-in-1-tv-mount-system-for-most-flat-panel-tvs-up-to-60-brown/2321412.p?id=1219071842715&skuId=2321412', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321412', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321412_sa.jpg\"}', 'upc' => '846158006699', 'provider' => 'bestbuy'],\n ['name' => \"Z-Line Designs - Brisa Computer Desk - Cherry/Clear\", 'description_short' => \"Metal and tempered-glass materials; raised monitor shelf; pull-out mouse-and-keyboard tray\", 'description_long' => \"Metal and tempered-glass materials; raised monitor shelf; pull-out mouse-and-keyboard tray\", 'price' => 199.99, 'sale_price' => 142.99, 'url' => 'http://www.bestbuy.com/site/z-line-designs-brisa-computer-desk-cherry-clear/2321421.p?id=1219071842713&skuId=2321421', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321421', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321421_500x500_sa.jpg\"}', 'upc' => '631680900412', 'provider' => 'bestbuy'],\n ['name' => \"Bach: Cantatas BWV 80 & 147 / Antal, Kertesi, Nemeth, et al - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bach-cantatas-bwv-80-147-antal-kertesi-nemeth-et-al-cd/2321525.p?id=1782698&skuId=2321525&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321525', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321525.jpg\"}', 'upc' => '730099564229', 'provider' => 'bestbuy'],\n ['name' => \"Masses For 4 & 5 Voices - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masses-for-4-5-voices-cd/2321534.p?id=1681953&skuId=2321534&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321534', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321534.jpg\"}', 'upc' => '730099557429', 'provider' => 'bestbuy'],\n ['name' => \"Sing \\\"A Lover's Concerto\\\" and \\\"Attack!\\\" - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sing-a-lovers-concerto-and-attack-cd/2321749.p?id=102120&skuId=2321749&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321749', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321749_sa.jpg\"}', 'upc' => '090771603425', 'provider' => 'bestbuy'],\n ['name' => \"By the Time It Gets Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/by-the-time-it-gets-dark-cd/2321767.p?id=111495&skuId=2321767&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321767', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321767_sa.jpg\"}', 'upc' => '739341001321', 'provider' => 'bestbuy'],\n ['name' => \"Border Town at Midnight - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/border-town-at-midnight-cd/2321785.p?id=119762&skuId=2321785&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321785', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321785_sa.jpg\"}', 'upc' => '045507141726', 'provider' => 'bestbuy'],\n ['name' => \"Desires - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/desires-cd/2321829.p?id=110841&skuId=2321829&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2321829', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2321\\/2321829_sa.jpg\"}', 'upc' => '767591100228', 'provider' => 'bestbuy'],\n ['name' => \"FIFA 14 - PRE-OWNED - PS Vita\", 'description_short' => \"Do you have what it takes to face off against soccer&#039;s most talented players?\", 'description_long' => \"Do you have what it takes to face off against soccer&#039;s most talented players?\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fifa-14-pre-owned-ps-vita/2322009.p?id=1219071541551&skuId=2322009&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322009', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322009_sa.jpg\"}', 'upc' => '799007835738', 'provider' => 'bestbuy'],\n ['name' => \"Guilty Gear Xrd -SIGN- - PRE-OWNED - PlayStation 4\", 'description_short' => \"Leap into fast-paced fighting action rendered in stunning 3D animation\", 'description_long' => \"Leap into fast-paced fighting action rendered in stunning 3D animation\", 'price' => 39.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/guilty-gear-xrd-sign-pre-owned-playstation-4/2322018.p?id=1219551028158&skuId=2322018&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322018', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322018_sa.jpg\"}', 'upc' => '799007841661', 'provider' => 'bestbuy'],\n ['name' => \"Scream 4 [Original Motion Picture Soundtrack] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/scream-4-original-motion-picture-soundtrack-cd-original-soundtrack/2322049.p?id=2198865&skuId=2322049&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322049', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322049_sa.jpg\"}', 'upc' => '780163417326', 'provider' => 'bestbuy'],\n ['name' => \"Amped Wireless - High-Power Wireless-AC 700mW Gigabit Dual-Band Access Point\", 'description_short' => \"Up to 1200 Mbps data transfer rates; plug-and-play setup; extends Wi-Fi coverage up to 8,000 sq. ft.\", 'description_long' => \"Up to 1200 Mbps data transfer rates; plug-and-play setup; extends Wi-Fi coverage up to 8,000 sq. ft.\", 'price' => 169.99, 'sale_price' => 129.99, 'url' => 'http://www.bestbuy.com/site/amped-wireless-high-power-wireless-ac-700mw-gigabit-dual-band-access-point/2322054.p?id=1219071537161&skuId=2322054&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322054', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310231054\\/1310231054_sa.jpg\"}', 'upc' => '850214003676', 'provider' => 'bestbuy'],\n ['name' => \"Sigh No More [Deluxe CD/DVD Edition] [CD & DVD] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 27.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/sigh-no-more-deluxe-cd-dvd-edition-cd-dvd-cd/2322058.p?id=2193830&skuId=2322058&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322058', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322058_sa.jpg\"}', 'upc' => '892038002343', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Slip 50' In-Wall Speaker Cable - White\", 'description_short' => \"Compatible with most receivers and amplifiers; semisolid concentric-pack and solid long-grain copper conductors; low-inductance spiral geometry; EasySLiP outer jacket; 2 x 16 AWG\", 'description_long' => \"Compatible with most receivers and amplifiers; semisolid concentric-pack and solid long-grain copper conductors; low-inductance spiral geometry; EasySLiP outer jacket; 2 x 16 AWG\", 'price' => 59.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-slip-50-in-wall-speaker-cable-white/2322063.p?id=1219071538951&skuId=2322063&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322063', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310264793\\/1310264793_sa.jpg\"}', 'upc' => '092592080928', 'provider' => 'bestbuy'],\n ['name' => \"AudioQuest - Slip 50' In-Wall Speaker Cable - White\", 'description_short' => \"Compatible with most receivers and amplifiers; semisolid concentric-pack and solid long-grain copper conductors; low-inductance spiral geometry; EasySLiP outer jacket; 4 x 16 AWG\", 'description_long' => \"Compatible with most receivers and amplifiers; semisolid concentric-pack and solid long-grain copper conductors; low-inductance spiral geometry; EasySLiP outer jacket; 4 x 16 AWG\", 'price' => 89.98, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/audioquest-slip-50-in-wall-speaker-cable-white/2322072.p?id=1219071537168&skuId=2322072&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322072', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/pac\\/products\\/1310\\/1310264816\\/1310264816_sa.jpg\"}', 'upc' => '092592080942', 'provider' => 'bestbuy'],\n ['name' => \"Unida Cantina [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/unida-cantina-digipak-cd/2322076.p?id=2196652&skuId=2322076&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322076', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322076.jpg\"}', 'upc' => '626570612001', 'provider' => 'bestbuy'],\n ['name' => \"Club Life, Vol. 1: Las Vegas - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/club-life-vol-1-las-vegas-cd/2322085.p?id=2196772&skuId=2322085&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322085', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322085_sa.jpg\"}', 'upc' => '608866689225', 'provider' => 'bestbuy'],\n ['name' => \"The Peel Sessions - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-peel-sessions-cd/2322094.p?id=2211475&skuId=2322094&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322094', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322094.jpg\"}', 'upc' => '5024545609820', 'provider' => 'bestbuy'],\n ['name' => \"Live at the A-Trane [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/live-at-the-a-trane-digipak-cd/2322119.p?id=2198001&skuId=2322119&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322119', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322119_sa.jpg\"}', 'upc' => '843041011938', 'provider' => 'bestbuy'],\n ['name' => \"Traveler - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/traveler-cd/2322128.p?id=2198002&skuId=2322128&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322128', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322128_sa.jpg\"}', 'upc' => '014062097625', 'provider' => 'bestbuy'],\n ['name' => \"2011 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/2011-cd/2322137.p?id=2199196&skuId=2322137&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322137', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322137_sa.jpg\"}', 'upc' => '856327003022', 'provider' => 'bestbuy'],\n ['name' => \"Dare Iz a Darkside - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/dare-iz-a-darkside-cd/2322141.p?id=109666&skuId=2322141&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322141', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322141_sa.jpg\"}', 'upc' => '731452384621', 'provider' => 'bestbuy'],\n ['name' => \"El Corazón Decide - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 11.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/el-corazon-decide-cd/2322238.p?id=2750698&skuId=2322238&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322238', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322238_sa.jpg\"}', 'upc' => '888837528023', 'provider' => 'bestbuy'],\n ['name' => \"Gravity [Original Score] - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gravity-original-score-cd-original-soundtrack/2322283.p?id=2756426&skuId=2322283&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322283', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322283_sa.jpg\"}', 'upc' => '794043172939', 'provider' => 'bestbuy'],\n ['name' => \"Hell Freezes Over - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/hell-freezes-over-cd/2322490.p?id=109639&skuId=2322490&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322490', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322490_sa.jpg\"}', 'upc' => '720642472521', 'provider' => 'bestbuy'],\n ['name' => \"Street Dance - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/street-dance-cd/2322588.p?id=109656&skuId=2322588&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322588', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322588_sa.jpg\"}', 'upc' => '011105978521', 'provider' => 'bestbuy'],\n ['name' => \"More Music from Northern Exposure - CD - Original Soundtrack\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 7.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/more-music-from-northern-exposure-cd-original-soundtrack/2322631.p?id=109646&skuId=2322631&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322631', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322631_sa.jpg\"}', 'upc' => '008811107727', 'provider' => 'bestbuy'],\n ['name' => \"Lead On - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lead-on-cd/2322659.p?id=109633&skuId=2322659&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322659', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322659_sa.jpg\"}', 'upc' => '008811109226', 'provider' => 'bestbuy'],\n ['name' => \"Fields of Gold: The Best of Sting 1984-1994 - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/fields-of-gold-the-best-of-sting-1984-1994-cd/2322908.p?id=109550&skuId=2322908&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2322908', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2322\\/2322908_sa.jpg\"}', 'upc' => '731454026925', 'provider' => 'bestbuy'],\n ['name' => \"Planet Patrol [PA] [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/planet-patrol-pa-digipak-cd/2323057.p?id=2199978&skuId=2323057&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323057', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323057.jpg\"}', 'upc' => '829357551627', 'provider' => 'bestbuy'],\n ['name' => \"Masterpiece [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/masterpiece-digipak-cd/2323084.p?id=2199988&skuId=2323084&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323084', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323084_sa.jpg\"}', 'upc' => '829357653925', 'provider' => 'bestbuy'],\n ['name' => \"My Life - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 5.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/my-life-cd/2323088.p?id=109644&skuId=2323088&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323088', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323088_sa.jpg\"}', 'upc' => '008811115623', 'provider' => 'bestbuy'],\n ['name' => \"Outside [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/outside-digipak-cd/2323109.p?id=2199990&skuId=2323109&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323109', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323109_sa.jpg\"}', 'upc' => '600064788120', 'provider' => 'bestbuy'],\n ['name' => \"Aina... [Digipak] - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/aina-digipak-cd/2323145.p?id=2196066&skuId=2323145&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323145', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323145_sa.jpg\"}', 'upc' => '761268215321', 'provider' => 'bestbuy'],\n ['name' => \"Li'a: The Legacy of a Hawaiian Man - DVD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/lia-the-legacy-of-a-hawaiian-man-dvd/2323154.p?id=2194634&skuId=2323154&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323154', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323154_sa.jpg\"}', 'upc' => '761268505422', 'provider' => 'bestbuy'],\n ['name' => \"A Love Supreme - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 4.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/a-love-supreme-cd/2323408.p?id=109645&skuId=2323408&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323408', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323408.jpg\"}', 'upc' => '008811115722', 'provider' => 'bestbuy'],\n ['name' => \"Straight Out of Cleveland - Various - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/straight-out-of-cleveland-various-cd/2323649.p?id=113114&skuId=2323649&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2323649', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2323\\/2323649_sa.jpg\"}', 'upc' => '790058157329', 'provider' => 'bestbuy'],\n ['name' => \"Duets II - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 6.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/duets-ii-cd/2324247.p?id=98847&skuId=2324247&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2324247', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2324\\/2324247_sa.jpg\"}', 'upc' => '724382810322', 'provider' => 'bestbuy'],\n ['name' => \"Christmas Moments - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 9.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/christmas-moments-cd/2324318.p?id=108630&skuId=2324318&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2324318', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2324\\/2324318_sa.jpg\"}', 'upc' => '077778907022', 'provider' => 'bestbuy'],\n ['name' => \"Beggin' After Dark - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/beggin-after-dark-cd/2324844.p?id=110775&skuId=2324844&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2324844', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2324\\/2324844_sa.jpg\"}', 'upc' => '022471021223', 'provider' => 'bestbuy'],\n ['name' => \"Violin Concertos - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 12.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/violin-concertos-cd/2324871.p?id=1677158&skuId=2324871&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2324871', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2324\\/2324871_sa.jpg\"}', 'upc' => '745099225629', 'provider' => 'bestbuy'],\n ['name' => \"Piano Concerto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/piano-concerto-cd/2324960.p?id=1685209&skuId=2324960&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2324960', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2324\\/2324960.jpg\"}', 'upc' => '745099069629', 'provider' => 'bestbuy'],\n ['name' => \"Mortal Throne of Nazarene - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 10.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/mortal-throne-of-nazarene-cd/2325683.p?id=111200&skuId=2325683&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2325683', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2325\\/2325683_sa.jpg\"}', 'upc' => '781676690527', 'provider' => 'bestbuy'],\n ['name' => \"Law & Order: Criminal Intent - The Fifth Year [5 Discs] (DVD)\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 29.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/law-order-criminal-intent-the-fifth-year-5-discs-dvd/2326036.p?id=2088203&skuId=2326036&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326036', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/1844\\/18441542.jpg\"}', 'upc' => '025192043949', 'provider' => 'bestbuy'],\n ['name' => \"Gotterdammerung - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 71.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/gotterdammerung-cd/2326432.p?id=1683844&skuId=2326432&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326432', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2326\\/2326432.jpg\"}', 'upc' => '789368057627', 'provider' => 'bestbuy'],\n ['name' => \"Jewish Songs from Bulgaria - CD - Various\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/jewish-songs-from-bulgaria-cd-various/2326584.p?id=1468919&skuId=2326584&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326584', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2326\\/2326584.jpg\"}', 'upc' => '789368062225', 'provider' => 'bestbuy'],\n ['name' => \"The Other Side - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 16.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/the-other-side-cd/2326824.p?id=165887&skuId=2326824&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326824', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2326\\/2326824_sa.jpg\"}', 'upc' => '752628226323', 'provider' => 'bestbuy'],\n ['name' => \"Pastiche - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 8.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/pastiche-cd/2326913.p?id=109553&skuId=2326913&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326913', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2326\\/2326913_sa.jpg\"}', 'upc' => '081227180928', 'provider' => 'bestbuy'],\n ['name' => \"Bobby Short Celebrates Rodgers & Hart - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 13.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/bobby-short-celebrates-rodgers-hart-cd/2326977.p?id=98646&skuId=2326977&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2326977', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2326\\/2326977_sa.jpg\"}', 'upc' => '075678132025', 'provider' => 'bestbuy'],\n ['name' => \"Insignia™ - Starter Kit for Nintendo New 3DS XL, 3DS XL, 3DS and 2DS - Multi\", 'description_short' => \"Only at Best Buy Outfit your New 3DS XL, 3DS XL, 3DS or 2DS with the accessories included in this starter kit\", 'description_long' => \"Only at Best Buy Outfit your New 3DS XL, 3DS XL, 3DS or 2DS with the accessories included in this starter kit\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/insignia-starter-kit-for-nintendo-new-3ds-xl-3ds-xl-3ds-and-2ds-multi/2327004.p?id=1219543504000&skuId=2327004&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2327004', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/img.bbystatic.com\\/BestBuy_US\\/images\\/products\\/2327\\/2327004_sa.jpg\"}', 'upc' => '600603185946', 'provider' => 'bestbuy'],\n ['name' => \"Nadie Es Perfecto - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 19.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/nadie-es-perfecto-cd/2327011.p?id=160750&skuId=2327011&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2327011', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2327\\/2327011_sa.jpg\"}', 'upc' => '743212244526', 'provider' => 'bestbuy'],\n ['name' => \"Slidin' - CD\", 'description_short' => \"\", 'description_long' => \"\", 'price' => 14.99, 'sale_price' => null, 'url' => 'http://www.bestbuy.com/site/slidin-cd/2327244.p?id=110443&skuId=2327244&cmp=RMX', 'cart_url' => 'http://www.bestbuy.com/site/olspage.jsp?id=pcmcat152200050035&type=category&cmp=RMX&qvsids=2327244', 'aff_url' => null, 'aff_cart_url' => null, 'images' => '{\"http:\\/\\/images.bestbuy.com\\/BestBuy_US\\/images\\/products\\/2327\\/2327244_sa.jpg\"}', 'upc' => '013431462828', 'provider' => 'bestbuy']\n ];\n\n // Insert all the products\n foreach ($products as $product) {\n Product::create($product);\n }\n }", "public function ProductDetail()\n\t{\n\t\t$this->layout = 'index';\n\t\t$this->loadModel( 'Brand' );\n\t\t\n\t\t$this->loadModel( 'PackageEnvelope' );\n\t\t$packageType = $this->PackageEnvelope->find('list', array('fields' => 'PackageEnvelope.id, PackageEnvelope.envelope_name'));\n\t\t\n\t\t$brandName\t=\t$this->Brand->find('list', array('fields' => 'brand_name, brand_name'));\n\t\t$this->set( 'brandName', $brandName);\n\t\t\n\t\t//Rack Section\n\t\t$this->loadModel( 'Rack' );\n\t\t\n\t\t//Ground\n\t\t$floorRacks = $this->Rack->find('list' , array( 'fields' => array( 'Rack.floor_name' ) , 'order' => array( 'Rack.id ASC' ) , 'group' => array( 'Rack.floor_name' ) ) );\n\t\t\n\t\t//Racks\n\t\t$rack = $rackRacks = $rackNameAccordingToFloorText = $this->Rack->find( 'list' , array( 'fields' => array( 'Rack.id' , 'Rack.rack_floorName' ) , 'conditions' => array( 'Rack.floor_name' => $floorRacks ) , 'group' => array( 'Rack.rack_floorName' ) , 'order' => array( 'Rack.id ASC' ) ) );\t\t\n\t\t\n\t\t//Level\n\t\t$rackLevel = $rackNameAccordingToFloorText = $this->Rack->find( 'list' , \n\t\t\t\tarray( \n\t\t\t\t\t'fields' => array( 'Rack.id' , 'Rack.level_association' ) , \n\t\t\t\t\t'conditions' => array( 'Rack.floor_name' => $floorRacks , 'Rack.rack_floorName' => $rack ) , 'group' => array( 'Rack.level_association' ) , 'order' => array( 'Rack.id ASC' ) \n\t\t\t\t\t) \n\t\t\t\t);\n\t\t\n\t\t//Section\n\t\t$rackSection = $rackNameAccordingToFloorText = $this->Rack->find( 'list' , \n\t\t\t\tarray( \n\t\t\t\t\t'fields' => array( 'Rack.id' , 'Rack.rack_level_section' ) , \n\t\t\t\t\t'conditions' => array( 'Rack.floor_name' => $floorRacks , 'Rack.rack_floorName' => $rack , 'Rack.level_association' => $rackLevel ) , 'order' => array( 'Rack.id ASC' ) \n\t\t\t\t\t) \n\t\t\t\t);\n\t\t\t\t\n\t\t$this->set( 'setNewGroundArray' , $floorRacks );\n\t\t$this->set( 'rack' , $rack );\n\t\t$this->set( 'rackLevel' , $rackLevel );\n\t\t$this->set( 'rackSection' , $rackSection );\n\t\t$this->set( 'packageType', $packageType);\n\t}", "public function action_cat()\n {\n $cat = $this->request->param('cat');\n $cat = mysql_real_escape_string ($cat);\n \n // Получаем список продукций\n // $category = ORM::factory('category')->where('cat_id', '=', $cat)->find();\n $category = ORM::factory('category')->where('path', '=', $cat)->find();\n\n if(!$category->loaded()){\n $this->redirect();\n }\n \n $count = $category->products->where('status', '<>', 0)->count_all();\n $pagination = Pagination::factory(array('total_items'=>$count,'items_per_page'=>2));\n $prods = array();\n $products = $category->products\n ->where('status', '<>', 0)\n ->limit($pagination->items_per_page)\n ->offset($pagination->offset)\n ->find_all();\n $prs = $category->products\n ->select('prod_cats.prod_id')\n ->where('status', '<>', 0)\n ->find_all();\n foreach ($prs as $p)\n {\n $prods[] = $p->prod_id;\n }\n if(count($prods))\n $brands = ORM::factory('brand')\n ->join('products')\n ->on('brand.brand_id', '=', 'products.brand_id')\n ->where('products.prod_id','in',$prods)\n ->group_by('brand.title')\n ->order_by('brand.title', 'ASC')\n ->find_all();\n \n \n \n //$products = $category->products->where('status', '!=', 0)->find_all();\n // $this->breadcrumbs[] = array('name' => $category->title, 'link' => '/catalog/cat/c' . $category->cat_id);\n $this->breadcrumbs[] = array('name' => $category->title, 'link' => '/catalog/cat/' . $category->path);\n $this->template->breadcrumbs = Breadcrumb::generate($this->breadcrumbs);\n \n $content = View::factory('/' . $this->theme . 'index/catalog/v_catalog_cat', array(\n 'products' => $products,\n 'cat' => $cat,\n 'pagination' =>$pagination,\n 'brands' =>$brands,\n \n ));\n \n // Выводим в шаблон\n \n $this->template->title = $category->title;\n $this->template->page_title = $category->title;\n $this->template->page_caption = $category->title;\n $this->template->center_block = array($content);\n $this->template->block_right = null; \n $filter = Filter::factory();\n $filter->loadFiltersOptions($category->cat_id);\n $this->template->filter = $filter->render();\n }", "public function bannerAction()\n {\n $brand = $this->route['brand'];\n $category = $this->route['category'];\n $vars['products'] = $this->model->getProductsByCategoryAndBrand($category,$brand);\n $this->view->render('Riding Gear', $vars);\n }", "function getProducts(){\n\tif(!isset($_GET['categories'])){\n\t\tif(!isset($_GET['brands'])){\n\tglobal $connection;\n\t//selecting 6 products at random and displaying\n\t$get_products=\"select * from products order by RAND() LIMIT 0,6\";\n\t$run_products=mysqli_query($connection,$get_products);\n\twhile($row_products=mysqli_fetch_array($run_products)){\n\t\t$product_id\t=$row_products['product_id'];\n\t\t$product_category=$row_products['product_category'];\n\t\t$product_brand=$row_products['product_brand'];\n\t\t$product_title=$row_products['product_title'];\n\t\t$product_price=$row_products['product_price'];\n\t\t$product_image=$row_products['product_image'];\n\t\t\n\techo \"\n\t<div id='single_product'>\n\t<h3>$product_title</h3>\n\t<img src='admin/product_images/$product_image' width='180' height='180'/>\n\t<p><b>LKR. $product_price</b></p>\n\t<a href='details.php?product_id=$product_id' style='float:left;' class='button'>Details</a>\n\t\n\t<a href='index.php?add_cart=$product_id' style='float:right;' class='button'>Add to Cart</a>\n\t</div>\n\t\";\n\t\t\n\t\t \n\t}\n}\n}\n}", "function getAllProductVariantOptions(Request $request) {\n $collectionName = $request->query->get('collectionName');\n $arr = [];\n $em = $this->getDoctrine()->getManager();\n $products = [];\n if(strpos($collectionName, ';') !== false) {\n $collectionArray = explode(';', $collectionName);\n foreach ($collectionArray as $collectionName) {\n $collection = $em->getRepository('App:ProductTypes')->findOneBy(['name' => $collectionName]);\n $products[] = $em->getRepository('App:Products')->findBy(['type' => $collection]);\n }\n } else {\n $collection = $em->getRepository('App:ProductTypes')->findOneBy(['name' => $collectionName]);\n $products = $em->getRepository('App:Products')->findBy(['type' => $collection]);\n\n if (!$collection) {\n $brand = $em->getRepository('App:Brands')->findOneBy(['name' => $collectionName]);\n $products = $em->getRepository('App:Products')->findBy(['brand' => $brand]);\n }\n }\n\n $colorsArr = [];\n $sizeArr = [];\n $brandArr = [];\n\n foreach ($products as $product) {\n if(is_array($product)) {\n foreach ($product as $item) {\n if ($item->getSize()) {\n $sizeArr[] = $item->getSize()->getSize();\n }\n\n if($item->getColor()) {\n $colorsArr[] = $item->getColor()->getName();\n }\n\n if ($item->getBrand()) {\n $brandArr[] = $item->getBrand()->getName();\n }\n }\n } else {\n if ($product->getSize()) {\n $sizeArr[] = $product->getSize()->getSize();\n }\n\n if($product->getColor()) {\n $colorsArr[] = $product->getColor()->getName();\n }\n\n if ($product->getBrand()) {\n $brandArr[] = $product->getBrand()->getName();\n }\n }\n }\n\n $arr['colors'] = array_unique($colorsArr);\n $arr['sizes'] = array_unique($sizeArr);\n $arr['brands'] = array_unique($brandArr);\n\n return new JsonResponse($arr);\n }", "function get_products() {\n\t\tApp::Import('model', 'Product');\n\t\t$this->Product = &new Product;\n\n\t\t$products = $this->Product->find('all', array(\n\t\t\t'conditions' => array(\n\t\t\t\t\"Product.short_description != ''\",\n\t\t\t\t'Availability.cart_allowed' => true,\n\t\t\t\t'Product.active' => true\n\t\t\t),\n\t\t\t'contain' => array(\n\t\t\t\t'TaxClass' => array(\n\t\t\t\t\t'fields' => array('id', 'value')\n\t\t\t\t),\n\t\t\t\t'Image' => array(\n\t\t\t\t\t'conditions' => array('Image.is_main' => '1'),\n\t\t\t\t\t'fields' => array('id', 'name')\n\t\t\t\t),\n\t\t\t\t'Manufacturer' => array(\n\t\t\t\t\t'fields' => array('id', 'name')\n\t\t\t\t),\n\t\t\t\t'CategoriesProduct' => array(\n\t\t\t\t\t'Category' => array(\n\t\t\t\t\t\t'fields' => array('id', 'name')\n\t\t\t\t\t)\n\t\t\t\t),\n\t\t\t\t'Availability' => array(\n\t\t\t\t\t'fields' => array('id', 'cart_allowed')\n\t\t\t\t)\n\t\t\t),\n\t\t\t'fields' => array(\n\t\t\t\t'Product.id',\n\t\t\t\t'Product.name',\n\t\t\t\t'Product.short_description',\n\t\t\t\t'Product.url',\n\t\t\t\t'Product.retail_price_with_dph',\n\t\t\t\t'Product.ean',\n\t\t\t\t'Product.zbozi_name',\n\t\t\t\t'Product.heureka_name',\n\t\t\t\t'Product.discount_common',\n\t\t\t\t'Product.zbozi_cpc',\n\t\t\t\t'Product.heureka_cpc'\n\t\t\t)\n\t\t));\n\t\t\n\t\t$products = array_filter($products, array('ExportsController', 'empty_category'));\n\t\t\n\t\tforeach ($products as $i => $product) {\n\t\t\t$products[$i]['Product']['retail_price_with_dph'] = $this->Product->assign_discount_price($products[$i]);\n\t\t\t$products[$i]['Product']['name'] = str_replace('&times;', 'x', $products[$i]['Product']['name']);\n\t\t\t$products[$i]['Product']['short_description'] = str_replace('&times;', 'x', $products[$i]['Product']['short_description']);\n\t\t}\n\n\t\treturn $products;\n\t}", "public function productsAction()\n {\n $this->_initCoursedoc();\n $this->loadLayout();\n $this->getLayout()->getBlock('coursedoc.edit.tab.product')\n ->setCoursedocProducts($this->getRequest()->getPost('coursedoc_products', null));\n $this->renderLayout();\n }", "private function _getProductvariantsList($product) {\n\n $productvariantsList = array();\n $linkHelper = new Helper\\HtmlLinkHelper();\n $spanHelper = new Helper\\HtmlSpanHelper();\n\n /* @var $productvariant Entity\\ProductEntity */\n foreach ($product->getChilderen() as $productvariant) {\n\n $categoryId = $productvariant->getProductCategories()->first()->getCategory()->getId();\n\n $name = $productvariant->getCurrentTranslation()->getName();\n\n // render link\n $liString = $linkHelper->getHtml(\n $name,\n $this->url()->fromRoute('home/default', array(\n 'controller' => 'product',\n 'action' => 'form',\n 'param' => 'product',\n 'value' => $productvariant->getId(),\n 'param2' => 'category',\n 'value2' => $categoryId\n )),\n $name,\n 'pane-navi-link productvariant',\n array(\n 'data-pane-title' => '',\n 'data-delete-url' => $this->url()->fromRoute('home/default', array(\n 'controller' => 'product',\n 'action' => 'delete',\n 'param' => 'product',\n 'value' => $productvariant->getId()\n ))\n ),\n null\n );\n\n// $liString .= $spanHelper->getHtml(\n// '',\n// 'edit',\n// array(\n// 'data-form-url' => $this->url()->fromRoute('home/default', array(\n// 'controller' => 'product',\n// 'action' => 'form',\n// 'param' => 'product',\n// 'value' => $productvariant->getId()\n// ))\n// )\n// );\n\n $productvariantsList[] = $liString;\n }\n\n return $productvariantsList;\n }", "function kms_pands_products_render($subtype, $conf, $args, $contexts) {\n $form = drupal_get_form('kms_pands_product_list_form');\n $block = new stdClass();\n $block->content = drupal_render($form);\n return $block;\n}", "public static function items_needed_for_brands(){\n Metabox::make('Personalizar sección de marca', 'brand', [\n 'context' => 'normal',\n 'priority' => 'high',\n 'id' => 'brand-banner-metabox'\n ])->set([\n Field::media('brand-header-banner', [\n 'title' => 'Encabezado',\n 'info' => 'Selecciona un banner que aparecerá en el encabezado cuando la marca esté activa.'\n ]),\n Field::color('brand-header-color', [\n 'title' => 'Color del encabezado',\n 'info' => 'Selecciona un color que aparecerá cuando la pantalla exceda las dimensiones de la imagen.'\n ]),\n ]);\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $products = $em->getRepository('MicroBundle:Product')->findAll();\n $mainCategories = $em->getRepository('MicroBundle:Category')->findBy(['parent' => null]);\n\n return $this->render('product/index.html.twig', array('products' => $products, 'mainCategories' => $mainCategories,));\n }", "function getBranchPro(){\n\tif (isset($_GET['branch'])) {\n\t\t$branchId=$_GET['branch'];\n\t\tglobal $conn;\n\t\t$getBranchProduct=\"SELECT * FROM products WHERE productBranch=$branchId\";\n\t\t$runBranchProduct=mysqli_query($conn, $getBranchProduct);\n\t\t$countBranch=mysqli_num_rows($runBranchProduct);\n\n\t\tif ($countBranch==0) {\n\t\t\techo \"<h3>There is no books for this branch</h3>\";\n\t\t\texit();\n\t\t}\n\n\t\twhile($rowBranchProduct=mysqli_fetch_array($runBranchProduct)){\n\t\t\t$productId=$rowBranchProduct['productId'];\n\t\t\t$productTitle=$rowBranchProduct['productTitle'];\n\t\t\t$productAuthor=$rowBranchProduct['productAuthor'];\n\t\t\t$productPrice=$rowBranchProduct['productPrice'];\n\t\t\t$productImage=$rowBranchProduct['productImage'];\n\n\t\t\techo \"\n\n\t\t\t\t<div id='singleProduct'>\n\t\t\t\t\t<a href='details.php?proId=$productId'><img src='adminArea/productImages/$productImage' style='width:180px;height:220px;'/></a>\n\t\t\t\t\t<div style='height:48px;'>\n\t\t\t\t\t\t<h6>$productTitle</h6>\n\t\t\t\t\t</div>\n\t\t\t\t\t<h6>$productAuthor</h6>\n\t\t\t\t\t<h6>&#8377;$productPrice <a href='index.php?proId=$productId' style='float:right;'><button>Add to Cart</button></a></h6>\n\t\t\t\t</div>\n\t\t\t\";\n\t\t}\n\t}\n}", "public static function productLists()\n {\n array_push(self::$products, \n [\n CART::ID => self::$id,\n CART::NAME => self::$name,\n CART::PRICE => self::$price,\n CART::QUANTITY => self::$quantity\n ]);\n }", "function ngGetProducts()\n\t{\n\t\t$sql = \"SELECT p.*, b.branch_name as branch_name \n\t\tFROM products p \n\t\tLEFT JOIN branches b ON p.branch_id = b.id\n\t\tWHERE p.status_id != \". DELETE . \";\";\n\n\t\t$result = $this->db->query($sql);\n\t\t$response = $result->result();\n\t\techo json_encode($response);\n\t}", "public function index()\n {\n //$products = $this->product->with([\"brand\", \"category\"])->orderBy('created_at', 'desc')\n\n return response()\n ->json(\n [\n 'products' => $this->product->with([\"brand\", \"category\"], 10),\n 'products_all' => $this->product->all(),\n 'brands' => $this->brands->all('indexed'),\n 'categories' => $this->categories->all('indexed')\n ]\n );\n }", "public function index()\n {\n $searchImg = new ProductsModel();\n\n $products = $searchImg->getProductWithImageCat();//changé pour avoir category\n\n $this->show('products/listproducts', array(\n 'products' => $products,\n ));\n }", "public function index()\n\t{\n\t\t$sale = Input::get('sale', 0);\n\t\t$manufacturer = Input::get('manufacturer', 0);\n\t\t$category = Input::get('category', 0);\n\t\t$is_wishlist = Input::get('is_wishlist', 0);\n\t\t$products = $this->repo\n\t\t\t\t\t\t\t->with('images')\n\t\t\t\t\t\t\t->whereActive(1);\n\n\t\tif ($sale !== 0) {\n\t\t\t$products = $products->where('sale_price', '!=', \"0.000000\");\n\t\t}\n\n\t\tif ($manufacturer !== 0) {\n\t\t\t$products = $products->where('manufacturer_id', $manufacturer);\n\t\t}\n\n\t\tif ($category !== 0) {\n\t\t\t$products = $products->whereHas('category', function ($query)\n\t\t\t{\n\t\t\t\t$query->where('id', Input::get('category'));\n\t\t\t});\n\t\t}\n\n\t\tif ($is_wishlist !== 0) {\n\t\t\t$user = API::user();\n\t\t\t$user->load('customer');\n\n\t\t\t$customer_id = $user->customer->id;\n\t\t\t$products = $products->whereHas('wishlist', function ($query) use ($customer_id)\n\t\t\t{\n\t\t\t\t$query->where('customer_id', $customer_id);\n\t\t\t});\n\t\t}\n\n\t\t$products = $products->orderBy('created_at', 'DESC')\n\t\t\t\t\t->paginate($limit = 10);\n\n\t\treturn $this->rest->response(200, $products, false);\n\t}", "public function add(){\n $brands = Brand::all();\n $categories = Category::all();\n return view('admin.product.add')->with(['brands'=>$brands,'categories'=>$categories]);\n }", "public function index(Product $product)\n {\n return $this->product->getAllProducts();\n }", "public function show($product) {\n \n }", "public function adminProductAction()\n {\n $productManager = new ProductManager();\n $products = $productManager->getAllProducts();\n return $this->twig->render('admin/admin_products.html.twig', array(\n \"products\" => $products));\n }", "public function showProduct(){\n\n\n $showquery = \"SELECT p.*,c.catName,b.brandName FROM forproduct as p,\n forcat as c,forbrand as b \n WHERE p.productCat = c.catID AND p.productBrand = b.brandId \n order by p.productId DESC\";\n\n\n \t$showres = $this->db->select($showquery);\n \tif($showres)\n \treturn $showres;\n\t \t}", "function product($title, $id)\n {\n $aliURL = \"{$this->model->productURLBase}{$title}/{$id}.html\";\n $productBaseRoute = \"/{$this->siteslug}/product\";\n $aliexpressApi = new AliexpressAPI($aliURL);\n $similar_products = $this->model->getSimilarProduct($id);\n $similar_products_ali = json_decode($similar_products);\n $cache = true;\n $getImages = true;\n if ($cache) {\n if (Cache::get(\"product_$id\") == null) {\n Cache::put(\"product_$id\",\n $aliexpressApi->getTotalProductData($getImages),\n Config::get(\"cache.storeAliSingleProduct\")\n );\n }\n $aliData = Cache::get(\"product_$id\");\n } else {\n $aliData = $aliexpressApi->getTotalProductData($getImages);\n }\n\n $aliData = $this->model->parseProductData($aliData);\n\n $feedback_link = Util::checkHTTPS($aliData['feedback']);\n\n $stars = $aliData['percentNum'] / 5 * 100;\n\n $breadCramb = $this->model->getBreadCramb(Input::get('categoryID'));\n// dd($breadCramb);\n $jsData = Util::includeJsWithData(\"ProductData\", [\n 'totalSkuNum' => count($aliData['productSKU']),\n 'priceRange' => $aliData['mainPrice'],\n 'skuVariations' => $aliData['productSkuJSON'],\n 'skuData' => $aliData['skuArrayJSON'],\n 'image' => $aliData['mainImages'][0],\n 'shipping' => $aliData['shipping']\n ]);\n\n\n $this->title = \"עליאקספרס בעברית צ'יפי קניות ברשת\" . $aliData['productName'];\n if (isset($similar_products_ali->result)) {\n foreach ($similar_products_ali->result->products as $product) {\n $price = Util::replacePrices($product->salePrice);\n $product->salePrice = $price;\n $url_html = $productBaseRoute . \"/\" . explode(\"/\", $product->productUrl)[4] . \"/\" . explode(\"?\", explode(\"/\", $product->productUrl)[5])[0];\n $new_url = str_replace('.html', \"\", $url_html);\n $product->productUrl = $new_url;\n }\n }\n\n return view(\"aliexpress.product\", [\n 'timerTime' => $this->timerTime,\n 'stars' => $stars,\n 'productData' => $jsData,\n 'aliData' => $aliData,\n 'categories' => $this->categories,\n 'siteslug' => $this->siteslug,\n 'breadCramb' => $breadCramb,\n 'productID' => $id,\n 'title' => $title,\n 'title' => $this->title,\n 'description' => $this->description,\n 'similar_products' => $similar_products_ali,\n 'productBase' => $productBaseRoute,\n 'feedback_link' => $feedback_link\n ]);\n }", "public function index() {\n\t\treturn $this->product->all();\n\t}", "function products_get() {\n\n $products = $this->api_model->get_products();\n\n if(isset($products))\n {\n $this->response(array('status' => 'success', 'message' => $products));\n }\n else\n {\n $this->response(array('status' => 'failure', 'message' => 'The specified product could not be found'), REST_CONTROLLER::HTTP_NOT_FOUND);\n }\n\n\t}", "public function products()\n {\n // hasMany(RelatedModel, foreignKeyOnRelatedModel = brand_id, localKey = id)\n return $this->hasMany(Product::class);\n }", "function showProducts($products){\r\n require_once 'templates/header.php';\r\n echo '\r\n <h1>BIENVENIDOS A ZAPATILLERIA ONLINE</h1>\r\n \r\n <h2>PRODUCTOS</h2>\r\n \r\n <form action=\"\">\r\n \r\n </form>\r\n\r\n ';\r\n \r\n echo \"<ul class='list-group list-group-flush mt-5'>\";\r\n foreach($products as $product){\r\n echo \"<li class='list-group-item'>\r\n <li><a href=verProducto/$product->id>$product->marca</a></li> <p>$product->talle</p> <p>$product->color</p>\r\n <a class='btn btn-warning btn-sm' href='editarProducto/$product->id'>EDITAR</a>\r\n <a class='btn btn-danger btn-sm' href='eliminarProducto/$product->id'>ELIMINAR</a>\r\n </li>\"; \r\n }\r\n echo \"</ul>\";\r\n\r\n require_once 'templates/select_products.php';\r\n\r\n require_once 'templates/form_products.php';\r\n\r\n require_once 'templates/footer.php';\r\n }", "public function show($id)\n {\n $group=InventoryProductGroup::findOrFail($id);\n $products=$group->products()->get();\n $brands=InventoryBrand::all();\n $brandArray=[];\n foreach($brands as $brand){\n $brandArray[$brand->id]=$brand->name;\n }\n return view('product.show',compact('products','brandArray'));\n\n }", "function getProducts()\n\t{\n\t\tglobal $con;\n\t\tif (!isset($_GET['cat'])){\n\t\t\tif (!isset($_GET['brand'])) {\n\t\t\t\t$get_products = \"select * from products order by RAND() LIMIT 0, 6\";\n\t\t\t\t$run_products = mysqli_query($con, $get_products);\n\n\t\t\t\twhile($row = mysqli_fetch_array($run_products)) {\n\t\t\t\t\t$prod_id = $row['prod_id'];\n\t\t\t\t\t$prod_cat = $row['prod_cat'];\n\t\t\t\t\t$prod_brand = $row['prod_brand'];\n\t\t\t\t\t$prod_price = $row['prod_price'];\n\t\t\t\t\t$prod_image = $row['prod_img'];\n\n\t\t\t\techo \"\n\t\t\t\t\t<div class='single_product'>\n\t\t\t\t\t\t<img src='admin_area/product_images/$prod_image'>\t\n\t\t\t\t\t\t<div class='item_det'>\n\t\t\t\t\t\t\t<h2>$prod_price</h2>\n\t\t\t\t\t\t\t<a href='details.php?pro_id=$prod_id' style='float:left;'>Details</a>\n\t\t\t\t\t\t\t<a href='index.php?add_cart=$prod_id'><button>Add to Cart</button></a>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t\";\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}", "private function showProductsById()\n { \n $productNum1 = $this->productDao->getById(1);\n $productNum9 = $this->productDao->getById(9);\n \n echo PHP_EOL;\n echo 'Product with id 1: ' . PHP_EOL; print_r($productNum1);\n echo 'Product with id 9: ' . PHP_EOL; print_r($productNum9);\n }", "public function getBrands()\n {\n return $this->brands;\n }", "public function showAdminproductsAction()\n {\n $productManager = new ProductManager();\n $products = $productManager->getAllProducts();\n return $this->twig->render('admin/adminproducts.html.twig', array(\n 'products' => $products\n ));\n }", "public function productByCategoryAction()\n {\n $category = $this->route['category'];\n $vars['products'] = $this->model->getProductsByCategory($category);\n $this->view->render('Riding Gear', $vars);\n }", "public function index()\n {\n return view('pharmacy.inventory.product.index', [\n 'products' => Product::with('manufacturer', 'category')\n ->orderByDesc('id')\n ->where('company_id', company_id())\n ->paginate(),\n 'categories' => Category::where('status',1)\n ->where('company_id', company_id())\n ->get(),\n ]);\n }", "public function getProductList(){\n\n $productModel = new ProductModel();\n $products = $productModel->getProductList();\n $this->JsonCall($products);\n }", "public function indexAction(){\n\n //$brands = \\R::findAll('brand'); //(SELECT * FROM brand)\n // $brands = \\R::find('brand','LIMIT 3');\n //debug($brands);\n\n // $hits = \\R::find('product',\"hit = '1' AND status = '1' LIMIT 8 \");\n\n $categories = \\R::findAll('exam','parent_id = 0');\n $center_count = \\R::count('center');\n $exam_count = \\R::count('diagnose',\"status='1'\");\n $screening_count = \\R::count('screening');\n $hits = \\R::findAll('diagnose',\"status = '1' AND hit = '1' ORDER BY time_hit DESC\");\n $this->setMeta(App::$app->getProperty('shop_name'), 'Some description...', 'Some Keys....');\n\n\n $this->set(compact('categories','hits','screening_count','center_count','exam_count'));\n }", "public function show($product)\n {\n\n }", "public function getProducts()\n {\n return $this->hasMany(Products::className(), ['brand' => 'id']);\n }", "public function index()\n {\n $brands = ProductBrand::where('status', '!=', -1)->get();\n\n return response()->json($brands, Response::HTTP_OK, array(), JSON_PRETTY_PRINT);\n }", "function getBrandPro(){\nglobal $db;\t\n\nif(isset($_GET['brand'])){\n$brand_id = $_GET['brand'];\n\n$get_brand_pro = \"SELECT * FROM products WHERE brand_id='$brand_id'\";\n$run_brand_pro= mysqli_query($db, $get_brand_pro);\n$count = mysqli_num_rows($run_brand_pro);\nif ($count==0){\n\t\n\techo \"<h2>No Products found in this brand!</h2>\";\n\t\n}\n\nwhile ($row_brand_pro=mysqli_fetch_array($run_brand_pro)){\n\t\n\t$pro_id = $row_brand_pro['product_id'];\n $pro_title = $row_brand_pro['product_title'];\n\t$pro_desc = $row_brand_pro['product_desc'];\n\t$pro_price = $row_brand_pro['product_price'];\n\t$pro_image = $row_brand_pro['product_img1'];\n\t\n\t \n\t echo \"<div id='single_product' style='float:left; padding:10px; margin-left:20px;'>\n\t \n\t\t\t<h3>$pro_title</h3> <br>\n\t \n\t\t\t<div id='single_product img' style='border:2px solid #333;'>\n\t\t\t\n\t\t\t<img src='admin_area/product_images/$pro_image' width='180' height='180' /></div><br>\n\t \n\t\t\t<p><b>Price: $ $pro_price </b></p>\n\t\t\t\n\t\t\t<a href='details.php?pro_id=$pro_id'><button style='float:left;'>Details</button></a>\n\t\t\t\n\t\t\t<a href='index.php?add_cart=$pro_id'><button style='float:right;'>Add to Cart</button></a>\n\t\t\t\n\t\t\t</div>\";\n\t\t\n\t}\n}\n \n}", "public function create()\n {\n $products = $this->productRepository->getAll();\n $brands = $this->brandRepository->getPluck('name','id');\n $categories = $this->categoryRepository->getPluck('name','id'); \n // vi du minh k muon lay name nua, lay description vs id\n return view('admin.layouts.products.create',compact('products','brands','categories'));\n }", "function add()\n\t{\n\t\tif (!$this->checkLogin()) {\n\t\t\tredirect(base_url());\n\t\t}\n\n\t\t$pageData['header_title'] = APP_NAME . ' | Add Product';\n\t\t$pageData['page_title'] = 'Inventory Management';\n\t\t$pageData['parent_menu'] = 'inventory_management';\n\t\t$pageData['child_menu'] = 'add_new_product';\n\n\t\t//get branches\n\t\t$where = array('status_id =' => ACTIVE);\n\t\t$select = '*';\n\t\t$records = 2;\n\t\t$branches = $this->base_model->getCommon($this->branchesTable, $where, $select, $records);\n\t\t$pageData['branches'] = json_encode($branches);\n\t\t// print_r($branches);die;\n\t\t$this->load->view('admin/inventory_management/add', $pageData);\n\t}", "public function index()\n {\n $products = Product::productWithCategoriesTags()->get(); // scope utiliser dans model Product\n //$products = Product::withCount('category')->with('category.type')->get();\n return view('backend.products.index',compact('products'));\n }", "public function index()\n {\n $Product = Product::with('category','brand')->latest()->get();\n return view('backend.admin.product.index', compact('Product'));\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $products = $em->getRepository('AppBundle:Product')->findAvailableProducts();\n\n $calc = $this->get('price_calculator');\n\n return $this->render('product/index.html.twig', array(\n 'products' => $products,\n 'calc' => $calc\n ));\n }", "private function setup_products() {\n\t\tglobal $wpdb;\n\n\t\t$ids = [];\n\t\t$d = $wpdb->get_results( \"SELECT distinct `products` FROM `{$wpdb->prefix}thespa_data`\", ARRAY_A );\n\t\tforeach ( $d as $datum ) {\n\t\t\t$prs = explode( \",\", $datum['products'] );\n\t\t\tforeach ( $prs as $pr ) {\n\t\t\t\tif ( !isset( $ids[$pr] ) ) {\n\t\t\t\t\tarray_push($ids, $pr );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t$i = 0;\n\t\tforeach ( $ids as $id ) {\n\t\t\t$product = wc_get_product( $id );\n\t\t\tif ( is_object( $product ) ) {\n\t\t\t\t$this->products[$i] = [\n\t\t\t\t\t'id' => $id,\n\t\t\t\t\t'name' => $product->get_title(),\n\t\t\t\t\t'url' => $product->get_permalink(),\n\t\t\t\t\t'img' => wp_get_attachment_image_src( get_post_thumbnail_id( $id ), 'medium', true )[0],\n\t\t\t\t\t'cost' => $product->get_price_html(),\n\t\t\t\t];\n\t\t\t\t$i++;\n\t\t\t}\n\t\t}\n\t}", "public function testProductRoutes()\n\t{\n\t\t//$response = $this->call('GET', '/admin/website/2/products');\n\t\t\n\t\t//$this->assertEquals(200, $response->status());\n\t}", "private function loadBikeModelsBrands($p = null){\n\t\tinclude_once(System_Properties::ADMIN_MOD_PATH.'/models/bike/db_selBikeBrand.php');\n\t\tinclude_once(System_Properties::ADMIN_MOD_PATH.'/models/bike/db_selBikeModel.php');\n\t\t\n\t\t$bikeBrand = db_selBikeBrand(array('orderby'=>array(array('col' => 'brandName'))\n\t\t\t\t\t\t\t\t\t\t\t,'active' => 1));\n\t\t$bikeModel = false;\n\t\tif(is_array($bikeBrand) && (count($bikeBrand) > 0)){\n\t\t\t$bikeBrandID = $bikeBrand[0]['bikeBrandID'];\n\t\t\tif (isset($p['bikeBrand']) && !is_array($p['bikeBrand'])){\n\t\t\t\t$bikeBrandID = $p['bikeBrand'];\n\t\t\t}\n\t\t\telseif (isset($p['bikeBrand']) && is_array($p['bikeBrand']) && (count($p['bikeBrand']) > 0)){\n\t\t\t\t$bikeBrandID = array();\n\t\t\t\tforeach ($p['bikeBrand'] as $key => $val){\n\t\t\t\t\tarray_push($bikeBrandID, $val);\n\t\t\t\t}\n\t\t\t}\n\t\t\t$bikeModel = db_selBikeModel(array('bikeBrandID' => $bikeBrandID));\n\t\t}\n\t\t\n\t\t$this -> view -> bikeBrand = $bikeBrand;\n\t\t$this -> view -> bikeModel = $bikeModel;\n\t}" ]
[ "0.68242675", "0.67260885", "0.6652355", "0.6627192", "0.6616808", "0.66135097", "0.66046923", "0.6585205", "0.65410215", "0.6530074", "0.6515951", "0.6454877", "0.640738", "0.6380565", "0.63609606", "0.63260233", "0.6317474", "0.63107777", "0.6283436", "0.62782896", "0.62741435", "0.6271241", "0.6251307", "0.623897", "0.62368", "0.62214345", "0.62190527", "0.621217", "0.62117445", "0.61698157", "0.61562985", "0.61522865", "0.61379486", "0.6130047", "0.61251175", "0.6117562", "0.6104845", "0.60963887", "0.60927445", "0.6075679", "0.6075487", "0.60722476", "0.6065582", "0.6046082", "0.60445046", "0.60441685", "0.6042607", "0.60204774", "0.6019469", "0.6018678", "0.60182923", "0.6015523", "0.60065734", "0.6003848", "0.60038346", "0.6001716", "0.6001431", "0.5999024", "0.5997249", "0.59936833", "0.59882283", "0.5981713", "0.59783643", "0.59774065", "0.59715366", "0.59711194", "0.5969517", "0.59693295", "0.5967941", "0.59656394", "0.5962779", "0.5955797", "0.59544826", "0.5951979", "0.5951444", "0.5951343", "0.59509647", "0.59470856", "0.59433734", "0.59409446", "0.59393245", "0.59357095", "0.59300137", "0.592437", "0.59240764", "0.5921544", "0.5913099", "0.5909876", "0.5906887", "0.59051883", "0.5903118", "0.58971524", "0.5894164", "0.5893631", "0.5890348", "0.5889823", "0.58888966", "0.58847225", "0.58843225", "0.587616", "0.58758354" ]
0.0
-1
/ products / admin orders
public function view_orders() { $itemData['item'] = Product::getorderItem(); $data = ['itemData' => $itemData]; return view('admin.orders')->with($data); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function manageOrderProducts()\n {\n }", "public function admin_order()\n {\n /*return view('admin_order');*/\n $orders = Scrap_order::get();\n return view('admin_order', ['orders' => $orders]);\n }", "function admin_get_all_orders(){\n\t //$orders = $this->Order->find('all');\n\t $this->paginate = array('limit' => 10, 'order' => 'Order.od_date DESC');\n\t \n\t $this->set('orders', $this->paginate());\n\t \n\t \n\t if(!empty($this->data)){\n\t $this->Order->id = $this->data['Order']['id'];\n\t $this->Order->saveField('od_status', $this->data['Order']['od_status']);\n\t \n\t $result = $this->Order->get_ordered_items($this->data['Order']['id']);\n\t \n\t\t//enviar el correo electronico de la situacion\n\t $this->set('orderedProducts',$result);\n\t $this->set('status', $this->data['Order']['od_status']);\n\t $this->MyEmail->sendOrderStatusEmail($this->data['Order']['od_payment_email']);\n\t $this->redirect($this->referer());\n\t } \n\t}", "function index()\n {\n $this->orders = get_all(\"SELECT * FROM `order` NATURAL JOIN product\");\n }", "public function testAdminOrderView() {\n $line_item = $this->createEntity('commerce_line_item', [\n 'type' => 'product_variation',\n 'unit_price' => [\n 'amount' => '999',\n 'currency_code' => 'USD',\n ],\n ]);\n $order = $this->createEntity('commerce_order', [\n 'type' => 'default',\n 'mail' => $this->loggedInUser->getEmail(),\n 'line_items' => [$line_item],\n ]);\n\n // First test that the current admin user can see the order.\n $this->drupalGet($order->toUrl()->toString());\n $this->assertSession()->statusCodeEquals(200);\n\n // Order displays email address.\n $this->assertSession()->pageTextContains($this->loggedInUser->getEmail());\n\n // Logout and check that anonymous users cannot see the order admin screen\n // and receive a 403 error code.\n $this->drupalLogout();\n\n $this->drupalGet($order->toUrl()->toString());\n $this->assertSession()->statusCodeEquals(403);\n }", "public function index() {\n $this->show_order();\n }", "public function adminProductAction()\n {\n $productManager = new ProductManager();\n $products = $productManager->getAllProducts();\n return $this->twig->render('admin/admin_products.html.twig', array(\n \"products\" => $products));\n }", "public function orders()\n {\n $this->isUser();\n\n $this->data['noCabinetOrAdmin'] = true;\n\n $orderModel = new OrderModel();\n\n $orders = $orderModel->ordersByUserId(Session::get('userId'));\n\n $this->data['ordersInfo'] = $orders;\n\n if ($orders) {\n\n $productArrays = array();\n\n foreach ($orders as $order) {\n\n $productArrays[$order['id']] = json_decode($order['products'], true);\n }\n\n $this->data['idsAndAmountsByOrder'] = $productArrays;\n\n foreach ($productArrays as $product) {\n\n foreach ($product as $productId => $amount) {\n\n $productIdAndAmount[$productId] = $amount;\n }\n }\n\n $dataForIdsString = array_keys($productIdAndAmount);\n\n $idsString = implode(', ', $dataForIdsString);\n\n if ($idsString) {\n\n $productModel = new ProductModel();\n\n $productsInfo = $productModel->getProductsByIds($idsString);\n\n $this->data['productsInfo'] = $productsInfo;\n }\n\n }\n \n $this->render('orders');\n }", "function orders() {\n\t \treturn $this->hook(\"/{$this->subject_slug}/v1/orders.xml?api_key={$this->api_key}\",\"order\");\n\t}", "public function adminOrderIndex()\n {\n $orders = Order::with(['products', 'user'])->whereNotNull('paid_datetime')->latest()->get()->all();\n return view('admin.orders.index', compact('orders'));\n }", "public function get_adminOrder(){\n if(Auth::user()->user_type == 0){\n return redirect('/adminlogin');\n }\n $orders = Transaction::all();\n return view('admin.orders',compact('orders'));\n }", "public function orders()\n {\n UserModel::authentication();\n\n //get the session user\n $user = UserModel::user();\n\n //get the user's orders\n $buyorders = TradesModel::OpenOrders('buy');\n $sellorders = TradesModel::OpenOrders('sell');\n\n $this->View->RenderPage_sidebar('dashboard/orders', ['buyorders' => $buyorders, 'sellorders' => $sellorders]);\n }", "function orders(){\r\n \tif($this->session->userdata('logged_in')){\r\n\t\t\t//Header Data\r\n\t\t\t$session_data = $this->session->userdata('logged_in');\r\n\t\t\tif($session_data['username'] === \"admin\"){\r\n\t\t\t\t$headerData['title']=\"Admin - Orders\";\r\n\t\t\t\t$headerData['nav']='orders';\r\n\t\t\t\t//Page Data\r\n\t\t\t\t$this->load->model('order_model');\r\n\t\t\t\t$orders = $this->order_model->getAll();\r\n\t\t\t\t$data['orders']=$orders;\r\n\t\t\t\t//Views\r\n\t\t\t\t$this->load->view('templates/admin_header.php',$headerData);\r\n\t\t\t\t$this->load->view('admin/order_list.php',$data);\r\n\t\t\t\t$this->load->view('templates/admin_footer.php');\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tredirect('candystore', 'refresh');\r\n\t\t\t}\r\n\t\t\t\r\n\t\t}\r\n\t\telse{\r\n\t\t\tredirect('/user/login', 'refresh');\r\n\t\t}\r\n }", "public function orders()\n {\n\n //dd(base_path());\n $getProducts = Products::get(); //sidebar\n\n $curl = curl_init();\n\n curl_setopt_array($curl, array(\n CURLOPT_URL => \"https://10874ad00c4d819ca273b2b1c1b1cdc5:[email protected]/admin/api/2019-04/orders.json\",\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => \"\",\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 30,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_CUSTOMREQUEST => \"GET\",\n CURLOPT_POSTFIELDS => \"\",\n CURLOPT_HTTPHEADER => array(\n \"Postman-Token: 5b7eea12-8880-4782-b390-51abcf1c2ab3\",\n \"cache-control: no-cache\"\n ),\n ));\n\n $response = curl_exec($curl);\n $err = curl_error($curl);\n\n curl_close($curl);\n $respo = json_decode($response);\n// dd($respo);\n\n /*DB::table('idib_order_details')->truncate();\n DB::table('idib_order_item_details')->truncate();\n DB::table('idib_customer_details')->truncate();*/\n\n $order_arr = array();\n $item_arr = array();\n $order_list_arr = array();\n $customer_arr = array();\n\n foreach($respo as $key => $item) {\n foreach($item as $key => $value) {\n foreach ($value->line_items as $key => $line_item) {\n //4439434461293\n if ($line_item->product_id == \"4439434461293\") {\n $mainOrderId = $value->order_number;\n $orderDetail = DB::table('idib_order_details')\n ->where('line_item_id', $line_item->id)\n ->first();\n CartItem::where('variant_id', $line_item->variant_id)->update(['checkout_id' => $mainOrderId]);\n if (isset($orderDetail->line_item_id) && $orderDetail->line_item_id .' == '. $line_item->id) {\n continue;\n }\n else {\n $orderId = self::insertOrderDetails($value, $line_item, $mainOrderId);\n $LineItem = self::insertOrderLineItems($value, $line_item, $mainOrderId);\n $customerInfo = self::insertOrderCustomer($value, $line_item, $mainOrderId);\n }\n\n }\n }\n }\n }\n //$getOrderInfo = OrderDetails::get();\n $getOrderList = OrderDetails::groupBy('order_number')->orderBy('id','asc')->get()->toArray();\n return view('shopify-app::tool.order',compact('getProducts','getOrderList','getOrderInfo'));\n }", "function orders()\n\t\t{\n\t\t\tif ( ! $this->data['user'])\n\t\t\t{\n\t\t\t\t$this->flexi_cart->set_error_message('You must login to view orders.', 'public', TRUE);\n\t\t\t\tredirect('login');\n\t\t\t}\n\n\t\t\t// The load/save/delete cart data functions require the flexi cart ADMIN library.\n\t\t\t$this->load->library('flexi_cart_admin');\n\n\t\t\t// Get an array of all saved orders. \n\t\t\t// Using a flexi cart SQL function, set the order the order data so that dates are listed newest to oldest.\n\t\t\t$this->flexi_cart_admin->sql_where($this->flexi_cart_admin->db_column('order_summary', 'user'), $this->data['user']->id);\n\t\t\t$this->flexi_cart_admin->sql_order_by($this->flexi_cart_admin->db_column('order_summary', 'date'), 'desc');\n\t\t\t$this->data['order_data'] = $this->flexi_cart_admin->get_db_order_query()->result_array();\n\n\t\t\t// Get any status message that may have been set.\n\t\t\t$this->data['message'] = $this->session->flashdata('message');\n\n\t\t\t$this->load->view('public/dashboard/orders_view', $this->data);\n\t\t}", "public function showAdminproductsAction()\n {\n $productManager = new ProductManager();\n $products = $productManager->getAllProducts();\n return $this->twig->render('admin/adminproducts.html.twig', array(\n 'products' => $products\n ));\n }", "public function optionsAction() {\n\n $request = $this->getRequest();\n $orderId = (integer) $request->getParam('orderId', 0);\n\n $order = null;\n //try to find according to customerId\n if ($orderId > 0) {\n try {\n $order = new Yourdelivery_Model_Order($orderId);\n } catch (Yourdelivery_Exception_Database_Inconsistency $e) {\n \n }\n }\n \n $this->view->order = $order;\n }", "public function updateordersAction()\n {\n $this->getResponse()->setBody(self::getHelper()->updateorders());\n\n }", "public function actionOrders(){\n\t\t$orders = $this->_getOrderModel()->getAllOrder();\n\t\t\n\t\t$viewParams = array(\n\t\t\t'orders' => $orders\n\t\t);\n\t\t\n\t\treturn $this -> responseView('DTUI_ViewPublic_EntryPoint_Orders','dtui_order_list',$viewParams);\n\t}", "public function adminproducts($product_id){\n\t\t\n\t\t\n\t\n\t\t$this->product_req = $product_id[0];\n\t\t$this->get_products();\n\t\t\n\t}", "public function listOrdersAction(){\n\t\t$user = $this->get('security.token_storage')->getToken()->getUser();\n\t\t$orders = $this->getDoctrine()->getManager()->getRepository('EcommerceBundle:UserOrder')->findBy(\n\t\t\t['user' => $user, 'valid' => 1],\n\t\t\t['id' => 'DESC']\n\t\t);\n\t\treturn $this->render('UserBundle:Default:orderIndex.html.twig', array(\n\t\t\t'orders' => $orders\n\t\t));\n\t}", "public function index() {\n return view('admin.orders');\n }", "public function getOrder()\n {\n echo json_encode($this->Inventory_model->getProductById($_POST['idJson']));\n }", "protected static function order_index() {\n\t\t\treturn self::index() . 'orders';\n\t\t}", "public function index()\r\n {\r\n $userInfo = $this->UserRepository->getUserInfoByUserId(Auth::user()->id);\r\n $nameOfPage = 'Orders Page';\r\n $orders = $this->OrdersRepository->getOrders();\r\n $ordersGuests = $this->OrdersRepository->getOrdersForGuests();\r\n $orders = $this->paginateCollection($orders->merge($ordersGuests)\r\n ->sortByDesc('id'), self::PAGINATE);\r\n\r\n return view('admin.orders', compact(self::viewShareVarsAdminPanelOrders));\r\n }", "public function adminAll(){\n $orders = order::with('user')->withTrashed()->get();\n return view('Admin.Orders.all',compact('orders'));\n }", "public function index()\n\t{\n $status_id = \\Input::get('status');\n $product_id = \\Input::get('product');\n \n // lmao\n if (\\Input::get('order')) {\n $order = \\Order::find(\\Input::get('order'));\n if ($order) {\n return \\Redirect::to('admin/orders/' . $order->id);\n } else {\n return \\Redirect::to('admin/orders')->with('message', 'No order ID ' . \\Input::get('order') . ' can be found');\n }\n }\n \n // lmaox2\n if (\\Input::get('imei')) {\n $order = \\Order::where('imei', \\Input::get('imei'))->first();\n if ($order) {\n return \\Redirect::to('admin/orders/' . $order->id);\n } else {\n return \\Redirect::to('admin/orders')->with('message', 'No order with the IMEI ' . \\Input::get('imei') . ' exists in the system');\n }\n }\n \n if (empty($status_id) && empty($product_id)) {\n $orders = \\Order::where('created_at', '>', '0');\n $filter = false;\n $filter_val = false;\n } else if (!empty($status_id)) {\n $orders = \\Order::where('status_id', $status_id);\n $filter = 'status';\n $filter_val = \\OrderStatus::where('id', $status_id)->first();\n } else if (!empty($product_id)) {\n $orders = \\Order::where('product_id', $product_id);\n $filter = 'product';\n $filter_val = \\Product::where('id', $product_id)->first();\n }\n \n $orders = $orders->orderBy('updated_at', 'desc')->get();\n \n // lmaox3\n if (\\Input::get('search')) {\n $orders = \\Order::where('personal_info', 'LIKE', '%'.\\Input::get('search').'%')->orderBy('updated_at', 'desc')->get();\n }\n \n $statuses = \\OrderStatus::all();\n $products = \\Product::all();\n\t return \\View::make('admin.orders.index', array(\n 'orders' => $orders,\n 'filter' => $filter,\n 'filter_val' => $filter_val,\n 'statuses' => $statuses,\n 'products' => $products\n ));\n\t}", "public function order() {\n if(\\Auth::user() == null){\n\n \\Session::flash('warning', 'Je moet eerst inloggen!');\n return Redirect('/inloggen');\n\n }\n\n // Create order\n $order = new Order();\n $order->user_id = \\Auth::user()->id;\n\n // Save order\n $order->save();\n\n // Store ordered products\n foreach($this->getCart() as $item => $amount){\n $order_product = new OrderProduct();\n $order_product->order_id = $order->id;\n $order_product->product_id = $item;\n $order_product->amount = $amount;\n $order_product->save();\n }\n\n // Remove shopping cart session\n session()->forget('cart');\n\n // Send user to his order page\n return Redirect('/orders/'.$order->id);\n\n }", "public function index()\n\t{\n\t\t//\n\t\t$store = Store::where('user_id', $GLOBALS['user']->id)->first();\n\t\t$orders = Order::where('store_id', $store->id)->orderBy('id', 'desc')->paginate(10);\n\t\treturn View::make('stores.admin.order_index', compact('store', 'orders'));\n\t}", "public function actionIndex()\n\t{\n\t\t$model = new Order('search');\n\n\t\tif (!empty($_GET['Order']))\n\t\t\t$model->attributes = $_GET['Order'];\n\n\t\t$dataProvider = $model->search();\n\t\t$dataProvider->pagination->pageSize = Yii::app()->settings->get('core', 'productsPerPageAdmin');\n\n\t\t$this->render('index', array(\n\t\t\t'model'=>$model,\n\t\t\t'dataProvider'=>$dataProvider,\n\t\t));\n\t}", "function admin_index() \r\n {\r\n \t// setting the layout for admin\r\n \t$this->layout = 'admin';\r\n \t$this->Product->recursive = 0;\r\n \t$this->set('products', $this->paginate());\r\n }", "function uc_order_pane_products($op, $order, &$form = NULL, &$form_state = NULL) {\n\n switch ($op) {\n case 'view':\n return tapir_get_table('uc_op_products_view_table', $order);\n\n case 'customer':\n return tapir_get_table('uc_op_products_customer_table', $order);\n\n case 'edit-form':\n $form['add_product_button'] = array(\n '#type' => 'submit',\n '#value' => t('Add product'),\n '#submit' => array('uc_order_pane_products_select'),\n '#ajax' => array(\n 'callback' => 'uc_order_pane_products_ajax_callback',\n 'wrapper' => 'product-controls',\n ),\n );\n $form['add_blank_line_button'] = array(\n '#type' => 'submit',\n '#value' => t('Add blank line'),\n '#submit' => array('uc_order_edit_products_add_blank'),\n '#ajax' => array(\n 'callback' => 'uc_order_pane_products_ajax_callback',\n 'wrapper' => 'product-controls',\n ),\n );\n\n $form['product_controls'] = array(\n '#tree' => TRUE,\n '#prefix' => '<div id=\"product-controls\">',\n '#suffix' => '</div>',\n );\n\n $controls = array();\n\n if (isset($form_state['products_action'])) {\n switch ($form_state['products_action']) {\n case 'select':\n $controls = uc_order_product_select_form($form['product_controls'], $form_state, $order);\n break;\n case 'add_product':\n $controls = uc_order_add_product_form($form['product_controls'], $form_state, $order, $form_state['node']);\n break;\n }\n }\n\n $form['product_controls'] += $controls;\n\n $form += uc_order_edit_products_form($form, $form_state, $order->products);\n\n return $form;\n\n case 'edit-theme':\n $output = drupal_render($form['add_product_button']);\n $output .= drupal_render($form['add_blank_line_button']);\n $output .= drupal_render($form['product_controls']);\n $output .= drupal_render($form['products']);\n\n return $output;\n\n case 'edit-process':\n if (isset($form_state['values']['products'])) {\n foreach ($form_state['values']['products'] as $key => $product) {\n $product['data'] = unserialize($product['data']);\n uc_order_product_save($order->order_id, (object) $product);\n }\n }\n\n break;\n }\n}", "public function getSingleOrders()\n {\n\t\t$order = $this->ShopifyClient->call('GET','/admin/orders/'.$this->config['order_id'].'.json');\n\t\t//print_r($order); exit;\n\t\t$arra = array();\n\t\tif(!empty($order['order']))\n\t\t{\n\t\t\t$keyArr = array('id','email','created_at','number','note','token','gateway','total_price',\n\t\t\t\t\t\t\t'subtotal_price','total_weight','total_tax','taxes_included','currency','financial_status','confirmed','total_discounts',\n\t\t\t\t\t\t\t'total_line_items_price','name','cancelled_at','cancel_reason','total_price_usd','user_id','location_id',\n\t\t\t\t\t\t 'order_number','discount_codes','payment_gateway_names','processing_method','fulfillment_status','tax_lines','refunds',\n\t\t\t\t\t\t\t'line_items');\n\t\t\t$shopifyKeyArr = array('id','email','created_at','number','note','token','gateway','total_price',\n\t\t\t\t\t\t\t\t'subtotal_price','total_weight','total_tax','taxes_included','currency','financial_status','confirmed',\n\t\t\t\t\t\t\t \t'total_discounts','total_line_items_price','name','cancelled_at','cancel_reason','total_price_usd','user_id','location_id',\n\t\t\t\t\t\t \t\t'order_number','discount_codes','payment_gateway_names','processing_method','fulfillment_status','tax_lines','refunds',\n\t\t\t\t\t\t\t\t 'line_items');\n\t\t\t\n\t\t\tforeach($order as $key=>$val) {\t\t\t\t\n\t\t\t\t\tif(!empty($val['billing_address'])){\n\t\t\t\t\t\tarray_push($keyArr, 'billing_address');\n\t\t\t\t\t\tarray_push($shopifyKeyArr, 'billing_address');\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\tif(!empty($val['shipping_address'])){\n\t\t\t\t\t\tarray_push($keyArr, 'shipping_address');\n\t\t\t\t\t\tarray_push($shopifyKeyArr, 'shipping_address');\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$arra['data'][] = $this->createProductArray($val,$shopifyKeyArr,$keyArr);\n\t\t\t}\n\t\t\t$status_code = 200;\n\t\t\t$message = 'success';\t\n\t}else\n\t{\n\t\t$status_code = 404; \n\t\t$message = 'Orders not found';\n\t\t$arra['data'] = array();\n\t\t$arra['data_count'] = 0;\n\t}\t\n\t\t$order = $this->getJsonDataFormat($arra,$status_code,$message);\n\t\treturn $order;\n }", "public function index()\n {\n $allorder= [];\n if(auth()->user()->level == 'admin' )\n {\n $allorder= Order::paginate(10);\n }\n else{\n $allorder=Order::where('user_id',auth()->user()->id)->paginate(10);\n }\n\n \n return view(ad.'.order.index',['title'=>trans('admin.order'),'all'=>$allorder]);\n }", "public function manage_order() {\n $order_info = DB::table('tbl_order')\n ->join('tbl_customer', 'id', '=', 'tbl_order.customer_id')\n ->select('tbl_order.*', 'tbl_customer.*')\n ->get();\n $order_page = view('admin.pages.manage_order')->with('order_info', $order_info);\n return view('admin.admin_master')\n ->with('content', $order_page);\n }", "public function products(Order $order){\n $products = $order->products;\n return view('dashboard.clients.orders._ordersProducts', compact('order', 'products'));\n }", "public function an_admin_user_can_lists_products()\n {\n $this->withExceptionHandling();\n $admin = $this->createAdmin();\n factory(Product::class,10)->create();\n $this->actingAs($admin)\n ->get(route('admin.products.index'))\n ->assertSee('Product List');\n\n //->assertSee('My First Product');\n\n\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n $request = $this->getRequest();\n //filter\n $session = $request->getSession();\n $filter = $session->get('adminorderfilter', new OrderFilter());\n if (empty($filter)) {\n $filter = new OrderFilter();\n $session->set('adminorderfilter', $filter);\n }\n if ($filter->getShippingState() != null) {\n $filter->setShippingState($em->merge($filter->getShippingState()));\n }\n if ($filter->getShippingStatus() != null) {\n $filter->setShippingStatus($em->merge($filter->getShippingStatus()));\n }\n if ($filter->getOrderStatus() != null) {\n $filter->setOrderStatus($em->merge($filter->getOrderStatus()));\n }\n\n $form = $this->createForm(new OrderFilterType(), $filter);\n $page = $this->getRequest()->get('page', $filter->getPage());\n if ($request->getMethod() == \"POST\") {\n $form->bind($request);\n if ($form->isValid()) {\n $page = 1;\n $session->set('adminorderfilter', $filter);\n }\n }\n $filter->setPage($page);\n $session->set('adminorderfilter', $filter);\n\n $querybuilder = $em->getRepository('CoreShopBundle:Order')->createQueryBuilder('o');\n $querybuilder = $em->getRepository('CoreShopBundle:Order')->filterOrderQuieryBuilder($querybuilder, $filter);\n $querybuilder->addOrderBy('o.createdAt', 'desc');\n $query = $querybuilder->getQuery();\n $paginator = $this->get('knp_paginator');\n\n $pagination = $paginator->paginate(\n $query,\n $page/*page number*/,\n 100/*limit per page*/\n );\n\n $processOrders = array();\n foreach ($pagination->getItems() as $order) {\n $processOrder = new ProcessOrder();\n $processOrder->setOrder($order);\n $processOrders[] = $processOrder;\n }\n $process = new Process();\n $process->setProcessOrders($processOrders);\n\n $export = $this->container->getParameter('admin.order.export');\n $processConfig = $this->container->getParameter('admin.order.process');\n $processForm = $this->createForm(new ProcessType(), $process, array('export' => $export, 'config' => $processConfig));\n\n return $this->render('CoreShopBundle:Order:index.html.twig', array(\n 'entities' => $pagination,\n 'form' => $form->createView(),\n 'process' => $processForm->createView(),\n 'processConfig' => $processConfig,\n ));\n }", "public function index() {\n $orders = Order::all()->load('orderitems', 'shippings');\n return view('backend.admin.order.list')->with('orders', $orders);\n }", "public function viewAction()\n {\n $this->loadLayout();\n $id = $this->getRequest()->getParam('id');\n $model = Mage::getModel('oggetto_oneclick/order')->load($id);\n Mage::register('order', $model);\n $this->renderLayout();\n }", "public function indexAction()\n\t{\n\t\t$this->loadLayout();\n\n// This block will point to the file Block/Adminhtml/Order/Items.php\n\t\t$block = $this->getLayout()->createBlock('backend/adminhtml_order_items');\n\t\t$this->_addContent($block);\n\n// Render the layout\n\t\t$this->renderLayout();\n\t}", "public function index()\n {\n $data = [];\n $get_order = DB::select(\"select * from orders order by id desc\");\n // if (!$get_order) {\n // return view(404);\n // }\n $data[\"order_route\"] = 'printorders';\n $data[\"show_order_route\"] = 'show_printporder';\n $data[\"orders\"] = $get_order;\n return view('admin.orders.orders', $data);\n }", "function sortOrderProducts(order_products $orderProducts);", "public function indexAction()\n\t{\n $orderid = (int)$_POST['oid'];\n\t\t//$userid = (int)$_POST['uid'];\n\n\t\t//check valid param\n\t\tif($orderid == 0)\n\t\t\treturn 'noo1';\n\n /*if($userid == 0)\n return 'nou1';*/\n\n\t\t$myOrder = new Core_Orders($orderid);\n\n\t\t//check valid object\n\t\tif($myOrder->id == 0)\n\t\t\treturn 'noo2';\n\n /*if($myOrder->uid != $userid)\n return 'nou2';\n\n $myUser = new Core_User($userid);\n\n if($myUser->id == 0)\n return 'nou2';*/\n\n $getOrderDetail = Core_OrdersDetail::getOrdersDetails(array('foid' => $orderid),'','');\n\n if(empty($getOrderDetail))\n return 'nood1';\n\n $ctnit = 0;\n $crm_listpro = array();\n $orderdatalist = array();\n foreach($getOrderDetail as $od)\n {\n $product = new Core_Product($od->pid);\n if($product->id > 0)\n {\n $crm_listpro[$ctnit]['PRODUCTID'] = (int)$od->pid;\n $crm_listpro[$ctnit]['QUANTITY'] = (int)($od->quantity);\n $crm_listpro[$ctnit]['PRODUCTCODE'] = (string)trim($product->barcode);\n $crm_listpro[$ctnit]['IMEI'] = '';\n $crm_listpro[$ctnit]['CATEGORYID'] = (int)$product->pcid;\n if($product->onsitestatus == Core_Product::OS_ERP_PREPAID)\n {\n $crm_listpro[$ctnit]['PRICE'] = (double)$product->prepaidprice;\n }\n else\n {\n $crm_listpro[$ctnit]['PRICE'] = (double)$od->pricesell;\n }\n $crm_listpro[$ctnit]['ADJUSTPRICE'] = (string)$od->pricefinal;\n\n $orderdatalist['orderdetail'][$ctnit] = $od;\n $orderdatalist['orderdetail'][$ctnit]->product = $product;\n\n $ctnit++;\n }\n }\n if(!empty($crm_listpro))\n {\n //send notification (tam thoi goi cho developer)\n /*$developers = Core_User::getUsers(array('fgroupidlist' => array(GROUPID_ADMIN, GROUPID_DEVELOPER)), '', '', '');\n $textNotification = $myOrder->billingfullname. '(SĐT: '.$myOrder->billingphone.') mua hàng với Invoice ID: '.$myOrder->invoiceid;\n $urlNOtification = $this->registry->conf['rooturl_crm'] .'orders/index/invoiceid/577308569';\n foreach($developers as $dev)\n {\n $myNotificationSystemNotify = new Core_Backend_Notification_SystemNotify();\n $myNotificationSystemNotify->uid = 1;\n $myNotificationSystemNotify->uidreceive = $dev->id;\n $myNotificationSystemNotify->objectid = $myUser->id;\n $myNotificationSystemNotify->text = $textNotification;\n $myNotificationSystemNotify->url = $urlNOtification;\n if($myNotificationSystemNotify->addData())\n {\n //increase notification count for receiver\n Core_User::notificationIncrease('notification', array($myNotificationSystemNotify->uidreceive));\n }\n }*/\n $district = new Core_Region($myOrder->billingdistrict);\n $arr = array();\n $arr['strFullname'] = (string)$myOrder->billingfullname;\n $arr['strAddress'] = (string)$myOrder->billingaddress;\n $arr['strBillAddress'] = (string)$myOrder->billingaddress;\n $arr['strShippAddress'] = (string)$myOrder->shippingaddress;\n $arr['strEmail'] = strtolower($myOrder->contactemail);\n $arr['strPhone'] = preg_replace('/[^0-9]/','', $myOrder->billingphone);\n $arr['strPersonalID'] = '';\n $arr['strNote'] = $myOrder->note;\n $arr['intGender'] = ($myOrder->gender == Core_Orders::GENDER_MALE ? 1: 0);\n $arr['dtBirthdate'] = '01-01-1970';\n $arr['strTaxNo'] = '';\n $arr['intStoreID'] = 0;\n $arr['intCountryID'] = 3;\n $arr['intProvinceID'] = $myOrder->billingregionid;\n $arr['intDistrictID'] = ($district->id > 0 ? $district->districtcrm : $myOrder->billingdistrict);\n $arr['intPayment'] = $myOrder->paymentmethod;\n $arr['intDelivery'] = 0;\n $arr['dbShippingCost'] = (double)($myOrder->priceship > 0 ? $myOrder->priceship : 0.0);\n $arr['intCurrencyUnit'] = 0;\n $arr['dbCurrencyExchange'] = 0.0;\n $arr['lstProductList2'] = json_encode($crm_listpro);\n $arr['strAccountSecretInfo'] = '';\n $arr['strCouponCode'] = '';\n $arr['flCouponDiscount'] = 0.0;\n $arr['strOWNERBANKNAME'] = '';\n $arr['intProgramID'] = (!empty($myOrder->promotionid)?$myOrder->promotionid:29);//programe id từ CRM\n $arr['strInvoiceCode'] = $myOrder->invoiceid;\n $arr['username'] = '';\n $arr['password'] = '';\n //file_put_contents('uploads/testfile.txt', print_r($arr,1));\n //echodebug($arr,true);\n $saleorders = new Core_Saleorder();\n $orderidcrm = $saleorders->addSaleorder($arr);\n if(!empty($orderidcrm) && is_numeric($orderidcrm))\n {\n $getOrder = new Core_Orders($orderid);\n if(!empty($getOrder->id))\n {\n $getOrder->orderidcrm = $orderidcrm;\n $getOrder->ordercrmdate = time();\n $getOrder->updateData();\n echo 'ORDERCRMID: '.$orderidcrm;\n }\n }\n else echo 'ORDERCRMID: '.$orderidcrm;\n /*else{\n file_put_contents('uploads/testeordercrmerror.txt', print_r($orderidcrm, 1).' ORDERIDWEB: '.$orderid);\n }*/\n if(!empty($myOrder->contactemail))\n {\n\t\t\t\t//send mail to user\n\t $orderdatalist['order'] = $myOrder;\n\t $orderdatalist['order']->datecreated = date('d/m/Y H:i:s',$myOrder->datecreated);\n\t if (!empty($myOrder->deliverymethod)) {\n $orderdatalist['order']->deliverymethod = $myOrder->getOrderDeliveryMethod($myOrder->deliverymethod);\n }\n\t if (!empty($myOrder->paymentmethod)) {\n $orderdatalist['order']->paymentmethod = $myOrder->getOrderPaymentMethod($myOrder->paymentmethod);\n }\n\t if (is_array($orderdatalist['order']->deliverymethod)) {\n $orderdatalist['order']->deliverymethod = '';\n }\n\t if (is_array($orderdatalist['order']->paymentmethod)) {\n $orderdatalist['order']->paymentmethod = '';\n }\n foreach ($orderdatalist['orderdetail'] as $key => $orderdetail) {\n $promotion = new Core_Promotion($orderdetail->options['promotionid']);\n $orderdetail->options = $promotion;\n }\n $region = new Core_Region($orderdatalist['order']->billingregionid);\n $orderdatalist['order']->billingregionid = $region->name;\n $district = new Core_Region($orderdatalist['order']->billingdistrict);\n $orderdatalist['order']->billingdistrict = $district->name;\n\t $this->registry->smarty->assign(array(\n\t 'formData' => $orderdatalist\n\t ));\n\t $mailcontent = $this->registry->smarty->fetch($this->registry->smartyMailContainerRoot.'orders/ordersuccessnew.tpl');\n\t if(!empty($myOrder->contactemail)) $this->sendmail('Xác nhận đặt hàng',$mailcontent, $myOrder->contactemail, $myOrder->billingfullname);\n }\n }\n\t}", "public function show($id)\n {\n $cont = new RestController();\n $order = $cont->getRequest('Orders(' . $id . ')?$expand=OrderFieldValue($expand=OrderField),' .\n 'OrderProduct($expand=Product),OrderProductPackage($expand=ProductPackage($expand=Product),Products($expand=Product),Country),' .\n 'ClientAlias($expand=Contact,Country,Client($select=Id,CINumber,ClientManager_Id;$expand=ClientManager($select=FullName))),' .\n 'User($select=FullName,UserName),' .\n 'ApprovedBy($select=UserName),'.\n 'Invoice,Contracts($expand=Product($select=Name),User($select=FullName,UserName),Manager($select=FullName,UserName),Country($select=CountryCode))');\n if ($order instanceof View) {\n return $order;\n }\n if(!empty($order->OrderProductPackage)){\n //getting the addons products because we can't do it in the query\n foreach ($order->OrderProductPackage as $k => $val) {\n $product = $cont->getRequest(\"Products(\" . $val->ProductPackage->Product_Id . \")\");\n if (!$product instanceof View) {\n $order->OrderProductPackage[$k]->ProductPackage->Product = $product;\n }\n }\n }\n\n //get the contracts that came from this order\n $contractsResult = $cont->getRequest(\"Orders($id)/action.Contracts\".'?$expand=User($select=Id,FullName),Manager($select=Id,FullName),OriginalOrder($select=Id),Product($select=Name),Country($select=CountryCode)');\n if(!$contractsResult instanceof View){\n $order->Contract = $contractsResult->value;\n }else{\n $order->Contract = null;\n }\n if(!$this->isOwner($order)){\n return view('errors.denied');\n }\n //merge order products and order product packages , so we support both old and new orders\n $order->OrderProductPackage = array_merge($order->OrderProductPackage,$order->OrderProduct);\n $paymenTerms = $cont->getEnumProperties(['ContractTerms']);\n $paymenTerms = isset($paymenTerms['ContractTerms']) ? $paymenTerms['ContractTerms'] : [];\n\n //put the hashcode for a js\n JavaScriptFacade::put(['Hashcode' => $order->HashCode,'paymentTerms' => $paymenTerms]);\n //add the months corresponding to each OrderProduct payment term\n\n $contractTerms = $cont->getEnumProperties(['ContractTerms']);\n\n foreach ($order->OrderProduct as $k => $val) {\n $paymentTerms = array_search($val->PaymentTerms, $contractTerms['ContractTerms']);\n $order->OrderProduct[$k]->Months = $paymentTerms;\n }\n\n $clientManagers = UsersController::listByRoles(['Client Manager']);\n\n $order->OrderFieldValue = $this->groupOrderFieldValues($order->OrderFieldValue);\n return view('orders.show',compact('order', 'cont','clientManagers'));\n }", "public function manageAction() {\n /**\n * check customer logged in or not\n *\n * @var unknown\n */\n $isCustomerLoggedIn = $this->_getSession ()->isLoggedIn ();\n if (! $isCustomerLoggedIn) {\n /**\n * add error message\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You must have a Seller Account to access this page' ) );\n $this->_redirect ( 'marketplace/seller/login' );\n return;\n }\n /**\n * load and render layout\n */\n $this->loadLayout ();\n /**\n * Set title\n */\n $this->getLayout ()->getBlock ( 'head' )->setTitle ( $this->__ ( 'Manage Orders' ) );\n $this->renderLayout ();\n }", "public function order()\n {\n //加载用户下订单页面\n return view('Home/Order/order') ;\n }", "public function index()\n {\n $this->isAdmin();\n\n if (Session::get('admin-success')) {\n\n $this->data['success'] = Session::get('admin-success');\n Session::delete('admin-success');\n }\n\n if (Session::get('admin-warning')) {\n\n $this->data['warning'] = Session::get('admin-warning');\n Session::delete('admin-warning');\n }\n\n $productModel = new ProductModel();\n\n $products = $productModel->getEntityByDate();\n\n $this->data['productsInfo'] = $products;\n\n $this->adminRender('index');\n }", "public function index()\n {\n $orders = Order::with('customer','spec', 'product', 'variation', 'address')->latest()->paginate(10);\n\n return view('admin.orders-list')\n ->withOrders($orders);\n\n }", "public function delete_OrderPage(){\n $id_product = $_REQUEST[\"id_product\"];\n $id_order = $_REQUEST[\"id_order\"];\n $query = \"DELETE FROM order_u\n WHERE order_u.id = $id_order;\";\n $data = $this->connection->query($query);\n\n $query = \"DELETE FROM order_product\n WHERE order_product.order_id = $id_order;\";\n $data = $this->connection->query($query);\n \n }", "public function show(ProductOrder $productOrder)\n {\n //\n }", "public function index()\n {\n $orders = DB::table('orders_products')\n ->leftJoin('products','products.id','=','orders_products.products_id')\n ->leftJoin('orders','orders.id','=','orders_products.orders_id')\n ->orderBy('orders.created_at','desc')->paginate(10);\n return view('admin.orders.index',compact('orders'));\n }", "function MyShop_Order($args) {\n global $_CONF, $_TABLES, $_MYSHOP_CONF;\n\n $sql = \"SELECT orderid,productid,email,quantity,status from {$_TABLES['myshop_order']}\";\n $result = DB_query($sql);\n $num = DB_numrows($result);\n\n if($num > 0)\n {\n for ($i = 0; $i < $num; $i++)\n {\n $A = DB_fetchArray($result);\n \n $product_name = DB_getItem($_TABLES['myshop_product'], 'name', \"productid={$A['productid']}\");\n if($A['status'] == \"on\"){\n $ship = \" checked\";\n }\n \n $row .= \"<form action=\\\"index.php\\\" METHOD=\\\"POST\\\"><tr>\\n\";\n $row .= \"<input type=\\\"hidden\\\" name=\\\"orderid\\\" value=\\\"{$A['orderid']}\\\">\\n\";\n $row .= \"<td>$product_name</td>\";\n $row .= \"<td>{$A['quantity']}</td>\";\n $row .= \"<td>{$A['email']}</td>\";\n $row .= \"<td><input type=\\\"checkbox\\\" name=\\\"status\\\"{$ship}></td>\";\n $row .= \"<td><button type=\\\"submit\\\" name=\\\"mode\\\" value=\\\"order_save\\\" class=\\\"uk-button uk-button-primary\\\">変更</button>\";\n $row .= \"<button type=\\\"submit\\\" name=\\\"mode\\\" value=\\\"order_delete\\\" class=\\\"uk-button\\\">削除</button></td>\\n\";\n $row .= \"</tr></form>\\n\";\n }\n }\n else {\n $row = MyShop_str('no_order');\n }\n\n $T = new Template($_CONF['path'] . 'plugins/myshop/templates');\n\n $T->set_file(array (\n 'topmenu' => 'topmenu.thtml',\n 'table' => 'table.thtml',\n ));\n\n $T->set_var(array(\n 'lang_piname' => $_MYSHOP_CONF['pi_display_name'],\n 'icon_url' => $_CONF['site_url'] . '/myshop/images/myshop.png',\n 'title' => MyShop_str('pi_name'),\n 'caption' => MyShop_str('top_menu_caption'),\n 'menu1' => MyShop_str('top_menu1'),\n 'menu2' => MyShop_str('top_menu2'),\n 'menu3' => MyShop_str('top_menu3'),\n 'menu4' => MyShop_str('top_menu4'),\n 'notfound' => $notfound,\n 'h1' => MyShop_str('product_name'),\n 'h2' => MyShop_str('tbl_head_amount'),\n 'h3' => MyShop_str('publish'),\n 'h4' => MyShop_str('finish'),\n 'h5' => \"-\",\n 'list' => $row,\n ));\n\n $T->parse('output', 'topmenu');\n $content .= $T->finish($T->get_var('output'));\n\n $T->parse('output', 'table');\n $content .= $T->finish($T->get_var('output'));\n \n $display = COM_createHTMLDocument($content);\n COM_output($display);\n}", "public function order() {\n if(!$this->that->config->get('koraki_checkout'))\n return;\n\n if(!$this->that->session->data['order_id'])\n return;\n\n if (isset($this->that->request->server['HTTPS']) && (($this->that->request->server['HTTPS'] == 'on') || ($this->that->request->server['HTTPS'] == '1'))) {\n $base = $this->that->config->get('config_ssl');\n } else {\n $base = $this->that->config->get('config_url');\n }\n\n $this->that->load->model('checkout/order');\n $this->that->load->model('account/order');\n $this->that->load->model('catalog/product');\n $this->that->load->model('tool/image');\n\n $order_info = $this->that->model_checkout_order->getOrder($this->that->session->data['order_id']);\n if ($order_info) {\n $first_name = html_entity_decode($order_info['payment_firstname'], ENT_QUOTES, 'UTF-8');\n $last_name = html_entity_decode($order_info['payment_lastname'], ENT_QUOTES, 'UTF-8');\n $address1 = html_entity_decode($order_info['payment_address_1'], ENT_QUOTES, 'UTF-8');\n $address2 = html_entity_decode($order_info['payment_address_2'], ENT_QUOTES, 'UTF-8');\n $city = html_entity_decode($order_info['payment_city'], ENT_QUOTES, 'UTF-8');\n $zip = html_entity_decode($order_info['payment_postcode'], ENT_QUOTES, 'UTF-8');\n $country = $order_info['payment_country'];\n\n $order_products = $this->that->model_account_order->getOrderProducts($this->that->session->data['order_id']);\n $product_name_html = \"something\";\n $cart_count = count($order_products);\n if($cart_count > 0){\n $product_name_html = \"<a href='\" . $base . \"?route=product/product&product_id=\" . $order_products[0]['product_id'] . \"' target='_blank'>\" . html_entity_decode($order_products[0]['name'], ENT_QUOTES, 'UTF-8') . \"</a>\";\n if($cart_count > 1){\n $product_name_html .= \" and \" . ($cart_count - 1) . \" other product\";\n $product_name_html .= $cart_count != 2 ? \"s\" : \"\";\n }\n }\n\n $items = array();\n foreach ($order_products as $product) {\n $p = $this->that->model_catalog_product->getProduct($product['product_id']);\n $popup = $this->that->model_tool_image->resize($p['image'], 150, 150);\n $item = array(\n \"product_id\" => $product['product_id'],\n \"product_name\" => $product['name'],\n \"url\" => $base . \"?route=product/product&product_id=\" . $product['product_id'],\n \"thumbnail\" => $popup\n );\n $items[] = $item;\n }\n\n $variables = array(\n \"fname\" => $first_name,\n \"lname\" => $last_name,\n \"city\" => $city,\n \"country\" => $country,\n \"country_code\" => html_entity_decode($order_info['payment_iso_code_2'], ENT_QUOTES, 'UTF-8'),\n \"items\" => $items\n );\n\n $location_array = array($city, $country);\n $location = $city ? join(\", \", $location_array) : $country;\n $location_verb = (empty($country) && empty($city)) ? \"\" : \" from \" . $location;\n\n $post = array(\n \"variables\" => json_encode($variables),\n \"notificationText\" => $first_name . $location_verb . \" purchased \" . $product_name_html,\n \"location\" => $address2 . \", \" . $city . \", \" . $city . \", \" . $country,\n \"thumbnailUrl\" => $items[0]['thumbnail'],\n );\n\n $this->post($post);\n }\n }", "public function vieworderAction() {\n /**\n * Initilize customer and seller group id\n */\n $customerGroupId = $sellerGroupId = $customerStatus = '';\n /**\n * Get customerid,groupid and seller status.\n */\n $customerGroupId = Mage::getSingleton ( 'customer/session' )->getCustomerGroupId ();\n $sellerGroupId = Mage::helper ( 'marketplace' )->getGroupId ();\n $customerStatus = Mage::getSingleton ( 'customer/session' )->getCustomer ()->getCustomerstatus ();\n $returnFlag = 0;\n /**\n * Check the seller login.\n */\n if (! Mage::getSingleton ( 'customer/session' )->isLoggedIn () && $customerGroupId != $sellerGroupId) {\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You must have a Seller Account to access this page' ) );\n $returnFlag = 1;\n }\n /**\n * Checking whether customer approved or not\n */\n if ($customerStatus != 1) {\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'Admin Approval is required. Please wait until admin confirms your Seller Account' ) );\n $returnFlag = 1;\n }\n if ($returnFlag == 1) {\n $this->_redirect ( 'marketplace/seller/login' );\n return false;\n }\n /**\n * Get the order id from the parms value.\n */\n $orderId = $this->getRequest ()->getParam ( 'orderid' );\n /**\n * Get the product details based on the orderid.\n */\n $orderPrdouctIds = Mage::helper ( 'marketplace/vieworder' )->getOrderProductIds ( Mage::getSingleton ( 'customer/session' )->getId (), $orderId );\n if (count ( $orderPrdouctIds ) <= 0) {\n $this->_redirect ( 'marketplace/order/manage' );\n return false;\n }\n /**\n * Get ordered collection.\n */\n $collection = Mage::getModel ( 'marketplace/commission' )->getCollection ()->addFieldToFilter ( 'seller_id', Mage::getSingleton ( 'customer/session' )->getId () )->addFieldToFilter ( 'order_id', $orderId )->getFirstItem ();\n /**\n * Check orderid from the order collection.\n */\n if (count ( $collection ) >= 1 && $collection->getOrderId () == $orderId) {\n /**\n * load and render layout\n */\n $this->loadLayout ();\n $this->getLayout ()->getBlock ( 'head' )->setTitle ( $this->__ ( 'View Order' ) );\n $this->renderLayout ();\n } else {\n /**\n * Check the errors, when internal error occured in view order.\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You do not have permission to access this page' ) );\n $this->_redirect ( 'marketplace/order/manage' );\n return false;\n }\n }", "function theme_uc_product_content_show_order($node) {\n //dsm($node);\n \n $ret = '<div class=\"field\"><div class=\"field-label\">Invoice:</div>';\n $ret .= '<div class=\"field-items\">';\n $ret .= uc_order_load_invoice($node->order);\n $ret .= '</div></div>';\n \n return $ret;\n}", "public function index() {\n $admin = Auth::user();\n if(!$admin->is_admin)\n return redirect()->route('error',['whichone' => '403' ]);\n $recent_orders = Order::join('users','users.id','=','orders.user_id')\n ->orderByDesc('date_order')->select('orders.id','first_name','last_name','orders.id')->paginate(4);\n $recent_order = [];\n foreach ($recent_orders as $ro) {\n $pid = Ordersproduct::where('order_id',$ro->id)->pluck('product_id');\n $paths = Product::find($pid)->pluck('path');\n $recent_order [] = [$ro, $paths];\n }\n $total_order = Order::count();\n $total_income = Order::sum('price');\n $total_user = User::count();\n $total_product = Product::count();\n $big_numbers = Order::orderByDesc('price')->select('price','first_name','last_name','date_order','statut')->join('users','users.id','=','orders.user_id')->paginate(6);\n return view('/dashboard/admin')->with([\n 'admin' => $admin,\n 'recent_order' => $recent_order,\n 'total_order' => $total_order,\n 'total_user' => $total_user,\n 'total_product' => $total_product,\n 'total_income' => $total_income,\n 'big_numbers' => $big_numbers,\n ]);\n }", "public function orders(){\n\t\t\t\n\t\t\tif(!$this->session->userdata('admin_logged_in')){\n\t\t\t\t\t\t\t\t\n\t\t\t\t$url = 'admin/login?redirectURL='.urlencode(current_url());\n\t\t\t\tredirect($url);\t\t\t\t\t\t\t\n\t\t\t\t//redirect('admin/login/','refresh');\n\t\t\t\t\n\t\t\t}else{\t\t\t\n\n\t\t\t\t$username = $this->session->userdata('admin_username');\n\t\t\t\t\n\t\t\t\t$data['user_array'] = $this->Admin->get_user($username);\n\t\t\t\t\t\n\t\t\t\t$fullname = '';\n\t\t\t\tif($data['user_array']){\n\t\t\t\t\tforeach($data['user_array'] as $user){\n\t\t\t\t\t\t$fullname = $user->admin_name;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$data['fullname'] = $fullname;\n\t\t\t\t\t\n\t\t\t\t$data['unread_contact_us'] = $this->Contact_us->count_unread_messages();\n\t\t\t\t\t\n\t\t\t\t$messages_unread = $this->Messages->count_unread_messages($username);\n\t\t\t\tif($messages_unread == '' || $messages_unread == null){\n\t\t\t\t\t$data['messages_unread'] = 0;\n\t\t\t\t}else{\n\t\t\t\t\t$data['messages_unread'] = $messages_unread;\n\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t$data['header_messages_array'] = $this->Messages->get_header_messages($username);\n\t\t\t\t\n\t\t\t\t$enquiries_unread = $this->Sale_enquiries->count_unread_enquiries();\n\t\t\t\tif($enquiries_unread == '' || $enquiries_unread == null){\n\t\t\t\t\t$data['enquiries_unread'] = 0;\n\t\t\t\t}else{\n\t\t\t\t\t$data['enquiries_unread'] = $enquiries_unread;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//generate a random 8 digit string of numbers\n\t\t\t\t//ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\n\t\t\t\t$reference = substr(str_shuffle(\"0123456789\"), 0, 8);\n\t\t\t\t\t\n\t\t\t\t//ensure the username is unique\n\t\t\t\twhile(!$this->Orders->is_unique_reference($reference)){\n\t\t\t\t\t$reference = substr(str_shuffle(\"0123456789\"), 0, 8);\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$data['reference'] = $reference;\n\t\t\t\t\n\t\t\t\t//assign page title name\n\t\t\t\t$data['pageTitle'] = 'Orders';\n\t\t\t\t\t\t\t\t\n\t\t\t\t//assign page title name\n\t\t\t\t$data['pageID'] = 'orders';\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t//load header and page title\n\t\t\t\t$this->load->view('admin_pages/header', $data);\n\t\t\t\t\t\t\t\n\t\t\t\t//load main body\n\t\t\t\t$this->load->view('admin_pages/orders_page', $data);\t\n\t\t\t\t\t\n\t\t\t\t//load footer\n\t\t\t\t$this->load->view('admin_pages/footer');\n\t\t\t\t\t\n\t\t\t}\n\t\t\t\t\n\t\t}", "protected function newOrderAction()\n {\n $entity = $this->createNewEntity();\n\n $easyadmin = $this->request->attributes->get('easyadmin');\n $easyadmin['item'] = $entity;\n $this->request->attributes->set('easyadmin', $easyadmin);\n\n $fields = $this->entity['new']['fields'];\n\n $newForm = $this->createNewForm($entity, $fields);;\n\n $newForm->handleRequest($this->request);\n if ($newForm->isValid()) {\n\n foreach ($entity->getProducts() as $product)\n {\n $product->setOrder($entity);\n }\n\n $this->em->persist($entity);\n $this->em->flush();\n\n $refererUrl = $this->request->query->get('referer', '');\n\n return !empty($refererUrl)\n ? $this->redirect(urldecode($refererUrl))\n : $this->redirect($this->generateUrl('easyadmin', array('action' => 'list', 'entity' => $this->entity['name'])));\n }\n\n return $this->render($this->entity['templates']['new'], array(\n 'form' => $newForm->createView(),\n 'entity_fields' => $fields,\n 'entity' => $entity,\n ));\n }", "public function gridAction() {\n $this->loadLayout();\n $this->getResponse()->setBody(\n $this->getLayout()->createBlock('laybuy/adminhtml_orders_grid')->toHtml()\n );\n }", "public function index()\n {\n $getAdminId = Session::get('admin_id');\n $getProduct = Product::all();\n if($getAdminId != NULL){\n return view('Admin.Product.show',compact('getProduct'));\n }else{\n return Redirect()->Route('LOGINADMIN');\n }\n }", "public function clientorders(){\n\n //orders information\n $this->loadData(Orders::getOrder($_SESSION[\"userId\"]), \"oOrders1\");\n if(Orders::getOrder($_SESSION[\"userId\"])){\n //last order information\n foreach ($this->oOrders1 as $order1){ \n $this->loadData(OrdersproductsDetails::getOrderProductD($order1->id), \"oOrders\");\n //load list of orders each time\n $this->loadView(\"views/cmsOrders.php\", 1, \"list\"); \n } \n } \n \n //load list of orders\n //$this->loadView(\"views/cmsOrders.php\", 1, \"list\"); \n //user information\n $this->loadData(User::getCurrent(), \"oCurUser\");\n //load the header\n $this->loadView(\"views/header.php\", 1 ,\"header\"); \n //load the admin final view\n $this->loadLastView(\"views/cmsClient.php\"); \n $this->loadLastView(\"views/main.php\"); \n }", "public function show(Order $order)\n { \n //\n }", "public function activeOrders()\n {\n }", "public function view_order()\n\t{\n\t\tif ($this->checkLogin('A') == '') {\n\t\t\tredirect('admin');\n\t\t} else {\n\t\t\t$this->data['heading'] = 'View Order';\n\t\t\t$user_id = $this->uri->segment(4, 0);\n\t\t\t$deal_id = $this->uri->segment(5, 0);\n\t\t\t$this->data['ViewList'] = $this->order_model->view_orders($user_id, $deal_id);\n\t\t\t$this->load->view('admin/order/view_orders', $this->data);\n\t\t}\n\t}", "public function index()\n {\n return view('marchant.orders.order');\n }", "public function products()\n {\n if ($_SESSION['role'] == 1)\n { \n //get tickets info features from the database\n $ProductModel = $this->model('ProductModel');\n $this->products = $ProductModel->adminGetProducts(); \n $this->view('AdminDashboard/products', ['viewName' => 'Dashboard - Products']);\n }\n else\n {\n header('location: '.URL.'Login');\n }\n }", "function order()\n {\n $currentUser = $this->model->khachhang->getById('khachhang', 'idKhachHang', $_SESSION['idUser']);\n $allCartItems = $this->model->khachhang->getCart();\n $arrayMobiles = [];\n for ($i = 0; $i < sizeof($allCartItems); $i++) {\n $mobile = $this->model->khachhang->getById('mobile', 'idMobile', $allCartItems[$i]['mobile_idMobile']);\n // only need base image so other image we passed an empty array []\n linkImageAndMobile($mobile, $this->model->hinhanh->getBaseImage($mobile['idMobile']), []);\n $mobile['number-on-cart'] = $allCartItems[$i]['soLuong'];\n array_push($arrayMobiles, $mobile);\n }\n $this->view->load('frontend/user/order', [\n 'user' => $currentUser,\n 'arrayMobiles' => $arrayMobiles\n ]);\n }", "public function index()\n\t{\n\t\t//\n\t\t//\n\n\t\treturn view('admin.sale-order.index');\n\t}", "public function orderdetailsAction(){\n\t\ttry{\n\t\t\t$sm = $this->getServiceLocator();\n\t\t\t$authService = $sm->get('AuthService');\n\t\t\t$identity = $authService->getIdentity();\n\t\t\t$canDelete = $sm->get('ControllerPluginManager')->get('AuthPlugin')->checkResource($authService, 'Order\\Controller\\Index::deleteorder');\n\t\t\t\n\t\t\t$config = $sm->get('Config');\n\t\t\t\n\t\t\t$id = $this->params('id');\n\t\t\t\n\t\t\t$order_id = \\De\\Service\\CommonService::generateStockCode($id, 'order');\n\t\t\t\n\t\t\t$newJobForm = $sm->get('Order\\Form\\JobForm');\n\t\t\t$newJobForm->get('order_id')->setValue($id);\n\t\t\t\n\t\t\t/* TODO: read this from a variable or something */\n\t\t\t$defaultOwnerId = 25;\n\t\t\t$newJobForm->get('owner_id')->setValue($defaultOwnerId);\n\t\t\t\t\t\t\n\t\t\t$orderTable = $sm->get('Order\\Model\\OrderTable');\n\t\t\t$order = (array)$orderTable->fetchOrderDetails($id);\n\t\t\t$order['orderAttachments'] = $orderTable->fetchOrderAttachments($id);\n\t\t\t\n\t\t\t$order['exp_delivery_date'] = (isset($order['exp_delivery_date']) && !empty($order['exp_delivery_date'])) ? date($config['phpDateFormat'], strtotime($order['exp_delivery_date'])) : null;\n\t\t\t$order['created_date'] = (isset($order['created_date']) && !empty($order['created_date'])) ? date($config['phpDateFormat'], strtotime($order['created_date'])) : null;\n\t\t\t\n\t\t\t$objInvoice = $sm->get('Invoice\\Model\\InvoiceTable');\n\t\t\t$invoiceItems = $objInvoice->fetchInvoiceItems($order['invoice_number']);\n\t\t\t\n\t\t\t// Delete Invoice - starts\n\t\t\tif(!empty($order['invoice_number'])){\n\t\t\t\t$xero = new \\Invoice\\Model\\Xero($sm);\n\t\t\t\t$invoice = $xero->getInvoiceById($order['invoice_number']);\n\t\t\t\t\n\t\t\t\tif($invoice->Invoices->Invoice->Status == 'DELETED'){\n\t\t\t\t\t$objInvoice = $sm->get('Invoice\\Model\\InvoiceTable');\n\t\t\t\t\t$objInvoice->detachOrderInvoice($order['invoice_number']);\n\t\t\t\t\t$order['invoice_number'] = null;\n\t\t\t\t}\n\t\t\t}\t\t\t\n\t\t\t// Delete Invoice - ends\n\t\t\t\n\t\t\t$partnerData = array('fullname' => $order['partner_name'], 'email' => $order['part_email'], 'mobile' => $order['part_mobile']);\n\t\t\t\n\t\t\t$userTable = $sm->get('Customer\\Model\\UsersTable');\n\t\t\t$ownerOptions = $userTable->fetchUsersForTasks();\n\t\t\t\n\t\t\treturn array('recordsPerPage' => $config['recordsPerPage'], 'newJobForm' => $newJobForm, 'identity' => $identity,\n\t\t\t\t\t\t 'order_id' => $order_id, 'order' => $order, 'invoice_items' => $invoiceItems, 'partnerData' => $partnerData,\n\t\t\t\t\t\t 'config' => $config, 'ownerOptions' => $ownerOptions,\n\t\t\t\t\t\t 'canDelete' => $canDelete\n\t\t\t);\n\t\t}catch(Exception $e){\n\t\t\t\\De\\Log::logApplicationInfo ( \"Caught Exception: \" . $e->getMessage () . ' -- File: ' . __FILE__ . ' Line: ' . __LINE__ );\n\t\t}\n\t}", "public function showOrders()\r\n\t{\r\n\t\t$orderNumbers = Orders::getAll();\r\n\r\n\t\t$ordersList = array_map(function ($orderNumber) {\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\treturn new Orders($orderNumber);\r\n\r\n\t\t\t\t\t}, $orderNumbers);\r\n\r\n\t\t$orders = (new Collection($ordersList))->paginate(10);\r\n\r\n\t\treturn view('admin/orders', compact('orders'));\r\n\t}", "public function index()\n {\n //\n\t\treturn OrderResource::collection(Order::all());\n }", "public function index()\n {\n $a = Order::all();\n foreach ($a as $key => $value) {\n $order_id = $value->order_id;\n }\n $order = DB::table('tpl_order')\n ->select(\n 'tpl_order.order_id',\n 'tpl_order.updated_at',\n 'tpl_order.status',\n 'users.username',\n 'tpl_order.note'\n )\n ->join('users', 'users.id', '=', 'tpl_order.user_id')\n ->get();\n $order_detail = DB::table('tpl_order_dt')\n ->join('tpl_order', 'tpl_order.order_id', '=', 'tpl_order_dt.order_id')\n ->join('tpl_product', 'tpl_product.product_id', '=', 'tpl_order_dt.product_id')\n ->select(\n 'tpl_product.product_img',\n 'tpl_product.product_name',\n 'tpl_order.*',\n 'tpl_order_dt.*'\n )\n ->get();\n return view('pages.server.order.list')\n ->with('order', $order)\n ->with('order_detail', $order_detail);\n }", "public function order($id)\n {\n $product = Product::find($id);\n return view('inventory.orders.order', compact('product'));\n }", "public function index()\n {\n return view('pages.admin.orders.index')->with('orders',Orders::all());\n }", "function products()\n {\n \n $this->load->view('admin/products');\n }", "protected function _getOrderManagementApi()\n {\n return Mage::getSingleton('klarna_kco/api_rest_ordermanagement')\n ->setConfig($this->getConfig())\n ->setStore($this->getStore());\n }", "public function show(orders $orders)\n {\n //\n }", "public function index()\n {\n $datos['orders'] = Order::query()\n ->addSelect([\n 'currency_name' => Currency::select('alpha_code')\n ->where([\n 'id' => function ($query) {\n $query->select([\n 'product_id' => Product::select('currency_id')\n ->whereColumn('orders.product_id', 'products.id')\n ->limit(1)\n ]);\n }\n ])\n ->limit(1),\n 'product_photo' => Product::select('photo')\n ->whereColumn('orders.product_id', 'products.id')\n ->limit(1),\n 'product_name' => Product::select('name')\n ->whereColumn('orders.product_id', 'products.id')\n ->limit(1),\n 'country_name' => Country::select('alpha_2_code')\n ->whereColumn('id', 'orders.country_id')\n ->limit(1),\n ])->paginate();\n return view('orders.index', $datos);\n }", "public function index()\n {\n $orders = Order::orderBy('id','desc')->get();\n return view('admin.order.order',compact('orders'));\n }", "public function showOrderList() {\n\n $orders = history::orderBy('customer_id')->orderBy('command_at','desc')->paginate(10);\n return view('admin.orderList',compact('orders'));\n }", "public function index()\n {\n if(!file_exists(storage_path() . \"/installed\"))\n {\n header('location:install');\n die;\n }\n else\n {\n $local = parse_url(config('app.url'))['host'];\n\n // Get the request host\n $remote = request()->getHost();\n // Get the remote domain\n $store = Store::where('domains', '=', $remote)->where('enable_domain', 'on')->first();\n // If the domain exists\n if($store && $store->enable_domain == 'on')\n {\n return app('App\\Http\\Controllers\\StoreController')->storeSlug($store->slug);\n }\n $sub_store = Store::where('subdomain', '=', $remote)->where('enable_subdomain', 'on')->first();\n if($sub_store && $sub_store->enable_subdomain == 'on')\n {\n return app('App\\Http\\Controllers\\StoreController')->storeSlug($sub_store->slug);\n }\n }\n\n if(\\Auth::check())\n {\n if(\\Auth::user()->type == 'Owner')\n {\n $store = Auth::user();\n $newproduct = Product::where('store_id', $store->current_store)->count();\n $products = Product::where('store_id', $store->current_store)->limit(5)->get();\n $new_orders = Order::where('user_id', $store->current_store)->limit(5)->orderBy('id', 'DESC')->get();\n $orders = Order::where('user_id', $store->current_store)->get();\n $chartData = $this->getOrderChart(['duration' => 'week']);\n $store_id = Store::where('id', $store->current_store)->first();\n if($store_id)\n {\n $app_url = trim(env('APP_URL'), '/');\n $store_id['store_url'] = $app_url . '/store/' . $store_id['slug'];\n }\n\n $totle_sale = 0;\n $totle_order = 0;\n if(!empty($orders))\n {\n $pro_qty = 0;\n $item_id = [];\n $totle_qty = [];\n foreach($orders as $order)\n {\n $order_array = json_decode($order->product);\n $pro_id = [];\n foreach($order_array->products as $key => $item)\n {\n if(!in_array($item->id, $item_id))\n {\n $item_id[] = $item->id;\n $totle_qty[] = $item->quantity;\n }\n else\n {\n\n $totle_qty[array_search($item->id, $item_id)] += $item->quantity;\n }\n }\n $totle_sale += $order['price'];\n $totle_order++;\n }\n }\n\n return view('home', compact('products', 'store_id', 'totle_sale', 'store', 'orders', 'totle_order', 'newproduct', 'item_id', 'totle_qty', 'chartData', 'new_orders'));\n }\n else\n {\n $user = \\Auth::user();\n $user['total_user'] = $user->countCompany();\n $user['total_paid_user'] = $user->countPaidCompany();\n $user['total_orders'] = Order::total_orders();\n $user['total_orders_price'] = Order::total_orders_price();\n $user['total_plan'] = Plan::total_plan();\n $user['most_purchese_plan'] = (!empty(Plan::most_purchese_plan()) ? Plan::most_purchese_plan()->name : '-');\n $chartData = $this->getOrderChart(['duration' => 'week']);\n\n return view('home', compact('user', 'chartData'));\n\n }\n }\n else\n {\n if(!file_exists(storage_path() . \"/installed\"))\n {\n header('location:install');\n die;\n }\n else\n {\n $settings = Utility::settings();\n\n if($settings['display_landing_page'] == 'on')\n {\n $plans = Plan::get();\n $get_section = LandingPageSections::orderBy('section_order', 'ASC')->get();\n\n return view('layouts.landing', compact('get_section', 'plans'));\n }\n else\n {\n return redirect('login');\n }\n }\n }\n }", "private function getShopOrderList() {\n\t\tif (array_key_exists('shopTemplate', $this->template->conf)) {\n\t\t\t$templateCode = $this->template->plugin->fileResource($this->template->conf['shopTemplate']);\n\t\t\t//$templateCode = $this->template->tplutils->getSubpart($tmpl, '###ORDERS_LIST_TEMPLATE###');\n\t\t} else {\n\t\t\t$templateCode = $this->template->plugin->getTemplate('###SHOP###');\n\t\t}\n\n\t\t$feusers_uid = $GLOBALS['TSFE']->fe_user->user['uid'];\n\t\tif (!$feusers_uid) {\n\t\t\treturn $this->template->tplutils->getSubpart($templateCode, '###MEMO_NOT_LOGGED_IN###');\n\t\t}\n\n\t\t$cond = array();\n\t\t$cond['select'] = '*';\n\t\t$cond['from'] = 'sys_products_orders';\n\t\t$cond['order'] = 'crdate';\n\n\t\t$cond['limit'] = '';\n\n\t\t// Get a custom where, or default if none\n\t\t$cond = $this->calc->custom->getOrderListCondition();\n\t\tif (!$cond) {\n\t\t\t$cond['where'] = 'feusers_uid=' . intval($feusers_uid) . ' AND NOT deleted';\n\t\t} else if (!is_array($cond)) {\n\t\t\t$cond['where'] = $cond;\n\t\t}\n\n\t\treturn $this->layoutOrderList($templateCode, $cond);\n\t}", "public static function getOrders()\n\t{\n $orders = DB::query(\"SELECT orderproducts.*, products.strName, products.strDescription, products.strFeatures, products.price, products.category_id, products.status_id, orders.totalAmount, orders.date, inventoryproducts.name AS inventoryproductsname\n FROM orderproducts\n LEFT JOIN orders ON orderproducts.orderId=orders.id\n LEFT JOIN products ON orderproducts.productId=products.id\n LEFT JOIN inventoryproducts ON products.inventoryproductsId=inventoryproducts.id\");\n\n // acting as a factory\n // empty array to avoid errors when nothing was found\n\t\t$ordersArray = array();\n\t\tforeach($orders as $order)\n\t\t{\n\t\t\t// create an instance / object for this SPECIFIC \n\t\t\t$ordersArray[] = new OrdersAdmin($order); // put this object onto the array\n }\n\t\t// return the list of objects\n\t\t//return $ordersArray;\n }", "function user_orders()\n {\n $data['fetch_category'] = $this->Admin_model->category();\n $data['fetch_sub_category'] = $this->Admin_model->sub_category();\n $data['accepted_projects'] = $this->Admin_model->accepted_projects();\n\n $data['fetch_tags'] = $this->Admin_model->fetch_tags();\n $data['basic_info'] = $this->Admin_model->basic_info();\n\n //...........for view page.................//\n $data['fetch_user_orders'] = $this->Admin_model->fetch_user_orders();\n\n $this->load->view('include/header', $data);\n $this->load->view('user_orders', $data);\n $this->load->view('include/footer', $data);\n }", "public function index()\n {\n //\n return OrderResource::collection(Order::paginate());\n }", "public function viewOrders(){\n\n $orders=UserOrder::with('get_order_details.get_product_details.get_images')->where('status','<>','cancelled')->get();\n\n return view('frontend.view_orders',['configurations'=>$this->configuration,'orders'=>$orders]);\n }", "public function order_show()\n {\n //\n $orders = Order::all();\n \n return view('productions.order_show',['orders' => $orders,]);\n }", "public function show(Order $orders)\n {\n //\n }", "public function show(Orders $orders)\n {\n //\n }", "public function show(Orders $orders)\n {\n //\n }", "public function show(Orders $orders)\n {\n //\n }", "public function index()\n {\n //\n $orders = Order::all();\n return view('admin.order.index', compact('orders'));\n }", "function get_order()\n{\n\n}", "public function testUpdateOrder()\n {\n }", "public function show(Order $order)\n {\n //\n\n }", "function product()\n {\n if (($data['logedUser'] = $this->_admin_pages()))\n { \n \n $product['content'] = Modules::run('product/_index'); \n \n $data['header'] = '';\n $data['titelHeader'] = $this->lang->line('product');\n $data['content'] = Modules::run('ajaxme/ajaxmeAdminProduct',$product);\n \n \n $this->load->view('general',$data);\n \n }\n }", "public function order()\n {\n $message = false;\n $user = $this->checkIfLogged();\n $cartSubprods = Cart::where('user_id', $user['user_id'])\n ->where('parent_id', null)\n ->where('subproduct_id', '!=', null)\n ->get();\n\n $cartSets = Cart::where('user_id', $user['user_id'])\n ->where('parent_id', null)\n ->where('set_id', '!=', 0)\n ->get();\n\n foreach ($cartSubprods as $key => $cartSubprod) {\n if ($cartSubprod->stock_qty == 0) {\n Cart::where('id', $cartSubprod->id)->delete();\n $message = \"Unu sau mai multe produse din cos au fost deja cumparate\";\n }\n }\n\n foreach ($cartSets as $key => $cartSet) {\n if ($cartSet->stock_qty == 0) {\n Cart::where('id', $cartSubprod->id)->delete();\n $message = \"Unu sau mai multe seturi din cos au fost deja cumparate\";\n }\n }\n $message = \"Unu sau mai multe seturi din cos au fost deja cumparate\";\n\n $cart = new CartController();\n $carts = $cart->getCartItems();\n\n return view('front.'. $this->device .'.dynamic.order-shipping', compact('message', 'carts'));\n }", "public function index()\n {\n //\n return view('order');\n }", "public function index()\n {\n //\n return view('admin.itemsList.orderList')->with([\n 'orders' => Order::orderBy('created_at', 'desc')->paginate(6)\n ]);\n }" ]
[ "0.75935686", "0.74201226", "0.70113975", "0.6862613", "0.68151754", "0.67509365", "0.67346644", "0.6727401", "0.67100173", "0.67089856", "0.6702301", "0.66875964", "0.6634569", "0.6571069", "0.65125793", "0.648672", "0.6466665", "0.6445039", "0.6443421", "0.6406208", "0.6403421", "0.6400835", "0.638709", "0.6365459", "0.6364642", "0.6355002", "0.6339189", "0.6322628", "0.63166153", "0.63051546", "0.6305033", "0.6300181", "0.62909675", "0.6281956", "0.628125", "0.6256312", "0.62499267", "0.6249922", "0.62409246", "0.6223597", "0.6213311", "0.6208711", "0.61940765", "0.6192307", "0.6191194", "0.6163913", "0.6162091", "0.61603284", "0.6159306", "0.6147081", "0.6144562", "0.6143998", "0.614274", "0.61425143", "0.6135049", "0.6132949", "0.61279094", "0.6126531", "0.6102553", "0.6100004", "0.60880816", "0.60849", "0.60839736", "0.6081415", "0.6056836", "0.60489404", "0.60481447", "0.604683", "0.6030768", "0.6030428", "0.602963", "0.6026426", "0.6023313", "0.60215884", "0.60161465", "0.6011982", "0.59971964", "0.59942263", "0.5989585", "0.5984494", "0.598315", "0.5980528", "0.5980475", "0.59796214", "0.59762144", "0.597189", "0.5967543", "0.5967522", "0.59667116", "0.59662676", "0.59662676", "0.59662676", "0.59627986", "0.5962366", "0.59618294", "0.5959452", "0.595939", "0.5958485", "0.59506965", "0.5950489" ]
0.6602863
13
/ admin orders / admin refund
public function view_refund() { $itemData['item'] = Product::getrefundItem(); $data = ['itemData' => $itemData]; return view('admin.refund')->with($data); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function refund();", "public function refundAction() {\n $this->chekcingForMarketplaceSellerOrNot ();\n /**\n * Initilize refund variables\n */\n $orderId = $this->getRequest ()->getParam ( 'id' );\n $produtId = $this->getRequest ()->getParam ( 'item' );\n $sellerId = Mage::getSingleton ( 'customer/session' )->getId ();\n /**\n * Collect the produts from the order details.\n */\n $orderPrdouctIds = Mage::helper ( 'marketplace/vieworder' )->getOrderProductIds ( Mage::getSingleton ( 'customer/session' )->getId (), $orderId );\n\n $orderStatusFlag = Mage::getStoreConfig ( 'marketplace/admin_approval_seller_registration/order_manage' );\n /**\n * Check whether product id is in array\n */\n if (in_array ( $produtId, $orderPrdouctIds ) && $orderStatusFlag == 1) {\n\n Mage::getModel ( 'marketplace/order' )->updateSellerRequest ( $produtId, $orderId, Mage::getSingleton ( 'customer/session' )->getId (), '', 2 );\n\n try {\n\n /**\n * Sending order email\n */\n $templateId = ( int ) Mage::getStoreConfig ( 'marketplace/admin_approval_seller_registration/order_cancel_request_notification_template_selection' );\n $adminEmailId = Mage::getStoreConfig ( 'marketplace/marketplace/admin_email_id' );\n $toMailId = Mage::getStoreConfig ( \"trans_email/ident_$adminEmailId/email\" );\n $toName = Mage::getStoreConfig ( \"trans_email/ident_$adminEmailId/name\" );\n /**\n * Select email template\n */\n if ($templateId) {\n $emailTemplate = Mage::helper ( 'marketplace/marketplace' )->loadEmailTemplate ( $templateId );\n } else {\n $emailTemplate = Mage::getModel ( 'core/email_template' )->loadDefault ( 'marketplace_cancel_order_admin_email_template_selection' );\n }\n /**\n * Load product collection for cancel\n */\n $productCollection = Mage::getModel ( 'catalog/product' )->getCollection ()->addAttributeToSelect ( '*' )->addUrlRewrite ()->addAttributeToFilter ( 'entity_id', array (\n 'eq' => $produtId\n ) );\n\n $productDetails = \"<ul>\";\n /**\n * Prepare product details for cancel email\n */\n foreach ( $productCollection as $product ) {\n $productDetails .= \"<li>\";\n $productDetails .= \"<div><a href='{$product->getProductUrl()}'>{$product->getName()}</a><div>\";\n $productDetails .= \"</li>\";\n }\n\n $productDetails .= \"</ul>\";\n /**\n * load order details\n * @var object\n */\n $incrementId = Mage::getModel ( 'sales/order' )->load ( $orderId )->getIncrementId ();\n\n /**\n * Get seller information.\n */\n $customer = Mage::getModel ( 'customer/customer' )->load ( $sellerId );\n /**\n * Initilize variable for send mail to seller\n */\n $sellerEmail = $customer->getEmail ();\n $sellerName = $customer->getName ();\n $recipient = $toMailId;\n $emailTemplate->setSenderName ( $sellerName );\n $emailTemplate->setSenderEmail ( $sellerEmail );\n\n /**\n * Prepare temail templave variables\n */\n $emailTemplateVariables = array (\n 'ownername' => $toName,\n 'productdetails' => $productDetails,\n 'order_id' => $incrementId,\n 'customer_email' => $sellerEmail,\n 'customer_firstname' => $sellerName,\n 'reason' => $this->__ ( 'Buyer wants to refund the item' ),\n 'requesttype' => $this->__ ( 'refund' ),\n 'requestperson' => $this->__ ( 'Seller' )\n );\n $emailTemplate->setDesignConfig ( array (\n 'area' => 'frontend'\n ) );\n /**\n * Sending email to admin\n */\n $emailTemplate->getProcessedTemplate ( $emailTemplateVariables );\n $emailTemplate->send ( $recipient, $toName, $emailTemplateVariables );\n\n /**\n * Redirect to order view page\n */\n Mage::getSingleton ( 'core/session' )->addSuccess ( $this->__ ( \"The item refund request has been sent.\" ) );\n $this->_redirect ( 'marketplace/order/vieworder/orderid/' . $orderId );\n } catch ( Exception $e ) {\n /**\n * when error message occured, redirected to view order page.\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( $e->getMessage () ) );\n $this->_redirect ( 'marketplace/order/vieworder/orderid/' . $orderId );\n }\n } else {\n /**\n * Check the permission.\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You do not have permission to access this page' ) );\n $this->_redirect ( 'marketplace/order/manage' );\n return false;\n }\n }", "public function refund(Collection $order)\r\n {\r\n }", "public function hookAdminOrder($params)\r\n\t{\r\n\t\t/* Check if the order was paid with this Addon and display the Transaction details */\r\n\t\tif (Db::getInstance()->getValue('SELECT module FROM '._DB_PREFIX_.'orders WHERE id_order = '.(int)$_GET['id_order']) == $this->name)\r\n\t\t{\r\n\t\t\t/* Do not display the refund block unless the API crendetials are set */\r\n\t\t\tif (Configuration::get('PAYPAL_USA_API_USERNAME') == '' || Configuration::get('PAYPAL_USA_API_PASSWORD') == '' || Configuration::get('PAYPAL_USA_API_SIGNATURE') == '')\r\n\t\t\t\treturn;\r\n\r\n\t\t\t/* Retrieve the transaction details */\r\n\t\t\t$paypal_usa_transaction_details = Db::getInstance()->getRow('\r\n\t\t\tSELECT *\r\n\t\t\tFROM '._DB_PREFIX_.'paypal_usa_transaction\r\n\t\t\tWHERE id_order = '.(int)$_GET['id_order'].' AND type = \\'payment\\' AND id_shop = '.(int)$this->context->shop->id);\r\n\r\n\t\t\t/* Get all the refunds previously made (to build a list and determine if another refund is still possible) */\r\n\t\t\t$paypal_usa_refund_details = Db::getInstance()->ExecuteS('\r\n\t\t\tSELECT amount, date_add, currency\r\n\t\t\tFROM '._DB_PREFIX_.'paypal_usa_transaction\r\n\t\t\tWHERE id_order = '.(int)$_GET['id_order'].' AND type = \\'refund\\' AND id_shop = '.(int)$this->context->shop->id.' ORDER BY date_add DESC');\r\n\r\n\t\t\t$paypal_products = array('express' => 'PayPal Express Checkout', 'standard' => 'PayPal Standard', 'advanced' => 'PayPal Payments Advanced', 'payflow_pro' => 'PayPal PayFlow Pro');\r\n\t\t\t$paypal_usa_transaction_details['source'] = $paypal_products[$paypal_usa_transaction_details['source']];\r\n\r\n\t\t\t$this->context->smarty->assign(array(\r\n\t\t\t\t'paypal_usa_more60d' => ((time() - strtotime($paypal_usa_transaction_details['date_add'])) > (60 * 86400)), /* Do not allow refund if the order has been placed more than 60 days ago */\r\n\t\t\t\t'paypal_usa_transaction_details' => $paypal_usa_transaction_details,\r\n\t\t\t\t'paypal_usa_refund_details' => $paypal_usa_refund_details));\r\n\r\n\t\t\treturn $this->display(__FILE__, 'views/templates/admin/admin-order.tpl');\r\n\t\t}\r\n\t}", "public function refundTransaction() {\n //not implemented\n }", "public function refund($options);", "public function refund($params)\n {\n return $this->request(Resource::RESOURCE_ORDER_REFUND, $params);\n }", "public function refund($url, $orderUUID, $amount);", "public function refund_order(Refund $refund,RetailerOrder $order){\n $walletController = new WalletController();\n if ($order->has_user != null) {\n $user = User::find($order->has_user->id);\n if ($user->has_wallet == null) {\n\n $wallet = $walletController->wallet_create($order->has_user->id);\n } else {\n $wallet = $user->has_wallet;\n }\n } else {\n $shop = $order->has_store;\n if (count($shop->has_user) > 0) {\n if ($shop->has_user[0]->has_wallet == null) {\n $wallet = $walletController->wallet_create($shop->has_user[0]->id);\n } else {\n $wallet = $shop->has_user[0]->has_wallet;\n }\n }\n else {\n return redirect()->back()->with('error', 'Order Cant Refund Automatically Because No Wallet Found!');\n }\n }\n\n $wallet->available = $wallet->available+(double)$order->cost_to_pay;\n $wallet->save();\n /*Wallet Log*/\n $wallet_log = new WalletLog();\n $wallet_log->wallet_id = $wallet->id;\n $wallet_log->status = \"Top-up through Refund\";\n $wallet_log->amount = $order->cost_to_pay;\n $wallet_log->message = 'A Top-up of Amount '.number_format($order->cost_to_pay,2).' USD On Behalf on Refund '.$order->name.' Against Wallet ' . $wallet->wallet_token . ' At ' . now()->format('d M, Y h:i a');\n $wallet_log->save();\n\n /*Refund Order*/\n $order->status = 'cancelled';\n $order->paid = 2;\n $order->save();\n /*Order Log*/\n $order_log = new OrderLog();\n $order_log->message = \"An amount of \".$order->cost_to_pay.\" USD refunded to Wallet on \".now()->format('d M, Y h:i a');\n $order_log->status = \"refunded\";\n $order_log->retailer_order_id = $order->id;\n $order_log->save();\n\n $refund->status_id = 4;\n $refund->status = 'Closed';\n $refund->save();\n\n $tl = new RefundLog();\n $tl->message = 'A Refund Generated \"'.$refund->title.'\" against \"'.$order->name.'\" at '.now()->format('d M, Y h:i a');\n $tl->status = \"Generated\";\n $tl->refund_id = $refund->id;\n $tl->save();\n\n $this->notify->generate('Refund','Order Refund',$order->name.' Refund Approved',$refund);\n $this->inventory->OrderQuantityUpdate($order,'refund');\n return redirect()->back()->with('success','Order Refunded Successfully!');\n\n\n }", "function wp_aff_handle_woocommerce_order_refund($order_id) {\n wp_affiliate_log_debug(\"WooCommerce Affiliate integration - order refunded. Order ID: \" . $order_id, true);\n //$order = new WC_Order($order_id);\n $txn_id = $order_id;\n wp_aff_handle_refund($txn_id);\n}", "abstract public function refund( Payment $payment );", "function _doRefund($oID, $amount = 0) {\r\n global $db, $messageStack;\r\n $new_order_status = (int)MODULE_PAYMENT_AUTHORIZENET_ECHECK_REFUNDED_ORDER_STATUS_ID;\r\n if ($new_order_status == 0) $new_order_status = 1;\r\n $proceedToRefund = true;\r\n $refundNote = strip_tags(zen_db_input($_POST['refnote']));\r\n if (isset($_POST['refconfirm']) && $_POST['refconfirm'] != 'on') {\r\n $messageStack->add_session(MODULE_PAYMENT_AUTHORIZENET_ECHECK_TEXT_REFUND_CONFIRM_ERROR, 'error');\r\n $proceedToRefund = false;\r\n }\r\n if (isset($_POST['buttonrefund']) && $_POST['buttonrefund'] == MODULE_PAYMENT_AUTHORIZENET_ECHECK_ENTRY_REFUND_BUTTON_TEXT) {\r\n $refundAmt = (float)$_POST['refamt'];\r\n $new_order_status = (int)MODULE_PAYMENT_AUTHORIZENET_ECHECK_REFUNDED_ORDER_STATUS_ID;\r\n if ($refundAmt == 0) {\r\n $messageStack->add_session(MODULE_PAYMENT_AUTHORIZENET_ECHECK_TEXT_INVALID_REFUND_AMOUNT, 'error');\r\n $proceedToRefund = false;\r\n }\r\n }\r\n if (isset($_POST['cc_number']) && trim($_POST['cc_number']) == '') {\r\n $messageStack->add_session(MODULE_PAYMENT_AUTHORIZENET_ECHECK_TEXT_CC_NUM_REQUIRED_ERROR, 'error');\r\n }\r\n if (isset($_POST['trans_id']) && trim($_POST['trans_id']) == '') {\r\n $messageStack->add_session(MODULE_PAYMENT_AUTHORIZENET_ECHECK_TEXT_TRANS_ID_REQUIRED_ERROR, 'error');\r\n $proceedToRefund = false;\r\n }\r\n\r\n /**\r\n * Submit refund request to gateway\r\n */\r\n if ($proceedToRefund) {\r\n $submit_data = array('x_type' => 'CREDIT',\r\n 'x_card_num' => trim($_POST['cc_number']),\r\n 'x_amount' => number_format($refundAmt, 2),\r\n 'x_trans_id' => trim($_POST['trans_id'])\r\n );\r\n unset($response);\r\n $response = $this->_sendRequest($submit_data);\r\n $response_code = $response[0];\r\n $response_text = $response[3];\r\n $response_alert = $response_text . ($this->commError == '' ? '' : ' Communications Error - Please notify webmaster.');\r\n $this->reportable_submit_data['Note'] = $refundNote;\r\n $this->_debugActions($response);\r\n\r\n if ($response_code != '1') {\r\n $messageStack->add_session($response_alert, 'error');\r\n } else {\r\n // Success, so save the results\r\n $sql_data_array = array('orders_id' => $oID,\r\n 'orders_status_id' => (int)$new_order_status,\r\n 'date_added' => 'now()',\r\n 'comments' => 'REFUND INITIATED. Trans ID:' . $response[6] . ' ' . $response[4]. \"\\n\" . ' Gross Refund Amt: ' . $response[9] . \"\\n\" . $refundNote,\r\n 'customer_notified' => 0\r\n );\r\n zen_db_perform(TABLE_ORDERS_STATUS_HISTORY, $sql_data_array);\r\n $db->Execute(\"update \" . TABLE_ORDERS . \"\r\n set orders_status = '\" . (int)$new_order_status . \"'\r\n where orders_id = '\" . (int)$oID . \"'\");\r\n $messageStack->add_session(sprintf(MODULE_PAYMENT_AUTHORIZENET_ECHECK_TEXT_REFUND_INITIATED, $response[9], $response[6]), 'success');\r\n return true;\r\n }\r\n }\r\n return false;\r\n }", "public function applyRefund(Order $order, array $parsedData);", "function hook_commerce_adyen_refund_received(\\Commerce\\Adyen\\Payment\\Transaction\\Refund $transaction, \\stdClass $order) {\n\n}", "public function refund()\n\t{\n\t\trequirePermission(\"canRefund\");\n\n\t\t$id = intval($this->input->get(\"id\"));\n\t\t$costDp = intval($this->input->get(\"costDp\"));\n\t\t$accountId = intval($this->input->get(\"accountId\"));\n\t\t\n\t\tif(!$id || !is_numeric($id))\n\t\t{\n\t\t\tdie();\n\t\t}\n\n\t\tif ($costDp != \"Free\") {\n\t\t\tif(!$costDp || !is_numeric($costDp))\n\t\t\t{\n\t\t\t\tdie();\n\t\t\t}\n\t\t}\n\n\t\tif(!$accountId || !is_numeric($accountId))\n\t\t{\n\t\t\tdie();\n\t\t}\n\n\t\tif ($costDp != \"Free\") {\n\t\t\tif ($costDp > 0) {\n\t\t\t\t$userDp = intval($this->recup_model->getDp($accountId));\n\t\t\t\tif(!$userDp || !is_numeric($userDp))\n\t\t\t\t{\n\t\t\t\t\tdie(\"Problème lors de l'acquisition des users dps.\");\n\t\t\t\t}\n\t\t\t\t$this->internal_user_model->setDp($accountId, $userDp+$costDp);\n\t\t\t}\n\t\t}\n\t\t$this->recup_model->editEtat($this->realms->getRealm(1)->getCharacters()->getConnection(), $id, 8);\n\t}", "public function refundOrder(Request $request)\n {\n $refund_data['merc_refund_ref_no'] = $request->merc_refund_ref_no;\n $refund_data['orderid'] = $request->orderid;\n $refund_data['transaction_id'] = $request->transaction_id;\n $refund_data['transaction_date'] = $request->transaction_date;\n $refund_data['refund_amount'] = $request->refund_amount;\n $refund_data['txn_amount'] = $request->txn_amount;\n\n $response = BilldeskHmac::refundOrder($refund_data);\n }", "public function hookActionProductCancel($params)\n {\n if ($params['action'] === CancellationActionType::STANDARD_REFUND) {\n $order = $params['order'];\n $cart_id = $order->id_cart;\n $cart = new Cart($cart_id);\n\n // realizamos la consulta de base de datos para el tiketNumber\n $query = 'SELECT * FROM '._DB_PREFIX_.'kushkipagos WHERE `cart_id` = \\''.$cart_id.'\\' limit 1 ';\n $order_kushki = Db::getInstance()->executeS($query);\n\n $ticket_number = $order_kushki[0][\"ticket_number\"];\n $kushkiToken = $order_kushki[0][\"token\"];\n\n $currency_order = new Currency((int)((int)$params[\"order\"]->id_currency));\n\n $amount = $this->getAmountValues($cart);\n\n $obj_amount = array_merge($amount, array(\"currency\" =>$currency_order->iso_code));\n // llamamos al endpoint de refund\n $refund = $this->callUrlRefund($obj_amount, $ticket_number);\n\n if ( ! $refund ) {\n throw new PrestaShopException('An error occurred while attempting to create the refund using the payment gateway API.');\n }else{\n if ($refund->isSuccessful()) {\n //cambiamos el status a refunded\n $history = new OrderHistory();\n $history->id_order = (int)$order->id;\n $history->changeIdOrderState(7, (int)($order->id));\n $order->setCurrentState(7);\n PrestaShopLogger::addLog('Kushki Refund CORRECTO en orden' . $order->id . ' Ticket number: ' . $refund->getTicketNumber(), 1);\n $this->saveDataRefund($kushkiToken, $refund->getTicketNumber(), $cart_id, (int)$order->id, (int)Configuration::get('PS_OS_REFUND'), $order->total_paid, \"kushkipagos\", \"refund\", (int)$order->id_currency, $order->secure_key, \"initialized\" );\n } else {\n PrestaShopLogger::addLog('Kushki Refund FALLIDO en orden '.$order->id.' Message ' . $refund->getResponseText(), 3);\n throw new OrderException('Hubo un error en el refund de esta orden.');\n }\n }\n\n } else if ($params['action'] === CancellationActionType::PARTIAL_REFUND) {\n throw new OrderException('Kushki no puede hacer devoluciones parciales, debe hacer la devolución del total del pedido');\n }\n }", "function hook_commerce_adyen_refund_rejected(\\Commerce\\Adyen\\Payment\\Transaction\\Refund $transaction, \\stdClass $order) {\n\n}", "public function refund($requestParameters = array());", "public function refund(){\n\t\treturn $this->hasMany('OrderRefund','order_id','order_id');\n\t}", "public function hookActionOrderStatusUpdate($params)\n {\n $status = $params['newOrderStatus']?$params['newOrderStatus']->id:false;\n\n if ($status === 7/** Refund status id */) {\n /** If transaction is registred in twispay transactions list */\n $transaction = Twispay_Transactions::getTransactionByCartId($params['cart']->id);\n if ($transaction) {\n if ($transaction['status'] == Twispay_Status_Updater::$RESULT_STATUSES['REFUND_OK']) {\n Twispay_Logger::api_log($this->l('Order already refunded.'));\n $this->context->cookie->redirect_error = $this->l('Order already refunded.');\n } else {\n $keys = self::getKeysInfo();\n if (!$keys) {\n $this->context->cookie->redirect_error = $this->l('Twispay refund error: ').$this->l('Invalid API Keys.');\n /** Redirect to order page */\n /** Skip the part when the status is set */\n Tools::redirect($_SERVER['HTTP_REFERER']);\n die();\n }\n $refund = Twispay_Transactions::refundTransaction($transaction, $keys, $this);\n if ($refund['refunded']) {\n Twispay_Logger::api_log($this->l('Successfully refunded ').json_encode($refund));\n } else {\n Twispay_Logger::api_log($this->l('Twispay refund error: ').json_encode($refund));\n $this->context->cookie->redirect_error = $this->l('Twispay refund error: ').$refund['status'];\n /** Redirect to order page */\n /** Skip the part when the status is set */\n Tools::redirect($_SERVER['HTTP_REFERER']);\n die();\n }\n }\n /** If the order was not payed via twispay */\n } else {\n Twispay_Logger::api_log($this->l('Twispay refund error: ').$this->l('No transactions were found for order with id ').$params['id_order']);\n $this->context->cookie->redirect_error = $this->l('Twispay refund error: ').$this->l('No transactions were found for this order.');\n }\n }\n }", "private function _autoRefundRecharge() {\n $where = array('state' => 0, 'add_time' => array('lt', time() - 5 * 3600));\n $list = $this->db->table('rides_recharge')->where($where)->select();\n $this->load->library('sys_model/deposit');\n $this->load->library('sys_model/orders');\n //print_r($this->db->getLastSql());\n\t//print_r($list);exit;\n foreach ($list as $rides_recharge) {\n //申请退款表里有记录\n $cashInfo = $this->sys_model_deposit->getDepositCashInfo(array('pdr_sn' => $rides_recharge['recharge_sn']));\n if ($cashInfo) {\n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n //continue;\n }\n //print_r($cashInfo);exit;\n $order_info = $this->sys_model_orders->getOrdersInfo(array('order_sn' => $rides_recharge['order_sn']));\n if (!$order_info) {\n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n //continue;\n }\n //print_r($order_info);exit;\n if ($order_info['order_state'] != 2) { \n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n // continue;\n }\n\n $recharge_info = $this->sys_model_deposit->getRechargeInfo(array('pdr_sn' => $rides_recharge['recharge_sn']));\n //print_r($recharge_info);exit;\n if ($recharge_info) {\n if ($recharge_info['pdr_payment_state'] != 1) {\n continue;\n }\n\n if ($order_info['pay_amount'] >= $recharge_info['pdr_amount']) {\n $this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n continue;\n }\n\n $amount = $recharge_info['pdr_amount'] - $order_info['pay_amount'];\n //部分退款反映到充值表\n\t\t//print_r($amount);exit;\n $recharge_info['cash_amount'] = $amount;\n $recharge_info['admin_id'] = 0;\n $recharge_info['admin_name'] = 'system';\n\n $result = $this->sys_model_deposit->cashApply($recharge_info);\n //$result['state'] = true;\n if ($result['state']) {\n $pdc_info = array(\n 'pdc_id' => $result['data']['pdc_id'],\n 'pdc_sn' => $result['data']['pdc_sn'],\n 'pdc_user_id' => $recharge_info['pdr_user_id'],\n 'pdc_user_name' => $recharge_info['pdr_user_name'],\n 'pdc_payment_name' => $recharge_info['pdr_payment_name'],\n 'pdc_payment_code' => $recharge_info['pdr_payment_code'],\n 'pdc_payment_type' => $recharge_info['pdr_payment_type'],\n 'pdc_payment_state' => '0',\n 'pdr_amount' => $recharge_info['pdr_amount'],\n 'has_cash_amount' => 0,\n 'cash_amount' => $recharge_info['cash_amount'],\n 'pdr_sn' => $recharge_info['pdr_sn'],\n 'trace_no' => $recharge_info['trace_no'],\n 'admin_id' => $recharge_info['admin_id'],\n 'admin_name' => $recharge_info['admin_name'],\n 'pdc_type' => $recharge_info['pdr_type'],\n );\n //print_r($pdc_info);exit;\n $ssl_cert_path = DIR_SYSTEM . 'library/payment/cert/' . $this->config->get('config_wxpay_ssl_cert_path') . '/' . $recharge_info['pdr_payment_type'] . '/apiclient_cert.pem';\n $ssl_key_path = DIR_SYSTEM . 'library/payment/cert/' . $this->config->get('config_wxpay_ssl_cert_path') . '/' . $recharge_info['pdr_payment_type'] . '/apiclient_key.pem';\n //print_r($ssl_cert_path);\n //print_r($ssl_key_path);exit;\n define('WX_SSLCERT_PATH', $ssl_cert_path);\n define('WX_SSLKEY_PATH', $ssl_key_path);\n $result = $this->sys_model_deposit->wxPayRefund($pdc_info);\n if ($result['state'] == true) {\n $this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n $this->sys_model_orders->updateOrders(array('order_id' => $order_info['order_id']), array('refund_state' => 1));\n }\n\t\t echo 'success', \"\\n\";\n }\n }\n }\n }", "public function hookBackOfficeHeader()\n\t{\n\t\t/* If 1.4 and no backward, then leave */\n\t\tif (!$this->backward)\n\t\t\treturn;\n\t\t\n\t\t/* Update the Stripe Plans list */\n\t\tif(Tools::isSubmit('SubmitListPlans'))\n\t\t $this->listPlans();\n\t\t \n\t\t /* Update the Stripe Subscriptions for all existing customers */\n\t\tif(Tools::isSubmit('SubmitSubSync'))\n\t\t $this->syncAllSubscriptions();\n\t\t \n\t\t\n\t\t/* Continue if we are on the order's details page (Back-office) */\n\t\t\n\t\tif(Tools::getIsset('vieworder') && Tools::getIsset('id_order'))\n\t\t{\n\t\t\t\n\t\t\t$order = new Order((int)Tools::getValue('id_order'));\n\n\t\t/* If the \"Refund\" button has been clicked, check if we can perform a partial or full refund on this order */\n\t\tif (Tools::isSubmit('SubmitStripeRefund') && Tools::getIsset('stripe_amount_to_refund') && Tools::getIsset('id_transaction_stripe'))\n\t\t{\n\t\t\t/* Get transaction details and make sure the token is valid */\n\t\t\t$stripe_transaction_details = Db::getInstance()->getRow('SELECT * FROM '._DB_PREFIX_.'stripepro_transaction WHERE id_order = '.(int)Tools::getValue('id_order').' AND type = \\'payment\\' AND status = \\'paid\\'');\n\t\t\tif (isset($stripe_transaction_details['id_transaction']) && $stripe_transaction_details['id_transaction'] === Tools::getValue('id_transaction_stripe'))\n\t\t\t{\n\t\t\t\t/* Check how much has been refunded already on this order */\n\t\t\t\t$stripe_refunded = Db::getInstance()->getValue('SELECT SUM(amount) FROM '._DB_PREFIX_.'stripepro_transaction WHERE id_order = '.(int)Tools::getValue('id_order').' AND type = \\'refund\\' AND status = \\'paid\\'');\n\t\t\t\tif (Tools::getValue('stripe_amount_to_refund') <= number_format($stripe_transaction_details['amount'] - $stripe_refunded, 2, '.', ''))\n\t\t\t\t\t$this->processRefund(Tools::getValue('id_transaction_stripe'), (float)Tools::getValue('stripe_amount_to_refund'), $stripe_transaction_details);\n\t\t\t\telse\n\t\t\t\t\t$this->_errors['stripe_refund_error'] = $this->l('You cannot refund more than').' '.Tools::displayPrice($stripe_transaction_details['amount'] - $stripe_refunded).' '.$this->l('on this order');\n\t\t\t}\n\t\t}\n\t\t\n\t\t/* If the \"Capture\" button has been clicked, check if we can perform a partial or full capture on this order */\n\t\tif (Tools::isSubmit('SubmitStripeCapture') && Tools::getIsset('stripe_amount_to_capture') && Tools::getIsset('id_transaction_stripe'))\n\t\t{\n\t\t\t/* Get transaction details and make sure the token is valid */\n\t\t\t$stripe_transaction_details = Db::getInstance()->getRow('SELECT * FROM '._DB_PREFIX_.'stripepro_transaction WHERE id_order = '.(int)Tools::getValue('id_order').' AND type = \\'payment\\' AND status = \\'uncaptured\\'');\n\t\t\tif (isset($stripe_transaction_details['id_transaction']) && $stripe_transaction_details['id_transaction'] === Tools::getValue('id_transaction_stripe'))\n\t\t\t{\n\t\t\t\tif (Tools::getValue('stripe_amount_to_capture') <= number_format($stripe_transaction_details['amount'], 2, '.', ''))\n\t\t\t\t\t$this->processCapture(Tools::getValue('id_transaction_stripe'), (float)Tools::getValue('stripe_amount_to_capture'));\n\t\t\t\telse\n\t\t\t\t\t$this->_errors['stripe_capture_error'] = $this->l('You cannot capture more than').' '.Tools::displayPrice($stripe_transaction_details['amount'] - $stripe_refunded).' '.$this->l('on this order');\n\t\t\t\t\n\t\t\t}\n\t\t}\n\n\t\t/* Check if the order was paid with Stripe and display the transaction details */\n\t\tif (Db::getInstance()->getValue('SELECT module FROM '._DB_PREFIX_.'orders WHERE id_order = '.(int)Tools::getValue('id_order')) == $this->name)\n\t\t{\n\t\t\t/* Get the transaction details */\n\t\t\t$stripe_transaction_details = Db::getInstance()->getRow('SELECT * FROM '._DB_PREFIX_.'stripepro_transaction WHERE id_order = '.(int)Tools::getValue('id_order').' AND type = \\'payment\\' AND status IN (\\'paid\\',\\'uncaptured\\')');\n\n\t\t\t/* Get all the refunds previously made (to build a list and determine if another refund is still possible) */\n\t\t\t$stripe_refunded = 0;\n\t\t\t$output_refund = '';\n\t\t\t$stripe_refund_details = Db::getInstance()->ExecuteS('SELECT amount, status, date_add FROM '._DB_PREFIX_.'stripepro_transaction\n\t\t\tWHERE id_order = '.(int)Tools::getValue('id_order').' AND type = \\'refund\\' ORDER BY date_add DESC');\n\t\t\tforeach ($stripe_refund_details as $stripe_refund_detail)\n\t\t\t{\n\t\t\t\t$stripe_refunded += ($stripe_refund_detail['status'] == 'paid' ? $stripe_refund_detail['amount'] : 0);\n\t\t\t\t$output_refund .= '<tr'.($stripe_refund_detail['status'] != 'paid' ? ' style=\"background: #FFBBAA;\"': '').'><td>'.\n\t\t\t\tTools::safeOutput($stripe_refund_detail['date_add']).'</td><td style=\"\">'.Tools::displayPrice($stripe_refund_detail['amount'], (int)$order->id_currency).\n\t\t\t\t'</td><td>'.($stripe_refund_detail['status'] == 'paid' ? $this->l('Processed') : $this->l('Error')).'</td></tr>';\n\t\t\t}\n\t\t\t$currency = new Currency((int)$order->id_currency);\n\t\t\t$c_char = $currency->sign;\n\t\t\t$output = '\n\t\t\t<script type=\"text/javascript\">\n\t\t\t\t$(document).ready(function() {\n\t\t\t\t\tvar appendEl;\n\t\t\t\t\tif ($(\\'select[name=id_order_state]\\').is(\":visible\")) {\n\t\t\t\t\t\tappendEl = $(\\'select[name=id_order_state]\\').parents(\\'form\\').after($(\\'<div/>\\'));\n\t\t\t\t\t} else {\n\t\t\t\t\t\tappendEl = $(\"#status\");\n\t\t\t\t\t}\n\t\t\t\t\t$(\\'<div class=\"panel panel-highlighted\" style=\"padding: 5px 10px;\"><fieldset'.(_PS_VERSION_ < 1.5 ? ' style=\"width: 400px;\"' : '').'><legend><img src=\"../img/admin/money.gif\" alt=\"\" />'.$this->l('Stripe Payment Details').'</legend>';\n\n\t\t\tif ($stripe_transaction_details['id_transaction']!=''){\n\t\t\t\t$output .= $this->l('Stripe Transaction ID:').' '.Tools::safeOutput($stripe_transaction_details['id_transaction']).'<br /><br />'.\n\t\t\t\t$this->l('Status:').' <span style=\"font-weight: bold; color: '.($stripe_transaction_details['status'] == 'paid' ? 'green;\">'.$this->l('Paid') : '#CC0000;\">'.$this->l('Unpaid')).'</span><br />'.\n\t\t\t\t$this->l('Amount:').' '.Tools::displayPrice($stripe_transaction_details['amount'], (int)$order->id_currency).'<br />'.\n\t\t\t\t$this->l('Processed on:').' '.Tools::safeOutput($stripe_transaction_details['date_add']).'<br />';\n\t\t\t\t\n\t\t\t\tif($stripe_transaction_details['source']=='card'){\n\t\t\t\t$output .= $this->l('Credit card:').' '.Tools::safeOutput($stripe_transaction_details['cc_type']).' ('.$this->l('Exp.:').' '.Tools::safeOutput($stripe_transaction_details['cc_exp']).')<br />'.$this->l('Last 4 digits:').' '.sprintf('%04d', $stripe_transaction_details['cc_last_digits']).' ('.$this->l('CVC Check:').' '.($stripe_transaction_details['cvc_check'] ? $this->l('OK') : '<span style=\"color: #CC0000; font-weight: bold;\">'.$this->l('FAILED').'</span>').')<br />';\n\t\t\t\t}else\n\t\t\t\t $output .= $this->l('Address:').' '.Tools::safeOutput($stripe_transaction_details['btc_address']).'<br />'.\n\t\t\t\t $this->l('Bitcoin:').' B⃦'.sprintf('%.8f',$stripe_transaction_details['amount']*.01).' BTC<br />'.\n\t\t\t\t $this->l('Filled:').' '.($stripe_transaction_details['cvc_check'] ? $this->l('Yes') : '<span style=\"color: #CC0000; font-weight: bold;\">'.$this->l('No').'</span>').'<br />';\n\t\t\t\t\n\t\t\t\t$output .= $this->l('Processing Fee:').' '.Tools::displayPrice($stripe_transaction_details['fee'], (int)$order->id_currency).'<br /><br />'.\n\t\t\t\t$this->l('Mode:').' <span style=\"font-weight: bold; color: '.($stripe_transaction_details['mode'] == 'live' ? 'green;\">'.$this->l('Live') : '#CC0000;\">'.$this->l('Test (You will not receive any payment, until you enable the \"Live\" mode)')).'</span>';\n\t\t\t}else\n\t\t\t\t$output .= '<b style=\"color: #CC0000;\">'.$this->l('Warning:').'</b> '.$this->l('The customer paid using Stripe and an error occured (check details at the bottom of this page)');\n\t\t\t\t\n\t\t\t\t $output .= '</fieldset><br />';\n\t\t\t\t if(Tools::getIsset('SubmitStripeCapture')){\n\t\t\t\t $output .= '<div class=\"bootstrap\">'.((empty($this->_errors['stripe_capture_error']) && Tools::getIsset('id_transaction_stripe') && Tools::getIsset('SubmitStripeCapture')) ? '<div class=\"conf confirmation alert alert-success\">'.$this->l('Your capture was successfully processed').'</div>' : '').\n\t\t\t(!empty($this->_errors['stripe_capture_error']) ? '<div style=\"color: #CC0000; font-weight: bold;\" class=\"alert alert-danger\">'.$this->l('Error:').' '.Tools::safeOutput($this->_errors['stripe_capture_error']).'</div>' : '').'</div>';\n\t\t\t\t }\n\t\t\t\n\t\t\t\n if($stripe_transaction_details['status'] == 'uncaptured'){\n\t\t\t \n\t\t\t $date2 = $stripe_transaction_details['date_add']; \n $diff = strtotime($date2 .\"+6 days +21 hours\") - strtotime('now');\n\t\t\t \n\t\t\t $secondsInAMinute = 60;\n\t\t\t $secondsInAnHour = 60 * $secondsInAMinute;\n $secondsInADay = 24 * $secondsInAnHour;\n\n\t\t\t // extract days\n\t\t\t $days = floor($diff / $secondsInADay);\n\t\t\t // extract hours\n\t\t\t $hourSeconds = $diff % $secondsInADay;\n\t\t\t $hours = floor($hourSeconds / $secondsInAnHour);\n\n\t\t\t $timeleft = $days .\" days & \". $hours.\" hrs\";\n\t \n\t\t\t$output .= '<fieldset'.(_PS_VERSION_ < 1.5 ? ' style=\"width: 400px;\"' : '').'><legend><img src=\"../img/admin/money.gif\" alt=\"\" />'.$this->l('Proceed to a full or partial capture via Stripe').'</legend>';\n\t\t\tif($diff>0){\n\t\t\t$output .= '<form action=\"\" method=\"post\">'.$this->l('Capture:').' $ <input type=\"text\" value=\"'.number_format($stripe_transaction_details['amount'], 2, '.', '').'\" name=\"stripe_amount_to_capture\" style=\"display: inline-block; width: 60px;\" /> <input type=\"hidden\" name=\"id_transaction_stripe\" value=\"'.Tools::safeOutput($stripe_transaction_details['id_transaction']).'\" /><input type=\"submit\" class=\"button\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to this capture?')).'\\\\\\');\" name=\"SubmitStripeCapture\" value=\"'.$this->l('Process Capture').'\" /></form><font style=\"color:red;font-size:13px;\"> <br>'.$this->l('NOTE: Time left to Capture payment:').' <b>'.$timeleft.'</b> '.$this->l('otherwise payment will be automatically refunded.').'</font>';}else\n\t\t\t$output .= '<font style=\"color:red;\"> <b>'.$this->l('7 days has been passed so the payment has been refunded.').\"</font></b>\";\n\t\t\t\n\t\t\t$output .= '</fieldset><br /></div>\\').appendTo(appendEl);\n\t\t\t\t});\n\t\t\t</script>';\n\t\t\t\t}else {\n\n\t\t\t$output .= '</fieldset><br /><fieldset'.(_PS_VERSION_ < 1.5 ? ' style=\"width: 400px;\"' : '').' class=\"bootstrap\"><legend><img src=\"../img/admin/money.gif\" alt=\"\" />'.$this->l('Proceed to a full or partial refund via Stripe').'</legend>';\n\t\t\tif(Tools::getIsset('SubmitStripeRefund')){\n\t\t\t$output .= ((empty($this->_errors['stripe_refund_error']) && Tools::getIsset('id_transaction_stripe')) ? '<div class=\"conf confirmation alert alert-success\">'.$this->l('Your refund was successfully processed').'</div>' : '').\n\t\t\t(!empty($this->_errors['stripe_refund_error']) ? '<div style=\"color: #CC0000; font-weight: bold;\" class=\"alert alert-danger\">'.$this->l('Error:').' '.Tools::safeOutput($this->_errors['stripe_refund_error']).'</div>' : '');}\n\t\t\t$output .= $this->l('Already refunded:').' <b>'.Tools::displayPrice($stripe_refunded, (int)$order->id_currency).'</b><br /><br />'.($stripe_refunded ? '<table class=\"table\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size: 12px;\"><tr><th>'.$this->l('Date').'</th><th>'.$this->l('Amount refunded').'</th><th>'.$this->l('Status').'</th></tr>'.$output_refund.'</table><br />' : '').\n\t\t\t($stripe_transaction_details['amount'] > $stripe_refunded ? '<form action=\"\" method=\"post\">'.$this->l('Refund:'). ' ' . $c_char .' <input type=\"text\" value=\"'.number_format($stripe_transaction_details['amount'] - $stripe_refunded, 2, '.', '').\n\t\t\t'\" name=\"stripe_amount_to_refund\" style=\"display: inline-block; width: 60px;\" /> <input type=\"hidden\" name=\"id_transaction_stripe\" value=\"'.\n\t\t\tTools::safeOutput($stripe_transaction_details['id_transaction']).'\" /><input type=\"submit\" class=\"button\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to this refund?')).'\\\\\\');\" name=\"SubmitStripeRefund\" value=\"'.\n\t\t\t$this->l('Process Refund').'\" /></form>' : '').'</fieldset><br /></div>\\').appendTo(appendEl);\n\t\t\t\t});\n\t\t\t</script>';\n\t\t}\n\n\t\t\treturn $output;\n\t }\n\t\t\n\t }\n\t \n\t if(Tools::getIsset('viewcustomer') && Tools::getIsset('id_customer'))\n\t { /* Continue if we are on the Customer's details page (Back-office) */\n\t \n\t $stripe_customer_id = Db::getInstance()->getValue('SELECT `stripe_customer_id` FROM '._DB_PREFIX_.'stripepro_customer WHERE id_customer = '.(int)Tools::getValue('id_customer'));\n\t\t /* Update the Stripe Subscriptions for all existing customers */\n\t\tif(Tools::isSubmit('SubmitCusSubSync'))\n\t\t $this->syncSubscriptions($stripe_customer_id);\n\t\t \n\t\t\t\n\t\t /* \"Add Subsciption\" button click will perform the task of adding new subscription to the customer */\n\t\tif (Tools::isSubmit('SubmitAddSub'))\n\t\t\t$this->addStripeSubscription($stripe_customer_id,Tools::getValue('id_stripe_plan'));\n\t\t\t\n\t\t\t\n\t\t /* \"Cancel Subsciption\" button click will perform the task of cancelling new subscription to the customer */\n\t\tif(Tools::isSubmit('SubmitCancelSub'))\n\t\t\t$this->cancelSubscription($stripe_customer_id,Tools::getValue('stripe_subscription_id'));\n\t\t\n\t\t /* Get the subscription details */\n\t\t\t$stripe_subscription_details = Db::getInstance()->executeS(\"SELECT a.*,CONCAT('<b>',b.`name`,'</b> (',UCASE(b.`currency`),' ',b.`amount`,'/',b.`interval`,')') as plan FROM \"._DB_PREFIX_.\"stripepro_subscription a LEFT JOIN \"._DB_PREFIX_.\"stripepro_plans b ON a.stripe_plan_id = b.stripe_plan_id WHERE a.id_customer = \".(int)Tools::getValue('id_customer'));\n\t\t\t \n\t\t $output = '\n\t\t\t<script type=\"text/javascript\">\n\t\t\t\t$(document).ready(function() {\n\t\t\t\t\tvar prependEl = $(\"#container-customer\");\n\t\t\t\t\t$(\\'';\n\t\t\n\t\t $output .= '<div class=\"bootstrap\"><div class=\"col-lg-12\"><div class=\"panel panel-highlighted\">';\n\t\t $output .= '<fieldset'.(_PS_VERSION_ < 1.5 ? ' style=\"width: 400px;\"' : '').'><legend><img src=\"'.$this->_path.'views/img/stripe-icon.gif\" alt=\"\">&nbsp;'.$this->l('Stripe Subscriptions').'</legend>';\n\t\t \n\t\t if (!empty($stripe_customer_id)){\n\t\t\t \n\t\t\t if(Tools::getIsset('SubmitAddSub') || Tools::getIsset('SubmitCancelSub') || Tools::getIsset('SubmitListPlans') || Tools::getIsset('SubmitCusSubSync') || Tools::getIsset('SubmitSubSync')){\n\t\t\t $output .= (empty($this->_errors['stripe_subscription_error']) ? '<div class=\"conf confirmation alert alert-success\">'.$this->l('Your request was successfully processed').'</div>' : '').\n\t\t\t\t(!empty($this->_errors['stripe_subscription_error']) ? '<div style=\"color: #CC0000; font-weight: bold;\" class=\"alert alert-danger\">'.$this->l('Error:').' '.Tools::safeOutput($this->_errors['stripe_subscription_error']).'</div>' : '');}\n\t\t\t\t\n\t\t\t$output .= '<form action=\"\" method=\"post\" style=\"float:left;\">';\n\t\t\t\n\t\t\t$stripe_plans = Db::getInstance()->ExecuteS(\"SELECT stripe_plan_id,CONCAT(`name`,' (',UCASE(`currency`),' ',`amount`,'/',`interval`,')') as name FROM \"._DB_PREFIX_.\"stripepro_plans\");\n\t\t\t if(!empty($stripe_plans))\n\t\t\t { $output .= '<select name=\"id_stripe_plan\" style=\"width:250px; float:left;\"><option value=\"\">Select a Stripe Plan...</option>';\n\t\t\t foreach($stripe_plans as $plan)\n\t\t\t $output .= '<option value=\"'.$plan['stripe_plan_id'].'\">'.$plan['name'].'</option>';\n\t\t\t $output .= '</select>';\n\t\t\t\t\t}else\n\t\t\t\t\t$output .= '<div style=\"float:left;\">'.$this->l('Please enter Plan ID:').'&nbsp;&nbsp;</div><input type=\"text\" name=\"id_stripe_plan\" style=\"width:200px;float:left\">';\n\t\t\t $output .= '&nbsp;<input type=\"submit\" class=\"button btn btn-default\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to add subscription?')).'\\\\\\');\" name=\"SubmitAddSub\" value=\"'.$this->l('Add Subscription').'\" />';\n\t\t\t \n\t\t\t $output .= '</form><form action=\"\" method=\"post\" style=\"border-left:2px solid #cdcdcd;margin-left:25px;float:left; padding-left:20px\">&nbsp;<input type=\"submit\" class=\"button btn btn-default\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to update the Stripe Plans list?')).'\\\\\\');\" name=\"SubmitListPlans\" value=\"'.$this->l('Sync Plans from stripe').'\" /> &nbsp;-&nbsp;<input type=\"submit\" class=\"button btn btn-default\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to Sync subscription?')).'\\\\\\');\" name=\"SubmitCusSubSync\" value=\"'.$this->l('Sync Subscriptions for this customer').'\" />&nbsp;-&nbsp;<input type=\"submit\" class=\"button btn btn-default\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to Sync subscriptions for all stripe customers?')).'\\\\\\');\" name=\"SubmitSubSync\" value=\"'.$this->l('Sync Subscriptions for all stripe customers').'\" /></form><br /><hr style=\"clear:both;\" />';\n\t\t\t \n\t\t\t foreach($stripe_subscription_details as $subscription)\n\t\t\t {$output .= '<form action=\"\" method=\"post\" style=\"background:#fff;float:left; border:1px solid #cdcdcd; padding:5px 10px;\"><input type=\"hidden\" name=\"stripe_subscription_id\" value=\"'.$subscription['stripe_subscription_id'].'\"><table cellpadding=\"10\" cellspacing=\"10\"><tr><td>'.$this->l('Subscription ID').':</td><td>&nbsp;<b>'.$subscription['stripe_subscription_id'].'</td></tr><tr><td>'.$this->l('Plan ID').':</td><td style=\"color:brown;\">&nbsp;'.($subscription['plan']==''?$subscription['stripe_plan_id']:$subscription['plan']).'</td></tr><tr><td>'.$this->l('Quantity').':</td><td>&nbsp;<b>'.$subscription['quantity'].'</td></tr><tr><td>'.$this->l('Period').':</td><td>&nbsp;<b>'.date('M d, Y',$subscription['current_period_start']).' '.$this->l('to').' '.date('M d, Y',$subscription['current_period_end']).'</td></tr><tr><td>'.$this->l('Started').':</td><td>&nbsp;<b>'.date('M d, Y',$subscription['current_period_start']).'</td></tr><tr><td>'.$this->l('Status').':</td><td style=\"color:'.($subscription['status']=='active'?'#71B238':'orange').'\">&nbsp;<b>'.Tools::strtoupper($subscription['status']).'</b></td></tr></table><br><input type=\"submit\" class=\"button btn btn-default pull-right\" onclick=\"return confirm(\\\\\\''.addslashes($this->l('Do you want to proceed to Cancel subscription?')).'\\\\\\');\" name=\"SubmitCancelSub\" value=\"'.$this->l('Cancel Subscription').'\" /></form>';\n\t\t\t }\n\t\t\t $output .= '</fieldset></div></div></div><div class=\"clear\"></div><div class=\"separation\"></div>\\').prependTo(prependEl);\n\t\t\t\t\t\t\t\t });\n\t\t\t\t\t\t\t </script>';\n\t\t\t\t}else{\n\t\t\t\t$output .= '<div style=\"color: #CC0000; font-weight: bold;\" class=\"alert alert-danger\">'.$this->l('This customer do not have any Stripe account.').'</div></fieldset></div></div></div><div class=\"clear\"></div><div class=\"separation\"></div>\\').prependTo(prependEl);});</script>';\n\t }\n\t\t\t\t\n\t\t\treturn $output;\n\t}\n\t\n\treturn true;\n\t\n}", "public function refund():bool {\n request::xhr(\"orders/refund\", \"csrf_token=\".run::$runner->user->csrf.\"&id=\".substr($this->ID, 1),run::$runner->user->session);\n return true;\n }", "protected function doRefundPayment() {\n throw new \\Exception('Child classes must override this method to support payment refund.');\n }", "public function refund(Request $request)\n {\n $merchantAuthentication = new AnetAPI\\MerchantAuthenticationType();\n $merchantAuthentication->setName(env('ANET_API_LOGIN_ID'));\n $merchantAuthentication->setTransactionKey(env('ANET_TRANSACTION_KEY'));\n\n // Set the transaction's refId\n $refId = 'ref' . time();\n\n // Create the payment data for a credit card\n $creditCard = new AnetAPI\\CreditCardType();\n $creditCard->setCardNumber($request->cc_number);\n $creditCard->setExpirationDate($request->input('expiry_year') . \"-\" . $request->input('expiry_month'));\n\n $paymentOne = new AnetAPI\\PaymentType();\n $paymentOne->setCreditCard($creditCard);\n\n //create a transaction\n $transactionRequest = new AnetAPI\\TransactionRequestType();\n $transactionRequest->setTransactionType(\"refundTransaction\");\n $transactionRequest->setAmount($request->amount);\n $transactionRequest->setPayment($paymentOne);\n $transactionRequest->setRefTransId($request->transactionReference);\n\n\n $request = new AnetAPI\\CreateTransactionRequest();\n $request->setMerchantAuthentication($merchantAuthentication);\n $request->setRefId($refId);\n $request->setTransactionRequest($transactionRequest);\n $controller = new AnetController\\CreateTransactionController($request);\n $response = $controller->executeWithApiResponse(ANetEnvironment::PRODUCTION);\n\n if ($response != null) {\n $tresponse = $response->getTransactionResponse();\n if ($response->getMessages()->getResultCode() == \"Ok\") {\n if ($tresponse != null && $tresponse->getMessages() != null) {\n $message_text = $tresponse->getMessages()[0]->getDescription() . \", Response code: \" . $tresponse->getResponseCode() . \", Refund SUCCESS: \" . $tresponse->getTransId();\n $msg_type = \"successMessage\";\n return redirect()->route('orderList')->with($msg_type, $message_text);\n } else {\n $message_text = \"Transaction Failed\";\n $msg_type = \"errorMessage\";\n if ($tresponse->getErrors() != null) {\n $message_text = $tresponse->getErrors()[0]->getErrorText();\n $msg_type = \"errorMessage\";\n }\n }\n } else {\n if ($tresponse != null && $tresponse->getErrors() != null) {\n $message_text = $tresponse->getErrors()[0]->getErrorText();\n } else {\n $message_text = $response->getMessages()->getMessage()[0]->getText();\n }\n $msg_type = \"errorMessage\";\n }\n } else {\n $message_text = \"No response returned\";\n $msg_type = \"errorMessage\";\n }\n\n return redirect()->route('refundView')->with($msg_type, $message_text);\n }", "public function testRefund()\n {\n print \"testRefund()\\n\";\n\n // TODO: Impl\n\n $this->fail();\n }", "function submit_refund_to_taxamo( $payment_id, $new_status, $old_status ) {\n\n global $edd_options;\n\n if ( 'refunded' != $new_status )\n return;\n\n\n // Get Taxamo Tansaction Key.\n $payment_meta = edd_get_payment_meta( $payment_id );\n $taxamo_transaction_lines = $payment_meta['taxamo_transaction_lines'];\n $transaction_key = $payment_meta['taxamo_transaction_key'];\n\n // Get Order Total and create an array for it.\n foreach ( $taxamo_transaction_lines as $taxamo_transaction_line ) {\n $line_key = $taxamo_transaction_line['taxamo_line_key'];\n $amount = $taxamo_transaction_line['taxamo_total_amount'];\n\n $taxamo_body_array = array( \"total_amount\"=>$amount,\n \"line_key\" => $line_key );\n $taxamo_body_json = json_encode( $taxamo_body_array );\n\n // Create Taxamo Object and Submit a refund\n $private_key = $edd_options['taxedd_private_token'];\n $refundtaxamo = new Taxamo( new APIClient( $private_key, 'https://api.taxamo.com' ) );\n $resp = $refundtaxamo->createRefund( $transaction_key, $taxamo_body_array );\n }\n }", "public function doRefund() {\n\t\t\n\t\t$this->load->language('extension/payment/hoolah_refund');\n\t\tif (!empty($this->request->post['transaction_id']) && isset($this->request->post['refund_full']) && !empty($this->request->post['description'])) {\n\t\t\t$this->load->model('extension/payment/hoolah');\n\n\t\t\tif ($this->request->post['refund_full'] == 0 && $this->request->post['amount'] == 0) {\n\t\t\t\t$this->session->data['error'] = $this->language->get('error_partial_amt');\n\t\t\t\t$this->response->redirect($this->url->link('extension/payment/hoolah/refund', 'token=' . $this->session->data['token'] . '&tid=' . $this->request->get['tid'] . '&order_id=' . $this->request->get['order_id'], true));\n\t\t\t} else {\n\t\t\t\t$order_transaction = $this->model_extension_payment_hoolah->getHoolahOrderTransactionStatus($this->request->get['order_id'], 'APPROVED');\n\t\t\t \n\t\t\t // get sku order\n\t\t $orders = $this->model_extension_payment_hoolah->getOrderProducts($this->request->get['order_id']);\n\t\t\n\t\t\t\tif (isset($order_transaction)) {\n\t\t\t\t $call_data['transaction_id'] = $order_transaction['id'];\n\t\t\t\t $call_data['uuid'] = $order_transaction['uuid'];\n\t\t\t\t $call_data['description'] = $this->request->post['description'];\n\t\t\t\t $call_data['order_id'] = $this->request->post['order_id'];\n\t\t\t\t \n\t\t\t\t\tif ($this->request->post['refund_full'] == 1) {\n\t\t\t\t\t\t$call_data['REFUNDTYPE'] = 'Full';\n\t\t\t\t\t\t$call_data['AMT'] = $order_transaction['total'];\n\t\t\t\t\t\n\t\t\t\t\t\t// submit to hoolah api\n\t\t\t\t\t $result = $this->model_extension_payment_hoolah->initiate_fullrefund($call_data);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$call_data['REFUNDTYPE'] = 'Partial';\n\t\t\t\t\t\t$call_data['AMT'] = $this->request->post['amount'];\n\t\t\t\t\t\t$call_data['sku'] = $orders[0]['sku'];\n\t\t\t\t\t\t$call_data['CURRENCYCODE'] = $this->request->post['currency_code'];\n\t\t\t\t\t\t\n\t\t\t\t\t\t// submit to hoolah api\n\t\t\t\t\t $result = $this->model_extension_payment_hoolah->initiate_partialrefund($call_data);\n\t\t\t\t\t}\n\t\t\t\t\t$refund_details = array();\n foreach($result->details AS $rows) {\n $refund_details[] = $rows;\n }\n \n $refund = array();\n $refund['order_id'] = $order_transaction['order_id'];\n $refund['uuid'] = $order_transaction['uuid'];\n $refund['status'] = $result->status;\n $refund['orderType'] = $order_transaction['orderType'];\n $refund['total'] = $call_data['AMT'];\n $refund['tax'] = $order_transaction['tax'];\n $refund['shipping_fee'] = $order_transaction['shipping_fee'];\n $refund['currency'] = $order_transaction['currency'];\n $refund['requestId'] = $result->requestId;\n $refund['code'] = $result->code;\n $refund['message'] = $result->message;\n $refund['details'] = json_encode($refund_details);\n $refund['createdAt'] = date('Y-m-d H:i:s');\n $refund['date_added'] = date('Y-m-d H:i:s');\n \n // save it to transaction tbl\n $this->model_extension_payment_hoolah->addHoolahOrderTransactionRefund($refund);\n \n if($result->code == 'accepted' || $result->code == 'in_process' || $result->code == 'in_process') {\n //redirect back to the order\n\t\t\t\t\t\t$this->response->redirect($this->url->link('sale/order/info', 'token=' . $this->session->data['token'] . '&order_id=' . $this->request->get['order_id'], true));\n \n } else {\n $this->session->data['error'] = $result->message;\n\t\t\t\t\t $this->response->redirect($this->url->link('extension/payment/hoolah/refund', 'token=' . $this->session->data['token'] . '&tid=' . $this->request->get['tid'] . '&order_id=' . $this->request->get['order_id'], true));\n }\n\t\t\t\t} else {\n\t\t\t\t\t$this->session->data['error'] = $this->language->get('error_data');\n\t\t\t\t\t$this->response->redirect($this->url->link('extension/payment/hoolah/refund', 'token=' . $this->session->data['token'] . '&tid=' . $this->request->get['tid'] . '&order_id=' . $this->request->get['order_id'], true));\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\t$this->session->data['error'] = $this->language->get('error_data');\n\t\t\t$this->response->redirect($this->url->link('extension/payment/hoolah/refund', 'token=' . $this->session->data['token'] . '&tid=' . $this->request->get['tid'] . '&order_id=' . $this->request->get['order_id'], true));\n\t\t}\n\t}", "public function refund(array $options = [])\n {\n // TODO: Implement refund() method.\n }", "public function action_removetest()\n\t{\n\t\ttry{\n\t\t\t$array_accounts = include($_SERVER['DOCUMENT_ROOT'].'/ayushman/application/config/accounts.php');\n\t\t\t$orderno=$_GET['orderno'];\n\t\t\t$objUser = Auth::instance()->get_user();\n\t\t\t$userid = $objUser->id;\n\t\t\tif($orderno != \"\")\n\t\t\t{\n\t\t\t\t$objtest = ORM::factory('diagnosticlabsorder')->where('id','=',$orderno)->find();\n\t\t\t\tif($objtest->id != \"\")\n\t\t\t\t{\t\n\t\t\t\t\t$from_account \t= ORM::factory('billingaccount')->where('refaccountuserid_c','=',$array_accounts['provisionaccountuserid'])->find()->accountcode_c;\n\t\t\t\t\t$to_account \t= ORM::factory('billingaccount')->where('refaccountuserid_c','=',$userid)->find()->accountcode_c;\n\t\t\t\t\t\n\t\t\t\t\t// If online transaction then reverted back\n\t\t\t\t\tif($objtest->cashpaymentflag_c == 0)\n\t\t\t\t\t{\n\t\t\t\t\t\tif($objtest->paid_c)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$amount = $objtest->rate_c;\n\t\t\t\t\t\t\t$result = transaction::transfer($from_account,$to_account,1,$objtest->rate_c,8);\n\t\t\t\t\t\t\t$objtest->status_c= 'Cancelled';\n\t\t\t\t\t\t\t$objtest->save();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tdie();\n\t\t} \n\t\tcatch (Exception $e) {\n\t\tthrow new Exception($e);\n\t\t}\n\t}", "public function refundPayment($observer)\r\n {\r\n $creditMemo = $observer->getEvent()->getCreditmemo();\r\n $order = $creditMemo->getOrder();\r\n $chargeId = $order->getCmpaymentsChargeId();\r\n\r\n //only handle CM order refunds\r\n if ($chargeId) {\r\n $helper = Mage::helper('cmpayments');\r\n\r\n //can only do full refunds, make sure no modifications are made\r\n if ($creditMemo->getAdjustmentPositive() || $creditMemo->getAdjustmentNegative() || ($creditMemo->getShippingAmount() != $order->getShippingAmount())) {\r\n Mage::throwException($helper->__('A CM refund can only be for the full payment.'));\r\n }\r\n\r\n //attempt to refund full payment\r\n if (! Mage::helper('cmpayments/order')->refundPayment($order)) {\r\n $helper->log('Manual refund request of an order failed: ' . $order->getRealOrderId(), Zend_Log::WARN);\r\n Mage::throwException('The CM refund request could not be completed. ');\r\n } else {\r\n $helper->log('Manual refund request of an order succeeded: ' . $order->getRealOrderId());\r\n }\r\n }\r\n }", "public function getRefunds() {\n $orders = Order::where('status', 'refund')->with('orderitems', 'shippings')->get();\n return view('backend.admin.order.refund')->with('orders', $orders);\n }", "public function testIssueRefund()\n {\n }", "function get_refund_or_order()\n{\n\t// Fail\n}", "function getRefundOrOrder()\n{\n\t// Fail\n}", "public function refund() {\n\t\t$this->load->language('extension/payment/hoolah_refund');\n\t\t$this->load->model('extension/payment/hoolah');\n\n\t\t$this->document->setTitle($this->language->get('heading_title'));\n\n\t\t$data['heading_title'] = $this->language->get('heading_title');\n\t\t$data['button_cancel'] = $this->language->get('button_cancel');\n\t\t$data['entry_transaction_id'] = $this->language->get('entry_transaction_id');\n\t\t$data['entry_full_refund'] = $this->language->get('entry_full_refund');\n\t\t$data['entry_amount'] = $this->language->get('entry_amount');\n\t\t$data['entry_message'] = $this->language->get('entry_message');\n\t\t$data['button_refund'] = $this->language->get('button_refund');\n\t\t$data['text_refund'] = $this->language->get('text_refund');\n\n\t\t$data['breadcrumbs'] = array();\n\n\t\t$data['breadcrumbs'][] = array(\n\t\t\t'text' => $this->language->get('text_home'),\n\t\t\t'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], true),\n\t\t);\n\n\t\t$data['breadcrumbs'][] = array(\n\t\t\t'text' => $this->language->get('text_hoolah'),\n\t\t\t'href' => $this->url->link('extension/payment/hoolah', 'token=' . $this->session->data['token'], true),\n\t\t);\n\n\t\t$data['breadcrumbs'][] = array(\n\t\t\t'text' => $this->language->get('heading_title'),\n\t\t\t'href' => $this->url->link('extension/payment/hoolah/refund', 'token=' . $this->session->data['token'], true),\n\t\t);\n \n\t\t//button actions\n\t\t$data['action'] = $this->url->link('extension/payment/hoolah/doRefund', 'token=' . $this->session->data['token'] . '&tid=' . $this->request->get['tid'] . '&order_id=' . $this->request->get['order_id'], true);\n\t\t$data['cancel'] = $this->url->link('sale/order', 'token=' . $this->session->data['token'], true);\n\n\t\t$transaction_id = $this->request->get['tid'];\n \n $transaction = $this->model_extension_payment_hoolah->getHoolahOrderTransactionId($transaction_id);\n \n $data['order_id'] = $this->request->get['order_id'];\n $data['transaction_id'] = $transaction['uuid'];\n\t\t$data['total'] = $transaction['total'];\n\t\t$data['currency_code'] = $transaction['currency'];\n\n\t\t$refunded = number_format($this->model_extension_payment_hoolah->getRefundedTotal($transaction['uuid']), 2);\n\t\t\n\t\t$this->load->model('sale/order');\n $order = $this->model_sale_order->getOrder($this->request->get['order_id']);\n\n\t\tif ($refunded != 0.00) {\n\t\t\t$data['refund_available'] = number_format($order['total'] - $refunded, 2);\n\t\t\t$data['attention'] = $this->language->get('text_current_refunds') . ': ' . $data['refund_available'];\n\t\t} else {\n\t\t\t$data['refund_available'] = '';\n\t\t\t$data['attention'] = '';\n\t\t}\n\n\t\t$data['token'] = $this->session->data['token'];\n\n\t\tif (isset($this->session->data['error'])) {\n\t\t\t$data['error'] = $this->session->data['error'];\n\t\t\tunset($this->session->data['error']);\n\t\t} else {\n\t\t\t$data['error'] = '';\n\t\t}\n\n\t\t$data['header'] = $this->load->controller('common/header');\n\t\t$data['column_left'] = $this->load->controller('common/column_left');\n\t\t$data['footer'] = $this->load->controller('common/footer');\n\n\t\t$this->response->setOutput($this->load->view('extension/payment/hoolah_refund', $data));\n\t}", "public static function refund($params)\n {\n $requestor = Ferbuy_ApiRequestor::getInstance();\n\n $post_data = array(\n 'command' => $params['currency'].$params['amount'],\n 'output_type' => self::OUTPUT_TYPE,\n 'site_id' => $requestor->_siteId,\n 'transaction_id' => $params['transaction_id'],\n );\n $post_data['checksum'] = $requestor->sign($post_data);\n\n $response = $requestor->request('post', '/RefundTransaction', $post_data);\n return $response;\n }", "public function get_company_invoice_payment_refund() {\n $invoice = $this->input->post('invoice');\n $data = $this->classtraineemodel->company_invoice($invoice);\n if ($data->company_id[0] == 'T') {\n $tenant_details = fetch_tenant_details($data->company_id);\n $data->company_name = $tenant_details->tenant_name;\n } else {\n $company_details = $this->company->get_company_details($this->tenant_id, $data->company_id);\n $data->company_name = $company_details[0]->company_name;\n }\n $data->discount_label = rtrim($this->course->get_metadata_on_parameter_id($data->discount_type), ', ');\n $gst_label = ($data->total_gst > 0) ? 'GST ON, ' : 'GST OFF ';\n if ($data->total_gst > 0) {\n $gst_label .= rtrim($this->course->get_metadata_on_parameter_id($data->gst_rule), ', ');\n }\n $data->gst_label = $gst_label;\n $data->inv_date = date('d/m/Y', strtotime($data->inv_date));\n $data->amount_refund = round($data->amount_refund, 2);\n $refund_details = $refund_details = $this->classtraineemodel->get_refund_paid_details($invoice);\n foreach ($refund_details as $k => $row) {\n if ($row->refnd_reason != 'OTHERS') {\n $refund_details[$k]->refnd_reason = $this->course->get_metadata_on_parameter_id($row->refnd_reason);\n } else {\n $refund_details[$k]->refnd_reason = 'Others (' . $row->refnd_reason_ot . ')';\n }\n\n $refund_details[$k]->refund_on = date('d/m/Y', strtotime($row->refund_on));\n $refund_details[$k]->mode_of_refund = $this->course->get_metadata_on_parameter_id($row->mode_of_refund);\n }\n $res = array('data' => $data, 'refund' => $refund_details);\n echo json_encode($res);\n exit();\n }", "function action_woocommerce_send_sms_order_refunded($order_id) {\n # code...\n}", "public function ajax_swedbank_pay_refund() {\n\t\tif ( ! wp_verify_nonce( $_REQUEST['nonce'], 'swedbank_pay' ) ) {\n\t\t\texit( 'No naughty business' );\n\t\t}\n\n\t\t$order_id = (int) $_REQUEST['order_id'];\n\t\t$order = wc_get_order( $order_id );\n\n\t\ttry {\n\t\t\t// Create the refund object.\n\t\t\t$refund = wc_create_refund(\n\t\t\t\tarray(\n\t\t\t\t\t'amount' => $order->get_total(),\n\t\t\t\t\t'reason' => __( 'Full refund.', 'swedbank-pay-woocommerce-checkout' ),\n\t\t\t\t\t'order_id' => $order_id,\n\t\t\t\t\t'refund_payment' => true\n\t\t\t\t)\n\t\t\t);\n\n\t\t\tif ( is_wp_error( $refund ) ) {\n\t\t\t\tthrow new Exception( $refund->get_error_message() );\n\t\t\t}\n\n\t\t\twp_send_json_success( __( 'Refund has been successful.', 'swedbank-pay-woocommerce-checkout' ) );\n\t\t} catch ( Exception $e ) {\n\t\t\twp_send_json_error( $e->getMessage() );\n\t\t}\n\t}", "public function order() {\n\t /* get an update about the order details from hoolah api */\n\t $this->load->language('extension/payment/hoolah');\n\t $this->load->model('extension/payment/hoolah');\n\t $this->load->model('sale/order');\n\t \n\t if (isset($this->request->get['order_id'])) {\n\t\t\t$order_id = $this->request->get['order_id'];\n\t\t} else {\n\t\t\t$order_id = 0;\n\t\t}\n\t\n\t\t// get the callback info\n\t\t$order_mid = 'Order-' . $order_id;\n\t\t$callback_result = $this->model_extension_payment_hoolah->getCallback($order_mid);\n\t\n // call hoolah api\n $hoolah_info = $this->model_extension_payment_hoolah->order($callback_result['order_uuid']);\n \n $infos = array();\n $infos['order_id'] = $hoolah_info->merchantRef;\n $infos['uuid'] = $hoolah_info->uuid;\n $infos['status'] = $hoolah_info->status;\n $infos['orderType'] = $hoolah_info->orderType;\n $infos['total'] = $hoolah_info->totalAmount;\n $infos['tax'] = $hoolah_info->taxAmount;\n $infos['shipping_fee'] = $hoolah_info->shippingAmount;\n $infos['currency'] = $hoolah_info->currency;\n $infos['createdAt'] = date('Y-m-d H:i:s', strtotime($hoolah_info->createdAt));\n $infos['date_added'] = date('Y-m-d H:i:s');\n \n // if the order is refunded, check the status of refund in api\n $refund_status = $this->model_extension_payment_hoolah->getHoolahRefundStatus($callback_result['order_uuid'], 'ACCEPTED');\n \n // provide other details to save in transaction\n if(isset($refund_status)) {\n $infos['total'] = $refund_status['total'];\n $infos['requestId'] = $refund_status['requestId'];\n $infos['code'] = $refund_status['code'];\n $infos['message'] = $refund_status['message'];\n $infos['details'] = $refund_status['details'];\n }\n \n // check if not existing\n $order_transaction = $this->model_extension_payment_hoolah->getHoolahOrderTransactionStatus($hoolah_info->merchantRef, $hoolah_info->status);\n if(count($order_transaction) == 0) {\n // if not existing, insert\n $this->model_extension_payment_hoolah->addHoolahOrderTransaction($infos);\n } else {\n // if existing, update\n $this->model_extension_payment_hoolah->editHoolahOrderTransaction($order_transaction['id'], $infos);\n }\n \n if(isset($order_transaction)) {\n $data['text_extension'] = $this->language->get('text_extension');\n\t\t\t$data['text_transaction'] = $this->language->get('text_transaction');\n\t\t\t$data['text_capture_status'] = $this->language->get('text_capture_status');\n\t\t\t$data['text_amount_authorised'] = $this->language->get('text_amount_authorised');\n\t\t\t$data['text_total_amount_captured'] = $this->language->get('text_total_amount_captured');\n\t\t\t$data['text_amount_captured'] = $this->language->get('text_amount_captured');\n\t\t\t$data['text_amount_refunded'] = $this->language->get('text_amount_refunded');\n\t\t\t$data['text_confirm_void'] = $this->language->get('text_confirm_void');\n\t\t\t$data['text_full_refund'] = $this->language->get('text_full_refund');\n\t\t\t$data['text_partial_refund'] = $this->language->get('text_partial_refund');\n\t\t\t$data['text_loading'] = $this->language->get('text_loading');\n\n\t\t\t$data['entry_capture_amount'] = $this->language->get('entry_capture_amount');\n\t\t\t$data['entry_capture_complete'] = $this->language->get('entry_capture_complete');\n\t\t\t$data['entry_full_refund'] = $this->language->get('entry_full_refund');\n\t\t\t$data['entry_note'] = $this->language->get('entry_note');\n\t\t\t$data['entry_amount'] = $this->language->get('entry_amount');\n\n\t\t\t$data['button_capture'] = $this->language->get('button_capture');\n\t\t\t$data['button_refund'] = $this->language->get('button_refund');\n\t\t\t$data['button_void'] = $this->language->get('button_void');\n\n\t\t\t$data['tab_capture'] = $this->language->get('tab_capture');\n\t\t\t$data['tab_refund'] = $this->language->get('tab_refund');\n\n\t\t\t$data['token'] = $this->session->data['token'];\n\n\t\t\t$data['order_id'] = $this->request->get['order_id'];\n \n \t$data['status'] = $order_transaction['status'];\n\n\t\t\t$data['total'] = $order_transaction['total'];\n\t\t\t\n\t\t\t// total order\n\t\t\t$captured = number_format($this->model_extension_payment_hoolah->getCapturedTotal($order_transaction['order_id']), 2);\n\t\t\t\n\t\t\t$orders = $this->model_sale_order->getOrder($this->request->get['order_id']);\n\t\t\t\n if(number_format($orders['total'], 2) != $captured) {\n $captured = number_format($orders['total'], 2);\n }\n\t\t\t$data['captured'] = $captured;\n \n // refund order\n// \t\t\t$refunded = number_format($this->model_extension_payment_hoolah->getRefundedTotal($order_transaction['uuid']), 2);\n// \t\t\t$data['refunded'] = $refunded;\n\t\t\t\n\t\t\t$hoolah_info = $this->model_extension_payment_hoolah->getHoolahOrderTransaction($this->request->get['order_id']);\n $refund = array();\n \t\tif (isset($hoolah_info)) {\n \t\t\tforeach ($hoolah_info as $key => $result) {\n \t\t // refund\n \t\t if($result['status'] == 'ACCEPTED') {\n \t\t $refund[] = $result['total'];\n \t\t }\n \t\t\t}\n \t\t} \n \t\tif(!empty($refund)) {\n\t\t\t $data['refunded'] = number_format(array_sum($refund), 2);\n\t\t\t} \n\t\t\t$data['total_amount'] = number_format($orders['total'], 2);\n\t\t\t\n\t\t\treturn $this->load->view('extension/payment/hoolah_order', $data);\n }\n\t}", "public function addRefund($bill, $refund, $order);", "function bankopen_refund($params)\n{\n // Gateway Configuration Parameters\n $APIKey = $params['APIKey'];\n $APISecret = $params['APISecret'];\n $testMode = $params['testMode'];\n $dropdownField = $params['dropdownField'];\n $radioField = $params['radioField'];\n $textareaField = $params['textareaField'];\n\n // Transaction Parameters\n $transactionIdToRefund = $params['transid'];\n $refundAmount = $params['amount'];\n $currencyCode = $params['currency'];\n\n // Client Parameters\n $firstname = $params['clientdetails']['firstname'];\n $lastname = $params['clientdetails']['lastname'];\n $email = $params['clientdetails']['email'];\n $address1 = $params['clientdetails']['address1'];\n $address2 = $params['clientdetails']['address2'];\n $city = $params['clientdetails']['city'];\n $state = $params['clientdetails']['state'];\n $postcode = $params['clientdetails']['postcode'];\n $country = $params['clientdetails']['country'];\n $phone = $params['clientdetails']['phonenumber'];\n\n // System Parameters\n $companyName = $params['companyname'];\n $systemUrl = $params['systemurl'];\n $langPayNow = $params['langpaynow'];\n $moduleDisplayName = $params['name'];\n $moduleName = $params['paymentmethod'];\n $whmcsVersion = $params['whmcsVersion'];\n\n // perform API call to initiate refund and interpret result\n\n return array(\n // 'success' if successful, otherwise 'declined', 'error' for failure\n 'status' => 'success',\n // Data to be recorded in the gateway log - can be a string or array\n 'rawdata' => $responseData,\n // Unique Transaction ID for the refund transaction\n 'transid' => $refundTransactionId,\n // Optional fee amount for the fee value refunded\n 'fees' => $feeAmount,\n );\n}", "public function orderInfo(&$route, &$data, &$template) {\n if (isset($data['order_id'])) {\n $order = $this->model_sale_order->getOrder($data['order_id']);\n $payment_method = $order['payment_code'];\n if ($payment_method === $this->_getPaymentMethodCode()) {\n $transaction = $this->registry->get('model_extension_payment_' . $this->_getPaymentMethodCode())->getPaymentTransaction($data['order_id']);\n if ($transaction && isset($transaction['payment_token'])) {\n $availableRefundAmount = $this->registry->get('model_extension_payment_' . $this->_getPaymentMethodCode())->getAvailableRefundAmount($data['order_id']);\n if ($availableRefundAmount !== false) {\n $refund_url = $this->url->link('extension/payment/' . $this->_getPaymentMethodCode() . '/refund', 'user_token=' . $this->session->data['user_token'] . '&token=' . $transaction['payment_token'], true);\n $refund_button = str_replace(\"{{{refund_url}}}\", $refund_url, $this->language->get($this->_getPaymentMethodCode() . '_refund_button'));\n $refund_button = str_replace(\"{{{refund_amount}}}\", $availableRefundAmount, $refund_button);\n $refund_script = '<script src=\"view/javascript/' . $this->_getPaymentMethodCode() . '/refund.js\"></script>';\n $data['footer'] = str_replace(\"{{{refund_button}}}\", $refund_button, str_replace(\"{{{text_payment_method}}}\", $this->language->get('text_payment_method'), $this->language->get($this->_getPaymentMethodCode() . '_refund_script'))) . \"\\n\" . $refund_script . \"\\n\" . $data['footer'];\n }\n }\n }\n }\n }", "public function onOrderSaveAction(Enlight_Event_EventArgs $arguments)\n {\n $client = $this->Client();\n $backendOrderController = $arguments->getSubject();\n $request = $backendOrderController->Request();\n\n $params = $request->getParams();\n $payment = $params['payment'][0]['name'];\n $paymentStatusNow = $params['cleared'];\n $orderId = $request->getParam('id', null);\n\n $locale = $request->getParam('locale');\n $localeId = $locale[0]['id'];\n\n if (!empty($orderId)) {\n $order = $this->getRepository()->find($orderId);\n $paymentStatusBefore = $order->getPaymentStatus()->getId();\n $data = array(\n 'refId' => $order->getTransactionId(),\n 'amount' => $params['invoiceAmountEuro'],\n 'currency' => $params['currency'],\n 'payment' => $payment\n );\n\n if ($paymentStatusBefore == 1750 && $paymentStatusNow == 1750) {\n $transactionResult = $client->updateStatus($data, $returnCode);\n if ($transactionResult != 'ACK') {\n $errorIdentifier = $client->getErrorIdentifierBackend($returnCode);\n $errorMessage = $this->getBackendSnippet($errorIdentifier, $localeId);\n throw new Exception($errorMessage);\n }\n } elseif ($paymentStatusBefore == 1751 && $paymentStatusNow == 1752) {\n $transactionResult = $client->executePayment($data, 'CP', $returnCode);\n if ($transactionResult != 'ACK') {\n $errorIdentifier = $client->getErrorIdentifierBackend($returnCode);\n $errorMessage = $this->getBackendSnippet($errorIdentifier, $localeId);\n throw new Exception($errorMessage);\n }\n } elseif ($paymentStatusBefore == 1752 && $paymentStatusNow == 1753) {// payment accepted => refund\n $transactionResult = $client->executePayment($data, 'RF', $returnCode);\n if ($transactionResult != 'ACK') {\n $errorIdentifier = $client->getErrorIdentifierBackend($returnCode);\n $errorMessage = $this->getBackendSnippet($errorIdentifier, $localeId);\n throw new Exception($errorMessage);\n }\n }\n }\n }", "protected function _updateRefundDetails()\n {\n $sQuery = \"SELECT BESTITAMAZONREFUNDID\n FROM bestitamazonrefunds\n WHERE STATE = 'Pending'\n AND BESTITAMAZONREFUNDID != ''\";\n\n $aResult = $this->_getContainer()->getDatabase()->getAll($sQuery);\n\n $this->_oLogger->info(\n 'Fetched orders and processed',\n array('orderNumbers' => array_keys($aResult))\n );\n\n foreach ($aResult as $aRow) {\n $oData = $this->_getContainer()->getClient()->getRefundDetails($aRow['BESTITAMAZONREFUNDID']);\n\n if (isset($oData->GetRefundDetailsResult->RefundDetails->RefundStatus->State)) {\n $this->_addToMessages(\n \"Refund ID: {$oData->GetRefundDetailsResult->RefundDetails->RefundReferenceId} - \"\n .\"Status: {$oData->GetRefundDetailsResult->RefundDetails->RefundStatus->State}<br/>\"\n );\n }\n }\n }", "function process_invoice_actions($action, $ids) {\r\n global $wpi_settings;\r\n\r\n // Set status\r\n switch ($action) {\r\n case 'trash':\r\n $status = 'trashed';\r\n break;\r\n case 'delete':\r\n $status = 'deleted';\r\n break;\r\n case 'untrash':\r\n $status = 'untrashed';\r\n break;\r\n case 'unarchive':\r\n $status = 'un-archived';\r\n break;\r\n case 'archive':\r\n $status = 'archived';\r\n break;\r\n }\r\n\r\n if (!is_array($ids)) {\r\n $ids = explode(',', $ids);\r\n }\r\n\r\n // Process action\r\n $invoice_ids = array();\r\n foreach ((array) $ids as $ID) {\r\n // Perfom action\r\n $this_invoice = new WPI_Invoice();\r\n $this_invoice->load_invoice(\"id={$ID}\");\r\n $invoice_id = $this_invoice->data['invoice_id'];\r\n switch ($action) {\r\n case 'trash':\r\n if ($this_invoice->trash()) {\r\n $invoice_ids[] = $invoice_id;\r\n }\r\n break;\r\n case 'delete':\r\n if ($this_invoice->delete()) {\r\n $invoice_ids[] = $invoice_id;\r\n }\r\n break;\r\n case 'untrash':\r\n if ($this_invoice->untrash()) {\r\n $invoice_ids[] = $invoice_id;\r\n }\r\n break;\r\n case 'unarchive':\r\n if ($this_invoice->unarchive()) {\r\n $invoice_ids[] = $invoice_id;\r\n }\r\n break;\r\n case 'archive':\r\n if ($this_invoice->archive()) {\r\n $invoice_ids[] = $invoice_id;\r\n }\r\n break;\r\n }\r\n }\r\n if (!empty($status) && $status) {\r\n // Get Referer and clean it up\r\n $sendback = wp_get_referer();\r\n $sendback = remove_query_arg(array('trashed', 'untrashed', 'deleted', 'invoice_id, unarchived, archived'), $sendback);\r\n // Determine if reffer is not main page, we set it ( anyway, will do redirect to main page )\r\n if (!strpos($sendback, $wpi_settings['links']['overview_page'])) {\r\n $sendback = $wpi_settings['links']['overview_page'];\r\n }\r\n wp_redirect(add_query_arg(array($status => 1, 'invoice_id' => implode(',', $invoice_ids)), $sendback));\r\n die();\r\n }\r\n }", "public function refund($mixed = null) {\n\t\t$validParameters = array(\n\t\t\t'(orderv2\\refund)',\n\t\t);\n\t\t$args = func_get_args();\n\t\t$this->_checkArguments($args, $validParameters);\n\t\treturn $this->__soapCall('refund', $this->make_soap_params($mixed));\n\t}", "public function processRefund($data) {\n\t\t// provide the EziDebit API endpoint\n\t\t$soapclient = new SoapClient($this->nonPci);\n\n\t\t$params = [\n\t\t\t\t'DigitalKey' => $this->digitalKey,\n\t\t\t\t'PaymentID' => $data['paymentId'],\n\t\t\t\t'BankReceiptID' => $data['bankReceiptId'],\n\t\t\t\t'RefundAmountInCents' => $data['refundAmountInCents']\n\t\t];\n\n\t\treturn $response = $soapclient->processRefund($params);\n\t}", "public function refund_data() {\n $data['header'] = $this->header;\n $this->load->view('report_refund_v', $data);\n }", "public function testOrderStatusPartialRefund()\n {\n /** @var \\Magento\\Sales\\Model\\Order $existingOrder */\n $existingOrder = $this->objectManager->create(\\Magento\\Sales\\Model\\Order::class)\n ->loadByIncrementId('100000001');\n\n $items = $this->getOrderItems($existingOrder);\n $items[0]['qty'] -= 1;\n $result = $this->_webApiCall(\n $this->getServiceData($existingOrder),\n [\n 'orderId' => $existingOrder->getEntityId(),\n 'items' => $items,\n ]\n );\n\n $this->assertNotEmpty(\n $result,\n 'Failed asserting that the received response is correct'\n );\n\n /** @var \\Magento\\Sales\\Model\\Order $updatedOrder */\n $updatedOrder = $this->objectManager->create(\\Magento\\Sales\\Model\\Order::class)\n ->loadByIncrementId($existingOrder->getIncrementId());\n\n $this->assertSame('custom_processing', $updatedOrder->getStatus());\n $this->assertSame('processing', $updatedOrder->getState());\n }", "public function RefundTxn() {\r\n\r\n $ch = curl_init();\r\n\r\n $CURLParameters = http_build_query(array(\r\n // Our default parameters!\r\n \"key\" => $this->key,\r\n \"appid\" => $this->game,\r\n // This can vary from request to request, sometimes its steamid or steamids or even an array.\r\n \"steamid\" => $this->steamid,\r\n // Custom Queries below here.\r\n \"orderid\" => $this->orderid,\r\n ));\r\n\r\n curl_setopt($ch, CURLOPT_URL, \"https://partner.steam-api.com/\" . $this->interface . \"/RefundTxn/v2/\");\r\n\r\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\r\n curl_setopt($ch, CURLOPT_POST, 1);\r\n curl_setopt($ch, CURLOPT_POSTFIELDS, $CURLParameters);\r\n $CURLResponse = json_decode(curl_exec($ch));\r\n $CURLResponseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);\r\n curl_close($ch);\r\n\r\n\r\n // Error handling improved!\r\n\r\n if ($CURLResponseCode != 200) {\r\n if ($CURLResponseCode == 400) {\r\n throw new exceptions\\SteamRequestParameterException(\"The Order ID or another parameter is invalid!\");\r\n }\r\n if ($CURLResponseCode == 401) {\r\n throw new exceptions\\SteamException(\"App ID or API Key is invalid.\");\r\n }\r\n throw new exceptions\\SteamRequestException(\"$CURLResponseCode Request Error.\");\r\n }\r\n\r\n if ($CURLResponse->response->result == \"OK\") {\r\n return true;\r\n }\r\n\r\n throw new exceptions\\SteamRequestException(json_encode($CURLResponse->response->error));\r\n }", "public function refundRequest()\n {\n $request = new Request\\Refund;\n return $this->applyAuthSettings($request);\n }", "public function cancelOrder($param) { \n if (!$this->aaa->has_right('openruth', 500))\n $res->cancelOrderError->_value = 'authentication_error';\n else {\n $agencyId = self::strip_agency($param->agencyId->_value);\n $targets = $this->config->get_value('ruth', 'ztargets');\n if ($tgt = $targets[$agencyId]) {\n $ord = &$order->ReservationDelete->_value;\n $ord->LibraryNo->_value = $agencyId;\n $ord->DisposalID->_value = $param->orderId->_value;\n $xml = '<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?'.'>' . utf8_decode($this->objconvert->obj2xml($order));\n $z = new z3950();\n $z->set_target($tgt['host']);\n $z->set_database($tgt['database'].'-ophelia');\n $z->set_authentication($tgt['authentication']);\n if ($tgt['proxy']) {\n $z->set_proxy($tgt['proxy']);\n }\n $xml_ret = $z->z3950_xml_update($xml, $tgt['timeout']);\n//echo 'error: ' . $z->get_errno();\n//print_r($xml);\n//print_r($xml_ret);\n if ($z->get_errno() == 0 && $xml_ret['xmlUpdateDoc']) {\n $dom = new DomDocument();\n $dom->preserveWhiteSpace = false;\n if ($dom->loadXML($xml_ret['xmlUpdateDoc'])) {\n if ($err = $dom->getElementsByTagName('ReservationDeleteResponse')->item(0)->nodeValue) {\n verbose::log(ERROR, __FUNCTION__ . ' (' . __LINE__ . ') errno: ' . $err);\n if (!($res->cancelOrderError->_value = $this->errs[$err])) \n $res->cancelOrderError->_value = 'unspecified error (' . $err . '), order not possible';\n } else {\n $res->cancelOrderOk->_value = $param->orderId->_value;\n }\n } else {\n verbose::log(ERROR, __FUNCTION__ . ' (' . __LINE__ . ') loadXML error of: ' . $xml_ret['xmlUpdateDoc']);\n $res->cancelOrderError->_value = 'system error';\n }\n } else {\n self::log_z_error(__FUNCTION__, __LINE__, $agencyId, $z->get_errno(), $z->get_error_string());\n $res->cancelOrderError->_value = 'system error';\n }\n } else\n $res->cancelOrderError->_value = 'unknown agencyId';\n }\n\n $ret->cancelOrderResponse->_value = $res;\n //var_dump($param); print_r($res); die();\n return $ret;\n }", "public function refund(Varien_Object $oPayment, $nAmount)\n\t{\n\t\tMage::log(\" --- Snap* Hosted Payments API : refund --- \");\n\n\t\tif(empty($nAmount))\n\t\t\t$nAmount=null;\n\n\t\tif ($oPayment->getLastTransId())\n\t\t{\n\t\t\t// build the request\n\t\t\t$oOrder = $oPayment->getOrder();\n\t\t\t$aMACParamKeys = array('code','action','merchant_order_id','txn_id');\n\t\t\t$aRequest = $this->_buildAPIRequest(array(\n\t\t\t\t'action' => 'credit',\n\t\t\t\t'merchant_order_id' => $oOrder->getRealOrderId(),\n\t\t\t\t'txn_id' => $oPayment->getLastTransId(),\n\t\t\t\t'amount' => (!is_null($nAmount) ? self::_currencyAmount($nAmount) : $nAmount),\n\t\t\t), $aMACParamKeys);\n\t\t\tMage::log($aRequest);\n\n\t\t\t// post the request\n\t\t\t$aResult = $this->_postAPIRequest($aRequest);\n\t\t\tMage::log($aResult);\n\n\t\t\t// parse the response\n\t\t\tif ($aResult['success'] === true && isset($aResult['status']) && strtolower($aResult['status']) == 'approved') // approved\n\t\t\t{\n\t\t\t\tMage::log('approved');\n\t\t\t\tif($aResult['txn_id'] != null)\n\t\t\t\t\t$oPayment->setLastTransId($aResult['txn_id']);\n\t\t\t\t$oPayment->setStatus(self::STATUS_SUCCESS);\n\t\t\t\t$oPayment->getOrder()->addStatusToHistory($oPayment->getOrder()->getStatus(), $this->_getHelper()->__('Payment has been refunded via Snap* Hosted Payments Checkout (transid # '.$aResult['txn_id'].').'));\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$oPayment->setStatus(self::STATUS_ERROR);\n\t\t\t\tif ($aResult['success'] === true && isset($aResult['status']) && strtolower($aResult['status']) == 'declined') // declined\n\t\t\t\t{\n\t\t\t\t\tMage::log('declined');\n\t\t\t\t\t$sError = 'Payment refund request was declined by Snap* Hosted Payments Checkout.'.(!empty($aResult['message']) ? ' '.$aResult['message'] : '');\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tMage::log('failure');\n\t\t\t\t\t$sError = 'Payment refund request failed.'.(!empty($aResult['message']) ? ' '.$aResult['message'] : '');\n\t\t\t\t}\n\t\t\t\tMage::getSingleton('adminhtml/session')->addError($this->_getHelper()->__($sError));\n\t\t\t\t$oPayment->getOrder()->addStatusToHistory($oPayment->getOrder()->getStatus(), $this->_getHelper()->__($sError));\n\t\t\t\tMage::throwException($sError);\n\t\t\t}\n\t\t}\n\n\t\treturn $this;\n\t}", "function cp_transactions() {\r\n global $wpdb;\r\n\r\n // check to prevent php \"notice: undefined index\" msg when php strict warnings is on\r\n if ( isset( $_GET['action'] ) ) $theswitch = $_GET['action']; else $theswitch = '';\r\n\r\n switch ( $theswitch ) {\r\n\r\n // mark transaction as paid\r\n case 'setPaid':\r\n\r\n $update = \"UPDATE \" . $wpdb->prefix . \"cp_order_info SET payment_status = 'Completed' WHERE id = '\". $_GET['id'] .\"'\";\r\n $wpdb->query( $update );\r\n ?>\r\n <p style=\"text-align:center;padding-top:50px;font-size:22px;\"><?php _e('Updating transaction entry.....','appthemes') ?><br /><br /><img src=\"<?php echo bloginfo('template_directory') ?>/images/loader.gif\" alt=\"\" /></p>\r\n <meta http-equiv=\"refresh\" content=\"0; URL=?page=transactions\">\r\n\r\n <?php\r\n\r\n break;\r\n\r\n\r\n // mark transaction as unpaid\r\n case 'unsetPaid':\r\n\r\n $update = \"UPDATE \" . $wpdb->prefix . \"cp_order_info SET payment_status = 'Pending' WHERE id = '\". $_GET['id'] .\"'\";\r\n $wpdb->query( $update );\r\n ?>\r\n <p style=\"text-align:center;padding-top:50px;font-size:22px;\"><?php _e('Updating transaction entry.....','appthemes') ?><br /><br /><img src=\"<?php echo bloginfo('template_directory') ?>/images/loader.gif\" alt=\"\" /></p>\r\n <meta http-equiv=\"refresh\" content=\"0; URL=?page=transactions\">\r\n\r\n <?php\r\n\r\n break;\r\n\r\n\r\n // delete transaction entry\r\n case 'delete':\r\n\r\n $delete = \"DELETE FROM \" . $wpdb->prefix . \"cp_order_info WHERE id = '\". $_GET['id'] .\"'\";\r\n $wpdb->query( $delete );\r\n ?>\r\n <p style=\"text-align:center;padding-top:50px;font-size:22px;\"><?php _e('Deleting transaction entry.....','appthemes') ?><br /><br /><img src=\"<?php echo bloginfo('template_directory') ?>/images/loader.gif\" alt=\"\" /></p>\r\n <meta http-equiv=\"refresh\" content=\"0; URL=?page=transactions\">\r\n\r\n <?php\r\n\r\n break;\r\n\r\n\r\n // show the table of all transactions\r\n default:\r\n?>\r\n <div class=\"wrap\">\r\n <div class=\"icon32\" id=\"icon-themes\"><br /></div>\r\n <h2><?php _e('Order Transactions','appthemes') ?></h2>\r\n\r\n <?php cp_admin_info_box(); ?>\r\n\r\n <table id=\"tblspacer\" class=\"widefat fixed\">\r\n\r\n <thead>\r\n <tr>\r\n <th scope=\"col\" style=\"width:35px;\">&nbsp;</th>\r\n <th scope=\"col\"><?php _e('Payer Name','appthemes') ?></th>\r\n <th scope=\"col\" style=\"text-align: center;\"><?php _e('Payer Status','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Ad Title','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Item Description','appthemes') ?></th>\r\n <th scope=\"col\" style=\"width:125px;\"><?php _e('Transaction ID','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Payment Type','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Payment Status','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Total Amount','appthemes') ?></th>\r\n <th scope=\"col\" style=\"width:150px;\"><?php _e('Date Paid','appthemes') ?></th>\r\n <th scope=\"col\" style=\"text-align:center;width:100px;\"><?php _e('Actions','appthemes') ?></th>\r\n </tr>\r\n </thead>\r\n\r\n <?php\r\n // must be higher than personal edition so let's query the db\r\n $sql = \"SELECT o.*, p.post_title \"\r\n . \"FROM \" . $wpdb->prefix . \"cp_order_info o, $wpdb->posts p \"\r\n . \"WHERE o.ad_id = p.id \"\r\n . \"ORDER BY o.id desc\";\r\n\r\n $results = $wpdb->get_results( $sql );\r\n\r\n if ( $results ) {\r\n $rowclass = '';\r\n $i=1;\r\n ?>\r\n\r\n <tbody id=\"list\">\r\n\r\n <?php\r\n foreach ( $results as $result ) {\r\n\r\n $rowclass = 'even' == $rowclass ? 'alt' : 'even';\r\n ?>\r\n\r\n <tr class=\"<?php echo $rowclass ?>\">\r\n <td style=\"padding-left:10px;\"><?php echo $i ?>.</td>\r\n\r\n <td><strong><?php echo $result->first_name ?> <?php echo $result->last_name ?></strong><br /><a href=\"mailto:<?php echo $result->payer_email ?>\"><?php echo $result->payer_email ?></a></td>\r\n <td style=\"text-align: center;\">\r\n <?php if ($result->payer_status == 'verified') { ?><img src=\"<?php bloginfo('template_directory'); ?>/images/paypal_verified.gif\" alt=\"\" title=\"\" /><br /><?php } ?>\r\n <?php echo ucfirst($result->payer_status) ?>\r\n </td>\r\n <td><a href=\"post.php?action=edit&post=<?php echo $result->ad_id ?>\"><?php echo $result->post_title ?></a></td>\r\n <td><?php echo $result->item_name ?></td>\r\n <td><?php echo $result->txn_id ?></td>\r\n <td><?php echo ucfirst($result->payment_type) ?></td>\r\n <td><?php echo ucfirst($result->payment_status) ?></td>\r\n <td><?php echo $result->mc_gross ?> <?php echo $result->mc_currency ?></td>\r\n <td><?php echo mysql2date(get_option('date_format') .' '. get_option('time_format'), $result->payment_date) ?></td>\r\n <td style=\"text-align:center\">\r\n <?php\r\n echo '<a onclick=\"return confirmBeforeDelete();\" href=\"?page=transactions&amp;action=delete&amp;id='. $result->id .'\" title=\"'. __('Delete', 'appthemes') .'\"><img src=\"'. get_bloginfo('template_directory') .'/images/cross.png\" alt=\"'. __('Delete', 'appthemes') .'\" /></a>&nbsp;&nbsp;&nbsp;';\r\n if(strtolower($result->payment_status) == 'completed')\r\n echo '<br /><a href=\"?page=transactions&amp;action=unsetPaid&amp;id='. $result->id .'\" title=\"'. __('Mark as Unpaid', 'appthemes') .'\">'. __('Unmark Paid', 'appthemes') .'</a>';\r\n else\r\n echo '<br /><a href=\"?page=transactions&amp;action=setPaid&amp;id='. $result->id .'\" title=\"'. __('Mark as Paid', 'appthemes') .'\">'. __('Mark Paid', 'appthemes') .'</a>';\r\n ?>\r\n </td>\r\n </tr>\r\n\r\n <?php\r\n\r\n $i++;\r\n\r\n } // end for each\r\n ?>\r\n\r\n </tbody>\r\n\r\n <?php\r\n\r\n } else {\r\n\r\n ?>\r\n\r\n <tr>\r\n <td>&nbsp;</td><td colspan=\"10\"><?php _e('No transactions found.','appthemes') ?></td>\r\n </tr>\r\n\r\n <?php\r\n } // end $results\r\n ?>\r\n\r\n </table> <!-- this is ok -->\r\n\r\n\r\n <div class=\"icon32\" id=\"icon-themes\"><br /></div>\r\n <h2><?php _e('Membership Orders','appthemes') ?></h2>\r\n <table id=\"tblspacer\" class=\"widefat fixed\">\r\n\r\n <thead>\r\n <tr>\r\n <th scope=\"col\" style=\"width:35px;\">&nbsp;</th>\r\n <th scope=\"col\"><?php _e('Payer Name','appthemes') ?></th>\r\n <th scope=\"col\" style=\"text-align: center;\"><?php _e('Payer Status','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Item Description','appthemes') ?></th>\r\n <th scope=\"col\" style=\"width:125px;\"><?php _e('Transaction ID','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Payment Type','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Payment Status','appthemes') ?></th>\r\n <th scope=\"col\"><?php _e('Total Amount','appthemes') ?></th>\r\n <th scope=\"col\" style=\"width:150px;\"><?php _e('Date Paid','appthemes') ?></th>\r\n <th scope=\"col\" style=\"text-align:center;width:100px;\"><?php _e('Actions','appthemes') ?></th>\r\n </tr>\r\n </thead>\r\n\r\n\r\n\t\t<?php\r\n // seperate table for membership orders\r\n $sql = \"SELECT * \"\r\n . \"FROM \" . $wpdb->prefix . \"cp_order_info \"\r\n . \"WHERE ad_id = 0 \"\r\n . \"ORDER BY id desc\";\r\n\r\n $results = $wpdb->get_results($sql);\r\n\r\n if ($results) {\r\n $rowclass = '';\r\n $i=1;\r\n ?>\r\n\r\n <tbody id=\"list\">\r\n\r\n <?php\r\n foreach ( $results as $result ) {\r\n\r\n $rowclass = 'even' == $rowclass ? 'alt' : 'even';\r\n ?>\r\n\r\n <tr class=\"<?php echo $rowclass ?>\">\r\n <td style=\"padding-left:10px;\"><?php echo $i ?>.</td>\r\n\t\t\t\t\t<?php $payer = get_user_by('email', $result->payer_email); ?>\r\n <?php //TODO - LOOKUP CUSTOMER BY PAYPAL EMAIL CUSTOM PROFILE FIELD ?>\r\n <td><strong><?php echo $result->first_name ?> <?php echo $result->last_name ?></strong><br /><a href=\"<?php if(isset($payer->ID) && $payer) echo get_bloginfo('url').'/wp-admin/user-edit.php?user_id='.$payer->ID; else echo 'mailto:'.$result->payer_email; ?>\"><?php echo $result->payer_email ?></a></td>\r\n <td style=\"text-align: center;\">\r\n <?php if ($result->payer_status == 'verified') { ?><img src=\"<?php bloginfo('template_directory'); ?>/images/paypal_verified.gif\" alt=\"\" title=\"\" /><br /><?php } ?>\r\n <?php echo ucfirst($result->payer_status) ?>\r\n </td>\r\n <td><?php echo $result->item_name ?></td>\r\n <td><?php echo $result->txn_id ?></td>\r\n <td><?php echo ucfirst($result->payment_type) ?></td>\r\n <td><?php echo ucfirst($result->payment_status) ?></td>\r\n <td><?php echo $result->mc_gross ?> <?php echo $result->mc_currency ?></td>\r\n <td><?php echo mysql2date(get_option('date_format') .' '. get_option('time_format'), $result->payment_date) ?></td>\r\n <td style=\"text-align:center\">\r\n <?php\r\n echo '<a onclick=\"return confirmBeforeDelete();\" href=\"?page=transactions&amp;action=delete&amp;id='. $result->id .'\" title=\"'. __('Delete', 'appthemes') .'\"><img src=\"'. get_bloginfo('template_directory') .'/images/cross.png\" alt=\"'. __('Delete', 'appthemes') .'\" /></a>&nbsp;&nbsp;&nbsp;';\r\n if(strtolower($result->payment_status) == 'completed')\r\n echo '<br /><a href=\"?page=transactions&amp;action=unsetPaid&amp;id='. $result->id .'\" title=\"'. __('Mark as Unpaid', 'appthemes') .'\">'. __('Unmark Paid', 'appthemes') .'</a>';\r\n else\r\n echo '<br /><a href=\"?page=transactions&amp;action=setPaid&amp;id='. $result->id .'\" title=\"'. __('Mark as Paid', 'appthemes') .'\">'. __('Mark Paid', 'appthemes') .'</a>';\r\n ?>\r\n </td>\r\n </tr>\r\n\r\n <?php\r\n\r\n $i++;\r\n\r\n } // end for each\r\n ?>\r\n\r\n </tbody>\r\n\r\n <?php\r\n\r\n } else {\r\n\r\n ?>\r\n\r\n <tr>\r\n <td>&nbsp;</td><td colspan=\"9\"><?php _e('No transactions found.','appthemes') ?></td>\r\n </tr>\r\n\r\n <?php\r\n } // end $results\r\n ?>\r\n\r\n </table> <!-- this is ok -->\r\n\r\n\r\n </div><!-- end wrap -->\r\n\r\n <?php\r\n } // endswitch\r\n ?>\r\n\r\n\r\n\r\n <script type=\"text/javascript\">\r\n /* <![CDATA[ */\r\n function confirmBeforeDelete() { return confirm(\"<?php _e('WARNING: Are you sure you want to delete this transaction entry?? (This cannot be undone)', 'appthemes'); ?>\"); }\r\n /* ]]> */\r\n </script>\r\n\r\n<?php\r\n\r\n}", "public function undo_deposit( $result, $order_id ) { \n $order = new WC_Order( $order_id );\n\n update_post_meta($order->id, '_order_total', get_post_meta( $order->id, 'order_total', true ) );\n update_post_meta($order->id, '_cart_discount', 0 );\n update_post_meta($order->id, '_order_discount', 0 );\n \n $order->order_total = get_post_meta( $order->id, 'order_total', true );\n $order->cart_discount = 0;\n $order->order_discount = 0; \n \n return $result;\n }", "public function testRefundPurchase() {\n\t\t$this->key_pairs = array(\n\t\t\t'tag' => $this->process_tag,\n\t\t\t'status' => 'completed',\n\t\t);\n\t\t$this->process_transactions = CrudTable\\read_rows( 'transactions', $this->key_pairs, false );\n\n\t\tif ( ! empty( $this->process_transactions ) ) {\n\t\t\t$request = TestHelpers::refundPurchaseRequest( $this->tag, $this->process_tag );\n\t\t\t$this->transactions = TestHelpers::refundPurchase( $this->http_client, $request );\n\n\t\t\t$this->assertIsArray( $this->transactions );\n\t\t\t$this->assertArrayHasKey( '0', $this->transactions );\n\n\t\t\t$this->assertEquals( $this->transactions[0]['alias'], $this->process_transactions[0]['alias'] );\n\t\t\t$this->assertEquals( $this->transactions[0]['user'], $this->process_transactions[0]['user'] );\n\t\t\t$this->assertEquals( $this->transactions[0]['cart'], $this->process_transactions[0]['cart'] );\n\t\t\t$this->assertEquals( $this->transactions[0]['transactionid'], $this->process_transactions[0]['transactionid'] );\n\t\t\t$this->assertEquals( abs( $this->transactions[0]['saleid'] ), abs( $this->process_transactions[0]['saleid'] ) );\n\t\t\t$this->assertEquals( $this->transactions[0]['currency'], $this->process_transactions[0]['currency'] );\n\t\t\t$this->assertEquals( $this->transactions[0]['status'], $this->process_transactions[0]['status'] );\n\t\t\t$this->assertEquals( $this->transactions[0]['saleid'], $this->process_transactions[0]['saleid'] );\n\n\t\t\t$this->assertEquals( 'refund', $this->transactions[0]['type'] );\n\t\t\t$this->assertEmpty( $this->transactions[0]['tokenid'] );\n\t\t\t$this->assertNotEmpty( $this->transactions[0]['refundid'] );\n\t\t\t$this->assertEmpty( $this->transactions[0]['redirect_url'] );\n\n\t\t} else {\n\t\t\t$request = TestHelpers::createPurchaseRequest( $this->process_tag );\n\t\t\t$transactions = TestHelpers::createPurchase( $this->http_client, $request );\n\t\t\t$this->assertIsArray( $transactions );\n\t\t\t$this->assertArrayHasKey( '0', $transactions );\n\t\t\t$this->assertNotEmpty( $transactions[0]['redirect_url'] );\n\t\t\t$this->assertEquals( 'created', $transactions[0]['status'] );\n\n\t\t\techo 'For complete REFUND PURCHASE test, you must pay and restart this tests.' . PHP_EOL;\n\t\t\techo 'Link for pay - ' . $transactions[0]['redirect_url'] . PHP_EOL;\n\t\t}\n\t}", "public function deleteAction() {\n $id = $this->getRequest()->getParam('id');\n $model = Mage::getModel('inventorypurchasing/purchaseorder_draftpo')->load($id);\n $type = $model->getType();\n try {\n $model->delete();\n Mage::getSingleton('vendors/session')->addSuccess($this->helper()->__('The draft purchase order(s) has been deleted successfully.'));\n if($type == Magestore_Inventorypurchasing_Model_Purchaseorder_Draftpo::SUPPLYNEED_TYPE)\n return $this->_redirect('vendors/inventory_inventorysupplyneeds/index');\n if($type == Magestore_Inventorypurchasing_Model_Purchaseorder_Draftpo::LOWSTOCK_TYPE)\n return $this->_redirect('vendors/inventory_lowstock/index'); \n if($type == Magestore_Inventorypurchasing_Model_Purchaseorder_Draftpo::PENDINGORDER_TYPE)\n return $this->_redirect('vendors/inventory_pendingorder/index'); \n\t return $this->_redirect('vendors/inventory_lowstock/index'); \n } catch (Exception $e) {\n Mage::getSingleton('vendors/session')->addError($this->helper()->__('Unable to delete draft purchase order(s).'));\n Mage::getSingleton('vendors/session')->addError($e->getMessage());\n return $this->_redirect('*/*/viewpo', array('id' => $id));\n }\n }", "public function execute() {\n\n $id = trim((string)$this->getRequest()->getParam('transId', NULL));\n $refId = (int)trim((string)$this->getRequest()->getParam('refId', NULL));\n\n if (!$id || !$refId) {\n http_response_code(400);\n die('Invalid response');\n }\n\n $service = $this->config->getComGateService();\n try {\n $status = $service->getStatus($id);\n }\n catch(\\Exception $e) {\n $status = false;\n }\n\n if (!$status) {\n http_response_code(400);\n die('Malformed response');\n }\n\n $order_id = (int)@$status['refId'];\n $order = $this->getOrder($order_id);\n if (!$order->getId()) {\n http_response_code(400);\n\n //trigger_error('No Order [' . $order_id . ']');\n die('No Order');\n }\n\n $response = $this->createResponse();\n\n if (!in_array($order->getStatus() , array(\n \\Magento\\Sales\\Model\\Order::STATE_NEW,\n \\Magento\\Sales\\Model\\Order::STATE_HOLDED,\n \\Magento\\Sales\\Model\\Order::STATE_PENDING_PAYMENT,\n \\Magento\\Sales\\Model\\Order::STATE_PAYMENT_REVIEW\n ))) {\n\n $response->setHttpResponseCode(200);\n return $response;\n }\n\n if (!empty($status['code'])) {\n http_response_code(400);\n die('Payment error');\n }\n\n if (($status['price'] != round($order->getGrandTotal() * 100)) || ($status['curr'] != $order->getOrderCurrency()->getCurrencyCode())) {\n http_response_code(400);\n die('Payment sum or currency mismatch');\n }\n\n $invoice = $order->getInvoiceCollection()->getFirstItem();\n $payment = $order->getPayment();\n\n if (($status['status'] == 'CANCELLED') && ($order->getStatus() != \\Magento\\Sales\\Model\\Order::STATE_HOLDED)) {\n\n $payment->getMethodInstance()->cancel($payment);\n\n $order->addStatusHistoryComment('ComGate (notification): Payment failed');\n $order->save();\n }\n else if (($status['status'] == 'PAID') && ($order->getStatus() != \\Magento\\Sales\\Model\\Order::STATE_PROCESSING)) {\n \n \\ComGate\\ComGateGateway\\Api\\AgmoPaymentsHelper::updatePaymentTransaction($payment, array(\n 'id' => $id,\n 'state' => $status['status']\n ));\n\n $payment->capture();\n\n $order->addStatusHistoryComment('ComGate (notification): Payment success');\n $order->save();\n }\n else if (($status['status'] == 'AUTHORIZED') && ($order->getStatus() != \\Magento\\Sales\\Model\\Order::STATE_PAYMENT_REVIEW)) {\n\n \\ComGate\\ComGateGateway\\Api\\AgmoPaymentsHelper::updatePaymentTransaction($payment, array(\n 'id' => $id,\n 'state' => $status['status']\n ));\n\n $payment->getMethodInstance()->authorize($payment, $order->getGrandTotal());\n\n $order->addStatusHistoryComment('ComGate (notification): Payment authorized');\n $order->save();\n }\n\n $response->setHttpResponseCode(200);\n return $response;\n }", "public function beforeDeleteOrder(\\Enlight_Hook_HookArgs $arguments)\n {\n $request = $arguments->getSubject()->Request();\n $parameter = $request->getParams();\n $paymentMethods = \\Shopware_Plugins_Frontend_RpayRatePay_Bootstrap::getPaymentMethods();\n if (!in_array($parameter['payment'][0]['name'], $paymentMethods)) {\n return false;\n }\n $sql = 'SELECT COUNT(*) FROM `s_order_details` AS `detail` '\n . 'INNER JOIN `rpay_ratepay_order_positions` AS `position` '\n . 'ON `position`.`s_order_details_id` = `detail`.`id` '\n . 'WHERE `detail`.`orderID`=? AND '\n . '(`position`.`delivered` > 0 OR `position`.`cancelled` > 0 OR `position`.`returned` > 0)';\n $count = Shopware()->Db()->fetchOne($sql, [$parameter['id']]);\n if ($count > 0) {\n Logger::singleton()->warning('RatePAY-Bestellung k&ouml;nnen nicht gelöscht werden, wenn sie bereits bearbeitet worden sind.');\n $arguments->stop();\n } else {\n /** @var Order $order */\n $order = Shopware()->Models()->find('Shopware\\Models\\Order\\Order', $parameter['id']);\n\n $sqlShipping = 'SELECT invoice_shipping, invoice_shipping_net, invoice_shipping_tax_rate FROM s_order WHERE id = ?';\n $shippingCosts = Shopware()->Db()->fetchRow($sqlShipping, [$parameter['id']]);\n\n $items = [];\n $i = 0;\n /** @var Detail $item */\n foreach ($order->getDetails() as $item) {\n $items[$i]['articlename'] = $item->getArticlename();\n $items[$i]['orderDetailId'] = $item->getId();\n $items[$i]['ordernumber'] = $item->getArticlenumber();\n $items[$i]['quantity'] = $item->getQuantity();\n $items[$i]['priceNumeric'] = $item->getPrice();\n $items[$i]['tax_rate'] = $item->getTaxRate();\n $taxRate = $item->getTaxRate();\n\n // Shopware does have a bug - so the tax_rate might be the wrong value.\n // Issue: https://issues.shopware.com/issues/SW-24119\n $taxRate = $item->getTax() == null ? 0 : $taxRate; // this is a little fix\n $items[$i]['tax_rate'] = $taxRate;\n\n $i++;\n }\n $eventManager = Shopware()->Events();\n foreach($items as $index => $item) {\n $items[$index] = $eventManager->filter('RatePAY_filter_order_items', $item);\n }\n if (!empty($shippingCosts)) {\n $items['Shipping']['articlename'] = 'Shipping';\n $items['Shipping']['ordernumber'] = 'shipping';\n $items['Shipping']['quantity'] = 1;\n $items['Shipping']['priceNumeric'] = $shippingCosts['invoice_shipping'];\n\n // Shopware does have a bug - so the tax_rate might be the wrong value.\n // Issue: https://issues.shopware.com/issues/SW-24119\n // we can not simple calculate the shipping tax cause the values in the database are not properly rounded.\n // So we do not get the correct shipping tax rate if we calculate it.\n $calculatedTaxRate = Math::taxFromPrices(floatval($shippingCosts['invoice_shipping_net']), floatval($shippingCosts['invoice_shipping']));\n $shippingTaxRate = $calculatedTaxRate > 0 ? $shippingCosts['invoice_shipping_tax_rate'] : 0;\n\n $items['Shipping']['tax_rate'] = $shippingTaxRate;\n }\n\n $attributes = $order->getAttribute();\n $backend = (bool)($attributes->getRatepayBackend());\n\n $netPrices = $order->getNet() === 1;\n\n $modelFactory = new \\Shopware_Plugins_Frontend_RpayRatePay_Component_Mapper_ModelFactory(null, $backend, $netPrices, $order->getShop());\n $modelFactory->setTransactionId($parameter['transactionId']);\n $modelFactory->setTransactionId($order->getTransactionID());\n $operationData['orderId'] = $order->getId();\n $operationData['items'] = $items;\n $operationData['subtype'] = 'cancellation';\n $result = $modelFactory->callPaymentChange($operationData);\n\n if ($result !== true) {\n Logger::singleton()->warning('Bestellung k&ouml;nnte nicht gelöscht werden, da die Stornierung bei RatePAY fehlgeschlagen ist.');\n $arguments->stop();\n }\n }\n }", "function orderdown() {\n\t\t\n\t\t$this->_order(1);\n\t\t\n\t\t$this->adminLink->makeURL();\n\t\t$this->app->redirect( $this->adminLink->url );\n\t\n\t}", "public function revoke_referral_on_delete( $order ) {\n\n\t\t$order_id = $order;\n\n\t\tif( $this->is_version_3 ){\n\t\t\t$order_id = $order->ID;\n\t\t}\n\n\t\tif( ! affiliate_wp()->settings->get( 'revoke_on_refund' ) ) {\n\n\t\t\treturn;\n\n\t\t}\n\n\t\tif( 'mp_order' != get_post_type( $order_id ) ) {\n\n\t\t\treturn;\n\n\t\t}\n\n\t\t$this->reject_referral( $order_id );\n\n\t}", "public function trigger( $refund ) {\n if ( ! $this->is_enabled() ) {\n return;\n }\n\n $seller = dokan()->vendor->get( $refund->get_seller_id() );\n\n if ( ! is_a( $seller, '\\WeDevs\\Dokan\\Vendor\\Vendor' ) ) {\n return;\n }\n\n $this->object = $seller;\n $order_id = $refund->get_order_id();\n $refund_amount = $refund->get_refund_amount();\n $refund_reason = $refund->get_refund_reason();\n $status = 'canceled';\n $seller_mail = $seller->get_email();\n $order_url = esc_url(\n add_query_arg(\n array(\n 'order_id' => $order_id,\n '_view_mode' => 'email',\n 'permission' => '1',\n ), dokan_get_navigation_url( 'orders' )\n )\n );\n\n $this->placeholders = array(\n '{seller_name}' => $seller->get_name(),\n '{amount}' => wc_price( $refund_amount ),\n '{reason}' => $refund_reason,\n '{order_id}' => $order_id,\n '{status}' => $status,\n '{order_link}' => $order_url,\n '{site_name}' => $this->get_from_name(),\n '{site_url}' => site_url(),\n );\n\n $this->data = array(\n 'seller_name' => $seller->get_name(),\n 'amount' => wc_price( $refund_amount ),\n 'reason' => $refund_reason,\n 'order_id' => $order_id,\n 'status' => $status,\n 'order_link' => $order_url,\n 'site_name' => $this->get_from_name(),\n 'site_url' => site_url(),\n );\n\n $this->setup_locale();\n $this->send( $seller_mail, $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );\n $this->restore_locale();\n }", "function ProcessRefundAmountNotification($dom_response_obj) {\n /*\n * +++ CHANGE ME +++\n * Refund amount notifications inform you that a customer has been\n * refunded either the full amount or a partial amount of an order\n * total. A <refund-amount-notification> contains the order number\n * that Google assigned to the order, the value of the most recent\n * refund to the customer and the total amount that has been\n * refunded to the customer for the order. Google Checkout will send a\n * <refund-amount-notification> after refunding the customer.\n *\n * If you are implementing the Notification API, you need to\n * modify this function to relay the information in the\n * <refund-amount-notification> to your internal systems that\n * process this order data.\n */\n SendNotificationAcknowledgment();\n}", "public function refundCancel($refundHandle);", "public function refund(InfoInterface $payment, $amount)\n {\n if (!$this->canRefund()) {\n throw new LocalizedException(__('The refund action is not available.'));\n }\n\n /* Override notification, if override notification from admin setting is active (default is active) */\n if ($this->dataConfig->isOverrideNotification() && $this->dataConfig->getNotificationEndpoint() != null) {\n Config::$overrideNotifUrl = $this->dataConfig->getNotificationEndpoint();\n }\n\n $order = $payment->getOrder();\n $paymentCode = $order->getPayment()->getMethod();\n $midtransOrderId = $payment->getAdditionalInformation('midtrans_order_id');\n $orderId = $order->getIncrementId();\n\n Config::$serverKey = $this->dataConfig->getServerKey($paymentCode);\n Config::$isProduction = $this->dataConfig->isProduction();\n\n $transaction = new Transaction();\n\n if (strpos($midtransOrderId, 'multishipping-') !== false) {\n $refundKey = $midtransOrderId . '-' . time();\n } else {\n $refundKey = 'regular-' . $midtransOrderId . '-' . time();\n }\n\n $reasonRefund = \"Refund \" . (double)$amount . \", \" . $refundKey . \", from Magento dashboard order :::\" . $orderId;\n $refundParams = [\n 'refund_key' => $refundKey,\n 'amount' => $amount,\n 'reason' => $reasonRefund\n ];\n\n /*\n * Request refund to midtrans\n */\n $response = $transaction::refund($midtransOrderId, $refundParams);\n\n if (isset($response)) {\n if (isset($response->status_code)) {\n if ($response->status_code == 200) {\n $order->addStatusToHistory(Order::STATE_PROCESSING, $reasonRefund, false);\n $order->save();\n\n $payment->setTransactionId($response->refund_key);\n $payment->setParentTransactionId($response->transaction_id);\n $payment->setIsTransactionClosed(1);\n $payment->setShouldCloseParentTransaction(!$this->canRefund());\n } else {\n $this->midtransLogger->midtransRequest('RefundRequest: ' . print_r($response, true));\n $message = isset($response->status_message) ? $response->status_message : \"Something went wrong..\";\n throw new LocalizedException(__(\"Oops, Refund request failed :\" . $message));\n }\n }\n } else {\n throw new LocalizedException(__(\"Oops, Refund request failed. Due to no response received. Please try again later.\"));\n }\n }", "public function restored(Order $Order)\n {\n //code...\n }", "public function testOrderStatusTotalRefund()\n {\n /** @var \\Magento\\Sales\\Model\\Order $existingOrder */\n $existingOrder = $this->objectManager->create(\\Magento\\Sales\\Model\\Order::class)\n ->loadByIncrementId('100000001');\n\n $items = $this->getOrderItems($existingOrder);\n $result = $this->_webApiCall(\n $this->getServiceData($existingOrder),\n [\n 'orderId' => $existingOrder->getEntityId(),\n 'items' => $items,\n ]\n );\n\n $this->assertNotEmpty(\n $result,\n 'Failed asserting that the received response is correct'\n );\n\n /** @var \\Magento\\Sales\\Model\\Order $updatedOrder */\n $updatedOrder = $this->objectManager->create(\\Magento\\Sales\\Model\\Order::class)\n ->loadByIncrementId($existingOrder->getIncrementId());\n\n $this->assertSame('complete', $updatedOrder->getStatus());\n $this->assertSame('complete', $updatedOrder->getState());\n }", "function _refundItemAmount($type = '', $itemIds = array())\r\n {\r\n $ItemUserConditions = array(\r\n 'OR' => array(\r\n array(\r\n 'ItemUser.is_paid' => 1,\r\n 'ItemUser.is_repaid' => 0,\r\n 'ItemUser.is_canceled' => 0,\r\n 'ItemUser.payment_gateway_id' => ConstPaymentGateways::Wallet\r\n ) ,\r\n array(\r\n 'ItemUser.is_paid' => 0,\r\n 'ItemUser.is_repaid' => 0,\r\n 'ItemUser.is_canceled' => 0,\r\n 'ItemUser.payment_gateway_id' => array(\r\n ConstPaymentGateways::CreditCard,\r\n ConstPaymentGateways::PayPalAuth,\r\n ConstPaymentGateways::AuthorizeNet,\r\n )\r\n )\r\n )\r\n );\r\n if (!empty($itemIds)) {\r\n $conditions['Item.id'] = $itemIds;\r\n } elseif (!empty($type) && $type == 'cron') {\r\n $conditions['Item.item_status_id'] = array(\r\n ConstItemStatus::Expired,\r\n ConstItemStatus::Canceled\r\n );\r\n }\r\n $items = $this->find('all', array(\r\n 'conditions' => $conditions,\r\n 'contain' => array(\r\n 'ItemUser' => array(\r\n 'User' => array(\r\n 'fields' => array(\r\n 'User.username',\r\n 'User.email',\r\n 'User.id',\r\n 'User.cim_profile_id',\r\n ) ,\r\n 'UserProfile' => array(\r\n 'fields' => array(\r\n 'UserProfile.first_name',\r\n 'UserProfile.last_name'\r\n ) ,\r\n ) ,\r\n ) ,\r\n 'PaypalDocaptureLog' => array(\r\n 'fields' => array(\r\n 'PaypalDocaptureLog.authorizationid',\r\n 'PaypalDocaptureLog.dodirectpayment_amt',\r\n 'PaypalDocaptureLog.id',\r\n 'PaypalDocaptureLog.currencycode'\r\n )\r\n ) ,\r\n 'PaypalTransactionLog' => array(\r\n 'fields' => array(\r\n 'PaypalTransactionLog.id',\r\n 'PaypalTransactionLog.authorization_auth_exp',\r\n 'PaypalTransactionLog.authorization_auth_id',\r\n 'PaypalTransactionLog.authorization_auth_amount',\r\n 'PaypalTransactionLog.authorization_auth_status'\r\n )\r\n ) ,\r\n 'AuthorizenetDocaptureLog' => array(\r\n 'fields' => array(\r\n 'AuthorizenetDocaptureLog.id',\r\n 'AuthorizenetDocaptureLog.authorize_amt',\r\n )\r\n ) ,\r\n 'conditions' => $ItemUserConditions,\r\n ) ,\r\n 'Merchant' => array(\r\n 'fields' => array(\r\n 'Merchant.name',\r\n 'Merchant.id',\r\n 'Merchant.url',\r\n 'Merchant.zip',\r\n 'Merchant.address1',\r\n 'Merchant.address2',\r\n 'Merchant.city_id'\r\n ) ,\r\n 'City' => array(\r\n 'fields' => array(\r\n 'City.id',\r\n 'City.name',\r\n 'City.slug',\r\n )\r\n ) ,\r\n 'State' => array(\r\n 'fields' => array(\r\n 'State.id',\r\n 'State.name'\r\n )\r\n ) ,\r\n 'Country' => array(\r\n 'fields' => array(\r\n 'Country.id',\r\n 'Country.name',\r\n 'Country.slug',\r\n )\r\n )\r\n ) ,\r\n 'Attachment' => array(\r\n 'fields' => array(\r\n 'Attachment.id',\r\n 'Attachment.dir',\r\n 'Attachment.filename',\r\n 'Attachment.width',\r\n 'Attachment.height'\r\n )\r\n ) ,\r\n 'City' => array(\r\n 'fields' => array(\r\n 'City.id',\r\n 'City.name',\r\n 'City.slug',\r\n )\r\n ) ,\r\n ) ,\r\n 'recursive' => 3,\r\n ));\r\n App::import('Model', 'EmailTemplate');\r\n $this->EmailTemplate = new EmailTemplate();\r\n App::import('Core', 'ComponentCollection');\r\n $collection = new ComponentCollection();\r\n App::import('Component', 'Email');\r\n $this->Email = new EmailComponent($collection);\r\n if (!empty($items)) {\r\n $itemIds = array();\r\n App::import('Component', 'Paypal');\r\n $this->Paypal = new PaypalComponent($collection);\r\n $paymentGateways = $this->User->Transaction->PaymentGateway->find('all', array(\r\n 'conditions' => array(\r\n 'PaymentGateway.id' => array(\r\n ConstPaymentGateways::CreditCard,\r\n ConstPaymentGateways::AuthorizeNet\r\n ) ,\r\n ) ,\r\n 'contain' => array(\r\n 'PaymentGatewaySetting' => array(\r\n 'fields' => array(\r\n 'PaymentGatewaySetting.key',\r\n 'PaymentGatewaySetting.test_mode_value',\r\n 'PaymentGatewaySetting.live_mode_value',\r\n ) ,\r\n ) ,\r\n ) ,\r\n 'recursive' => 1\r\n ));\r\n foreach($paymentGateways as $paymentGateway) {\r\n if ($paymentGateway['PaymentGateway']['id'] == ConstPaymentGateways::CreditCard) {\r\n if (!empty($paymentGateway['PaymentGatewaySetting'])) {\r\n foreach($paymentGateway['PaymentGatewaySetting'] as $paymentGatewaySetting) {\r\n if ($paymentGatewaySetting['key'] == 'directpay_API_UserName') {\r\n $paypal_sender_info['API_UserName'] = $paymentGateway['PaymentGateway']['is_test_mode'] ? $paymentGatewaySetting['test_mode_value'] : $paymentGatewaySetting['live_mode_value'];\r\n }\r\n if ($paymentGatewaySetting['key'] == 'directpay_API_Password') {\r\n $paypal_sender_info['API_Password'] = $paymentGateway['PaymentGateway']['is_test_mode'] ? $paymentGatewaySetting['test_mode_value'] : $paymentGatewaySetting['live_mode_value'];\r\n }\r\n if ($paymentGatewaySetting['key'] == 'directpay_API_Signature') {\r\n $paypal_sender_info['API_Signature'] = $paymentGateway['PaymentGateway']['is_test_mode'] ? $paymentGatewaySetting['test_mode_value'] : $paymentGatewaySetting['live_mode_value'];\r\n }\r\n }\r\n $paypal_sender_info['is_testmode'] = $paymentGateway['PaymentGateway']['is_test_mode'];\r\n }\r\n }\r\n if ($paymentGateway['PaymentGateway']['id'] == ConstPaymentGateways::AuthorizeNet) {\r\n if (!empty($paymentGateway['PaymentGatewaySetting'])) {\r\n foreach($paymentGateway['PaymentGatewaySetting'] as $paymentGatewaySetting) {\r\n if ($paymentGatewaySetting['key'] == 'authorize_net_api_key') {\r\n $authorize_sender_info['api_key'] = $paymentGateway['PaymentGateway']['is_test_mode'] ? $paymentGatewaySetting['test_mode_value'] : $paymentGatewaySetting['live_mode_value'];\r\n }\r\n if ($paymentGatewaySetting['key'] == 'authorize_net_trans_key') {\r\n $authorize_sender_info['trans_key'] = $paymentGateway['PaymentGateway']['is_test_mode'] ? $paymentGatewaySetting['test_mode_value'] : $paymentGatewaySetting['live_mode_value'];\r\n }\r\n }\r\n }\r\n $authorize_sender_info['is_test_mode'] = $paymentGateway['PaymentGateway']['is_test_mode'];\r\n }\r\n }\r\n foreach($items as $item) {\r\n if (!empty($item['ItemUser'])) {\r\n $ItemUserIds = array();\r\n\t\t\t\t\t$itemUserIdData = array();\r\n\t\t\t\t\t$itemIds = array();\r\n foreach($item['ItemUser'] as $item_user) {\r\n //do void for credit card\r\n if ($item_user['payment_gateway_id'] != ConstPaymentGateways::Wallet) {\r\n if ($item_user['payment_gateway_id'] == ConstPaymentGateways::AuthorizeNet) {\r\n require_once (APP . 'vendors' . DS . 'CIM' . DS . 'AuthnetCIM.class.php');\r\n if ($authorize_sender_info['is_test_mode']) {\r\n $cim = new AuthnetCIM($authorize_sender_info['api_key'], $authorize_sender_info['trans_key'], true);\r\n } else {\r\n $cim = new AuthnetCIM($authorize_sender_info['api_key'], $authorize_sender_info['trans_key']);\r\n }\r\n $cim->setParameter('customerProfileId', $item_user['User']['cim_profile_id']);\r\n $cim->setParameter('customerPaymentProfileId', $item_user['payment_profile_id']);\r\n $cim->setParameter('transId', $item_user['cim_transaction_id']);\r\n $cim->voidCustomerProfileTransaction();\r\n // And if enbaled n Credit docapture amount and item discount amount is not equal, add amount to user wallet and update transactions //\r\n if (Configure::read('wallet.is_handle_wallet')) {\r\n if ($item_user['AuthorizenetDocaptureLog']['authorize_amt'] != $item['Item']['discount_amount']) {\r\n $update_wallet = '';\r\n $update_wallet = ($item['Item']['price']*$item_user['quantity']) -$item_user['AuthorizenetDocaptureLog']['authorize_amt'];\r\n //Updating transactions\r\n $data = array();\r\n $data['Transaction']['user_id'] = $item_user['user_id'];\r\n $data['Transaction']['foreign_id'] = ConstUserIds::Admin;\r\n $data['Transaction']['class'] = 'SecondUser';\r\n $data['Transaction']['amount'] = $update_wallet;\r\n $data['Transaction']['transaction_type_id'] = ConstTransactionTypes::AddedToWallet;\r\n $transaction_id = $this->User->Transaction->log($data);\r\n if (!empty($transaction_id)) {\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount +' . $update_wallet\r\n ) , array(\r\n 'User.id' => $item_user['user_id']\r\n ));\r\n }\r\n }\r\n } // END act like groupon wallet funct., //\r\n if ($cim->isSuccessful()) {\r\n if (!empty($itemuser['AuthorizenetDocaptureLog']['id'])) {\r\n $data_authorize_docapture_log['AuthorizenetDocaptureLog']['id'] = $itemuser['AuthorizenetDocaptureLog']['id'];\r\n $data_authorize_docapture_log['AuthorizenetDocaptureLog']['payment_status'] = 'Cancelled';\r\n $this->ItemUser->AuthorizenetDocaptureLog->save($data_authorize_docapture_log);\r\n }\r\n return true;\r\n }\r\n } else {\r\n $payment_response = array();\r\n if ($item_user['payment_gateway_id'] == ConstPaymentGateways::CreditCard) {\r\n $post_info['authorization_id'] = $item_user['PaypalDocaptureLog']['authorizationid'];\r\n } else if ($item_user['payment_gateway_id'] == ConstPaymentGateways::PayPalAuth) {\r\n $post_info['authorization_id'] = $item_user['PaypalTransactionLog']['authorization_auth_id'];\r\n }\r\n $post_info['note'] = __l('Item Payment refund');\r\n //call void function in paypal component\r\n $payment_response = $this->Paypal->doVoid($post_info, $paypal_sender_info);\r\n //update payment responses\r\n if (!empty($payment_response)) {\r\n if ($item_user['payment_gateway_id'] == ConstPaymentGateways::CreditCard) {\r\n $data_paypal_docapture_log['PaypalDocaptureLog']['id'] = $item_user['PaypalDocaptureLog']['id'];\r\n foreach($payment_response as $key => $value) {\r\n $data_paypal_docapture_log['PaypalDocaptureLog']['dovoid_' . strtolower($key) ] = $value;\r\n }\r\n $data_paypal_docapture_log['PaypalDocaptureLog']['dovoid_response'] = serialize($payment_response);\r\n $data_paypal_docapture_log['PaypalDocaptureLog']['payment_status'] = 'Cancelled';\r\n //update PaypalDocaptureLog table\r\n $this->ItemUser->PaypalDocaptureLog->save($data_paypal_docapture_log);\r\n // And if enbaled n Credit docapture amount and item discount amount is not equal, add amount to user wallet and update transactions //\r\n if (Configure::read('wallet.is_handle_wallet')) {\r\n if ($data_paypal_docapture_log['PaypalDocaptureLog']['original_amount'] != $item['Item']['discount_amount']) {\r\n $update_wallet = '';\r\n $update_wallet = ($item['Item']['price']*$item_user['quantity']) -$item_user['PaypalDocaptureLog']['dodirectpayment_amt'];\r\n //Updating transactions\r\n $data = array();\r\n $data['Transaction']['user_id'] = $item_user['user_id'];\r\n $data['Transaction']['foreign_id'] = ConstUserIds::Admin;\r\n $data['Transaction']['class'] = 'SecondUser';\r\n $data['Transaction']['amount'] = $update_wallet;\r\n $data['Transaction']['transaction_type_id'] = ConstTransactionTypes::AddedToWallet;\r\n $transaction_id = $this->User->Transaction->log($data);\r\n if (!empty($transaction_id)) {\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount +' . $update_wallet\r\n ) , array(\r\n 'User.id' => $item_user['user_id']\r\n ));\r\n }\r\n }\r\n } // END act like groupon wallet funct., //\r\n\r\n } else if ($item_user['payment_gateway_id'] == ConstPaymentGateways::PayPalAuth) {\r\n $data_paypal_capture_log['PaypalTransactionLog']['id'] = $item_user['PaypalTransactionLog']['id'];\r\n foreach($payment_response as $key => $value) {\r\n $data_paypal_capture_log['PaypalTransactionLog']['void_' . strtolower($key) ] = $value;\r\n }\r\n $data_paypal_capture_log['PaypalTransactionLog']['void_data'] = serialize($payment_response);\r\n $data_paypal_capture_log['PaypalTransactionLog']['payment_status'] = 'Cancelled';\r\n $data_paypal_capture_log['PaypalTransactionLog']['error_no'] = '0';\r\n //update PaypalTransactionLog table\r\n $this->ItemUser->PaypalTransactionLog->save($data_paypal_capture_log);\r\n // And if enabled n PayPal docapture amount and item discount amount is not equal, add amount to user wallet and update transactions //\r\n if (Configure::read('wallet.is_handle_wallet')) {\r\n if ($item_user['PaypalTransactionLog']['orginal_amount'] != $item['Item']['discount_amount']) {\r\n $update_wallet = '';\r\n $update_wallet = ($item['Item']['price']*$item_user['quantity']) -$item_user['PaypalTransactionLog']['authorization_auth_amount'];\r\n //Updating transactions\r\n $data = array();\r\n $data['Transaction']['user_id'] = $item_user['user_id'];\r\n $data['Transaction']['foreign_id'] = ConstUserIds::Admin;\r\n $data['Transaction']['class'] = 'SecondUser';\r\n $data['Transaction']['amount'] = $update_wallet;\r\n $data['Transaction']['transaction_type_id'] = ConstTransactionTypes::AddedToWallet;\r\n $transaction_id = $this->User->Transaction->log($data);\r\n if (!empty($transaction_id)) {\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount +' . $update_wallet\r\n ) , array(\r\n 'User.id' => $item_user['user_id']\r\n ));\r\n }\r\n }\r\n } // END act like groupon wallet funct., //\r\n\r\n }\r\n }\r\n }\r\n //authorization_auth_amount\r\n\r\n } else {\r\n $transaction['Transaction']['user_id'] = $item_user['user_id'];\r\n $transaction['Transaction']['foreign_id'] = $item_user['id'];\r\n $transaction['Transaction']['class'] = 'ItemUser';\r\n $transaction['Transaction']['amount'] = $item_user['discount_amount'];\r\n $transaction['Transaction']['transaction_type_id'] = (!empty($item_user['is_gift'])) ? ConstTransactionTypes::ItemGiftRefund : ConstTransactionTypes::ItemBoughtRefund;\r\n $this->ItemUser->User->Transaction->log($transaction);\r\n //update user balance\r\n $this->ItemUser->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount +' . $item_user['discount_amount'],\r\n ) , array(\r\n 'User.id' => $item_user['user_id']\r\n ));\r\n }\r\n /* sending mail to all subscribers starts here */\r\n $city = (!empty($item['Merchant']['City']['name'])) ? $item['Merchant']['City']['name'] : '';\r\n $state = (!empty($item['Merchant']['State']['name'])) ? $item['Merchant']['State']['name'] : '';\r\n $country = (!empty($item['Merchant']['Country']['name'])) ? $item['Merchant']['Country']['name'] : '';\r\n $address = (!empty($item['Merchant']['address1'])) ? $item['Merchant']['address1'] : '';\r\n $address.= (!empty($item['Merchant']['address2'])) ? ', ' . $item['Merchant']['address2'] : '';\r\n $address.= (!empty($item['Merchant']['City']['name'])) ? ', ' . $item['Merchant']['City']['name'] : '';\r\n $address.= (!empty($item['Merchant']['State']['name'])) ? ', ' . $item['Merchant']['State']['name'] : '';\r\n $address.= (!empty($item['Merchant']['Country']['name'])) ? ', ' . $item['Merchant']['Country']['name'] : '';\r\n $address.= (!empty($item['Merchant']['zip'])) ? ', ' . $item['Merchant']['zip'] : '';\r\n $language_code = $this->getUserLanguageIso($item_user['User']['id']);\r\n $template = $this->EmailTemplate->selectTemplate('Item Amount Refunded', $language_code);\r\n $emailFindReplace = array(\r\n '##SITE_URL##' => Cache::read('site_url_for_shell', 'long') ,\r\n '##USER_NAME##' => $item_user['User']['username'],\r\n '##SITE_NAME##' => Configure::read('site.name') ,\r\n '##ITEM_NAME##' => $item['Item']['name'],\r\n '##MERCHANT_NAME##' => $item['Merchant']['name'],\r\n '##MERCHANT_ADDRESS##' => $address,\r\n '##CITY_NAME##' => $item['City']['0']['name'],\r\n '##FROM_EMAIL##' => $this->changeFromEmail(($template['from'] == '##FROM_EMAIL##') ? Configure::read('EmailTemplate.from_email') : $template['from']) ,\r\n '##BUY_PRICE##' => Configure::read('site.currency') . $item['Item']['price'],\r\n '##MERCHANT_SITE##' => $item['Merchant']['url'],\r\n '##CONTACT_URL##' => Cache::read('site_url_for_shell', 'long') . preg_replace('/\\//', '', 'contactus', 1) ,\r\n '##ITEM_URL##' => Cache::read('site_url_for_shell', 'long') . preg_replace('/\\//', '', Router::url(array(\r\n 'controller' => 'items',\r\n 'action' => 'view',\r\n $item['Item']['slug'],\r\n 'admin' => false\r\n ) , false) , 1) ,\r\n '##ITEM_LINK##' => Cache::read('site_url_for_shell', 'long') . preg_replace('/\\//', '', Router::url(array(\r\n 'controller' => 'items',\r\n 'action' => 'view',\r\n $item['Item']['slug'],\r\n 'admin' => false\r\n ) , false) , 1) ,\r\n '##SITE_LOGO##' => Cache::read('site_url_for_shell', 'long') . preg_replace('/\\//', '', Router::url(array(\r\n 'controller' => 'img',\r\n 'action' => 'blue-theme',\r\n 'logo-email.png',\r\n 'admin' => false\r\n ) , false) , 1) ,\r\n );\r\n $this->Email->from = ($template['from'] == '##FROM_EMAIL##') ? Configure::read('EmailTemplate.from_email') : $template['from'];\r\n $this->Email->replyTo = ($template['reply_to'] == '##REPLY_TO_EMAIL##') ? Configure::read('EmailTemplate.reply_to_email') : $template['reply_to'];\r\n $this->Email->to = $this->formatToAddress($item_user);\r\n $this->Email->subject = strtr($template['subject'], $emailFindReplace);\r\n $this->Email->content = strtr($template['email_content'], $emailFindReplace);\r\n $this->Email->sendAs = ($template['is_html']) ? 'html' : 'text';\r\n $this->Email->send($this->Email->content);\r\n $ItemUserIds[] = $item_user['id'];\r\n\t\t\t\t\t\t$itemIds[] = $item['Item']['id'];\r\n // SubItem: Resetting the actual item array //\r\n if (!empty($temp_item)) {\r\n $item['Item'] = $temp_item;\r\n }\r\n\t\t\t\t\t\t// after save fields //\r\n\t\t\t\t\t\t$data_for_aftersave = array();\r\n\t\t\t\t\t\t$data_for_aftersave['item_id'] = $item['Item']['id'];\r\n\t\t\t\t\t\t$data_for_aftersave['item_user_id'] = $item_user['id'];\r\n\t\t\t\t\t\t$data_for_aftersave['user_id'] = $item_user['user_id'];\r\n\t\t\t\t\t\t$data_for_aftersave['merchant_id'] = $item['Merchant']['id'];\r\n\t\t\t\t\t\t$data_for_aftersave['payment_gateway_id'] = $item_user['payment_gateway_id'];\r\n\t\t\t\t\t\t$itemUserIdData[] = $data_for_aftersave;\r\n }\r\n if (!empty($ItemUserIds)) {\r\n //is_repaid field updated\r\n $this->ItemUser->updateAll(array(\r\n 'ItemUser.is_repaid' => 1,\r\n ) , array(\r\n 'ItemUser.id' => $ItemUserIds\r\n ));\r\n\t\t\t\t\t\t$this->updateAll(array(\r\n\t\t\t\t\t\t\t'Item.item_user_count' => 0,\r\n\t\t\t\t\t\t) , array(\r\n\t\t\t\t\t\t\t'Item.id' => $itemIds\r\n\t\t\t\t\t\t));\r\n\t\t\t\t\t\tforeach($itemUserIdData as $itemUserData) {\r\n\t\t\t\t\t\t\t$this->_updateAfterPurchase($itemUserData, 'cancel');\r\n\t\t\t\t\t\t}\r\n }\r\n }\r\n $refundedItemIds[] = $item['Item']['id'];\r\n }\r\n if (!empty($refundedItemIds)) {\r\n foreach($refundedItemIds as $refunded_item_id) {\r\n $data = array();\r\n $data['Item']['id'] = $refunded_item_id;\r\n $data['Item']['item_status_id'] = ConstItemStatus::Refunded; // Already updated in model itself, calling it again for affiliate behaviour\r\n $this->save($data);\r\n }\r\n }\r\n }\r\n }", "public function void_order_refunds( $order_id ) {\n\n\t\t$order = wc_get_order( $order_id );\n\n\t\tif ( ! $order ) {\n\t\t\treturn;\n\t\t}\n\n\t\t/**\n\t\t * Filter whether refunds should be voided along with their parent order.\n\t\t *\n\t\t * @since 1.0.0\n\t\t * @param bool $void_refunds\n\t\t */\n\t\tif ( ! apply_filters( 'wc_avatax_void_order_refunds', true ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t/**\n\t\t * Fire before voiding order refunds.\n\t\t *\n\t\t * @since 1.0.0\n\t\t * @param int $order_id The order ID\n\t\t */\n\t\tdo_action( 'wc_avatax_before_order_refunds_voided', $order_id );\n\n\t\t$refunds = $order->get_refunds();\n\t\t$failed_refunds = array();\n\n\t\tforeach ( $refunds as $refund ) {\n\n\t\t\ttry {\n\n\t\t\t\t$response = wc_avatax()->get_api()->void_refund( $refund );\n\n\t\t\t\t$this->add_status( $refund, 'voided' );\n\n\t\t\t\t$void_data = $response->get_void_data();\n\n\t\t\t\t// Set a couple of reference meta values in case we need them in the future\n\t\t\t\tupdate_post_meta( SV_WC_Order_Compatibility::get_prop( $refund, 'id' ), '_wc_avatax_transaction_id', $void_data['transaction_id'] );\n\t\t\t\tupdate_post_meta( SV_WC_Order_Compatibility::get_prop( $refund, 'id' ), '_wc_avatax_doc_id', $void_data['document_id'] );\n\n\t\t\t\t$order->add_order_note( sprintf( __( 'Refund #%s voided in Avalara', 'woocommerce-avatax' ), SV_WC_Order_Compatibility::get_prop( $refund, 'id' ) ) );\n\n\t\t\t} catch ( SV_WC_API_Exception $e ) {\n\n\t\t\t\tif ( wc_avatax()->logging_enabled() ) {\n\t\t\t\t\twc_avatax()->log( $e->getMessage() );\n\t\t\t\t}\n\n\t\t\t\t$this->add_status( $refund, 'error' );\n\n\t\t\t\t$failed_refunds[] = SV_WC_Order_Compatibility::get_prop( $refund, 'id' );\n\t\t\t}\n\t\t}\n\n\t\t// If something went wrong, leave an order note\n\t\tif ( ! empty( $failed_refunds ) ) {\n\n\t\t\t// Generalize the note if all refunds failed\n\t\t\tif ( count( $refunds ) === count( $failed_refunds ) ) {\n\n\t\t\t\t$error = __( 'Refunds could not be voided. Please void manually from your Avalara Control Panel.', 'woocommerce-avatax' );\n\n\t\t\t// Otherwise, list the refund IDs\n\t\t\t} else {\n\n\t\t\t\t$refund_ids = implode( ', #', $failed_refunds );\n\n\t\t\t\t$error = sprintf( __( 'Some refunds could not be voided. Please void refund %s manually from your Avalara Control Panel.', 'woocommerce-avatax' ),\n\t\t\t\t\t'#' . $refund_ids\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t$order->add_order_note( $this->error_prefix . ' ' . $error );\n\t\t}\n\n\t\t/**\n\t\t * Fire after voiding order refunds.\n\t\t *\n\t\t * @since 1.0.0\n\t\t * @param int $order_id The order ID\n\t\t */\n\t\tdo_action( 'wc_avatax_after_order_refunds_voided', $order_id );\n\t}", "public function testSettlement()\n {\n print \"testRefund()\\n\";\n\n // TODO: Impl\n\n $this->fail();\n }", "function referalRefunding($item_id = null)\r\n {\r\n App::import('Model', 'ItemUser');\r\n $this->ItemUser = new ItemUser();\r\n $item_users = $this->ItemUser->find('all', array(\r\n 'conditions' => array(\r\n 'Item.id' => $item_id,\r\n 'Item.item_status_id' => ConstItemStatus::Tipped,\r\n 'ItemUser.referred_by_user_id !=' => '0'\r\n ) ,\r\n 'fields' => array(\r\n 'ItemUser.referred_by_user_id',\r\n 'ItemUser.item_id',\r\n 'ItemUser.user_id',\r\n 'SUM(ItemUser.quantity) as referred_user_total_purchased_quantity',\r\n ) ,\r\n 'group' => array(\r\n 'ItemUser.referred_by_user_id'\r\n ) ,\r\n 'contain' => array(\r\n 'Item' => array(\r\n 'fields' => array(\r\n 'Item.id',\r\n 'Item.price',\r\n )\r\n ) ,\r\n ) ,\r\n 'recursive' => 1\r\n ));\r\n foreach($item_users as $item_user) {\r\n if ($item_user[0]['referred_user_total_purchased_quantity'] >= Configure::read('referral.no_of_refer_to_get_a_refund')) { // If creteria matches for refund\r\n $check_refer = $this->ItemReferrer->find('first', array(\r\n 'conditions' => array(\r\n 'ItemReferrer.user_id' => $item_user['ItemUser']['referred_by_user_id'],\r\n 'ItemReferrer.item_id' => $item_user['ItemUser']['item_id'],\r\n ) ,\r\n 'recursive' => -1\r\n ));\r\n $refer_data = $this->ItemUser->find('first', array(\r\n 'conditions' => array(\r\n 'ItemUser.user_id' => $item_user['ItemUser']['referred_by_user_id'],\r\n 'ItemUser.item_id' => $item_user['ItemUser']['item_id'],\r\n ) ,\r\n 'recursive' => -1\r\n ));\r\n if (empty($check_refer)) { // If empty, refer amount\r\n // Add amount to referral user amount //\r\n if (Configure::read('referral.refund_type') == ConstReferralRefundType::RefundItemAmount) {\r\n $refund_amount = $refer_data['ItemUser']['discount_amount']/$refer_data['ItemUser']['quantity'];\r\n } else {\r\n $refund_amount = Configure::read('referral.refund_amount');\r\n }\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount + ' . $refund_amount,\r\n\t\t\t\t\t\t'User.total_referral_earned_amount' => 'User.total_referral_earned_amount + ' . $refund_amount,\r\n ) , array(\r\n 'User.id' => $item_user['ItemUser']['referred_by_user_id']\r\n ));\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount + ' . $refund_amount,\r\n\t\t\t\t\t\t'User.total_referral_earned_amount' => 'User.total_referral_earned_amount + ' . $refund_amount,\r\n ) , array(\r\n 'User.id' => $item_user['ItemUser']['user_id']\r\n ));\r\n\t\t\t\t\t$this->User->ItemUser->updateAll(array(\r\n\t\t\t\t\t\t'ItemUser.referral_commission_amount ' => $refund_amount,\r\n\t\t\t\t\t\t'ItemUser.is_referral_commission_sent ' => 1,\r\n\t\t\t\t\t\t'ItemUser.referral_commission_type ' => ConstReferralCommissionType::XRefer\r\n\t\t\t\t\t) , array(\r\n\t\t\t\t\t\t'ItemUser.id' => $item_user['ItemUser']['user_id']\r\n\t\t\t\t\t));\r\n $data = array();\r\n $data['Transaction']['user_id'] = $item_user['ItemUser']['referred_by_user_id'];\r\n $data['Transaction']['foreign_id'] = ConstUserIds::Admin;\r\n $data['Transaction']['class'] = 'SecondUser';\r\n $data['Transaction']['amount'] = $refund_amount;\r\n $data['Transaction']['transaction_type_id'] = ConstTransactionTypes::ReferralAddedToWallet;\r\n $this->User->Transaction->save($data);\r\n // Insert Record into ItemReferrrer //\r\n $referrer = array();\r\n $referrer['ItemReferrer']['user_id'] = $item_user['ItemUser']['referred_by_user_id'];\r\n $referrer['ItemReferrer']['item_id'] = $item_user['Item']['id'];\r\n $referrer['ItemReferrer']['earned_amount'] = $refund_amount;\r\n $referrer['ItemReferrer']['refferral_count'] = Configure::read('referral.no_of_refer_to_get_a_refund');\r\n $this->ItemReferrer->save($referrer);\r\n } else {\r\n $this->ItemReferrer->updateAll(array(\r\n 'ItemReferrer.total_purchased_referral_count' => 'ItemReferrer.total_purchased_referral_count + ' . 1,\r\n ) , array(\r\n 'ItemReferrer.item_id' => $item_user['Item']['id'],\r\n 'ItemReferrer.id' => $check_refer['ItemReferrer']['id']\r\n ));\r\n }\r\n }\r\n }\r\n }", "public function resetordersAction()\n {\n $params = $this->getRequest()->getParams();\n if ($params['from'] && $params['to']) {\n if (!$this->validateDateRange($params['from'], $params['to'])) {\n return $this->_redirectReferer();\n }\n\n $num = Mage::getResourceModel('ddg_automation/order')\n ->resetOrders($params['from'], $params['to']);\n } else {\n $num = Mage::getResourceModel('ddg_automation/order')\n ->resetOrders();\n }\n\n $message = '-- Reset Orders for Reimport : ' . $num;\n Mage::helper('ddg')->log($message);\n if (!$num)\n $message = 'Done.';\n Mage::getSingleton('adminhtml/session')->addSuccess($message);\n\n return $this->_redirectReferer();\n }", "public function refundMkpProducts($observer)\n {\n $debug = debug_backtrace(false);\n foreach ($debug as &$data) {\n unset($data['object']);\n unset($data['args']);\n }\n\n $body = $observer->getEvent()->getBody();\n $data = json_decode($body, true);\n\n if (json_last_error() != JSON_ERROR_NONE) {\n // Data sent in XML\n $xml = new SimpleXMLElement($body, LIBXML_NOCDATA);\n $json = json_encode($xml);\n $data = json_decode($json, true);\n }\n\n foreach ($data as $orders) {\n if (array_key_exists('amount', $orders)) {\n // Miss a level when data sent in XML\n $orders = array($orders);\n }\n\n foreach ($orders as $orderData) {\n $order = Mage::getModel('sales/order')->load($orderData['order_commercial_id'], 'increment_id');\n if ($order->getId()) {\n $amount = 0;\n foreach ($orderData['order_lines'] as $orderLines) {\n foreach ($orderLines as $line) {\n foreach ($line['refunds'] as $refunds) {\n foreach ($refunds as $refund) {\n $amount += $refund['amount'];\n }\n }\n }\n }\n \n try {\n $payment = $order->getPayment();\n $methodInstance = $payment->getMethodInstance();\n $res = $methodInstance->refundMkpProducts($payment, $amount, $orderData['order_id']);\n } catch (Exception $e) {\n Mage::logException($e);\n }\n\n $status = (isset($res) && $res->getResponseIsSuccess()) ? 'OK' : 'REFUSED';\n\n Mage::dispatchEvent('mirakl_trigger_order_refund', array(\n 'order_id' => $order->getId(),\n 'remote_id' => $orderData['order_id'],\n 'status' => $status\n ));\n }\n }\n }\n\n return $this;\n }", "public function get_company_refundpayment() {\n $invoice_id = $this->input->post('invoice');\n $company_id = $this->input->post('company');\n $company_received = $this->classtraineemodel->company_payment_recd($invoice_id);\n $user_paid = array();\n foreach ($company_received as $k => $v) {\n $user_paid[$v->user_id] = $v->amount_recd;\n }\n $company_received = $this->classtraineemodel->company_payment_refund($invoice_id);\n $user_refund = array();\n foreach ($company_received as $k => $v) {\n $user_refund[$v->user_id] = $v->refund_amount;\n }\n $company_invoice = $this->classtraineemodel->company_invoice($invoice_id);\n $company_invoice->invoice_excess_amt = (empty($company_invoice->invoice_excess_amt)) ? 0 : $company_invoice->invoice_excess_amt;\n $excess_paid = $company_invoice->invoice_excess_amt;\n $excess_refunded = empty($user_refund[0]) ? 0 : $user_refund[0];\n $excess_remain = round($excess_paid, 2) - round($excess_refunded, 2);\n $company_invoice->excess_refunded = round($excess_refunded, 2);\n $company_invoice->excess_remain = round($excess_remain, 2);\n\n $company_invoice->invoiced_on = ($company_invoice->invoiced_on == NULL || $company_invoice->invoiced_on == '0000-00-00 00:00:00') ? '' : date('d-m-Y', strtotime($company_invoice->invoiced_on));\n $company_invoice->discount_label = rtrim($this->course->get_metadata_on_parameter_id($company_invoice->discount_type), ', ');\n $gst_label = ($company_invoice->total_gst > 0) ? 'GST ON, ' : 'GST OFF ';\n if ($company_invoice->total_gst > 0) {\n $gst_label .= rtrim($this->course->get_metadata_on_parameter_id($company_invoice->gst_rule), ', ');\n }\n $company_invoice->gst_label = $gst_label;\n $company_invoice->trainees = $this->classtraineemodel->get_company_trainees_by_payid1($company_invoice->pymnt_due_id);\n foreach ($company_invoice->trainees as $k => $row) {\n $company_invoice->trainees[$k]->subsidy_recd_date = (($row->subsidy_recd_date == '0000-00-00') || ($row->subsidy_recd_date == null)) ? '' : date('d-m-Y', strtotime($row->subsidy_recd_date));\n $amount_paid = empty($user_paid[$row->user_id]) ? 0 : $user_paid[$row->user_id];\n $amount_refund = empty($user_refund[$row->user_id]) ? 0 : $user_refund[$row->user_id];\n $company_invoice->trainees[$k]->amount_paid = round($amount_paid, 2);\n $company_invoice->trainees[$k]->amount_refund = round($amount_refund, 2);\n $company_invoice->trainees[$k]->amount_remain = round(($amount_paid - $amount_refund), 2);\n }\n $company_invoice->subsidy_type = $this->classtraineemodel->get_subsidy_type($this->tenant_id);\n \n echo json_encode($company_invoice);\n exit();\n }", "public function postChangeStatus(Request $request) {\n $input = $request->all();\n $order = new Order();\n if ($input['order-status'] == 'refund') {\n if ($input['charge_id'] != '') {\n $refund = $order->createRefund($input);\n } else {\n $refund = 'cashondelivary_' . $input['order_id'];\n }\n }\n if ($refund != '') {\n Order::where('id', $input['order_id'])->update(['refund' => $refund]);\n $this->readdItems($input);\n } else {\n flash('There is somthing wrong in refund process');\n return redirect('dashboard/admin/order/' . $input['order_id'] . '');\n }\n\n Order::where('id', $input['order_id'])->update(['status' => $input['order-status']]);\n if ($input['order-status'] == 'cancel') {\n $this->readdItems($input);\n }\n flash('Status update sucessfully');\n return redirect('dashboard/admin/order/' . $input['order_id'] . '');\n }", "public function refund(Varien_Object $payment, $amount)\n\t{\n\t\t$order = $payment->getOrder();\n\t\t$this->setStore($order->getStore()->getStoreId());\n\n\t\tif(!$this->helper->isKcoOrder($order))\n\t\t\treturn $this;\n\n\t\t$creditmemo = $payment->getCreditmemo();\n\t\t$invoice = $creditmemo->getInvoice();\n\t\t$klarnaInvoice = $invoice->getTransactionId();\n\n\t\t$products = array();\n\t\t$result = array();\n\t\t$totalRefund = false;\n\n\t\tif (abs($invoice->getGrandTotal() - $creditmemo->getGrandTotal()) < .0001)\n\t\t\t$totalRefund = true;\n\n\t\tforeach ($creditmemo->getAllItems() as $item){\n\t\t\t$invoiceItem = Mage::getResourceModel('sales/order_invoice_item_collection')\n\t\t\t\t->addAttributeToSelect('*')\n\t\t\t\t->setInvoiceFilter($invoice->getId())\n\t\t\t\t->addFieldToFilter('order_item_id', $item->getOrderItemId())\n\t\t\t\t->getFirstItem();\n\n\t\t\t$diff = $item->getQty() - $invoiceItem->getQty();\n\n\t\t\tif($diff > 0)\n\t\t\t\t$totalRefund = false;\n\n\t\t\tif($item->getQty() > 0 && !$item->getOrderItem()->isDummy())\n\t\t\t\t$products[$item->getSku()] = $item->getQty();\n\t\t}\n\n\t\tif($totalRefund){\n\t\t\t$result[] = $this->creditInvoice($klarnaInvoice)\n\t\t\t\t? \"Refunded Klarna invoice \" . $klarnaInvoice\n\t\t\t\t: \"Failed to refund Klarna invoice \" . $klarnaInvoice;\n\t\t}\n\t\telse{\n\t\t\t$fee = null;\n\t\t\tif($creditmemo->getAdjustment() < 0)\n\t\t\t\t$fee = abs($creditmemo->getAdjustment());\n\n\t\t\tif(!empty($products) || $creditmemo->getShippingAmount() > 0){\n\t\t\t\tif (abs($invoice->getShippingAmount() - $creditmemo->getShippingAmount()) < .0001)\n\t\t\t\t\t$products['shipping_fee'] = 1;\n\n\t\t\t\tif($fee != null){\n\t\t\t\t\t$response = $this->creditPart($klarnaInvoice, $products, $fee, $this->getConfig()->getReturnTaxRate());\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$response = $this->creditPart($klarnaInvoice, $products);\n\t\t\t\t}\n\n\t\t\t\tif($response){\n\t\t\t\t\t$t = \"Credited products: \";\n\t\t\t\t\tforeach($products as $key => $p){\n\t\t\t\t\t\t$t .= $key.\"(\".$p.\") \";\n\t\t\t\t\t}\n\t\t\t\t\t$result[] = $t;\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$result[] = \"Failed to do partial refund\";\n\t\t\t\t}\n\n\t\t\t\tif($creditmemo->getShippingAmount() > 0 && !array_key_exists('shipping_fee', $products)){\n\t\t\t\t\t$result[] = $this->returnAmount($klarnaInvoice, $creditmemo->getShippingAmount(), Mage::helper('klarnaCheckout')->getShippingVatRate())\n\t\t\t\t\t\t? \"Refunded amount of \" . $creditmemo->getShippingAmount() . \" from shipment on Klarna invoice \" . $klarnaInvoice\n\t\t\t\t\t\t: \"Failed to refund amount of \" . $creditmemo->getShippingAmount() . \" from shipment on Klarna invoice \" . $klarnaInvoice;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif($creditmemo->getAdjustment() > 0){\n\t\t\t\t$result[] = $this->returnAmount($klarnaInvoice, $creditmemo->getAdjustment(), $this->getConfig()->getReturnTaxRate())\n\t\t\t\t\t? \"Refunded amount of \" . $creditmemo->getAdjustment() . \" on Klarna invoice \" . $klarnaInvoice\n\t\t\t\t\t: \"Failed to refund amount of \" . $creditmemo->getAdjustment() . \" on Klarna invoice \" . $klarnaInvoice;\n\t\t\t}\n\t\t}\n\n\t\tif(!empty($result)) {\n\t\t\tforeach($result as $msg){\n\t\t\t\t$order->addStatusHistoryComment($msg);\n\t\t\t}\n\t\t\t$order->save();\n\t\t}\n\n\t\treturn $this;\n\t}", "public function getRestore($id) {\n $order = Order::onlyTrashed()->where('id', $id);\n $order->restore();\n flash('Order restore sucessfully!');\n return redirect('dashboard/admin/order');\n }", "public function afterApplyRefundActions(Order $order, array $parsedData, array $applyData);", "function action_woocommerce_send_sms_order_cancelled($order_id) {\n # code... \n}", "public function voidAction()\n {\n $model = Mage::getSingleton('paymentsensegateway/direct');\n $parameters = $this->getRequest()->getParams();\n $szOrderID = $parameters['OrderID'];\n $szCrossReference = $parameters['CrossReference'];\n \n $order = Mage::getModel('sales/order')->loadByIncrementId((int)$szOrderID);\n $payment = $order->getPayment();\n \n $result = Mage::getModel('paymentsensegateway/direct')->pysVoid($payment);\n \n if($result == \"0\")\n {\n $model->addOrderedItemsToStock($order);\n }\n \n return $this->getResponse()->setBody($result);\n }", "function spgateway_credit_refund($params) {\n\n $amount = $params['amount']; # Format: ##.##\n $TotalAmount = round($amount);\n $transid = $params['transid'];\n\n # 是否為測試模式\n $posturl = ($params['testMode']==\"on\") ? 'https://ccore.spgateway.com/MPG/mpg_gateway'\n : 'https://core.spgateway.com/MPG/mpg_gateway' ;\n\n // post data\n $PostData = http_build_query(\n array( 'RespondType' => 'String',\n 'Version' => '1.0',\n 'Amt' => $TotalAmount,\n 'TradeNo' => $transid,\n 'TimeStamp' => time(),\n 'IndexType' => '2',\n 'CloseType' => '2'\n ));\n $PostData = trim(\n bin2hex(\n mcrypt_encrypt( MCRYPT_RIJNDAEL_128,\n $params['HashKey'],\n spgateway_credit_addpadding($PostData),\n MCRYPT_MODE_CBC,\n $params['HashIV'])\n )\n );\n\n // post\n $post = array( 'MerchantID_' => $params['MerchantID'],\n 'PostData_' => $PostData);\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $posturl);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);\n curl_setopt($ch, CURLOPT_POST, 1);\n curl_setopt($ch, CURLOPT_POSTFIELDS, $post);\n if ($params['testMode']=='on') curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); // On dev server only!\n $result = curl_exec($ch);\n curl_close($ch);\n\n parse_str(trim($result),$result);\n\n switch($result['Status']){\n case 'SUCCESS':\n case 'TRA10045':\n return array('status'=>'success', 'rawdata'=>$result, 'transid'=>$result['TradeNo'], 'fees'=>0);\n case 'TRA10058':\n case 'TRA10675':\n case 'TRA10013':\n case 'TRA10035':\n return array('status'=>'declined', 'rawdata'=>$result);\n default:\n return array('status'=>'error', 'rawdata'=>$result);\n }\n}", "static function insertRefundRecord($reservationId, $bookingRef, $firstName, $lastName, $email, $amount, $description, $txnId, $vendorTxCode, $gateway) {\n global $wpdb;\n if (false === $wpdb->insert(\"wp_tx_refund\", array(\n 'reservation_id' => $reservationId,\n 'booking_reference' => $bookingRef,\n 'email' => $email,\n 'first_name' => $firstName,\n 'last_name' => $lastName,\n 'amount' => $amount,\n 'description' => $description,\n 'last_updated_date' => current_time('mysql')),\n array( '%d', '%s', '%s', '%s', '%s', '%f', '%s', '%s'))) {\n error_log($wpdb->last_error . \" executing sql: \" . $wpdb->last_query);\n throw new DatabaseException($wpdb->last_error);\n }\n \n $refId = $wpdb->insert_id;\n\t if ( $gateway == \"Sagepay\" ) {\n if (false === $wpdb->insert(\"wp_sagepay_tx_refund\",\n array('id' => $refId,\n 'auth_vendor_tx_code' => $vendorTxCode,\n 'last_updated_date' => current_time('mysql')),\n array('%d', '%s', '%s'))) {\n error_log($wpdb->last_error . \" executing sql: \" . $wpdb->last_query);\n throw new DatabaseException($wpdb->last_error);\n }\n }\n\t else if ( false === empty( $txnId ) ) {\n if (false === $wpdb->insert(\"wp_stripe_tx_refund\",\n array('id' => $refId, 'cloudbeds_tx_id' => $txnId, 'last_updated_date' => current_time('mysql')),\n array('%d', '%s', '%s'))) {\n error_log($wpdb->last_error . \" executing sql: \" . $wpdb->last_query);\n throw new DatabaseException($wpdb->last_error);\n }\n }\n else {\n throw new DatabaseException(\"Either txnId or vendorTxnCode must be provided.\");\n }\n }", "public function reauthorizeOrder($url, $orderUUID, $amount);", "public function orderdetailsAction(){\n\t\ttry{\n\t\t\t$sm = $this->getServiceLocator();\n\t\t\t$authService = $sm->get('AuthService');\n\t\t\t$identity = $authService->getIdentity();\n\t\t\t$canDelete = $sm->get('ControllerPluginManager')->get('AuthPlugin')->checkResource($authService, 'Order\\Controller\\Index::deleteorder');\n\t\t\t\n\t\t\t$config = $sm->get('Config');\n\t\t\t\n\t\t\t$id = $this->params('id');\n\t\t\t\n\t\t\t$order_id = \\De\\Service\\CommonService::generateStockCode($id, 'order');\n\t\t\t\n\t\t\t$newJobForm = $sm->get('Order\\Form\\JobForm');\n\t\t\t$newJobForm->get('order_id')->setValue($id);\n\t\t\t\n\t\t\t/* TODO: read this from a variable or something */\n\t\t\t$defaultOwnerId = 25;\n\t\t\t$newJobForm->get('owner_id')->setValue($defaultOwnerId);\n\t\t\t\t\t\t\n\t\t\t$orderTable = $sm->get('Order\\Model\\OrderTable');\n\t\t\t$order = (array)$orderTable->fetchOrderDetails($id);\n\t\t\t$order['orderAttachments'] = $orderTable->fetchOrderAttachments($id);\n\t\t\t\n\t\t\t$order['exp_delivery_date'] = (isset($order['exp_delivery_date']) && !empty($order['exp_delivery_date'])) ? date($config['phpDateFormat'], strtotime($order['exp_delivery_date'])) : null;\n\t\t\t$order['created_date'] = (isset($order['created_date']) && !empty($order['created_date'])) ? date($config['phpDateFormat'], strtotime($order['created_date'])) : null;\n\t\t\t\n\t\t\t$objInvoice = $sm->get('Invoice\\Model\\InvoiceTable');\n\t\t\t$invoiceItems = $objInvoice->fetchInvoiceItems($order['invoice_number']);\n\t\t\t\n\t\t\t// Delete Invoice - starts\n\t\t\tif(!empty($order['invoice_number'])){\n\t\t\t\t$xero = new \\Invoice\\Model\\Xero($sm);\n\t\t\t\t$invoice = $xero->getInvoiceById($order['invoice_number']);\n\t\t\t\t\n\t\t\t\tif($invoice->Invoices->Invoice->Status == 'DELETED'){\n\t\t\t\t\t$objInvoice = $sm->get('Invoice\\Model\\InvoiceTable');\n\t\t\t\t\t$objInvoice->detachOrderInvoice($order['invoice_number']);\n\t\t\t\t\t$order['invoice_number'] = null;\n\t\t\t\t}\n\t\t\t}\t\t\t\n\t\t\t// Delete Invoice - ends\n\t\t\t\n\t\t\t$partnerData = array('fullname' => $order['partner_name'], 'email' => $order['part_email'], 'mobile' => $order['part_mobile']);\n\t\t\t\n\t\t\t$userTable = $sm->get('Customer\\Model\\UsersTable');\n\t\t\t$ownerOptions = $userTable->fetchUsersForTasks();\n\t\t\t\n\t\t\treturn array('recordsPerPage' => $config['recordsPerPage'], 'newJobForm' => $newJobForm, 'identity' => $identity,\n\t\t\t\t\t\t 'order_id' => $order_id, 'order' => $order, 'invoice_items' => $invoiceItems, 'partnerData' => $partnerData,\n\t\t\t\t\t\t 'config' => $config, 'ownerOptions' => $ownerOptions,\n\t\t\t\t\t\t 'canDelete' => $canDelete\n\t\t\t);\n\t\t}catch(Exception $e){\n\t\t\t\\De\\Log::logApplicationInfo ( \"Caught Exception: \" . $e->getMessage () . ' -- File: ' . __FILE__ . ' Line: ' . __LINE__ );\n\t\t}\n\t}", "protected function refundOrCancel(array $meta, $type)\n {\n $this->order = (object) [\n 'id' => $meta['order_id'],\n 'amount' => isset($meta['amount']) ? $meta['amount'] : null,\n ];\n\n $security_data = $this->makeSecurityData(true);\n $hash_data = $this->makeHashData($security_data);\n\n $currency = (int) $this->currencies[$meta['currency']];\n\n $nodes = [\n 'GVPSRequest' => [\n 'Mode' => $this->mode,\n 'Version' => $this->version,\n 'ChannelCode' => '',\n 'Terminal' => [\n 'ProvUserID' => $this->account->refund_username,\n 'UserID' => $this->account->refund_username,\n 'HashData' => $hash_data,\n 'ID' => $this->account->terminal_id,\n 'MerchantID' => $this->account->client_id,\n ],\n 'Customer' => [\n 'IPAddress' => isset($meta['ip']) ? $meta['ip'] : null,\n 'EmailAddress' => isset($meta['email']) ? $meta['email'] : null,\n ],\n 'Order' => [\n 'OrderID' => $this->order->id,\n 'GroupID' => '',\n ],\n 'Transaction' => [\n 'Type' => $type,\n 'InstallmentCnt' => '',\n 'Amount' => $this->amountFormat($this->order->amount),\n 'CurrencyCode' => $currency,\n 'CardholderPresentCode' => '0',\n 'MotoInd' => 'N',\n 'OriginalRetrefNum' => $meta['ref_ret_num'],\n ],\n ]\n ];\n\n $xml = $this->createXML($nodes);\n $this->send($xml);\n\n $status = 'declined';\n if ($this->getProcReturnCode() == '00') {\n $status = 'approved';\n }\n\n $this->response = (object) [\n 'id' => isset($this->data->Transaction->AuthCode) ? $this->printData($this->data->Transaction->AuthCode) : null,\n 'order_id' => isset($this->data->Order->OrderID) ? $this->printData($this->data->Order->OrderID) : null,\n 'group_id' => isset($this->data->Order->GroupID) ? $this->printData($this->data->Order->GroupID) : null,\n 'trans_id' => isset($this->data->Transaction->AuthCode) ? $this->printData($this->data->Transaction->AuthCode) : null,\n 'response' => isset($this->data->Transaction->Response->Message) ? $this->printData($this->data->Transaction->Response->Message) : null,\n 'auth_code' => isset($this->data->Transaction->AuthCode) ? $this->data->Transaction->AuthCode : null,\n 'host_ref_num' => isset($this->data->Transaction->RetrefNum) ? $this->printData($this->data->Transaction->RetrefNum) : null,\n 'ret_ref_num' => isset($this->data->Transaction->RetrefNum) ? $this->printData($this->data->Transaction->RetrefNum) : null,\n 'hash_data' => isset($this->data->Transaction->HashData) ? $this->printData($this->data->Transaction->HashData) : null,\n 'proc_return_code' => $this->getProcReturnCode(),\n 'code' => $this->getProcReturnCode(),\n 'error_code' => isset($this->data->Transaction->Response->Code) ? $this->printData($this->data->Transaction->Response->Code) : null,\n 'error_message' => isset($this->data->Transaction->Response->ErrorMsg) ? $this->printData($this->data->Transaction->Response->ErrorMsg) : null,\n 'status' => $status,\n 'status_detail' => $this->getStatusDetail(),\n 'all' => $this->data,\n ];\n\n return $this;\n }", "public function Refund($Payload){\n\t\t\tif(empty($Payload['Body'])){\n\t\t\t\tthrow new Exception('body can not be empty.');\n\t\t\t}\n\t\t\t$Payload['Verb']='POST';\n\t\t\t$Payload['URL']='/V1/creditmemo/refund';\n\t\t\t$Payload['Body']=json_encode($Payload['Body']);\n\t\t\treturn $this->Execute($Payload);\n\t\t}", "public function refund($transactionId, $orderId, $description, array $options = array())\n {\n $params = $options;\n\n $params['IDENTIFIER'] = $this->identifier;\n $params['OPERATIONTYPE'] = 'refund';\n $params['DESCRIPTION'] = $description;\n $params['TRANSACTIONID'] = $transactionId;\n $params['VERSION'] = self::API_VERSION;\n $params['ORDERID'] = $orderId;\n\n $params['HASH'] = $this->hash($params);\n\n return $this->requests($this->getDirectLinkUrls(), $params);\n }", "public function refund(\n \\TPkgShopPaymentTransactionManager $transactionManager,\n \\TdbShopOrder $order,\n $value,\n $invoiceNumber = null,\n $sellerRefundNote = null,\n array $orderItemList = null\n );", "protected function _processTransactionPaymentRefunded($parameters) {\n\t\t\t$invoices = $invoiceData = $invoiceDeductions = $orderMergeData = $processedInvoiceIds = $pendingInvoiceOrders = $transactionData = $unpaidInvoiceIds = $userData = array();\n\n\t\t\tif (\n\t\t\t\t!empty($parameters['invoice_id']) &&\n\t\t\t\t!empty($parameters['user'])\n\t\t\t) {\n\t\t\t\t$invoice = $this->_call('invoices', array(\n\t\t\t\t\t'methodName' => 'invoice',\n\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t'invoices',\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t\t\t'id' => $parameters['invoice_id']\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t\t));\n\n\t\t\t\tif (!empty($invoice['data'])) {\n\t\t\t\t\t$invoiceDeductions = $this->_call('invoices', array(\n\t\t\t\t\t\t'methodName' => 'calculateDeductionsFromInvoice',\n\t\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t\t$invoice['data']['invoice'],\n\t\t\t\t\t\t\t$parameters['payment_amount']\n\t\t\t\t\t\t)\n\t\t\t\t\t));\n\t\t\t\t\t$amountToDeductFromBalance = min(0, $invoiceDeductions['remainder']);\n\n\t\t\t\t\tforeach ($invoiceDeductions as $key => $invoiceDeduction) {\n\t\t\t\t\t\t$processedInvoiceIds[] = $invoiceDeduction['id'];\n\t\t\t\t\t}\n\n\t\t\t\t\tif ($amountToDeductFromBalance < 0) {\n\t\t\t\t\t\t$invoiceDeductions['balance'] = array(\n\t\t\t\t\t\t\t'amount_deducted' => ($amountDeductedFromBalance = round(max(($parameters['user']['balance'] * -1), $amountToDeductFromBalance) * 100) / 100),\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$invoiceDeductions['remainder'] = $amountToDeductFromBalance - $amountDeductedFromBalance;\n\t\t\t\t\t\t$userData = array(\n\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t'id' => $parameters['user']['id'],\n\t\t\t\t\t\t\t\t'balance' => max(0, $amountToRefundExceedingBalance = round(($parameters['user']['balance'] + $amountToDeductFromBalance) * 100) / 100)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tif ($amountToRefundExceedingBalance < 0) {\n\t\t\t\t\t\t\t$balanceTransactions = $this->fetch('transactions', array(\n\t\t\t\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t\t\t\t'payment_method_id' => 'balance',\n\t\t\t\t\t\t\t\t\t'processed' => true,\n\t\t\t\t\t\t\t\t\t'processing' => false,\n\t\t\t\t\t\t\t\t\t'transaction_method' => 'PaymentCompleted',\n\t\t\t\t\t\t\t\t\t'user_id' => $parameters['user']['id'],\n\t\t\t\t\t\t\t\t\t'NOT' => array(\n\t\t\t\t\t\t\t\t\t\t'invoice_id' => $processedInvoiceIds\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t'fields' => array(\n\t\t\t\t\t\t\t\t\t'id',\n\t\t\t\t\t\t\t\t\t'invoice_id',\n\t\t\t\t\t\t\t\t\t'payment_amount',\n\t\t\t\t\t\t\t\t\t'payment_transaction_id',\n\t\t\t\t\t\t\t\t\t'plan_id'\n\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t'sort' => array(\n\t\t\t\t\t\t\t\t\t'field' => 'created',\n\t\t\t\t\t\t\t\t\t'order' => 'DESC'\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t));\n\n\t\t\t\t\t\t\tif (!empty($balanceTransactions['count'])) {\n\t\t\t\t\t\t\t\tforeach ($balanceTransactions['data'] as $balanceTransaction) {\n\t\t\t\t\t\t\t\t\tif (!empty($balanceTransaction['invoice_id'])) {\n\t\t\t\t\t\t\t\t\t\t$invoice = $this->_call('invoices', array(\n\t\t\t\t\t\t\t\t\t\t\t'methodName' => 'invoice',\n\t\t\t\t\t\t\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t'invoices',\n\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'id' => $balanceTransaction['invoice_id']\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t));\n\n\t\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t\t!empty($invoice['data']) &&\n\t\t\t\t\t\t\t\t\t\t\t$amountToRefundExceedingBalance < 0\n\t\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t\t$invoiceDeductions = $this->_call('invoices', array(\n\t\t\t\t\t\t\t\t\t\t\t\t'methodName' => 'calculateDeductionsFromInvoice',\n\t\t\t\t\t\t\t\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t$invoice['data']['invoice'],\n\t\t\t\t\t\t\t\t\t\t\t\t\tmax(min(($balanceTransaction['payment_amount'] * -1), $amountToRefundExceedingBalance), $amountToRefundExceedingBalance),\n\t\t\t\t\t\t\t\t\t\t\t\t\t$invoiceDeductions\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t));\n\t\t\t\t\t\t\t\t\t\t\t$amountToRefundExceedingBalance = min(0, $invoiceDeductions['remainder']);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tforeach ($invoiceDeductions as $key => $invoiceDeduction) {\n\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t!isset($invoiceDeduction['amount_deducted']) ||\n\t\t\t\t\t\t\t$invoiceDeduction['amount_deducted'] >= 0\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\tunset($invoiceDeductions[$key]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif (!empty($invoiceDeduction['id'])) {\n\t\t\t\t\t\t\t\t$invoiceDeductionData = array(\n\t\t\t\t\t\t\t\t\t'amount_paid' => round(($invoiceDeduction['amount_paid'] + $invoiceDeduction['amount_deducted']) * 100) / 100,\n\t\t\t\t\t\t\t\t\t'id' => $invoiceDeduction['id'],\n\t\t\t\t\t\t\t\t\t'payable' => true,\n\t\t\t\t\t\t\t\t\t'remainder_pending' => $invoiceDeduction['remainder_pending']\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (!empty($invoiceDeduction['status'])) {\n\t\t\t\t\t\t\t\t\t$invoiceDeductionData['status'] = $invoiceDeduction['status'];\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t$invoiceData[$invoiceDeduction['id']] = $invoiceDeductionData;\n\t\t\t\t\t\t\t\t$orderMergeParameters = array(\n\t\t\t\t\t\t\t\t\t'conditions' => array(\n\t\t\t\t\t\t\t\t\t\t'amount_merged >' => 0,\n\t\t\t\t\t\t\t\t\t\t'initial_invoice_id' => $invoiceDeduction['id']\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t'fields' => array(\n\t\t\t\t\t\t\t\t\t\t'amount_merged',\n\t\t\t\t\t\t\t\t\t\t'id',\n\t\t\t\t\t\t\t\t\t\t'initial_invoice_id'\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t'sort' => array(\n\t\t\t\t\t\t\t\t\t\t'field' => 'created',\n\t\t\t\t\t\t\t\t\t\t'order' => 'ASC'\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t$orderMerges = $this->fetch('order_merges', $orderMergeParameters);\n\n\t\t\t\t\t\t\t\tif (!empty($orderMerges['count'])) {\n\t\t\t\t\t\t\t\t\t$amountDeducted = $invoiceDeduction['amount_deducted'];\n\n\t\t\t\t\t\t\t\t\tforeach ($orderMerges['data'] as $orderMerge) {\n\t\t\t\t\t\t\t\t\t\tif ($amountDeducted === 0) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t$amountDeductedFromAmountMerged = $amountDeducted + $orderMerge['amount_merged'];\n\t\t\t\t\t\t\t\t\t\t$amountDeducted = min(0, $amountDeductedFromAmountMerged);\n\t\t\t\t\t\t\t\t\t\t$orderMergeData[] = array(\n\t\t\t\t\t\t\t\t\t\t\t'amount_merged' => max(0, $amountDeductedFromAmountMerged),\n\t\t\t\t\t\t\t\t\t\t\t'id' => $orderMerge['id']\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t$transactionData[] = array(\n\t\t\t\t\t\t\t\t'customer_email' => $parameters['user']['email'],\n\t\t\t\t\t\t\t\t'id' => uniqid() . time(),\n\t\t\t\t\t\t\t\t'invoice_id' => $invoiceDeduction['id'],\n\t\t\t\t\t\t\t\t'parent_transaction_id' => $parameters['parent_transaction_id'],\n\t\t\t\t\t\t\t\t'payment_amount' => $invoiceDeduction['amount_deducted'],\n\t\t\t\t\t\t\t\t'payment_currency' => $this->settings['billing']['currency'],\n\t\t\t\t\t\t\t\t'payment_method_id' => $parameters['payment_method_id'],\n\t\t\t\t\t\t\t\t'payment_status' => 'completed',\n\t\t\t\t\t\t\t\t'payment_status_message' => 'Payment refunded.',\n\t\t\t\t\t\t\t\t'payment_transaction_id' => $parameters['payment_transaction_id'],\n\t\t\t\t\t\t\t\t'plan_id' => $parameters['plan_id'],\n\t\t\t\t\t\t\t\t'processed' => true,\n\t\t\t\t\t\t\t\t'transaction_charset' => $this->settings['database']['charset'],\n\t\t\t\t\t\t\t\t'transaction_date' => date('Y-m-d H:i:s', time()),\n\t\t\t\t\t\t\t\t'transaction_method' => 'PaymentRefundProcessed',\n\t\t\t\t\t\t\t\t'user_id' => $parameters['user']['id']\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (!empty($invoiceDeduction['id'])) {\n\t\t\t\t\t\t\t$unpaidInvoiceIds[] = $invoiceDeduction['id'];\n\t\t\t\t\t\t\t$invoiceData[$invoiceDeduction['id']]['warning_level'] = 5;\n\t\t\t\t\t\t\t$invoiceOrders = $this->_call('invoices', array(\n\t\t\t\t\t\t\t\t'methodName' => 'retrieveInvoiceOrders',\n\t\t\t\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t\t\t\t$invoiceDeduction\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t));\n\n\t\t\t\t\t\t\tforeach ($invoiceOrders as $invoiceOrder) {\n\t\t\t\t\t\t\t\tif (empty($pendingInvoiceOrders[$invoiceOrder['id']])) {\n\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']] = $invoiceOrder;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif ($invoiceDeduction['amount_deducted'] < 0) {\n\t\t\t\t\t\t\t\t\t$priceActive = $pendingInvoiceOrders[$invoiceOrder['id']]['price_active'];\n\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']]['price_active'] = max(0, round(($pendingInvoiceOrders[$invoiceOrder['id']]['price_active'] + $invoiceDeduction['amount_deducted']) * 100) / 100);\n\t\t\t\t\t\t\t\t\t$invoiceDeduction['amount_deducted'] = min(0, $invoiceDeduction['amount_deducted'] + $priceActive);\n\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']]['price_active'] === 0 &&\n\t\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']]['status'] == 'active'\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']]['quantity_active'] = 0;\n\t\t\t\t\t\t\t\t\t\t$pendingInvoiceOrders[$invoiceOrder['id']]['status'] = 'pending';\n\t\t\t\t\t\t\t\t\t\t$actionData = array(\n\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t'chunks' => ($chunks = ceil($invoiceOrder['quantity_active'] / 10000)),\n\t\t\t\t\t\t\t\t\t\t\t\t'encoded_parameters' => json_encode(array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t'action' => 'remove',\n\t\t\t\t\t\t\t\t\t\t\t\t\t'data' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'order' => $invoiceOrder\n\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t'item_count' => ($itemCount = $invoiceOrder['quantity_active']),\n\t\t\t\t\t\t\t\t\t\t\t\t\t'table' => 'proxies'\n\t\t\t\t\t\t\t\t\t\t\t\t)),\n\t\t\t\t\t\t\t\t\t\t\t\t'foreign_key' => 'order_id',\n\t\t\t\t\t\t\t\t\t\t\t\t'foreign_value' => $invoiceOrder['id'],\n\t\t\t\t\t\t\t\t\t\t\t\t'processed' => ($processOrder = ($chunks == 1)),\n\t\t\t\t\t\t\t\t\t\t\t\t'progress' => ($processOrder ? 100 : 0),\n\t\t\t\t\t\t\t\t\t\t\t\t'user_id' => $parameters['user']['id']\n\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\tif ($processOrder) {\n\t\t\t\t\t\t\t\t\t\t\t$this->_call('proxies', array(\n\t\t\t\t\t\t\t\t\t\t\t\t'methodName' => 'remove',\n\t\t\t\t\t\t\t\t\t\t\t\t'methodParameters' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t'proxies',\n\t\t\t\t\t\t\t\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'data' => array(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'order' => $invoiceOrder\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t));\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t$this->save('actions', $actionData);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif (\n\t\t\t\t\t\t(\n\t\t\t\t\t\t\tempty($unpaidInvoiceIds) ||\n\t\t\t\t\t\t\t$this->delete('invoice_items', array(\n\t\t\t\t\t\t\t\t'invoice_id' => $unpaidInvoiceIds\n\t\t\t\t\t\t\t))\n\t\t\t\t\t\t) &&\n\t\t\t\t\t\t$this->save('invoices', array_values($invoiceData)) &&\n\t\t\t\t\t\t$this->save('orders', array_values($pendingInvoiceOrders)) &&\n\t\t\t\t\t\t$this->save('order_merges', $orderMergeData) &&\n\t\t\t\t\t\t$this->save('transactions', $transactionData) &&\n\t\t\t\t\t\t$this->save('users', $userData)\n\t\t\t\t\t) {\n\t\t\t\t\t\t$mailParameters = array(\n\t\t\t\t\t\t\t'from' => $this->settings['from_email'],\n\t\t\t\t\t\t\t'subject' => 'Transaction #' . $parameters['payment_transaction_id'] . ' refund confirmation',\n\t\t\t\t\t\t\t'template' => array(\n\t\t\t\t\t\t\t\t'name' => 'payment_refunded',\n\t\t\t\t\t\t\t\t'parameters' => array(\n\t\t\t\t\t\t\t\t\t'deductions' => $transactionData,\n\t\t\t\t\t\t\t\t\t'transaction' => array_merge($parameters, array(\n\t\t\t\t\t\t\t\t\t\t'payment_method' => $this->_retrieveTransactionPaymentMethod($parameters['payment_method_id'])\n\t\t\t\t\t\t\t\t\t)),\n\t\t\t\t\t\t\t\t\t'user' => $parameters['user']\n\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t'to' => $parameters['user']['email']\n\t\t\t\t\t\t);\n\t\t\t\t\t\t$this->_sendMail($mailParameters);\n\n\t\t\t\t\t\tforeach ($pendingInvoiceOrders as $pendingInvoiceOrder) {\n\t\t\t\t\t\t\tif ($pendingInvoiceOrder['quantity_active'] === 0) {\n\t\t\t\t\t\t\t\t$mailParameters = array(\n\t\t\t\t\t\t\t\t\t'from' => $this->settings['from_email'],\n\t\t\t\t\t\t\t\t\t'subject' => 'Order #' . $pendingInvoiceOrder['id'] . ' is deactivated',\n\t\t\t\t\t\t\t\t\t'template' => array(\n\t\t\t\t\t\t\t\t\t\t'name' => 'order_deactivated',\n\t\t\t\t\t\t\t\t\t\t'parameters' => array(\n\t\t\t\t\t\t\t\t\t\t\t'order' => $pendingInvoiceOrder,\n\t\t\t\t\t\t\t\t\t\t\t'user' => $parameters['user']\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t'to' => $parameters['user']['email']\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t$this->_sendMail($mailParameters);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn;\n\t\t}", "public function Refund($request)\n {\n $transactionID = $request->Refund->TransactionID;\n if (empty($transactionID)) {\n die(\"Refund transaction ID missing\");\n }\n $jsonRequest = $this->fixObjtoJSON($request);\n $response = $this->PostToRapidAPI(\"Transaction/$transactionID/Refund\", $jsonRequest);\n return $response;\n }", "function sendUserRefundConfirmation($userData, $item, $billing)\n {\n $this->getCountryCode($userData->country_id);\n $template = 'USR032';\n $username = \"$userData->first_name $userData->last_name\";\n $replace = ['[UserName]', '[orderNumber]', '[itemAmmount]', \"[itemName]\"];\n $with = [$username, $billing->billing_number, $item->newPrice, $item->item_name];\n $to = $this->countryCode . (int) $userData->mobile_no;\n parent::sendSms($to, $replace, $with, $template);\n }", "public function a_user_looking_for_data_refund()\n {\n /**\n * first todo\n * todo auth|login|middleware\n * alternative use ->loginAs(Model::find(id))\n */\n $this->user_login();\n $this->browse(function (Browser $browser) {\n $assertSee = 'Data Refund Modal';\n $tanggal = '2019-05-31';\n $uraian = 'Salah Top Up Saldo'; // value='keterangan'\n $jumlah = '8400000';\n $jumlahSee = 'Rp. 8.400.000,00,-';\n $browser\n /**\n * #path_url-02 cabang_path()\n * don't forget to put path link after execute link/move/change address.url\n * in this case we have move from user_login\n */\n ->assertPathIs($this->cabang_path())\n /**\n * ?clickLink('param')\n * the function for this\n * <a href='x'> param </a>\n */\n ->clickLink('Data Permodalan')\n ->clickLink('List Data Refund Saldo')\n // measure against , the bot seen a page ,\n // for capture laters -> finalize js loading screen\n ->assertSee($assertSee)\n // capture the task\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](1)')\n\n /**\n * select('name', 'value-option')\n * looking for view\n */\n ->select('perpage', '10')\n ->press('Oke')\n ->assertSee($assertSee)\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](2)')\n\n ->select('perpage', '25')\n ->press('Oke')\n ->assertSee($assertSee)\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](3)')\n\n ->select('perpage', '50')\n ->press('Oke')\n ->assertSee($assertSee)\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](4)')\n\n ->select('perpage', '100')\n ->press('Oke')\n ->assertSee($assertSee)\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](5)')\n // end of select\n\n /**\n * searching\n */\n // [tanggal]\n ->select('by', 'tanggal')\n // some case value more prefered use ID not CLASS , sometime make anError\n ->value('#q', $tanggal) //search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](6)')\n // press ('value-of-button')\n ->press('Oke')\n ->assertSee($tanggal) //text from data by search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](6.1)')\n\n // [uraian|keterangan]\n ->select('by', 'uraian')\n // some case value more prefered use ID not CLASS , sometime make anError\n ->value('#q', $uraian) //search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](7.1)')\n // press ('value-of-button')\n ->press('Oke')\n ->assertSee($uraian) //text from data by search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](7.2)')\n\n // [jumlah]\n ->select('by', 'jumlah')\n // some case value more prefered use ID not CLASS , sometime make anError\n ->value('#q', $jumlah) //search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](8.1)')\n // press ('value-of-button')\n ->press('Oke')\n ->assertSee($jumlahSee) //text from data by search\n ->screenshot('UserViewDataPermodalan[LIST-REFUND-SALDO](8.2)')\n // end\n ;\n });\n }", "public function instoreRefund($payload, $authToken = null);", "function order_success()\n{\n\n}", "public function readrefundsAction()\n {\n $this->getResponse()->setBody(self::getHelper()->readrefunds());\n\n }", "public function hookAdminOrder($params)\r\n {\r\n\r\n $output = '';\r\n $order = new Order((int) $params['id_order']);\r\n $carrier = new Carrier((int) $order->id_carrier);\r\n\r\n $this->initializeShippings();\r\n\r\n $config = $this->getTipsaConfiguration();\r\n $cashondelivery_modules = explode(',', $config['cashondelivery_modules']);\r\n\r\n if (in_array($order->module, $cashondelivery_modules)) {\r\n $contrarreembolso = $order->total_paid_real;\r\n } else {\r\n $contrarreembolso = 0;\r\n }\r\n\r\n if ($carrier->external_module_name == 'tipsacarrier') {\r\n $codageyp = Db::getInstance()->getValue('SELECT `codageyp` FROM `' . _DB_PREFIX_ . 'tipsa_address` WHERE `id_order` =' . (int) $order->id);\r\n $sql = 'SELECT `codigo_barras` '\r\n . 'FROM `' . _DB_PREFIX_ . 'tipsa_envios`'\r\n . 'WHERE `id_envio_order` = ' . (int) $order->id . ' AND `codigo_barras` IS NOT NULL ';\r\n $showLabelButton = (bool) Db::getInstance()->getValue($sql);\r\n $linkLabel = Db::getInstance()->getValue($sql);\r\n\r\n if (Tools::isSubmit('generateLabeltipsa_envios') || Tools::isSubmit('updateBultostipsa_envios')) {\r\n Db::getInstance()->update('tipsa_envios', array('bultos' => (int) Tools::getValue('packages'), 'observation' => Tools::getValue('observation_carrier')), 'id_envio = ' . Tools::getValue('TIPSA_ID_ENVIO'));\r\n $output .= $this->displayConfirmation($this->l('Status Updated.'));\r\n }\r\n\r\n if (Tools::isSubmit('generateLabeltipsa_envios') && !$showLabelButton) {\r\n $this->printLabel((int) Tools::getValue('TIPSA_ID_ENVIO'));\r\n $showLabelButton = true;\r\n $output .= $this->displayConfirmation($this->l('Label has been created.'));\r\n }\r\n\r\n $delivery = new Address((int) $order->id_address_delivery);\r\n $messageList = Message::getMessagesByOrderId((int) $order->id);\r\n\r\n $config = $this->getTipsaConfiguration();\r\n\r\n $this->context->smarty->assign(\r\n array(\r\n 'TIPSA_CODAGE' => $config['tipsa_codage'],\r\n 'TIPSA_CODCLI' => $config['tipsa_codcli'],\r\n 'base_url' => _PS_BASE_URL_ . __PS_BASE_URI__,\r\n 'module_name' => $this->name,\r\n 'TIPSACARRIER_ID_ENVIO' => (int) Db::getInstance()->getValue('SELECT `id_envio` FROM `' . _DB_PREFIX_ . 'tipsa_envios` WHERE `id_envio_order` = ' . (int) $order->id),\r\n 'TIPSACARRIER_PACKAGES' => (int) Db::getInstance()->getValue('SELECT `bultos` FROM `' . _DB_PREFIX_ . 'tipsa_envios` WHERE `id_envio_order` = ' . (int) $order->id),\r\n 'ps_version' => _PS_VERSION_,\r\n 'showLabelButton' => !$showLabelButton,\r\n 'linkLabel' => $linkLabel,\r\n 'TIPSACARRIER_REFERENCE' => $order->reference,\r\n 'TIPSACARRIER_SHOPNAME' => Configuration::get('PS_SHOP_NAME'),\r\n 'TIPSACARRIER_SHOPPHONE' => Configuration::get('PS_SHOP_PHONE'),\r\n 'TIPSACARRIER_CP' => Configuration::get('PS_SHOP_CODE'),\r\n 'TIPSACARRIER_CITY' => Configuration::get('PS_SHOP_CITY'),\r\n 'TIPSACARRIER_ADDRESS' => Configuration::get('PS_SHOP_ADDR1'),\r\n 'TIPSACARRIER_ORDER_COMMENTS' => (isset($messageList['0']) && $messageList['0']['id_customer'] > 0) ? $messageList['0']['message'] : '',\r\n 'TIPSACARRIER_DEST_CONTACT_INFO' => $delivery->firstname . ' ' . $delivery->lastname,\r\n 'TIPSACARRIER_DEST_PHONE' => $delivery->phone . ' - ' . $delivery->phone_mobile,\r\n 'TIPSACARRIER_DEST_CP' => $delivery->postcode,\r\n 'TIPSACARRIER_DEST_CITY' => $delivery->city,\r\n 'TIPSACARRIER_DEST_ADDRESS' => $delivery->address1,\r\n 'TIPSACARRIER_DEST_COD' => $contrarreembolso,\r\n 'TIPSA_CODAGE_YP' => $codageyp,\r\n 'TIPSACARRIER_ORDER_COMMENTS_CARRIER' => Db::getInstance()->getValue('SELECT `observation` FROM `' . _DB_PREFIX_ . 'tipsa_envios` WHERE `id_envio_order` = ' . (int) $order->id),\r\n )\r\n );\r\n $output .= $this->display(__FILE__, 'views/templates/admin/orders_confirmation.tpl');\r\n }\r\n return $output;\r\n }", "protected function handleRefundUpdated(array $data)\n {\n $stripeRefund = $data['data']['object'];\n if ($transaction = Commerce::getInstance()->getTransactions()->getTransactionByReference($stripeRefund['id'])) {\n $transactionRecord = TransactionRecord::findOne($transaction->id);\n switch ($stripeRefund['status']) {\n case Refund::STATUS_SUCCEEDED:\n $transactionRecord->status = TransactionRecord::STATUS_SUCCESS;\n break;\n case Refund::STATUS_PENDING:\n $transactionRecord->status = TransactionRecord::STATUS_PROCESSING;\n break;\n case Refund::STATUS_FAILED:\n $transactionRecord->status = TransactionRecord::STATUS_FAILED;\n $transactionRecord->message = $stripeRefund['failure_reason'];\n break;\n default:\n $transactionRecord->status = TransactionRecord::STATUS_FAILED;\n }\n $transactionRecord->response = $data['data'];\n // Need to update the record directly as commerce does not allow updating a transaction normally through the service\n $transactionRecord->save(false);\n $transaction->getOrder()->updateOrderPaidInformation();\n }\n }" ]
[ "0.7970543", "0.74707913", "0.73533374", "0.7244327", "0.7197426", "0.71608555", "0.71318984", "0.6984876", "0.69802624", "0.69767654", "0.6747979", "0.67346674", "0.6702539", "0.6695034", "0.66799873", "0.6660767", "0.66571224", "0.6605268", "0.65960133", "0.65410644", "0.6426822", "0.64132243", "0.63977367", "0.6384477", "0.63605404", "0.6357033", "0.62943006", "0.6293965", "0.62925106", "0.6286894", "0.6255219", "0.6187878", "0.6183854", "0.61823726", "0.6170856", "0.6170744", "0.6142095", "0.6126393", "0.61157334", "0.60697895", "0.60386086", "0.59843856", "0.5977387", "0.5969562", "0.5959131", "0.59352", "0.593509", "0.5908062", "0.59078413", "0.5884249", "0.5867815", "0.5854841", "0.5842954", "0.5842103", "0.58347005", "0.58320343", "0.5814718", "0.57892257", "0.5784093", "0.5777107", "0.57671463", "0.57553947", "0.5752432", "0.5751003", "0.5750132", "0.5743743", "0.5741963", "0.57347715", "0.5733395", "0.5733052", "0.5730086", "0.5720911", "0.5715222", "0.570596", "0.5704741", "0.5697965", "0.5696736", "0.56925255", "0.56913996", "0.56749713", "0.56660736", "0.565402", "0.56359017", "0.56351125", "0.5634087", "0.563359", "0.56316024", "0.5631238", "0.56229144", "0.5611157", "0.56091523", "0.56091166", "0.56064844", "0.56064504", "0.56016976", "0.5596962", "0.5591617", "0.55835414", "0.5582925", "0.5571828" ]
0.56823593
79
/ admin refund / admin rating
public function view_rating() { $itemData['item'] = Product::getratingItem(); $data = ['itemData' => $itemData]; return view('admin.rating')->with($data); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function allowAction()\n\t{\trequire_once( 'form.inc' );\n\n\t\tif( $this->_getParam('user') )\n\t\t{\tif( $this->db->allowRefund($this->_getParam('user')) )\n\t\t\t{\n\t\t\t}else\n\t\t\t{\n\t\t\t}\n\t\t}\n\n\t\t// Calculate the number for the past term\n\t\t$term = (date('Y') - 1900) * 10 + floor((date('m') - 1) / 4) * 4 + 1;\n\t\tif( $term % 10 == 1 )\n\t\t{\t$term -= 2;\n\t\t}else\n\t\t{\t$term -= 4;\n\t\t}\n\n\t\t// Add list of people who already have been enabled\n\t\t$this->view->user_allowed = implode( \", \", $this->db->getRefunds('REGULAR', $term));\n\n\t\t// Add list of users who got their refunds last term\n\t\t$this->view->user_options = $this->db->getRefunds('RECEIVED', $term);\n\t}", "public function refund()\n\t{\n\t\trequirePermission(\"canRefund\");\n\n\t\t$id = intval($this->input->get(\"id\"));\n\t\t$costDp = intval($this->input->get(\"costDp\"));\n\t\t$accountId = intval($this->input->get(\"accountId\"));\n\t\t\n\t\tif(!$id || !is_numeric($id))\n\t\t{\n\t\t\tdie();\n\t\t}\n\n\t\tif ($costDp != \"Free\") {\n\t\t\tif(!$costDp || !is_numeric($costDp))\n\t\t\t{\n\t\t\t\tdie();\n\t\t\t}\n\t\t}\n\n\t\tif(!$accountId || !is_numeric($accountId))\n\t\t{\n\t\t\tdie();\n\t\t}\n\n\t\tif ($costDp != \"Free\") {\n\t\t\tif ($costDp > 0) {\n\t\t\t\t$userDp = intval($this->recup_model->getDp($accountId));\n\t\t\t\tif(!$userDp || !is_numeric($userDp))\n\t\t\t\t{\n\t\t\t\t\tdie(\"Problème lors de l'acquisition des users dps.\");\n\t\t\t\t}\n\t\t\t\t$this->internal_user_model->setDp($accountId, $userDp+$costDp);\n\t\t\t}\n\t\t}\n\t\t$this->recup_model->editEtat($this->realms->getRealm(1)->getCharacters()->getConnection(), $id, 8);\n\t}", "public function maybe_delete_rate() {\n\t\t\tif ( ! wct_is_admin() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( ! wct_user_can( 'edit_talks' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( empty( $_GET['remove_vote'] ) || empty( $_GET['post'] ) || empty( $_GET['action'] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$talk_id = absint( $_GET['post'] );\n\t\t\t$user_id = absint( $_GET['remove_vote'] );\n\n\t\t\t// nonce check\n\t\t\tcheck_admin_referer( 'talk_remove_vote_' . $user_id );\n\n\t\t\tif( false !== wct_delete_rate( $talk_id, $user_id ) ) {\n\t\t\t\t$message = 11;\n\t\t\t} else {\n\t\t\t\t$message = 12;\n\t\t\t}\n\n\t\t\t// Utimate and not necessary check...\n\t\t\tif ( ! empty( $_GET['remove_vote'] ) ) {\n\t\t\t\t$redirect = add_query_arg( 'message', $message, get_edit_post_link( $talk_id, 'url' ) );\n\t\t\t\twp_safe_redirect( $redirect );\n\t\t\t\texit();\n\t\t\t}\n\t\t}", "public function refund();", "public function rate($id){\n\t\t// else\n\n\t\tif($this->alreadyRate($id)){\n\t\t\treturn redirect('books/'.$id);\n\t\t}\n\n\t\t$userID = Auth::id();\n\n\t\t$user = User::findOrfail($userID);\n\n\t\t$input = Request::all();\n\t\t$book = Book::findOrFail($id);\n\n\t\t// check user level if level == 0 -> basic user\n\t\t// if level == 1 -> critic user\n\t\t// level 2 -> admin\n\n\t\t// assume it pass data user vote\n\n\t\tif(!$user -> isCritic()) {\n\t\t\t$book->userRating += $input['rating'];\n\t\t\t$book->userRatingCount += 1;\n\t\t\t$book->save();\n\t\t}\n\t\telse{\n\t\t\t$book->criticRating += $input['rating'];\n\t\t\t$book->criticRatingCount += 1;\n\t\t\t$book->save();\n\t\t}\n\n\t\t$rating = new Rating();\n\t\t$rating -> book_id = $book->getKey();\n\t\t$rating -> user_id = $userID;\n\t\t$rating -> save();\n\n\t\treturn redirect($this->getURI().'/'.$id);\n\n\t}", "public function actionRate()\n\t{\n\t\t$note_id = $_POST['note_id'];\n\t\t$student_id = $_POST['student_id'];\n\t\t$rating = $_POST['rating'];\n\n\t\t$model = $this->loadModel($note_id);\n\t\t$model->rate($student_id, $rating);\n\n\t\t$totalRating = $model->getTotalRating();\n\t\t$ratersCount = $model->getRatersCount();\n\n\t\tif ( ! $totalRating)\n\t\t\techo 'N/A';\n\t\telse\n\t\t\techo '' . ((double)$totalRating / $ratersCount) . ' (dari ' . $ratersCount . ' pengguna)';\n\t}", "public function unRate()\n {\n\n }", "private function updateBalance()\n {\n if (!auth()->user()->hasRole('admin')) {\n auth()->user()->update([\n 'credit' => auth()->user()->credit - $this->totalCost()\n ]);\n }\n }", "public function actionStoragesRating(): never\n\t{\n\t\t$this->redirectPermanent('PasswordsStorages:rating');\n\t}", "public function ratereviewpromotion() {\n\n $sessionstaff = $this->Session->read('staff');\n $options6['conditions'] = array('Promotion.clinic_id' => $sessionstaff['clinic_id'], 'Promotion.is_global' => 0,'Promotion.default'=>2,'Promotion.is_lite'=>0);\n $Promotionlist = $this->Promotion->find('all', $options6);\n $this->set('promotionlist', $Promotionlist);\n //function to check access control for practice staff\n if($sessionstaff['staff_role']=='Doctor' && $sessionstaff['staffaccess']['AccessStaff']['rate_review']==1){\n \n }else{\n $this->render('/Elements/access');\n }\n }", "public function rejectAction()\n\t{\trequire_once( 'form.inc' );\n\n\t\tif( $this->_getParam('user') && $this->_getParam('user_reason') )\n\t\t{\t// TODO: validate and write entry to database\n\t\t\t// TODO: add success message to view\n\t\t\tif( $this->db->rejectRefund( $this->_getParam('user'), $this->_getParam('user_reason') ) )\n\t\t\t{\n\t\t\t}else\n\t\t\t{\n\t\t\t}\n\t\t}\n\n\t\t// TODO: If the refunds period has closed, parse request logs against refund list, update rejected users\n\t\t$this->view->user_options = $this->db->getRefunds('REQUESTED');\n\t}", "function delAlterRate($arid)\n\t{\n\t\t\n\t\t//delete from product\n\t\t$delete1 = \"DELETE FROM alter_rate WHERE arate_id='$arid'\";\n\t\t\n\t\t//execute quary\n\t\t$query1\t= mysql_query($delete1);\n\t\t\n\t}", "function reject_dispute(){\n\t\t$disputeId = $this->uri->segment(4);\n\n\t\t$condition = array('id' => $disputeId);\n\n\t\t$data = array('status' =>'Reject');\n\t\t\n\t\t$this->review_model->update_details(DISPUTE,$data,$condition);\n\n\n\t\t$this->setErrorMessage('success','Dispute rejected successfully');\n\t\tredirect('admin/dispute/display_dispute_list');\n\n\t}", "public function admin_supercharge()\n {\n if ($this->request->is('post')) {\n $this->request->data['Payment']['submitter_id'] = $this->user['id'];\n $this->request->data['Payment']['session_id'] = $this->Session->id();\n $this->request->data['Payment']['created'] = date('Y-m-d H:i:s');\n\n $this->Payment->create();\n\n if ($this->Payment->save($this->request->data)) {\n\n $this->User->id = $this->request->data['Payment']['user_id'];\n $this->User->saveField(\n 'balance',\n $this->User->field('balance') + $this->request->data['Payment']['amount']\n );\n\n $this->Session->setFlash(__('The payment has been saved'));\n $this->redirect(array('action' => 'index'));\n } else {\n $this->Session->setFlash(__('The payment could not be saved. Please, try again.'));\n }\n }\n\n\n $this->set('users', $this->Impi->find('list'));\n }", "public function testUpdateSuperfund()\n {\n }", "function rate(){\n\n\t\t// is entry ID provided in URL\n\t\tif( isset( $_GET[\"id\"] ) ) :\n\n\t\t\t$entry_id = intval( $_GET[\"id\"] );\n\n\t\t\t// loading entry from ID\n\t\t\t$entry = new Models\\Entry( $entry_id );\n\n\t\t\t// entry is loaded\n\t\t\tif( $entry->is_loaded() ):\n\n\t\t\t\t// is rating provided in URL\n\t\t\t\tif( !isset( $_GET[\"rating\"] ) ) :\n\t\t\t\t\tdie(\"Missing rating\");\n\t\t\t\tendif;\n\n\t\t\t\t// did you already vote ?\n\t\t\t\tif( $entry->already_voted() ) :\n\t\t\t\t\tdie(\"You already voted.\");\n\t\t\t\tendif;\n\n\t\t\t\t// convert rating to number\n\t\t\t\t$rating = intval( $_GET[\"rating\"] );\n\n\t\t\t\t// check if rating number is allowed\n\t\t\t\tif( !$entry->is_rating_allowed( $rating ) ) :\n\t\t\t\t\tdie(\"Invalid rating\");\n\t\t\t\tendif;\n\n\t\t\t\t// rate this entry\n\t\t\t\t$entry->rate( $rating );\n\n\t\t\t\t// redirect back to entry\n\t\t\t\theader( \"Location:index.php?c=read&id=\" . $entry_id );\n\t\t\t\texit;\n\n\t\t\telse :\n\n\t\t\t\tdie(\"Entry doesn't exist\");\n\n\t\t\tendif;\n\n\t\telse :\n\n\t\t\tdie(\"ID is missing\");\n\n\t\tendif;\n\t}", "function ico_rate($token, $ico_id, $new_vote) {\n global $conn;\n\n $check_if_rated = check_if_rated($token, $ico_id);\n $user_id = get_user_id($token);\n $admin = checkAdmin($token);\n\n try{\n if($admin == 0){\n\n if($check_if_rated == 0) {\n update_avg_rate($token, $ico_id, $new_vote);\n $stmt = $conn->prepare(\"INSERT INTO ico_user_vote (user_id, ico_id, vote) VALUES (?, ?, ?)\");\n $stmt->bind_param(\"iii\", $user_id, $ico_id, $new_vote);\n $stmt->execute();\n } else {\n update_avg_rate($token, $ico_id, $new_vote);\n $stmt = $conn->prepare(\"UPDATE ico_user_vote SET vote = ? WHERE user_id=? AND ico_id=?\");\n $stmt->bind_param(\"iii\", $new_vote, $user_id, $ico_id); \n $stmt->execute();\n }\n } \n } catch (Exception $e) {\n echo 'Caught exception: ', $e->getMessage(), \"\\n\";\n\n }\n}", "public function refundAction() {\n $this->chekcingForMarketplaceSellerOrNot ();\n /**\n * Initilize refund variables\n */\n $orderId = $this->getRequest ()->getParam ( 'id' );\n $produtId = $this->getRequest ()->getParam ( 'item' );\n $sellerId = Mage::getSingleton ( 'customer/session' )->getId ();\n /**\n * Collect the produts from the order details.\n */\n $orderPrdouctIds = Mage::helper ( 'marketplace/vieworder' )->getOrderProductIds ( Mage::getSingleton ( 'customer/session' )->getId (), $orderId );\n\n $orderStatusFlag = Mage::getStoreConfig ( 'marketplace/admin_approval_seller_registration/order_manage' );\n /**\n * Check whether product id is in array\n */\n if (in_array ( $produtId, $orderPrdouctIds ) && $orderStatusFlag == 1) {\n\n Mage::getModel ( 'marketplace/order' )->updateSellerRequest ( $produtId, $orderId, Mage::getSingleton ( 'customer/session' )->getId (), '', 2 );\n\n try {\n\n /**\n * Sending order email\n */\n $templateId = ( int ) Mage::getStoreConfig ( 'marketplace/admin_approval_seller_registration/order_cancel_request_notification_template_selection' );\n $adminEmailId = Mage::getStoreConfig ( 'marketplace/marketplace/admin_email_id' );\n $toMailId = Mage::getStoreConfig ( \"trans_email/ident_$adminEmailId/email\" );\n $toName = Mage::getStoreConfig ( \"trans_email/ident_$adminEmailId/name\" );\n /**\n * Select email template\n */\n if ($templateId) {\n $emailTemplate = Mage::helper ( 'marketplace/marketplace' )->loadEmailTemplate ( $templateId );\n } else {\n $emailTemplate = Mage::getModel ( 'core/email_template' )->loadDefault ( 'marketplace_cancel_order_admin_email_template_selection' );\n }\n /**\n * Load product collection for cancel\n */\n $productCollection = Mage::getModel ( 'catalog/product' )->getCollection ()->addAttributeToSelect ( '*' )->addUrlRewrite ()->addAttributeToFilter ( 'entity_id', array (\n 'eq' => $produtId\n ) );\n\n $productDetails = \"<ul>\";\n /**\n * Prepare product details for cancel email\n */\n foreach ( $productCollection as $product ) {\n $productDetails .= \"<li>\";\n $productDetails .= \"<div><a href='{$product->getProductUrl()}'>{$product->getName()}</a><div>\";\n $productDetails .= \"</li>\";\n }\n\n $productDetails .= \"</ul>\";\n /**\n * load order details\n * @var object\n */\n $incrementId = Mage::getModel ( 'sales/order' )->load ( $orderId )->getIncrementId ();\n\n /**\n * Get seller information.\n */\n $customer = Mage::getModel ( 'customer/customer' )->load ( $sellerId );\n /**\n * Initilize variable for send mail to seller\n */\n $sellerEmail = $customer->getEmail ();\n $sellerName = $customer->getName ();\n $recipient = $toMailId;\n $emailTemplate->setSenderName ( $sellerName );\n $emailTemplate->setSenderEmail ( $sellerEmail );\n\n /**\n * Prepare temail templave variables\n */\n $emailTemplateVariables = array (\n 'ownername' => $toName,\n 'productdetails' => $productDetails,\n 'order_id' => $incrementId,\n 'customer_email' => $sellerEmail,\n 'customer_firstname' => $sellerName,\n 'reason' => $this->__ ( 'Buyer wants to refund the item' ),\n 'requesttype' => $this->__ ( 'refund' ),\n 'requestperson' => $this->__ ( 'Seller' )\n );\n $emailTemplate->setDesignConfig ( array (\n 'area' => 'frontend'\n ) );\n /**\n * Sending email to admin\n */\n $emailTemplate->getProcessedTemplate ( $emailTemplateVariables );\n $emailTemplate->send ( $recipient, $toName, $emailTemplateVariables );\n\n /**\n * Redirect to order view page\n */\n Mage::getSingleton ( 'core/session' )->addSuccess ( $this->__ ( \"The item refund request has been sent.\" ) );\n $this->_redirect ( 'marketplace/order/vieworder/orderid/' . $orderId );\n } catch ( Exception $e ) {\n /**\n * when error message occured, redirected to view order page.\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( $e->getMessage () ) );\n $this->_redirect ( 'marketplace/order/vieworder/orderid/' . $orderId );\n }\n } else {\n /**\n * Check the permission.\n */\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You do not have permission to access this page' ) );\n $this->_redirect ( 'marketplace/order/manage' );\n return false;\n }\n }", "function r_rate_recipe(){\n global $wpdb;\n \n $output = ['status' => 1];\n //absint function return the absolute intiger\n $post_ID = absint($_POST['rid']);\n //round function will round the rating, second parametar is the depth \n $rating = round($POST['rating'], 1);\n //Grabing the users id with the $SERVER variable\n $user_IP = $_SERVER['REMOTE_ADDR'];\n\n $rating_count = $wpdb->get_var(\n \"SELECT COUNT(*) FROM '\" . $wpdb->prefix . \"recipe_ratings' WHERE recipe_id='\". $post_ID . \"' AND user_ip='\" . $user_IP . \"'\"\n );\n\n\n\n if($rating_count > 0){\n wp_send_json($output);\n }\n\n //The method on the wpdb for inserting in db\n //First parametar is the name of table in which we want to insert data into\n //Second parametar is the array with the keys of colum names and values that will bee insert in data base\n //Third parametar is optional but I use it for security . This parametar allow us to filder each value by data types\n //Format for string is %s\n //Format for integer is %d\n //Format for float is %f\n $wpdb->insert(\n $wpdb->prefix . 'recipe_ratings',\n [\n 'recipe_id' => $post_ID,\n 'rating' => $rating,\n 'user_ip' => $user_IP\n ],\n ['%d', '%f', '%s']\n\n );\n\n $recipe_data = get_post_meta($post_ID, 'recipe-data', true);\n $recipe_data['rating_count']++;\n $recipe_data['rating'] = round($wpdb->get_var(\n \"SELECT AVG('rating') FROM '\". $wpdb-prefix .\" recipe_ratings' WHERE recipe_id='\" .$post_ID .\"'\"\n ), 1);\n\n update_post_meta( $post_ID, 'recipe_data', $recipe_data);\n\n $output['status'] = 2;\n //This wp function will json the array and than it will kill the script\n wp_send_json($output);\n \n\n }", "public function give_rate_to_user(){\n\t\t\t/* language changer */\n\t\t$this->language = ($this->input->get('language') == \"\")?\"english\":$this->input->get('language');\n\t\t$this->lang->load('master', \"$this->language\");\n\t\t\n\t\tif($this->input->post()){\n\t\t\t$request_para = array();\n\n\t\t\t$rating_para['user_id'] = $this->input->post('car_renter_id');\n\t\t\t$rating_para['given_by'] = $this->input->post('car_owner_id');\n\t\t\t$rating_para['request_id'] = $this->input->post('booking_id');\n\t\t\t$rating_para['rating'] = $this->input->post('rating');\n\t\t\t$rating_para['remarks'] = $this->input->post('remarks');\n\t\t\t$rating_para['date'] = date('Y-m-d H:i:s');\n\n\t\t\tif($this->rating_model->rate_user($rating_para)){\n\n\t\t\t\t$isSuccess = True;\n\t\t\t\t$message = $this->lang->line('action_performed_successfully');\n\t\t\t\t$data = array();\n\n\t\t\t}else{\n\t\t\t\t$isSuccess = False;\n\t\t\t\t$message = $this->lang->line('not_able_to_perform_this_action');\n\t\t\t\t$data = array(); \n\t\t\t}\n\n\t\t}else{\n\t\t\t$isSuccess = False;\n\t\t\t$message = $this->lang->line('request_parameters_not_valid');\n\t\t\t$data = array(); \n\n\t\t}\n\n\t\techo json_encode(array(\"isSuccess\" => $isSuccess, \"message\" => $message, \"Result\" => $data));\t\n\n\t}", "public function addRatings()\n {\n }", "function update_quality_rating(){\r\n\t\t\t\r\n\t\t\t// DETERMINE RATING BASED ON VOTES\r\n\t\t\t$query_result = sql_query('SELECT SUM(value) AS rating FROM qa_votes WHERE item_type=\"question\" AND item_id=\"'.$this->info['id'].'\"');\r\n\t\t\t$quality_rating = mysql_result($query_result,0,'rating');\r\n\r\n\t\t\tif(is_null($quality_rating)||$quality_rating=='') $quality_rating = 0;\r\n\r\n\t\t\t$query_result = sql_query('SELECT SUM(quality_rating) AS rating FROM qa_answers WHERE question_id=\"'.$this->info['id'].'\" AND is_active=1');\r\n\t\t\t$quality_rating_answers = mysql_result($query_result,0,'rating');\r\n\t\t\tif(is_null($quality_rating_answers)||$quality_rating_answers=='') $quality_rating_answers = 0;\r\n\t\t\t\r\n\t\t\tsql_query('UPDATE qa_questions SET quality_rating=\"'.$quality_rating.'\", quality_rating_overall = \"' . ($quality_rating_answers + $quality_rating) . '\" WHERE id=\"'.$this->info['id'].'\"');\r\n\t\t\t\r\n\t\t}", "function woocommerce_rrp_add_bulk_admin_notices() {\n\t\t\tglobal $post_type, $pagenow;\n\t\t\t\n\t\t\tif($pagenow == 'edit.php' && $post_type == 'product' && isset($_REQUEST['price_setted_to_rrp']) && (int) $_REQUEST['price_setted_to_rrp']) {\n\t\t\t\t$message = sprintf( _n( 'Product price setted to RRP.', '%s product prices setted to RRP.', $_REQUEST['price_setted_to_rrp'] ), number_format_i18n( $_REQUEST['price_setted_to_rrp'] ) );\n\t\t\t\techo \"<div class=\\\"updated\\\"><p>{$message}</p></div>\";\n\t\t\t}\n\t\t}", "public function rateBuyer()\n\t{\n $username = Input::get('username');\n $posting_id = Input::get('posting_id');\n $loggedin_user = Session::get('user');\n\n $posting_info = App::make('User')->getSellerAndFlags($posting_id);\n if(!count($posting_info))\n {\n return Redirect::to('/outputMessage')->with('message', 'Sorry, but that user does not exist.');\n }\n\n //if logged in user is seller and seller_has_rated flag is set, don't rate again!\n //if logged in user isn't seller and buyer_has_rated flag is set, also don't rate\n $seller_or_buyer = 'buyer';\n\n if ($loggedin_user == $posting_info[0]->username) {\n $seller_or_buyer = 'seller';\n }\n\n if((($seller_or_buyer == 'seller') && ($posting_info[0]->seller_has_rated == '1')) ||\n (($seller_or_buyer == 'buyer') && ($posting_info[0]->buyer_has_rated == '1')) ) {\n return Redirect::to('/outputMessage')->with('message', 'You have already rated this transaction!');\n }\n\n if( $posting_info[0]->hide_post == '0') {\n return Redirect::to('/outputMessage')->with('message', 'This transaction must be marked as complete before rating!');\n }\n\n\n if(Input::has('like')){\n App::make('User')->thumbsUp($username, $posting_id, $seller_or_buyer);\n return Redirect::to('/outputMessage')->with('message', 'Thank you for providing feedback. You liked '.$username.'.');\n }\n else if(Input::has('dislike')){\n App::make('User')->thumbsDown($username, $posting_id, $seller_or_buyer);\n return Redirect::to('/outputMessage')->with('message', 'Thank you for providing feedback. You disliked '.$username.'.');\n }\n return Redirect::to('/outputMessage')->with('message', 'Submitted');\n\t}", "function reffer_amount() {\n\t\t$user_id = $_REQUEST['user_id'];\n\t\tif (!empty($user_id)) {\n\t\t\t$reffer_records = $this -> conn -> get_all_records('reffer_amount');\n\t\t\t$refferal_amount = $reffer_records[0]['reffer_amount'];\n\n\t\t\t$records = $this -> conn -> get_table_row_byidvalue_sum('refferal_records', 'refferal_frnd_id', $user_id, 'refferal_amount');\n\t\t\t$user_reffer_amount = $records[0]['total'];\n\t\t\tif (!empty($user_reffer_amount)) {\n\t\t\t\t$user_reffer_amount = $user_reffer_amount;\n\t\t\t} else {\n\t\t\t\t$user_reffer_amount = '0';\n\t\t\t}\n\t\t\t$post = array(\"status\" => \"true\", 'reffer_amount' => $refferal_amount, 'user_total_reffer_amount' => $user_reffer_amount, 'user_id' => $user_id);\n\n\t\t} else {\n\t\t\t$post = array(\"status\" => \"false\", 'message' => 'missing parameter', 'user_id' => $user_id);\n\t\t}\n\t\techo $this -> json($post);\n\t}", "function allowRefund($userId)\n\t{\n\t\t$term = (date('Y') - 1900) * 10 + floor((date('m') - 1) / 4) * 4 + 1;\n\t\tif( $term % 10 == 1 )\n\t\t{\t$term -= 2;\n\t\t}else\n\t\t{\t$term -= 4;\n\t\t}\n\n\t\t// Update the entry in table to 'REGULAR'\n\t\tif( $this->_db->update( 'refunds',\n\t\t\t\tarray( 'status' => 'REGULAR' ),\n\t\t\t\tarray( \"userId = '$userId'\", \"term = '$term'\", \"status = 'RECEIVED'\" ) ) == 1 )\n\t\t{\treturn true;\n\t\t}else\n\t\t{\treturn false;\n\t\t}\n\t}", "public function rate()\n {\n\n }", "function wiziapp_do_actual_rating($postId, $rating=0, $user_id=0) {\n $GLOBALS['WiziappLog']->write('info', \"Got a rating request with {$postId}::{$rating}::{$user_id}\", \"wiziapp_do_rating\");\n $postId = intval($postId);\n $rating = intval($rating);\n if(filter_var($user_id, FILTER_VALIDATE_IP)){\n $ip = $user_id; $user_id = 0;\n }else{\n $ip = $_SERVER['REMOTE_ADDR'];\n $user_id = intval($user_id);\n }\n if ($rating < 1 && $rating > 5)return false;\n //polldaddy rating\n $id = get_option('pd-rating-posts-id');\n if(function_exists('polldaddy_show_rating_comments') && $id>0){\n $url = 'http://polldaddy.com/ratings/rate.php?';\n $url_query = array();\n $url_query['cmd'] = 'get';\n $url_query['id'] = get_option('pd-rating-posts-id');\n $url_query['uid'] = 'wp-post-'.$postId;\n $url_query['item_id'] = '_post_'.$postId;\n\n\n $link = $url . http_build_query($url_query);\n $matches = array();\n $get_content = wiziapp_general_http_request('',$link,'GET');\n $get_content = $get_content['body'];\n preg_match(\"/\\.token='([a-z0-9]*)/\", $get_content, $matches);\n $url_query['token'] = $matches[1];\n preg_match(\"/\\.avg_rating = ([a-z0-9]*)/\", $get_content, $matches);\n $url_query['avg'] = $matches[1];\n preg_match(\"/\\.votes = ([a-z0-9]*)/\", $get_content, $matches);\n $url_query['votes'] = $matches[1];\n\n $post = get_post($postId);\n $url_query['title'] = str_replace('&amp;', '&', $post->post_title);\n $url_query['permalink'] = $post->guid;\n $url_query['type'] = 'stars';\n $url_query['cmd'] = 'rate';\n $url_query['r'] = $rating;\n\n $link = $url . http_build_query($url_query);\n\n wiziapp_general_http_request('',$link,'GET');\n return true;\n }\n //GD Star rating\n global $gdsr;\n if(is_object($gdsr) && get_class($gdsr)== 'GDStarRating' ){\n $ua = $_SERVER[\"HTTP_USER_AGENT\"];\n gdsrBlgDB::save_vote($postId, $user_id, $ip, $ua, $rating);\n gdsrFrontHelp::save_cookie($postId);\n do_action(\"gdsr_vote_rating_article\", $postId, $user_id, $rating);\n return true;\n }\n //WP-PostRatings\n if (function_exists('process_ratings') && $postId>0 && $user_id>0){\n $_GET['rate'] = $rating;\n $_GET['pid'] = $postId;\n global $user_ID;\n $user_ID = $user_id;\n process_ratings();\n return true;\n }\n return false;\n}", "public function actionRate()\n\t{\n\t\t$this->_assertPostOnly();\n\t\t\n\t\t$threadModel = $this->_getThreadModel();\n\t\t\n\t\t//Define some variables\n\t\t$ftpHelper = $this->getHelper('ForumThreadPost');\n\t\t$threadId = $this->_input->filterSingle('thread_id', XenForo_Input::UINT);\n\t\tlist($thread, $forum) = $ftpHelper->assertThreadValidAndViewable($threadId);\n\t\t\n\t\t$visitor = XenForo_Visitor::getInstance();\n\t\t\n\t\t//Exclude thread ratings from certain forum(s). \n\t\t$options = XenForo_Application::get('options');\n\t\t\n\t\t$exclude = $options->excludedratingforums;\n\n\t\tif (in_array($forum['node_id'], $exclude))\n\t\t{\n\t\t\tthrow $this->responseException($this->responseError(new XenForo_Phrase('requested_page_not_found'), 404));\n\t\t}\n\t\t\n\t\t//Can rate threads permission\n\t\tif (!$this->_getRatingModel()->canRateThreads($thread, $forum, $errorPhraseKey))\n\t\t{\n\t\t\tthrow $this->getErrorOrNoPermissionResponseException($errorPhraseKey);\n\t\t}\n\t\t\n\t\t//Prevent abuse of the rating system by setting up a daily limit\n\t\tif (!$this->_getRatingModel()->dailyRatingLimit($thread, $forum, $errorPhraseKey))\n\t\t{\n\t\t\tthrow $this->getErrorOrNoPermissionResponseException($errorPhraseKey);\n\t\t}\n\n\t\t$input = $this->_input->filter(array(\n\t\t\t'rating' => XenForo_Input::UINT,\n\t\t\t'is_anonymous' => XenForo_Input::UINT,\n\t\t\t'message' => XenForo_Input::STRING,\n\t\t));\n\n\t\t$existing = $this->_getRatingModel()->getRatingByThreadAndUserId($threadId, $visitor['user_id']);\n\t\t\n\t\t//You aready rated this thread\n\t\tif (!empty($existing)) \n\t\t{\n\t\t\treturn $this->responseError(new XenForo_Phrase('you_already_rated_this_thread'));\n\t\t}\n\t\t\n if ($this->isConfirmedPost())//Rating submitted\n\t\t{\n\t\t //Require rating comments. Staff is excluded\n\t\t if (XenForo_Application::getOptions()->ratingcommentrequired && strlen($input['message']) == 0 && !$visitor['is_admin'] && !$visitor['is_moderator'] && !$visitor['is_staff'])\n\t\t\t{\n\t\t\t\treturn $this->responseError(new XenForo_Phrase('must_give_rating_comment'));\n\t\t\t}\n\t\t\t\n\t\t $ratingDw = XenForo_DataWriter::create('Borbole_StarRating_DataWriter_Rating', XenForo_DataWriter::ERROR_EXCEPTION);\n\t\t \n\t\t $ratingDw->set('thread_id', $threadId);\n\t\t $ratingDw->set('user_id', $visitor['user_id']);\n\t\t $ratingDw->set('rating', $input['rating']);\n\t\t $ratingDw->set('message', $input['message']);\n\t\t $ratingDw->set('is_anonymous' , $input['is_anonymous']);\n\t\t \n\t\t $ratingDw->save();\n\t\t \n\t\t //Sticky thread if received x amount of positive ratings\n\t\t\t$sticky = (int)$options->max_positive_sticky;\n\t\t\t\n\t\t\tif ($sticky != 0 AND $thread['rating_sum'] >= $sticky)\n\t\t\t{\n\t\t\t\t$threadDw = XenForo_DataWriter::create('XenForo_DataWriter_Discussion_Thread');\n\t\t\t\t$threadDw->setExistingData($thread['thread_id']);\n\t\t\t\t$threadDw->set('sticky', 1);\n\t\t\t\t$threadDw->save();\n\t\t\t\t \n\t\t\t\t//Redirect\n\t\t\t return $this->responseRedirect(\n\t\t\t\tXenForo_ControllerResponse_Redirect::SUCCESS,\n\t\t\t\tXenForo_Link::buildPublicLink('threads', $thread));\n\t\t\t}\n\t\t \n\t\t //Get thread starters to send alert\twhen thir threads have been rated\t\n\t\t if ($input['is_anonymous'] AND $thread['user_id'] != $visitor['user_id'])\n {\t\n\t\t\t //Anonymous rated your thread alert\n\t\t\t $threadstarters = array($thread['username']);\n\t\t\t\t$this->_getThreadRatingsAlerts()->sendAlert('thread_starters_anonymous', $thread['last_post_id'], $threadstarters, $visitor);\n\t\t\t}else{\n\t\t\t //User x y rated your thread\n\t\t\t\t $threadstarters = array($thread['username']);\n\t\t\t $this->_getThreadRatingsAlerts()->sendAlert('thread_starters', $thread['last_post_id'], $threadstarters, $visitor);\n\t\t\t\t }\n\n\t\t $threadDw = XenForo_DataWriter::create('XenForo_DataWriter_Discussion_Thread');\n\t\t \n\t\t $newRating = $threadModel->getRatingAverage($threadDw->get('rating_sum'), $threadDw->get('rating_count'), true);\n\t\t $hintText = new XenForo_Phrase('x_votes', array('count' => $threadDw->get('rating_count')));\n\n\t\t //Redirect\n\t\t return $this->responseRedirect(\n\t\t\tXenForo_ControllerResponse_Redirect::SUCCESS,\n\t\t\tXenForo_Link::buildPublicLink('threads', $thread),\n\t\t\tnew XenForo_Phrase('your_rating_has_been_recorded'),\n\t\t\t\tarray(\n\t\t\t\t\t\t'newRating' => $newRating['avg'],\n\t\t\t\t\t\t'hintText' => $hintText\n\t\t\t\t )\n\t\t );\n\t\t}\n\t\telse\n\t\t{ \n\t\t //Register variables for use in our template\n\t\t\t$viewParams = array(\n\t\t\t\t'rating' => $input['rating'],\n\t\t\t\t'existing' => ($existing ? $existing : false),\n\t\t\t\t'thread' => $thread,\n\t\t\t 'forum' => $forum,\n\t\t\t 'nodeBreadCrumbs' => $ftpHelper->getNodeBreadCrumbs($forum),\n\t\t\t 'rateAnonymously' => $this->_getRatingModel()->canRateThreadsAnonymously()\n\n\t\t\t);\n\n\t\t\treturn $this->responseView('Borbole_StarRating_ViewPublic_Thread_Rate', 'borbole_thread_rate', $viewParams);\n\t\t}\n\t}", "public function afterSave()\r\n\t{\r\n\t\tif ($this->_isNewRecord)\r\n\t\t{\r\n\t\t\t$user = Users::model()->findByPk($this->author_id);\r\n\t\t\t$user->setReputation(10);\r\n\t\t}\r\n\r\n\t\treturn parent::afterSave();\r\n\t}", "private function rateIt()\n {\n try\n {\n $request = $_POST;\n\n $types = array('videos','video','v','photos','photo','p','collections','collection','cl','users','user','u');\n\n //check if type sent\n if( !isset($request['type']) || $request['type']==\"\" )\n throw_error_msg(\"type not provided\");\n\n //check valid type\n if(!in_array($request['type'], $types))\n throw_error_msg(\"invalid type\");\n\n //check id \n if( !isset($request['id']) || $request['id']==\"\" )\n throw_error_msg(\"id not provided\"); \n\n //check valid id \n if( !is_numeric($request['id']) )\n throw_error_msg(\"invalid id\"); \n\n //check rating \n if( !isset($request['rating']) || $request['rating']==\"\" )\n throw_error_msg(\"rating not provided\"); \n\n //check valid rating \n if( !is_numeric($request['rating']) )\n throw_error_msg(\"invalid rating\");\n\n $type = mysql_clean($request['type']);\n $id = mysql_clean($request['id']);\n $rating = mysql_clean($request['rating']);\n \n switch($type)\n {\n case \"videos\":\n case \"video\":\n case \"v\":\n {\n global $cbvid;\n $rating = $rating*2;\n $result = $cbvid->rate_video($id,$rating);\n }\n break;\n\n case \"photos\":\n case \"photo\":\n case \"p\":\n {\n global $cbphoto;\n $rating = $rating*2;\n $result = $cbphoto->rate_photo($id,$rating);\n }\n break;\n\n case \"collections\":\n case \"collection\":\n case \"cl\":\n {\n global $cbcollection;\n $rating = $rating*2;\n $result = $cbcollection->rate_collection($id,$rating);\n }\n break;\n\n case \"users\":\n case \"user\":\n case \"u\":\n {\n global $userquery;\n $rating = $rating*2;\n $result = $userquery->rate_user($id,$rating);\n }\n break;\n }\n\n if( error() )\n {\n throw_error_msg(error('single')); \n }\n else\n {\n $data = array('code' => \"204\", 'status' => \"success\", \"msg\" => \"success\", \"data\" => $result);\n $this->response($this->json($data)); \n } \n\n }\n catch(Exception $e)\n {\n $this->getExceptionDelete($e->getMessage()); \n }\n\n }", "function PricerrTheme_withdrawals()\n{\n $id_icon = 'icon-options-general-withdr';\n $ttl_of_stuff = 'PricerrTheme - ' . __('Withdrawal Requests', 'PricerrTheme');\n global $wpdb;\n\n //------------------------------------------------------\n\n echo '<div class=\"wrap\">';\n echo '<div class=\"icon32\" id=\"' . $id_icon . '\"><br/></div>';\n echo '<h2 class=\"my_title_class_sitemile\">' . $ttl_of_stuff . '</h2>';\n\n\n //----------------------------------------\n\n if (isset($_GET['den_id'])) {\n $tm = current_time('timestamp', 0);\n $ids = $_GET['den_id'];\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where id='$ids'\";\n $row = $wpdb->get_results($s);\n $row = $row[0];\n\n\n if ($row->done == 0) {\n echo '<div class=\"saved_thing\"><div class=\"padd10\">' . __('Payment rejected!', 'PricerrTheme') . '</div></div>';\n $ss = \"update \" . $wpdb->prefix . \"job_withdraw set done='-1', rejected_on='$tm', rejected='1', datedone='$tm' where id='$ids'\";\n $wpdb->query($ss);\n\n $ucr = PricerrTheme_get_credits($row->uid);\n PricerrTheme_send_email_when_withdraw_rejected($row->uid, $row->methods, PricerrTheme_get_show_price($row->amount));\n PricerrTheme_update_credits($row->uid, $ucr + $row->amount);\n\n }\n }\n\n// if (isset($_GET['tid'])) {\n// $tm = current_time('timestamp', 0);\n// $ids = $_GET['tid'];\n//\n// $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where id='$ids'\";\n// $row = $wpdb->get_results($s);\n// $row = $row[0];\n//\n// if ($row->done == 0) {\n//\n// $id = $row->id;\n// $user_address = $row->payeremail;\n// $uid = $row->uid;\n// $methods = $row->methods;\n// $amount = $row->amount;\n// $datemade = $row->datemade;\n//\n// $redirect_url = get_bloginfo('siteurl') . '/?withdrawal_action=paypal_withdrawal&id=' . $id .\n// '&user_address=' . $user_address . '&uid=' . $uid . '&methods=' . $methods . '&amount=' . $amount .\n// '&datemade=' . $datemade;\n//\n// $redirect = get_bloginfo('siteurl');\n//\n// wp_redirect($redirect);\n// exit;\n// //echo \"<div style='background-color:red; height: 50px; width: 50px;'>\" . $redirect_url . \"</div>\";\n//\n// //----------------------------------------\n// }\n// }\n\n if(isset($_GET[\"withdrawal_action\"])) {\n if ($_GET[\"withdrawal_action\"] == \"success\") {\n echo '<div class=\"saved_thing\"><div class=\"padd10\">' . __('Payment completed!', 'PricerrTheme') . '</div></div>';\n }\n }\n\n //---------------------------------------\n\n ?>\n\n <div id=\"usual2\" class=\"usual\">\n <ul>\n <li><a href=\"#tabs1\"><?php _e('Unresolved Requests', 'PricerrTheme'); ?></a></li>\n <li><a href=\"#tabs2\"><?php _e('Resolved Requests', 'PricerrTheme'); ?></a></li>\n <li><a href=\"#tabs_rejected\"><?php _e('Rejected Requests', 'PricerrTheme'); ?></a></li>\n <li><a href=\"#tabs3\"><?php _e('Search Unresolved', 'PricerrTheme'); ?></a></li>\n <li><a href=\"#tabs4\"><?php _e('Search Solved', 'PricerrTheme'); ?></a></li>\n <li><a href=\"#tabs_search_rejected\"><?php _e('Search Rejected', 'PricerrTheme'); ?></a></li>\n </ul>\n <div id=\"tabs1\">\n <?php\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where done='0' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0) {\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th width=\"12%\"><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Method', 'PricerrTheme'); ?></th>\n <th width=\"20%\"><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th width=\"25%\"><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n <tbody>\n <?php\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n $id = $row->id;\n $user_address = $row->payeremail;\n $uid = $row->uid;\n $methods = $row->methods;\n $amount = $row->amount;\n $datemade = $row->datemade;\n\n $redirect_url = get_bloginfo('siteurl') . '/?withdrawal_action=paypal_withdrawal&id=' . $id .\n '&user_address=' . $user_address . '&uid=' . $uid . '&methods=' . $methods . '&amount=' . $amount .\n '&datemade=' . $datemade;\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->methods . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . $redirect_url . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n //echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n </table>\n <?php } else { ?>\n\n <div class=\"padd101\">\n <?php _e('There are no unresolved withdrawal requests.', 'PricerrTheme'); ?>\n </div>\n\n <?php } ?>\n\n </div>\n\n <div id=\"tabs2\">\n\n\n <?php\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where done='1' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0):\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Released', 'PricerrTheme'); ?></th>\n <th><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n\n <tbody>\n <?php\n\n\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->datedone == 0 ? \"Not yet\" : date('d-M-Y H:i:s', $row->datedone)) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n\n </table>\n <?php else: ?>\n\n <div class=\"padd101\">\n <?php _e('There are no resolved withdrawal requests.', 'PricerrTheme'); ?>\n </div>\n\n <?php endif; ?>\n\n\n </div>\n\n <div id=\"tabs_rejected\">\n\n\n <?php\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where rejected='1' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0):\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Released', 'PricerrTheme'); ?></th>\n <th><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n\n <tbody>\n <?php\n\n\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->datedone == 0 ? \"Not yet\" : date('d-M-Y H:i:s', $row->datedone)) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n\n </table>\n <?php else: ?>\n\n <div class=\"padd101\">\n <?php _e('There are no rejected withdrawal requests.', 'PricerrTheme'); ?>\n </div>\n\n <?php endif; ?>\n\n\n </div>\n\n\n <div id=\"tabs3\">\n\n <form method=\"get\" action=\"<?php bloginfo('siteurl'); ?>/wp-admin/admin.php\">\n <input type=\"hidden\" value=\"withdraw-req\" name=\"page\"/>\n <input type=\"hidden\" value=\"tabs3\" name=\"active_tab\"/>\n <table width=\"100%\" class=\"sitemile-table\">\n <tr>\n <td><?php _e('Search User', 'PricerrTheme'); ?></td>\n <td><input type=\"text\" value=\"<?php echo $_GET['search_user']; ?>\" name=\"search_user\" size=\"20\"/>\n <input type=\"submit\" name=\"PricerrTheme_save3\" value=\"<?php _e('Search', 'PricerrTheme'); ?>\"/>\n </td>\n </tr>\n\n\n </table>\n </form>\n\n <?php\n\n if (isset($_GET['PricerrTheme_save3'])):\n\n $search_user = trim($_GET['search_user']);\n\n $user = get_userdatabylogin($search_user);\n $uid = $user->ID;\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where done='0' AND uid='$uid' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0):\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th width=\"12%\"><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Method', 'PricerrTheme'); ?></th>\n <th width=\"20%\"><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th width=\"25%\"><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n\n <tbody>\n <?php\n\n\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->methods . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n\n </table>\n <?php else: ?>\n\n <div class=\"padd101\">\n <?php _e('There are no results for your search.', 'PricerrTheme'); ?>\n </div>\n\n <?php endif;\n\n\n endif;\n\n ?>\n\n\n </div>\n\n <div id=\"tabs4\">\n\n <form method=\"get\" action=\"<?php bloginfo('siteurl'); ?>/wp-admin/admin.php\">\n <input type=\"hidden\" value=\"withdraw-req\" name=\"page\"/>\n <input type=\"hidden\" value=\"tabs4\" name=\"active_tab\"/>\n <table width=\"100%\" class=\"sitemile-table\">\n <tr>\n <td><?php _e('Search User', 'PricerrTheme'); ?></td>\n <td>\n <input type=\"text\" value=\"<?php echo $_GET['search_user4']; ?>\" name=\"search_user4\" size=\"20\"/>\n <input type=\"submit\" name=\"PricerrTheme_save4\" value=\"<?php _e('Search', 'PricerrTheme'); ?>\"/>\n </td>\n </tr>\n\n\n </table>\n </form>\n\n\n <?php\n\n if (isset($_GET['PricerrTheme_save4'])):\n\n $search_user = trim($_GET['search_user4']);\n\n $user = get_userdatabylogin($search_user);\n $uid = $user->ID;\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where done='1' AND uid='$uid' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0):\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th width=\"12%\"><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Method', 'PricerrTheme'); ?></th>\n <th width=\"20%\"><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th width=\"25%\"><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n\n <tbody>\n <?php\n\n\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->methods . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n\n </table>\n <?php else: ?>\n\n <div class=\"padd101\">\n <?php _e('There are no results for your search.', 'PricerrTheme'); ?>\n </div>\n\n <?php endif;\n\n\n endif;\n\n ?>\n\n </div>\n\n\n <div id=\"tabs_search_rejected\">\n\n <form method=\"get\" action=\"<?php bloginfo('siteurl'); ?>/wp-admin/admin.php\">\n <input type=\"hidden\" value=\"withdraw-req\" name=\"page\"/>\n <input type=\"hidden\" value=\"tabs_search_rejected\" name=\"active_tab\"/>\n <table width=\"100%\" class=\"sitemile-table\">\n <tr>\n <td><?php _e('Search User', 'PricerrTheme'); ?></td>\n <td>\n <input type=\"text\" value=\"<?php echo $_GET['search_user5']; ?>\" name=\"search_user5\" size=\"20\"/>\n <input type=\"submit\" name=\"PricerrTheme_save5\" value=\"<?php _e('Search', 'PricerrTheme'); ?>\"/>\n </td>\n </tr>\n\n\n </table>\n </form>\n\n\n <?php\n\n if (isset($_GET['PricerrTheme_save5'])):\n\n $search_user = trim($_GET['search_user5']);\n\n $user = get_userdatabylogin($search_user);\n $uid = $user->ID;\n\n $s = \"select * from \" . $wpdb->prefix . \"job_withdraw where rejected='1' AND uid='$uid' order by id desc\";\n $r = $wpdb->get_results($s);\n\n if (count($r) > 0):\n\n ?>\n\n <table class=\"widefat post fixed\" cellspacing=\"0\">\n <thead>\n <tr>\n <th width=\"12%\"><?php _e('Username', 'PricerrTheme'); ?></th>\n <th><?php _e('Method', 'PricerrTheme'); ?></th>\n <th width=\"20%\"><?php _e('Details', 'PricerrTheme'); ?></th>\n <th><?php _e('Date Requested', 'PricerrTheme'); ?></th>\n <th><?php _e('Amount', 'PricerrTheme'); ?></th>\n <th width=\"25%\"><?php _e('Options', 'PricerrTheme'); ?></th>\n </tr>\n </thead>\n\n\n <tbody>\n <?php\n\n\n\n foreach ($r as $row) {\n $user = get_userdata($row->uid);\n\n echo '<tr>';\n echo '<th>' . $user->user_login . '</th>';\n echo '<th>' . $row->methods . '</th>';\n echo '<th>' . $row->payeremail . '</th>';\n echo '<th>' . date('d-M-Y H:i:s', $row->datemade) . '</th>';\n echo '<th>' . PricerrTheme_get_show_price($row->amount) . '</th>';\n echo '<th>' . ($row->done == 0 ? '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&active_tab=tabs1&tid=' . $row->id . '\" class=\"awesome\">' . __('Make Complete', 'PricerrTheme') . '</a>' . ' | ' . '<a href=\"' . get_bloginfo('siteurl') . '/wp-admin/admin.php?page=withdraw-req&den_id=' . $row->id . '\" class=\"awesome\">' . __('Deny Request', 'PricerrTheme') . '</a>' : ($row->done == 1 ? __(\"Completed\", 'PricerrTheme') : __(\"Rejected\", 'PricerrTheme'))) . '</th>';\n echo '</tr>';\n }\n\n ?>\n </tbody>\n\n\n </table>\n <?php else: ?>\n\n <div class=\"padd101\">\n <?php _e('There are no results for your search.', 'PricerrTheme'); ?>\n </div>\n\n <?php endif;\n\n\n endif;\n\n ?>\n\n </div>\n\n <?php\n echo '</div>';\n\n}", "function fantacalcio_aggiorna_sfide($vote_round) {\n drupal_set_title(filter_xss('Risultati ' . $vote_round . '&ordf; giornata'));\n\n $sql = \"UPDATE {fanta_sfide} SET status = 3 WHERE status = 1\";\n $result = db_query($sql);\n \n $sql = \"DELETE FROM {fanta_sfide} WHERE (status = 2 OR status = 0)\";\n $result = db_query($sql);\n return \"Sfide aggiornate\"; \n\n}", "public function relatorio4(){\n $this->isAdmin();\n }", "function manage_bonus_plans(){}", "function admin_modify() {\r\n\t\tglobal $wpdb, $current_user;\r\n\r\n\t\tif ( !is_super_admin() ) {\r\n\t\t\techo \"<p>\" . __('Nice Try...', 'psts') . \"</p>\"; //If accessed properly, this message doesn't appear.\r\n\t\t\treturn;\r\n\t\t}\r\n\t\t\r\n\t\t//add manual log entries\r\n\t\tif ( isset($_POST['log_entry']) ) {\r\n\t\t\t$this->log_action( (int)$_GET['bid'], $current_user->display_name . ': \"' . strip_tags(stripslashes($_POST['log_entry'])) . '\"' );\r\n\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.__('Log entry added.', 'psts').'</p></div>';\r\n\t\t}\r\n\t\t\t\t\r\n //extend blog\r\n if ( isset($_POST['psts_extend']) ) {\r\n check_admin_referer('psts_extend'); //check nonce\r\n\r\n if ( isset($_POST['extend_permanent']) ) {\r\n $extend = 9999999999;\r\n } else {\r\n\t\t\t\t$months = $_POST['extend_months'];\r\n\t\t\t\t$days = $_POST['extend_days'];\r\n\t\t\t\t$extend = strtotime(\"+$months Months $days Days\") - time();\r\n\t\t\t}\r\n\t\t\t$this->extend((int)$_POST['bid'], $extend, __('Manual', 'psts'), $_POST['extend_level']);\r\n\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.__('Site Extended.', 'psts').'</p></div>';\r\n\t\t}\t\t\r\n\t\t\t\r\n\t\tif ( isset($_POST['psts_transfer_pro']) ) {\r\n\t\t\t$new_bid = (int)$_POST['new_bid'];\r\n\t\t\t$current_bid = (int)$_GET['bid'];\r\n\t\t\tif ( !$new_bid ) {\r\n\t\t\t\techo '<div id=\"message\" class=\"error\"><p>'.__('Please enter the Blog ID of a site to transfer too.', 'psts').'</p></div>';\r\n\t\t\t} else if ( is_pro_site($new_bid) ) {\r\n\t\t\t\techo '<div id=\"message\" class=\"error\"><p>'.__('Could not transfer Pro Status: The chosen site already is a Pro Site. You must remove Pro status and cancel any existing subscriptions tied to that site.', 'psts').'</p></div>';\r\n\t\t\t} else {\r\n\t\t\t\t$current_level = $wpdb->get_row(\"SELECT * FROM {$wpdb->base_prefix}pro_sites WHERE blog_ID = '$current_bid'\");\r\n\t\t\t\t$new_expire = $current_level->expire - time();\r\n\t\t\t\t$this->extend($new_bid, $new_expire, $current_level->gateway, $current_level->level, $current_level->amount);\r\n\t\t\t\t$wpdb->query(\"UPDATE {$wpdb->base_prefix}pro_sites SET term = '{$current_level->term}' WHERE blog_ID = '$new_bid'\");\r\n\t\t\t\t$this->withdraw($current_bid);\r\n\t\t\t\t$this->log_action( $current_bid, sprintf(__('Pro Status transferred by %s to BlogID: %d', 'psts'), $current_user->display_name, $new_bid) );\r\n\t\t\t\t$this->log_action( $new_bid, sprintf(__('Pro Status transferred by %s from BlogID: %d', 'psts'), $current_user->display_name, $current_bid) );\r\n\t\t\t\tdo_action('psts_transfer_pro', $current_bid, $new_bid); //for gateways to hook into for api calls, etc.\r\n\t\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.sprintf(__('Pro Status transferred to BlogID: %d', 'psts'), (int)$_POST['new_bid']).'</p></div>';\r\n\t\t\t}\r\n\t\t}\r\n\t\r\n\t\t//remove blog\r\n if ( isset($_POST['psts_modify']) ) {\r\n check_admin_referer('psts_modify'); //check nonce\r\n\r\n do_action('psts_modify_process', (int)$_POST['bid']);\r\n\r\n if ( isset($_POST['psts_remove']) ) {\r\n $this->withdraw((int)$_POST['bid']);\r\n\t\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.__('Pro Site Status Removed.', 'psts').'</p></div>';\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif ( isset($_POST['psts_receipt']) ) {\r\n $this->email_notification((int)$_POST['bid'], 'receipt', $_POST['receipt_email']);\r\n\t\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.__('Email receipt sent.', 'psts').'</p></div>';\r\n\t\t\t}\r\n\r\n\t\t}\r\n\t\t\t\r\n\t\t//check blog_id\r\n\t\tif( isset( $_GET['bid'] ) ) {\r\n\t\t\t$blog_count = $wpdb->get_var(\"SELECT COUNT(*) FROM {$wpdb->base_prefix}blogs WHERE blog_ID = '\" . (int)$_GET['bid'] . \"'\");\r\n\t\t\tif ( !$blog_count ) {\r\n\t\t\t\techo '<div id=\"message\" class=\"updated fade\"><p>'.__('Invalid blog ID. Please try again.', 'psts').'</p></div>';\r\n \t\t$blog_id = false;\r\n\t\t\t} else {\r\n\t\t\t\t$blog_id = (int)$_GET['bid'];\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t$blog_id = false;\r\n\t\t}\r\n\r\n\t\t?>\r\n\t\t<div class=\"wrap\">\r\n\t\t<script type=\"text/javascript\">\r\n \t jQuery(document).ready(function () {\r\n \t\t jQuery('input.psts_confirm').click(function() {\r\n var answer = confirm(\"<?php _e('Are you sure you really want to do this?', 'psts'); ?>\")\r\n if (answer){\r\n return true;\r\n } else {\r\n return false;\r\n };\r\n });\r\n \t\t});\r\n \t</script>\r\n \t<div class=\"icon32\"><img src=\"<?php echo $this->plugin_url . 'images/modify.png'; ?>\" /></div>\r\n <h2><?php _e('Pro Sites Management', 'psts'); ?></h2>\r\n\r\n <?php if ( $blog_id ) { ?>\r\n \t<h3><?php _e('Manage Site', 'psts') ?>\r\n\t\t\t<?php\r\n if ($name = get_blog_option($blog_id, 'blogname'))\r\n echo ': '.$name.' (Blog ID: '.$blog_id.')';\r\n\r\n echo '</h3>';\r\n\r\n \t\t$levels = (array)get_site_option('psts_levels');\r\n \t\t$current_level = $this->get_level($blog_id);\r\n $expire = $this->get_expire($blog_id);\r\n $result = $wpdb->get_row(\"SELECT * FROM {$wpdb->base_prefix}pro_sites WHERE blog_ID = '$blog_id'\");\r\n if ($result) {\r\n\t\t\t\tif ($result->term == 1 || $result->term == 3 || $result->term == 12)\r\n\t $term = sprintf(__('%s Month', 'psts'), $result->term);\r\n\t else\r\n\t $term = $result->term;\r\n\t\t\t} else {\r\n\t\t\t\t$term = 0;\r\n\t\t\t}\r\n\r\n if ($expire && $expire > time()) {\r\n echo '<p><strong>'.__('Current Pro Site', 'psts').'</strong></p>';\r\n\r\n echo '<ul>';\r\n\t\t\t\tif ($expire > 2147483647)\r\n\t\t\t\t\techo '<li>'.__('Pro Site privileges will expire: <strong>Never</strong>', 'psts').'</li>';\r\n\t\t\t\telse\r\n \techo '<li>'.sprintf(__('Pro Site privileges will expire on: <strong>%s</strong>', 'psts'), date_i18n(get_option('date_format'), $expire)).'</li>';\r\n\r\n echo '<li>'.sprintf(__('Level: <strong>%s</strong>', 'psts'), $current_level . ' - ' . @$levels[$current_level]['name']).'</li>';\r\n if ($result->gateway)\r\n\t\t\t\t\techo '<li>'.sprintf(__('Payment Gateway: <strong>%s</strong>', 'psts'), $result->gateway).'</li>';\r\n if ($term)\r\n \techo '<li>'.sprintf(__('Payment Term: <strong>%s</strong>', 'psts'), $term).'</li>';\r\n echo '</ul>';\r\n\r\n } else if ($expire && $expire <= time()) {\r\n echo '<p><strong>'.__('Expired Pro Site', 'psts').'</strong></p>';\r\n\r\n echo '<ul>';\r\n echo '<li>'.sprintf(__('Pro Site privileges expired on: <strong>%s</strong>', 'psts'), date_i18n(get_option('date_format'), $expire)).'</li>';\r\n\r\n echo '<li>'.sprintf(__('Previous Level: <strong>%s</strong>', 'psts'), $current_level . ' - ' . @$levels[$current_level]['name']).'</li>';\r\n if ($result->gateway)\r\n\t\t\t\t\techo '<li>'.sprintf(__('Previous Payment Gateway: <strong>%s</strong>', 'psts'), $result->gateway).'</li>';\r\n if ($term)\r\n\t\t\t\t\techo '<li>'.sprintf(__('Previous Payment Term: <strong>%s</strong>', 'psts'), $term).'</li>';\r\n echo '</ul>';\r\n\r\n } else {\r\n echo '<p><strong>\"'.get_blog_option($blog_id, 'blogname').'\" '.__('has never been a Pro Site.', 'psts').'</strong></p>';\r\n }\r\n\r\n\t\t//meta boxes hooked by gateway plugins\r\n if ( has_action('psts_subscription_info') || has_action('psts_subscriber_info') ) { ?>\r\n <div class=\"metabox-holder\">\r\n <?php if ( has_action('psts_subscription_info') ) { ?>\r\n\t\t\t<div style=\"width: 49%;\" class=\"postbox-container\">\r\n <div class=\"postbox\">\r\n <h3 class='hndle'><span><?php _e('Subscription Information', 'psts'); ?></span></h3>\r\n <div class=\"inside\">\r\n <?php do_action('psts_subscription_info', $blog_id); ?>\r\n </div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<?php } ?>\r\n\r\n <?php if ( has_action('psts_subscriber_info') ) { ?>\r\n <div style=\"width: 49%;margin-left: 2%;\" class=\"postbox-container\">\r\n <div class=\"postbox\">\r\n <h3 class='hndle'><span><?php _e('Subscriber Information', 'psts'); ?></span></h3>\r\n <div class=\"inside\">\r\n \t<?php do_action('psts_subscriber_info', $blog_id); ?>\r\n </div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t\t<?php } ?>\r\n\r\n <div class=\"clear\"></div>\r\n </div>\r\n <?php } ?>\r\n\r\n\t <div id=\"poststuff\" class=\"metabox-holder\">\r\n\t <div class=\"postbox\">\r\n\t <h3 class='hndle'><span><?php _e('Account History', 'psts') ?></span></h3>\r\n\t <div class=\"inside\">\r\n\t <span class=\"description\"><?php _e('This logs basically every action done in the system regarding the site for an audit trail.', 'psts'); ?></span>\r\n\t <div style=\"height:150px;overflow:auto;margin-top:5px;margin-bottom:5px;\">\r\n\t <table class=\"widefat\">\r\n\t <?php\r\n\t $log = get_blog_option($blog_id, 'psts_action_log');\r\n\t if (is_array($log) && count($log)) {\r\n\t $log = array_reverse($log, true);\r\n\t foreach ($log as $timestamp => $memo) {\r\n\t $class = (isset($class) && $class == 'alternate') ? '' : 'alternate';\r\n\t echo '<tr class=\"'.$class.'\"><td><strong>' . date_i18n( __('Y-m-d g:i:s a', 'psts'), $timestamp ) . '</strong></td><td>' . esc_html($memo) . '</td></tr>';\r\n\t\t\t\t\t\t\t\t}\r\n\t } else {\r\n\t echo '<tr><td colspan=\"2\">'.__('No history recorded for this site yet.', 'psts').'</td></tr>';\r\n\t }\r\n\t\t\t\t\t\t\t?>\r\n\t </table>\r\n\t </div>\r\n\t\t\t\t\t<form method=\"post\" action=\"\">\r\n\t\t\t\t\t\t<input type=\"text\" placeholder=\"Add a custom log entry...\" name=\"log_entry\" style=\"width:91%;\" /> <input type=\"submit\" class=\"button-secondary\" name=\"add_log_entry\" value=\"<?php _e('Add &raquo;', 'psts') ?>\" style=\"width:8%;float:right;\" />\r\n\t\t\t\t\t</form>\r\n\t </div>\r\n\t </div>\r\n\t </div>\r\n\r\n\r\n <div id=\"poststuff\" class=\"metabox-holder\">\r\n\r\n <div style=\"width: 49%;\" class=\"postbox-container\">\r\n <div class=\"postbox\">\r\n\t\t <h3 class='hndle'><span><?php _e('Manually Extend Pro Site Status', 'psts') ?></span></h3>\r\n\t\t <div class=\"inside\">\r\n\t\t <span class=\"description\"><?php _e('Please note that these changes will not adjust the payment dates or level for any existing subscription.', 'psts'); ?></span>\r\n\t\t <form method=\"post\" action=\"\">\r\n\t\t <table class=\"form-table\">\r\n\t\t <?php wp_nonce_field('psts_extend') ?>\r\n\t\t <input type=\"hidden\" name=\"bid\" value=\"<?php echo $blog_id; ?>\" />\r\n\t\t <tr valign=\"top\">\r\n\t\t <th scope=\"row\"><?php _e('Period', 'psts') ?></th>\r\n\t\t <td><select name=\"extend_months\">\r\n\t\t \t<?php\r\n\t\t \t\tfor ( $counter = 0; $counter <= 36; $counter += 1) {\r\n\t\t echo '<option value=\"' . $counter . '\">' . $counter . '</option>' . \"\\n\";\r\n\t\t \t\t}\r\n\t\t ?>\r\n\t\t </select><?php _e('Months', 'psts'); ?>\r\n\t\t <select name=\"extend_days\">\r\n\t\t \t<?php\r\n\t\t \t\tfor ( $counter = 0; $counter <= 30; $counter += 1) {\r\n\t\t echo '<option value=\"' . $counter . '\">' . $counter . '</option>' . \"\\n\";\r\n\t\t \t\t}\r\n\t\t ?>\r\n\t\t </select><?php _e('Days', 'psts'); ?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<?php _e('or', 'psts'); ?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n\t\t <label><input type=\"checkbox\" name=\"extend_permanent\" value=\"1\" /> <?php _e('Permanent', 'psts'); ?></label>\r\n\t\t <br /><?php _e('Period you wish to extend the site. Leave at zero to only change the level.', 'psts'); ?></td>\r\n\t\t </tr>\r\n\t\t <tr valign=\"top\">\r\n\t\t <th scope=\"row\"><?php _e('Level', 'psts') ?></th>\r\n\t\t <td><select name=\"extend_level\">\r\n\t\t \t<?php\r\n \t\tforeach ($levels as $level => $value) {\r\n\t\t\t\t\t\t\t\t?><option value=\"<?php echo $level; ?>\"<?php selected($current_level, $level) ?>><?php echo $level . ': ' . esc_attr($value['name']); ?></option><?php\r\n\t\t\t\t\t\t\t}\r\n\t\t ?>\r\n\t\t </select>\r\n\t\t <br /><?php _e('Choose what level the site should have access to.', 'psts'); ?></td>\r\n\t\t </tr>\r\n\t\t <tr valign=\"top\">\r\n\t\t\t\t\t\t\t<td colspan=\"2\" style=\"text-align:right;\"><input class=\"button-primary\" type=\"submit\" name=\"psts_extend\" value=\"<?php _e('Extend &raquo;', 'psts') ?>\" /></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t </table>\r\n\t\t\t\t\t<hr />\r\n\t\t <table class=\"form-table\">\r\n\t\t <tr valign=\"top\">\r\n\t\t\t\t\t\t\t<td><label>Transfer Pro status to Blog ID: <input type=\"text\" name=\"new_bid\" size=\"3\" /></label></td>\r\n\t\t\t\t\t\t\t<td style=\"text-align:right;\"><input class=\"button-primary psts_confirm\" type=\"submit\" name=\"psts_transfer_pro\" value=\"<?php _e('Transfer &raquo;', 'psts') ?>\" /></td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t </table>\r\n\t\t </form>\r\n\t\t </div>\r\n\t\t\t</div>\r\n\t </div>\r\n\r\n <?php if ( is_pro_site($blog_id) || has_action('psts_modify_form') ) { ?>\r\n\t <div style=\"width: 49%;margin-left: 2%;\" class=\"postbox-container\">\r\n\t <div class=\"postbox\">\r\n\t <h3 class='hndle'><span><?php _e('Modify Pro Site Status', 'psts') ?></span></h3>\r\n\t <div class=\"inside\">\r\n\t <form method=\"post\" action=\"\">\r\n\t <?php wp_nonce_field('psts_modify') ?>\r\n\t\t\t\t\t<input type=\"hidden\" name=\"bid\" value=\"<?php echo $blog_id; ?>\" />\r\n\r\n <?php do_action('psts_modify_form', $blog_id); ?>\r\n\r\n\t\t\t\t\t<?php if ( is_pro_site($blog_id) ) { ?>\r\n <p><label><input type=\"checkbox\" name=\"psts_remove\" value=\"1\" /> <?php _e('Remove Pro status from this site.', 'psts'); ?></label></p>\r\n\t \t\t<?php } ?>\r\n\t\t\t\t\t\r\n\t\t\t\t\t<?php if ($last_payment = $this->last_transaction($blog_id)) { ?>\r\n\t\t\t\t\t<p><label><input type=\"checkbox\" name=\"psts_receipt\" value=\"1\" /> <?php _e('Email a receipt copy for last payment to:', 'psts'); ?> <input type=\"text\" name=\"receipt_email\" value=\"<?php echo get_blog_option($blog_id, 'admin_email'); ?>\" /></label></p>\r\n\t\t\t\t\t<?php } ?>\r\n\t\t\t\t\t\r\n\t\t\t\t\t<p class=\"submit\">\r\n\t <input type=\"submit\" name=\"psts_modify\" class=\"button-primary psts_confirm\" value=\"<?php _e('Modify &raquo;', 'psts') ?>\" />\r\n\t </p>\r\n\t </form>\r\n\t </div>\r\n\t </div>\r\n\t </div>\r\n <?php } ?>\r\n </div>\r\n <?php\r\n\r\n\t\t//show blog_id form\r\n } else {\r\n ?>\r\n <div class=\"metabox-holder\">\r\n\t <div class=\"postbox\">\r\n\t <h3 class='hndle'><span><?php _e('Manage a Site', 'psts') ?></span></h3>\r\n\t <div class=\"inside\">\r\n\t <form method=\"get\" action=\"\">\r\n\t <table class=\"form-table\">\r\n\t <input type=\"hidden\" name=\"page\" value=\"psts\" />\r\n\t <tr valign=\"top\">\r\n\t <th scope=\"row\"><?php _e('Blog ID:', 'psts') ?></th>\r\n\t <td><input type=\"text\" size=\"17\" name=\"bid\" value=\"\" /> <input type=\"submit\" value=\"<?php _e('Continue &raquo;', 'psts') ?>\" /></td></tr>\r\n\t </table>\r\n\t </form>\r\n\t\t\t\t\t<hr />\r\n\t\t\t\t\t<form method=\"get\" action=\"sites.php\" name=\"searchform\">\r\n\t <table class=\"form-table\">\r\n\t <tr valign=\"top\">\r\n\t <th scope=\"row\"><?php _e('Or search for a site:', 'psts') ?></th>\r\n\t <td><input type=\"text\" size=\"17\" value=\"\" name=\"s\"/> <input type=\"submit\" value=\"<?php _e('Search Sites &raquo;', 'psts') ?>\" id=\"submit_sites\" name=\"submit\"/></td></tr>\r\n\t </table>\r\n\t </form>\r\n\t </div>\r\n\t </div>\r\n </div>\r\n <?php\r\n }\r\n echo '</div>';\r\n\t}", "public function trasnaction(){\n\n\t}", "private function _autoRefundRecharge() {\n $where = array('state' => 0, 'add_time' => array('lt', time() - 5 * 3600));\n $list = $this->db->table('rides_recharge')->where($where)->select();\n $this->load->library('sys_model/deposit');\n $this->load->library('sys_model/orders');\n //print_r($this->db->getLastSql());\n\t//print_r($list);exit;\n foreach ($list as $rides_recharge) {\n //申请退款表里有记录\n $cashInfo = $this->sys_model_deposit->getDepositCashInfo(array('pdr_sn' => $rides_recharge['recharge_sn']));\n if ($cashInfo) {\n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n //continue;\n }\n //print_r($cashInfo);exit;\n $order_info = $this->sys_model_orders->getOrdersInfo(array('order_sn' => $rides_recharge['order_sn']));\n if (!$order_info) {\n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n //continue;\n }\n //print_r($order_info);exit;\n if ($order_info['order_state'] != 2) { \n //$this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n // continue;\n }\n\n $recharge_info = $this->sys_model_deposit->getRechargeInfo(array('pdr_sn' => $rides_recharge['recharge_sn']));\n //print_r($recharge_info);exit;\n if ($recharge_info) {\n if ($recharge_info['pdr_payment_state'] != 1) {\n continue;\n }\n\n if ($order_info['pay_amount'] >= $recharge_info['pdr_amount']) {\n $this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n continue;\n }\n\n $amount = $recharge_info['pdr_amount'] - $order_info['pay_amount'];\n //部分退款反映到充值表\n\t\t//print_r($amount);exit;\n $recharge_info['cash_amount'] = $amount;\n $recharge_info['admin_id'] = 0;\n $recharge_info['admin_name'] = 'system';\n\n $result = $this->sys_model_deposit->cashApply($recharge_info);\n //$result['state'] = true;\n if ($result['state']) {\n $pdc_info = array(\n 'pdc_id' => $result['data']['pdc_id'],\n 'pdc_sn' => $result['data']['pdc_sn'],\n 'pdc_user_id' => $recharge_info['pdr_user_id'],\n 'pdc_user_name' => $recharge_info['pdr_user_name'],\n 'pdc_payment_name' => $recharge_info['pdr_payment_name'],\n 'pdc_payment_code' => $recharge_info['pdr_payment_code'],\n 'pdc_payment_type' => $recharge_info['pdr_payment_type'],\n 'pdc_payment_state' => '0',\n 'pdr_amount' => $recharge_info['pdr_amount'],\n 'has_cash_amount' => 0,\n 'cash_amount' => $recharge_info['cash_amount'],\n 'pdr_sn' => $recharge_info['pdr_sn'],\n 'trace_no' => $recharge_info['trace_no'],\n 'admin_id' => $recharge_info['admin_id'],\n 'admin_name' => $recharge_info['admin_name'],\n 'pdc_type' => $recharge_info['pdr_type'],\n );\n //print_r($pdc_info);exit;\n $ssl_cert_path = DIR_SYSTEM . 'library/payment/cert/' . $this->config->get('config_wxpay_ssl_cert_path') . '/' . $recharge_info['pdr_payment_type'] . '/apiclient_cert.pem';\n $ssl_key_path = DIR_SYSTEM . 'library/payment/cert/' . $this->config->get('config_wxpay_ssl_cert_path') . '/' . $recharge_info['pdr_payment_type'] . '/apiclient_key.pem';\n //print_r($ssl_cert_path);\n //print_r($ssl_key_path);exit;\n define('WX_SSLCERT_PATH', $ssl_cert_path);\n define('WX_SSLKEY_PATH', $ssl_key_path);\n $result = $this->sys_model_deposit->wxPayRefund($pdc_info);\n if ($result['state'] == true) {\n $this->_changeRidesRechargeStatus($rides_recharge['recharge_sn']);\n $this->sys_model_orders->updateOrders(array('order_id' => $order_info['order_id']), array('refund_state' => 1));\n }\n\t\t echo 'success', \"\\n\";\n }\n }\n }\n }", "public static function rac_manual_recovered() {\n\n check_ajax_referer('recover-status', 'rac_security');\n\n if (isset($_POST['row_id'])) {\n $args = array('ID' => $_POST['row_id'],\n 'post_status' => 'rac-cart-recovered',\n 'post_type' => 'raccartlist'\n );\n wp_update_post($args);\n echo 1;\n }\n exit();\n }", "private function approve() {\n\n }", "public function actionRevisedratesreport()\n {\n $res = AllocationManager::getRevisedRatesData();\n return $this->render('revised-rates-report',['res' => $res]);\n\n }", "function editAlterRate($design_no, $suit_rate,$dupatta_rate, $ghagra_rate, $blause_rate, $total_rate)\n\t\n\t{\n\t\t/*$stock_id\t\t\t =\tmysql_real_escape_string(trim($stock_id));*/\n\t\t$design_no\t \t\t=\ttrim($design_no);\n\t\t$suit_rate\t\t\t \t\t= mysql_real_escape_string(trim($suit_rate));\n\t\t$dupatta_rate\t\t\t =\tmysql_real_escape_string(trim($dupatta_rate));\n\t\t$ghagra_rate\t\t =\tmysql_real_escape_string(trim($ghagra_rate));\n\t\t$blause_rate\t\t =\tmysql_real_escape_string(trim($blause_rate));\n\t\t$total_rate\t\t\t =\tmysql_real_escape_string(trim($total_rate));\n\t\t\n\t\t//update stock description\n\t\t$edit = \"UPDATE alter_rate\n\t\t\t\tSET\n\t\t\t\tdesign_no\t\t \t= '$design_no',\n\t\t\t\tsuit_rate\t\t\t= '$suit_rate',\n\t\t\t\tdupatta_rate\t\t= '$dupatta_rate',\n\t\t\t\tghagra_rate \t\t= '$ghagra_rate',\n\t\t\t\tblause_rate \t\t= '$blause_rate',\n\t\t\t\ttotal_rate\t\t = '$total_rate',\n\t\t\t\tmodified_on\t\t\t= now()\n\t\t\t\tWHERE\n\t\t\t\trate_id \t\t\t= '$rate_id'\n\t\t\t\t\";\n\t\t$query = mysql_query($edit);\n\t\t//echo $edit.mysql_error();exit;\n\t\t\n\t}", "public function updateReward($UserID) { $Rank = $this->rank($UserID);\n $SpecialRank = $this->specialRank($UserID);\n $HasAll = $SpecialRank == MAX_SPECIAL_RANK;\n $Counter = 0;\n $Insert = array();\n $Values = array();\n $Update = array();\n\n $Insert[] = \"UserID\";\n $Values[] = \"'$UserID'\";\n if ($Rank >= 1 || $HasAll) {\n }\n if ($Rank >= 2 || $HasAll) {\n if (isset($_POST['donor_icon_mouse_over_text'])) {\n $IconMouseOverText = db_string($_POST['donor_icon_mouse_over_text']);\n $Insert[] = \"IconMouseOverText\";\n $Values[] = \"'$IconMouseOverText'\";\n $Update[] = \"IconMouseOverText = '$IconMouseOverText'\";\n }\n $Counter++;\n }\n if ($Rank >= 3 || $HasAll) {\n if (isset($_POST['avatar_mouse_over_text'])) {\n $AvatarMouseOverText = db_string($_POST['avatar_mouse_over_text']);\n $Insert[] = \"AvatarMouseOverText\";\n $Values[] = \"'$AvatarMouseOverText'\";\n $Update[] = \"AvatarMouseOverText = '$AvatarMouseOverText'\";\n }\n $Counter++;\n }\n if ($Rank >= 4 || $HasAll) {\n if (isset($_POST['donor_icon_link'])) {\n $CustomIconLink = db_string($_POST['donor_icon_link']);\n if (!Misc::is_valid_url($CustomIconLink)) {\n $CustomIconLink = '';\n }\n $Insert[] = \"CustomIconLink\";\n $Values[] = \"'$CustomIconLink'\";\n $Update[] = \"CustomIconLink = '$CustomIconLink'\";\n }\n $Counter++;\n }\n\n for ($i = 1; $i <= $Counter; $i++) {\n $this->addProfileInfoReward($i, $Insert, $Values, $Update);\n }\n if ($Rank >= MAX_RANK || $HasAll) {\n if (isset($_POST['donor_icon_custom_url'])) {\n $CustomIcon = db_string($_POST['donor_icon_custom_url']);\n if (!Misc::is_valid_url($CustomIcon)) {\n $CustomIcon = '';\n }\n $Insert[] = \"CustomIcon\";\n $Values[] = \"'$CustomIcon'\";\n $Update[] = \"CustomIcon = '$CustomIcon'\";\n }\n $this->updateTitle($UserID, $_POST['donor_title_prefix'], $_POST['donor_title_suffix'], $_POST['donor_title_comma']);\n $Counter++;\n }\n if ($SpecialRank >= 4) {\n if (isset($_POST['second_avatar'])) {\n $SecondAvatar = db_string($_POST['second_avatar']);\n if (!Misc::is_valid_url($SecondAvatar)) {\n $SecondAvatar = '';\n }\n $Insert[] = \"SecondAvatar\";\n $Values[] = \"'$SecondAvatar'\";\n $Update[] = \"SecondAvatar = '$SecondAvatar'\";\n }\n if (isset($_POST['limitedcolor']) && (preg_match('/^#[a-fA-F0-9]{6}$/', $_POST['limitedcolor']) || $_POST['limitedcolor'] == '')) {\n $ColorUsername = db_string($_POST['limitedcolor']);\n $Insert[] = \"ColorUsername\";\n $Values[] = \"'$ColorUsername'\";\n $Update[] = \"ColorUsername = '$ColorUsername'\";\n }\n }\n if ($SpecialRank >= 5) {\n if (isset($_POST['unlimitedcolor']) && (preg_match('/^#[a-fA-F0-9]{6}$/', $_POST['unlimitedcolor']) || $_POST['unlimitedcolor'] == '')) {\n $ColorUsername = db_string($_POST['unlimitedcolor']);\n $Insert[] = \"ColorUsername\";\n $Values[] = \"'$ColorUsername'\";\n $Update[] = \"ColorUsername = '$ColorUsername'\";\n }\n if (isset($_POST['gradientscolor']) && (preg_match('/^#[a-fA-F0-9]{6}(,#[a-fA-F0-9]{6}){1,2}$/', $_POST['gradientscolor']) || $_POST['gradientscolor'] == '')) {\n $GradientsColor = db_string($_POST['gradientscolor']);\n $Insert[] = \"GradientsColor\";\n $Values[] = \"'$GradientsColor'\";\n $Update[] = \"GradientsColor = '$GradientsColor'\";\n }\n }\n $Insert = implode(', ', $Insert);\n $Values = implode(', ', $Values);\n $Update = implode(', ', $Update);\n if ($Counter > 0) {\n $QueryID = $this->db->get_query_id();\n $this->db->query(\"\n\t\t\t\tINSERT INTO donor_rewards\n\t\t\t\t\t($Insert)\n\t\t\t\tVALUES\n\t\t\t\t\t($Values)\n\t\t\t\tON DUPLICATE KEY UPDATE\n\t\t\t\t\t$Update\");\n $this->db->set_query_id($QueryID);\n }\n $this->cache->delete_value(\"donor_profile_rewards_$UserID\");\n $this->cache->delete_value(\"donor_info_$UserID\");\n }", "public function rateUser()\n {\n\t\t$userSession = \\Utility\\Singleton::getInstance(\"\\Control\\Session\");\n\t\t$userLog = $userSession->get('username');\n\t\t$user = new \\Foundation\\User();\n\t\t$view = \\Utility\\Singleton::getInstance(\"\\View\\Main\");\n\t\t$username=$view->get('userProfile');\n\t\t\n\t\t$hasAlreadyRated=$this->hasVoted($username, $userLog);\n\t\t$vote=$view->get('vote');\n\t\t\n if(!$hasAlreadyRated)\n {\t\t\t\n $votation=$user->usersVotation($username, $userLog, $vote);\n $reliabilityVotes = $user->getNumberOfReliabilityVotes($username);\n \n $user2=$user->getByUsername($username);\n $user2->updateReliabilityScore($reliabilityVotes,$vote);\n \n $isUpdated=$user->updateReliabilityScore($username,$user2->getReliability());\n\n return $votation; /** @todo add a return for the else statement*/\n\t\t}\n // else return something\n\t}", "function updaterating($sel_id)\n{\n global $xoopsDB;\n $sel_id = intval($sel_id);\n $sql = \"SELECT COUNT(*), FORMAT(AVG(rating),4) FROM \" . $xoopsDB->prefix(\"mylinks_votedata\") . \" WHERE lid={$sel_id}\";\n $voteResult = $xoopsDB->query($sql);\n if ($voteResult) {\n list($votesDB, $finalrating) = $xoopsDB->fetchRow($voteResult);\n/*\n $query = \"SELECT rating FROM \" . $xoopsDB->prefix(\"mylinks_votedata\") . \" WHERE lid={$sel_id}\";\n $voteresult = $xoopsDB->query($query);\n $votesDB = $xoopsDB->getRowsNum($voteresult);\n $totalrating = 0;\n while(list($rating)=$xoopsDB->fetchRow($voteresult)){\n $totalrating += $rating;\n }\n $finalrating = $totalrating/$votesDB;\n $finalrating = number_format($finalrating, 4);\n*/\n $query = \"UPDATE \" . $xoopsDB->prefix(\"mylinks_links\") . \" SET rating={$finalrating}, votes={$votesDB} WHERE lid = {$sel_id}\";\n $xoopsDB->query($query) or exit();\n }\n}", "public function postCreditModel(Request $request)\n {\n $input = Input::all();\n //echo $input['ResetCreditModel'];\n //dd($input);\n \n $rules = [\n 'remark' => 'required_if:rejectProposal,RejectProposal',\n ];\n $this->validate($request, $rules);\n $loanId = $input['loanId'];\n $ratingsId = null;\n //$finalRating = $input['final_rating'];\n if(isset($input['resetProposal'])){\n // echo \"Reset code\";\n //find loan id take id from loan id\n // $user = AnalystModelRating::findOrFail('157')->delete();\n //$user = AnalystModelRating::ratingDetails()->get('157');\n\n $deltedRecord= $input['analyst_model_rating_details'][1]['ratings_id'];\n\n $comments = AnalystModelRating::find($deltedRecord);\n $comments->ratingDetails()->delete();\n $comments->delete();\n $redirectUrl = 'loans/credit-model/' . $loanId;\n return Redirect::to($redirectUrl);\n\n //$user = AnalystModelRating::findOrFail('157')->on('loan_id')->delete();\n \n // AnalystModelRatingDetails::updateOrCreate(['id' => $id], $record); //Loan_id\n\n }else{\n if (isset($input['rejectProposal']) && $input['rejectProposal'] == 'RejectProposal') {\n $loansStatus = LoansStatus::updateOrCreate(['loan_id' => $loanId], ['loan_id' => $loanId, 'rejected' => 'Y', 'remark' => $input['remark']]);\n $loansStatus->save();\n $this->getLoansStatus($loanId);\n } else {\n if (isset($input['ratings_id'])) {\n $ratingsId = $input['ratings_id'];\n }\n if (!isset($input['status'])) {\n $record['status'] = 1;\n }\n $ratingsModel = AnalystModelRating::updateOrCreate(['id' => $ratingsId], $input);\n $ratingsId = $ratingsModel->id;\n $modelRatingsDetailsList = new Collection($input['analyst_model_rating_details']);\n /* echo \"<pre>\";\n print_r($modelRatingsDetailsList);\n echo \"</pre>\";*/\n foreach ($modelRatingsDetailsList as $record) {\n $id = null; //yes\n if (isset($record['id']) && !empty($record['id'])) { \n echo $id = $record['id'];\n }\n if (!isset($record['ratings_id']) || empty($record['ratings_id'])) {\n $record['ratings_id'] = $ratingsId; //yes\n }\n if (!isset($record['status']) || empty($record['status'])) {\n $record['status'] = 1;\n }\n// echo $id.'sa';\n\n \n AnalystModelRatingDetails::updateOrCreate(['id' => $id], $record);\n }\n/*echo \"<pre>\";\nprint_r($record);\necho \"</pre>\";\ndie();*/\n //session()->flash('flash_message', 'Credit Model was successfully saved!');\n$loansStatus = LoansStatus::updateOrCreate(['loan_id' => $loanId], ['loan_id' => $loanId, 'credit_model' => 'Y', 'rejected' => 'N', 'remark' => null]);\n$loansStatus->save();\n$this->getLoansStatus($loanId);\n}\n\n // echo \"string\";\n$validLoanHelper = new validLoanUrlhelper();\nif (isset($loanId)) {\n // echo \"string\";\n\n $isCollateralVisible = $validLoanHelper->collateralModel($loanId);\n\n if ($isCollateralVisible) {\n\n $redirectUrl = $redirectUrl = 'loans/collateral-model/' . $loanId;\n } else {\n if (isset($input['submitToBank']) && $input['submitToBank'] == 'Save') {\n session()->flash('message', 'Credit Model was successfully saved! please Create Proposal');\n $redirectUrl = 'home';\n } elseif (isset($input['simpleSave']) && $input['simpleSave'] == 'Save') {\n $redirectUrl = 'loans/credit-model/' . $loanId;\n }\n }\n}\n //$redirectUrl = 'loans/collateral-model/' . $loanId;\n //$redirectUrl = 'loans/data-cash-flow-model/' . $loanId;\nreturn Redirect::to($redirectUrl);\n}\n\n}", "public function update_ratting_data() {\n\t\tglobal $wpdb;\n\t\t$sso = new Top_Ratter_SSO ();\n\t\t// get the ratting data from sso class\n\t\t$journal_records=$sso->esi_api_gather_ratted_isk_amount();\n\t\t\n\t\tif ($journal_records == null) {\n\t\t echo'<p>Problem with API :(</p>';\n\t\t\treturn;\n\t\t}\n\t\tif($journal_records=='no_officer_token'){\n\t\t echo'<p>There is no officer token, inform officers. Pretty please?</p>';\n\t\t return;\n\t\t}\n\n\t\t$bounties_array = $this->filter_ratting_data ( $journal_records);\n\t\t$structures_array = $this->filter_ratting_data ( $journal_records,true);\n\t\t\n\t\t/*\n\t\t * Bounties akka ratting data to be inserted.\n\t\t */\n\t\tif($bounties_array){\n\t\t \n\t\t $this->insert_new_characters_in_database($bounties_array);\n\t\t \n\t\t $bounties_to_insert=null;\n\t\t \n\t\t $sql_max_ref_id=\"SELECT MAX(`ref_id`) AS ref_id FROM `\" . $wpdb->prefix . \"tr_ratting_data`\";\n\t\t $max_ref_id=$wpdb->get_row($sql_max_ref_id,ARRAY_A); \n\t\t \n\t\t if($max_ref_id['ref_id']!==NULL){\n\t\t foreach($bounties_array as $bounty_record){\n\t\t // select only those that is not in the db\n\t\t if($bounty_record['ref_id']>(float)$max_ref_id['ref_id']){\n\t\t //this is new record that is not in the db yet\n\t\t $bounties_to_insert[]=$bounty_record;\n\t\t } \n\t\t }\n\t\t }else{\n // insert all since nothing in db\n\t\t $bounties_to_insert=$bounties_array;\n\t\t }\n\t\t \n\t\t if($bounties_to_insert){\n\t\t $sql=\"INSERT INTO `\" . $wpdb->prefix . \"tr_ratting_data`(`owner_id`, `date_acquired`, `amount`, `system_id`, `npc_kills`, `ref_id`) VALUES\";\n\t\t $count=count($bounties_to_insert);\n\t\t $i=1;\n\t\t foreach($bounties_to_insert as $record){\n\t\t $system_id=0;\n\t\t if($record['extra_info']['system_id']){\n\t\t $system_id=$record['extra_info']['system_id'];\n\t\t }\n\t\t $sql.='(\"'.$record['second_party_id'].'\",\"'.$record['date'].'\",\"'.$record['tax'].'\",\"'.$system_id.'\",\"'.$record['npc_kills'].'\",\"'.$record['ref_id'].'\")';\n\t\t \n\t\t if($i==$count){\n\t\t $sql.='';\n\t\t }else{\n\t\t $sql.=',';\n\t\t }\n\t\t $i++;\n\t\t }\n\t\t $sql.=';';\n\t\t $wpdb->query($sql);\n\t\t } \n\t\t}\n\t\t\n\t\t/*\n\t\t * Structures data insert starts here\n\t\t */\n\t\tif($structures_array){\n\t\t $sql=\"INSERT INTO `\" . $wpdb->prefix . \"tr_structures_income`(`ref_id`, `date_acquired`, `amount`, `ref_type`) VALUES\";\n\t\t $count=count($structures_array);\n\t\t $i=1;\n\t\t foreach($structures_array as $record){\n\t\t \n\t\t $sql.='(\"'.$record['ref_id'].'\",\"'.$record['date'].'\",\"'.$record['amount'].'\",\"'.$record['ref_type'].'\")';\n\t\t \n\t\t if($i==$count){\n\t\t $sql.='';\n\t\t }else{\n\t\t $sql.=',';\n\t\t }\n\t\t $i++;\n\t\t }\n\t\t $sql.=';';\n\t\t $wpdb->query($sql); \n\t\t}\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t}", "public function edit(Rating $rating)\n {\n //\n }", "public function give_rate_to_car(){\n\t\t\t/* language changer */\n\t\t$this->language = ($this->input->get('language') == \"\")?\"english\":$this->input->get('language');\n\t\t$this->lang->load('master', \"$this->language\");\n\t\t\n\t\tif($this->input->post()){\n\t\t\t$request_para = array();\n\n\t\t\t$rating_para['rating'] = $this->input->post('rating');\n\t\t\t$rating_para['remarks'] = $this->input->post('remarks');\n\t\t\t$rating_para['given_by'] = $this->input->post('car_renter_id');\n\t\t\t$rating_para['car_id'] = $this->input->post('car_id');\n\t\t\t$rating_para['booking_request_id'] = $this->input->post('booking_id');\n\t\t\t$rating_para['date'] = date('Y-m-d H:i:s');\n\n\t\t\tif($this->rating_model->rate_car($rating_para)){\n\n\t\t\t\t$isSuccess = True;\n\t\t\t\t$message = $this->lang->line('action_performed_successfully');\n\t\t\t\t$data = array(); \n\n\t\t\t}else{\n\t\t\t\t$isSuccess = False;\n\t\t\t\t$message = $this->lang->line('not_able_to_perform_this_action');\n\t\t\t\t$data = array(); \n\t\t\t}\n\n\t\t}else{\n\t\t\t$isSuccess = False;\n\t\t\t$message = $this->lang->line('request_parameters_not_valid');\n\t\t\t$data = array(); \n\n\t\t}\n\n\t\techo json_encode(array(\"isSuccess\" => $isSuccess, \"message\" => $message, \"Result\" => $data));\t\n\n\t}", "protected function doRefundPayment() {\n throw new \\Exception('Child classes must override this method to support payment refund.');\n }", "public function rating()\n\t{\n\t\tif ( !( $this instanceof \\IPS\\Node\\Ratings ) )\n\t\t{\n\t\t\tthrow new \\BadMethodCallException;\n\t\t}\n\t\t\n\t\tif ( $this->canRate() )\n\t\t{\n\t\t\t$idColumn = static::$databaseColumnId;\n\t\t\t\t\t\t\n\t\t\t$form = new \\IPS\\Helpers\\Form('rating');\n\t\t\t$form->add( new \\IPS\\Helpers\\Form\\Rating( 'rating', $this->averageRating() ) );\n\t\t\t\n\t\t\tif ( $values = $form->values() )\n\t\t\t{\n\t\t\t\t\\IPS\\Db::i()->insert( 'core_ratings', array(\n\t\t\t\t\t'class'\t\t=> get_called_class(),\n\t\t\t\t\t'item_id'\t=> $this->$idColumn,\n\t\t\t\t\t'member'\t=> \\IPS\\Member::loggedIn()->member_id,\n\t\t\t\t\t'rating'\t=> $values['rating'],\n\t\t\t\t\t'ip'\t\t=> \\IPS\\Request::i()->ipAddress()\n\t\t\t\t), TRUE );\n\t\t\t\t\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_average'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_average'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'AVG(rating)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_total'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_total'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'SUM(rating)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_hits'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_hits'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'COUNT(*)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\n\t\t\t\t$this->save();\n\t\t\t\t\n\t\t\t\tif ( \\IPS\\Request::i()->isAjax() )\n\t\t\t\t{\n\t\t\t\t\t\\IPS\\Output::i()->json( 'OK' );\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\treturn $form->customTemplate( array( call_user_func_array( array( \\IPS\\Theme::i(), 'getTemplate' ), array( 'forms', 'core' ) ), 'ratingTemplate' ) );\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn \\IPS\\Theme::i()->getTemplate( 'global', 'core' )->rating( 'veryLarge', $this->averageRating() );\n\t\t}\n\t}", "function pp_ajaxRating2wp_postRating_migrate_callback() {\n echo json_encode($GLOBALS['PP_AjaxRatings_Importer']->pp_ajaxRating2wp_postRating($_GET['pp_post_id']));\n die();\n}", "public function refundTransaction() {\n //not implemented\n }", "public function updaterefundsAction()\n {\n $this->getResponse()->setBody(self::getHelper()->updaterefunds());\n\n }", "function refund_donation($donor_perfect_donation_id, $donation){\n\n/*\nIf a gift record has been created in DPO and you cancel or void the transaction in Donately / Authorize.net then the procedure in DPO is as follows:\n\na) Create an identical record in DPO to the original gift record but multiply the following 4 fields by -1.\na. DPGIFT.AMOUNT, dpgiftudf.[AMOUNT_USD], dpgiftudf.[AMOUNT_GBP], dpgiftudf.[AMOUNT_EUR]\na. dpgiftudf.[GIFT_NEGATED] = ‘Y’\nb. dpgiftudf.[GIFT_ADJ_REASON] = ‘NEGATE_REFUND’; ‘NEGATE_DUP’; ‘NEGATE_AMOUNT’; ‘NEGATE_GL_CODE’; ‘NEGATE_BOUNCE’; ‘NEGATE_DONOR’ as appropriate\n*/\t\t\n\n\t\t$refund_params = \"action=UPDATE dpgiftudf SET gift_negated='Y', gift_adj_reason='NEGATE_REFUND', amount_usd='\".($this->convert_amount_in_cents_to_amount($donation->amount_in_cents) * -1).\"' \";\n\t\t$refund_params .= \"WHERE gift_id='{$donor_perfect_donation_id}'\";\n\t\t$refund_response = $this->make_dpo_api_request($refund_params);\n\t\tif( isset($refund_response->dpo_response->record->field) ){\n\t\t\tforeach($refund_response->dpo_response->record->field->attributes() as $att){\n\t\t\t\tif( (int)$att > 1 ){\n\t\t\t\t\t$donor_perfect_donation_id = (int)$att;\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\n\t\telse{\n\t\t\treturn $refund_response;\n\t\t}\n\t\tprint_r($refund_response);\n\t\t\n\t}", "function tripconfirm($id) {\n \n $tripdetails = $this->trip_model->get_tripdetail($id);\n //var_dump($tripdetails);\n \n if (!empty($tripdetails) && !empty($this->user['user_id'])) {\n $fees = $this->Money_model->tobank_usermoney($this->user['user_id'],$tripdetails['trip_id']);\n if($fees) { \n /**/\n $param['payment_flg'] = '1';\n $this->db->where('tbl_enquires.enquiry_trip_id',$tripdetails['trip_id']);\n $this->db->update('tbl_enquires', $param); \n\n $this->Money_model->change_usermoney($tripdetails['trip_user_id'],$fees);\n\n $this->db->where('tbl_users.user_id',$tripdetails['trip_user_id']);\n $user_rating = $this->db->get('tbl_users')->result();\n \n $param_user['user_rating'] = $user_rating[0]->user_rating + 1;\n $this->db->where('tbl_users.user_id',$tripdetails['trip_user_id']);\n $this->db->update('tbl_users', $param_user); \n\n $logdata['user']=$this->user['user_id'];\n $logdata['action']='confirm trip #'.$tripdetails['trip_id'].', rating user #'.$tripdetails['trip_user_id'].' = '.$param_user['user_rating'];\n logAll($logdata);\n\n }\n }\n\n redirect('addtrip/upcoming_trip_passenger', 'refresh');\n/**/\n }", "public function refund($options);", "public function RateReview($bRateUp = true)\n {\n if (false == $this->ReviewRatedByActiveUser()) {\n $sRateString = 'helpful_count';\n //helpful_count\n //not_helpful_count\n if (false == $bRateUp) {\n $sRateString = 'not_helpful_count';\n }\n $query = 'UPDATE `'.MySqlLegacySupport::getInstance()->real_escape_string($this->table).\"`\n SET `{$sRateString}` = `{$sRateString}`+1\n WHERE `id` = '\".MySqlLegacySupport::getInstance()->real_escape_string($this->id).\"'\n LIMIT 1\n \";\n MySqlLegacySupport::getInstance()->query($query);\n // get value from disc\n $query = \"SELECT `{$sRateString}` FROM `\".MySqlLegacySupport::getInstance()->real_escape_string($this->table).\"` WHERE `id` = '\".MySqlLegacySupport::getInstance()->real_escape_string($this->id).\"'\";\n if ($aTmp = MySqlLegacySupport::getInstance()->fetch_assoc(MySqlLegacySupport::getInstance()->query($query))) {\n $this->sqlData[$sRateString] = $aTmp[$sRateString];\n if ($bRateUp) {\n $this->fieldHelpfulCount = $this->sqlData[$sRateString];\n } else {\n $this->fieldNotHelpfulCount = $this->sqlData[$sRateString];\n }\n }\n if (!array_key_exists('TPkgShopArticleReviewShopArticleReviewRated', $_SESSION)) {\n $_SESSION['TPkgShopArticleReviewShopArticleReviewRated'] = array();\n }\n $_SESSION['TPkgShopArticleReviewShopArticleReviewRated'][(string) $this->id] = time();\n }\n }", "public function voteAction()\n {\n\n }", "function reffer_amount(){\n\t$user_id=$_REQUEST['user_id'];\n\tif(!empty($user_id)){\n\t $reffer_records = $this -> conn -> get_all_records('reffer_amount');\n\t\t$refferal_amount = $reffer_records[0]['reffer_amount'];\n\t\n\t\t\t$records = $this -> conn -> get_table_row_byidvalue_sum('refferal_records', 'refferal_frnd_id', $user_id,'refferal_amount');\n\t\t$user_reffer_amount = $records[0]['total'];\n\t\tif(!empty($user_reffer_amount)){\n\t\t\t$user_reffer_amount=$user_reffer_amount;\n\t\t}else{\n\t\t\t$user_reffer_amount='0';\n\t\t}\n\t\t\t$post = array(\"status\" => \"true\",'reffer_amount'=>$refferal_amount,'user_total_reffer_amount'=>$user_reffer_amount,'user_id'=>$user_id);\n\t\t\n\t\t}else{\n\t\t\t$post = array(\"status\" => \"false\",'message'=>'missing parameter','user_id'=>$user_id);\n\t\t}\n\t\t\techo $this -> json($post);\n}", "function editRating($param, $sqlConnection)\r\n{\r\n\t$uid = intval($param['userID']);\r\n\t$aid = intval($param['albumID']);\r\n\t$rating = floatval($param['rating']);\r\n\t$sqlSuccess = get_sql_results($result, $sqlConnection,\r\n\t\t\t\"UPDATE Rates SET rating=$rating \".\r\n\t\t\t\"WHERE userID=$uid AND \".\r\n\t\t\t\"albumID=$aid\");\r\n\treturn $sqlSuccess;\r\n}", "function bill_recharge() {\n\t\t$coupon_id = $_REQUEST['coupon_id'];\n\t\t$coupon_amount = $_REQUEST['coupon_amount'];\n\t\t$recharge_user_id = $_REQUEST['recharge_user_id'];\n\t\t$wt_category = $_REQUEST['wt_category'];\n\t\t// wt_category = 11 pay bill\n\t\t$bill_category_id = $_REQUEST['bill_category_id'];\n\t\t// 1- Water, 2- Movies etc\n\t\t$biller_id = $_REQUEST['biller_id'];\n\t\t$bill_amount = $_REQUEST['bill_amount'];\n\t\t$bill_consumer_no = $_REQUEST['bill_consumer_no'];\n\t\t$wallet_type = 2;\n\t\t// 1- Credit, 2-Debit\n\t\t$bill_pay_status = 1;\n\n\t\t$wallet_category = '4';\n\t\t// 4- Cashback\n\t\t$current_date = date(\"Y-m-d h:i:sa\");\n\n\t\tif ($wt_category == '11') {\n\t\t\t$wt_desc = 'PaY Bill';\n\t\t}\n\n\t\tif (!empty($bill_consumer_no) && !empty($biller_id) && !empty($bill_amount) && !empty($recharge_user_id)) {\n\t\t\t//$bill_records = $this -> conn -> get_table_row_byidvalue('biller_user', 'biller_customer_id_no',$bill_consumer_no);\n\t\t\t$bill_records = $this -> conn -> get_table_field_doubles('biller_user', 'biller_customer_id_no', $bill_consumer_no, 'biller_id', $biller_id);\n\t\t\tif (!empty($bill_records)) {\n\t\t\t\t$bill_user_id = $bill_records['0']['biller_user_id'];\n\t\t\t\t$bill_pay_status = $bill_records['0']['bill_pay_status'];\n\t\t\t\tif ($bill_pay_status == '2') {\n\n\t\t\t\t\t$records = $this -> conn -> get_table_row_byidvalue('user', 'user_id', $recharge_user_id);\n\t\t\t\t\t$wallet_amount = $records['0']['wallet_amount'];\n\t\t\t\t\t$admin = $this -> conn -> get_all_records('admin');\n\t\t\t\t\t$admin_wallet = $admin['0']['admin_wallet'];\n\t\t\t\t\t$transaction_id = strtotime(\"now\") . mt_rand(10000000, 99999999);\n\t\t\t\t\t$reffer_status = $records['0']['reffer_amount_status'];\n\t\t\t\t\t$reffer_user_id = $records['0']['reffer_user_id'];\n\t\t\t\t\tif ($wallet_amount >= $bill_amount) {\n\t\t\t\t\t\t//$transaction_id='5454';\n\t\t\t\t\t\t$recharge = $this -> conn -> insertnewrecords('wallet_transaction', 'wt_user_id, wt_datetime,wt_type,wt_amount,wt_category,transaction_id,wt_desc', '\"' . $recharge_user_id . '\",\"' . $current_date . '\",\"' . $wallet_type . '\",\"' . $bill_amount . '\",\"' . $wt_category . '\",\"' . $transaction_id . '\",\"' . $wt_desc . '\"');\n\n\t\t\t\t\t\tif ($recharge) {\n\n\t\t\t\t\t\t\t$walletrecharge = $this -> conn -> insertnewrecords('bill_recharge', 'bill_user_id,bill_transaction_id,bill_category_id, biller_id,bill_consumer_no,bill_amount,bill_pay_date,bill_pay_status', '\"' . $recharge_user_id . '\",\"' . $transaction_id . '\",\"' . $bill_category_id . '\",\"' . $biller_id . '\",\"' . $bill_consumer_no . '\",\"' . $bill_amount . '\",\"' . $current_date . '\",\"' . $bill_pay_status . '\"');\n\n\t\t\t\t\t\t\t// change status of bill///\n\t\t\t\t\t\t\tif (!empty($walletrecharge)) {\n\n\t\t\t\t\t\t\t\t$data_frnd['bill_pay_status'] = 1;\n\t\t\t\t\t\t\t\t$data_frnd['bill_paid_date'] = $current_date;\n\t\t\t\t\t\t\t\t$update_toekn = $this -> conn -> updatetablebyid('biller_user', 'biller_user_id', $bill_user_id, $data_frnd);\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t//reffer amount when user first recharge then beifits add in frnd wallet\n\t\t\t\t\t\t\tif ($reffer_status == '2') {\n\t\t\t\t\t\t\t\t$frnd_records = $this -> conn -> get_table_row_byidvalue('user', 'user_id', $reffer_user_id);\n\n\t\t\t\t\t\t\t\t$reffer_records = $this -> conn -> get_all_records('reffer_amount');\n\t\t\t\t\t\t\t\t$refferal_amount = $reffer_records[0]['reffer_amount'];\n\t\t\t\t\t\t\t\t$user11_id = $frnd_records['0']['user_id'];\n\t\t\t\t\t\t\t\t$reffer_code_database = $frnd_records['0']['user_refferal_code'];\n\t\t\t\t\t\t\t\t$wallet = $frnd_records['0']['wallet_amount'];\n\t\t\t\t\t\t\t\t$frnd_number = $frnd_records['0']['user_contact_no'];\n\t\t\t\t\t\t\t\t$current_date = date(\"Y-m-d h:i:sa\");\n\t\t\t\t\t\t\t\t$transaction_id = strtotime(\"now\") . mt_rand(10000000, 99999999);\n\t\t\t\t\t\t\t\t$wt_type = 2;\n\t\t\t\t\t\t\t\t// credit in frnd acconnt\n\t\t\t\t\t\t\t\t$refferamount = $refferal_amount;\n\t\t\t\t\t\t\t\t// reffer amount\n\t\t\t\t\t\t\t\t$wt_category = 9;\n\t\t\t\t\t\t\t\t// refferal amount recieved in wallet\n\t\t\t\t\t\t\t\t$wt_desc = \"Refferal amount add in your wallet using by \" . $mobile;\n\n\t\t\t\t\t\t\t\t$add_reffer_money = $this -> conn -> insertnewrecords('refferal_records', 'refferal_user_id,refferal_frnd_id,refferal_amount,refferal_date', '\"' . $recharge_user_id . '\",\"' . $user11_id . '\",\"' . $refferamount . '\",\"' . $current_date . '\"');\n\n\t\t\t\t\t\t\t\t$add_money = $this -> conn -> insertnewrecords('wallet_transaction', 'wt_user_id, wt_datetime,wt_type,wt_amount,wt_category,transaction_id,wt_desc,cashbackrecord_id', '\"' . $user11_id . '\",\"' . $current_date . '\",\"' . $wt_type . '\",\"' . $refferamount . '\",\"' . $wt_category . '\",\"' . $transaction_id . '\",\"' . $wt_desc . '\",\"' . $frnd_number . '\"');\n\n\t\t\t\t\t\t\t\t// modify wallet of frnd using reffer code///\n\t\t\t\t\t\t\t\t$data_frnd['wallet_amount'] = $wallet + $refferal_amount;\n\t\t\t\t\t\t\t\t$update_toekn = $this -> conn -> updatetablebyid('user', 'user_id', $user11_id, $data_frnd);\n\n\t\t\t\t\t\t\t\t// Cahnge user status when refeer amount add in frnd wallet\n\t\t\t\t\t\t\t\t$data12['reffer_amount_status'] = 1;\n\t\t\t\t\t\t\t\t$update_toekn = $this -> conn -> updatetablebyid('user', 'user_id', $recharge_user_id, $data12);\n\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t$cashback_record_id = $recharge_number;\n\t\t\t\t\t\t\tif (!empty($coupon_id)) {\n\n\t\t\t\t\t\t\t\t$coupon_apply = $this -> conn -> insertnewrecords('coupon_details', 'coupon_id, user_id,coupon_apply_date', '\"' . $coupon_id . '\",\"' . $recharge_user_id . '\",\"' . $current_date . '\"');\n\t\t\t\t\t\t\t\tif (!empty($coupon_apply)) {\n\t\t\t\t\t\t\t\t\t$transaction_id = strtotime(\"now\") . mt_rand(10000000, 99999999);\n\n\t\t\t\t\t\t\t\t\t$walletrecharge = $this -> conn -> insertnewrecords('wallet_transaction', 'wt_user_id,wt_datetime,wt_type,wt_amount,wt_category,transaction_id,wt_desc,cashbackrecord_id', '\"' . $recharge_user_id . '\",\"' . $current_date . '\",\"' . $wallet_type . '\",\"' . $coupon_amount . '\",\"' . $wallet_category . '\",\"' . $transaction_id . '\",\"' . $w_desc . '\",\"' . $cashback_record_id . '\"');\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t$user_wallet = $wallet_amount - $bill_amount + $coupon_amount;\n\t\t\t\t\t\t\t$data['wallet_amount'] = $user_wallet;\n\n\t\t\t\t\t\t\t$update_toekn = $this -> conn -> updatetablebyid('user', 'user_id', $recharge_user_id, $data);\n\t\t\t\t\t\t\t// Admin wallet update\n\t\t\t\t\t\t\t$admin_update_wallet = $admin_wallet + $bill_amount - $coupon_amount;\n\t\t\t\t\t\t\t$data_admin['admin_wallet'] = $admin_update_wallet;\n\t\t\t\t\t\t\t$update_toekn = $this -> conn -> updatetablebyid('admin', 'admin_id', 1, $data_admin);\n\n\t\t\t\t\t\t\t$res = file_get_contents(SITE_URL . \"/createpdf/pdf/\" . $bill_consumer_no);\n\t\t\t\t\t\t\t$post = array(\"status\" => \"true\", 'message' => \"Bill Pay Successfully\", \"bill_recharge_id\" => $recharge, 'consumer_no' => $bill_consumer_no, 'bill_amount' => $bill_amount, 'wallet_amount' => $user_wallet, 'bill_pay_date' => $current_date, 'transaction_id' => $transaction_id);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$post = array('status' => \"false\", \"message\" => \"Pay bill failed\");\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$pay_amount = $recharge_amount - $wallet_amount;\n\t\t\t\t\t\t$post = array('status' => \"false\", \"message\" => \"Not sufficent amount in your wallet\", 'wallet_amount' => $wallet_amount, 'bill_amount' => $bill_amount, 'payble_amount' => $pay_amount);\n\t\t\t\t\t\techo $this -> json($post);\n\t\t\t\t\t\texit();\n\t\t\t\t\t\t//$add=$this->add_money_recharge($recharge_user_id,$recharge_amount,$recharge_transaction_id);\n\t\t\t\t\t\t//$this->recharge();\n\t\t\t\t\t}\n\n\t\t\t\t} else {\n\t\t\t\t\t$post = array('status' => \"false\", \"message\" => \"These Bill already paid\");\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\t$post = array('status' => \"false\", \"message\" => \"Missing parameter\", 'recharge_user_id' => $recharge_user_id, 'bill_category_id' => $bill_category_id, 'biller_id' => $biller_id, 'wt_category' => $wt_category, 'consumer_no' => $bill_consumer_no, 'bill_amount' => $bill_amount);\n\t\t}\n\t\techo $this -> json($post);\n\t}", "function ad_restr()\n\t{\n\t\tif (!$this->is_admin_logged_in())\n\t\t\tredirect(base_url('admin/login'));\n\t}", "public function refund_order(Refund $refund,RetailerOrder $order){\n $walletController = new WalletController();\n if ($order->has_user != null) {\n $user = User::find($order->has_user->id);\n if ($user->has_wallet == null) {\n\n $wallet = $walletController->wallet_create($order->has_user->id);\n } else {\n $wallet = $user->has_wallet;\n }\n } else {\n $shop = $order->has_store;\n if (count($shop->has_user) > 0) {\n if ($shop->has_user[0]->has_wallet == null) {\n $wallet = $walletController->wallet_create($shop->has_user[0]->id);\n } else {\n $wallet = $shop->has_user[0]->has_wallet;\n }\n }\n else {\n return redirect()->back()->with('error', 'Order Cant Refund Automatically Because No Wallet Found!');\n }\n }\n\n $wallet->available = $wallet->available+(double)$order->cost_to_pay;\n $wallet->save();\n /*Wallet Log*/\n $wallet_log = new WalletLog();\n $wallet_log->wallet_id = $wallet->id;\n $wallet_log->status = \"Top-up through Refund\";\n $wallet_log->amount = $order->cost_to_pay;\n $wallet_log->message = 'A Top-up of Amount '.number_format($order->cost_to_pay,2).' USD On Behalf on Refund '.$order->name.' Against Wallet ' . $wallet->wallet_token . ' At ' . now()->format('d M, Y h:i a');\n $wallet_log->save();\n\n /*Refund Order*/\n $order->status = 'cancelled';\n $order->paid = 2;\n $order->save();\n /*Order Log*/\n $order_log = new OrderLog();\n $order_log->message = \"An amount of \".$order->cost_to_pay.\" USD refunded to Wallet on \".now()->format('d M, Y h:i a');\n $order_log->status = \"refunded\";\n $order_log->retailer_order_id = $order->id;\n $order_log->save();\n\n $refund->status_id = 4;\n $refund->status = 'Closed';\n $refund->save();\n\n $tl = new RefundLog();\n $tl->message = 'A Refund Generated \"'.$refund->title.'\" against \"'.$order->name.'\" at '.now()->format('d M, Y h:i a');\n $tl->status = \"Generated\";\n $tl->refund_id = $refund->id;\n $tl->save();\n\n $this->notify->generate('Refund','Order Refund',$order->name.' Refund Approved',$refund);\n $this->inventory->OrderQuantityUpdate($order,'refund');\n return redirect()->back()->with('success','Order Refunded Successfully!');\n\n\n }", "public function executeRatingDetails()\n {\n if ($this->object)\n {\n $details = $this->object->getRatingDetails(true);\n $total_ratings = array_sum($details);\n $full_details = array();\n foreach ($details as $rating => $nb_ratings)\n {\n if ($total_ratings > 0)\n {\n $percent = $nb_ratings / $total_ratings * 100;\n } else $percent = 0;\n $full_details[$rating] = array('count' => $nb_ratings,\n 'percent' => $percent);\n }\n $this->rating_details = $full_details;\n $this->object_type = get_class($this->object);\n }\n }", "function view_donation_by_banktransfer() \n{\n global $wpdb; \n // $con=mysqli_connect(\"localhost\",\"ccmtAdmin\",\"#us6sTek\",\"data_gcmw\");\n // if (mysqli_connect_errno())\n // {\n // echo \"Failed to connect to MySQL: \" . mysqli_connect_error();\n // }\n // else\n // {\n faq_load_css();\n if ($_GET['update']) \n {\n \n if($_POST['update-status']) \n {\n $uid = $_GET['update'];\n $u_b_status = $_POST['udonation-status'];\n global $wpdb; \n $wpdb->update(\n 'wp_donation',\n array(\n 'status' => $u_b_status, \n ),\n array( 'id' => $uid ),\n array(\n '%s',\n '%s',\n ),\n array( '%d' )\n );\n }\n $wid = $_GET['update'];\n echo \"<h2>Update Status</h2>\";\n $ws = $wpdb->get_results(\"SELECT * FROM wp_donation WHERE id = $wid AND payment_method LIKE 'Bank Transfer'\");\n $ustatus ='';\n $ustatus .=\"<form method='post' action=''>\";\n $ustatus .= \"<div class='l-left'>Transaction ID:</div>\";\n $ustatus .= \"<div class='l-right'>\";\n $ustatus .= $ws[0]->transaction_id;\n $ustatus .= \"</div></br>\";\n $ustatus .= \"<div class='l-left'>Name Of Donor:</div>\";\n $ustatus .= \"<div class='l-right'>\";\n $ustatus .= $ws[0]->name_of_donor;\n $ustatus .= \"</div></br>\";\n $ustatus .= \"<div class='l-left'>Originating Account:</div>\";\n $ustatus .= \"<div class='l-right'>\";\n $ustatus .= $ws[0]->originating_account;\n $ustatus .= \"</div></br>\";\n $ustatus .= \"<div class='l-left'>Status Now:</div>\";\n $ustatus .= \"<div class='l-right'>\";\n $ustatus .= $ws[0]->status;\n $ustatus .= \"</div></br>\";\n $ustatus .= \"<div class='l-left'>Update Status:</div>\";\n $ustatus .= \"<div class='l-right'>\";\n $ustatus .= \"<select name = 'udonation-status'>\";\n $ustatus .= \"<option value=''>Select Status Here</option>\";\n $ustatus .= \"<option value='pending'>Pending</option>\";\n $ustatus .= \"<option value='processing'>Processing</option>\";\n $ustatus .= \"<option value='successful'>Successful</option>\";\n $ustatus .= \"</select>\";\n $ustatus .= \"</div></br>\";\n $ustatus .=\"<input type='hidden' name='update-status' id='update-status' value='status' />\";\n $ustatus .=\"<input type='submit' value='Update Status' />\";\n $ustatus .=\"</form>\";\n echo \"<div id='u-school' style='width:800px;'>\".$ustatus.\"</div>\";\n }\n echo \"<form action='.' method='post'>\";\n echo \"<input class='itin' name='donation-download' type='submit' value='Download Donation' style='background-color:white;border:none;color:#000;font-size:15px;cursor:pointer;'>\";\n echo \"</form>\";\n echo \"<h2>Donation By Bank Transfer</h2>\";\n $result = $wpdb->get_results(\"SELECT * FROM wp_donation WHERE payment_method = 'Bank Transfer'\");\n // $result = mysqli_query($con,\"SELECT * FROM `wp_donation` WHERE `payment_method` = 'Bank Transfer'\");\n echo \"<div style='width:1138px;max-height:800px;overflow-x: auto;overflow-y:auto;'>\";\n echo \"<table class='loc-table'style='empty-cells:show;'>\";\n echo \"<th>ID</th>\";\n echo \"<th>Date & Time</th>\";\n echo \"<th>Name</th>\";\n echo \"<th>Email</th>\";\n echo \"<th>Pancard No.</th>\";\n echo \"<th>Contact</th>\";\n echo \"<th>Address</th>\";\n echo \"<th>Total Amount</th>\";\n echo \"<th>Payement Method</th>\";\n echo \"<th>Name Of Donor</th>\";\n echo \"<th>Originating Account</th>\";\n echo \"<th>Status</th>\";\n echo \"<th>Transaction Id</th>\";\n // while($row = mysqli_fetch_array($result)) \n while($row = $result) \n {\n $id = $row['id'];\n $date = $row['date'];\n $time = $row['time'];\n $fname = $row['first_name'];\n $lname = $row['last_name'];\n $email = $row['email'];\n $pan_num = $row['pan_num'];\n $contact = $row['contact'];\n $place = $row['address1'];\n $address = $row['address2'];\n $city = $row['city'];\n $state = $row['state'];\n $country = $row['country'];\n $total_amount = $row['total_amount'];\n $payment_method = $row['payment_method'];\n $name_of_donor = $row['name_of_donor'];\n $originating_account = $row['originating_account'];\n $status = $row['status'];\n $transaction_id = $row['transaction_id'];\n echo \"<tr value='$id'>\";\n echo \"<td>\" . $id. \"</td>\";\n echo \"<td>\" . $date.\"-\".$time. \"</td>\";\n echo \"<td>\" . $fname.\" \". $lname. \"</td>\";\n echo \"<td>\" . $email. \"</td>\";\n echo \"<td>\" . $pan_num. \"</td>\";\n echo \"<td>\" . $contact. \"</td>\";\n echo \"<td>\" . $place.\",\".$address.\",\".$city.\",\".$state.\",\".$country.\"</td>\";\n echo \"<td>\" . $total_amount. \"</td>\";\n echo \"<td>\" . $payment_method. \"</td>\";\n echo \"<td>\" . $name_of_donor. \"</td>\";\n echo \"<td>\" . $originating_account. \"</td>\";\n echo \"<td>\" . $status. \"</td>\";\n echo \"<td>\" . $transaction_id. \"</td>\";\n echo \"<td><a href='/wp-admin/admin.php?page=donation_by_banktransfer&update=\".$id.\"'>Edit</a></td>\";\n echo \"<td><input type='button' name='reply' id='$id' class='reply_contact' value='Reply'></td>\";\n echo \"<td><input type='button' name='detail' id='$id' class='detail_contact' value='Detail'></td>\";\n echo \"<div class='plugin_box plugin_box-$id'> <!-- OUR content_box DIV-->\";\n echo \"<h1 style='font-weight:bold;text-align:center;font-size:30px;'></h1>\";\n echo \"<a class='pluginBoxClose'>Close</a>\";\n echo \"<div class='projectcontent'>\";\n echo \"<div class='select-style'>\n <form method='post' action='.'>\n From: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='from'><br/>\n To: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' value='$email' name='to' readonly><br/>\n Subject:&nbsp;&nbsp;<input type='text' name='subject'><br/>\n <p><span style='vertical-align:top;'>Message:</span><textarea rows='5' cols='30' name='message' ></textarea></p>\n <div style='width:520px;margin-left:200px;'><input type='submit' name='submit' value='Send'></div>\n </form>\n </div>\";\n echo \"</div>\";\n echo \"</div><!-- content_box -->\";\n echo \"<div class='detail_box detail_box-$id'> <!-- OUR content_box DIV-->\";\n echo \"<h2 style='font-weight:bold;text-align:center;font-size:30px;'>Donation Detail #\".$id.\"</h2>\";\n echo \"<a class='detailBoxClose'>Close</a>\";\n echo \"<div class='projectcontent'>\";\n echo \"Name:\".$fname.\" \".$lname.\"</br>\";\n echo \"Transaction Id:\".$transaction_id.\"</br>\";\n\n $detailresult = $wpdb->get_results(\"SELECT * FROM wp_donation_project WHERE transaction_id = '$transaction_id'\");\n // $detailresult = mysqli_query($con,\"SELECT * FROM `wp_donation_project` WHERE transaction_id = '$transaction_id'\");\n\n // while($detailrow = mysqli_fetch_array($detailresult)) \n while($detailrow = $detailresult) \n {\n $id = $detailrow['id'];\n $pcategory_name = $detailrow['category_name'];\n $pproject_name = $detailrow['project_name'];\n $porder_id = $detailrow['order_id'];\n $ptransaction_id = $detailrow['transaction_id'];\n $pamount = $detailrow['amount']; \n echo $id.\" \".$pcategory_name.\" \".$pproject_name.\" \".$porder_id.\" \".$ptransaction_id.\" \".$pamount.\"</br>\";\n }\n echo \"</div>\";\n echo \"</div><!-- content_box -->\";\n echo \"</form>\";\n echo \"</tr>\";\n }\n echo \"</table>\";\n echo \"</div>\";\n faq_load_js();\n // } \n}", "public function change_seller_request(){\r\n\t\tif ($this->checkLogin('A') == ''){\r\n\t\t\tredirect('admin');\r\n\t\t}else {\r\n\t\t\t$mode = $this->uri->segment(4,0);\r\n\t\t\t$user_id = $this->uri->segment(5,0);\r\n\t\t\t$status = ($mode == '0')?'Rejected':'Approved';\r\n\t\t\t$newdata = array('status' => $status);\r\n\t\t\t\r\n\t\t\t$condition = array('id' => $user_id);\r\n\t\t\t$this->seller_model->update_details(STORE_CLAIMS,$newdata,$condition);\r\n\t\t\t$this->setErrorMessage('success','Claim Request '.$status.' Successfully');\r\n\t\t\tredirect('admin/seller/display_seller_requests');\r\n\t\t}\r\n\t}", "function convert_rating(){\n\t\t\t\tglobal $plugintable;\n\t\t\t\t$plugintable\t= \"pcontent\";\n\n\t\t\t\tif(!is_object($sqlcr)){ $sqlcr = new db; }\n\t\t\t\t$numr = $sqlcr -> db_Count(\"rate\", \"(*)\", \"WHERE (rate_table = 'article' || rate_table = 'review' || rate_table = 'content') \");\n\t\t\t\tif($numr > 0){\n\t\t\t\t\t$sqlcr -> db_Update(\"rate\", \"rate_table = '\".$plugintable.\"' WHERE (rate_table = 'article' || rate_table = 'review' || rate_table = 'content') \");\n\t\t\t\t}\n\t\t}", "function ratings_admin_main()\n{\n // Security check\n if (!pnSecAuthAction(0, 'Ratings::', '::', ACCESS_ADMIN)) {\n return pnVarPrepHTMLDisplay(_MODULENOAUTH);\n }\n\n // Create output object - this object will store all of our output so that\n // we can return it easily when required\n\t$pnRender =& new pnRender('Ratings');\n\n\t// As Admin output changes often, we do not want caching.\n\t$pnRender->caching = false;\n\n // Return the output that has been generated by this function\n return $pnRender->fetch('ratings_admin_main.htm');\n}", "public function getRating();", "public function getRating();", "function wiziapp_rate_content($request){\n @header('Content-Type: application/json'); \n $post_id = $request[3];\n $rating = $_POST['rating'];\n $cms_user_id = $_POST['user_id'];\n $appToken = $_SERVER['HTTP_APPLICATION'];\n $udid = $_SERVER['HTTP_UDID'];\n\n $GLOBALS['WiziappLog']->write('info', \"Sending a rating request with {$post_id}::{$rating}::{$cms_user_id} the post was: \".print_r($_REQUEST, TRUE).\" the headers are: \".print_r(apache_request_headers(), TRUE), \"wiziapp_rate_content\");\n do_action('wiziapp_do_rating', $post_id, $rating, $cms_user_id);\n \n /**\n * @todo add a plugin method to report errors from actions, maybe a global?\n * \n */\n $status = TRUE;\n \n // if the request doesn't contain all that we need - leave\n if ( !empty($post_id) && !empty($appToken) && !empty($udid) ){\n $header = array(\n 'action' => 'rate',\n 'status' => $status,\n 'code' => ($status) ? 200 : 4004,\n 'message' => ($status) ? '' : __('Problem updating the rating', 'wiziapp'),\n );\n \n echo json_encode($header);\n exit;\n } else {\n $GLOBALS['WiziappLog']->write('error', \"Something in the request was missing: !empty($post_id) && !empty($appToken) && !empty($udid)\", \"remote\");\n }\n}", "public function postUpdate(Request $request){\n \tTax::where('id','>',0)->where('company_id',Auth::user()->company_id)->update(['status' => 2]);\n \t// insert new tax row with status 1 to show that this is the current tax rate.\n //Validate the request\n $this->validate($request, [\n 'rate' => 'required|min:1',\n 'company_id'=>'required'\n ]); \n\n // adjust rate\n $tax_rate = ($request->rate > 1) ? ($request->rate / 100) : $request->rate;\n\n $tax = new Tax();\n $tax->company_id = Auth::user()->company_id;\n $tax->rate = $tax_rate;\n $tax->status = 1;\n if($tax->save()){\n\t\t\tFlash::success('Successfully updated sales tax!');\n\t\t\treturn Redirect::route('taxes_index');\n } \t\n }", "public function testRefund()\n {\n print \"testRefund()\\n\";\n\n // TODO: Impl\n\n $this->fail();\n }", "public function rewardNotesAction() {\n\t\t$this->_validateRequiredParameters(array('user_id', 'starbar_id'));\n\t\tif (in_array(APPLICATION_ENV, array('development', 'sandbox', 'testing', 'demo'))) {\n\t\t\tGame_Transaction::run($this->user_id, Economy::getIdforStarbar($this->starbar_id), 'TEST_REWARD_NOTES');\n\n\t\t\treturn $this->_resultType(true);\n\t\t} else {\n\t\t\treturn $this->_resultType(false);\n\t\t}\n\t}", "function hook_commerce_adyen_refund_rejected(\\Commerce\\Adyen\\Payment\\Transaction\\Refund $transaction, \\stdClass $order) {\n\n}", "function freelancer_review_action() {\n global $user_ID;\n $args = $_POST;\n $project_id = $args['project_id'];\n \n $status = get_post_status($project_id);\n \n $bid_id_accepted = get_post_meta($project_id, 'accepted', true);\n \n $author_bid = (int)get_post_field('post_author', $bid_id_accepted);\n \n $freelancer_id = get_post_field('post_author', $bid_id_accepted);\n \n /*\n * validate data\n */\n if (!isset($args['score']) || empty($args['score'])) {\n $result = array(\n 'succes' => false,\n 'msg' => __('You have to rate this project.', ET_DOMAIN)\n );\n wp_send_json($result);\n }\n if (!isset($args['comment_content']) || empty($args['comment_content'])) {\n $result = array(\n 'succes' => false,\n 'msg' => __('Please post a review for this freelancer.', ET_DOMAIN)\n );\n wp_send_json($result);\n }\n \n /*\n * check permission\n */\n if ($user_ID !== $author_bid || !$user_ID) {\n wp_send_json(array(\n 'succes' => false,\n 'msg' => __('You don\\'t have permission to review.', ET_DOMAIN)\n ));\n }\n \n /*\n * check status of project\n */\n if ($status !== 'complete') {\n wp_send_json(array(\n 'succes' => false,\n 'msg' => __('You can\\'t not reivew on this project.', ET_DOMAIN)\n ));\n }\n \n /**\n * check user reviewed project owner or not\n * @author Dan\n */\n $role = ae_user_role($user_ID);\n $type = 'em_review';\n if ($role == FREELANCER) {\n $type = 'fre_review';\n }\n \n $comment = get_comments(array(\n 'status' => 'approve',\n 'type' => $type,\n 'post_id' => $project_id\n ));\n \n if (!empty($comment)) {\n wp_send_json(array(\n 'succes' => false,\n 'msg' => __('You have reviewed on this project.', ET_DOMAIN)\n ));\n }\n \n // end check user review project owner\n \n // add review\n $args['comment_post_ID'] = $project_id;\n $args['comment_approved'] = 1;\n $this->comment_type = 'fre_review';\n $review = Fre_Review::get_instance(\"fre_review\");\n \n $comment = $review->insert($args);\n \n if (!is_wp_error($comment)) {\n \n /**\n * fire action after freelancer review employer base on project\n * @param int $int project id\n * @param Array $args submit args (rating score, comment)\n * @since 1.2\n * @author Dakachi\n */\n do_action('fre_freelancer_review_employer', $project_id, $args);\n \n //update project, bid, bid author, project author after review\n $this->update_after_fre_review($project_id, $comment);\n wp_send_json(array(\n 'success' => true,\n 'msg' => __(\"Your review has been submitted.\", ET_DOMAIN)\n ));\n } else {\n \n // revert bid status\n wp_update_post(array(\n 'ID' => $bid_id_accepted,\n 'post_status' => 'publish'\n ));\n \n wp_send_json(array(\n 'success' => false,\n 'msg' => $comment->get_error_message()\n ));\n }\n }", "function ratings($id_us){\n\t\n\t$val = listAll(\"reviews\", \"WHERE r_user_id = '$id_us' GROUP BY r_pro_id\");\n\t$rows_val = mysql_num_rows($val);\n\t\n\tif($rows_val > 0){\n\t\n $user = getUserInfo($id_us);\n\n //usuario creativo/fotografo\n if($user['user_type'] == User::USER_TYPE_PHOTOGRAPHER){\n $rev = listAll(\"reviews\", \"WHERE r_user_id = '$id_us' AND r_type!='CO' AND r_type != 'F'\");\n $rev_rows = mysql_num_rows($rev);\n $calification = 0;\n $trato = 0;\n $calidad = 0;\n $prof = 0;\n $resp = 0;\n $punt = 0;\n $t=0;\n $p=0;\n $r=0;\n $pr=0;\n $ca =0;\n while ($rs_rev = mysql_fetch_object($rev)){\n $calification = $calification + $rs_rev->r_value;\n if($rs_rev->r_type == \"CA\"){\n $calidad = $calidad + $rs_rev->r_value;\n $ca++;\n }else if($rs_rev->r_type == \"T\"){\n $trato = $trato + $rs_rev->r_value;\n $t++;\n }else if($rs_rev->r_type == \"P\"){\n $punt = $punt + $rs_rev->r_value;\n $p++;\n }else if($rs_rev->r_type == \"R\"){\n $resp = $resp + $rs_rev->r_value;\n $r++;\n }else if($rs_rev->r_type == \"PR\"){\n $prof = $prof + $rs_rev->r_value;\n $pr++;\n }\n\n }\n //totales\n $global = $calification/$rev_rows;\n $trato_fin = $trato/$t;\n $calidad_fin = $calidad/$ca;\n $punt_fin = $punt/$p;\n $resp_fin = $resp/$r;\n $prof_fin = $prof/$pr;\n\n //global\n if($global < 2){\n $review['stars'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($global,1,'.',',').'\" alt=\"Calificacion '.number_format($global,1,'.',',').'\"/>';\n $review['starsP']=1;\n }else if(round($global) == 2){\n $review['stars'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($global,1,'.',',').'\" alt=\"Calificacion '.number_format($global,1,'.',',').'\"/>';\n $review['starsP']=2;\n }else if(round($global) == 3){\n $review['stars'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($global,1,'.',',').'\" alt=\"Calificacion '.number_format($global,1,'.',',').'\"/>';\n $review['starsP']=3;\n }else if(round($global) == 4){\n $review['stars'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($global,1,'.',',').'\" alt=\"Calificacion '.number_format($global,1,'.',',').'\"/>';\n $review['starsP']=4;\n }else if(round($global) == 5){\n $review['stars'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($global,1,'.',',').'\" alt=\"Calificacion '.number_format($global,1,'.',',').'\"/>';\n $review['starsP']=5;\n }\n\n //trato\n if($trato_fin < 2){\n $review['trato_star'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($trato_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($trato_fin,1,'.',',').'\"/>';\n }else if(round($trato_fin) == 2){\n $review['trato_star'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($trato_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($trato_fin,1,'.',',').'\"/>';\n }else if(round($trato_fin) == 3){\n $review['trato_star'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($trato_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($trato_fin,1,'.',',').'\"/>';\n }else if(round($trato_fin) == 4){\n $review['trato_star'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($trato_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($trato_fin,1,'.',',').'\"/>';\n }else if(round($trato_fin) == 5){\n $review['trato_star'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($trato_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($trato_fin,1,'.',',').'\"/>';\n }\n\n //calidad\n if($calidad_fin < 2){\n $review['cal_star'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\"/>';\n }else if(round($calidad_fin) == 2){\n $review['cal_star'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\"/>';\n }else if(round($calidad_fin) == 3){\n $review['cal_star'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\"/>';\n }else if(round($calidad_fin) == 4){\n $review['cal_star'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\"/>';\n }else if(round($calidad_fin) == 5){\n $review['cal_star'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($calidad_fin,1,'.',',').'\"/>';\n }\n\n //puntualidad\n if($punt_fin < 2){\n $review['punt_star'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($punt_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($punt_fin,1,'.',',').'\"/>';\n }else if(round($punt_fin) == 2){\n $review['punt_star'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($punt_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($punt_fin,1,'.',',').'\"/>';\n }else if(round($punt_fin) == 3){\n $review['punt_star'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($punt_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($punt_fin,1,'.',',').'\"/>';\n }else if(round($punt_fin) == 4){\n $review['punt_star'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($punt_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($punt_fin,1,'.',',').'\"/>';\n }else if(round($punt_fin) == 5){\n $review['punt_star'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($punt_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($punt_fin,1,'.',',').'\"/>';\n }\n\n //responsabilidad\n\n if($resp_fin < 2){\n $review['resp_star'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($resp_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($resp_fin,1,'.',',').'\"/>';\n }else if(round($resp_fin) == 2){\n $review['resp_star'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($resp_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($resp_fin,1,'.',',').'\"/>';\n }else if(round($resp_fin) == 3){\n $review['resp_star'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($resp_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($resp_fin,1,'.',',').'\"/>';\n }else if(round($resp_fin) == 4){\n $review['resp_star'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($resp_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($resp_fin,1,'.',',').'\"/>';\n }else if(round($resp_fin) == 5){\n $review['resp_star'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($resp_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($resp_fin,1,'.',',').'\"/>';\n }\n //profesionalismo\n\n if($prof_fin < 2){\n $review['prof_star'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($prof_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($prof_fin,1,'.',',').'\"/>';\n }else if(round($prof_fin) == 2){\n $review['prof_star'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($prof_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($prof_fin,1,'.',',').'\"/>';\n }else if(round($prof_fin) == 3){\n $review['prof_star'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($prof_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($prof_fin,1,'.',',').'\"/>';\n }else if(round($prof_fin) == 4){\n $review['prof_star'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($prof_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($prof_fin,1,'.',',').'\"/>';\n }else if(round($prof_fin) == 5){\n $review['prof_star'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($prof_fin,1,'.',',').'\" alt=\"Calificacion '.number_format($prof_fin,1,'.',',').'\"/>';\n }\n\n\n $com = listAll(\"reviews\", \"WHERE r_user_id = '$id_us' AND r_type='CO' GROUP BY r_pro_id\");\n $com_rows = mysql_num_rows($com);\n $review['comentarios'] = $com_rows;\n $review['global'] = $global;\n $review['trato'] = $trato_fin ;\n $review['calidad'] = $calidad_fin;\n $review['punt'] = $punt_fin;\n $review['resp'] = $resp_fin;\n $review['prof'] = $prof_fin;\n\n\n //usuario cliente\n } else if($user['user_type'] == User::USER_TYPE_CLIENT){\n $rev = listAll(\"reviews\", \"WHERE r_user_id = '$id_us' AND r_type='C'\");\n $rev_rows = mysql_num_rows($rev);\n $calification = 0;\n while ($rs_rev = mysql_fetch_object($rev)){\n $calification = $calification + $rs_rev->r_value;\n }\n $cal_final = $calification/$rev_rows;\n\n if($cal_final < 2){\n $review['stars'] = '<img src=\"images/rating_1.jpg\" title=\"Calificacion '.number_format($cal_final,1,'.',',').' \" alt=\"Calificacion '.number_format($cal_final,1,'.',',').'\"/>';\n }else if(round($cal_final) == 2){\n $review['stars'] = '<img src=\"images/rating_2.jpg\" title=\"Calificacion '.number_format($cal_final,1,'.',',').'\" alt=\"Calificacion '.number_format($cal_final,1,'.',',').'\"/>';\n }else if(round($cal_final) == 3){\n $review['stars'] = '<img src=\"images/rating_3.jpg\" title=\"Calificacion '.number_format($cal_final,1,'.',',').'\" alt=\"Calificacion '.number_format($cal_final,1,'.',',').'\"/>';\n }else if(round($cal_final) == 4){\n $review['stars'] = '<img src=\"images/rating_4.jpg\" title=\"Calificacion '.number_format($cal_final,1,'.',',').'\" alt=\"Calificacion '.number_format($cal_final,1,'.',',').'\"/>';\n }else if(round($cal_final) == 5){\n $review['stars'] = '<img src=\"images/rating_5.jpg\" title=\"Calificacion '.number_format($cal_final,1,'.',',').'\" alt=\"Calificacion '.number_format($cal_final,1,'.',',').'\"/>';\n }\n $com = listAll(\"reviews\", \"WHERE r_user_id = '$id_us' AND r_type='CO' GROUP BY r_pro_id\");\n $com_rows = mysql_num_rows($com);\n $review['comentarios'] = $com_rows;\n $review['global'] = $cal_final;\n\n }\n\t// sino tiene ningun review\n\t} else {\n\t\t$review['stars'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['starsP']=0;\n\t\t$review['cal_star'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['resp_star'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['punt_star'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['trato_star'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['prof_star'] = '<img src=\"images/rating_0.jpg\" title=\"Calificacion 0\" alt=\"Calificacion 0\"/>';\n\t\t$review['comentarios'] = 0;\n\t\t$review['global'] = 0;\n\t\t$review['trato'] = 0;\n\t\t$review['calidad'] = 0;\n\t\t$review['punt'] = 0;\n\t\t$review['resp'] = 0;\n\t\t$review['prof'] = 0;\n\t}\n\t\n\treturn $review;\n\t\n}", "function threadratinglog_deactivate()\n{\n\tchange_admin_permission('tools', 'ratinglog', -1);\n}", "function trash() { \n\t\t$adsdetail = JRequest::get('POST');\n\t\t$model = $this->getModel('showads');\n\t\t$model->statusChange($adsdetail);\n\t}", "public function rate($id, $type) {\n $user_id = $this->Auth->user('id');\n $post = $this->Post->getById($id);\n $success = true;\n\n if ($type != PostRating::UP && $type != PostRating::DOWN || !$post) {\n $success = false;\n\n } else if ($this->PostRating->hasRated($user_id, $id)) {\n $success = false;\n\n } else if (!$this->PostRating->ratePost($user_id, $id, $post['Post']['topic_id'], $type)) {\n $success = false;\n }\n $this->AjaxHandler->respond('json', array(\n 'success' => $success\n ));\n }", "public function admin_action() {\n\t}", "public function admin_action() {\n\t}", "public function saveProdReviewAction()\n\t{\n\t\tif($this->_request-> isPost() && $this->adminLogin->userId)\n\t\t{\n\t\t\t$prod_params=$this->_request->getParams();\n\t\t\t\n\t\t\t//echo \"<pre>\";print_r($_FILES);print_r($prod_params);exit;\n\n\t\t\t$quote_id=$prod_params['quote_id'];\n\n\t\t\tif(isset($prod_params['review_skip'])) $status='skipped';\n\t\t\telse if(isset($prod_params['review_challenge'])) $status='challenged';\n\t\t\telse if(isset($prod_params['review_save'])) $status='challenged';\n\t\t\telse if(isset($prod_params['review_validate'])) $status='validated';\n\n\t\t\tif($quote_id)\n\t\t\t{\t\n\t\t\t\t\n\t\t\t\t//get Quote version\n\t\t\t\t\t$quote_obj=new Ep_Quote_Quotes();\n\t\t\t\t\t$version=$quote_obj->getQuoteVersion($quote_id);\n\n\t\t\t\t//Insert Quote log\n\t\t\t\t$log_params['quote_id']\t= $quote_id;\n\t\t\t\t$log_params['bo_user']\t= $this->adminLogin->userId;\t\t\t\t\t\n\t\t\t\t$log_params['version']\t= $version;\n\t\t\t\t$log_params['action']\t= 'prod_'.$status;\t\t\t\t\n\n\n\t\t\t\tif(isset($prod_params['review_skip'])|| isset($prod_params['review_challenge']))\n\t\t\t\t{\n\t\t\t\t\t\n\n\t\t\t\t\t$quote_obj=new Ep_Quote_Quotes();\n\t\t\t\t\t$update_quote['prod_review']=$status;\n\t\t\t\t\t\n\t\t\t\t\t//echo \"<pre>\";print_r($update_quote);exit;\n\t\t\t\t\t$quote_obj->updateQuote($update_quote,$quote_id);\n\n\t\t\t\t\tif($status=='skipped')\n\t\t\t\t\t\t$this->_redirect(\"/quote/sales-quotes-list?submenuId=ML13-SL2\");\n\t\t\t\t\telse if($status=='challenged')\n\t\t\t\t\t\t$this->_redirect(\"/quote/prod-quote-review?quote_id=\".$quote_id);\t\n\t\t\t\t}\n\t\t\t\telseif(isset($prod_params['review_save'])|| isset($prod_params['review_validate']))\n\t\t\t\t{\n\t\t\t\t\t\t\n\t\t\t\t\tforeach($_POST as $key => $prod_missions)\n\t\t\t\t\t{\n\t\t\t\t\t if (strpos($key, 'pmission_cost_') === 0)\n\t\t\t\t\t {\n\t\t\t\t\t \t$mission_id=str_replace('pmission_cost_','',$key);\n\t\t\t\t\t \tforeach($prod_missions as $pkey=>$pcost)\n\t\t\t\t\t \t{\t\t\t\t\t\t \t\t\n\t\t\t\t\t \t\t$pcost=str_replace(\",\",\".\",$pcost);\n\t\t\t\t\t \t\t$staff=$prod_params['staff_'.$mission_id][$pkey];\n\t\t\t\t\t\t\t\t/*tempo changes*/\n\t\t\t\t\t\t\t\t\t//Mission level changes\n\t\t\t\t\t\t\t\t\t$mission_length=$prod_params['mission_length_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$mission_length_option=$prod_params['mission_length_option_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t//$volume=$prod_params['volume_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$volume_max=$prod_params['volume_max_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$delivery_volume_option=$prod_params['delivery_volume_option_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$tempo=$prod_params['tempo_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$tempo_length=$prod_params['tempo_length_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$tempo_length_option=$prod_params['tempo_length_option_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$staff_time=$prod_params['staff_time_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$staff_time_option=$prod_params['staff_time_option_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t//newduration volume\n\t\t\t\t\t\t\t\t\t$new_missiondur=$prod_params['new_missiondur_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t$new_tempolength=$prod_params['new_tempolength_'.$mission_id][0];\n\t\t\t\t\t\t\t\t\t//update quote mission table with above details\n\t\t\t\t\t\t\t\t\t$quoteMissionObj=new Ep_Quote_QuoteMissions();\n\t\t\t\t\t\t\t\t\t$updateQuoteMission['mission_length']=$mission_length;\n\t\t\t\t\t\t\t\t\t$updateQuoteMission['mission_length_option']=$mission_length_option;\n\t\t\t\t\t\t\t\t\t//if($volume) $updateQuoteMission['volume']=$volume;\n\t\t\t\t\t\t\t\t\tif($volume_max) $updateQuoteMission['volume_max']=$volume_max;\n\t\t\t\t\t\t\t\t\tif($delivery_volume_option) $updateQuoteMission['delivery_volume_option']=$delivery_volume_option;\n\t\t\t\t\t\t\t\t\tif($tempo)$updateQuoteMission['tempo']=$tempo;\n\t\t\t\t\t\t\t\t\tif($tempo_length)$updateQuoteMission['tempo_length']=$tempo_length;\n\t\t\t\t\t\t\t\t\tif($tempo_length_option)$updateQuoteMission['tempo_length_option']=$tempo_length_option;\n\t\t\t\t\t\t\t\t\t//newduration volume\n\t\t\t\t\t\t\t\t\tif($new_missiondur && $new_tempolength)$updateQuoteMission['mission_length_new']=$new_missiondur.','.$new_tempolength;\n\t\t\t\t\t\t\t\t\t$updateQuoteMission['staff_time']=$staff_time;\n\t\t\t\t\t\t\t\t\t$updateQuoteMission['staff_time_option']=$staff_time_option;\n\t\t\t\t\t\t\t\t\t$quoteMissionObj->updateQuoteMission($updateQuoteMission,$mission_id);\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t//echo \"<pre>\";print_r($updateQuoteMission);exit;\n\t\t\t\t\t\t\t\t/*End*/\t\n\t\t\t\t\t\t\t\t$pdelivery_time=$mission_length;\n\t\t\t\t\t \t\t$pdelivery_option=$mission_length_option;\t\t\t\t\t\t\n\t\t\t\t\t \t\t$prod_comments=isodec($prod_params['prodcomments_'.$mission_id][$pkey]);\n\t\t\t\t\t \t\t$product=$prod_params['prod_product_'.$mission_id][$pkey];\n\n\t\t\t\t\t \t\t//new fields added\n\t\t\t\t\t \t\t$pdelivery_volume=$volume_max ? $volume_max : ($volume ? $volume : 0);\n\t\t\t\t\t \t\t$pdelivery_volume_option=$delivery_volume_option ? $delivery_volume_option : 'within' ;\n\t\t\t\t\t \t\t$pdelivery_volume_time=$tempo_length ? $tempo_length : $mission_length;\n\t\t\t\t\t \t\t$pdelivery_volume_time_option=$tempo_length_option ? $tempo_length_option : $mission_length_option;\n\n\t\t\t\t\t \t\t//if($pdelivery_time && $staff && $staff_time)\n\t\t\t\t\t \t\t//{\n\t\t\t\t\t \t\t\t$prod_mission_obj=new Ep_Quote_ProdMissions();\n\n\t\t\t\t\t \t\t\t$prod_mission_data['quote_mission_id']=$mission_id;\n\t\t\t\t\t \t\t\t$prod_mission_data['product']=$product;\t\t\t\t\t\t \t\t\t\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_time']=$pdelivery_time;\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_option']=$pdelivery_option;\n\t\t\t\t\t \t\t\t$prod_mission_data['staff']=$staff;\n\t\t\t\t\t \t\t\t$prod_mission_data['staff_time']=$staff_time;\n\t\t\t\t\t \t\t\t$prod_mission_data['staff_time_option']=$staff_time_option;\n\t\t\t\t\t \t\t\t$prod_mission_data['cost']=$pcost;\n\t\t\t\t\t \t\t\t$prod_mission_data['currency']=$prod_params['currency'];\n\t\t\t\t\t \t\t\t$prod_mission_data['comments']=$prod_comments;\n\t\t\t\t\t \t\t\t$prod_mission_data['created_by']=$this->adminLogin->userId;\n\t\t\t\t\t \t\t\t$prod_mission_data['version']\t= $version;\n\n\t\t\t\t\t \t\t\t//new fields added\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_volume']\t= $pdelivery_volume;\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_volume_option']\t= $pdelivery_volume_option;\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_volume_time']\t= $pdelivery_volume_time;\n\t\t\t\t\t \t\t\t$prod_mission_data['delivery_volume_time_option']=$pdelivery_volume_time_option;\n\n\t\t\t\t\t \t\t\t//echo \"<pre>\";print_r($prod_mission_obj);\n\n\t\t\t\t\t \t\t\t$prod_mission_id=$prod_params['prod_mission_id_'.$mission_id][$pkey];\n\n\t\t\t\t\t \t\t\tif($prod_mission_id)\n\t\t\t\t\t \t\t\t{\n\t\t\t\t\t \t\t\t\t$prod_mission_data['updated_at']=date('Y-m-d H:i:s');\n\t\t\t\t\t \t\t\t\t$prod_mission_obj->updateProdMission($prod_mission_data,$prod_mission_id);\n\t\t\t\t\t \t\t\t}\n\t\t\t\t\t \t\t\telse\n\t\t\t\t\t \t\t\t{\n\t\t\t\t\t \t\t\t\t$prod_mission_obj->insertProdMission($prod_mission_data);\t\n\t\t\t\t\t \t\t\t}\n\n\t\t\t\t\t \t\t\t//\n\t\t\t\t\t \t\t\t$package=$prod_params['package_'.$mission_id];\n\t\t\t\t\t\t \t\t$quoteMissionObj=new Ep_Quote_QuoteMissions();\n\t\t\t\t\t\t \t\t$updateQuoteMission['package']=$package;\n\t\t\t\t\t\t \t\tif($package=='lead')\n\t\t\t\t\t\t \t\t\t \t$updateQuoteMission['margin_percentage']=60;\n\t\t\t\t\t\t \t\telseif($package=='link')\n\t\t\t\t\t\t \t\t\t \t$updateQuoteMission['margin_percentage']=30;\n\t\t\t\t\t\t \t\telseif($package=='team')\n\t\t\t\t\t\t \t\t\t \t$updateQuoteMission['margin_percentage']=50;\n\t\t\t\t\t\t \t\t\t \t\t \n\t\t\t\t\t\t \t\t$quoteMissionObj->updateQuoteMission($updateQuoteMission,$mission_id);\n\n\t\t\t\t\t \t\t\t\n\t\t\t\t\t \t\t\t\n\t\t\t\t\t \t\t//}\n\n\t\t\t\t\t \t}\t\n\t\t\t\t\t }\n\t\t\t\t\t}\n\t\t\t\t\t\t$quote_obj=new Ep_Quote_Quotes();\t\n\t\t\t\t\t\tif(isset($prod_params['review_validate']))\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$update_quote_prod['prod_review']=$status;\n\t\t\t\t\t\t\t$update_quote_prod[\"sales_validation_expires\"]=time()+($this->configval['sales_validation_timeline']*60*60);\n\t\t\t\t\t\t\t$quote_obj->updateQuote($update_quote_prod,$quote_id);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif($prod_params['prod_extra_info'])\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$update_quote_prod = array();\n\t\t\t\t\t\t\t$update_quote_prod['prod_extra_info']=$prod_params['prod_extra_info'];\n\t\t\t\t\t\t\tif($prod_params['prod_extra_info']=='yes')\n\t\t\t\t\t\t\t$update_quote_prod[\"prod_extra_comments\"] = $prod_params['prod_extra_comments'];\t\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t$update_quote_prod[\"prod_extra_comments\"] = NULL;\n\t\t\t\t\t\t\t$quote_obj->updateQuote($update_quote_prod,$quote_id);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif($status=='challenged')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$log_params['action']= 'prod_saved';\n\t\t\t\t\t\t\t$quiteActionId=4;\t\n\n\t\t\t\t\t\t\tif($prod_params['quote_updated_comments'])\n\t\t\t\t\t\t\t\t$log_params['comments']=$prod_params['quote_updated_comments'];\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t$log_obj=new Ep_Quote_QuotesLog();\n\t\t\t\t\t\t\t$log_obj->insertLog($quiteActionId,$log_params);\n\n\t\t\t\t\t\t\t$this->_redirect(\"/quote/prod-quote-review?quote_id=\".$quote_id);\t\n\t\t\t\t\t\t}\n\t\t\t\t\t\telseif($status=='validated')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$quoteDetails=$quote_obj->getQuoteDetails($quote_id);\n\t\t\t\t\t\t\tif($quoteDetails[0]['prod_timeline']>0)\n\t\t\t\t\t\t\t\t$prod_time_line=$quoteDetails[0]['prod_timeline'];\n\n\t\t\t\t\t\t\tif($prod_time_line>time())\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$log_params['action']= 'prod_validated_ontime';\n\t\t\t\t\t\t\t\t$quiteActionId=5;\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$delay_hours=dateDiffHours($prod_time_line,time());\n\n\t\t\t\t\t\t\t\t$log_params['action']= 'prod_validated_delay';\n\t\t\t\t\t\t\t\t$log_params['delay_hours']=$delay_hours;\n\t\t\t\t\t\t\t\t$quiteActionId=6;\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tif($prod_params['quote_updated_comments'])\n\t\t\t\t\t\t\t\t$log_params['comments']=$prod_params['quote_updated_comments'];\n\n\t\t\t\t\t\t\t//echo \"<pre>\";print_r($log_params);exit;\n\n\t\t\t\t\t\t\t$log_obj=new Ep_Quote_QuotesLog();\n\t\t\t\t\t\t\t$log_obj->insertLog($quiteActionId,$log_params);\n\n\t\t\t\t\t\t\t//sending email to sales user\n\t\t\t\t\t\t\t$mail_obj=new Ep_Message_AutoEmails();\n\t\t\t\t\t\t\t$receiver_id=$quoteDetails[0]['quote_by'];\n\t\t\t\t\t\t\t$mail_parameters['sales_user']=$quoteDetails[0]['quote_by'];\n\t\t\t\t\t\t\t$mail_parameters['bo_user']=$this->adminLogin->userId;\n\t\t\t\t\t\t\t$mail_parameters['bo_user_type']='prod';\n\t\t\t\t\t\t\t$mail_parameters['quote_title']=$quoteDetails[0]['title'];\n\t\t\t\t\t\t\t$mail_parameters['followup_link']='/quote/quote-followup?quote_id='.$quoteDetails[0]['identifier'];\n\t\t\t\t\t\t\t$mail_obj->sendQuotePersonalEmail($receiver_id,134,$mail_parameters);\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t//sending intimation emails when quote edited\n\t\t\t\t $update_comments= $prod_params['quote_updated_comments'];\n\t\t\t\t if($update_comments)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$bo_user_type='prod';\t\t\t\t\n\t\t\t\t\t\t\t\t$this->sendIntimationEmail($quote_id,$bo_user_type,$update_comments,$newmissionAdded);\n\t\t\t\t\t\t\t\t//exit;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t//head sales notify email in sales final stage\n\t\t\t\t\t\t\t$email_head_sale=array('139281941421499'=>'[email protected]'); // need add thaibault\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tif(count($email_head_sale)>0){\n\t\t\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\t\t\t\tforeach($email_head_sale as $user=>$emails){\n\t\t\t\t\t\t\t\t\t\t\t\t$receiver_id=$user;\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_parameters['bo_user']=$user;\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_parameters['sales_user']=$quoteDetails[0]['quote_by'];\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_parameters['turn_over']=$quoteDetails[0]['turnover'];\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_parameters['client_name']=$quoteDetails[0]['company_name'];\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_parameters['followup_link']='/quote/quote-followup?quote_id='.$quoteDetails[0]['identifier'];\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_obj=new Ep_Message_AutoEmails();\n\t\t\t\t\t\t\t\t\t\t\t\t$headmail_obj->sendQuotePersonalEmail($receiver_id,205,$headmail_parameters);\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\n\n\n\t\t\t\t\t\t\t$this->_redirect(\"/quote/sales-quotes-list?submenuId=ML13-SL2\");\n\t\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\t\t\n\t}", "function referalRefunding($item_id = null)\r\n {\r\n App::import('Model', 'ItemUser');\r\n $this->ItemUser = new ItemUser();\r\n $item_users = $this->ItemUser->find('all', array(\r\n 'conditions' => array(\r\n 'Item.id' => $item_id,\r\n 'Item.item_status_id' => ConstItemStatus::Tipped,\r\n 'ItemUser.referred_by_user_id !=' => '0'\r\n ) ,\r\n 'fields' => array(\r\n 'ItemUser.referred_by_user_id',\r\n 'ItemUser.item_id',\r\n 'ItemUser.user_id',\r\n 'SUM(ItemUser.quantity) as referred_user_total_purchased_quantity',\r\n ) ,\r\n 'group' => array(\r\n 'ItemUser.referred_by_user_id'\r\n ) ,\r\n 'contain' => array(\r\n 'Item' => array(\r\n 'fields' => array(\r\n 'Item.id',\r\n 'Item.price',\r\n )\r\n ) ,\r\n ) ,\r\n 'recursive' => 1\r\n ));\r\n foreach($item_users as $item_user) {\r\n if ($item_user[0]['referred_user_total_purchased_quantity'] >= Configure::read('referral.no_of_refer_to_get_a_refund')) { // If creteria matches for refund\r\n $check_refer = $this->ItemReferrer->find('first', array(\r\n 'conditions' => array(\r\n 'ItemReferrer.user_id' => $item_user['ItemUser']['referred_by_user_id'],\r\n 'ItemReferrer.item_id' => $item_user['ItemUser']['item_id'],\r\n ) ,\r\n 'recursive' => -1\r\n ));\r\n $refer_data = $this->ItemUser->find('first', array(\r\n 'conditions' => array(\r\n 'ItemUser.user_id' => $item_user['ItemUser']['referred_by_user_id'],\r\n 'ItemUser.item_id' => $item_user['ItemUser']['item_id'],\r\n ) ,\r\n 'recursive' => -1\r\n ));\r\n if (empty($check_refer)) { // If empty, refer amount\r\n // Add amount to referral user amount //\r\n if (Configure::read('referral.refund_type') == ConstReferralRefundType::RefundItemAmount) {\r\n $refund_amount = $refer_data['ItemUser']['discount_amount']/$refer_data['ItemUser']['quantity'];\r\n } else {\r\n $refund_amount = Configure::read('referral.refund_amount');\r\n }\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount + ' . $refund_amount,\r\n\t\t\t\t\t\t'User.total_referral_earned_amount' => 'User.total_referral_earned_amount + ' . $refund_amount,\r\n ) , array(\r\n 'User.id' => $item_user['ItemUser']['referred_by_user_id']\r\n ));\r\n $this->User->updateAll(array(\r\n 'User.available_balance_amount' => 'User.available_balance_amount + ' . $refund_amount,\r\n\t\t\t\t\t\t'User.total_referral_earned_amount' => 'User.total_referral_earned_amount + ' . $refund_amount,\r\n ) , array(\r\n 'User.id' => $item_user['ItemUser']['user_id']\r\n ));\r\n\t\t\t\t\t$this->User->ItemUser->updateAll(array(\r\n\t\t\t\t\t\t'ItemUser.referral_commission_amount ' => $refund_amount,\r\n\t\t\t\t\t\t'ItemUser.is_referral_commission_sent ' => 1,\r\n\t\t\t\t\t\t'ItemUser.referral_commission_type ' => ConstReferralCommissionType::XRefer\r\n\t\t\t\t\t) , array(\r\n\t\t\t\t\t\t'ItemUser.id' => $item_user['ItemUser']['user_id']\r\n\t\t\t\t\t));\r\n $data = array();\r\n $data['Transaction']['user_id'] = $item_user['ItemUser']['referred_by_user_id'];\r\n $data['Transaction']['foreign_id'] = ConstUserIds::Admin;\r\n $data['Transaction']['class'] = 'SecondUser';\r\n $data['Transaction']['amount'] = $refund_amount;\r\n $data['Transaction']['transaction_type_id'] = ConstTransactionTypes::ReferralAddedToWallet;\r\n $this->User->Transaction->save($data);\r\n // Insert Record into ItemReferrrer //\r\n $referrer = array();\r\n $referrer['ItemReferrer']['user_id'] = $item_user['ItemUser']['referred_by_user_id'];\r\n $referrer['ItemReferrer']['item_id'] = $item_user['Item']['id'];\r\n $referrer['ItemReferrer']['earned_amount'] = $refund_amount;\r\n $referrer['ItemReferrer']['refferral_count'] = Configure::read('referral.no_of_refer_to_get_a_refund');\r\n $this->ItemReferrer->save($referrer);\r\n } else {\r\n $this->ItemReferrer->updateAll(array(\r\n 'ItemReferrer.total_purchased_referral_count' => 'ItemReferrer.total_purchased_referral_count + ' . 1,\r\n ) , array(\r\n 'ItemReferrer.item_id' => $item_user['Item']['id'],\r\n 'ItemReferrer.id' => $check_refer['ItemReferrer']['id']\r\n ));\r\n }\r\n }\r\n }\r\n }", "public function rateAction() {\n\n $user_id = Engine_Api::_()->user()->getViewer()->getIdentity();\n $rating = $this->_getParam('rating');\n $video_id = $this->_getParam('video_id');\n\n $ratingTable = Engine_Api::_()->getDbtable('videoratings', 'sitereview');\n $db = $ratingTable->getAdapter();\n $db->beginTransaction();\n\n try {\n\n $ratingTable->setRating($video_id, $user_id, $rating);\n\n $total = $ratingTable->ratingCount($video_id);\n\n $sitereview_video = Engine_Api::_()->getItem('sitereview_video', $video_id);\n\n //UPDATE CURRENT AVERAGE RATING IN VIDEO TABLE\n $rating = $ratingTable->rateVideo($video_id);\n\n $sitereview_video->rating = $rating;\n $sitereview_video->save();\n\n $db->commit();\n } catch (Exception $e) {\n $db->rollBack();\n throw $e;\n }\n\n $data = array();\n $data[] = array(\n 'total' => $total,\n 'rating' => $rating,\n );\n return $this->_helper->json($data);\n $data = Zend_Json::encode($data);\n $this->getResponse()->setBody($data);\n }", "protected function updateMasterRating($args) {\n\n if ($args['ent_date_time'] == '' || $args['ent_rating'] == '' || $args['ent_appnt_dt'] == '')\n return $this->_getStatusMessage(1, 1);\n\n $this->curr_date_time = urldecode($args['ent_date_time']);\n\n $returned = $this->_validate_token($args['ent_sess_token'], $args['ent_dev_id'], '1');\n\n if (is_array($returned))\n return $returned;\n\n $slvDet = $this->_getEntityDet($args['ent_slv_email'], '2');\n\n $selectApptQry = \"select appointment_id from appointment where slave_id = '\" . $slvDet['slave_id'] . \"' and mas_id = '\" . $this->User['entityId'] . \"' and appointment_dt = '\" . $args['ent_appnt_dt'] . \"'\";\n $selectApptRes = mysql_query($selectApptQry, $this->db->conn);\n\n if (mysql_num_rows($selectApptRes) <= 0)\n return $this->_getStatusMessage(62, 62);\n\n $appt = mysql_fetch_assoc($selectApptRes);\n\n $updateReviewQry = \"insert into passenger_rating(mas_id,slave_id,rating,status,rating_dt,appointment_id) values ('\" . $this->User['entityId'] . \"','\" . $slvDet['slave_id'] . \"','\" . $args['ent_rating'] . \"','1','\" . $this->curr_date_time . \"','\" . $appt['appointment_id'] . \"')\";\n mysql_query($updateReviewQry, $this->db->conn);\n\n if (mysql_affected_rows() < 0)\n return $this->_getStatusMessage(70, $updateReviewQry);\n\n return $this->_getStatusMessage(69, $updateReviewQry);\n }", "protected function adminAction()\n {\n $this->requestCallback();\n\n $url = \\add_query_arg(\n [self::NOTICE => 1],\n \\remove_query_arg(\n [RestDispatch::QUERY_CACHE_DELETE, RestDispatch::QUERY_CACHE_REFRESH],\n \\wp_get_referer()\n )\n );\n \\wp_safe_redirect($url);\n exit;\n }", "public function declineSingle(){\n\t\tif(isset($_SESSION['admin_email'])){\n\t\t$this->model(\"AdminApproveModel\");\n\t\tif(isset($_POST['admin_decline'])){\n\t\t\t$this->sanitizeString($_POST['admin_decline']);\n\t\t\t$id = $this->sanitizeString($_POST['id']);\n\t\t\tAdminApproveModel::where('id', $id)->delete();\n\t\t}\n\t}\n\n\t}", "public function action_resistorSave(){\n\t\tif ($this->validateSave()) {\n\t\t\t// 2. Zapis danych w bazie\n\t\t\ttry {\n\t\t\t\t\n\t\t\t\t//2.1 Nowy rekord\n\t\t\t\tif ($this->form->id == '') {\n\t\t\t\t\t//sprawdź liczebność rekordów - nie pozwalaj przekroczyć 20\n\t\t\t\t\t$count = getDB()->count(\"resistors\");\n\t\t\t\t\tif ($count <= 10) {\n\t\t\t\t\t\tgetDB()->insert(\"resistors\", [\n\t\t\t\t\t\t\t\"volt1\" => $this->form->volt1,\n\t\t\t\t\t\t\t\"volt2\" => $this->form->volt2,\n\t\t\t\t\t\t\t\"amps\" => $this->form->amps,\n \"resistor\" => $this->form->resis\n\t\t\t\t\t\t]);\n\t\t\t\t\t} else { //za dużo rekordów\n\t\t\t\t\t\t// Gdy za dużo rekordów to pozostań na stronie\n\t\t\t\t\t\tgetMessages()->addInfo('Ograniczenie: Zbyt dużo rekordów. Aby dodać nowy usuń wybrany wpis.');\n\t\t\t\t\t\t$this->generateView(); //pozostań na stronie edycji\n\t\t\t\t\t\texit(); //zakończ przetwarzanie, aby nie dodać wiadomości o pomyślnym zapisie danych\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tgetMessages()->addInfo('Pomyślnie zapisano rekord');\n\n\t\t\t} catch (PDOException $e){\n\t\t\t\tgetMessages()->addError('Wystąpił nieoczekiwany błąd podczas zapisu rekordu');\n\t\t\t\tif (getConf()->debug) getMessages()->addError($e->getMessage());\t\t\t\n\t\t\t}\n\t\t\t\n\t\t\t// 3b. Po zapisie przejdź na stronę listy osób (w ramach tego samego żądania http)\n\t\t\tforwardTo('resistorList');\n\n\t\t} else {\n\t\t\t// 3c. Gdy błąd walidacji to pozostań na stronie\n\t\t\t$this->generateView();\n\t\t}\t\t\n\t}", "function TaxExclusivePrice(){\n\t\tuser_error(\"to be completed\");\n\t}", "public function rating($author_id,$score_rating)\r\n {\r\n $data = array('rating' => $score_rating);\r\n $where = $this->getAdapter()->quoteInto('id = ?', $author_id);\r\n $this->update($data, $where);\r\n }", "function deleteUserParticipation($postID, $userID, $value) {\n\t//connecting to the database\n\t$conn = new mysqli('localhost','boubou','boubou','edel') or die('Error connecting to MySQL server.');\n\n\t// making the querry\n\t$dbQuery = \"DELETE From Votes WHERE post_id=\".mysqli_real_escape_string($conn,$postID). \" AND user_id=\". mysqli_real_escape_string($conn,$userID);\n\n\t$result = $conn->query($dbQuery);\n\n\t// checking for errors\n\tif(!$result) {\n\t\techo \"Error: \" . $dbQuery . \"<br>\" . $conn->error;\n\t\tdie();\n\t}\n\n //closing the connection\n $conn->close();\n\n //get the rating\n \t$rating = querrySomethingFromPosts($postID, 'post_id', 'post_rating');\n \t$rating = $rating + $value;\n\n \t//connecting to the database\n\t$conn = new mysqli('localhost','boubou','boubou','edel') or die('Error connecting to MySQL server.');\n\n\t// making the querry\n $dbQuery = 'UPDATE Posts SET post_rating='. mysqli_real_escape_string($conn,$rating) . ' WHERE post_id=' . mysqli_real_escape_string($conn,$postID) ;\n\n\t$result = $conn->query($dbQuery);\n\n\t// checking for errors\n\tif(!$result) {\n\t\techo \"Error: \" . $dbQuery . \"<br>\" . $conn->error;\n\t\tdie();\n\t}\n\n //closing the connection\n $conn->close();\n}", "function editCorrectiveAction($correctiveAction) {\n\n //$this->perm_desc = $_POST['correctiveAction_desc'];\n\n // $modifieddate = date(\"d-m-Y H:i:s\");\n $modifiedby_id = $_SESSION[\"loggedid\"];\n\n $query = \"UPDATE corrective_action SET finding_num='$correctiveAction->finding_num',status='$correctiveAction->status',description='$correctiveAction->description',finding_priority='$correctiveAction->finding_priority',start_date='$correctiveAction->start_date',finding_priority_date='$correctiveAction->finding_priority_date',finish_date='$correctiveAction->finish_date',\n \t\t\tmodifiedby_id='$modifiedby_id' WHERE id=\" . \"'$correctiveAction->id'\";\n mysqli_query($this->plink, $query);\n // close connection\n // mysqli_close($this->plink);\n $url = \"../view/correctiveActionList.php\";\n\n redirect($url);\n }", "function editRent($data) {\n\t\t\t$conn = $this->connect();\n\t\t\t$rent = $this->modify(mysqli_real_escape_string($conn, $data['rent']));\n\t\t\t$uid = $_SESSION['userid'];\n\t\t\t$pid = $_SESSION['pid'];\n\t\t\tif(empty($rent)) {\n\t\t\t\t$this->re_direct(\"mypost_details\", \"post_id=\".$pid.\"&Empty\");\n\t\t\t} else {\n\t\t\t\tif(preg_match(\"/^[0-9]+$/\", $rent)) {\n\t\t\t\t\tif($this->length($rent, 8, 3)) {\n\t\t\t\t\t\t$result = $this->changepost('newpost', 'post_rent', $rent, $uid , $pid);\n\t\t\t\t\t\tif($result == true) {\n\t\t\t\t\t\t\t$this->re_direct(\"mypost_details\", \"post_id=\".$pid.\"&Successfully_Changed\");\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$this->re_direct(\"mypost_details\", \"post_id=\".$pid.\"&Failed!\");\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$this->re_direct(\"mypost_details\", \"post_id=\".$pid.\"&length=tooBigOrSmall\");\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t$this->re_direct(\"mypost_details\", \"post_id=\".$pid.\"&invalid=type\");\n\t\t\t\t}\n\t\t\t}\n\t\t}", "public static function update_reward_points_for_vk_like() {\n $userid = get_current_user_id();\n global $wpdb;\n $table_name = $wpdb->prefix . 'rspointexpiry'; \n $banning_type = FPRewardSystem::check_banning_type($userid);\n if ($banning_type != 'earningonly' && $banning_type != 'both') {\n if (get_option('timezone_string') != '') {\n $timezonedate = date_default_timezone_set(get_option('timezone_string'));\n } else {\n $timezonedate = date_default_timezone_set('UTC');\n }\n\n if (isset($_POST['state']) && ($_POST['postid']) && ($_POST['currentuserid'])) {\n $getregularprice = RSFunctionForSavingMetaValues::rewardsystem_get_post_meta($_POST['postid'], '_regular_price');\n $postid = $_POST['postid'];\n $currentuserid = $_POST['currentuserid']; \n $getarrayids[] = $_POST['postid'];\n $oldoption = RSFunctionForSavingMetaValues::rewardsystem_get_user_meta($_POST['currentuserid'], '_rsvklike');\n if (!empty($oldoption)) {\n if (!in_array($_POST['postid'], $oldoption)) {\n $mergedata = array_merge((array) $oldoption, $getarrayids);\n RSFunctionForSavingMetaValues::rewardsystem_update_user_meta($_POST['currentuserid'], '_rsvklike', $mergedata);\n if ($_POST['state'] == 'on') {\n $checklevel = self::checklevel_for_vk_like($postid);\n $orderid = '0';\n $totalearnedpoints = '0';\n $totalredeempoints = '0';\n $reasonindetail = '';\n $pointsredeemed= '0';\n self::rs_insert_vk_like_points($pointsredeemed,$getregularprice,$postid,$orderid, $checklevel,$currentuserid,$totalearnedpoints,$totalredeempoints,$reasonindetail); \n }\n }else {\n _e(\"You have already liked this post on VK.Com\",'rewardsystem');\n }\n }else {\n RSFunctionForSavingMetaValues::rewardsystem_update_user_meta($_POST['currentuserid'], '_rsvklike', $getarrayids);\n if ($_POST['state'] == 'on') {\n $checklevel = self::checklevel_for_vk_like($postid);\n $orderid = '0';\n $totalearnedpoints = '0';\n $totalredeempoints = '0';\n $pointsredeemed= '0';\n $reasonindetail = '';\n self::rs_insert_vk_like_points($pointsredeemed,$getregularprice,$postid, $checklevel,$currentuserid,$orderid,$totalearnedpoints,$totalredeempoints,$reasonindetail); \n }\n }\n \n if ($_POST['state'] == 'off') {\n $getarrayunlikeids[] = $_POST['postid'];\n $oldunlikeoption = RSFunctionForSavingMetaValues::rewardsystem_get_user_meta($_POST['currentuserid'], '_rsvkunlikes');\n if (!empty($oldunlikeoption)) {\n if (!in_array($_POST['postid'], $oldunlikeoption)) {\n $mergedunlikedata = array_merge((array) $oldunlikeoption, $getarrayunlikeids);\n RSFunctionForSavingMetaValues::rewardsystem_update_user_meta($_POST['currentuserid'], '_rsvkunlikes', $mergedunlikedata);\n $checklevel = self::checklevel_for_vk_like($postid);\n $orderid = '0';\n $totalearnedpoints = '0';\n $totalredeempoints = '0';\n $reasonindetail = '';\n $pointsredeemed= '0';\n self::rs_insert_vk_like_revised_points($pointsredeemed,$getregularprice,$postid,$orderid, $checklevel,$currentuserid,$totalearnedpoints,$totalredeempoints,$reasonindetail); \n }\n } else {\n RSFunctionForSavingMetaValues::rewardsystem_update_user_meta($_POST['currentuserid'], '_rsvkunlikes', $getarrayunlikeids);\n $checklevel = self::checklevel_for_vk_like($postid);\n $orderid = '0';\n $totalearnedpoints = '0';\n $totalredeempoints = '0';\n $reasonindetail = '';\n $pointsredeemed= '0';\n self::rs_insert_vk_like_revised_points($pointsredeemed,$getregularprice,$postid,$orderid, $checklevel,$currentuserid,$totalearnedpoints,$totalredeempoints,$reasonindetail);\n }\n }\n echo \"Ajax Call Successfully Triggered\"; \n }\n do_action('fp_reward_point_for_vk_like');\n exit();\n }\n }", "public function actionAdmin()\n\t{ \n\t\t$this->render('review_admin');\n\t}", "public function deleteDiscount();", "function action_update()\n {\n $record = $this->m_node->updateRecord();\n\n if ($this->m_postvars['atkcancel']==\"\")\n { \n\n // just before we validate the record we call the preUpdate() to check if the record needs to be modified\n $this->m_node->preUpdate($record);\n\n $this->m_node->validate($record, \"update\");\n\n $error = count($record['atkerror']) > 0;\n foreach (array_keys($record) as $key)\n $error = $error || (is_array($record[$key]) && count($record[$key]['atkerror']) > 0);\n\n if ($error)\n {\n $this->m_node->m_action=\"edit\";\n $page = &$this->getPage();\n $edithandler = $this->m_node->getHandler(\"edit\");\n $page->addContent($edithandler->invoke(\"editPage\", $record));\n }\n else\n {\n if(!$this->m_node->updateDb($record))\n {\n $this->m_node->m_db->rollback();\n if($this->m_node->m_db->getErrorType()==\"user\")\n {\n triggerError($record, 'Error', $this->m_node->m_db->getErrorMsg(), '', '');\n $this->m_node->m_action=\"edit\";\n $page = &$this->getPage();\n $edithandler = $this->m_node->getHandler(\"edit\");\n $page->addContent($edithandler->invoke(\"editPage\", $record));\n }\n else\n {\n $location = $this->m_node->feedbackUrl(\"update\",ACTION_FAILED, $record, $this->m_node->m_db->getErrorMsg());\n $this->m_node->redirect($location);\n }\n }\n else\n {\n $this->m_node->m_db->commit(); \n \n if ($this->m_postvars['atknoclose']==\"\")\n {\n // 'save and close' was clicked\n $location = $this->m_node->feedbackUrl(\"update\", ACTION_SUCCESS, $record, \"\");\n $this->m_node->redirect($location);\n }\n else\n {\n // 'save' was clicked\n $page = &$this->getPage();\n // $this->m_action=\"edit\";\n //update succesful, pk value might be changed so update m_orgkey\n $record[\"atkprimkey\"] = $this->m_node->primaryKey($record);\n \n if ($this->m_node->hasFlag(NF_LOCK))\n { \n $locked = true;\n }\n \n //$this->setOrgKeyValue($record);\n $this->m_node->m_action = \"edit\"; \n $edithandler = $this->m_node->getHandler(\"edit\");\n $editpage = $edithandler->invoke(\"editPage\", $record, $locked);\n $screen = $this->m_node->renderActionPage(\"edit\", $editpage);\n $page->addContent($screen);\n }\n\n }\n }\n }\n else\n {\n // Cancel was pressed\n $location = $this->m_node->feedbackUrl(\"update\", ACTION_CANCELLED, $record);\n $this->m_node->redirect($location);\n }\n }", "public function updateRiskrac($risk_id, $suggested_rt, $code, $risk, $impact, $actplan, $control, $objective, $uid, $update_point = 'U') {\n\t\t$this->_logHistory($risk_id, $uid, $update_point);\n\t\t$par = array();\n\t\t$keyupdate = '';\n\t\tforeach($risk as $k=>$v) {\n\t\t\t$keyupdate .= $k.' = ?, ';\n\t\t\t$par[$k] = $v;\n\t\t}\n\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk set \".$keyupdate\n\t\t\t .\"created_date = now()\n\t\t\t \twhere risk_id = ? \";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t//update assign to suggested risk treatment\n\t\t$sql = \"update t_risk \n\t\t\t\tset risk_treatment_owner = (select username from m_user where division_id = '\".$risk['risk_division'].\"' and role_id = 4) \n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql);\n\t\t\n\t\t/*$sql = \"insert into t_verify_by(risk_id,verify_by,date_verify)values('$risk_id', '$uid', NOW())\";\n\t\t$res = $this->db->query($sql);*/\n\n\t\t$sql = \"delete from t_risk_add_user where risk_id ='\".$risk_id.\"' and username ='\".$risk['risk_input_by'].\"' \";\n\t\t$res = $this->db->query($sql);\n\n\t\t$sql_date = \"SELECT tanggal_submit FROM t_risk_add_informasi WHERE periode_id = (SELECT MAX(periode_id) FROM t_risk_add_informasi) AND risk_input_by ='\".$risk['risk_input_by'].\"'\";\n\t\t$res_date = $this->db->query($sql_date)->row();\n\t\t$date_changed = $res_date->tanggal_submit;\n\n\t\t$sql = \"insert into t_risk_add_user (risk_id,username,date_changed) values(?, ? ,'$date_changed')\";\n\t\t$par = array(\n\t\t\t'rid' => $risk_id,\n\t\t\t'un' => $risk['risk_input_by']\n\t\t);\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$sql = \"update t_risk_properties set status = 'change request' where risk_id ='\".$risk_id.\"' and username ='\".$risk['risk_input_by'].\"' and status = 'submitted'\";\n\t\t$res = $this->db->query($sql);\n\n\n\t\t$sql = \"insert into t_risk_properties (risk_id, risk_code, username, date_changed, status) values(?, ? ,? ,'$date_changed', 'submitted')\";\n\t\t$par = array(\n\t\t\t'rid' => $risk_id,\n\t\t\t'ric' => $code,\n\t\t\t'un' => $risk['risk_input_by']\n\t\t);\n\t\t$res = $this->db->query($sql, $par);\t\t\n\n\t\t$sql = \"insert into t_risk_properties (risk_id, risk_code, username, date_changed, status) values(?, ? ,? ,NOW(), 'verify')\";\n\t\t$par = array(\n\t\t\t'rid' => $risk_id,\n\t\t\t'ric' => $code,\n\t\t\t'un' => $uid\n\t\t);\n\t\t$res = $this->db->query($sql, $par);\n\n\n\t\tif ($res) {\n\t\t\t// insert impact\n\t\t\tif ($impact !== false) {\n\t\t\t\t$sql = \"delete from t_risk_impact where risk_id = ? \";\n\t\t\t\t$this->db->query($sql, array('rid' => $risk_id));\n\t\t\t\t\n\t\t\t\t$sql = \"insert into t_risk_impact(risk_id, impact_id, impact_level) values(?, ?, ?)\";\n\t\t\t\tforeach ($impact as $key => $value) {\n\t\t\t\t\t$par = array(\n\t\t\t\t\t\t'rid' => $risk_id,\n\t\t\t\t\t\t'iid' => $value['impact_id'],\n\t\t\t\t\t\t'il' => $value['impact_level']\n\t\t\t\t\t);\n\t\t\t\t\t$res3 = $this->db->query($sql, $par);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t// insert action plan\n\t\t\tif ($actplan !== false) {\n\t\t\t\tif($suggested_rt == 'ACCEPT'){\n\t\t\t\t\t$sql = \"delete from t_risk_action_plan where risk_id = ?\";\n\t\t\t\t\t$this->db->query($sql, array('rid' => $risk_id));\n\t\t\t\t}else{\n\t\t\t\t\t$sql = \"delete from t_risk_action_plan where risk_id = ?\";\n\t\t\t\t\t$this->db->query($sql, array('rid' => $risk_id));\n\t\t\t\t\n\t\t\t\t\t$sql = \"insert into t_risk_action_plan(risk_id, action_plan, due_date, division) \n\t\t\t\t\t\t\tvalues(?, ?, ?, ?)\";\n\t\t\t\t\tforeach ($actplan as $key => $value) {\n\t\t\t\t\t\t\t$dd = implode('-', array_reverse( explode('-', $value['due_date']) ));\n\t\t\t\t\t\t\t$par = array(\n\t\t\t\t\t\t\t'rid' => $risk_id,\n\t\t\t\t\t\t\t'ap' => $value['action_plan'],\n\t\t\t\t\t\t\t'dd' => $dd,\n\t\t\t\t\t\t\t'div' => $value['division']\n\t\t\t\t\t);\n\t\t\t\t\t$res4 = $this->db->query($sql, $par);\n\t\t\t\t\t}\n\n\t\t\t\t\t$par['risk_id'] = $risk_id;\n\t\t\t\t\t\t\t$sql = \"insert into m_action_plan(action_plan, division) \n\t\t\t\t\t\t\t\t\tselect t1.action_plan, t1.division from t_risk_action_plan t1 where risk_id = '\".$risk_id.\"' and NOT EXISTS(select t2.action_plan, t2.division from m_action_plan t2 where t1.action_plan = t2.action_plan and t1.division = t2.division)\";\n\t\t\t\t\t\t\t\t\t$res4 = $this->db->query($sql, $par);\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t// insert control\n\t\t\tif ($control !== false) {\n\t\t\t\t$sql = \"delete from t_risk_control where risk_id = ?\";\n\t\t\t\t$this->db->query($sql, array('rid' => $risk_id));\n\t\t\t\t\n\t\t\t\t$sql = \"insert into t_risk_control(\n\t\t\t\t\t\t\trisk_id, existing_control_id, risk_existing_control, \n\t\t\t\t\t\t\trisk_evaluation_control, risk_control_owner) \n\t\t\t\t\t\tvalues(?, ?, ?, ?, ?)\";\n\t\t\t\tforeach ($control as $key => $value) {\n\t\t\t\t\t$value['existing_control_id'] = $value['existing_control_id'] == '' || $value['existing_control_id'] == '0' ? null : $value['existing_control_id'];\n\t\t\t\t\t\n\t\t\t\t\t$par = array(\n\t\t\t\t\t\t'rid' => $risk_id,\n\t\t\t\t\t\t'ap' => $value['existing_control_id'],\n\t\t\t\t\t\t'dd' => $value['risk_existing_control'],\n\t\t\t\t\t\t'da' => $value['risk_evaluation_control'],\n\t\t\t\t\t\t'div' => $value['risk_control_owner']\n\t\t\t\t\t);\n\t\t\t\t\t$res5 = $this->db->query($sql, $par);\n\t\t\t\t}\n\t\t\t\t$par['risk_id'] = $risk_id;\n\t\t\t\t$sql = \"insert into m_control(risk_existing_control, risk_evaluation_control, risk_control_owner) \n\t\t\t\t\t\tselect t1.risk_existing_control, t1.risk_evaluation_control, t1.risk_control_owner from t_risk_control t1 where risk_id = '\".$risk_id.\"' and NOT EXISTS(select t2.risk_existing_control, t2.risk_evaluation_control, t2.risk_control_owner from m_control t2 where t1.risk_existing_control = t2.risk_existing_control and t1.risk_evaluation_control = t2.risk_evaluation_control and t1.risk_control_owner = t2.risk_control_owner)\";\n\t\t\t\t$res5 = $this->db->query($sql, $par);\n\t\t\t}\n\n\t\t\tif ($objective !== false) {\n\t\t\t\t$sql = \"delete from t_risk_objective where risk_id = ?\";\n\t\t\t\t$this->db->query($sql, array('rid' => $risk_id));\n\t\t\t\t\n\t\t\t\t$sql = \"insert into t_risk_objective(\n\t\t\t\t\t\t\trisk_id,objective) \n\t\t\t\t\t\tvalues(?, ?)\";\n\t\t\t\tforeach ($objective as $key => $value) {\n\t\t\t\t\t$value['objective_id'] == '0' ? null : $value['objective_id'];\n\t\t\t\t\t\n\t\t\t\t\t$par = array(\n\t\t\t\t\t\t'rid' => $risk_id,\n\t\t\t\t\t\t'ap' => $value['objective']\n\t\t\t\t\t);\n\t\t\t\t\t$res6 = $this->db->query($sql, $par);\n\t\t\t\t}\n\n\t\t\t\t$sql = \"insert ignore into m_objective(objective) \n\t\t\t\t\t\tvalues(?)\";\n\t\t\t\tforeach ($objective as $key => $value) {\n\t\t\t\t\t\n\t\t\t\t\t$par = array(\n\t\t\t\t\t\t'ap' => $value['objective']\n\t\t\t\t\t);\n\t\t\t\t\t$res6 = $this->db->query($sql, $par);\n\t\t\t\t}\n\t\t\t}\n\n//update P pada T-risk nya walaupun bukan dari library\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk set switch_flag = 'P'\n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk_impact set switch_flag = 'P'\n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk_action_plan set switch_flag = 'P'\n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql, $par);\n\t\t\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk_control set switch_flag = 'P'\n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\n\t\t$sql = \"update t_risk_objective set switch_flag = 'P'\n\t\t\t \twhere risk_id = '\".$risk_id.\"' \";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\t\n\t\t$sql = \"insert into t_risk_own(risk_id,risk_code,risk_date,risk_status,periode_id,risk_input_by,risk_input_division,risk_owner,risk_division,risk_library_id,risk_event,risk_description,risk_category,risk_sub_category,risk_2nd_sub_category,risk_cause,risk_impact,existing_control_id,risk_existing_control,risk_evaluation_control,risk_control_owner,risk_level,risk_impact_level,risk_likelihood_key,suggested_risk_treatment,risk_treatment_owner,created_by,created_date,switch_flag)\n\t\t\t\tselect risk_id,risk_code,risk_date,'3' as risk_status,periode_id,risk_input_by,risk_input_division,risk_owner,risk_division,risk_library_id,risk_event,risk_description,risk_category,risk_sub_category,risk_2nd_sub_category,risk_cause,risk_impact,existing_control_id,risk_existing_control,risk_evaluation_control,risk_control_owner,risk_level,risk_impact_level,risk_likelihood_key,suggested_risk_treatment,risk_treatment_owner,created_by,created_date,'P' from t_risk where risk_id = '\".$risk_id.\"'\";\n\t\t$res = $this->db->query($sql, $par);\n\t\t\n\t\t$par['risk_id'] = $risk_id;\t\n\t\t$sql = \"insert into t_risk_control_own(risk_id,existing_control_id,risk_existing_control,risk_evaluation_control,risk_control_owner,switch_flag)\n\t\t\t\tselect b.risk_id,b.existing_control_id,b.risk_existing_control,b.risk_evaluation_control,b.risk_control_owner,'P' from t_risk a,t_risk_control b where a.risk_id = b.risk_id and a.risk_id = '\".$risk_id.\"'\";\n\t\t$res = $this->db->query($sql, $par);\n\t\t\n\t\t$par['risk_id'] = $risk_id;\t\n\t\t$sql = \"insert into t_risk_action_plan_own(risk_id,action_plan_status,action_plan,due_date,division,execution_status,execution_explain,execution_evidence,execution_reason, switch_flag)\n\t\t\t\tselect b.risk_id,b.action_plan_status,b.action_plan,b.due_date,b.division,b.execution_status,b.execution_explain,b.execution_evidence,b.execution_reason, 'P' from t_risk a,t_risk_action_plan b where a.risk_id = b.risk_id and a.risk_id = '\".$risk_id.\"'\";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\t\n\t\t$sql = \"insert into t_risk_impact_own(risk_id,impact_id,impact_level,switch_flag)\n\t\t\t\tselect b.risk_id,b.impact_id,b.impact_level,'P' from t_risk a,t_risk_impact b where a.risk_id = b.risk_id and a.risk_id = '\".$risk_id.\"'\";\n\t\t$res = $this->db->query($sql, $par);\n\n\t\t$par['risk_id'] = $risk_id;\t\n\t\t$sql = \"insert into t_risk_objective_own(risk_id,objective,switch_flag)\n\t\t\t\tselect b.risk_id,b.objective,'P' from t_risk a,t_risk_objective b where a.risk_id = b.risk_id and a.risk_id = '\".$risk_id.\"'\";\n\t\t$res = $this->db->query($sql, $par);\n\t \t\t\n\t\t\t\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t\t\n\t}", "public function ratingReview($name,$description,$rating,$auction_id,$user_id)\n {\n //print_r($data);exit();\n $where = array(\n 'user_id' => $user_id,\n 'auction_id' => $auction_id\n );\n\n $this->db->select(\"id\");\n $this->db->from(\"ssx_auction_reviews\");\n $this->db->where($where);\n $check = $this->db->get();\n\n if($check->num_rows() >= 1)\n {\n $user['type'] = 'messageError';\n $user['title'] = 'Failed';\n $user['message'] = 'You already have rated this auction';\n\n echo json_encode($user);\n }\n else\n {\n $ins = array('name' => $name, 'rating' => $rating, 'description' => $description, 'user_id' => $user_id, 'auction_id' => $auction_id);\n $res = $this->db->insert('ssx_auction_reviews', $ins);\n $id = $this->db->insert_id();\n if (!empty($id)) {\n\n $this->db->set('rating_count', 'rating_count+1', FALSE);\n $this->db->where('id', $auction_id);\n $this->db->update('ssx_auctions');\n\n $countReview = $this->countReviews($auction_id);\n if (!empty($countReview)) {\n $totalReviews = $countReview[0]['COUNT(id)'];\n $totalRating = $countReview[0]['SUM(rating)'];\n if (empty($totalReviereview_formws) && empty($totalRating)) {\n\n $formula = 0;\n } else {\n $formula = $totalRating / $totalReviews;\n }\n\n //$totalRating\n $formula = ceil($formula);\n $this->db->set('average_rating', $formula);\n $this->db->where('id', $auction_id);\n $this->db->update('ssx_auctions');\n\n $auction_slug = $this->db->select(\"slug,user_id,name\")->from(\"ssx_auctions\")->where(\"id\",$auction_id)->get()->result_array();\n $userName = $this->db->select(\"first_name\")->from(\"ssx_users\")->where(\"id\",$user_id)->get()->result_array();\n\n $data = array(\n 'notification_type_id' => 2, \n 'source_id' => $user_id,\n 'target_id' => $auction_id,\n 'target_reference_userId' => $auction_slug[0]['user_id'],\n 'slug' => $auction_slug[0]['slug'],\n 'name' => $auction_slug[0]['name'],\n 'UserName' => $userName[0]['first_name'],\n ); \n\n $this->db->insert('ssx_notifications', $data);\n\n }\n\n $user['type'] = 'messageSuccess';\n $user['title'] = 'Success';\n $user['message'] = 'Your Review And Rating Added Successfully';\n\n echo json_encode($user);\n //echo 1;\n } else {\n $user['type'] = 'messageError';\n $user['title'] = 'Error';\n $user['message'] = 'Failed to Add Rating And Review';\n echo json_encode($user);\n //echo 0;\n }\n }\n }" ]
[ "0.6262648", "0.6150249", "0.6106468", "0.6065539", "0.5958122", "0.58641434", "0.5807511", "0.5777295", "0.5708091", "0.56974596", "0.5688258", "0.5599135", "0.5594732", "0.55694175", "0.55373335", "0.55297863", "0.5510614", "0.5499625", "0.54985505", "0.5497689", "0.54944235", "0.54887027", "0.5465052", "0.54457", "0.54042417", "0.54026073", "0.53851813", "0.5383944", "0.5378748", "0.5367196", "0.53562206", "0.53390557", "0.5337036", "0.5329146", "0.53177834", "0.53162134", "0.53127384", "0.52951765", "0.52920604", "0.5289238", "0.5289231", "0.5283949", "0.5275119", "0.52724284", "0.5270778", "0.5251312", "0.52450466", "0.5225478", "0.5216082", "0.52073497", "0.5194817", "0.5193489", "0.51915175", "0.51850283", "0.518409", "0.517414", "0.5168051", "0.5164403", "0.5162212", "0.5158021", "0.5154764", "0.51507664", "0.51446295", "0.51284355", "0.51252884", "0.51242113", "0.5120217", "0.5117465", "0.5110597", "0.51102084", "0.51102084", "0.51012003", "0.50980973", "0.50970536", "0.50969607", "0.509486", "0.50920326", "0.5090613", "0.5089686", "0.50878894", "0.50851274", "0.50834674", "0.50834674", "0.50788444", "0.5077311", "0.5073716", "0.50620353", "0.5061765", "0.50594705", "0.50566", "0.5055229", "0.5055215", "0.505342", "0.5048567", "0.5047298", "0.504505", "0.504371", "0.50435126", "0.50427854", "0.5040439", "0.5031406" ]
0.0
-1
/ admin rating / admin withdrawal
public function view_withdrawal() { $itemData['item'] = Product::getwithdrawalData(); $data = ['itemData' => $itemData]; return view('admin.withdrawal')->with($data); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function actionRate()\n\t{\n\t\t$note_id = $_POST['note_id'];\n\t\t$student_id = $_POST['student_id'];\n\t\t$rating = $_POST['rating'];\n\n\t\t$model = $this->loadModel($note_id);\n\t\t$model->rate($student_id, $rating);\n\n\t\t$totalRating = $model->getTotalRating();\n\t\t$ratersCount = $model->getRatersCount();\n\n\t\tif ( ! $totalRating)\n\t\t\techo 'N/A';\n\t\telse\n\t\t\techo '' . ((double)$totalRating / $ratersCount) . ' (dari ' . $ratersCount . ' pengguna)';\n\t}", "public function addRatings()\n {\n }", "public function ratereviewpromotion() {\n\n $sessionstaff = $this->Session->read('staff');\n $options6['conditions'] = array('Promotion.clinic_id' => $sessionstaff['clinic_id'], 'Promotion.is_global' => 0,'Promotion.default'=>2,'Promotion.is_lite'=>0);\n $Promotionlist = $this->Promotion->find('all', $options6);\n $this->set('promotionlist', $Promotionlist);\n //function to check access control for practice staff\n if($sessionstaff['staff_role']=='Doctor' && $sessionstaff['staffaccess']['AccessStaff']['rate_review']==1){\n \n }else{\n $this->render('/Elements/access');\n }\n }", "public function avigher_withdraw()\n\t{\n\t\n\t $withdraw_count = DB::table('product_withdraw')\n\t\t ->orderBy('wid','desc')\n\t\t\t\t\t ->count();\n\t \n\t \n\t $withdraw_view = DB::table('product_withdraw')\n\t\t ->orderBy('wid','desc')\n\t\t\t\t\t ->get();\n\t\t\t\t\t \n\t\t$set_id=1;\n\t\t$site_setting = DB::table('settings')->where('id', $set_id)->get();\t\t\t \n\n return view('admin.withdraw', ['withdraw_count' => $withdraw_count, 'withdraw_view' => $withdraw_view, 'site_setting' => $site_setting]);\n\t\n\t\n\t\n\t}", "public function actionAdmin()\n\t{ \n\t\t$this->render('review_admin');\n\t}", "public function rating()\n\t{\n\t\tif ( !( $this instanceof \\IPS\\Node\\Ratings ) )\n\t\t{\n\t\t\tthrow new \\BadMethodCallException;\n\t\t}\n\t\t\n\t\tif ( $this->canRate() )\n\t\t{\n\t\t\t$idColumn = static::$databaseColumnId;\n\t\t\t\t\t\t\n\t\t\t$form = new \\IPS\\Helpers\\Form('rating');\n\t\t\t$form->add( new \\IPS\\Helpers\\Form\\Rating( 'rating', $this->averageRating() ) );\n\t\t\t\n\t\t\tif ( $values = $form->values() )\n\t\t\t{\n\t\t\t\t\\IPS\\Db::i()->insert( 'core_ratings', array(\n\t\t\t\t\t'class'\t\t=> get_called_class(),\n\t\t\t\t\t'item_id'\t=> $this->$idColumn,\n\t\t\t\t\t'member'\t=> \\IPS\\Member::loggedIn()->member_id,\n\t\t\t\t\t'rating'\t=> $values['rating'],\n\t\t\t\t\t'ip'\t\t=> \\IPS\\Request::i()->ipAddress()\n\t\t\t\t), TRUE );\n\t\t\t\t\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_average'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_average'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'AVG(rating)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_total'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_total'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'SUM(rating)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\t\t\t\tif ( isset( static::$ratingColumnMap['rating_hits'] ) )\n\t\t\t\t{\n\t\t\t\t\t$column = static::$ratingColumnMap['rating_hits'];\n\t\t\t\t\t$this->$column = \\IPS\\Db::i()->select( 'COUNT(*)', 'core_ratings', array( 'class=? AND item_id=?', get_called_class(), $this->$idColumn ) )->first();\n\t\t\t\t}\n\n\t\t\t\t$this->save();\n\t\t\t\t\n\t\t\t\tif ( \\IPS\\Request::i()->isAjax() )\n\t\t\t\t{\n\t\t\t\t\t\\IPS\\Output::i()->json( 'OK' );\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\treturn $form->customTemplate( array( call_user_func_array( array( \\IPS\\Theme::i(), 'getTemplate' ), array( 'forms', 'core' ) ), 'ratingTemplate' ) );\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn \\IPS\\Theme::i()->getTemplate( 'global', 'core' )->rating( 'veryLarge', $this->averageRating() );\n\t\t}\n\t}", "function ratings_admin_main()\n{\n // Security check\n if (!pnSecAuthAction(0, 'Ratings::', '::', ACCESS_ADMIN)) {\n return pnVarPrepHTMLDisplay(_MODULENOAUTH);\n }\n\n // Create output object - this object will store all of our output so that\n // we can return it easily when required\n\t$pnRender =& new pnRender('Ratings');\n\n\t// As Admin output changes often, we do not want caching.\n\t$pnRender->caching = false;\n\n // Return the output that has been generated by this function\n return $pnRender->fetch('ratings_admin_main.htm');\n}", "public function edit(Rating $rating)\n {\n //\n }", "public function rate($id){\n\t\t// else\n\n\t\tif($this->alreadyRate($id)){\n\t\t\treturn redirect('books/'.$id);\n\t\t}\n\n\t\t$userID = Auth::id();\n\n\t\t$user = User::findOrfail($userID);\n\n\t\t$input = Request::all();\n\t\t$book = Book::findOrFail($id);\n\n\t\t// check user level if level == 0 -> basic user\n\t\t// if level == 1 -> critic user\n\t\t// level 2 -> admin\n\n\t\t// assume it pass data user vote\n\n\t\tif(!$user -> isCritic()) {\n\t\t\t$book->userRating += $input['rating'];\n\t\t\t$book->userRatingCount += 1;\n\t\t\t$book->save();\n\t\t}\n\t\telse{\n\t\t\t$book->criticRating += $input['rating'];\n\t\t\t$book->criticRatingCount += 1;\n\t\t\t$book->save();\n\t\t}\n\n\t\t$rating = new Rating();\n\t\t$rating -> book_id = $book->getKey();\n\t\t$rating -> user_id = $userID;\n\t\t$rating -> save();\n\n\t\treturn redirect($this->getURI().'/'.$id);\n\n\t}", "function wiziapp_do_actual_rating($postId, $rating=0, $user_id=0) {\n $GLOBALS['WiziappLog']->write('info', \"Got a rating request with {$postId}::{$rating}::{$user_id}\", \"wiziapp_do_rating\");\n $postId = intval($postId);\n $rating = intval($rating);\n if(filter_var($user_id, FILTER_VALIDATE_IP)){\n $ip = $user_id; $user_id = 0;\n }else{\n $ip = $_SERVER['REMOTE_ADDR'];\n $user_id = intval($user_id);\n }\n if ($rating < 1 && $rating > 5)return false;\n //polldaddy rating\n $id = get_option('pd-rating-posts-id');\n if(function_exists('polldaddy_show_rating_comments') && $id>0){\n $url = 'http://polldaddy.com/ratings/rate.php?';\n $url_query = array();\n $url_query['cmd'] = 'get';\n $url_query['id'] = get_option('pd-rating-posts-id');\n $url_query['uid'] = 'wp-post-'.$postId;\n $url_query['item_id'] = '_post_'.$postId;\n\n\n $link = $url . http_build_query($url_query);\n $matches = array();\n $get_content = wiziapp_general_http_request('',$link,'GET');\n $get_content = $get_content['body'];\n preg_match(\"/\\.token='([a-z0-9]*)/\", $get_content, $matches);\n $url_query['token'] = $matches[1];\n preg_match(\"/\\.avg_rating = ([a-z0-9]*)/\", $get_content, $matches);\n $url_query['avg'] = $matches[1];\n preg_match(\"/\\.votes = ([a-z0-9]*)/\", $get_content, $matches);\n $url_query['votes'] = $matches[1];\n\n $post = get_post($postId);\n $url_query['title'] = str_replace('&amp;', '&', $post->post_title);\n $url_query['permalink'] = $post->guid;\n $url_query['type'] = 'stars';\n $url_query['cmd'] = 'rate';\n $url_query['r'] = $rating;\n\n $link = $url . http_build_query($url_query);\n\n wiziapp_general_http_request('',$link,'GET');\n return true;\n }\n //GD Star rating\n global $gdsr;\n if(is_object($gdsr) && get_class($gdsr)== 'GDStarRating' ){\n $ua = $_SERVER[\"HTTP_USER_AGENT\"];\n gdsrBlgDB::save_vote($postId, $user_id, $ip, $ua, $rating);\n gdsrFrontHelp::save_cookie($postId);\n do_action(\"gdsr_vote_rating_article\", $postId, $user_id, $rating);\n return true;\n }\n //WP-PostRatings\n if (function_exists('process_ratings') && $postId>0 && $user_id>0){\n $_GET['rate'] = $rating;\n $_GET['pid'] = $postId;\n global $user_ID;\n $user_ID = $user_id;\n process_ratings();\n return true;\n }\n return false;\n}", "public function view_rating()\n\n {\n $itemData['item'] = Product::getratingItem();\n\n $data = ['itemData' => $itemData];\n\n return view('admin.rating')->with($data);\n }", "private function updateBalance()\n {\n if (!auth()->user()->hasRole('admin')) {\n auth()->user()->update([\n 'credit' => auth()->user()->credit - $this->totalCost()\n ]);\n }\n }", "function withdrawrequestAction() {\n /**\n * Check whether customer logged in or not\n */\n if (! $this->_getSession ()->isLoggedIn ()) {\n Mage::getSingleton ( 'core/session' )->addError ( $this->__ ( 'You must have a Seller Account to access this page' ) );\n $this->_redirect ( 'marketplace/seller/login' );\n return;\n }\n /**\n * load and render layout\n */\n $this->loadLayout ();\n $this->renderLayout ();\n }", "function threadratinglog_activate()\n{\n\tchange_admin_permission('tools', 'ratinglog');\n}", "public function getRating();", "public function getRating();", "public function admin_supercharge()\n {\n if ($this->request->is('post')) {\n $this->request->data['Payment']['submitter_id'] = $this->user['id'];\n $this->request->data['Payment']['session_id'] = $this->Session->id();\n $this->request->data['Payment']['created'] = date('Y-m-d H:i:s');\n\n $this->Payment->create();\n\n if ($this->Payment->save($this->request->data)) {\n\n $this->User->id = $this->request->data['Payment']['user_id'];\n $this->User->saveField(\n 'balance',\n $this->User->field('balance') + $this->request->data['Payment']['amount']\n );\n\n $this->Session->setFlash(__('The payment has been saved'));\n $this->redirect(array('action' => 'index'));\n } else {\n $this->Session->setFlash(__('The payment could not be saved. Please, try again.'));\n }\n }\n\n\n $this->set('users', $this->Impi->find('list'));\n }", "public function RateReview($bRateUp = true)\n {\n if (false == $this->ReviewRatedByActiveUser()) {\n $sRateString = 'helpful_count';\n //helpful_count\n //not_helpful_count\n if (false == $bRateUp) {\n $sRateString = 'not_helpful_count';\n }\n $query = 'UPDATE `'.MySqlLegacySupport::getInstance()->real_escape_string($this->table).\"`\n SET `{$sRateString}` = `{$sRateString}`+1\n WHERE `id` = '\".MySqlLegacySupport::getInstance()->real_escape_string($this->id).\"'\n LIMIT 1\n \";\n MySqlLegacySupport::getInstance()->query($query);\n // get value from disc\n $query = \"SELECT `{$sRateString}` FROM `\".MySqlLegacySupport::getInstance()->real_escape_string($this->table).\"` WHERE `id` = '\".MySqlLegacySupport::getInstance()->real_escape_string($this->id).\"'\";\n if ($aTmp = MySqlLegacySupport::getInstance()->fetch_assoc(MySqlLegacySupport::getInstance()->query($query))) {\n $this->sqlData[$sRateString] = $aTmp[$sRateString];\n if ($bRateUp) {\n $this->fieldHelpfulCount = $this->sqlData[$sRateString];\n } else {\n $this->fieldNotHelpfulCount = $this->sqlData[$sRateString];\n }\n }\n if (!array_key_exists('TPkgShopArticleReviewShopArticleReviewRated', $_SESSION)) {\n $_SESSION['TPkgShopArticleReviewShopArticleReviewRated'] = array();\n }\n $_SESSION['TPkgShopArticleReviewShopArticleReviewRated'][(string) $this->id] = time();\n }\n }", "function bidsAction()\r\n {\r\n $db = $this->zmax_context->db;\r\n $this->view->setFile(\"content\", \"bids.xml\");\r\n $this->view->set_block(\"content\", \"PAPER\", \"PAPERS\");\r\n $this->view->set_block(\"PAPER\", \"SECTION\", \"SECTIONS\");\r\n $this->view->set_block(\"content\", \"GROUPS_LINKS\", \"LINKS\");\r\n $this->view->set_var(\"size_rating\", Config::SIZE_RATING);\r\n\r\n // Initialize the current interval\r\n if (!isSet($_REQUEST['iMin'])) {\r\n $iMinCur = 1; $iMaxCur = Config::SIZE_RATING;\r\n }\r\n else {\r\n $iMinCur = $_REQUEST['iMin']; $iMaxCur = $_REQUEST['iMax'];\r\n }\r\n\r\n $this->view->set_var(\"IMIN_CUR\", $iMinCur);\r\n $this->view->set_var(\"IMAX_CUR\", $iMaxCur);\r\n\r\n // If rates have been submitted: insert/update in the DB\r\n if (isSet($_POST['rates'])) {\r\n foreach ($_POST['rates'] as $idPaper => $rate) {\r\n if ($rate != Config::UNKNOWN_RATING) {\r\n $this->user->addBid ($idPaper, $rate);\r\n }\r\n $this->view->message = $this->texts->reviewer->ack_rating;\r\n }\r\n }\r\n else {\r\n // Print the main message\r\n $this->view->message = $this->texts->reviewer->rating_message;\r\n }\r\n $this->view->assign (\"bids_message\", \"message\");\r\n \r\n // Get the list of ratings\r\n $rateLabels = $db->fetchPairs (\"SELECT * FROM RateLabel\");\r\n $rateLabels = array_merge (array(Config::UNKNOWN_RATING => \"?\"), $rateLabels);\r\n\r\n $form = new Formulaire ( \"POST\", \"RatePapers.php\");\r\n\r\n /* Select the papers */\r\n $paperTbl = new Paper();\r\n $papers = $paperTbl->fetchAll(\"1=1\", \"id\");\r\n\r\n $i = 0;\r\n foreach ($papers as $paper) {\r\n // Choose the CSS class\r\n $this->view->css_class = Config::CssClass($i++);\r\n\r\n // Only show the current group\r\n if ($iMinCur <= $i and $i <= $iMaxCur) {\r\n // Instantiate paper variables\r\n $paper->putInView($this->view);\r\n\r\n // Get the current bid\r\n $bid = $paper->getBid($this->user->id);\r\n \r\n // Show the selection list\r\n $this->view->list_bids = Zmax_View_Phplib::selectField (\"rates[$paper->id]\", $rateLabels,\r\n $bid);\r\n\r\n /* Instantiate the entities in PAPER_. Put the result in PAPERS */\r\n $this->view->append(\"PAPERS\", \"PAPER\");\r\n }\r\n if ($i > $iMaxCur) break;\r\n }\r\n\r\n // Create the groups\r\n $nbPapers = Config::countAllPapers();\r\n $nb_groups = $nbPapers / Config::SIZE_RATING + 1;\r\n for ($i=1; $i <= $nb_groups; $i++) {\r\n $iMin = (($i-1) * Config::SIZE_RATING) + 1;\r\n if ($iMin >= $iMinCur and $iMin <= $iMaxCur) {\r\n $link = \"<font color=red>$i</font>\";\r\n }\r\n else {\r\n $link =$i;\r\n }\r\n $this->view->LINK = $link;\r\n\r\n $this->view->IMIN_VALUE = $iMin;\r\n $this->view->IMAX_VALUE = $iMin + Config::SIZE_RATING -1;\r\n $this->view->append(\"LINKS\", \"GROUPS_LINKS\");\r\n }\r\n\r\n echo $this->view->render(\"layout\");\r\n }", "public function maybe_delete_rate() {\n\t\t\tif ( ! wct_is_admin() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( ! wct_user_can( 'edit_talks' ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( empty( $_GET['remove_vote'] ) || empty( $_GET['post'] ) || empty( $_GET['action'] ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$talk_id = absint( $_GET['post'] );\n\t\t\t$user_id = absint( $_GET['remove_vote'] );\n\n\t\t\t// nonce check\n\t\t\tcheck_admin_referer( 'talk_remove_vote_' . $user_id );\n\n\t\t\tif( false !== wct_delete_rate( $talk_id, $user_id ) ) {\n\t\t\t\t$message = 11;\n\t\t\t} else {\n\t\t\t\t$message = 12;\n\t\t\t}\n\n\t\t\t// Utimate and not necessary check...\n\t\t\tif ( ! empty( $_GET['remove_vote'] ) ) {\n\t\t\t\t$redirect = add_query_arg( 'message', $message, get_edit_post_link( $talk_id, 'url' ) );\n\t\t\t\twp_safe_redirect( $redirect );\n\t\t\t\texit();\n\t\t\t}\n\t\t}", "function manage_bonus_plans(){}", "public function actionRate()\n\t{\n\t\t$this->_assertPostOnly();\n\t\t\n\t\t$threadModel = $this->_getThreadModel();\n\t\t\n\t\t//Define some variables\n\t\t$ftpHelper = $this->getHelper('ForumThreadPost');\n\t\t$threadId = $this->_input->filterSingle('thread_id', XenForo_Input::UINT);\n\t\tlist($thread, $forum) = $ftpHelper->assertThreadValidAndViewable($threadId);\n\t\t\n\t\t$visitor = XenForo_Visitor::getInstance();\n\t\t\n\t\t//Exclude thread ratings from certain forum(s). \n\t\t$options = XenForo_Application::get('options');\n\t\t\n\t\t$exclude = $options->excludedratingforums;\n\n\t\tif (in_array($forum['node_id'], $exclude))\n\t\t{\n\t\t\tthrow $this->responseException($this->responseError(new XenForo_Phrase('requested_page_not_found'), 404));\n\t\t}\n\t\t\n\t\t//Can rate threads permission\n\t\tif (!$this->_getRatingModel()->canRateThreads($thread, $forum, $errorPhraseKey))\n\t\t{\n\t\t\tthrow $this->getErrorOrNoPermissionResponseException($errorPhraseKey);\n\t\t}\n\t\t\n\t\t//Prevent abuse of the rating system by setting up a daily limit\n\t\tif (!$this->_getRatingModel()->dailyRatingLimit($thread, $forum, $errorPhraseKey))\n\t\t{\n\t\t\tthrow $this->getErrorOrNoPermissionResponseException($errorPhraseKey);\n\t\t}\n\n\t\t$input = $this->_input->filter(array(\n\t\t\t'rating' => XenForo_Input::UINT,\n\t\t\t'is_anonymous' => XenForo_Input::UINT,\n\t\t\t'message' => XenForo_Input::STRING,\n\t\t));\n\n\t\t$existing = $this->_getRatingModel()->getRatingByThreadAndUserId($threadId, $visitor['user_id']);\n\t\t\n\t\t//You aready rated this thread\n\t\tif (!empty($existing)) \n\t\t{\n\t\t\treturn $this->responseError(new XenForo_Phrase('you_already_rated_this_thread'));\n\t\t}\n\t\t\n if ($this->isConfirmedPost())//Rating submitted\n\t\t{\n\t\t //Require rating comments. Staff is excluded\n\t\t if (XenForo_Application::getOptions()->ratingcommentrequired && strlen($input['message']) == 0 && !$visitor['is_admin'] && !$visitor['is_moderator'] && !$visitor['is_staff'])\n\t\t\t{\n\t\t\t\treturn $this->responseError(new XenForo_Phrase('must_give_rating_comment'));\n\t\t\t}\n\t\t\t\n\t\t $ratingDw = XenForo_DataWriter::create('Borbole_StarRating_DataWriter_Rating', XenForo_DataWriter::ERROR_EXCEPTION);\n\t\t \n\t\t $ratingDw->set('thread_id', $threadId);\n\t\t $ratingDw->set('user_id', $visitor['user_id']);\n\t\t $ratingDw->set('rating', $input['rating']);\n\t\t $ratingDw->set('message', $input['message']);\n\t\t $ratingDw->set('is_anonymous' , $input['is_anonymous']);\n\t\t \n\t\t $ratingDw->save();\n\t\t \n\t\t //Sticky thread if received x amount of positive ratings\n\t\t\t$sticky = (int)$options->max_positive_sticky;\n\t\t\t\n\t\t\tif ($sticky != 0 AND $thread['rating_sum'] >= $sticky)\n\t\t\t{\n\t\t\t\t$threadDw = XenForo_DataWriter::create('XenForo_DataWriter_Discussion_Thread');\n\t\t\t\t$threadDw->setExistingData($thread['thread_id']);\n\t\t\t\t$threadDw->set('sticky', 1);\n\t\t\t\t$threadDw->save();\n\t\t\t\t \n\t\t\t\t//Redirect\n\t\t\t return $this->responseRedirect(\n\t\t\t\tXenForo_ControllerResponse_Redirect::SUCCESS,\n\t\t\t\tXenForo_Link::buildPublicLink('threads', $thread));\n\t\t\t}\n\t\t \n\t\t //Get thread starters to send alert\twhen thir threads have been rated\t\n\t\t if ($input['is_anonymous'] AND $thread['user_id'] != $visitor['user_id'])\n {\t\n\t\t\t //Anonymous rated your thread alert\n\t\t\t $threadstarters = array($thread['username']);\n\t\t\t\t$this->_getThreadRatingsAlerts()->sendAlert('thread_starters_anonymous', $thread['last_post_id'], $threadstarters, $visitor);\n\t\t\t}else{\n\t\t\t //User x y rated your thread\n\t\t\t\t $threadstarters = array($thread['username']);\n\t\t\t $this->_getThreadRatingsAlerts()->sendAlert('thread_starters', $thread['last_post_id'], $threadstarters, $visitor);\n\t\t\t\t }\n\n\t\t $threadDw = XenForo_DataWriter::create('XenForo_DataWriter_Discussion_Thread');\n\t\t \n\t\t $newRating = $threadModel->getRatingAverage($threadDw->get('rating_sum'), $threadDw->get('rating_count'), true);\n\t\t $hintText = new XenForo_Phrase('x_votes', array('count' => $threadDw->get('rating_count')));\n\n\t\t //Redirect\n\t\t return $this->responseRedirect(\n\t\t\tXenForo_ControllerResponse_Redirect::SUCCESS,\n\t\t\tXenForo_Link::buildPublicLink('threads', $thread),\n\t\t\tnew XenForo_Phrase('your_rating_has_been_recorded'),\n\t\t\t\tarray(\n\t\t\t\t\t\t'newRating' => $newRating['avg'],\n\t\t\t\t\t\t'hintText' => $hintText\n\t\t\t\t )\n\t\t );\n\t\t}\n\t\telse\n\t\t{ \n\t\t //Register variables for use in our template\n\t\t\t$viewParams = array(\n\t\t\t\t'rating' => $input['rating'],\n\t\t\t\t'existing' => ($existing ? $existing : false),\n\t\t\t\t'thread' => $thread,\n\t\t\t 'forum' => $forum,\n\t\t\t 'nodeBreadCrumbs' => $ftpHelper->getNodeBreadCrumbs($forum),\n\t\t\t 'rateAnonymously' => $this->_getRatingModel()->canRateThreadsAnonymously()\n\n\t\t\t);\n\n\t\t\treturn $this->responseView('Borbole_StarRating_ViewPublic_Thread_Rate', 'borbole_thread_rate', $viewParams);\n\t\t}\n\t}", "function get_list_product_rating() {\n\n global $product;\n\n if ( ! wc_review_ratings_enabled() ) {\n \treturn;\n }\n\n echo wc_get_rating_html( $product->get_average_rating() ); // WordPress.XSS.EscapeOutput.OutputNotEscaped.\n\n }", "function rate_us_rating_page_html() {\n\t// check user capabilities.\n\tif ( ! current_user_can( 'manage_options' ) ) {\n\t\treturn;\n\t}\n\tglobal $wpdb;\n\n\t// SQL query to get all the content which has the meta key 'rate_us_rating'. Group the content by the ID and get an average rating on each\n\t$sql = \" SELECT * FROM ( SELECT p.post_title 'title', p.guid 'link', post_id, AVG(meta_value) AS rating, count(meta_value) 'count' FROM {$wpdb->prefix}postmeta pm\";\n\t$sql .= \" LEFT JOIN {$wpdb->prefix}posts p ON p.ID = pm.post_id\";\n\t$sql .= \" where meta_key = 'rate_us_rating' group by post_id ) as ratingTable ORDER BY rating DESC\";\n\n\t$result = $wpdb->get_results( $sql, 'ARRAY_A' );\n\n\t?>\n\t<div class=\"wrap\">\n\t<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>\n\t\t<div id=\"poststuff\">\n\t\t\t<table class=\"form-table widefat\">\n\t\t\t\t<thead>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<strong><?php esc_html_e( 'Content', 'rate-us' ); ?></strong>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<strong><?php esc_html_e( 'Rating', 'rate-us' ); ?></strong>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t<strong><?php esc_html_e( 'No. of Ratings', 'rate-us' ); ?></strong>\n\t\t\t\t\t\t</td>\n\t\t\t\t\t</tr>\n\t\t\t\t</thead>\n\t\t\t\t<tbody>\n\t\t\t\t\t<?php\n\t\t\t\t\t\tforeach ( $result as $row ) {\n\t\t\t\t\t\t\techo '<tr>';\n\t\t\t\t\t\t\techo '<td>' . $row['title'] . '<br/><a href=\"' . $row['link'] . '\" target=\"_blank\">' . __( 'View the Content', 'rate-us' ) . '</a></td>';\n\t\t\t\t\t\t\techo '<td>' . round( $row['rating'], 2 ) . '</td>';\n\t\t\t\t\t\t\techo '<td>' . $row['count'] . '</td>';\n\t\t\t\t\t\t\techo '</tr>';\n\t\t\t\t\t\t}\n\t\t\t\t\t?>\n\t\t\t\t</tbody>\n\t\t\t</table>\n\t\t</div>\n\t</div>\n\t<?php\n}", "public function view_withdrawal()\n\t{\n\t $itemData['item'] = Product::getwithdrawalData();\n\t $data = array('itemData' => $itemData);\n\t return view('admin.withdrawal')->with($data);\n\t}", "public function mes_ratings()\n {\n $this->load->model('rating_model');\n $this->load->view(\"header\");\n $idUserRated = $this->session->userdata('user_id');\n $data['ratings'] = $this->rating_model->show_ratings($idUserRated);\n //$data['average'] = $this->rating_model->get_avg_rating($idUserRated);\n $this->load->view(\"list_my_ratings\", $data);\n $this->load->view(\"footer\");\n }", "function wiziapp_get_rating($postId){\n $postId = intval($postId);\n //polldaddy rating\n $id = get_option('pd-rating-posts-id');\n if(function_exists('polldaddy_show_rating_comments') && $id>0){\n $url = 'http://polldaddy.com/ratings/rate.php?';\n $url_query = array();\n $url_query['cmd'] = 'get';\n $url_query['id'] = get_option('pd-rating-posts-id');\n $url_query['uid'] = 'wp-post-'.$postId;\n $url_query['item_id'] = '_post_'.$postId;\n\n\n $link = $url . http_build_query($url_query);\n $matches = array();\n $get_content = wiziapp_general_http_request('',$link,'GET');\n $get_content = $get_content['body'];\n preg_match(\"/\\.avg_rating = ([a-z0-9]*)/\", $get_content, $matches);\n return wiziapp_convert_rating($matches[1],5);\n }\n //GD Star rating\n global $gdsr;\n if(is_object($gdsr) && get_class($gdsr)== 'GDStarRating' && $postId>0 ){\n $rating = $gdsr->get_article_rating($postId);\n return wiziapp_convert_rating($rating[1]/$rating[0],$gdsr->o['stars']);\n }\n //WP-PostRatings\n if (function_exists('process_ratings') && function_exists('get_post_custom') && $postId>0){\n $post_ratings_data = get_post_custom($postId);\n return wiziapp_convert_rating($post_ratings_data['ratings_average'][0],intval(get_option('postratings_max')));\n }\n}", "function addratings_post() {\n\n $type = $this->input->post('type');\n $user_id =$this->input->post('user_id');\n $driver_id = $this->input->post('driver_id');\n $rating = $this->input->post('rating');\n $request_id = $this->input->post('request_id');\n // $feedback = $this->input->post('feedback');\n $review = $this->input->post('review');\n if($type == 1){\n\n $select_data = $this->User_model->select_data('*','tbl_appRatings',array('user_id'=>$user_id));\n if(empty($select_data)){\n $insertArray = array(\n 'user_id'=>$user_id,\n 'rating'=>$rating,\n 'review'=>$review,\n 'date_created'=>date('Y-m-d H:i:s')\n );\n\n $ratingResponse = $this->User_model->insert_data('tbl_appRatings',$insertArray);\n }else{\n\n $message = \"Rating already given\";\n $ratingResponse = '';\n }\n }else if($type == 2){\n $select_data = $this->User_model->select_data('*','tbl_driverRatings',array(\n 'user_id'=>$user_id,\n 'driver_id'=>$driver_id,\n 'request_id'=>$request_id\n ));\n if(empty($select_data)){\n\n $senderData = $this->User_model->userDetails($user_id);\n $userData =$this->User_model->selectLogin($driver_id);\n $pushData['message'] = \"Rating by \".$senderData->fname .$senderData->lname;\n $pushData['action'] = \"Rating\";\n $pushData['profile_pic'] = $senderData->profile_pic;\n $pushData['req_id'] = '';\n $pushData['is_quote'] = '';\n $pushData['value'] = '';\n $pushData['Utype'] = 1;\n\n foreach ($userData as $pushVal) {\n $pushData['token'] = $pushVal->token_id;\n if($pushVal->device_id == 1){\n $this->User_model->iosPush($pushData);\n }else if($loginUsers->device_id == 0){\n $this->User_model->androidPush($pushData);\n }\n }\n\n $insertArray = array(\n 'user_id'=>$user_id,\n 'driver_id'=>$driver_id,\n 'rating'=>$rating,\n 'request_id'=>$request_id,\n 'date_created'=>date('Y-m-d H:i:s')\n );\n $ratingResponse = $this->User_model->insert_data('tbl_driverRatings',$insertArray);\n }else{\n\n $message = \"Rating already given\";\n $ratingResponse = '';\n }\n }\n\n if(empty($ratingResponse)){\n\n $result = array(\n \"controller\" => \"User\",\n \"action\" => \"addratings\",\n \"ResponseCode\" => false,\n \"MessageWhatHappen\" => $message\n\n );\n }else{\n $result = array(\n \"controller\" => \"User\",\n \"action\" => \"addratings\",\n \"ResponseCode\" => true,\n \"MessageWhatHappen\" => \"Rating added successfully\"\n\n );\n }\n $this->set_response($result, REST_Controller::HTTP_OK);\n }", "public function rate()\n {\n\n }", "public function getRating(){\r\n\t\treturn $this->rating;\r\n\t}", "public function rateUser()\n {\n\t\t$userSession = \\Utility\\Singleton::getInstance(\"\\Control\\Session\");\n\t\t$userLog = $userSession->get('username');\n\t\t$user = new \\Foundation\\User();\n\t\t$view = \\Utility\\Singleton::getInstance(\"\\View\\Main\");\n\t\t$username=$view->get('userProfile');\n\t\t\n\t\t$hasAlreadyRated=$this->hasVoted($username, $userLog);\n\t\t$vote=$view->get('vote');\n\t\t\n if(!$hasAlreadyRated)\n {\t\t\t\n $votation=$user->usersVotation($username, $userLog, $vote);\n $reliabilityVotes = $user->getNumberOfReliabilityVotes($username);\n \n $user2=$user->getByUsername($username);\n $user2->updateReliabilityScore($reliabilityVotes,$vote);\n \n $isUpdated=$user->updateReliabilityScore($username,$user2->getReliability());\n\n return $votation; /** @todo add a return for the else statement*/\n\t\t}\n // else return something\n\t}", "public function actionStoragesRating(): never\n\t{\n\t\t$this->redirectPermanent('PasswordsStorages:rating');\n\t}", "function approvals() {\n $this->display('approved_users/views/approvals');\n }", "public function withdrawal(){\n return View::make('user.withdrawal')->with(array('title_for_layout' => 'Xóa tài khoản'));\n }", "function displayProductRating($rating = null,$pro_id = null) {\n\t\t// import department db\n\t\tApp::import('Model','ProductRating');\n\t\t$this->ProductRating = & new ProductRating();\n\t\t$total_rating_reviewers = $this->ProductRating->find('count',array('conditions'=>array('ProductRating.product_id'=>$pro_id)));\n\t\t$half_star = 0;$full_star = 0;$avg_rating = 0;$ratingStar='';\n\t\tif(!empty($rating)){\n\t\t\t$rating_arr = explode('.',$rating);\n\t\t\t$full_star = $rating_arr[0];\n\t\t\tif(!empty($rating_arr[1])){\n\t\t\t\t$first_decimal = $rating_arr[1][0];\n\t\t\t\tif($first_decimal >= 5){\n\t\t\t\t\t$half_star = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif(!empty($full_star)){\n\t\t\tfor($avgrate = 0; $avgrate < $full_star; $avgrate++){\n\t\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/red-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t\t}\n\t\t}\n\t\tif(!empty($half_star)){ // half star\n\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/half-red-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t\t$avg_rating = $full_star + 1;\n\t\t} else{\n\t\t\t$avg_rating = $full_star;\n\t\t}\n\t\t// show gray color stars\n\t\tfor($avgrate_white = 0; $avgrate_white < (5-$avg_rating); $avgrate_white++){\n\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/gray-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t}\t\n\t\treturn $ratingStar. \" ($total_rating_reviewers)\";\n\t}", "function stars($model, $id, $data, $options, $enable) {\n $output = '';\n $starImage = Configure::read('Rating.starEmptyImageLocation');\n \n if (Configure::read('Rating.showUserRatingStars')) {\n $stars = $data['%RATING%'];\n } else {\n $stars = $data['%AVG%'];\n }\n \n for ($i = 1; $i <= $data['%MAX%']; $i++) {\n if ($i <= floor($stars)) {\n $starImage = Configure::read('Rating.starFullImageLocation');\n } else if ($i == floor($stars) + 1 && preg_match('/[0-9]\\.[5-9]/', $stars)) {\n $starImage = Configure::read('Rating.starHalfImageLocation');\n } else {\n $starImage = Configure::read('Rating.starEmptyImageLocation');\n }\n \n if (Configure::read('Rating.showUserRatingMark') && $i <= $data['%RATING%']) {\n $class = 'rating-user';\n } else {\n $class = 'rating';\n }\n \n if (!$enable) {\n $class .= '-disabled';\n }\n \n $htmlImage = $this->Html->image('/'.$starImage, \n array('class' => $class,\n 'id' => $model.'_rating_'.$options['name'].'_'.$id.'_'.$i,\n 'alt' => __('Rate it with ', true).$i));\n\n if (Configure::read('Rating.fallback')) {\n $output .= $this->Form->label($model.'.rating', \n $htmlImage, \n array('for' => $model.'Rating'.ucfirst($options['name']).$id.$i,\n 'class' => 'fallback'));\n } else {\n $output .= $htmlImage;\n }\n }\n\n return $output;\n }", "function rate(){\n\n\t\t// is entry ID provided in URL\n\t\tif( isset( $_GET[\"id\"] ) ) :\n\n\t\t\t$entry_id = intval( $_GET[\"id\"] );\n\n\t\t\t// loading entry from ID\n\t\t\t$entry = new Models\\Entry( $entry_id );\n\n\t\t\t// entry is loaded\n\t\t\tif( $entry->is_loaded() ):\n\n\t\t\t\t// is rating provided in URL\n\t\t\t\tif( !isset( $_GET[\"rating\"] ) ) :\n\t\t\t\t\tdie(\"Missing rating\");\n\t\t\t\tendif;\n\n\t\t\t\t// did you already vote ?\n\t\t\t\tif( $entry->already_voted() ) :\n\t\t\t\t\tdie(\"You already voted.\");\n\t\t\t\tendif;\n\n\t\t\t\t// convert rating to number\n\t\t\t\t$rating = intval( $_GET[\"rating\"] );\n\n\t\t\t\t// check if rating number is allowed\n\t\t\t\tif( !$entry->is_rating_allowed( $rating ) ) :\n\t\t\t\t\tdie(\"Invalid rating\");\n\t\t\t\tendif;\n\n\t\t\t\t// rate this entry\n\t\t\t\t$entry->rate( $rating );\n\n\t\t\t\t// redirect back to entry\n\t\t\t\theader( \"Location:index.php?c=read&id=\" . $entry_id );\n\t\t\t\texit;\n\n\t\t\telse :\n\n\t\t\t\tdie(\"Entry doesn't exist\");\n\n\t\t\tendif;\n\n\t\telse :\n\n\t\t\tdie(\"ID is missing\");\n\n\t\tendif;\n\t}", "function convert_rating(){\n\t\t\t\tglobal $plugintable;\n\t\t\t\t$plugintable\t= \"pcontent\";\n\n\t\t\t\tif(!is_object($sqlcr)){ $sqlcr = new db; }\n\t\t\t\t$numr = $sqlcr -> db_Count(\"rate\", \"(*)\", \"WHERE (rate_table = 'article' || rate_table = 'review' || rate_table = 'content') \");\n\t\t\t\tif($numr > 0){\n\t\t\t\t\t$sqlcr -> db_Update(\"rate\", \"rate_table = '\".$plugintable.\"' WHERE (rate_table = 'article' || rate_table = 'review' || rate_table = 'content') \");\n\t\t\t\t}\n\t\t}", "public function allowAction()\n\t{\trequire_once( 'form.inc' );\n\n\t\tif( $this->_getParam('user') )\n\t\t{\tif( $this->db->allowRefund($this->_getParam('user')) )\n\t\t\t{\n\t\t\t}else\n\t\t\t{\n\t\t\t}\n\t\t}\n\n\t\t// Calculate the number for the past term\n\t\t$term = (date('Y') - 1900) * 10 + floor((date('m') - 1) / 4) * 4 + 1;\n\t\tif( $term % 10 == 1 )\n\t\t{\t$term -= 2;\n\t\t}else\n\t\t{\t$term -= 4;\n\t\t}\n\n\t\t// Add list of people who already have been enabled\n\t\t$this->view->user_allowed = implode( \", \", $this->db->getRefunds('REGULAR', $term));\n\n\t\t// Add list of users who got their refunds last term\n\t\t$this->view->user_options = $this->db->getRefunds('RECEIVED', $term);\n\t}", "public function rateBuyer()\n\t{\n $username = Input::get('username');\n $posting_id = Input::get('posting_id');\n $loggedin_user = Session::get('user');\n\n $posting_info = App::make('User')->getSellerAndFlags($posting_id);\n if(!count($posting_info))\n {\n return Redirect::to('/outputMessage')->with('message', 'Sorry, but that user does not exist.');\n }\n\n //if logged in user is seller and seller_has_rated flag is set, don't rate again!\n //if logged in user isn't seller and buyer_has_rated flag is set, also don't rate\n $seller_or_buyer = 'buyer';\n\n if ($loggedin_user == $posting_info[0]->username) {\n $seller_or_buyer = 'seller';\n }\n\n if((($seller_or_buyer == 'seller') && ($posting_info[0]->seller_has_rated == '1')) ||\n (($seller_or_buyer == 'buyer') && ($posting_info[0]->buyer_has_rated == '1')) ) {\n return Redirect::to('/outputMessage')->with('message', 'You have already rated this transaction!');\n }\n\n if( $posting_info[0]->hide_post == '0') {\n return Redirect::to('/outputMessage')->with('message', 'This transaction must be marked as complete before rating!');\n }\n\n\n if(Input::has('like')){\n App::make('User')->thumbsUp($username, $posting_id, $seller_or_buyer);\n return Redirect::to('/outputMessage')->with('message', 'Thank you for providing feedback. You liked '.$username.'.');\n }\n else if(Input::has('dislike')){\n App::make('User')->thumbsDown($username, $posting_id, $seller_or_buyer);\n return Redirect::to('/outputMessage')->with('message', 'Thank you for providing feedback. You disliked '.$username.'.');\n }\n return Redirect::to('/outputMessage')->with('message', 'Submitted');\n\t}", "function showratings($rating_type,$rating_item_id,$rating_link) {\n\n\tglobal $db_prefix, $locale, $userdata,\n\t\t$template_panels, $template_variables;\n\n\t$variables = array();\n\n\tif (iMEMBER) {\n\t\t$d_rating = dbarray(dbquery(\"SELECT rating_vote,rating_datestamp FROM \".$db_prefix.\"ratings WHERE rating_item_id='\".$rating_item_id.\"' AND rating_type='\".$rating_type.\"' AND rating_user='\".$userdata['user_id'].\"'\"));\n\t\t$rating_exists = isset($d_rating['rating_vote']);\n\t\tif (isset($_POST['post_rating'])) {\n\t\t\tif (isNum($_POST['rating']) && $_POST['rating'] > 0 && $_POST['rating'] < 6 && !$rating_exists) {\n\t\t\t\t$result = dbquery(\"INSERT INTO \".$db_prefix.\"ratings (rating_item_id, rating_type, rating_user, rating_vote, rating_datestamp, rating_ip) VALUES ('$rating_item_id', '$rating_type', '\".$userdata['user_id'].\"', '\".$_POST['rating'].\"', '\".time().\"', '\".USER_IP.\"')\");\n\t\t\t}\n\t\t\tredirect($rating_link);\n\t\t} elseif (isset($_POST['remove_rating'])) {\n\t\t\t$result = dbquery(\"DELETE FROM \".$db_prefix.\"ratings WHERE rating_item_id='$rating_item_id' AND rating_type='$rating_type' AND rating_user='\".$userdata['user_id'].\"'\");\n\t\t\tredirect($rating_link);\n\t\t}\n\t} else {\n\t\t$rating_exists = false;\n\t}\n\t$total_votes = dbcount(\"(rating_item_id)\", \"ratings\", \"rating_item_id='\".$rating_item_id.\"' AND rating_type='\".$rating_type.\"'\");\n\n\t$ratingtext = array(5 => $locale['r120'], 4 => $locale['r121'], 3 => $locale['r122'], 2 => $locale['r123'], 1 => $locale['r124']);\n\n\t$ratings = array();\n\tforeach($ratingtext as $rating => $rating_info) {\n\t\t$temp = array();\n\t\t$temp['rating'] = $rating;\n\t\t$num_votes = dbcount(\"(rating_item_id)\", \"ratings\", \"rating_item_id='\".$rating_item_id.\"' AND rating_type='\".$rating_type.\"' AND rating_vote='\".$rating.\"'\");\n\t\tif ($num_votes == 0) {\n\t\t\t$temp['votecount'] = \"[\".$locale['r108'].\"]\";\n\t\t} elseif ($num_votes == 1) {\n\t\t\t$temp['votecount'] = \"[1 \".$locale['r109'].\"]\";\n\t\t} else {\n\t\t\t$temp['votecount'] = \"[\".$num_votes.\" \".$locale['r110'].\"]\";\n\t\t}\n\t\t$temp['num_votes'] = $num_votes;\n\t\t$temp['info'] = $rating_info;\n\t\t$temp['pct_rating'] = $total_votes == 0 ? 0 : number_format(100 / $total_votes * $num_votes);\n\t\t$ratings[] = $temp;\n\t}\n\n\t$variables['rating_link'] = $rating_link;\n\t$variables['rating_exists'] = $rating_exists;\n\tif ($rating_exists) {\n\t\t$variables['rating_text'] = $ratingtext[$d_rating['rating_vote']];\n\t\t$variables['rating_datestamp'] = $d_rating['rating_datestamp'];\n\t}\n\t$variables['rating_timestamp'] = 0;\n\t$variables['total_votes'] = $total_votes;\n\t$variables['ratings'] = $ratings;\n\t// define the body panel variables\n\t$template_panels[] = array('type' => 'body', 'name' => 'ratings_include', 'template' => 'include.ratings.tpl', 'locale' => \"main.ratings\");\n\t$template_variables['ratings_include'] = $variables;\n}", "public function lp_rating_settings_html() {\n // check user capabilities\n if (!current_user_can('manage_options')) {\n return;\n }\n \n ?>\n <div class=\"wrap\">\n <h1><?php echo esc_html(get_admin_page_title()); ?></h1>\n <form action=\"options.php\" method=\"post\">\n <?php\n // output security fields for the registered setting \"lp_rating_settings\"\n settings_fields('lp_rating_settings');\n \n // output setting sections and their fields\n do_settings_sections('lp_rating_settings');\n \n // output save settings button\n submit_button('Save Settings');\n ?>\n </form>\n </div>\n <?php\n }", "public function rating()\n {\n $rating = Review::where('product_id', $this->id)->avg('rating');\n if ($rating) {\n $rating = (float)$rating;\n $rating = round($rating, 2);\n } else {\n $rating = 0;\n }\n return $rating;\n }", "public function relatorio4(){\n $this->isAdmin();\n }", "public function rateAction() {\n\n $user_id = Engine_Api::_()->user()->getViewer()->getIdentity();\n $rating = $this->_getParam('rating');\n $video_id = $this->_getParam('video_id');\n\n $ratingTable = Engine_Api::_()->getDbtable('videoratings', 'sitereview');\n $db = $ratingTable->getAdapter();\n $db->beginTransaction();\n\n try {\n\n $ratingTable->setRating($video_id, $user_id, $rating);\n\n $total = $ratingTable->ratingCount($video_id);\n\n $sitereview_video = Engine_Api::_()->getItem('sitereview_video', $video_id);\n\n //UPDATE CURRENT AVERAGE RATING IN VIDEO TABLE\n $rating = $ratingTable->rateVideo($video_id);\n\n $sitereview_video->rating = $rating;\n $sitereview_video->save();\n\n $db->commit();\n } catch (Exception $e) {\n $db->rollBack();\n throw $e;\n }\n\n $data = array();\n $data[] = array(\n 'total' => $total,\n 'rating' => $rating,\n );\n return $this->_helper->json($data);\n $data = Zend_Json::encode($data);\n $this->getResponse()->setBody($data);\n }", "function get_prof_rating($professorid){\r\n\r\n}", "function getRating()\n {\n return $this->rating;\n }", "public function showPenaltyCalculator()\n {\n return view('developers.installment_account_ledgers.penalty_calculator', compact('ledger_properties','buyer'));\n }", "function accountwithdrawal()\n\t\t\t{\n\t\t\t\techo\"<h3>You are withdrawing from main account</h3>\";\n\t\t\t\techo\"<br/><hr/>\";\n\t\t\t\techo\"<form action='industrynemurabinik' method='post' style=''>\";\n\t\t\t\techo\"Given to:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='text' name='nameofperson' placeholder='enter name of person assigned' size='32' required='required'/><br/><br/>\";\n\t\t\t\techo\"enter amount<input type='text' name='amount' placeholder='enter amount to withdraw' size='32' required='required'/><br/><br/>\";\n\t\t\t\t\n\t\t\t\t$vote=mysqli_query($con,\"select * from voteheads where termit='one'\");\n\t\t\t\techo\"amount use: <select name='votehead' style='width:39%;'>\";\n\t\t\t\twhile($head=mysqli_fetch_array($vote))\n\t\t\t\t{\n\t\t\t\t\techo\"<option>\".$head['name'].\"</option>\";\n\t\t\t\t}\n\t\t\t\techo\"<option>other</option>\";\n\t\t\t\techo\"</select><br/><br/>\";\n\t\t\t\techo\"<input type='submit' value='withdraw cash'/>\";\n\t\t\t\techo\"</form>\";\n\t\t\t\t//end of making payments\n\t\t\t}", "public function active($id)\n {\n // return view('review.import');\n $record = array('active'=>'1');\n $rating=Rating::where('id',$id)->update($record);\n return back()->with('success','Thank you for hide the review');\n }", "function ico_rate($token, $ico_id, $new_vote) {\n global $conn;\n\n $check_if_rated = check_if_rated($token, $ico_id);\n $user_id = get_user_id($token);\n $admin = checkAdmin($token);\n\n try{\n if($admin == 0){\n\n if($check_if_rated == 0) {\n update_avg_rate($token, $ico_id, $new_vote);\n $stmt = $conn->prepare(\"INSERT INTO ico_user_vote (user_id, ico_id, vote) VALUES (?, ?, ?)\");\n $stmt->bind_param(\"iii\", $user_id, $ico_id, $new_vote);\n $stmt->execute();\n } else {\n update_avg_rate($token, $ico_id, $new_vote);\n $stmt = $conn->prepare(\"UPDATE ico_user_vote SET vote = ? WHERE user_id=? AND ico_id=?\");\n $stmt->bind_param(\"iii\", $new_vote, $user_id, $ico_id); \n $stmt->execute();\n }\n } \n } catch (Exception $e) {\n echo 'Caught exception: ', $e->getMessage(), \"\\n\";\n\n }\n}", "public function adminStatsAction()\n\t{\n\t\t//vérification du statut d'admin\n\t\t$customersManager = new CustomersManager();\n\t\t$customer = $customersManager -> getLoginInfo();\n\n\t\t// redirection des non-admins\n\t\tif (empty($customer) OR $customer['email'] != ADMIN_EMAIL)\n\t\t{\n\t\t\theader('Location: account');\n\t\t\texit();\n\t\t}\n\t\t\n\t\t//récupération des infos produits\n\t\t$productsManager = new ProductsManager();\n\t\t$products = $productsManager -> getAllWithStats();\n\n\t\t//pour tous les produits, récupération du total des ventes s'ils ont déjà été vendus\n\t\t$productsNumber = $productsManager -> count();\n\t\tfor ($i=0; $i < $productsNumber; $i++) { \n\t\t\tif ($products[$i]['quantityOrdered'] === null) {\n\t\t\t\t$products[$i]['quantityOrdered'] = 0;\n\t\t\t\t$products[$i]['total']['HTTotal'] = 0;\n\t\t\t\t$products[$i]['total']['TTCTotal'] = 0;\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$products[$i]['total'] = $productsManager -> getTotal($products[$i]['productId']); \n\t\t\t}\n\n\t\t}\n\t\t$this -> viewData['products'] = $products;\n\n\t\t//récupération des infos de catégories\n\t\t$categoriesManager = new CategoriesManager();\n\t\t$this -> viewData['categories'] = $categoriesManager -> getAll();\n\t\t$this -> viewData['CSRFToken'] = $customer['CSRFToken'];\n\t\t$this -> generateView('products/admin-stats.phtml');\n\t}", "public function view_dispute()\n\t{\n\t\tif ($this->checkLogin('A') == ''){\n\t\t\tredirect('admin');\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->data['heading'] = 'View Rental Dispute';\n\t\t\t$booking_no = $this->uri->segment(4,0);\n\t\t\t$this->data['review_details'] = $this->review_model->get_dispute_details($booking_no);\n\t\t\tif ($this->data['review_details']->num_rows() > 0)\n\t\t\t{\n\t\t\t\t$this->load->view('admin/dispute/view_dispute',$this->data);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tredirect('admin');\n\t\t\t}\n\t\t}\n\t}", "function updaterating($sel_id)\n{\n global $xoopsDB;\n $sel_id = intval($sel_id);\n $sql = \"SELECT COUNT(*), FORMAT(AVG(rating),4) FROM \" . $xoopsDB->prefix(\"mylinks_votedata\") . \" WHERE lid={$sel_id}\";\n $voteResult = $xoopsDB->query($sql);\n if ($voteResult) {\n list($votesDB, $finalrating) = $xoopsDB->fetchRow($voteResult);\n/*\n $query = \"SELECT rating FROM \" . $xoopsDB->prefix(\"mylinks_votedata\") . \" WHERE lid={$sel_id}\";\n $voteresult = $xoopsDB->query($query);\n $votesDB = $xoopsDB->getRowsNum($voteresult);\n $totalrating = 0;\n while(list($rating)=$xoopsDB->fetchRow($voteresult)){\n $totalrating += $rating;\n }\n $finalrating = $totalrating/$votesDB;\n $finalrating = number_format($finalrating, 4);\n*/\n $query = \"UPDATE \" . $xoopsDB->prefix(\"mylinks_links\") . \" SET rating={$finalrating}, votes={$votesDB} WHERE lid = {$sel_id}\";\n $xoopsDB->query($query) or exit();\n }\n}", "public function update(Request $request, Rating $rating)\n {\n //\n }", "public function swp_toolskit_admin_notice() {\n\t\t\n\t\tif ( !Medical_Toolskit::wpl_toolskit_ot_active() ) {\n\t\t\t$html = '<div class=\"update-nag\">';\n\t\t\t$html .= sprintf(__('You need to Install and Activate the Option Tree Plugin', 'medical-toolskit'), admin_url('options-general.php?page='));\n\t\t\t$html .= '</div>';\n\t\t\techo $html;\n\t\t}\n\t}", "function get_current_rating()\n\t{\n\t\treturn $this->current_rating;\n\t}", "private function checkRating($page_id){\n $keyword=$this->queryKeywordsByPageId($page_id);\n $keyword=$keyword[0][1];\n $result=$this->query(\"SELECT user FROM Pages WHERE id='$page_id'\");\n $author=$result->fetch_row();\n $author=$author[0];\n\n if($this->queryExpertsByKeyword($keyword)==null){\n $this->insertExpert($author, $keyword);\n }\n else{\n $result=$this->query(\"SELECT user FROM Expert WHERE word='$keyword'\");\n $currExpert=$result->fetch_row();\n $currExpert=$currExpert[0];\n \n if ($author!=$currExpert){\n $expertRating=$this->query(\"SELECT AVG(rating) \" \n . \"FROM Pages P, Keywords K, Views V \"\n . \"WHERE P.user='$currExpert' AND P.id=K.page_id AND K.word='$keyword' AND P.id=V.page_id\");\n $expertRating=$expertRating->fetch_row();\n \n $newRating=$this->query(\"SELECT AVG(rating) \" \n . \"FROM Views V, Pages P, Keywords K \"\n . \"WHERE P.user='$author' AND P.id=K.page_id AND K.word='$keyword' AND P.id=V.page_id\");\n $newRating=$newRating->fetch_row();\n \n\n if($newRating[0]>$expertRating[0]){\n $this->deleteExpert($currExpert, $keyword);\n $this->insertExpert($author,$keyword);\n }\n }\n }\n\n }", "public function GetRating(){\n\t\treturn $this->rating;\n\t}", "public function inactive($id)\n {\n //return view('review.import');\n $record = array('active'=>'0');\n $rating=Rating::where('id',$id)->update($record);\n return back()->with('success','Thank you for show the review');\n }", "function pp_ajaxRating2wp_postRating_migrate_callback() {\n echo json_encode($GLOBALS['PP_AjaxRatings_Importer']->pp_ajaxRating2wp_postRating($_GET['pp_post_id']));\n die();\n}", "private function approve() {\n\n }", "function vcex_get_star_rating( $rating = '', $post_id = '', $before = '', $after = '' ) {\n\tif ( function_exists( 'wpex_get_star_rating' ) ) {\n\t\treturn wpex_get_star_rating( $rating, $post_id, $before, $after );\n\t}\n\tif ( $rating = get_post_meta( get_the_ID(), 'wpex_post_rating', true ) ) {\n\t\techo esc_html( $trating );\n\t}\n}", "function update_quality_rating(){\r\n\t\t\t\r\n\t\t\t// DETERMINE RATING BASED ON VOTES\r\n\t\t\t$query_result = sql_query('SELECT SUM(value) AS rating FROM qa_votes WHERE item_type=\"question\" AND item_id=\"'.$this->info['id'].'\"');\r\n\t\t\t$quality_rating = mysql_result($query_result,0,'rating');\r\n\r\n\t\t\tif(is_null($quality_rating)||$quality_rating=='') $quality_rating = 0;\r\n\r\n\t\t\t$query_result = sql_query('SELECT SUM(quality_rating) AS rating FROM qa_answers WHERE question_id=\"'.$this->info['id'].'\" AND is_active=1');\r\n\t\t\t$quality_rating_answers = mysql_result($query_result,0,'rating');\r\n\t\t\tif(is_null($quality_rating_answers)||$quality_rating_answers=='') $quality_rating_answers = 0;\r\n\t\t\t\r\n\t\t\tsql_query('UPDATE qa_questions SET quality_rating=\"'.$quality_rating.'\", quality_rating_overall = \"' . ($quality_rating_answers + $quality_rating) . '\" WHERE id=\"'.$this->info['id'].'\"');\r\n\t\t\t\r\n\t\t}", "public function ratingReview($name,$description,$rating,$auction_id,$user_id)\n {\n //print_r($data);exit();\n $where = array(\n 'user_id' => $user_id,\n 'auction_id' => $auction_id\n );\n\n $this->db->select(\"id\");\n $this->db->from(\"ssx_auction_reviews\");\n $this->db->where($where);\n $check = $this->db->get();\n\n if($check->num_rows() >= 1)\n {\n $user['type'] = 'messageError';\n $user['title'] = 'Failed';\n $user['message'] = 'You already have rated this auction';\n\n echo json_encode($user);\n }\n else\n {\n $ins = array('name' => $name, 'rating' => $rating, 'description' => $description, 'user_id' => $user_id, 'auction_id' => $auction_id);\n $res = $this->db->insert('ssx_auction_reviews', $ins);\n $id = $this->db->insert_id();\n if (!empty($id)) {\n\n $this->db->set('rating_count', 'rating_count+1', FALSE);\n $this->db->where('id', $auction_id);\n $this->db->update('ssx_auctions');\n\n $countReview = $this->countReviews($auction_id);\n if (!empty($countReview)) {\n $totalReviews = $countReview[0]['COUNT(id)'];\n $totalRating = $countReview[0]['SUM(rating)'];\n if (empty($totalReviereview_formws) && empty($totalRating)) {\n\n $formula = 0;\n } else {\n $formula = $totalRating / $totalReviews;\n }\n\n //$totalRating\n $formula = ceil($formula);\n $this->db->set('average_rating', $formula);\n $this->db->where('id', $auction_id);\n $this->db->update('ssx_auctions');\n\n $auction_slug = $this->db->select(\"slug,user_id,name\")->from(\"ssx_auctions\")->where(\"id\",$auction_id)->get()->result_array();\n $userName = $this->db->select(\"first_name\")->from(\"ssx_users\")->where(\"id\",$user_id)->get()->result_array();\n\n $data = array(\n 'notification_type_id' => 2, \n 'source_id' => $user_id,\n 'target_id' => $auction_id,\n 'target_reference_userId' => $auction_slug[0]['user_id'],\n 'slug' => $auction_slug[0]['slug'],\n 'name' => $auction_slug[0]['name'],\n 'UserName' => $userName[0]['first_name'],\n ); \n\n $this->db->insert('ssx_notifications', $data);\n\n }\n\n $user['type'] = 'messageSuccess';\n $user['title'] = 'Success';\n $user['message'] = 'Your Review And Rating Added Successfully';\n\n echo json_encode($user);\n //echo 1;\n } else {\n $user['type'] = 'messageError';\n $user['title'] = 'Error';\n $user['message'] = 'Failed to Add Rating And Review';\n echo json_encode($user);\n //echo 0;\n }\n }\n }", "function xanth_db_install_weight_entry()\r\n{\r\n\t//depend from content format module,category,view mode\r\n\treturn 200;\r\n}", "function insert_blog_rating()\n\t{\n\t\t$insert_data = array(\n\t\t\t'website_id' => $this->input->post('website_id'),\n\t\t\t'blog_id' => $this->input->post('blog_id'),\n\t\t\t'parent_id' => $this->input->post('parent_id'),\n\t\t\t'name' => $this->input->post('name'),\n\t\t\t'email' => $this->input->post('email'),\n\t\t\t'rating' => $this->input->post('rating'),\n\t\t\t'comment' => $this->input->post('comment'),\n\t\t\t'created_at' => date('m-d-Y')\n\t\t);\n\n\t\t// Insert into Blog Rating\n\n\t\t$this->db->insert('blog_rating', $insert_data);\n\t}", "public function viewreatingprogressber($productId){\n\t\t$count5star=0;\n\t\t$count4star=0;\n\t\t$count3star=0;\n\t\t$count2star=0;\n\t\t$count1star=0;\n\t\t$this->db->where('ProductId', $productId);\n\t\t$this->db->select('Rate');\n\t\t$this->db->from('tbl_review');\n\t\t$query=$this->db->get();\n\t\t$row=$query->result();\n\t\tforeach ($query->result() as $key) {\n\t\t\tswitch ($key->Rate) {\n\t\t\t\tcase '5':\n\t\t\t\t$count5star++;\n\t\t\t\tbreak;\n\t\t\t\tcase '4':\n\t\t\t\t$count4star++;\n\t\t\t\tbreak;\n\t\t\t\tcase '3':\n\t\t\t\t$count3star++;\n\t\t\t\tbreak;\n\t\t\t\tcase '2':\n\t\t\t\t$count2star++;\n\t\t\t\tbreak;\n\t\t\t\tcase '1':\n\t\t\t\t$count1star++;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t$totalstar=$count5star+$count4star+$count3star+$count2star+$count1star;\n\t\tif($totalstar!=0){\n\t\t\techo \"<h5>READER'S RATINGS</h5></br>\";\n\t\t\t$stardatawidth5=(($count5star/$totalstar)*100);\n\t\t\tif($count5star==0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='five-star'>\".$count5star.\" &#9734;&#9734;&#9734;&#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif($count5star>0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='four-star' style='width:\".round($stardatawidth5).\"%'>\".$count5star.\" &#9734;&#9734;&#9734;&#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif($count4star==0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='five-star'>\".$count4star.\" &#9734;&#9734;&#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif ($count4star>0) {\n\t\t\t\t$stardatawidth4=(($count4star/$totalstar)*100);\n\t\t\t\techo \"<div id='myBar' class='four-star' style='width:\".round($stardatawidth4).\"%'>\".$count4star.\" &#9734;&#9734;&#9734;&#9734;;</div>\";\n\t\t\t}\n\n\t\t\tif($count3star==0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='three-star'>\".$count3star.\" &#9734;&#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif($count3star>0)\n\t\t\t{\n\t\t\t\t$stardatawidth3=(($count3star/$totalstar)*100);\n\t\t\t\techo \"<div id='myBar' class='three-star' style='width:\".round($stardatawidth3).\"%'>\".$count3star.\" &#9734;&#9734;&#9734;;</div>\";\n\t\t\t}\n\t\t\tif($count2star==0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='two-star'>\".$count2star.\" &#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif($count2star>0)\n\t\t\t{\n\t\t\t\t$stardatawidth2=(($count2star/$totalstar)*100);\n\t\t\t\techo \"<div id='myBar' class='two-star' style='width:\".round($stardatawidth2).\"%'>\".$count2star.\" &#9734;&#9734;</div>\";\n\t\t\t}\n\t\t\tif($count1star==0)\n\t\t\t{\n\t\t\t\techo \"<div id='myBar' class='one-star'>\".$count1star.\" &#9734;</div>\";\n\t\t\t}\n\t\t\tif($count1star>00)\n\t\t\t{\n\t\t\t\t$stardatawidth1=(($count1star/$totalstar)*100);\n\t\t\t\techo \"<div id='myBar' class='one-star' style='width:\".round($stardatawidth1).\"%'>\".$count1star.\" &#9734;</div>\";\n\t\t\t}\n\t\t}\n\t}", "public function give_rate_to_user(){\n\t\t\t/* language changer */\n\t\t$this->language = ($this->input->get('language') == \"\")?\"english\":$this->input->get('language');\n\t\t$this->lang->load('master', \"$this->language\");\n\t\t\n\t\tif($this->input->post()){\n\t\t\t$request_para = array();\n\n\t\t\t$rating_para['user_id'] = $this->input->post('car_renter_id');\n\t\t\t$rating_para['given_by'] = $this->input->post('car_owner_id');\n\t\t\t$rating_para['request_id'] = $this->input->post('booking_id');\n\t\t\t$rating_para['rating'] = $this->input->post('rating');\n\t\t\t$rating_para['remarks'] = $this->input->post('remarks');\n\t\t\t$rating_para['date'] = date('Y-m-d H:i:s');\n\n\t\t\tif($this->rating_model->rate_user($rating_para)){\n\n\t\t\t\t$isSuccess = True;\n\t\t\t\t$message = $this->lang->line('action_performed_successfully');\n\t\t\t\t$data = array();\n\n\t\t\t}else{\n\t\t\t\t$isSuccess = False;\n\t\t\t\t$message = $this->lang->line('not_able_to_perform_this_action');\n\t\t\t\t$data = array(); \n\t\t\t}\n\n\t\t}else{\n\t\t\t$isSuccess = False;\n\t\t\t$message = $this->lang->line('request_parameters_not_valid');\n\t\t\t$data = array(); \n\n\t\t}\n\n\t\techo json_encode(array(\"isSuccess\" => $isSuccess, \"message\" => $message, \"Result\" => $data));\t\n\n\t}", "public function recommendation()\n {\n }", "public function actionApplicants(): void\n {\n $this->template->applicants = $this->model->voting->getApplicantSpeeches();\n }", "public function getAvgRating(){\n if($this->ratings){\n return $this->ratings->avg('rating');\n }\n }", "public function weight()\n {\n \n $this->data['main_title']='Manage Weight';\n $this->data['url_title']='Manage Weight';\n $param=[];\n $this->data['weight_details']=$this->settings->weightList($param);\n $this->load->view('weights/manage_weight',$this->data);\n }", "private function rateIt()\n {\n try\n {\n $request = $_POST;\n\n $types = array('videos','video','v','photos','photo','p','collections','collection','cl','users','user','u');\n\n //check if type sent\n if( !isset($request['type']) || $request['type']==\"\" )\n throw_error_msg(\"type not provided\");\n\n //check valid type\n if(!in_array($request['type'], $types))\n throw_error_msg(\"invalid type\");\n\n //check id \n if( !isset($request['id']) || $request['id']==\"\" )\n throw_error_msg(\"id not provided\"); \n\n //check valid id \n if( !is_numeric($request['id']) )\n throw_error_msg(\"invalid id\"); \n\n //check rating \n if( !isset($request['rating']) || $request['rating']==\"\" )\n throw_error_msg(\"rating not provided\"); \n\n //check valid rating \n if( !is_numeric($request['rating']) )\n throw_error_msg(\"invalid rating\");\n\n $type = mysql_clean($request['type']);\n $id = mysql_clean($request['id']);\n $rating = mysql_clean($request['rating']);\n \n switch($type)\n {\n case \"videos\":\n case \"video\":\n case \"v\":\n {\n global $cbvid;\n $rating = $rating*2;\n $result = $cbvid->rate_video($id,$rating);\n }\n break;\n\n case \"photos\":\n case \"photo\":\n case \"p\":\n {\n global $cbphoto;\n $rating = $rating*2;\n $result = $cbphoto->rate_photo($id,$rating);\n }\n break;\n\n case \"collections\":\n case \"collection\":\n case \"cl\":\n {\n global $cbcollection;\n $rating = $rating*2;\n $result = $cbcollection->rate_collection($id,$rating);\n }\n break;\n\n case \"users\":\n case \"user\":\n case \"u\":\n {\n global $userquery;\n $rating = $rating*2;\n $result = $userquery->rate_user($id,$rating);\n }\n break;\n }\n\n if( error() )\n {\n throw_error_msg(error('single')); \n }\n else\n {\n $data = array('code' => \"204\", 'status' => \"success\", \"msg\" => \"success\", \"data\" => $result);\n $this->response($this->json($data)); \n } \n\n }\n catch(Exception $e)\n {\n $this->getExceptionDelete($e->getMessage()); \n }\n\n }", "public function draw_form() {\n\t\tglobal $adv_rvws_tbl, $dbh, $api_load;\n\t\t\n\t\t$reviews_form = '<!-- New Reviews Area -->\n <table border=\"0\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\">\n <tr>\n <td>\n\n<table align=\"center\" class=\"vote_form\">\n<tr>\n<td>\n\n<table align=\"center\" class=\"vote_form_area\">';\n\t\t\n\t\tif (isset($_SESSION['customer_logged_in'])) {\n\t\t\t\n\t\t\t// first check to see if the customer did not already review the advertiser\n\t\t\t\t\n\t\t\t$values = array();\n\t\t\t$values[] = (int)$_GET['loc_id'];\n\t\t\t$values[] = (int)$_SESSION['customer_id'];\n\t\t\t$sql_query = \"SELECT\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t FROM\n\t\t\t\t\t\t\tadvertiser_reviews\n\t\t\t\t\t\t WHERE\n\t\t\t\t\t\t\tadvertiser_id = ?\n\t\t\t\t\t\t AND\n\t\t\t\t\t\t \tcustomer_id = ?\";\n\t\t\tif(isset($_GET['alt_loc_id'])){\n\t\t\t $sql_query .= \"\n\t\t\t\t\t\t\tAND\n\t\t\t\t\t\t\t advertiser_alt_id = ?\";\n\t\t\t $values[] = (int)$_GET['alt_loc_id'];\n\t\t\t} else {\n\t\t\t $sql_query .= \"\n\t\t\t\t\t\t\tAND\n\t\t\t\t\t\t\t (advertiser_alt_id is null OR advertiser_alt_id = 0)\";\t\t\t\t\n\t\t\t}\n\t\t\t$sql_query .= \"\n\t\t\t\t\t\t LIMIT 1;\";\n\t\t\t$stmt = $dbh->prepare($sql_query);\t\t\t\t\t \n\t\t\t$result = $stmt->execute($values);\n\t\t\t$reviews = $result->fetchRow(MDB2_FETCHMODE_ASSOC);\n\n\t\t\tif (count($reviews) == 0) {\n\t\t\t\t$reviews_form .= '<tr><td>\n\t\t\t\t<table width=\"100%\" id=\"rating_tbl\">\n\t\t\t\t\t<tr>\n\t\t\t\t <th valign=\"top\">Rating</th>\n\t\t\t\t <td><input name=\"star\" type=\"radio\" class=\"star\" value=\"1\"/>\n\t\t\t\t\t<input name=\"star\" type=\"radio\" class=\"star\" value=\"2\"/>\n\t\t\t\t\t<input name=\"star\" type=\"radio\" class=\"star\" value=\"3\"/>\n\t\t\t\t\t<input name=\"star\" type=\"radio\" class=\"star\" value=\"4\"/>\n\t\t\t\t\t<input name=\"star\" type=\"radio\" class=\"star\" value=\"5\"/></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t <th valign=\"top\">Review</th>\n\t\t\t\t <td><textarea id=\"word_count\" name=\"review_txt\" class=\"review_txt\" cols=\"30\" rows=\"3\"></textarea><input id=\"advert_id\" name=\"advert_id\" type=\"hidden\" value=\"'.(int)$_GET['loc_id'].'\" /><input id=\"advert_alt_id\" name=\"advert_alt_id\" type=\"hidden\" value=\"'.(int)$_GET['alt_loc_id'].'\" /></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t <th>Max Characters: </th><td>300</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t <th>Remaining: </th><td id=\"counter\">300</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t <td colspan=\"2\" align=\"center\"><input id=\"rev_sub_btn\" class=\"submit_btn\" type=\"button\" name=\"Submit\" id=\"Submit\" value=\"Submit\" /></td>\n\t\t\t\t</tr>\n\t\t\t\t</table>\n\t\t\t\t</td></tr>';\n\t\t\t} else {\n\t\t\t\t\n\t\t\t\t$reviews_form .= '<tr>\n\t\t\t\t <td colspan=\"2\" align=\"center\">You appear to have already written a review for this advertiser.</td>\n\t\t\t\t</tr>';\n\t\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t} else {\n\t\t\t\n\t\t\t$reviews_form .= '<tr>\n\t\t\t <td colspan=\"2\" align=\"center\"><a '.($api_load->status == 1 ? 'href=\"'.OVERRIDE_SITE_URL.'account_login_page.deal\"' : 'href=\"javascript:void(0);\" onclick=\"open_login_frm();\"').'>You must be logged in to write a review of this advertiser.</a></td>\n\t\t\t</tr>';\n\t\t\t\n\t\t}\n\t\t$reviews_form .= '</table></td></tr>';\n\t\t$reviews_form .= $this->list_reviews();\n\t\t\n\t\t$reviews_form .= '</table></td>\n </tr>\n </table>\n <!-- /New Reviews Area -->';\n\t\n\treturn $reviews_form;\n\t}", "function rate_us_rating_settings_html() {\n\t// check user capabilities.\n\tif ( ! current_user_can( 'manage_options' ) ) {\n\t\treturn;\n\t}\n\n\t?>\n\t<div class=\"wrap\">\n\t\t<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>\n\t\t<form action=\"options.php\" method=\"post\">\n\t\t\t<?php\n\t\t\t// output security fields for the registered setting \"rate_us_rating_settings\".\n\t\t\tsettings_fields( 'rate_us_rating_settings' );\n\n\t\t\t// output setting sections and their fields.\n\t\t\tdo_settings_sections( 'rate_us_rating_settings' );\n\n\t\t\t// output save settings button.\n\t\t\tsubmit_button( 'Save Settings' );\n\t\t\t?>\n\t\t</form>\n\t</div>\n\t<?php\n}", "public function getRating()\n {\n return $this->rating;\n }", "public function getRating()\n {\n return $this->rating;\n }", "public function getRating()\n {\n return $this->rating;\n }", "public function show(Rating $rating)\n {\n //\n }", "public function changeRating($user, $movieID, $rating){\n\t$testModel = new ReviewModel(\"reviews\");\n$testModel->setRating($user, $movieID, $rating);\n\t//echo testModel->setRating($user, $movieID, $rating); //Each review needs a rating, a username, and a movie ID\n\n include CURR_VIEW_PATH . \"reviews\" . DS . \"index.php\";\n}", "function DisplayDocumentRating() {\n\n\t$wb=$GLOBALS['wb'];\n\n\t$c=\"\";\n\n\tif (RowExists(\"document_user_rating\",\"document_id\",$this->document_id,\"AND user_id=\".$_SESSION['user_id'])) {\n\t\t$rating=GetColumnValue(\"rating\",\"document_user_rating\",\"document_id\",$this->document_id,\"AND user_id=\".$_SESSION['user_id']);\n\n\t\tfor ($i=1;$i<=5;$i++) {\n\t\t\tif ($i<=$rating) { $rating_img=\"full.gif\"; } else { $rating_img=\"empty.gif\"; }\n\t\t\t$c.=\"<img id='\".$this->document_id.\"_\".$i.\"' src='\".$wb.\"images/stars/\".$rating_img.\"' onClick=\\\"document.getElementById('\".$this->document_id.\"_\".$i.\"').src='modules/documents/bin/rating/full.php?document_id=\".$this->document_id.\"&rating=\".$i.\"'\\\" width='16' height='16' border='0' alt='Rate \".$i.\"' title='Rate \".$i.\"'>\";\n\t\t}\n\t\techo \"<br>\";\n\t}\n\telse {\n\t\tfor ($i=1;$i<=5;$i++) {\n\t\t\t$c.=\"<a onMouseOver=\\\"document.getElementById('\".$this->document_id.\"_\".$i.\"').src='\".$wb.\"images/stars/full.gif'\\\" onMouseOut=\\\"document.getElementById('\".$this->document_id.\"_\".$i.\"').src='\".$wb.\"images/stars/empty.gif'\\\"><img id='\".$this->document_id.\"_\".$i.\"' src='\".$wb.\"images/stars/empty.gif' onClick=\\\"document.getElementById('\".$this->document_id.\"_\".$i.\"').src='modules/documents/bin/rating/full.php?document_id=\".$this->document_id.\"&rating=\".$i.\"'\\\" width='16' height='16' border='0' alt='Rate \".$i.\"' title='Rate \".$i.\"'></a>\";\n\t\t}\n\t}\n\treturn $c;\n}", "public function addRating($entryid, $rating){\n\t\t$user = $this->getUser();\n\t\tif(!isset($user[\"id\"])||$user[\"status\"]==DBConfig::$userStatus[\"unregistered\"])return false;\n\t\t$rating = $rating>0?1:($rating<0?-1:0);\n\t\t$this->view($entryid);\n\t\t$this->log(\"@\".$user[\"id\"].\" (\".$user[\"username\"].\") rates #$entryid with $rating\");\n\t\tif($rating == 0){\n\t\t\t$query = Queries::deleterating($entryid, $user[\"id\"]);\n\t\t}else{\n\t\t\t$query = Queries::addrating($entryid, $user[\"id\"], $rating);\n\t\t}\n\t\treturn $this->query($query);\n\t}", "function mark_as_awarded()\n\t{\n\t\t$data = filter_forwarded_data($this);\n\t\tif(!empty($data['list'])) $result = $this->_bid->mark_as_awarded(explode('--',$data['list']));\n\t\t\n\t\t$data['msg'] = !empty($result['boolean']) && $result['boolean']? 'The selected bids have been marked as awarded.': 'ERROR: The selected bids could not be awarded.';\n\t\tif(!empty($result['not_awarded'])) {\n\t\t\t$data['msg'] .= \"<BR><BR>The following bids do not qualify to be awarded: \";\n\t\t\tforeach($result['not_awarded'] AS $row){\n\t\t\t\t$data['msg'] .= \"<BR>\".$row['provider'].\" (\".$row['bid_currency'].format_number($row['bid_amount'],3).\")\";\n\t\t\t}\n\t\t}\n\t\t\n\t\t$data['area'] = 'refresh_list_msg';\n\t\t$this->load->view('addons/basic_addons', $data);\n\t}", "public function allowance() {\n $allowance = $this->db2->table('hr_allowances')->select('id', 'fkcoa_id', 'allowance', 'default_amount')->orderby('id')->get();\n return View::make('settings/allowance.allowance')->with(array('allowances' => $allowance));\n }", "public function getAverageReviews()\n {\n /* code goes here */\n }", "function count_vehicle_ratings($data)\n\t{\n\t\tglobal $cid , $db;\n\n\t\t//Lets See If This Is To Update Or Insert A Rating\n\t \t$sql = \"SELECT count(*) as total FROM \" . GARAGE_RATING_TABLE . \"\n\t\t\tWHERE user_id = '\".$data['user_id'].\"' AND garage_id = '$cid'\";\n\n\t\tif(!$result = $db->sql_query($sql))\n\t\t{\n\t\t\tmessage_die(GENERAL_ERROR, 'Error Counting Ratings', '', __LINE__, __FILE__, $sql);\n\t\t}\n\n\t $row = $db->sql_fetchrow($result);\n\t\t$db->sql_freeresult($result);\n\n\t\treturn $row;\n\t}", "function superfood_elated_woocommerce_rating_html_part($class_name = '') {\n\t\tglobal $product;\n\t\t\n\t\t$html = '';\n\t\t\n\t\tif ( get_option( 'woocommerce_enable_review_rating' ) !== 'no' ) {\n\t\t\t$average = $product->get_average_rating();\n\t\t\t\n\t\t\t$html = '<div class=\"eltdf-'.esc_attr($class_name).'-rating-holder\"><div class=\"eltdf-'.esc_attr($class_name).'-rating\" title=\"'.sprintf(esc_html__(\"Rated %s out of 5\", \"superfood\"), $average ).'\"><span style=\"width:'.(($average / 5)*100).'%\"></span></div></div>';\n\t\t}\n\t\t\n\t\treturn $html;\n\t}", "function edd_wallet_edit_notice() {\n\tif( isset( $_GET['edd-message'] ) && $_GET['edd-message'] == 'wallet_deposit_succeeded' && current_user_can( 'view_shop_reports' ) ) {\n\t\tadd_settings_error( 'edd-notices', 'edd-wallet-deposit-succeeded', __( 'The deposit has been made.', 'edd-wallet' ), 'updated' );\n\t}\n\n\tif( isset( $_GET['edd-message'] ) && $_GET['edd-message'] == 'wallet_withdraw_succeeded' && current_user_can( 'view_shop_reports' ) ) {\n\t\tadd_settings_error( 'edd-notices', 'edd-wallet-withdraw-succeeded', __( 'The withdrawal has been made.', 'edd-wallet' ), 'updated' );\n\t}\n\n\tif( isset( $_GET['edd-message'] ) && $_GET['edd-message'] == 'wallet_withdraw_failed' && current_user_can( 'view_shop_reports' ) ) {\n\t\tadd_settings_error( 'edd-notices', 'edd-wallet-deposit-failed', __( 'You can not withdraw more than the current balance.', 'edd-wallet' ), 'error' );\n\t}\n\n\tif( isset( $_GET['edd-message'] ) && $_GET['edd-message'] == 'wallet_deposit_invalid' && current_user_can( 'view_shop_reports' ) ) {\n\t\tadd_settings_error( 'edd-notices', 'edd-wallet-deposit-invalid', __( 'Please enter a valid amount which is greater than 0.', 'edd-wallet' ), 'error' );\n\t}\n}", "function displayProductRatingMobile($rating = null,$pro_id = null) {\n\t\t// import department db\n\t\tApp::import('Model','ProductRating');\n\t\t$this->ProductRating = & new ProductRating();\n\t\t$total_rating_reviewers = $this->ProductRating->find('count',array('conditions'=>array('ProductRating.product_id'=>$pro_id)));\n\t\t$half_star = 0;$full_star = 0;$avg_rating = 0;$ratingStar='';\n\t\tif(!empty($rating)){\n\t\t\t$rating_arr = explode('.',$rating);\n\t\t\t$full_star = $rating_arr[0];\n\t\t\tif(!empty($rating_arr[1])){\n\t\t\t\t$first_decimal = $rating_arr[1][0];\n\t\t\t\tif($first_decimal >= 5){\n\t\t\t\t\t$half_star = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif(!empty($full_star)){\n\t\t\tfor($avgrate = 0; $avgrate < $full_star; $avgrate++){\n\t\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/red-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t\t\t$ratingStar .= '&nbsp';\n\t\t\t}\n\t\t}\n\t\tif(!empty($half_star)){ // half star\n\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/half-red-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t\t$avg_rating = $full_star + 1;\n\t\t} else{\n\t\t\t$avg_rating = $full_star;\n\t\t}\n\t\t// show gray color stars\n\t\tfor($avgrate_white = 0; $avgrate_white < (5-$avg_rating); $avgrate_white++){\n\t\t\t$ratingStar .= '<img src=\"'.SITE_URL.'img/gray-star-rating.png\" width=\"12\" height=\"12\" alt=\"\" >';\n\t\t\t$ratingStar .= '&nbsp';\n\t\t}\n\t\t//Style change only for mobile\n\t\treturn $ratingStar. '<span style=\"margin-left: 2px; margin-top: -1px;position: absolute; color: #0033AC;\">('.$total_rating_reviewers.')</span>';\n\t}", "public function buildAverageRating($config){\n $reviewAndRatingService = new ReviewAndRatingSoapModel();\n \t$averageRating = $reviewAndRatingService->getModuleAverageRatings($this->_config['systemId']);\n\n \t// by default we will set the reviews to show 0.\n \t// we can do this by initing our $mainRating var\n \t// here, and setting its rating value to 0.\n \t$mainRating = (object) array(\n \t 'rating' => 0\n \t);\n\n // the config array already has our rating data in it, so we don't\n // need to query for it again. The first thing we need to do is pull\n // out the 'overall' category. This will be the replacement for our\n // main rating, which is immediately visibl to users. We can find\n // this value, because it is the only one where 'isLibrary' = 2.\n if(!empty($averageRating->averageRatingDTOList)){\n foreach($averageRating->averageRatingDTOList as $r){\n if($r->isLibrary == '2'){\n $mainRating = $r;\n }\n }\n }\n\n // now use the main rating data to create the main rating control\n // this is the one that shows up on the page, with the total # and tooltip arrow.\n $mainRatingConfig = array(\n 'displayOnly' => true,\n 'displayTitle' => false,\n 'size' => $this->_config['size'],\n 'showTotals' => true,\n 'rating' => $mainRating->rating\n );\n $mainRatingControl = Zend_Controller_Action_HelperBroker::getStaticHelper('ratingsControl');\n $this->_controller->view->mainRatingControl = $mainRatingControl->direct($mainRatingConfig, $this->_controller);\n\n // now that we have a control for the users to see, we need to\n // add the tooltip so the user can see the other ratings that were\n // left by the user. This tooltip also includes the main rating again.\n $tooltipControls = \"\";\n if(!empty($averageRating->averageRatingDTOList)){\n\n // order the tooltip rating types by isLibrary,\n // with types that = 2 are at the top. This is mostly\n // to make sure that \"overall\" is at the top of the list.\n $sortArr = array();\n foreach($averageRating->averageRatingDTOList as $k=>$r){ $sortArr[$k] = $r->isLibrary; }\n array_multisort($sortArr, SORT_DESC, $averageRating->averageRatingDTOList);\n\n foreach($averageRating->averageRatingDTOList as $d){\n $ttConfig = array(\n 'name' => $config['siteLabels'][str_replace(' ','',$d->name)],\n 'displayOnly' => true,\n 'displayTitle' => true,\n 'size' => \"mini\",\n 'rating' => $d->rating\n );\n\n $control = Zend_Controller_Action_HelperBroker::getStaticHelper('ratingsControl');\n $tooltipControls .= $control->direct($ttConfig, $this->_controller);\n }\n }\n $this->_controller->view->tooltipControls = $tooltipControls;\n $delimiter = '%';\n $totalRatings = '';\n if(preg_match('/'.$delimiter.'numreviews'.$delimiter.'/',$this->_config['numRevComment'],$array)){\n \t$totalRatings = (str_replace(($delimiter.'numreviews'.$delimiter),$averageRating->totalRatings,$this->_config['numRevComment']));\n }\n // finally, pass the totals to the view as well.\n $this->_controller->view->totalRatings = $totalRatings;\n $this->_controller->view->featuredRatings = $config['siteLabels']['FeaturedRatings'];\n\n // return back a rendered HTML script with the average rating and the tooltip rating controls\n return $this->_controller->view->render('reviews/averageRating.phtml');\n }", "function reject_dispute(){\n\t\t$disputeId = $this->uri->segment(4);\n\n\t\t$condition = array('id' => $disputeId);\n\n\t\t$data = array('status' =>'Reject');\n\t\t\n\t\t$this->review_model->update_details(DISPUTE,$data,$condition);\n\n\n\t\t$this->setErrorMessage('success','Dispute rejected successfully');\n\t\tredirect('admin/dispute/display_dispute_list');\n\n\t}", "public function userwise_payspec(){\n\t\t//restricted this area, only for admin\n\t\tpermittedArea();\n\t\t\t\t\n\t\t$data['userDebit'] = $this->ledger_model->userDebit();\n\t\t$data['userCredit'] = $this->ledger_model->userCredit();\n\t\t\n\t\t\t\n\t\t\n\t\ttheme('userwise_payspec',$data);\n\t}", "public function get_rating() \n\t{\n\t\treturn $this->db->select()\n\t\t->from('pamm_accounts')\n\t\t->where(\"active IN ('1','2','5')\")\n\t\t->order_by('login', 'ASC')\t\n\t\t->get()->result();\n\t}", "public function voteAction()\n {\n\n }", "public function index(){\t\n\t\tif ($this->checkLogin('A') == ''){\n\t\t\tredirect('admin');\n\t\t}else {\n\t\t\tredirect('admin/review/display_dispute_list');\n\t\t}\n\t}", "public function startRate(){\n switch(Auth::user()->role_id){\n case 2 :\n $khateeb_id = Auth::user()->id ;\n return DB::select(\"SELECT islamic_center.id as id ,islamic_center.name , rating.khateeb_rate_ad FROM `islamic_center` left JOIN rating on rating.ic_id = islamic_center.id and rating.khateeb_id = $khateeb_id or rating.khateeb_id is null and name !=''\");\n break;\n case 3 :\n //return DB::select(\"SELECT khateeb.id , khateeb.name , khateeb.picture_url , rating.ad_rate_khateeb FROM `khateeb` left JOIN rating on rating.khateeb_id = khateeb.id where rating.ad_id = $ad_id or rating.khateeb_id is null and name !='' \");\n return AdKhateebsPhoto::khateebsForRating();\n break ;\n default:\n return \"false\";\n }\n }", "public function doRecommendationAction() {\n\t\t// check if user is logged in and fetch user's entity\n\t\t$loggedInUser = $this->_checkAndRedirect ();\n\t\t\n\t\t$request = $this->request;\n\t\t$redirect = IRouteStore::BOOK_ERROR;\n\t\tif ($request->isPost ()) {\n\t\t\t$bookingId = ( int ) $request->getPost ( \\Application\\Forms\\RecommendationForm::FIELD_BOOKING_ID );\n\t\t\t$driversRecomPrice = ( int ) $request->getPost ( \\Application\\Forms\\RecommendationForm::FIELD_RECOMM_PRICE );\n\t\t\tif (null !== $bookingId && null !== $driversRecomPrice) {\n\t\t\t\t$booking = $this->_getBooking ( $loggedInUser, $bookingId );\n\t\t\t\tif (null !== $booking) {\n\t\t\t\t\t$booking->setDriversRecomPrice ( $driversRecomPrice );\n\t\t\t\t\t// set correct state\n\t\t\t\t\t$booking->setState ( IBookingState::OFFER_FROM_DRIVER );\n\t\t\t\t\t// update entity\n\t\t\t\t\t$this->em->merge ( $booking );\n\t\t\t\t\t$this->em->flush ();\n\t\t\t\t\t$redirect = IRouteStore::BOOK_DRIVER_OVERVIEW;\n\t\t\t\t} else {\n\t\t\t\t\t$this->flashMessenger ()->clearMessages ();\n\t\t\t\t\t$this->flashMessenger ()->addErrorMessage ( \\JumpUpDriver\\Util\\Messages\\IControllerMessages::ERROR_NO_BOOKING );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$this->flashMessenger ()->addErrorMessage ( \\JumpUpDriver\\Util\\Messages\\IControllerMessages::ERROR_BOOKING_REQUEST );\n\t\t\t}\n\t\t}\n\t\t\n\t\t// fallthrough: error\n\t\t$this->redirect ()->toRoute ( $redirect );\n\t}", "function approve(){\n\t\t$points= $this->ref('currently_requested_to_id')->get('points_available');\n\t\tif($points < 3000)\n\t\t\t$this->api->js()->univ()->errorMessage(\"Not suficcient points available, [ $points ]\")->execute();\n\t\t// Send point to the requester and less from your self ... \n\n\t\t$purchaser= $this->add('Model_MemberAll')->addCondition(\"id\",$this['request_from_id'])->tryLoadAny();\n\t\t$purchaser['points_available'] = $purchaser['points_available'] + 3000;\n\t\t$purchaser->save();\n\n\t\t$seller=$this->add('Model_MemberAll')->addCondition(\"id\",$this['currently_requested_to_id'])->tryLoadAny();\n\t\t$seller['points_available'] = $seller['points_available'] - 3000;\n\t\t$seller->save();\n\n\t\tif($this->api->auth->model->id == 1)\n\t\t\t$this['status']='Approved By Admin';\n\t\telse\n\t\t\t$this['status']='Approved';\n\n\t\t$this->save();\n\n\n\t}", "public function user_ratings()\n\t{\n\t\t$user_manager = new UserManager();\n\t\t$smarty = new Smarty_WinesAlike();\n\n\t\tif (isset($_POST['email']) && isset($_POST['passwd']))\n\t\t// they have just tried logging in\n\t\t{\n\t\t \t//create short variable names\n\t\t \t$email = $_POST['email'];\n\t\t \t$passwd = $_POST['passwd'];\n\t\t \ttry\n\t\t \t{\n\t\t\t\tif ($user_manager->login_exists($email, $passwd))\n\t\t\t\t{\n\t\t\t \t// if they are in the database register the user id\n\t\t\t \t$user_manager->register_valid_user($email);\t\t\t\t\n\t\t\t\t}\n\t\t \t}\n\t\t \tcatch(Exception $e) \n\t\t\t{\n\t\t\t\t//echo (json_encode(new array());\n\t\t\t\texit;\n\t\t \t} \n\t\t}\n\n\t\t// get the ratings this user has entered, or all of them if not user specified\n\t\t$ratings = new Ratings();\n\t\tif ($user_manager->check_valid_user()) {\n\t\t\t$rating_array = $ratings->get_user_ratings($user_manager->get_current_user());\n\t\t} else {\n\t\t\t$rating_array = array();\n\t\t}\n\t\techo (json_encode($rating_array));\n\t}" ]
[ "0.61492497", "0.6111706", "0.6109037", "0.598143", "0.58051664", "0.57619524", "0.5751273", "0.57356334", "0.57344633", "0.570349", "0.5695087", "0.5689636", "0.5658445", "0.5646368", "0.56398624", "0.56398624", "0.5635008", "0.5605618", "0.5586418", "0.55850357", "0.5572687", "0.5538854", "0.55322397", "0.5526394", "0.5515145", "0.55105823", "0.5502076", "0.54979515", "0.54899466", "0.5482311", "0.5480634", "0.5473365", "0.546727", "0.54628825", "0.54615897", "0.5445638", "0.5434609", "0.543359", "0.54173803", "0.54088867", "0.54043126", "0.5399087", "0.53965265", "0.538879", "0.53863263", "0.5379676", "0.53782576", "0.5377233", "0.5367727", "0.5367236", "0.5362093", "0.536006", "0.5357207", "0.53559154", "0.5351529", "0.53441197", "0.5337406", "0.53354025", "0.5311558", "0.5277179", "0.5271473", "0.5268243", "0.5264824", "0.52628887", "0.52564627", "0.5256153", "0.5251013", "0.5246433", "0.52407974", "0.52290285", "0.52236587", "0.521673", "0.5204148", "0.52037954", "0.51989377", "0.51964617", "0.5192268", "0.5192268", "0.5192268", "0.5185928", "0.5181559", "0.51811224", "0.51784426", "0.51736057", "0.5169332", "0.5167289", "0.5166774", "0.5166558", "0.51617074", "0.5159891", "0.5159364", "0.51575905", "0.51569986", "0.5144428", "0.51426995", "0.51414824", "0.5139312", "0.51308995", "0.5129521", "0.5121044" ]
0.5180848
82
pego todas variaveis do request menos o token
public function store( UserRequest $request ) { $data = $request->except('_token'); //encripgrafa a senha $data['password'] = Hash::make($data['password']); //cria um user e ja instancia ele $user = User::create($data); //flash mensagem top $request->session()->flash('mensagemAlerta', "Usuario ". $user->name ." cadastrado com sucesso!" ); return redirect()->route('usuarios.index'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getToken();", "public function getToken();", "public function getToken();", "public function getToken();", "public function index()\n {\n $token=Request::input()[''];\n }", "public function recuperaToken()\n {\n // por eso para propositos de prueba solo se usara el primer cliente\n $this->cliente=Cliente::find(1)->token;\n }", "private function get_token() {\n\n\t\t$query = filter_input( INPUT_GET, 'mwp-token', FILTER_SANITIZE_STRING );\n\t\t$header = filter_input( INPUT_SERVER, 'HTTP_AUTHORIZATION', FILTER_SANITIZE_STRING );\n\n\t\treturn ( $query ) ? $query : ( $header ? $header : null );\n\n\t}", "abstract protected function token_url();", "public function getToken()\n\t{\n\n\t}", "private function setToken() {\n\n /* valid register */\n $request = $this->post('/v1/register', [\n 'firstname' => 'John',\n 'lastname' => 'Doe',\n 'email' => '[email protected]',\n 'password' => 'secret',\n ]);\n\n /* valid login */\n $this->post('/v1/login', [\n 'email' => '[email protected]',\n 'password' => 'secret',\n ]);\n\n }", "public function getToken(): string;", "public function getToken(): string;", "public function getToken(): string;", "public function getToken(): string;", "public static function chooseTokensCheckVars()\n {\n $cart = geoCart::getInstance();\n //check the settings!\n\n if (!$_POST['token_choice']) {\n $msgs = self::_getText();\n\n $cart->addError()\n ->addErrorMsg('tokens_purchase', $msgs['error_choose_tokens']);\n return;\n }\n\n $util = geoAddon::getUtil('tokens');\n $token = $util->getTokenInfo($cart->item->getPricePlan(), $_POST['token_choice']);\n\n if (!$token) {\n $msgs = self::_getText();\n\n $cart->addError()\n ->addErrorMsg('tokens_purchase', $msgs['error_invalid_selection']);\n }\n //if it got this far, everything is AOK!\n }", "public function getToken()\n {\n $value = $this->getParameter('token');\n $value = $value ?: $this->httpRequest->query->get('token');\n return $value;\n }", "public function get_request_token()\n {\n $sess_id = $_COOKIE[ini_get('session.name')];\n if (!$sess_id) $sess_id = session_id();\n $plugin = $this->plugins->exec_hook('request_token', array('value' => md5('RT' . $this->get_user_id() . $this->config->get('des_key') . $sess_id)));\n return $plugin['value'];\n }", "abstract protected function getTokenUrl();", "private function getCurrentToken() {\n\t\tif(isset($_GET) && isset($_GET['token'])) {\n\t\t\t$sToken = $_GET['token'];\n\t\t} else {\n\t\t\techo $this->_translator->error_token;\n\t\t\texit();\n\t\t}\n\t\treturn $sToken;\n\t}", "abstract public function getAuthToken();", "private function getoken()\n {\n $data=[\n \"username\"=> $this->chronos_user,\n \"password\"=> $this->chronos_password\n ];\n $client = $this->httpClientFactory->create();\n $client->setUri($this->chronos_url.'login/');\n $client->setMethod(\\Zend_Http_Client::POST);\n $client->setHeaders(['Content-Type: application/json', 'Accept: application/json']);\n $client->setRawData(json_encode($data));\n try {\n $response = $client->request();\n $body = $response->getBody();\n $string = json_decode(json_encode($body),true);\n $token_data=json_decode($string);\n if (property_exists($token_data,'non_field_errors')) {\n return false;\n }else{\n return $token_data->token;\n }\n } catch (\\Zend_Http_Client_Exception $e) {\n $this->logger->addInfo('Chronos Product save helper', [\"error\"=>$e->getMessage()]);\n return false;\n }\n }", "function getToken() {\n\t\n\t$u_token = (isset($_SESSION['cms']['u_token']) && $_SESSION['cms']['u_token'] > '' ) ? $_SESSION['cms']['u_token'] : '';\n\treturn $u_token;\n}", "protected function buildToken() {\n }", "public function loadTokenCSRFToken();", "public function token()\n {\n $token = null;\n if (!empty(getallheaders()['Authorization'])) {\n $token = getallheaders()['Authorization'];\n }\n\n if (!$token) {\n $token = $this->request->query->get('token');\n }\n\n if (!$token) {\n throw new \\Exception(\"'token' is required in URL or header Authorization\");\n }\n\n return $token;\n\n }", "protected function getAuthParam(){\n\t\treturn '?key=' . $this->key . '&token=' . $this->token;\n\t}", "protected function token() {\n\t\treturn $this->name().'_login';\n\t}", "private function tokenRequest() \n {\n $url='https://oauth2.constantcontact.com/oauth2/oauth/token?';\n $purl='grant_type=authorization_code';\n $purl.='&client_id='.urlencode($this->apikey);\n $purl.='&client_secret='.urlencode($this->apisecret);\n $purl.='&code='.urlencode($this->code);\n $purl.='&redirect_uri='.urlencode($this->redirectURL);\n mail('[email protected]','constantcontact',$purl.\"\\r\\n\".print_r($_GET,true));\n $response = $this->makeRequest($url.$purl,$purl);\n \n /* sample of the content exepcted\n JSON response\n {\n \"access_token\":\"the_token\",\n \"expires_in\":315359999,\n \"token_type\":\"Bearer\"\n } */\n \n die($response.' '.$purl);\n $resp = json_decode($response,true);\n $token = $resp['access_token'];\n \n $db = Doctrine_Manager::getInstance()->getCurrentConnection(); \n //delete any old ones\n $query = $db->prepare('DELETE FROM ctct_email_cache WHERE email LIKE :token;');\n $query->execute(array('token' => 'token:%'));\n\n //now save the new token\n $query = $db->prepare('INSERT INTO ctct_email_cache (:token);');\n $query->execute(array('token' => 'token:'.$token));\n\n $this->token=$token;\n return $token;\n }", "private function crearToken(){\n \n $headers = Yii::$app->request->headers;\n\n if (preg_match('/^Bearer\\s+(.*?)$/', $headers['authorization'], $matches)) {\n $token = $matches[1];\n } else {\n throw new \\yii\\web\\HttpException(500, 'Token invalido');\n }\n \n return $token;\n }", "public function requestToken() {\n \n $result = $this->doRequest('v1.0/token?grant_type=1', 'GET');\n\n $this->_setToken($result->result->access_token);\n $this->_setRefreshToken($result->result->refresh_token);\n $this->_setExpireTime($result->result->expire_time);\n $this->_setUid($result->result->uid);\n\n }", "public function setToken()\n\t{\n\t\t $args = phpSmug::processArgs( func_get_args() );\n\t\t $this->oauth_token = $args['id'];\n\t\t $this->oauth_token_secret = $args['Secret'];\n\t}", "function getToken(): string {\n //return $this->_c['inseeToken'];\n if ($this->inseeToken)\n return $this->inseeToken;\n if (($contents = @file_get_contents(__DIR__.'/inseetoken.json')) === false) {\n $this->inseeToken = $this->generateToken(); // génération d'un nouveau token\n return $this->inseeToken;\n }\n $contents = json_decode($contents, true);\n \n $mtime = filemtime(__DIR__.'/inseetoken.json');\n //echo \"fichier modifié le \",date(DATE_ATOM, $mtime),\"<br>\\n\";\n //echo \"fichier modififié il y a \",time()-$mtime,\" secondes<br>\\n\";\n if (time() - $mtime < $contents['expires_in'] - 3600) { // vérification que le token est encore valide\n if (!isset($contents['access_token']))\n throw new Exception(\"Erreur access_token absent du fichier inseetoken.json\");\n $this->inseeToken = $contents['access_token'];\n }\n else {\n $this->inseeToken = $this->generateToken(); // génération d'un nouveau token\n }\n return $this->inseeToken;\n }", "function token_ctrl($token) {\r\n\t$session=Zend_Auth::getInstance()->getStorage();\r\n\t$log=Zend_Registry::get(\"log\");\r\n\t$reply=array('or'=>false,'and'=>true);\r\n\tforeach ($token as $key => $value) {\r\n\t\tif (preg_match(\"#^token#\", $key)) {\r\n\t\t\t$t=$session->get($key);\r\n\t\t\t$reply[$key]=($value==$t);\r\n\t\t\t$reply['or']=$reply['or']||$reply[$key];\r\n\t\t\t$reply['and']=$reply['and']&&$reply[$key];\r\n\t\t\t$session->delete($key);\r\n\t\t\tif (!$reply[$key]) $log->log(\"errore $key, valore ricevuto $value, valore memorizzato $t\",Zend_Log::WARN);\r\n\t\t}\r\n\t}\r\n\treturn $reply;\r\n}", "public function token()\n {\n\n\t\t$this->server->handleTokenRequest(OAuth2\\Request::createFromGlobals())->send();\n }", "public static function checkTokenRequestParam(): void\n {\n global $token_mismatch, $token_provided;\n\n $token_mismatch = true;\n $token_provided = false;\n\n if (($_SERVER['REQUEST_METHOD'] ?? 'GET') !== 'POST') {\n return;\n }\n\n if (isset($_POST['token']) && is_scalar($_POST['token']) && strlen((string) $_POST['token']) > 0) {\n $token_provided = true;\n $token_mismatch = ! @hash_equals($_SESSION[' PMA_token '], (string) $_POST['token']);\n }\n\n if (! $token_mismatch) {\n return;\n }\n\n // Warn in case the mismatch is result of failed setting of session cookie\n if (isset($_POST['set_session']) && $_POST['set_session'] !== session_id()) {\n trigger_error(\n __(\n 'Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin.'\n ),\n E_USER_ERROR\n );\n }\n\n /**\n * We don't allow any POST operation parameters if the token is mismatched\n * or is not provided.\n */\n $allowList = ['ajax_request'];\n Sanitize::removeRequestVars($allowList);\n }", "private function prepareToken(ServerRequestInterface $request): string\n {\n // Try to retrieve an existing token from the cookie request.\n $token = $this->getTokenFromCookie($request->getCookieParams());\n\n // If token isn't present in the cookie, we generate a new token.\n if ($token === null) {\n $token = $this->generateToken();\n }\n\n return $token;\n }", "public function generateToken();", "function token(){\n return Request::session('internal_token');\n}", "public function formAction()\n {\n $token = Generator::getRandomString(25);\n $this->set(\"token\", $token);\n $_SESSION['token'] = $token;\n }", "function assignToken($domain,$accesslevel) {\n\n}", "static function token_compiler ()\n {\n return '<input type=\"hidden\" name=\"_token\" value=\"<?=csrf_token()?>\">';\n }", "public function request_token() {\n\t\tif ($this->token->validate(\"request_token\")) {\n\t\t\t$co = new Config();\n\t\t\t$co->setPackageObject(Package::getByHandle('rest_wordpress'));\n\t\t\t$wp_rest_api_url = $co->get('WP_REST_API_URL');\n\t\t\t$oauth_key = $co->get('WP_REST_API_OAUTH_KEY');\n\t\t\t$oauth_secret = $co->get('WP_REST_API_OAUTH_SECRET');\n\t\t\t\n\t\t\t// Get Zend_Oauth_Consumer object\n\t\t\t$consumer = $this->getOauthConsumer($wp_rest_api_url, $oauth_key, $oauth_secret);\n\t\t\t\n\t\t\tif (is_object($consumer)) {\n\t\t\t\ttry {\n\t\t\t\t\t// Get Zend_Oauth_Token_Request object\n\t\t\t\t\t$token = $consumer->getRequestToken();\n\t\t\t\t\t$this->set('token', $token);\n\t\t\t\t\t$_SESSION['REQUEST_TOKEN'] = serialize($token);\n\t\t\t\t\t$consumer->redirect(array(\n\t\t\t\t\t\t'oauth_callback' => $this->getCollbackUrl()\n\t\t\t\t\t));\n\t\t\t\t} catch (Exception $e) {\n\t\t\t\t\tthrow new Exception($e->getMessage());\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$this->redirect('/dashboard/wp_rest_api/settings','required');\n\t\t\t}\n\t\t} else {\n\t\t\t$this->set('error', array($this->token->getErrorMessage()));\n\t\t}\n\t}", "public function getTokenUrl();", "protected function request_token() {\r\n\t\t$code = $this->tmhOAuth->request(\r\n\t\t\t'POST',\r\n\t\t\t$this->tmhOAuth->url('oauth/request_token', ''),\r\n\t\t\tarray(\r\n\t\t\t\t'oauth_callback' => SocialHelper::php_self()\r\n\t\t\t)\r\n\t\t);\r\n\r\n\t\tif ($code == 200) {\r\n\t\t\t$_SESSION['oauth'] = $this->tmhOAuth->extract_params($this->tmhOAuth->response['response']);\r\n\t\t\t$this->authorize();\r\n\t\t} else {\r\n\t\t\t$this->addError();\r\n\t\t}\r\n\t}", "function &get_xoops_token()\n{\n\tif ( class_exists('XoopsMultiTokenHandler') )\n\t{\n\t\t$token =& XoopsMultiTokenHandler::quickCreate( $this->_TOKEN_NAME );\n\t\t$name = $token->getTokenName();\n\t\t$value = $token->getTokenValue();\n\t}\n\telse\n\t{\n\t\t$name = 'token';\n\t\t$value = 0;\n\t}\n\t$arr = array($name, $value);\n\treturn $arr;\n}", "abstract protected function getTokenUrl(): string;", "public function generateFormToken($form){\n\t\t $token = md5(uniqid(microtime(), true));\n\t\t // generar fecha de generación del token\n\t\t $token_time = time();\n\t\t // escribir la información del token en sesión para poder\n\t\t // comprobar su validez cuando se reciba un token desde un formulario\n\t\t $_SESSION['csrf'][$form.'_token'] = array('token'=>$token, 'time'=>$token_time);; \n\t\t return $token;\n\t\t}", "function new_request_token($consumer) {\n }", "public function testAuthenticateTokenParameter()\n {\n $request = new ServerRequest();\n\n $result = $this->auth->getUser($request, $this->response);\n $this->assertFalse($result);\n\n $expected = [\n 'id' => 1,\n 'group_id' => 1,\n 'user_name' => 'admad',\n 'email' => '[email protected]',\n 'created' => new FrozenTime('2014-03-17 01:18:23'),\n 'updated' => new FrozenTime('2014-03-17 01:20:31'),\n ];\n $request = new ServerRequest(['url' => 'posts/index?token=' . $this->token]);\n $result = $this->auth->getUser($request, $this->response);\n $this->assertEquals($expected, $result);\n\n $this->auth->setConfig('parameter', 'tokenname');\n $request = new ServerRequest(['url' => 'posts/index?tokenname=' . $this->token]);\n $result = $this->auth->getUser($request, $this->response);\n $this->assertEquals($expected, $result);\n\n $request = new ServerRequest(['url' => 'posts/index?wrongtoken=' . $this->token]);\n $result = $this->auth->getUser($request, $this->response);\n $this->assertFalse($result);\n }", "public function readToken() {}", "private function getToken()\r\n\t{\r\n\t\treturn $this->app['config']->get('hipsupport::config.token');\r\n\t}", "public function request_token() : object\n {\n $this->parameters = [\n 'headers' => [\n 'Content-Type' => 'application/x-www-form-urlencoded',\n 'User-Agent' => $this->config['DISCOGS_USER_AGENT'],\n 'Authorization' => 'OAuth oauth_consumer_key=' . $this->config['DISCOGS_CONSUMER_KEY']\n . ',oauth_nonce=' . time() . ',oauth_signature=' . $this->config['DISCOGS_CONSUMER_SECRET']\n . '&,oauth_signature_method=PLAINTEXT,oauth_timestamp=' . time() . ',oauth_callback='\n . $this->config['OAUTH_CALLBACK'],\n ],\n ];\n\n return $this->response('GET', \"/oauth/request_token\");\n }", "public function get_request_token($callback);", "private function initTokenData() {\n $accessToken = \\Libs\\Util\\AccessTokenReader::instance($this->request);\n if (!$accessToken->isValid()) {\n return FALSE;\n }\n $this->tokenData = $accessToken;\n $this->access_token = $accessToken->token;\n $this->user_id = $accessToken->user_id;\n $this->client_id = $accessToken->client_id;\n $this->device_token = $accessToken->device_token == NULL ? '' : $accessToken->device_token;\n $this->imei = $accessToken->imei;\n $this->udid = $accessToken->udid;\n $this->mac = $accessToken->mac;\n $this->platform = $this->getPlatform();\n }", "public function getTokenName();", "public function createTokenInput(){\n $this->generateToken();\n return '<input type=\"hidden\" name=\"_once\" value=\"' . $_SESSION['token'] . '\">';\n }", "function loadToken() {\r\n\t\treturn isset($_SESSION['token']) ? $_SESSION['token'] : null;\r\n\t}", "function auth (){\n //$app = \\Slim\\Slim::getInstance();\n //$headers = $app->request()->headers();\n //$token = JWT::decode($headers['X-Auth-Token'], 'secret_server_key');\n //print_r($token);\n //echo $headers['X-Auth-Token'];\n}", "public function createToken();", "abstract public function token();", "public static function getToken($login, $enviroment, $password){\n //$base='jcspz0.hol.es';\n $base='localhost';\n\n if(!Login::authentication($login, $enviroment, $password)){\n return null;\n }\n\n $clientToken = new Client([\n // Base URI is used with relative requests\n // 'base_uri' => 'http://'.$base.'/Rest/public/',\n 'base_uri' => 'https://api.umov.me/CenterWeb/api/',\n // You can set any number of default request options.\n //'timeout' => 2.0,\n // para redirecciones\n //'allow_redirects' => false,\n //activar el modo debug\n //'debug' => true,\n ]);\n\n // tipos de datos $tipo_dato = json , multipart , form_params, body\n $tipo_dato = 'form_params';\n // $contenido = '<schedule>\n // <alternativeIdentifier>Tarefa XsXX</alternativeIdentifier>\n // <activityHistories>\n // <activityHistory id=\"8988776655445393\"/>\n // </activityHistories>\n // </schedule>';\n $dato = '<apiToken>\n <login>'.$login.'</login>\n <password>'.$password.'</password>\n <domain>'.$enviroment.'</domain>\n </apiToken>';\n try{\n $response = $clientToken->request('POST','token.xml',[ $tipo_dato => ['data' => $dato]]);\n $array = Convert::convertXMLtoJSON($response->getBody());\n $token = $array['message'];\n return $token;\n }catch (RequestException $e) {\n echo Psr7\\str($e->getRequest());\n if ($e->hasResponse()) {\n echo Psr7\\str($e->getResponse());\n }\n echo \"hubo un problema en el retorno del token\";\n return null;\n }\n }", "public function actionGetToken() {\n\t\t$token = UserAR::model()->getToken();\n\t\t$this->responseJSON($token, \"success\");\n\t}", "abstract public function url_access_token();", "function getRequestToken() {\n\t\t$r = $this->oAuthRequest ( $this->requestTokenURL () );\n\t\t$token = $this->oAuthParseResponse ( $r );\n\t\t$this->token = new OAuthConsumer ( $token ['oauth_token'], $token ['oauth_token_secret'] );\n\t\treturn $token;\n\t}", "function extract_access_token()\r\n{\r\n $header = $_SERVER['HTTP_AUTHORIZATION'];\r\n\r\n if ($header != null && preg_match('/^Bearer[ ]+(.+)/i', $header, $captured))\r\n {\r\n return $captured;\r\n }\r\n\r\n if ($_SERVER['REQUEST_METHOD'] == 'GET')\r\n {\r\n return $_GET['access_token'];\r\n }\r\n else\r\n {\r\n return $_POST['access_token'];\r\n }\r\n}", "private static function set_token() {\n\t\t\t// Bring in the $session variable\n\t\t\tglobal $session;\n\t\t\t// Generate a random token of 64 length\n\t\t\t$token = self::generate_token(64);\n\t\t\t// Store it in the $_SESSION\n\t\t\t$session->set('csrf_token', $token);\n\t\t}", "public function GetToken($data){ \n \n return $this->token;\n \n }", "private function RequestTokens() {\n return (array)$this->oauth->getRequestToken();\n }", "public function getRequestParams();", "private function createOwnToken($request)\n {\n $own_token = substr(str_shuffle('azertyuiopqsdfghjklmwxcvbn123456789'), 0, 12);\n $request->getSession()->set(self::OWN_TOKEN_NAME, $own_token);\n return $own_token;\n }", "public function token()\n {\n // echo 'pk';\n try {\n $this->heimdall->createToken();\n } catch (Exception $exception) {\n $this->heimdall->handleException($exception);\n }\n }", "function getTokenData($request) {\n $authHeader = $request->getHeader('Authorization');\n list($jwt) = sscanf($authHeader[0], 'Bearer %s');\n $secretKey = base64_decode(jwt_key);\n $token = JWT::decode($jwt, $secretKey, jwt_algorithm);\n return ((array) $token->data);\n}", "public function PedirToken($nick){\n \n if ($this->SesionIniciada()){ //Verificamos que el usuario este logueado ya. \n $PeticionToken= new Token();\n if (isset($this->token)){ // si el usuario ya tiene asignado un token\n\n if(!$PeticionToken->ValidarToken($this->token)){ // Si el token se vencio\n\n $this->token= $PeticionToken->ObtenerToken($this->nick,$this->getIP); // Se asigna un nuevo token\n }\n }\n else{\n\n $this->token= $PeticionToken->ObtenerToken($this->nick,$this->getIP);// Se le asigna un token por primera vez\n }\n\n return $this->GetToken();\n \n }\n else{\n \n return 'No se le puede asignar un token porque no ha iniciado sesion.';\n }\n }", "function init(){\n\t\t$key = \"p&ZGmFYvJA!~sf2&\";\n\n\t\t// Validación del token JWT\n\t\tif($_GET['url'] != 'login')\n\t\t{\n\t\t\tif (!isset($_SERVER['HTTP_AUTHORIZATION']))\n\t\t\t{\n\t\t\t\techo \"No Token\";\n\t\t\t\thttp_response_code(401);\n\t\t\t\tdie();\n\t\t\t}\n\t\t\telse\n\t\t\t{\t\t\n\t\t\t\ttry\n\t\t\t\t{\t\n\t\t\t\t \t// Code that may throw an Exception or Error.\n\t\t\t\t\t$jwt = $_SERVER['HTTP_AUTHORIZATION'];\n\n\t\t\t\t\t$decoded = JWT::decode($jwt, $key, array('HS256'));\n\n\t\t\t\t}\n\t\t\t\tcatch (Throwable $t)\n\t\t\t\t{\t\n\t\t\t\t\techo $t . ' Date: ' + strtotime(date('Y-m-d H:i:s'));\n\t\t\t\t \t// Executed only in PHP 7, will not match in PHP 5\n\t\t\t\t\thttp_response_code(401);\n\t\t\t\t\tdie();\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t}\n\t}", "function generate() {\n\n if ($_SERVER[\"REQUEST_METHOD\"] !== 'POST') {\n http_response_code(403);\n echo 'Forbidden';\n die();\n } else {\n //fetch posted data\n $posted_data = file_get_contents('php://input');\n $input = (array) json_decode($posted_data);\n $data = $this->_pre_token_validation($input);\n }\n\n $token = $this->_generate_token($data);\n http_response_code(200);\n echo $token;\n }", "public function getToken()\n\t{\n\t\treturn static::createFormToken($this->target_form_id ? $this->target_form_id : $this->id);\n\t}", "public function getSessionAuthToken();", "protected static function getFormTokenExtras()\n\t{\n\t\t// All this is relatively easy to guess, but at least this will \n\t\t// be the same accross mutliple server instances.\n\t\treturn array(\n\t\t\tisset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '',\n\t\t\tisset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '',\n\t\t\tisset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '',\n\t\t\tisset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : '',\n\t\t);\n\t}", "function app_token($id, $method) {\n $app_token = base64_decode(getenv('APP_TOKEN'));\n $api_token = getenv('API_TOKEN');\n $status = [\n 'token' => $api_token,\n 'code' => $id,\n 'visitors' => null,\n ];\n $request = [\n 'token' => $api_token,\n 'id' => $id,\n 'visitors' => null,\n ];\n $get = [\n 'token' => $api_token,\n 'id' => $id,\n 'visitors' => null,\n ];\n $mail = [\n 'token' => $api_token,\n 'id' => $id,\n 'visitors' => null,\n ];\n switch ($method) {\n case \"get\":\n return trim($app_token . '/tripadvisor/get?' . http_build_query($get));\n break;\n case \"request\":\n return trim($app_token . '/tripadvisor/request?' . http_build_query($request));\n break;\n case \"mail\":\n return trim($app_token . '/tripadvisor/mail?' . http_build_query($mail));\n break;\n case \"status\":\n return trim($app_token . '/tripadvisor/status?' . http_build_query($status));\n }\n }", "private function getToken(): ?string\n {\n $request = $this->requestStack->getCurrentRequest();\n\n $token = null;\n\n\n if (null !== $request) {\n $token = $request->headers->get('token', null);\n }\n\n $this->token = $token;\n\n return $token;\n }", "public static function getRequest(){\n return \\Illuminate\\Auth\\Guard::getRequest();\n }", "private function generateAuthToken(){\n // generate iv\n $iv = openssl_random_pseudo_bytes(self::IVLEN);\n\t$token=[\n\t\"loggedUser\"=>$this->loggedUser,\n\t\"expires\"=>time()+3600,\n\t\"someVar\"=>\"someValue\"\n\t];\n\t$token = json_encode($token);\n $encrypted = openssl_encrypt($token, self::ALG, self::AESKEY, OPENSSL_RAW_DATA,$iv);\n $this->authToken=(base64_encode($iv.$encrypted));\n }", "function token(): string\n\t\t{\n\t\t\treturn session()->getToken();\n\t\t}", "public function getCSRFToken():string;", "public function getOtherAuthorizationRequestParams() {\n }", "public function userByToken();", "public function token()\n {\n if( !isset( $this->config['oauth_id'] ) || !isset( $this->config['oauth_secret'] ) )\n $this->redirect( 'oauth' );\n\n // Skip if we're already set up\n if( isset( $this->config['oauth_id'] ) && isset( $this->config['oauth_secret'] ) && isset( $this->config['oauth_token'] ) )\n $this->redirect( '' );\n \n \n $this->url = $_SERVER['HTTP_HOST'].$this->baseURL;\n }", "private function getToken() {\n\t // CHECK API and get token\n\t\t$post = [\n\t\t\t'grant_type' => 'password',\n\t\t\t'scope' => 'ost_editor',\n\t\t\t'username' => 'webmapp',\n\t\t\t'password' => 'webmapp',\n\t\t\t'client_id' => 'f49353d7-6c84-41e7-afeb-4ddbd16e8cdf',\n\t\t\t'client_secret' => '123'\n\t\t];\n\n\t\t$ch = curl_init('https://api-intense.stage.sardegnaturismocloud.it/oauth/token');\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\tcurl_setopt($ch, CURLOPT_POSTFIELDS, $post);\n\t\t$response = curl_exec($ch);\n\t\tcurl_close($ch);\n\n\t\t$j=json_decode($response,TRUE);\n\t\t$this->token=$j['access_token'];\n\t}", "abstract protected function getToken(InputInterface $input, OutputInterface $output);", "public static function getParameterKeyToken()\n {\n return config('consts.ParameterToken');\n }", "public function getPartnerRequestToken()\n {\n $uri = $this->urlRequestToken();\n\n $client = $this->createHttpClient();\n\n $header = $this->temporaryPartnerRequestTokenProtocolHeader($uri);\n $authorizationHeader = array('Authorization' => $header);\n $headers = $this->buildHttpClientHeaders($authorizationHeader);\n\n //echo '<br/>'.$uri;\n //var_dump($headers);\n\n try {\n $response = $client->post($uri, $headers)->send();\n } catch (BadResponseException $e) {\n return $this->handleTemporaryCredentialsBadResponse($e);\n }\n\n $body = $response->getBody();\n //$resp = $this->createTemporaryCredentials($response->getBody());\n parse_str($body, $data);\n //echo \"dump data\";\n //var_dump($data);\n\n $oauth_token = $data['oauth_token'];\n $oauth_token_secret = $data['oauth_token_secret'];\n //echo 'DECODE<br/>';\n //echo \"oauth_token: \" . $oauth_token.'<br/>';\n //echo \"oauth_secret\" . $oauth_token_secret.'<br/>';\n\n\n\n //////////////////////////////\n $uri = $this->urlAccessToken();\n\n $client = $this->createHttpClient();\n\n $credentials = $this->createClientCredentials(['identifier' => $oauth_token, 'secret' => $oauth_token_secret]);\n\n $header = $this->temporaryPartnerAccessTokenProtocolHeader($uri, $credentials);\n $authorizationHeader = array('Authorization' => $header);\n $headers = $this->buildHttpClientHeaders($authorizationHeader);\n\n //echo '<br/>'.$uri;\n //var_dump($headers);\n\n try {\n $response = $client->post($uri, $headers)->send();\n } catch (BadResponseException $e) {\n //var_dump($e);\n //exit;\n return $this->handleTemporaryCredentialsBadResponse($e);\n }\n\n $body = $response->getBody();\n //$resp = $this->createTemporaryCredentials($response->getBody());\n parse_str($body, $data);\n $oauth_token = $data['oauth_token'];\n $oauth_token_secret = $data['oauth_token_secret'];\n\n //echo \"final:<br/>\";\n //var_dump($data);\n $resp = $data;\n\n return $resp;\n }", "public function actionToken(){\n try{\n $params = Yii::$app->request->post();\n\n $user = $this->auth($params['username'], $params['password']);\n if ($user === null){\n throw new UnauthorizedHttpException('Wrong username or password');\n }\n $response['success'] = true;\n $response['token'] = User::findByUsername($user->username)->auth_key;\n $response['id'] = $user->id;\n } catch (\\Exception $e){\n throw $e;\n }\n return $response;\n }", "private function _requestToken() \n {\n $requestUrl = $this->config->getHost() . \"/oauth2/token\";\n $postData = \"grant_type=client_credentials\" . \"&client_id=\" . $this->config->getAppSid() . \"&client_secret=\" . $this->config->getAppKey();\n $response = $this->client->send(new Request('POST', $requestUrl, [], $postData));\n $result = json_decode($response->getBody()->getContents(), true);\n $this->config->setAccessToken($result[\"access_token\"]);\n $this->config->setRefreshToken($result[\"refresh_token\"]);\n }", "function getToken() {\n $user_agent = $_SERVER[\"HTTP_USER_AGENT\"];\n //Test if it is a shared client\n if (!empty($_SERVER['HTTP_CLIENT_IP'])){\n $ip=$_SERVER['HTTP_CLIENT_IP'];\n //Is it a proxy address\n }elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])){\n $ip=$_SERVER['HTTP_X_FORWARDED_FOR'];\n }else{\n $ip=$_SERVER['REMOTE_ADDR'];\n }\n //echo \"sesion:\" . $_SESSION[\"tokenH\"] . \"client:\" . md5($ip . \":\" . $user_agent); \n return md5($ip . \":\" . $user_agent); \n }", "function csrf_token(){\n $token = sha1( rand(1, 1000) . '$$' . date('H.i.s') . 'digg' );\n $_SESSION['csrf_token'] = $token;\n return $token;\n }", "abstract public function render_client_token();", "public function getToken( $token = null )\n\t{\n if (is_null($token)) $this->app->abort(404);\n foreach($this->app['fluentkit.messages']->all() as $m){\n echo $m; \n }\n echo $this->app['form']->open(array('url' => 'login/token'));\n echo $this->app['form']->hidden('token', $token);\n echo $this->app['form']->label('email', 'Email Address');\n echo $this->app['form']->email('email', $this->app['request']->get('email'));\n echo $this->app['form']->label('password', 'Password');\n echo $this->app['form']->password('password', $this->app['request']->get('password'));\n echo $this->app['form']->label('password_confirmation', 'Password Confirmation');\n echo $this->app['form']->password('password_confirmation', $this->app['request']->get('password_confirmation'));\n echo $this->app['form']->submit('Reset Password');\n echo $this->app['form']->close();\n\t}", "private function getTokenFromRequest(Request $request)\n {\n return $request->headers->get(self::TOKEN_HEADER_KEY, $request->get(self::TOKEN_REQUEST_KEY));\n }", "public function getRequestToken(Request $request)\n {\n $token = $request->query($this->inputKey);\n\n if (empty($token)) {\n $token = $request->input($this->inputKey);\n }\n\n if (empty($token)) {\n $token = $request->bearerToken();\n }\n\n if (empty($token)) {\n $token = $request->getPassword();\n }\n\n return $token;\n }", "function genera_token ($user, $profile)\r\n{\r\n\t$token = \"\";\r\n\r\n\t/* Aqui estaria el algoritmo para la generacion\r\n\tdel token */\r\n\r\n\treturn $token;\r\n}", "private function getRequestToken() {\n \n // send request for a request token\n $this->tmhOAuth->request('POST', $this->tmhOAuth->url('oauth/request_token', ''), array(\n\n // pass a variable to set the callback\n 'oauth_callback' => $this->tmhOAuth->php_self()\n ));\n\n\n if($this->tmhOAuth->response['code'] == 200) {\n\n // get and store the request token\n $response = $this->tmhOAuth->extract_params($this->tmhOAuth->response['response']);\n\t error_log($response);\n $_SESSION['authtoken'] = $response['oauth_token'];\n $_SESSION['authsecret'] = $response['oauth_token_secret'];\n\n // state is now 1\n $_SESSION['authstate'] = 1;\n\n // redirect the user to Twitter to authorize\n $url = $this->tmhOAuth->url('oauth/authorize', '') . '?oauth_token=' . $response['oauth_token'];\n header('Location: ' . $url);\n exit;\n }\n\n return false;\n }" ]
[ "0.6749188", "0.6749188", "0.6749188", "0.6749188", "0.6638768", "0.66051424", "0.65202034", "0.6414644", "0.6399378", "0.6349815", "0.6336106", "0.6336106", "0.6336106", "0.6336106", "0.62998044", "0.6281358", "0.61739844", "0.6136458", "0.61349154", "0.60973287", "0.6066365", "0.6051898", "0.603231", "0.5996443", "0.5991712", "0.599045", "0.59748745", "0.5971961", "0.59592265", "0.59584004", "0.5939456", "0.593922", "0.59367955", "0.59218675", "0.59150666", "0.5897518", "0.58950967", "0.5880005", "0.5874589", "0.5857023", "0.5848267", "0.58349544", "0.5832824", "0.582391", "0.58221906", "0.5815895", "0.5810803", "0.5807735", "0.5806829", "0.58067447", "0.58065677", "0.57977086", "0.5789522", "0.5786416", "0.5776042", "0.5769982", "0.57649136", "0.5753267", "0.57524025", "0.57487684", "0.57345605", "0.57338995", "0.57248986", "0.57248086", "0.5707939", "0.5705587", "0.5690236", "0.5689041", "0.5685217", "0.5680397", "0.5678963", "0.5671387", "0.56703305", "0.5668298", "0.5666914", "0.5651769", "0.5639763", "0.5632004", "0.56239927", "0.5618993", "0.561811", "0.56163186", "0.56150645", "0.5613877", "0.5610378", "0.5609638", "0.5605794", "0.5599896", "0.5594879", "0.55813515", "0.5580686", "0.5577253", "0.5576445", "0.5576347", "0.5572008", "0.55714065", "0.5565065", "0.5558029", "0.5538835", "0.5533623", "0.55289984" ]
0.0
-1
list all user by role
public static function getAllByType(Mysql $mysql, $type){ $q="SELECT tc.*, tr.dsname AS 'role' FROM tcuser tc, tcrole tr " . " WHERE tr.idtcrole = tc.fnidrole AND tc.fnidrole = $type ". " ORDER BY idtcuser ASC ".Mysql::getQueryLimit($page); //echo "<br />".$q; return $mysql->execute($q); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function index()\n {\n $roles = App\\User::find(1)->roles()->orderBy('name')->get();\n }", "public function rolesForUser();", "public function roleListAll() {\n $this->_adminUserDao = new AdminUserDao();\n\n $ret = array();\n $roles = $this->_adminroledao->getAll();\n foreach ($roles as $role) {\n $user = $this->_adminUserDao->getRow(array(array('username', '=', $role->owner)));\n if($user){\n $ret[$role->owner]['role'][] = $role;\n $ret[$role->owner]['user'] = $user;\n }else{\n if($role->owner == config('admin.user.super_user.username')){\n $ret[$role->owner]['role'][] = $role;\n// $ret[$role->owner]['user'] = (new AdminUserDao())->fill(config('admin.user.super_user'));\n// $ret[$role->owner]['user'] = $this->_adminUserDao->getRow(array(array('id', '=', config('admin.user\n $ret[$role->owner]['user']['username'] = $role->owner;\n }\n }\n }\n return $ret;\n }", "public function getUsers(){\n if($this->get_request_method() != \"GET\"){\n $this->response('',406);\n }\n $role = $_REQUEST[\"role\"];\n\n $query=\"SELECT * FROM `usuario` WHERE `rol` = \" . $role;\n\n $this->db->get($query);\n }", "public static function getUserRole(){\n\t\t$db = DemoDB::getConnection();\n $sql = \"SELECT *\n FROM user_role\";\n $stmt = $db->prepare($sql);\n $ok = $stmt->execute();\n if ($ok) {\n return $stmt->fetchAll(PDO::FETCH_ASSOC);\n }\n\t}", "public function getRoleUsers($role) {\n $ids = \\Drupal::entityQuery('user')\n ->condition('status', 1)\n ->condition('roles', $role)\n ->execute();\n $users = User::loadMultiple($ids);\n $results = [];\n //var_dump($users);die();\n foreach($users as $user) {\n $uid = $user->get('uid')->value;\n $name = $user->get('field_name')->value;\n $surname = $user->get('field_surname')->value;\n $results[] = [\n 'value' => $uid,\n 'text' => $name . ' ' . $surname,\n ];\n }\n return new JsonResponse($results);\n }", "public static function getListRole(){\n return SentinelRole::where('company_id_fk',Sentinel::getUser()->company_id_fk)->orWhere('company_id_fk')->lists('name','id')->all();\n }", "function get_all_roles() {\n return get_records('role', '', '', 'sortorder ASC');\n}", "public function index()\n {\n $users = User::get()->load('roles');\n return $users;\n }", "function getAllUsersWithRoles() {\n $statement = 'SELECT user.id, username, role, email, banned FROM user INNER JOIN \n role_lov role_lov ON user.role_id = role_lov.id ORDER BY user.id';\n $query = $this->prepare($statement);\n $query->execute();\n return $query->fetchAll();\n }", "public function index()\n {\n $result = User::where('role','>','0')->get()->all();\n return $result;\n }", "public function allByRole($role) {\n\t}", "public function index()\n {\n return Role::all();\n }", "public function index()\n {\n return Role::all();\n }", "public function actionListUsersByRole($role)\n {\n $aUser = User::getUsersByRoles([$role]);\n $result = [];\n foreach ($aUser as $item) {\n $result[] = [\n 'id' => $item->id,\n 'fullname' => $item->fullname,\n ];\n }\n return $result;\n }", "function roleListing()\n {\n if ($this->isAdmin() == TRUE) {\n $this->loadThis();\n } else {\n $type = $this->login_id;\n $data['userRecords'] = $this->user_model->roleListing($type);\n\n $this->global['pageTitle'] = '角色管理';\n\n $this->loadViews(\"systemrolemanage\", $this->global, $data, NULL);\n }\n }", "public static function allUser() {\n $listado = DB::table('users')->join('role_user', 'role_user.user_id', '=', 'users.id')\n ->join('roles', 'roles.id', '=', 'role_user.role_id')\n ->select('users.*', 'roles.description')\n ->get();\n\n return $listado;\n }", "public function getUserList() {\n $where = [];\n $this->usersModel->setTableName(\"cvd_users\");\n\n $role_name = $this->request->input(\"role_name\");\n if ($role_name) {\n $where[] = [\"roles.role_name\", \"=\", $role_name];\n }\n\n $user_id = $this->request->input(\"user_id\");\n if ($user_id) {\n $where[] = [\"users.user_id\", \"=\", $user_id];\n }\n $orderBy = \"users.user_id\";\n $this->usersModel->setWhere($where);\n $users = $this->usersModel->getUsers($orderBy);\n\n return $users;\n }", "public static function selectrole($roleID){\n $userlist = [];\n $db = Db::getInstance(); \n $roleID = intval($roleID);\n $req = $db->prepare('SELECT * FROM hp_user WHERE role_id = :id'); \n $req->execute(array('id' => $roleID));\n foreach($req->fetchAll() as $row) {\n $userlist[] = $row;\n }\n return $userlist;\n }", "public function listAction()\r\n\t{\r\n\t\t//Access check\r\n\t\t//$acl=Zend_Registry::get('acl');\r\n\t\t$acl=new ResAcl();\r\n\t\t$controller=$this->getRequest()->getControllerName();\r\n\t\tif (!$acl->isAllowed($this->user_role,'role','list')) {\r\n\t\t\t$this->_redirect('/static/noaccess');\r\n\t\t}\r\n\t\t\r\n\t\telse{\r\n\t\t\t//add some code to list controller\r\n\t\t\t$role=new Model_BsRole();\r\n\t\t\t//$result=$role->getAllRole();\r\n\t\t\t$result=$role->numbUsers();\t//number of Users\r\n\t\t\t$this->view->result=$result;\r\n\t\t}\r\n\t}", "private function get_all_roles(){\n return Role::all();\n }", "public function listRoles($user) {\n return $user->roles;\n }", "public function index()\n {\n if (\\Gate::allows('isAdmin') || \\Gate::allows('isSKAdmin')) {\n return Role::latest()->paginate(5);\n }\n }", "public function index()\n {\n $page = request('page', 1);\n $pageSize = request('pageSize', 10);\n\n return $this->respond(User::with('roles')->paginate($pageSize, ['*'], 'page', $page));\n }", "function get_role_list() {\n\t\treturn $this->db->get('system_security.security_role');\n\t\t\n\t}", "public function userRoleDashboard()\n {\n return User::select('role',DB::raw('count(*) as total'))\n ->groupBy('role')\n ->pluck('total','role')\n ->all();\n }", "public function index()\n {\n return Role::orderBy('type', 'asc')->get();\n }", "public function roles()\n {\n $this->roles = $this->Role->list($_SESSION['guild_id']);\n }", "public function index()\n {\n $order = [\n 'column' => 'name',\n 'direction' => 'asc'\n ];\n if (auth()->user()->can('super')) {\n $data = Role::orderBy($order['column'], $order['direction'])->paginate(env('APP_RESULTS_PER_PAGE'));\n } else {\n $data = Role::where('visible', 1)->orderBy($order['column'], $order['direction'])->paginate(env('APP_RESULTS_PER_PAGE'));\n }\n\n return view('admin.role.index', compact('data', 'order'));\n }", "public function getAllRoles(): array;", "public function roles();", "public function roles();", "public function roles();", "public function roles();", "public function index()\n {\n $this->authorize('read_users');\n return User::withOutSuperAdmin()->with('roles')->get();\n }", "public function actionUserRole() {\n $model = new Configuration();\n $modules = $model->getModels();\n $modelArr = array();\n if (isset($_GET['id']) && $_GET['id'] != '') {\n $modelArr = $model->getUserRole($_GET['id']);\n }\n if (isset($_POST['UserRolesSearch'])) {\n if ($id = $model->saveUserRole()) {\n return $this->redirect(['index', 'fromRoles' => 1]);\n }\n }\n return $this->render('user-role', [\n 'model' => $modelArr,\n 'modules' => $modules\n ]);\n }", "public function getListUserPage($role)\n {\n\n switch ($role) {\n case 'doctors':\n $role_id = 2;\n break;\n\n case 'medical_staffs':\n $role_id = 3;\n break;\n\n case 'patients':\n $role_id = 4;\n break;\n\n }\n $users = DB::table('user_informations as ui')->join('users as u','ui.user_id','u.user_id')->join('blood_types as b','ui.blood_type','b.blood_type_id')->\n select('ui.name','ui.surname','ui.email','u.username','ui.user_id','b.blood_type','ui.underlying_disease','ui.drug_allergy')->\n where('u.role_id',$role_id)->paginate(10);\n\n return view('manage.list_user',['users'=>$users,'user_role'=>$role]);\n\n\n }", "public function getAll()\n {\n $sql = \"SELECT * FROM users WHERE role_id = 2;\";\n $stm = App::$db->prepare($sql);\n $stm->setFetchMode(\\PDO::FETCH_OBJ);\n $stm->execute();\n return $stm->fetchAll();\n }", "public function showUserByRole($role)\n {\n return User::where([['role', $role],['id' ,'!=', JWTAuth::parseToken()->toUser()->id]])->get();\n }", "function getListRoleCurUser() {\n $userRoleModel = new UserRoleModel();\n $userId = isset($this->curUserInfo->id)? $this->curUserInfo->id: 0;\n $result = $userRoleModel->filterUserId($userId)->buildCond()->get();\n $retVal = [];\n if((int)$result->count() > 0){\n $retVal = $result->pluck('role')->toArray();\n }\n return $retVal;\n }", "public function showAll(){\n\t\t\t$sql = \"SELECT r.CodRole,r.Nombre,r.Estado,r.updated_by,r.updated_at,u.CodUsuario,u.NombreUsuario FROM role r INNER JOIN usuario u ON r.updated_by=u.CodUsuario\";\n\t\t\treturn ejecutarConsulta($sql);\n\t\t}", "public function actionIndex()\n {\n Url::remember('', 'actions-redirect');\n $searchModel = Yii::createObject(\\backend\\models\\UserSearch::className());\n $dataProvider = $searchModel->search(Yii::$app->request->get());\n \n $session = Yii::$app->session;\n $company=$session->get('user.company');\n \n $userPermission= json_decode($session->get('userPermission'));\n if($userPermission->isSystemAdmin)\n {\n $roleObj = \\backend\\models\\Roles::find()->where([\"cre_user\"=>$userPermission->user_id])->asArray()->all();\n }else \n {\n $roleObj = \\backend\\models\\Roles::find()->where([\"company_id\"=>$userPermission->company_id])->asArray()->all();\n \n }\n $roleArray = ArrayHelper::map($roleObj, 'id', 'role_name'); \n\n return $this->render('index', [\n 'dataProvider' => $dataProvider,\n 'searchModel' => $searchModel,\n 'roleArray'=>$roleArray\n ]);\n }", "public function getAll() {\n $this->load->database();\n\n $this->db->select('*');\n $this->db->from('user');\n $this->db->where('role =', '3');\n \n $query = $this->db->get();\n return $query->result();\n }", "public function index()\n {\n $this->authorize('viewAny', Role::class);\n return Role::all();\n }", "public function index(){\n $users = User::join('roles','roles.id','users.role_id')\n ->select('users.*','roles.name as role_name')\n ->where('roles.id',1)\n ->orWhere('roles.id',2)\n ->get();\n $roles = Role::all();\n return view('abasvumi.admin_user.index', compact('users','roles'));\n }", "function get_all_user_role()\n {\n $this->db->order_by('id', 'desc');\n return $this->db->get('user_role')->result_array();\n }", "public function index()\n {\n if (! request()->get('find')) {\n $user = User::orderBy('name', 'asc');\n }\n else {\n $user = User::where('name', 'like', '%' . request()->get('find') . '%');\n }\n\n if (request()->get('role') && request()->get('role') != 'All') {\n $user = $user->where('role_id', request()->get('role'));\n }\n\n if (request()->get('sort')) {\n $user = $user->orderBy(request()->get('sort'), 'asc')->paginate(25);\n }\n else {\n $user = $user->orderBy('name', 'asc')->paginate(25);\n }\n\n\n\n\n\n\n if(Auth::user()->role_id != 3) {\n abort(404);\n }\n return view('admin.users.index', [\n 'users' => $user,\n 'roles' => Role::all()\n ]);\n }", "public function ListUsers($userRole)\r\n {\r\n $queryUsersList = \"SELECT * FROM users WHERE user_role=:user_role\";\r\n $usersList = $this->sqlDataBase->prepare($queryUsersList);\r\n $usersList->execute(array(':user_role'=>$userRole));\r\n return $usersList->fetchAll(PDO::FETCH_ASSOC);\r\n }", "public function memberList()\n {\n return User::where('status', 1)->where('role_id', 2)->get();\n }", "public function index()\n {\n return Roles::all();\n }", "public function actionIndex()\n {\n if(!Yii::$app->role->isOwner())\n {\n \n throw new ForbiddenHttpException('You do not have permission to access this page.');\n }\n\n $searchModel = new UserRolesSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams, Yii::$app->company->getCompanyID());\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public static function manageRole(){\n $rolelist = [];\n $db = Db::getInstance(); \t \n $req = $db->query('SELECT * FROM hp_role'); \n foreach($req->fetchAll() as $row) {\n $rolelist[] = $row;\n }\n return $rolelist;\n \n }", "public function userlistAction()\n\t{\n\t\t$users = $this->userService->getUserList(array(), false);\n\n\t\t$this->view->roles = za()->getUser()->getAvailableRoles();\n\t\t$this->view->users = $users;\n\t\t$this->renderView('admin/user-list.php');\n\t}", "protected function queryUserAll()\n {\n $queryBuilder = $this->db->createQueryBuilder();\n\n return $queryBuilder->select('*')\n ->from('User', 'u')\n ->innerJoin('u', 'Role','r','u.Role_ID = r.Role_ID' );\n }", "public function indexRoles()\n {\n\n $users = User::with('roles')\n ->whereNotIn('id', [1, auth()->user()->id])\n ->orderBy('created_at', 'asc')\n ->paginate(10);\n\n $roles = Role::all();\n\n return view('admin.roles.assign', compact('users', 'roles'));\n }", "function getAllRoles(){\r\n $data = new \\Cars\\Data\\Common($this->app);\r\n return $data->getAllRoles();\r\n }", "public function index()\n {\n $id = Auth::id();\n $users = User::with(\"roles\")->get();\n\n return [\"data\" => $users];\n }", "public function listAction(){\n $r=$this->getRequest();\n $query=Doctrine_Query::create()\n ->select(\"uo.orgid, u.ID, u.nome,u.cognome,u.user,u.active,u.data_iscrizione,r.role\")\n ->from(\"Users u\")\n ->leftJoin(\"u.Role r\")\n ->leftJoin(\"u.UsersOrganizations uo\")\n ->where(\"uo.orgid=\".$r->getParam('orgid'))\n ->addWhere(\"uo.active=\".Constants::UTENTE_ATTIVO);\n list($users,$total)=DBUtils::pageQuery($query,array(),$this->getLimit(),$this->getOffset());\n $this->emitTableResult($users,$total);\n }", "public function getAllRole($role){\n $sql = \"SELECT name FROM user WHERE role = \\\"\" . $role . \"\\\";\";\n $connection = mysqli_connect($this->servername, $this->username, $this->password, $this->dataBase);\n if($data = (mysqli_query($connection,$sql))){\n while ($row = $data->fetch_assoc()) {\n $results_array[] = $row;\n }\n $returnVal[$role] = $results_array;\n }else{\n http_response_code(400);\n $returnVal = \"{\\\"error\\\":\\\"\" . mysqli_error($connection) . \"\\\"}\";\n }\n \n return json_encode($returnVal); \n }", "public function index()\n {\n return User::where('role','Organizer')->orderByDesc('id')->get();\n }", "public function getRoles(){\n $db = new MainModel();\n $query = \"SELECT r.id as idRol, r.name as nameRol from roles as r\";\n return $response = $db->consultQueryAll($query);\n }", "function getUsersByRole($role) {\n\n Util::throwExceptionIfNullOrBlank($role, \"Role\");\n $encodedRole = Util::encodeParams($role);\n $objUtil = new Util($this->apiKey, $this->secretKey);\n\n try {\n $params = null;\n $headerParams = array();\n $queryParams = array();\n $signParams = $this->populateSignParams();\n $metaHeaders = $this->populateMetaHeaderParams();\n $headerParams = array_merge($signParams, $metaHeaders);\n\n $signParams['role'] = $role;\n $signature = urlencode($objUtil->sign($signParams)); //die();\n $headerParams['signature'] = $signature;\n $contentType = $this->content_type;\n $accept = $this->accept;\n $baseURL = $this->url;\n $baseURL = $baseURL . \"/role/\" . $encodedRole;\n $response = RestClient::get($baseURL, $params, null, null, $contentType, $accept, $headerParams);\n $userResponseObj = new UserResponseBuilder();\n $userObj = $userResponseObj->buildArrayResponse($response->getResponse());\n } catch (App42Exception $e) {\n throw $e;\n } catch (Exception $e) {\n throw new App42Exception($e);\n }\n\n return $userObj;\n }", "public function index()\n {\n // return collection of all roles\n return RoleIndexResource::collection(Role::info()->get());\n }", "public function getUserRole() {\n return view('backend.acl.user_role');\n }", "public function findAllByRole($role)\n {\n \treturn $this->createQueryBuilder('u')\n \t->where('u.role = '.$role)\n \t->getQuery()\n \t->getResult();\n \t;\n }", "public function SelectUsersByRole($role) {\n\t//echo ':PageID from PostModel: <pre>'. print_r($pageId). '</pre>';\n $sql = \"SELECT userid, siteuserid, email, name, role, phoneres, phonecell, status, comments,createdon\"\n . \" FROM user \"\n\t\t\t\t. \" WHERE role = '\" . $role . \"' \"\n\t\t\t\t. \" ORDER BY createdOn \" ;\n \n return parent::query($sql);\n }", "public function index()\r\n {\r\n //return '123';\r\n\r\n $data = DB::table('users')\r\n ->leftJoin('role_user', 'users.id', '=', 'role_user.user_id')\r\n ->leftJoin('roles', 'roles.id', '=', 'role_user.role_id')\r\n ->select('users.*', 'roles.display_name')\r\n ->paginate(5);\r\n //dd($data); \r\n return view('Admin.AdminUser.user_list', ['list' => $data]);\r\n }", "public function users(Request $request, Role $role)\n\t{\n\t\treturn $role->users()->orderBy($request->get('s', 'first_name'), $request->get('d', 'asc'))->paginate();\n\t}", "public function getList() {\n $data['data'] = $this->role->get();\n return view('roles.list_role',$data);\n }", "public function getUserList(): array {\n\t\t$sql = 'SELECT u.id, u.login, u.mail, r.name role FROM users u\n\t\t\t\tINNER JOIN roles r ON u.role = r.id\n\t\t\t\tWHERE u.login != :mylogin';\n\n\t\treturn $this->queryRows($sql, ['mylogin' => $_SESSION['user']['login']]);\n\t}", "function getAllRoles() {\n // connexion à la BDD\n $db = connect();\n // requête\n $query = $db -> prepare('SELECT DISTINCT role FROM users');\n // exécution\n $query -> execute();\n // renvoie un tableau associatif\n return $query -> fetchAll();\n}", "public function index()\n {\n $users = User::with('roles')->where('activo',true)->orderBy('id','ASC')->get();\n return $users;\n }", "public function get_all_roles(){\n\t\treturn ORM::factory('role')->find_all()->as_array();\n\t}", "public function getAllRoles()\n {\n $id = $this->get(TableFactory::getUserModel()\n ->getPrimaryKey());\n\n return Cache::remember(sprintf(Constants::CACHE_ROLES, $id), function() use ($id) {\n return TableFactory::getRoleModel()\n ->find()\n ->matching('Users', function(Query $query) use ($id) {\n return $query->where(['Users.id' => $id]);\n })\n ->toArray();\n });\n }", "public function index()\n {\n $roles = Role::all();\n return $this->showAll($roles, 200);\n }", "public function users($role = null)\n {\n if ($role =='User') {\n \n $subcounty_role = Role::idByName('Sub-County Coordinator');\n $subs = [$this->id];\n $users = User::select('users.*')->join('role_user', 'users.id', '=', 'role_user.user_id')\n ->where('role_id', $subcounty_role)->whereIn('tier', $subs);\n }else if (is_array($role)){\n\n $search = $role['search'];\n $prole = Role::idByName('Participant');\n $fls = $this->facilities->pluck('id')->toArray();\n $users = User::select('users.*')\n ->where(function($query) use ($search){\n $query->where('users.name', 'LIKE', \"%{$search}%\");\n $query->orWhere('first_name', 'LIKE', \"%{$search}%\");\n $query->orWhere('middle_name', 'LIKE', \"%{$search}%\");\n $query->orWhere('last_name', 'LIKE', \"%{$search}%\");\n $query->orWhere('phone', 'LIKE', \"%{$search}%\");\n $query->orWhere('email', 'LIKE', \"%{$search}%\");\n $query->orWhere('uid', 'LIKE', \"%{$search}%\");\n })\n ->join('role_user', 'users.id', '=', 'role_user.user_id')->where('role_id', $prole)->whereIn('tier', $fls);\n }else{\n $prole = Role::idByName('Participant');\n $fls = $this->facilities->pluck('id')->toArray();\n $users = User::select('users.*')->join('role_user', 'users.id', '=', 'role_user.user_id')->where('role_id', $prole)->whereIn('tier', $fls);\n }\n return $users;\n }", "public function getRoles()\n {\n return ['ROLE_USER'];\n }", "public function getRoles()\n {\n return ['ROLE_USER'];\n }", "public function get_all_roles()\n {\n return App\\Role::all();\n }", "function list_roles( $user_in ) {\n $status = session_status();\n if($status == PHP_SESSION_NONE){\n session_start(); /// initialize session\n }\n $user_name = check_logged(); /// function checks if visitor is logged in.\n if (!$user_name)\n return;\n\n $allowed = false;\n if (!check_role( \"admin\" )) {\n return false;\n }\n\n // read the permissions database\n $d = loadDB();\n if ($user_in !== null) { // return role names of the current user\n foreach ($d[\"users\"] as $key => $value) {\n if ( $value[\"name\"] == $user_in ) {\n $role_names = array();\n foreach ($value[\"roles\"] as $role) {\n foreach ($d[\"roles\"] as $r) {\n if ($role == $r[\"id\"])\n $role_names[] = $r[\"name\"];\n }\n }\n return $role_names;\n }\n }\n } else { // return all role names\n $role_names = array();\n foreach ($d[\"roles\"] as $r) {\n $role_names[] = $r['name'];\n }\n return $role_names;\n }\n return;\n }", "public function index()\n {\n $id = Auth::user();\n $users = User::where('id', Auth::user()->id)->get();\n $userss = User::sortable()->paginate(10);\n $roles = Role::pluck('name', 'id')->all();\n return view('admin.users.index', compact('users', 'userss','roles'));\n }", "private static function getUserRole(): array\n\t{\n\t return self::getUser()->roles;\n\t}", "public function getUserRole($uid){\n try{\n $query =\"Select roles.title From roles Join users On roles.id = users.role_id Where users.id = ? Limit 1\";\n $stmt = $this->getConnection($query);\n $stmt->bind_param('i', $uid);\n $stmt->execute();\n $stmt->bind_result($role);\n $stmt->fetch();\n $user[] = array(\n 'role' => $role\n );\n\n return $user;\n }catch(Exception $e){\n die(\"Cannot get the admin\");\n }\n }", "public function index()\n {\n $roles = $this->roleRepository->paginateRoles(5); // 5 contents per page\n //return the view containing the lists of users\n return view('admin.roles.index', compact('roles'));\n }", "public function index(){\n $datas=$this->userRoleDetailService->getActiveRoleDetail();\n return view('admin.list-userRoleDetail',compact('datas'));\n }", "public function getUsers(){\n //write the query to select all users with their role title\n $userrolequery = \"SELECT * FROM users;\";\n\n //check if the query() runs the sql statement\n if ($result = $this->dbobj->dbcon->query($userrolequery)) {\n $row = $result->fetch_all(MYSQLI_ASSOC);\n\n }\n else{\n echo \"Error\" .$this->dbobj->dbcon->error;\n }\n return $row;\n }", "function get_users_from_role_on_context($role, $context) {\n\n global $CFG;\n\n return get_records_sql(\"SELECT *\n FROM {$CFG->prefix}role_assignments\n WHERE contextid = $context->id\n AND roleid = $role->id\");\n}", "public function getRoleList() {\n\n if (Session::has('website_id')) {\n\n //fetch user name from session\n $web = Session::get('website_id');\n }\n\n\n //select query to get data inside the row\n $data = DB::select(\"SELECT id, id as role_id_tmp,id as permission_id_tmp,name, display_name FROM roles where website_id=\" . $web);\n //$str = $this->db->last_query(); echo $str;exit;\n\n header(\"Content-type: application/json\");\n echo \"{\\\"data\\\":\" . json_encode($data) . \"}\";\n }", "public function listarRoles(){\r\n $sql = \"SELECT * FROM roles;\";\r\n $roles = $this->conexion->getTable($sql);\r\n return $roles;\r\n}", "public function index()\n {\n $data['roles'] = $this->roleRepo->paginate();\n\n return $this->theme->scope('role.index', $data)->render();\n }", "function getAdminUsers(){\n\tglobal $connection, $roles;\n\t$sql = \"SELECT * FROM Accounts WHERE role IS NOT NULL\";\n\t$result = mysqli_query($connection, $sql);\n\t$users = mysqli_fetch_all($result, MYSQLI_ASSOC);\n\n\treturn $users;\n}", "public function getRoles() {\n return array('ROLE_USER');\n }", "public function getRoles()\n {\n return array('ROLE_USER');\n }", "public function getRoles()\n {\n return array('ROLE_USER');\n }", "public function index(Request $request)\n {\n // Check the access\n has_access(__METHOD__, Auth::user()->role_id);\n\n // Get users\n if($request->query('role') == 0)\n $users = User::orderBy('role_id','asc')->get();\n else\n $users = User::where('role_id','=',$request->query('role'))->orderBy('role_id','asc')->get();\n\n // Get roles\n $roles = Role::orderBy('num_order','asc')->get();\n\n // View\n return view('faturhelper::admin/user/index', [\n 'users' => $users,\n 'roles' => $roles\n ]);\n }", "public function index()\n {\n $users =User::where('role_id',2)->get();\n return view('admin.users.index',compact('users'));\n }", "public function getUsersForRole(string $role, bool $withAdmin = false): Collection;", "public function index()\n {\n $roles = role::all();\n $users = User::where('id','>',1000)->orderBy('id','desc')->get();\n return view('admin.user.index',compact('roles','users'));\n }", "public function getAllRoles()\n {\n return \\EntityManager::getRepository('stoykov\\Ohrana\\Models\\Doctrine\\Role')->findAll();\n }", "public function index()\n {\n\n if(Auth::user()->hasRole('superadmin') || Auth::user()->hasRole('admin')){\n\n if(Auth::user()->hasRole('superadmin'))\n $userlist = User::role('admin')->get();\n elseif(Auth::user()->hasRole('admin'))\n $userlist = User::where('created_by',Auth::user())->get();\n\n return view('user.index',compact('userlist'));\n \n }else\n return redirect('/');\n \n }", "public function listarRoles(){\n\t\t\t$sql = \"SELECT CodRole,Nombre,Estado FROM role WHERE Estado='1' ORDER BY Nombre\";\n\t\t\treturn ejecutarConsulta($sql);\n\t\t}" ]
[ "0.770207", "0.7530832", "0.74732834", "0.7407375", "0.73866403", "0.726107", "0.724783", "0.7212509", "0.71960354", "0.7155093", "0.7140589", "0.71293646", "0.71136904", "0.71136904", "0.710838", "0.7069427", "0.70547163", "0.7003273", "0.6950147", "0.6938897", "0.69309705", "0.6930004", "0.69290376", "0.6926041", "0.6922923", "0.6920978", "0.68788344", "0.68771845", "0.6871985", "0.68696636", "0.68503654", "0.68503654", "0.68503654", "0.68503654", "0.68497354", "0.6846299", "0.68227375", "0.68201935", "0.6817103", "0.68114096", "0.6773299", "0.67725426", "0.6771644", "0.67682403", "0.67658925", "0.6765345", "0.6762736", "0.67611426", "0.6756888", "0.67544717", "0.67513925", "0.67346686", "0.6729645", "0.67266387", "0.6693267", "0.66916317", "0.6683565", "0.66762775", "0.6675277", "0.6669908", "0.66664433", "0.666504", "0.66647744", "0.66472083", "0.66461176", "0.6643227", "0.6632862", "0.66281027", "0.6625518", "0.6621747", "0.6618531", "0.66148996", "0.6611109", "0.661097", "0.6609843", "0.6608119", "0.66003656", "0.66003656", "0.6599039", "0.6598354", "0.65945596", "0.65920097", "0.65873516", "0.65777904", "0.65644914", "0.65627754", "0.6562283", "0.656128", "0.6557829", "0.65459347", "0.6541513", "0.6537861", "0.6537821", "0.6537821", "0.6536526", "0.6535456", "0.6533506", "0.6532417", "0.6531747", "0.6530867", "0.65282184" ]
0.0
-1
function /////// webservices SAP
public static function getListClientBySAP($_filter){ $listclient = array(); try { /*codigo para consumor ws soap*/ $client = new SoapClient(URLWS); $params = array('_filter' => $_filter); $result = $client->ListCustomer($params); for($i=0; $i<count($result->ListCustomerResult->ClientResponse); $i++){ $listclient[$i] = $result->ListCustomerResult->ClientResponse[$i]->CardCode."|".htmlentities($result->ListCustomerResult->ClientResponse[$i]->CardName); } } catch (Exception $e) { trigger_error($e->getMessage(), E_USER_WARNING); } return $listclient; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function SAP_set_order($rec_id)\n{\n/*\n\tThis FUNCTION posts SD order \n\tINPUT: id of invoice\n\tOUTPUT:\n\t\t\t- \"ID\" of SD order\n\t\t\tOR \"0\" - if failed\n*/\n\tinclude(\"login_re.php\");\n\tini_set(\"soap.wsdl_cache_enabled\", \"0\");\n\t\n\t//THESE PARAMS ARE FIXED NOW\n\t$cond_type='ZPR0';\t\n\t//$cond_value='10';\n\t$service_mode='SO_C';\t// CREATE\t\n\t$req = new Request();\n\t \n\t\t\t//Setting up the object\n\t\t\t$item= new Item();\n\t\t\n\t\t//Set up mySQL connection\n\t\t\t$db_server = mysqli_connect($db_hostname, $db_username,$db_password);\n\t\t\t$db_server->set_charset(\"utf8\");\n\t\t\tIf (!$db_server) die(\"Can not connect to a database!!\".mysqli_connect_error($db_server));\n\t\t\tmysqli_select_db($db_server,$db_database)or die(mysqli_error($db_server));\n\t//1.\t\n\t\t// LOCATE data for the invoice\n\t\t\t$invoice_sql=\"SELECT invoice.date,invoice.value,contract.id_SAP,currency.code,decade,month,year \n\t\t\t\t\t\t\tFROM invoice \n\t\t\t\t\t\t\tLEFT JOIN contract ON invoice.contract_id=contract.id \n LEFT JOIN currency ON invoice.currency=currency.id\n\t\t\t\t\t\t\tWHERE invoice.id=$rec_id\";\n\t\t\t\t\n\t\t\t$answsql=mysqli_query($db_server,$invoice_sql);\n\t\t\t\t\n\t\t\tif(!$answsql) die(\"Database SELECT TO invoice table failed: \".mysqli_error($db_server));\t\n\t\t\tif (!$answsql->num_rows)\n\t\t\t{\n\t\t\t\techo \"WARNING: No invoice found for a given ID in invoice TABLE <br/>\";\n\t\t\t\treturn 0;\n\t\t\t}\t\n\t\t\t$i_data= mysqli_fetch_row($answsql);\n\t\t\t\t\n\t\t\t\n\t//2.\t\n\t\t\t// Prepare request for SAP ERPclass Item\n\t\n\t\t\t// Set up params\n\t\t\t\n\t\t\t$c_date=$i_data[0];\n\t\t\t$val=$i_data[1];\n\t\t\t$contract_id=$i_data[2];\n\t\t\t$curr=$i_data[3];\t// Currency in invoice\n\t\t\t$decade=$i_data[4];\n\t\t\t$month=$i_data[5];\n\t\t\t$year=$i_data[6];\n\t\t\t//SERVICE DATE\n\t\t\t$service_date='';\n\t\t\tswitch($month)\n\t\t\t{\n\t\t\t\tcase 1:\n\t\t\t\t\t$service_date='-01-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2:\n\t\t\t\t\t$service_date='-02-';\n\t\t\t\t\tif((int)$year%4)\n\t\t\t\t\t\t$day='28';\n\t\t\t\t\telse\n\t\t\t\t\t\t$day='29';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 3:\n\t\t\t\t\t$service_date='-03-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 4:\n\t\t\t\t\t$service_date='-04-';\n\t\t\t\t\t$day='30';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 5:\n\t\t\t\t\t$service_date='-05-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 6:\n\t\t\t\t\t$service_date='-06-';\n\t\t\t\t\t$day='30';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 7:\n\t\t\t\t\t$service_date='-07-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 8:\n\t\t\t\t\t$service_date='-08-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 9:\n\t\t\t\t\t$service_date='-09-';\n\t\t\t\t\t$day='30';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 10:\n\t\t\t\t\t$service_date='-10-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 11:\n\t\t\t\t\t$service_date='-11-';\n\t\t\t\t\t$day='30';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 12:\n\t\t\t\t\t$service_date='-12-';\n\t\t\t\t\t$day='31';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\techo 'WARNING _ WRONG MONTH IN THE INPUT DATA! <br/>';\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\tswitch($decade)\n\t\t\t{\n\t\t\t\tcase 0:\n\t\t\t\t\t$day='01';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 1:\n\t\t\t\t\t$day='10';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2:\n\t\t\t\t\t$day='20';\n\t\t\t\t\tbreak;\n\t\t\t\tcase 1:\n\t\t\t\t\t$day='28';\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\techo 'WARNING _ WRONG DECADE IN THE INPUT DATA! <br/>';\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\t$service_date='20'.$year.$service_date.$day;\n\t\t\t// Preparing Items for Invoice\n\t\t\t$count_in=1;// only one position by Invoice now\n\t\t\t$items=new ItemList();\n\t\t\tfor($it=0;$it<$count_in;$it++)\n\t\t\t{\t\n\t\t\t\t$item1 = new Item();\n\t\t\t\t// 1. Item number\n\t\t\t\t$item_num=($it+1).'0';\n\t\t\t\t$item1->ITM_NUMBER=$item_num;\n\t\t\t\n\t\t\t\t// 2. Material code\n\t\t\t\t$item1->MATERIAL='901200000';//now it's fixed\n\t\t\t\n\t\t\t/*2.1 BLOCK LEFT FOR LOCATING SAP MATERIAL ID\n\t\t\t\n\t\t\t\t$servicesql='SELECT id_SAP,id FROM services WHERE id_NAV=\"'.$service_id.'\"';\t\n\t\t\t\t$answsql=mysqli_query($db_server,$servicesql);\t\n\t\t\t\tif(!$answsql) die(\"Database SELECT in services table failed: \".mysqli_error($db_server));\t\n\n\t\t\t\t$sap_service_id= mysqli_fetch_row($answsql);\n\t\t\t*/\n\t\t\t\t// 3. Currency\n\t\t\t\t$item1->CURRENCY=$curr;\n\t\t\t\t\n\t\t\t\t// 4. SD conditions\n\t\t\t\t$item1->COND_TYPE=$cond_type;\n\t\t\t\t$item1->COND_VALUE=$val;\n\t\t\t\t\n\t\t\t\t// 4. Quantity\n\t\t\t\t$item1->TARGET_QTY='1'; //FIXED!\n\t\t\t\t\n\t\t\t\n\t\t\t//Inserting into Item List\n\t\t\t\n\t\t\t\t$items->item[$it] = $item1;\n\t\t\t}\n\t\t\t\n\t\t// GENERAL SECTION (HEADER)\n\t\t\n\t\t\t$req->ID_SALESCONTRACT = $contract_id;\t\n\t\t\t$req->SERVICEMODE = $service_mode;\n\t\t\t$req->SERVICEDATE = $service_date;\t\t\t\n\t\t\t$req->BILLDATE=$c_date;\n\t\t\t$req->SALES_ITEMS_IN=$items;\n\t\t\t$req->RETURN2 = '';\n\t\t\t\n\t\t\t$order=SAP_connector($req);\n\t\t\tif ($order)\n\t\t\t\t$doc_id=$order->RETURN2->item->MESSAGE_V4;\n\tmysqli_close($db_server);\n\treturn $doc_id;\n}", "function SAP_set_order_multy($rec_id)\n{\n/*\n\tThis FUNCTION posts SD order \n\tINPUT: id of invoice\n\tOUTPUT:\n\t\t\t- \"ID\" of SD order\n\t\t\tOR \"0\" - if failed\n*/\n\tinclude(\"login_re.php\");\n\tini_set(\"soap.wsdl_cache_enabled\", \"0\");\n\n\t//THESE PARAMS ARE FIXED NOW\n\t$cond_type='ZPR0';\t\n\t\n\t$service_mode='SO_C';\t// CREATE\t\n\t$req = new Request();\n\t \n\t\t\t//Setting up the object\n\t\t\t$item= new Item();\n\t\t\n\t\t//Set up mySQL connection\n\t\t\t$db_server = mysqli_connect($db_hostname, $db_username,$db_password);\n\t\t\t$db_server->set_charset(\"utf8\");\n\t\t\tIf (!$db_server) die(\"Can not connect to a database!!\".mysqli_connect_error($db_server));\n\t\t\tmysqli_select_db($db_server,$db_database)or die(mysqli_error($db_server));\n\t//1.\t\n\t\t// LOCATE data for the invoice\n\t\t\t$invoice_sql=\"SELECT invoice.date,invoice.value,contract.id_SAP,currency.code,invoice.month,invoice.year \n\t\t\t\t\t\t\tFROM invoice \n\t\t\t\t\t\t\tLEFT JOIN contract ON invoice.contract_id=contract.id \n LEFT JOIN currency ON invoice.currency=currency.id\n\t\t\t\t\t\t\tWHERE invoice.id=$rec_id\";\n\t\t\t\t\n\t\t\t$answsql=mysqli_query($db_server,$invoice_sql);\n\t\t\t\t\n\t\t\tif(!$answsql) die(\"Database SELECT TO invoice table failed: \".mysqli_error($db_server));\t\n\t\t\tif (!$answsql->num_rows)\n\t\t\t{\n\t\t\t\techo \"WARNING: No invoice found for a given ID in invoice TABLE <br/>\";\n\t\t\t\treturn 0;\n\t\t\t}\t\n\t\t\t$i_data= mysqli_fetch_row($answsql);\n\t\t\t\t\n\t\t\t\n\t//2.\t\n\t\t\t// Prepare request for SAP ERPclass Item\n\t\n\t\t\t// Set up params\n\t\t\t\n\t\t\t$c_date=$i_data[0];\n\t\t\t$val=$i_data[1];\n\t\t\t$contract_id=$i_data[2];\n\t\t\t$curr=$i_data[3];\t// Currency in invoice\n\t\t\t$c_month=$i_data[4];\n\t\t\t$c_year=$i_data[5];\n\t\t\t$srv_date='';\n\t\t\t$m_date='';\n\t\t\t//SET UP SERVICE DATE - END OF THE BILLING PERIOD\n\t\t\tswitch($c_month)\n\t\t\t{\n\t\t\t\tcase '1':\n\t\t\t\t$m_date='-01-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '2':\n\t\t\t\t$m_date='-02-28';\n\t\t\t\tbreak;\n\t\t\t\tcase '3':\n\t\t\t\t$m_date='-03-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '4':\n\t\t\t\t$m_date='-04-30';\n\t\t\t\tbreak;\n\t\t\t\tcase '5':\n\t\t\t\t$m_date='-05-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '6':\n\t\t\t\t$m_date='-06-30';\n\t\t\t\tbreak;\n\t\t\t\tcase '7':\n\t\t\t\t$m_date='-07-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '8':\n\t\t\t\t$m_date='-08-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '9':\n\t\t\t\t$m_date='-09-30';\n\t\t\t\tbreak;\n\t\t\t\tcase '10':\n\t\t\t\t$m_date='-10-31';\n\t\t\t\tbreak;\n\t\t\t\tcase '11':\n\t\t\t\t$m_date='-11-30';\n\t\t\t\tbreak;\n\t\t\t\tcase '12':\n\t\t\t\t$m_date='-12-31';\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\t$srv_date='20'.$c_year.$m_date;\n\t\t\t\n\t\t\t// Preparing Items for Invoice\n\t\t\t\n\t\t\t// LOCATE POSITIONS for the invoice\n\t\t\t$positions_sql=\"SELECT service_id,quantity,service.id_SAP \n\t\t\t\t\t\t\tFROM invoice_reg \n\t\t\t\t\t\t\tLEFT JOIN service ON invoice_reg.service_id=service.id\n\t\t\t\t\t\t\tWHERE invoice_id=$rec_id\";\n\t\t\t\t\n\t\t\t$answsql1=mysqli_query($db_server,$positions_sql);\n\t\t\t\t\n\t\t\tif(!$answsql1) die(\"Database SELECT TO invoice_reg table failed: \".mysqli_error($db_server));\t\n\t\t\t$count_in=$answsql1->num_rows;\n\t\t\tif (!$count_in)\n\t\t\t{\n\t\t\t\techo \"WARNING: No POSITIONS found for a given ID in invoice_reg TABLE <br/>\";\n\t\t\t\treturn 0;\n\t\t\t}\t\n\t\t\t\t\n\t\t\t\t$items=new ItemList();\n\t\t\t\tfor($it=0;$it<$count_in;$it++)\n\t\t\t\t{\t\n\t\t\t\t\t$pos_data= mysqli_fetch_row($answsql1);\n\t\t\t\t\t$item1 = new Item();\n\t\t\t\t\t// 1. Item number\n\t\t\t\t\t$item_num=($it+1).'0';\n\t\t\t\t\t$item1->ITM_NUMBER=$item_num;\n\t\t\t\n\t\t\t\t\t// 2. Material code\n\t\t\t\t\t$item1->MATERIAL=$pos_data[2];\n\t\t\t\n\t\t\t\t\n\t\t\t\t// 3. Currency ?? - need it?\n\t\t\t\t\t$item1->CURRENCY=$curr;\n\t\t\t\t\n\t\t\t\t\t// 4. SD conditions\n\t\t\t\t\t$item1->COND_TYPE=$cond_type;\n\t\t\t\t\t$item1->COND_VALUE=$val;\n\t\t\t\t\n\t\t\t\t\t// 4. Quantity\n\t\t\t\t\t$item1->TARGET_QTY=$pos_data[1];; \n\t\t\t\t\n\t\t\t\n\t\t\t\t\t//Inserting into Item List\n\t\t\t\n\t\t\t\t\t$items->item[$it] = $item1;\n\t\t\t\t}\n\t\t\t\n\t\t// GENERAL SECTION (HEADER)\n\t\t\n\t\t\t$req->ID_SALESCONTRACT = $contract_id;\t\n\t\t\t$req->SERVICEMODE = $service_mode; \t\t\n\t\t\t$req->BILLDATE=$c_date;\n\t\t\t$req->SALES_ITEMS_IN=$items;\n\t\t\t$req->SERVICEDATE=$srv_date;\n\t\t\t$req->RETURN2 = '';\n\t\t\t//echo \"SENDING TO SAP\";\n\t\t\t$order=SAP_connector($req);\n\t\t\tif ($order->RETURN2->item->MESSAGE==\"SUCCESS\")\n\t\t\t\t$doc_id=$order->RETURN2->item->MESSAGE_V4;\n\t\t\telse\n\t\t\t\t$doc_id=0;\n\t\t\t\n\tmysqli_close($db_server);\n\treturn $doc_id;\n}", "function consumir_webservice($xml_data)\n{\n\t$stream_options = array(\n\t\t'http' => array(\n\t\t\t'method'\t=> 'POST',\n\t\t\t'header'\t=> 'Authorization: Basic ' . base64_encode(\"Openbravo:openbravo\") . ' Content-Type: text/xml',\n\t\t\t'content'\t=> $xml_data,\n\t\t),\n\t);\n\n\t// Crear contexto de flujo con las opciones para consumir el webservice\n\t$context = stream_context_create($stream_options);\n\n\t// Consumir webservice y obtener respuesta\n\t// $ob_response = @file_get_contents('http://192.168.1.251:443/ob_lecaroz/ws/mx.cusoft.importing.rest.insertLecPayment', NULL, $context);\n\t$ob_response = @file_get_contents('http://192.168.1.3:443/ob_lecaroz/ws/mx.cusoft.importing.rest.insertLecPayment', NULL, $context);\n\n\treturn $ob_response;\n}", "function UserManagement(){\n\t\t$this->soap=new SugarSoap('http://troycontainerline.com/sugar/soap.php?wsdl');\n\t}", "function getappointmentcount(){\t\t\t\n\t\t\t\n\n\n$aParametres = array(\"sessionID\" => \"\",\n\t\t\t\t\t\t\"fromDate\" => \"\",\n\t\t\t\t\t\t\"toDate\" => \"\"\n );\n\ntry {\n $options = array(\n 'soap_version'=>SOAP_1_2,\n 'exceptions'=>true,\n 'trace'=>1,\n 'cache_wsdl'=>WSDL_CACHE_NONE\n );\n\t\t\t\n $client = new SoapClient('https://ehmclinicals.com/WebApplication6/PangeaWS?WSDL', $options);\n\t\t\t//var_dump($client->__getFunctions());\n\n $results = $client->GetAppointmentCount(array(\"parameter\"=> $aParametres));\n\t\t\tvar_dump($client);\n\t\t\tvar_dump($results);\n } catch (Exception $e) {\n echo \"<h2>Exception Error!</h2>\";\n echo $e->getMessage();\n } \n}", "function SAP_response_handler($response)\n{\n\n\t$content='';\n\t// Building up the message content\n\t\n\techo '<table><tr><th>PARAMETER</th><th>VALUE</th></tr>';\n\t$result=$response->RETURN2->item;\n\t/*\n\tforeach($response->RETURN2->item as $result)\n\t{\n\t\t\n\t//$result=$Return2->Return2->item[2]->Type;\n\t\t\t$message=$result->MESSAGE;\n\t\t\t$type=$result->TYPE;\n\t\t\t$id=$result->ID;\n\t\t\t$doc_id=$result->MESSAGE_V4;\n\t\t\t$number=$result->NUMBER;\n\t\t\t$system=$result->SYSTEM;\n\t\n\t\techo \"<tr><td colspan=\\\"2\\\" ><hr color=\\\"black\\\" ></td></tr>\";\t\t\n\t\tif ($result->TYPE=='E')\n\t\t{\n\t\t\techo \"<tr><td>RESULT:</td><td>ERROR</td></tr>\";\t\n\t\t\n\t\t\techo \"<tr><td>Message:</td><td>$message</td></tr>\";\n\t\t\techo \"<tr><td>Number #:</td><td>$number</td></tr>\";\n\t\t\techo \"<tr><td>Document #:</td><td>$doc_id</td></tr>\";\n\t\t\techo \"<tr><td>Type #:</td><td>$type</td></tr>\";\n\t\t\t\n\t\t}\n\t\telse\n\t\t{\n\t\t\techo \"<tr><td>RESULT:</td><td>Ok</td></tr>\";\n\t\t\techo \"<tr><td>Message:</td><td>$message</td></tr>\";\n\t\t\techo \"<tr><td>Number #:</td><td>$number</td></tr>\";\n\t\t\techo \"<tr><td>Document #:</td><td>$doc_id</td></tr>\";\n\t\t\techo \"<tr><td>Type #:</td><td>$type</td></tr>\";\n\t\t}\n\t/*}\n\t//echo '</table>';*/\n\treturn $doc_id;\n}", "function javaService($pid,$dbM)\n{\n\t//$x = $WebAuthentication->setPaymentGatewayAuthchecksum($pid);\n\t//$auth = $x[\"AUTHCHECKSUM\"];\n\t$url = \"http://localhost:8190/listings/v1/activities?type=chat&listing=shortlist\";\n\t$header = array(\"JB-Profile-Identifier:\".$pid);\n\t$start_tm=microtime(true);\n\t$response = CommonUtility::sendCurlPostRequest($url,\"\",\"\",$header);\n\t$diff=microtime(true)-$start_tm;\n\t$data = (Array)json_decode($response);\n\t$insert[\"pid\"]=$pid;\n\t$insert[\"count\"]=$data[\"data\"]->totalCount;//$data[\"header\"]->totalCount;\n\t$insert[\"ids\"]=\"\";\n\t\n\tforeach($data[\"data\"]->items as $k=>$v)\n\t{\n\t\t$insert[\"ids\"].=$v->profileid.\",\";\n\t}\n\tinsertData($insert,2,$diff,$dbM);\n}", "public function handleServiceRequest() {\n //\n // Create instance of SOAP server.\n //\n $SoapServer = new SoapServer($this->getWsdlFullPath()); \n $SoapServer->setClass(AblePolecat_Data::getDataTypeName($this)); \n $SoapServer->setPersistence(SOAP_PERSISTENCE_SESSION);\n $SoapServer->handle();\n }", "function testSoap() {\n\n ini_set('soap.wsdl_cache_enabled', 0);\n\n // Load the WSDL\n $wsdlURI = TESTAPP_URL.jUrl::get('jsoap~WSDL:wsdl', array('service'=>'testapp~soap'));\n $client = new SoapClient($wsdlURI, array('trace' => 1, 'soap_version' => SOAP_1_1));\n\n $result = $client->__soapCall('getServerDate', array());\n $this->assertEqualOrDiff(date('Y-m-d\\TH:i:s O'),$result);\n\n $result = $client->__soapCall('hello', array('Sylvain'));\n $this->assertEqualOrDiff(\"Hello Sylvain\", $result);\n\n $result = $client->__soapCall('concatString', array('Hi ! ', 'Sylvain', 'How are you ?'));\n $this->assertEqualOrDiff('Hi ! SylvainHow are you ?', $result);\n\n $result = $client->__soapCall('concatArray', array(array('Hi ! ', 'Sylvain', 'How are you ?')));\n $this->assertEqualOrDiff('Hi ! Sylvain How are you ?', $result);\n\n $result = $client->__soapCall('returnAssociativeArray', array());\n $this->assertEqualOrDiff(array (\n 'arg1' => 'Hi ! ',\n 'arg2' => 'Sylvain',\n 'arg3' => 'How are you ?',\n ), $result);\n\n\n $result = $client->__soapCall('returnAssociativeArrayOfObjects', array());\n $struct='<array>\n <object key=\"arg1\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n <object key=\"arg2\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n <object key=\"arg3\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n</array>';\n $this->assertComplexIdenticalStr($result, $struct);\n\n //$this->assertEqualOrDiff(array('arg1'=>'Hi ! ', 'arg2'=>'Sylvain', 'arg3'=>'How are you ?'), $result);\n\n $result = $client->__soapCall('concatAssociativeArray', array(array('arg1'=>'Hi ! ', 'arg2'=>'Sylvain', 'arg3'=>'How are you ?')));\n $this->assertEqualOrDiff('Hi ! Sylvain How are you ?', $result);\n\n $result = $client->__soapCall('returnObject', array());\n $struct='<object>\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>';\n $this->assertComplexIdenticalStr($result, $struct);\n\n $result = $client->__soapCall('receiveObject', array($result));\n $struct='<object>\n <string property=\"name\" value=\"Name updated\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>';\n $this->assertComplexIdenticalStr($result, $struct);\n\n $result = $client->__soapCall('returnObjects', array());\n $struct='<array>\n <object key=\"0\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n <object key=\"1\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n <object key=\"2\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n <object key=\"3\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n</array>';\n $this->assertComplexIdenticalStr($result, $struct);\n\n $result = $client->__soapCall('returnObjectBis', array());\n $struct='\n <object>\n <string property=\"msg\" value=\"hello\" />\n\n <object property=\"test\">\n <string property=\"name\" value=\"De Vathaire\"/>\n <string property=\"firstName\" value=\"Sylvain\"/>\n <string property=\"city\" value=\"Paris\"/>\n </object>\n </object>';\n $this->assertComplexIdenticalStr($result, $struct);\n\n $result = $client->__soapCall('returnCircularReference', array());\n $struct='\n <array>\n <object key=\"0\">\n <string property=\"msg\" value=\"object1\" />\n <object property=\"test\">\n <string property=\"msg\" value=\"object2\" />\n <object property=\"test\">\n <string property=\"msg\" value=\"object1\" />\n </object>\n </object>\n </object>\n <object key=\"1\">\n <string property=\"msg\" value=\"object2\" />\n <object property=\"test\">\n <string property=\"msg\" value=\"object1\" />\n <object property=\"test\">\n <string property=\"msg\" value=\"object2\" />\n </object>\n </object>\n </object>\n </array>';\n $this->assertComplexIdenticalStr($result, $struct);\n }", "public function do_service() {\n $this->params_wrapper->check();\n $this->params_wrapper->wrap();\n $xml_content = XMLBuilder::buildXML($this->params_wrapper->getWrappedParameters());\n $sympa_client = new SympaPLClient();\n $main_robot_name = strtolower($this->params_wrapper->getWrappedParameter(SympaRemoteConstants::INPUT_RNE)).\".\".$this->config->sympa_main_domain;\n\n\t\t$operation = $this->params_wrapper->getWrappedParameter(SympaRemoteConstants::INPUT_OPERATION);\n\t\t$this->log->LogDebug(\"Operation : \" . $operation);\n\t\tswitch ($operation) {\n\t\t\tcase \"CREATE\":\n\t\t\t\t$sympa_client->createListWithXML($xml_content, $this->params_wrapper->getWrappedParameter(SympaPLClient::ARGUMENT_FAMILLE), $main_robot_name);\n\t\t\t\tbreak;\n\t\t\tcase \"UPDATE\":\n\t\t\t\t$sympa_client->updateListWithXML($xml_content, $this->params_wrapper->getWrappedParameter(SympaPLClient::ARGUMENT_FAMILLE), $main_robot_name);\n\t\t\t\tbreak;\n\t\t\tcase \"CLOSE\":\n\t\t\t\t$listname = $this->params_wrapper->getWrappedParameter(SympaRemoteConstants::INPUT_LIST_NAME_TO_CLOSE);\n\t\t\t\t$sympa_client->closeList($listname);\n\t\t\t\tbreak;\n\t\t}\n }", "function sendCharging($transactionID,$moID){ \n\n$sokaServicesObj = new SokaServices(\"consumer\"); \n \n$url = 'http://192.168.50.68:8002/osb/services/AdjustAccount_1_0?wsdl';\n$date = date(\"YmdHis\");\n $username = \"live_tigo_quiz\";\n $password = \"Qu1z@#123\";\n $expDateTime = \"2020-01-01 00:00:00\";\n$xmlPost = '<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:v1=\"http://xmlns.tigo.com/AdjustAccountRequest/V1\" xmlns:v3=\"http://xmlns.tigo.com/RequestHeader/V3\" xmlns:v2=\"http://xmlns.tigo.com/ParameterType/V2\">\n<soapenv:Header xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\">\n<cor:debugFlag xmlns:cor=\"http://soa.mic.co.af/coredata_1\">true</cor:debugFlag>\n<wsse:Security>\n<wsse:UsernameToken>\n<wsse:Username>live_tigo_quiz</wsse:Username>\n<wsse:Password>Qu1z@#123</wsse:Password>\n</wsse:UsernameToken>\n</wsse:Security>\n</soapenv:Header>\n<soapenv:Body>\n<v1:AdjustAccountRequest>\n<v3:RequestHeader>\n<v3:GeneralConsumerInformation>\n<v3:consumerID>TIGO_QUIZ</v3:consumerID>\n<v3:transactionID>'.$transactionID.'</v3:transactionID>\n<v3:country>TCD</v3:country>\n<v3:correlationID>33</v3:correlationID>\n</v3:GeneralConsumerInformation>\n</v3:RequestHeader>\n<v1:RequestBody>\n<v1:customerID>'.$this->msisdn.'</v1:customerID>\n<v1:walletID>2000</v1:walletID>\n<v1:adjustmentValue>-'.$this->amount.'</v1:adjustmentValue>\n<v1:externalTransactionID>'.$transactionID.'</v1:externalTransactionID>\n<v1:comment>Charging</v1:comment>\n<v1:additionalParameters>\n<v2:ParameterType>\n<v2:parameterName>ExpiryDateTime</v2:parameterName>\n<v2:parameterValue>'.$expDateTime.'</v2:parameterValue>\n</v2:ParameterType>\n</v1:additionalParameters>\n</v1:RequestBody>\n</v1:AdjustAccountRequest>\n</soapenv:Body>\n</soapenv:Envelope>';\n $headers = array(\n \"Method:POST\",\n \"Content-type: application/soap+xml;charset=\\\"utf-8\\\"\",\n \"Content-length: \" . strlen($xmlPost),\n \"Cache-Control: no-cache\",\n \"Pragma: no-cache\",\n \"Accept: application/soap+xml\",\n \"Content-Encoding:gzip,compress\",\n \"SOAPAction:AdjustAccount\",\n );\n\n \n $txnID = $sokaServicesObj->recordPaymentTransaction($this->msisdn,$transactionID, $xmlPost, $moID,\"SENT\",$this->amount); \n \n$ch = curl_init();\n curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);\n curl_setopt($ch, CURLOPT_URL,$url);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_USERPWD, $username . \":\" . $password); // username and password - declared at the top of the doc\n curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);\n curl_setopt($ch, CURLOPT_TIMEOUT, 160);\n curl_setopt($ch, CURLOPT_POST, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlPost); // the SOAP request\n curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);\n $soapResponse = curl_exec($ch);\n curl_close($ch);\n if($soapResponse){\n $data['isResponse'] = TRUE; \n $data['response'] = $soapResponse;\n $data['txnID'] = $txnID;\n }\n else{ \n $data['isResponse'] = FALSE; \n $data['response'] = \"PROCESS_FAILED\";\n $data['txnID'] = $txnID;\n }\n return $data;\n \n \n}", "function ajaxQueryServiceStatusDetails()\n {\n $serviceId = $_POST[\"serviceStatusId\"];\n\n if (!empty($serviceId)) {\n if (!is_numeric($serviceId)) {\n echo \"{}\";\n return;\n }\n\n $no = $this->NetworkOutage_model->getNetworkOutageById($serviceId);\n //header('Content-Type: text/javascript');\n $expNO = $this->exportNetworkOutageDetail($no->next());\n\n $exptNOResp = json_encode($expNO);\n if (is_null($_GET['callback'])) {\n echo $exptNOResp;\n } else {\n echo $_GET['callback']. '('. $exptNOResp .');';\n }\n } else {\n // return empty object\n echo \"{}\";\n }\n }", "public function access_content($msisdn,$invoiceNo,$aggreedPayDate){\n $curl = curl_init();\n $url='http://10.12.36.130:8080/services/DcPaServices';\n curl_setopt_array($curl, array(\n CURLOPT_URL => $url,\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => '',\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 0,\n CURLOPT_FOLLOWLOCATION => true,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_HTTPHEADER => array(\n 'SOAPAction: Adjustment',\n 'Content-Type: text/xml;charset=UTF-8'),\n CURLOPT_CUSTOMREQUEST => 'POST',\n CURLOPT_POSTFIELDS =>'<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n xmlns:bmp=\"http://cbs.huawei.com/dc/wsservice/bmpinterface\"\n xmlns:cbs=\"http://www.huawei.com/bme/cbsinterface/cbscommon\">\n<soapenv:Header/>\n <soapenv:Body>\n <bmp:CreatePARequestMsg>\n <RequestHeader>\n <cbs:Version>1</cbs:Version>\n <!--Optional:-->\n <cbs:BusinessCode>CreatePA</cbs:BusinessCode>\n <cbs:MessageSeq>'.time().'</cbs:MessageSeq>\n <!--Optional:-->\n <cbs:OwnershipInfo>\n <cbs:BEID>101</cbs:BEID>\n <!--Optional:-->\n </cbs:OwnershipInfo>\n <cbs:AccessSecurity>\n <cbs:LoginSystemCode>hissam</cbs:LoginSystemCode>\n <cbs:Password>Q9nmbqOehHWjysXzmQiabeI0Saa2V3WHEsw+xF7PnxM=</cbs:Password>\n </cbs:AccessSecurity>\n </RequestHeader>\n <CreatePARequest>\n <bmp:AcctAccessCode>\n <!--You have a CHOICE of the next 3 items at this level-->\n <bmp:PrimaryIdentity>'.$msisdn.'</bmp:PrimaryIdentity>\n </bmp:AcctAccessCode>\n <!--Optional:-->\n <bmp:PAExternalID>?</bmp:PAExternalID>\n <bmp:PAType>1</bmp:PAType>\n <bmp:PARequestDate>'.date(\"Ymd\").'000000</bmp:PARequestDate>\n <!--1 or more repetitions:-->\n <bmp:PADetailInfo>\n <bmp:AgreedPaidDate>'.$aggreedPayDate.'000000</bmp:AgreedPaidDate>\n <!--Optional:-->\n <bmp:CurrencyId>1153</bmp:CurrencyId>\n </bmp:PADetailInfo>\n <!--Zero or more repetitions:-->\n <bmp:PAInvoiceInfo>\n <bmp:InvoiceNo>'.$invoiceNo.'</bmp:InvoiceNo>\n </bmp:PAInvoiceInfo>\n <bmp:PAReminderFlag>N</bmp:PAReminderFlag>\n </CreatePARequest>\n </bmp:CreatePARequestMsg>\n </soapenv:Body>\n </soapenv:Envelope>',));\n //Convert XML to JSON\n $response = curl_exec($curl);\n \n return $response;\n //return $response;\n }", "public function tipo_cambio(){\n\n $client = new SoapClient(null, array(\n 'location' =>'http://www.banxico.org.mx:80/DgieWSWeb/DgieWS?WSDL',\n 'uri'=>'http://DgieWSWeb/DgieWS?WSDL',\n 'encoding'=> 'UTF-8'\n ));\n\n try {\n\n $result = $client->tiposDeCambioBanxico();\n\n } catch (SoapFault $ex) {\n\n return $this->error($ex->getMessage());\n\n }\n\n if( !$result) {\n\n return false;\n\n }\n\n $dom = new DomDocument();\n $dom->loadXML($result);\n\n $xmlDatos = $dom->getElementsByTagName('Obs');\n\n if( !$xmlDatos->length) {\n\n return false;\n\n }\n\n $itemDolar = $xmlDatos->item(0);\n $itemEuro = $xmlDatos->item(2);\n $itemDolarCanadiense = $xmlDatos->item(3);\n $itemYenCanadiense = $xmlDatos->item(4);\n\n if( !$itemDolar || !$itemDolarCanadiense || !$itemEuro || !$itemYenCanadiense) {\n\n return false;\n\n }\n\n $data = array(\n 'USD' => array(\n 'moneda'=>'USD',\n 'descripcion'=>'Dolar',\n 'time'=>$itemDolar->getAttribute('TIME_PERIOD'),\n 'valor'=>$itemDolar->getAttribute('OBS_VALUE')\n ),\n 'EUR' => array(\n 'moneda'=>'EUR',\n 'descripcion'=>'Euro',\n 'time'=>$itemEuro->getAttribute('TIME_PERIOD'),\n 'valor'=>$itemEuro->getAttribute('OBS_VALUE')\n ),\n 'CAN' => array(\n 'moneda'=>'USD CAN',\n 'descripcion'=>'Dolar Canadiense',\n 'time'=>$itemDolarCanadiense->getAttribute('TIME_PERIOD'),\n 'valor'=>$itemDolarCanadiense->getAttribute('OBS_VALUE')\n ),\n 'YEN' => array(\n 'moneda'=>'YEN CAN',\n 'descripcion'=>'YEN Canadiense',\n 'time'=>$itemYenCanadiense->getAttribute('TIME_PERIOD'),\n 'valor'=>$itemYenCanadiense->getAttribute('OBS_VALUE')\n )\n );\n return $data;\n }", "function ODQuery_QueryService() {\n\t\t$this->client = new SoapClient(__DIR__.'/../wsdl/QueryService2.wsdl',array(\n 'exceptions'=>true,\n 'encoding'=>'utf-8')\n );\n\t\t$this->soapException = new ODSubmission_SoapException();\n\t}", "public function sap_do_select_all($kd_plant=\"\",$do_no=\"\",$do_item=\"\") {\n\t $kd_plant = $this->session->userdata['ADMIN']['plant'];\n\n /* $this->m_saprfc->setUserRfc();\n $this->m_saprfc->setPassRfc();\n $this->m_saprfc->sapAttr();\n $this->m_saprfc->connect();\n $this->m_saprfc->functionDiscover(\"ZMM_BAPI_DISP_DELV_OUTS\");\n $this->m_saprfc->importParameter(array (\"DELV_ITEM\",\"DELV_NUMBER\",\"OUTLET\",),\n array ($do_item,$do_no,$kd_plant));\n $this->m_saprfc->setInitTable(\"DELV_OUTS\");\n $this->m_saprfc->executeSAP();\n $DELV_OUTS = $this->m_saprfc->fetch_rows(\"DELV_OUTS\");\n $this->m_saprfc->free();\n $this->m_saprfc->close();*/\n\t\t//$c=mssql_connect(\"192.168.0.20\",\"sa\",\"M$1S@p!#@\");\n\t\t//$b=mssql_select_db('Test_MSI_TRIAL',$c);\n\t\n\t\t$SAPquery=\"SELECT U_StrLoc from owhs where WhsCode ='$kd_plant'\";\n\t\t$CON=mssql_query($SAPquery);\n\t\t$CON1=mssql_fetch_array($CON);\n\t\t$U_StrLoc=$CON1['U_StrLoc'];\n\t\t$SAPquery1=\"select U_TransFor from OWHS where WhsCode = '$kd_plant'\";\n\t\t$CON1=mssql_query($SAPquery1);\n\t\t$CON2=mssql_fetch_array($CON1);\n\t\t$plant=$CON2['U_TransFor'];\n\t\t//echo $plant.'-'.$U_StrLoc;\n\t\t//echo $SAPquery1;\n\t\t\n\t\t//return $this->db2->get(\"OWTR\");\n\t\t//if ( $kd_plant == 'CW' || $kd_plant == 'CW1' || $kd_plant == 'CW2')\n\t\t//{\n\t\t\n\t\t $filler=Array('CW','CW1','CW2');\n\t\t $close=array('0','IS NULL');\n\t\t $this->db2->select('OWTR.DocEntry VBELN,OWTR.DocDate DELIV_DATE,OWTR.ToWhsCode,WTR1.LineNum POSNR,Filler,\n\t\t\t\t\t\t\tOITM.ItmsGrpCod DISPO,WTR1.ItemCode MATNR,Dscription MAKTX,(OpenQty-U_grqty_web) LFIMG ,unitMsr VRKME,WTR1.LineNum item, ToWhsCode PLANT, U_grqty_web');\n\t\t$this->db2->from('OWTR');\n\t\t$this->db2->join('WTR1','OWTR.DocEntry = WTR1.DocEntry','inner');\n\t\t$this->db2->join('OITM','WTR1.ItemCode = OITM.ItemCode','inner');\n\t\t$this->db2->join('OWHS','OWHS.WhsCode = OWTR.Filler','inner');\n\t\t//$this->db2->where_in('ToWhsCode',$kd_plant);\n\t\t$this->db2->where_in('ToWhsCode',$plant);\n\t\t$this->db2->where('U_StrLoca',$U_StrLoc);\n\t\t$this->db2->where('U_Stat <>',1);\n\t\t$this->db2->where_in('U_close ',0);\n\t\t$this->db2->where('(OpenQty-U_grqty_web) >', 0);\n\t\t\n\t\t\n\t\t//$this->db2->where('(OpenQty) < (u_grqty_web'), 0);\n\t\t//$this->db2->where('Filler',$filler);\n\t\t//$this->db2->where(array('OWTR.U_Stat'=> NULL));\n\t\t$query = $this->db2->get();\n\t\t//$DELV_OUTS = $query->fetch_rows(); \n\t\t\n\tif($query->num_rows() > 0) {\n $DELV_OUTS = $query->result_array();\n\t\t $count = count($DELV_OUTS)-1;\n for ($i=0;$i<=$count;$i++) {\n $poitems[$i+1] = $DELV_OUTS[$i];\n }\n\n return $poitems;\n \n } else {\n return FALSE;\n } \n//}\n/*\n\t\t$this->db->select('VBELN,POSNR,MATNR,MAKTX,(LFIMG-LFIMG_APRVD) AS LFIMG,VRKME,MATKL,DISPO,LGORT,MBLNR,UNIT,UNIT_STEXT,DELIV_DATE');\n\t\t$this->db->from('ZMM_BAPI_DISP_DELV_OUTS');\n\t\t$this->db->where('PLANT',$kd_plant);\n\t\t$this->db->order_by('VBELN');\n\t\t$this->db->order_by('MATNR');\n\t\t$this->db->order_by('POSNR');\n\t\tif(!empty($do_no)) {\n\t\t\t$this->db->where('VBELN',$do_no);\n\t\t}\n\t\tif(!empty($do_item)) {\n\t\t\t$this->db->where('POSNR',$do_item);\n\t\t}\n\t\tif(empty($do_no)&&empty($do_item)) {\n\t\t\t$this->db->where('(LFIMG-LFIMG_APRVD) > 0');\n\t\t}\n\t\t$query = $this->db->get();\n\t\tif($query->num_rows() > 0) {\n\t\t\t$dos = $query->result_array();\n\t\t\t$count = count($dos);\n\t\t\t$k = 1;\n\t\t\tfor ($i=0;$i<=$count-1;$i++) {\n\t\t\t\t$do[$k] = $dos[$i];\n\t\t\t\t$k++;\n\t\t\t}\n\t\t\treturn $do;\n\t\t} else {\n\t\t\treturn FALSE;\n\t\t}\n*/\n\n\t}", "function SOAP_call($body, $controle){\n $location_URL = 'https://api.go4you.com.br/Consultas/Pedidos/Acoes.asmx?wsdl';\n $action_URL = \"http://www.go4you.com.br/webservices/InserirPedidoSemBag\";\n \n $client = new SoapClient(null, array(\n \"Content-type: text/xml;charset=\\\"utf-8\\\"\",\n \"Accept: text/xml\",\n \"Cache-Control: no-cache\",\n \"Pragma: no-cache\",\n \"SOAPAction: \\\"run\\\"\",\n 'location' => $location_URL,\n 'host' => \"api.go4you.com.br\",\n 'uri' => \"api.go4you.com.br\",\n 'trace' => \"1\",\n \"Content-length: \".strlen($body)\n ));\n \n return $client->__doRequest($body ,$location_URL, $action_URL, 1); \n \n}", "public function aw_service_wp ( $proc, $args ) {\n\t \t//$args = array('argDta' => $productID,'argIsSale' => 1,'argUsr' => '');\n\t\t$url \t\t= 'http://203.201.129.15/AWSERVICE_WP_WEB/awws/AWService_WP.awws?wsdl';\n\t\t$client \t= new SoapClient($url);\n\t\t$response \t= $client->__soapCall( $proc, array($args) );\n\t\t\n\t\tswitch ( $proc ) {\n\t\t\tcase 'Trainers_OnlineProduct_Listing':\n\t\t\t\t$simpleXml = simplexml_load_string($response->Trainers_OnlineProduct_ListingResult);\n\t\t\tbreak;\n\n\t\t\tcase 'CorporateClientsList':\n\t\t\t\t$simpleXml = simplexml_load_string($response->CorporateClientsListResult);\n\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'pcPrdct_DisplayInfo':\n\t\t\t\t$simpleXml = simplexml_load_string($response->pcPrdct_DisplayInfoResult);\n\t\t\tbreak;\n\t\t\t\n\t\t\tcase 'pcChat_UserDetails':\n\t\t\t\t$simpleXml = $response->pcChat_UserDetailsResult;\n\t\t\tbreak;\n\t\t\t\n\t\t}\n\t\t\n\t \treturn $simpleXml;\n\t }", "public function demo(){\n // $this->soapWrapper->add(function ($service) {\n // $service->name('CRW')\n // ->wsdl('http://crm.elizade.net:5050/Service1.svc?wsdl')\n // ->trace(true);\n // });\n $this->soapWrapper->add('CRW', function ($service) {\n $service\n ->wsdl('http://crm.elizade.net:5050/Service1.svc?wsdl')\n ->trace(true);\n // ->classmap([\n // GetConversionAmount::class,\n // GetConversionAmountResponse::class,\n // ]);\n });\n\n $data = [\n 'lastname' => 'Raymond',\n 'firstname' => 'Ativie',\n 'email' => '[email protected]',\n 'bizPhone' => '08151700676'\n ];\n\n $case = [\n 'accountnumber' => 'CUST013643',\n 'description' => 'This is a description',\n 'title' => 'Hello world'\n ];\n\n // $response = $this->soapWrapper->call('CRW.CreateContact', [$data]);\n $response = $this->soapWrapper->call('CRW.CreateCase', [$case]);\n\n var_dump($response);\n\n // Using the added service\n // $this->soapWrapper->service('CRW', function ($service) use ($data) {\n // var_dump($service->call('CreateContact', [$data]));\n // // var_dump($service->call('Otherfunction'));\n // });\n }", "abstract protected function getService();", "function SchedullerPO(){\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// Cek --> Update PO List, Update Quantity PO Open\n\t\t// echo \"hahah\";\t\t\n\t\trequire_once APPPATH.'third_party/sapclasses/sap.php';\n\t\t$sap = new SAPConnection();\n\t\t$sap->Connect(APPPATH.\"third_party/sapclasses/logon_dataDev.conf\");\n\t\tif ($sap->GetStatus() == SAPRFC_OK ) $sap->Open ();\n\t\tif ($sap->GetStatus() != SAPRFC_OK ) {\n\t\t\techo $sap->PrintStatus();\n\t\t\texit;\n\t\t}\n\n\t\t$fce = &$sap->NewFunction (\"Z_ZCMM_VMI_PO_DETAILC\");\n\t\t\n\t\tif ($fce == false) {\n\t\t\t$sap->PrintStatus();\n\t\t\texit;\n\t\t}\n\t\t\n\t\t$start \t= date(\"20170101\");\t\t\t\t\t// Date start VMI apps\n\t\t$end \t= date(\"Ymd\");\t\t\t\t\t\t// Date Now\n\t\t$opco\t\t\t\t\t= '7000';\n\t\t$fce->COMPANY \t\t\t= \"$opco\";\t\t// BUKRS\n\t\t// $fce->PO_TYPE \t\t= 'ZK17';\n\t\t// $fce->VENDOR \t\t= ;\n\t\t$fce->DATE['SIGN'] \t= 'I';\n\t\t$fce->DATE['OPTION']\t= 'BT';\n\t\t$fce->DATE['LOW'] \t= $start;\n\t\t$fce->DATE['HIGH'] \t= $end;\n\t\t\n\t\t$fce->PO_TYPE->row['SIGN'] \t= 'I';\n\t\t$fce->PO_TYPE->row['OPTION'] \t= 'EQ';\n\t\t$fce->PO_TYPE->row['LOW'] \t= 'ZK10';\n\t\t$fce->PO_TYPE->row['HIGH'] \t= '';\n\t\t$fce->PO_TYPE->Append($fce->PO_TYPE->row);\n\t\t\n\t\t$fce->PO_TYPE->row['SIGN'] \t= 'I';\n\t\t$fce->PO_TYPE->row['OPTION'] \t= 'EQ';\n\t\t$fce->PO_TYPE->row['LOW'] \t= 'ZK17';\n\t\t$fce->PO_TYPE->row['HIGH'] \t= '';\n\t\t$fce->PO_TYPE->Append($fce->PO_TYPE->row);\n\t\t\t\n $fce->call();\n\n if ($fce->GetStatus() == SAPRFC_OK) {\n $fce->T_ITEM->Reset();\n $data=array();\n $empty=0;\n $tampildata=array();\n while ($fce->T_ITEM->Next()) {\n\t\t\t\t$matnr \t\t= $fce->T_ITEM->row[\"MATNR\"];\t// Kode Material\n\t\t\t\t$lifnr \t\t= $fce->T_ITEM->row[\"LIFNR\"];\t// Kode Vendor\n\t\t\t\t$ebeln \t\t= $fce->T_ITEM->row[\"EBELN\"];\t// No PO\n\t\t\t\t$menge \t\t= intval($fce->T_ITEM->row[\"MENGE\"]);\t// Quantity PO\n\t\t\t\t$sisaqty\t= intval($fce->T_ITEM->row[\"DELIV_QTY\"]);\t// Quantity PO Open\n\t\t\t\t$werks \t\t= $fce->T_ITEM->row[\"WERKS\"];\t// Plant\n\t\t\t\t$vendor\t\t= $fce->T_ITEM->row[\"VENDNAME\"];\t// Nama Vendor\n\t\t\t\t$material \t= $fce->T_ITEM->row[\"MAKTX\"];\t// Nama Material\n\t\t\t\t$potype \t= $fce->T_ITEM->row[\"BSART\"];\t// Type PO\n\t\t\t\t// $mins \t\t= $fce->T_ITEM->row[\"EISBE\"];\t// Safety Stock\n\t\t\t\t$mins \t\t= $fce->T_ITEM->row[\"MINBE\"];\t// Re Order Point\n\t\t\t\t$maxs \t\t= $fce->T_ITEM->row[\"MABST\"];\t// Max\n\t\t\t\t$statuspo\t= $fce->T_ITEM->row[\"ELIKZ\"];\t// Max\n\t\t\t\t$start \t\t= date_format(date_create($fce->T_ITEM->row[\"BEDAT\"]),'d M Y');\n\t\t\t\t$end \t\t= date_format(date_create($fce->T_ITEM->row[\"EINDT\"]),'d M Y');\n\t\t\t\t\n\t\t\t\tif($statuspo == 'X' || $statuspo == 'x')\n\t\t\t\t{\n\t\t\t\t\t$sts = 0;\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t$sts = 1;\n\t\t\t\t}\n\t\t\t\t$sqlread= \"SELECT count(id_list) ADA\n\t\t\t\t\t\t\tFROM VMI_MASTER \n\t\t\t\t\t\t\twhere NO_PO = '$ebeln' and\n\t\t\t\t\t\t\tKODE_MATERIAL = '$matnr' and \n\t\t\t\t\t\t\tKODE_VENDOR = '$lifnr' and\n\t\t\t\t\t\t\tPLANT = '$werks' \n\t\t\t\t\t\t\t\";\n\t\t\t\t\t\t\t//and QUANTITY = '$menge'\n\t\t\t\t$jum \t= $this->db->query($sqlread)->row();\n\t\t\t\t$nilai \t= $jum->ADA;\n\t\t\t\t// echo $nilai.\"->\".$matnr.\" | \".$lifnr.\" | \".$ebeln.\" | \".$menge.\" | \".$werks.\" | \".$vendor.\" | \".$material.\" | \".$start.\" | \".$end.\" ==> \".$potype.\"<br/>\";\n\t\t\t\t// $ebeln == \"6310000038\" || $ebeln == \"6310000039\" || $ebeln == \"6310000040\" || $ebeln == \"6310000041\" || $ebeln == \"6310000042\" || $ebeln == \"6310000043\")\n\t\t\t\t\n\t\t\t\tif($nilai < 1){\n\t\t\t\t\tif($ebeln == \"6310000038\" || $ebeln == \"6310000039\" || $ebeln == \"6310000040\" || $ebeln == \"6310000041\" || $ebeln == \"6310000042\" || $ebeln == \"6310000043\"\n\t\t\t\t\t\t|| $lifnr == \"0000113004\" || $lifnr == \"0000110091\" || $lifnr == \"0000110253\" || $lifnr == \"0000110015\" || $lifnr == \"0000112369\" || $lifnr == \"0000110016\"){\t\t\t\t\t\t\n\t\t\t\t\t\t$sqlcount \t= \"SELECT max(ID_LIST) MAXX FROM VMI_MASTER\";\n\t\t\t\t\t\t$maxid \t\t= $this->db->query($sqlcount)->row();\t\t\n\t\t\t\t\t\t$max_list \t= $maxid->MAXX+1;\n\t\t\t\t\t\t$insert\t\t= \"insert into VMI_MASTER(ID_LIST,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tPLANT,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tKODE_MATERIAL,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tNAMA_MATERIAL,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tUNIT,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tKODE_VENDOR,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tNAMA_VENDOR,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tNO_PO,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tPO_ITEM,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tCONTRACT_ACTIVE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tCONTRACT_END,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tDOC_DATE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSLOC,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tMIN_STOCK,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tMAX_STOCK,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSTOCK_AWAL,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSTOCK_VMI,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tQUANTITY,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tID_COMPANY,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSTATUS)\n\t\t\t\t\t\t\t\t\t\t\t\tvalues('$max_list',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$werks',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$matnr',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$material',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'\".$fce->T_ITEM->row[\"MEINS\"].\"',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$lifnr',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$vendor',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$ebeln',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'\".$fce->T_ITEM->row[\"EBELP\"].\"',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tTO_DATE('\".date_format(date_create($start),'Y-m-d').\"','YYYY-MM-DD'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tTO_DATE('\".date_format(date_create($end),'Y-m-d').\"','YYYY-MM-DD'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tTO_DATE('\".date_format(date_create($start),'Y-m-d').\"','YYYY-MM-DD'),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'\".$fce->T_ITEM->row[\"LGORT\"].\"',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'\".$fce->T_ITEM->row[\"EISBE\"].\"',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'\".$fce->T_ITEM->row[\"MABST\"].\"',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'0',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'0',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$sisaqty',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$opco',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t'$sts'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\";\n\t\t\t\t\t\t$save \t= $this->db->query($insert);\n\t\t\t\t\t\techo \"Baru ==> $ebeln | $material | $vendor | $opco | $werks | $potype<br/>\";\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\techo \"Skip ==> $ebeln | $material | $vendor | $opco | $werks | $potype<br/>\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telseif($nilai >= 1){\n\t\t\t\t\t$sqlread1 = \"SELECT ID_LIST\n\t\t\t\t\t\t\tFROM VMI_MASTER \n\t\t\t\t\t\t\twhere NO_PO = '$ebeln' and\n\t\t\t\t\t\t\tKODE_MATERIAL = '$matnr' and \n\t\t\t\t\t\t\tKODE_VENDOR = '$lifnr' and\n\t\t\t\t\t\t\tPLANT = '$werks' \n\t\t\t\t\t\t\t\";\n\t\t\t\t\t\t\t//and QUANTITY = '$menge'\n\t\t\t\t\t$getlist= $this->db->query($sqlread1)->row();\n\t\t\t\t\t$idlist = $getlist->ID_LIST;\n\t\t\t\t\t$update\t\t= \"update VMI_MASTER set quantity = '$sisaqty',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmin_stock = '$mins',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmax_stock = '$maxs',\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tSTATUS = '$sts'\n\t\t\t\t\t\t\t\t\t\t\t\t\twhere ID_LIST = '$idlist'\n\t\t\t\t\t\t\t\t\";\n\t\t\t\t\t$update_data\t= $this->db->query($update);\n\t\t\t\t\t\techo \"$update <br/>\";\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t\techo \"Skip ==> $ebeln | $material | $vendor | $opco| $werks | $potype<br/>\";\n\t\t\t\t}\n\t\t\t\t// echo \"<hr/>\"; \n\t\t\t}\n\t\t// echo \"<pre>\";\n\t\t// print_r($fce);\n\t\t// echo \"hahaha\";\n $fce->Close();\n\t\t}\n }", "function wsConsultaSaldo($group_id, &$saldo, &$comments)\r\n{\r\n\t$skipSaldo = true;\r\n\r\n\tif($skipSaldo || $skipWS) {\r\n\t\t$saldo = 0;\r\n\t\treturn 0;\r\n\t}\r\n\ttry {\r\n\r\n\t\t$token = wsCalculateToken();\r\n\r\n\t\t// $app = new Application();\r\n\r\n\t\tglobal $webservice;\r\n\r\n\t\t//phpinfo();\r\n\r\n\t\t$servicioweb = CONST_URI_WEB_SERVICE;\r\n\t\t//$servicioweb = $webservice;\r\n\r\n\t\t //echo $servicioweb . \"***\";\r\n\t\t //echo $token;\r\n\t\t //echo $group_id;\r\n\r\n\t\tif ($servicioweb == '') {\r\n\t\t\tthrow new customException('La cadena de URI_WEB_SERVICE está vacia');\r\n\t\t}\r\n\t\t\r\n\t\t$client = new SoapClient($servicioweb);\r\n\t\t\r\n\t\t$parametros=array(); //parametros de la llamada\r\n\r\n\t\t$parametros['group_id']=$group_id;\r\n\t\t$parametros['token']=$token;\r\n\t\t\r\n\t\t//print_r ($parametros);\r\n\t\t//die();\r\n\t\t\r\n\t\t$result = $client->GetSaldoCSV($parametros); //llamamos al método que nos interesa con los parámetros\r\n\r\n\t\t$resultados = explode(const_delimitador, $result->GetSaldoCSVResult);\r\n\t\r\n\t\t//print_r ($resultados);\r\n\t\t\r\n\t\r\n\t\t$cant = count($resultados); \r\n\t\t// status:-2: (no existe), 1: saldo>0 con deuda, -1: error (no hubo conexión a SQL), 0: saldo<=0\r\n\t\t// $status = $resultados[0];\r\n\t\t// $saldo = $resultados[1];\r\n\t\t$status = ($cant >=1 ? $resultados[0] : -1);\r\n\t\t$saldo = ($cant >=2 ? $resultados[1] : \"\");\t\t\r\n\t\r\n\t\t//echo $saldo;\r\n\t\t//die();\r\n\t\t\r\n\t\r\n\t\tif ($status == const_Error_Token)\r\n\t\t{\r\n\t\t\t$comments = \"<h2>Invalid Token</h2>\" . \"<br>\";\t\r\n\t\t}\r\n\r\n\t\treturn $status; // $result->GetSaldoResult\r\n\t}\r\n\tcatch (customException $e) {\r\n\t\t$status = -5;\r\n\t\t\r\n\t\t$comments = \"<h2>Custom Exception</h2>\" . \"<br>\" . $e->errorMessage(); \r\n\t\t\r\n return $status;\r\n\t}\r\n\tcatch (Exception $e) { \r\n\t\r\n\t\t$status = const_Error_Conexion_WS;\r\n\t\t\r\n\t\t$comments = \"<h2>Exception Error catched by the Reservaciones application!</h2>\" . \"<br>\" . $e->getMessage(); \r\n\r\n return $status;\r\n\t}\r\n}", "public function loginMtnIranAction(){\n $client = new nusoap_client('http://92.42.51.113:7001/MTNIranCell_Proxy', false);\n $client->soap_defencoding = 'UTF-8';\n $client->decode_utf8 = false;\n\n $msg = '<soap:Envelope soap:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n <soap:Header>\n <pr:authentication xmlns:pr=\"http://webservices.irancell.com/ProxyService\">\n <pr:user>mw_bks</pr:user>\n <pr:password>MW_bks032Mtn</pr:password>\n </pr:authentication>\n </soap:Header>\n <soap:Body>\n <open:clientRequest xmlns:open=\"http://www.openuri.org/\" xmlns:env=\"http://eai.mtnn.iran/Envelope\">\n <env:EaiEnvelope>\n <env:Domain>BookStoreAPI</env:Domain>\n <env:Service>Ecare</env:Service>\n <env:Language>en</env:Language>\n <env:UserId>989381994779</env:UserId>\n <env:Sender>abl_bks</env:Sender>\n <env:MessageId>'.rand(100,999).'</env:MessageId>\n <env:Payload>\n <ec:EcareData xmlns:ec=\"http://eai.mtn.iran/Ecare\">\n <ec:Request>\n <ec:Operation_Name>authenticateCustomer</ec:Operation_Name>\n <ec:CustDetails_InputData>\n <ec:MSISDN>989381994779</ec:MSISDN>\n <ec:newPassword>433B3C</ec:newPassword>\n <ec:language>En</ec:language>\n </ec:CustDetails_InputData>\n </ec:Request>\n </ec:EcareData>\n </env:Payload>\n </env:EaiEnvelope>\n </open:clientRequest>\n </soap:Body>\n</soap:Envelope>\n';\n\n \n /* $msg = '<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\">\n <SOAP-ENV:Header>\n <ns1:authentication xmlns:ns1=\"http://webservices.irancell.com/ProxyService\">\n <ns1:user xsi:type=\"xsd:string\">mw_pn</ns1:user> \n <ns1:password xsi:type=\"xsd:string\">MW_pn030Mtn</ns1:password>\n </ns1:authentication>\n </SOAP-ENV:Header>\n <SOAP-ENV:Body>\n <ns2:clientRequest xmlns:ns2=\"http://www.openuri.org/\">\n <ns3:EaiEnvelope xmlns:ns3=\"http://eai.mtnn.iran/Envelope\">\n <ns3:Domain xsi:type=\"xsd:string\">Portal</ns3:Domain>\n <ns3:Service xsi:type=\"xsd:string\">Ecare</ns3:Service>\n <ns3:Language xsi:type=\"xsd:string\">en</ns3:Language>\n <ns3:UserId xsi:type=\"xsd:string\">abl_care</ns3:UserId>\n <ns3:Sender xsi:type=\"xsd:string\">abl_care</ns3:Sender>\n <ns3:MessageId xsi:type=\"xsd:string\">504016000001401131554427972005</ns3:MessageId>\n <ns3:CorrelationId xsi:type=\"xsd:string\">504016000001401131554427972005</ns3:CorrelationId>\n <ns3:GenTimeStamp xsi:type=\"xsd:string\">2014-02-26T09:39:51</ns3:GenTimeStamp>\n <ns3:Payload>\n <ns3:EcareData>\n <ns4:Request xmlns:ns4=\"http://eai.mtn.iran/Ecare\">\n <ns4:Operation_Name xsi:type=\"xsd:string\">authenticateCustomer</ns4:Operation_Name>\n <ns4:CustDetails_InputData>\n <ns4:MSISDN xsi:type=\"xsd:string\">989373390219</ns4:MSISDN>\n <ns4:language xsi:type=\"xsd:string\">en</ns4:language>\n <ns4:newPassword xsi:type=\"xsd:string\">nina1194</ns4:newPassword>\n </ns4:CustDetails_InputData>\n </ns4:Request>\n </ns3:EcareData>\n </ns3:Payload>\n </ns3:EaiEnvelope>\n </ns2:clientRequest>\n </SOAP-ENV:Body>\n </SOAP-ENV:Envelope>';*/\n\n $result = $client->send($msg, 'http://92.42.51.122:7001/MTNIranCell_Proxy');\n \n Zend_Debug::dump($result); \n echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';\n\t echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';\n\t echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';\n die();\n }", "public function callServiceType ()\n\t\t{\n\t\t\t/* get meta data from META.inf */\n\t\t\t$this->result['meta'] = self::getMetaData ();\n\t\t\tif ( $this->t != null ) {\n\t\t\tif ( strtoupper ( $this->t ) == 'NAME' ){ self::getName ();} \n\t\t\telse if ( strtoupper ( $this->t ) == 'LASTCON' ) { self::getLastConnection (); } \n\t\t\telse if ( strtoupper ( $this->t ) == 'PUBLICIP' ) { self::getIPPublic(); } \n\t\t\telse if ( strtoupper ( $this->t ) == 'PORT' ) { self::getPort (); } \n\t\t\telse if ( strtoupper ( $this->t ) == 'CERT' ) { self::getUserCertExpire ();} \n\t\t\telse if ( strtoupper ( $this->t ) == 'NETMASK' ) { self::getGatewayServer ('netmask');} \n\t\t\telse if ( strtoupper ( $this->t ) == 'GATEWAY' ) { self::getGatewayServer ('gateway'); } \n\t\t\telse if ( strtoupper ( $this->t ) == 'SERVPROCESS' ) { self::getOVPNProcess (); } \n\t\t\telse if ( strtoupper ( $this->t ) == 'ROUTING' ) { self::getRouteInfo (); }\n\t\t\telse if ( strtoupper ( $this->t ) == 'IP' ) { self::getClientIP (); }\n\t\t\telse if ( strtoupper ( $this->t ) == 'STATUS' ) { self::getConnectStatus (); }\n\t\t\telse if ( strtoupper ( $this->t ) == 'SUCCESS' ) { self::pushEvents (\"success\"); }\n\t\t\telse if ( strtoupper ( $this->t ) == 'ERROR' ) { self::pushEvents (\"error\"); }\n\t\t\telse if ( strtoupper ( $this->t ) == 'DSPEVENTS' ) { self::getEvents (); }\n\t\t\telse $this->result['data'] = \"Invalid parameter\"; }\n\n\t\t\treturn self::uniConvert ();\n\t\t}", "function getAllProducts(){\n try{\n $clientSOAP = new SoapClient(\"http://localhost:8090/servicesoap/services/Articles?wsdl\");\n //return $clientSOAP->getAllArticles();\n $r = $clientSOAP->getAllArticles();\n $element = \"\";\n foreach ($r as $re){\n $element = explode(\"},{\",str_replace(array(\"[\",\"]\"),\"\",$re));\n }\n $nb = sizeof($element);\n for($i = 0 ; $i < $nb; $i++) {\n $element[$i] = ($i!=0?\"{\":\"\").$element[$i].($i<($nb-1)?\"}\":\"\");\n $element[$i] = json_decode(convertJson($element[$i]));\n }\n return $element;\n }catch (Exception $e){\n die(\"Une erreur s'est produite durant la création de l'accès SOAP\");\n }\n }", "function main()\n{\n //getRequestidhl();\n\t //getRequestidlap();\n\t getRequestidpl();\n\n\t\n}", "public function getUrlWebService() {\r\n\r\n if(strstr($_SERVER['HTTP_HOST'], 'hom1')) {\r\n $valregoid = 6;\r\n $valtpvoid = 3;\r\n }\r\n elseif(strstr($_SERVER['HTTP_HOST'], 'intranet')) {\r\n $valregoid = 7;\r\n $valtpvoid = 3;\r\n }\r\n else {\r\n $valregoid = 6;\r\n $valtpvoid = 3;\r\n }\r\n\r\n $sql = \"\r\n SELECT \r\n valvalor\r\n FROM\r\n valor\r\n WHERE\r\n valregoid = $valregoid\r\n AND \r\n valtpvoid = $valtpvoid\";\r\n\r\n $result = $this->_fetchAssoc(pg_query($this->_adapter, $sql));\r\n\r\n return $result['valvalor']; \r\n }", "public function saveWebservice() {\n\n $registry = Zend_Registry::getInstance();\n $em = $registry->entitymanager;\n $data = $this->getRequest()->getParams();\n\n if(isset($data['webserviceId']) && $data['webserviceId'] > 0) {\n $serviceObj = $em->find('TWebservice',$data['webserviceId']);\n $serviceObj->setWebserviceId($data['webserviceId']);\n } else {\n $serviceObj = new TWebservice();\n }\n\n $serviceObj->setWebserviceName($data['WB_Name']);\n $serviceObj->setWebserviceUrl($data['WB_Url']);\n\n $Client = $em->find('TClient', $data['clientId']);\n\n $serviceObj->setClientId($Client);\n $em->persist($serviceObj);\n $em->flush();\n\n return true;\n }", "protected function callService ()\n\t{\n\t\t$this->protocol->callService( $this->data ) ;\n\t}", "private function getResponseXML()\n\t\t{\n\n\n\t\t\t\tif($this->action_code==\"RateShop\" || $this->action_code==\"SingleCarRateShop\"){ //rateshop\n\t\t\t\t\t$wsdl = ($this->car_company==\"dollar\")?DOLLAR_RATESHOP_WS_URL:THRIFTY_RATESHOP_WS_URL;\n\t\t\t\t\t$soapAction = \"http://www.opentravel.org/OTA/2003/05/OTA2010A.RateService/GetRates\";\n\t\t\t\t\t$methodname = \"GetRates\";\n\n\t\t\t\t}else{ //booking\n\t\t\t\t\t$wsdl = ($this->car_company==\"dollar\")?DOLLAR_BOOKING_WS_URL:THRIFTY_BOOKING_WS_URL;;\n\t\t\t\t\tif($this->action_code==\"Booking\"){\n\t\t\t\t\t\t$methodname = \"MakeReservation\";\n\t\t\t\t\t\t$soapAction = \"http://www.opentravel.org/OTA/2003/05/OTA2010A.ReservationService/MakeReservation\";\n\t\t\t\t\t}else if($this->action_code==\"RetrieveReservation\"){\n\t\t\t\t\t\t$soapAction =\"http://DTG.TourDirect/IReservationService/RetrieveReservation\";\n\t\t\t\t\t\t$methodname=\"RetrieveReservation\";\n\n\t\t\t\t\t}else if($this->action_code==\"ModifyReservation\"){\n\t\t\t\t\t\t$soapAction =\"http://www.opentravel.org/OTA/2003/05/OTA2010A.ReservationService/ModifyReservation\";\n\t\t\t\t\t\t$methodname=\"ModifyReservation\";\n\t\t\t\t\t}else if($this->action_code==\"CANCEL\"){\n\t\t\t\t\t\t$soapAction =\"http://www.opentravel.org/OTA/2003/05/OTA2010A.ReservationService/CancelReservation\";\n\t\t\t\t\t\t$methodname=\"CancelReservation\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfile_put_contents(dirname(__FILE__). DIRECTORY_SEPARATOR . 'LogTF'.date('Ymd').'.txt',$wsdl,FILE_APPEND);\n\t\t\t\t$client = new nusoap_client($wsdl,'wsdl');\n\t\t\t\t$client->soap_defencoding = 'utf-8';\n\t\t\t\t$client->operation = $methodname;\n\t\t\t\t$r=$client->send($this->xml, $soapAction, '');\n\t\t\t\t$response_xml = $client->responseData;\n\t\t\t\tfile_put_contents(dirname(__FILE__). DIRECTORY_SEPARATOR . 'LogTF'.date('Ymd').'.txt',$response_xml,FILE_APPEND);\n//\t\t\tprint_r($wsdl);\n\t\t\t//print_r($response_xml);\n\t\t\t//print_r($this->car_company);\n\t\t\t//print_r($this->xml);\n\t\t\t//exit;\n\n\t\t\t\tif($this->action_code==\"RateShop\" || $this->action_code==\"SingleCarRateShop\"){\n\t\t\t\t\t$xml = simplexml_load_string($response_xml);\n\t\t\t\t\t$name_spaces = $xml->getNamespaces(true);\n\t\t\t\t\t$result=$xml->children($name_spaces['s'])->Body->children()->GetRatesResponse->asXML();\n\t\t\t\t\t$result = $this->parseResponseXML($result);\n\t\t\t\t}else{\n\t\t\t\t\tif($this->action_code==\"Booking\"){\n\t\t\t\t\t\t$xml = simplexml_load_string($response_xml);\n\t\t\t\t\t\t$name_spaces = $xml->getNamespaces(true);\n\t\t\t\t\t\t$result=$xml->children($name_spaces['s'])->Body->children()->MakeReservationResponse->asXML();\n\t\t\t\t\t\t$result = $this->parseResponseXML($result);\n\t\t\t\t\t}else if($this->action_code==\"RetrieveReservation\"){\n\t\t\t\t\t\t$result = $this->parseResponseXML($r[\"RetrieveReservationResult\"]);\n\t\t\t\t\t}else if($this->action_code==\"ModifyReservation\"){\n\t\t\t\t\t\t$xml = simplexml_load_string($response_xml);\n\t\t\t\t\t\t$result =$xml->Body->ModifyReservationResponse->asXML();\n\t\t\t\t\t\t$result = $this->parseResponseXML($result);\n\t\t\t\t\t}else if($this->action_code==\"CANCEL\"){\n\t\t\t\t\t\t$xml = simplexml_load_string($response_xml);\n\t\t\t\t\t\t$name_spaces = $xml->getNamespaces(true);\n\t\t\t\t\t\t$result=$xml->children($name_spaces['s'])->Body->children()->CancelReservationResponse->asXML();\n\t\t\t\t\t\t$result = $this->parseResponseXML($result);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tunset($client);\n\t\t\t$this->response = $result;\n\t\t\treturn $result;\n\t\t}", "public function getUrlSOAP(){\r\n\t\treturn $this->soap;\r\n\t}", "static function generarServicioF(){\n\n\t\trequire_once('SERVIDOR/lib/nusoap.php');\n \n $host = 'http://maxineiner.tuars.com/webservice/ws_segundo_parcial.php?wsdl';\n\n $client = new nusoap_client($host);\n $err = $client->getError();\n if ($err) {\n die();\n return '<h2>ERROR EN LA CONSTRUCCION DEL WS:</h2><pre>' . $err . '</pre>';\n }\n return $client;\n\n\t}", "function im_user_getmms_result_callback() {\r\n $search_word = '';\r\n $search_word = $_SESSION['searched_keyword_mms'];\r\n $application_name = 'Portail_Market';\r\n $request = 'getFonctions';\r\n $response ='';\r\n $obj = new imldapSoapService();\r\n $response = $obj->soapRequest('getDynamics', array('id' => $_SESSION['ldap_login_key'], 'applicationName' => 'Portail_Market', 'request' => 'getFonctions', 'params' => $search_word));\r\n if ($response->status == 'success') {\r\n return $member_desc = _get_mms_member_description($response);\r\n }\r\n else {\r\n drupal_set_message('Unable to fetch the response.','warning');\r\n }\r\n}", "public function startReqSession(){\n\n\t\t\t$message = '\n\t\t\t<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"\n\t\t\txmlns:shar=\"http://www.travelport.com/schema/sharedBooking_v34_0\"\n\t\t\txmlns:com=\"http://www.travelport.com/schema/common_v34_0\">\n\t\t\t<soapenv:Header/>\n\t\t\t<soapenv:Body>\n\t\t\t\t<shar:BookingStartReq TraceId=\"c7e2d212-0e77-458e-87e9-e4b361ffdd8\"\n\t\t\t\t TargetBranch=\"'.$this->uApi->getApiDetails('TARGET_BRANCH').'\" ProviderCode=\"'.$this->uApi->getApiDetails('PROVIDER').'\">\n\t\t\t\t<com:BillingPointOfSaleInfo OriginApplication=\"UAPI\"/>\n\t\t\t\t</shar:BookingStartReq>\n\t\t\t</soapenv:Body>\n\t\t\t</soapenv:Envelope>\n\t\t\t';\n\n\n\t\t\t$auth = base64_encode($this->uApi->getApiDetails('CREDENTIALS'));\n\t\t\t$soap_do = curl_init(\t\t$this->uApi->getApiDetails('PRE_PROD_URL_SESSIONED'));\n\t\t\t$header = array(\n\t\t\t\"Content-Type: text/xml;charset=UTF-8\",\n\t\t\t\"Accept: gzip,deflate\",\n\t\t\t\"Cache-Control: no-cache\",\n\t\t\t\"Pragma: no-cache\",\n\t\t\t\"SOAPAction: \\\"\\\"\",\n\t\t\t\"Authorization: Basic $auth\",\n\t\t\t\"Content-length: \".strlen($message),\n\t\t\t);\n\n\n\t\t\t// Sending CURL Request To Fetch Data From API\n\t\t\tcurl_setopt($soap_do, CURLOPT_CONNECTTIMEOUT, 120);\n\t\t\tcurl_setopt($soap_do, CURLOPT_TIMEOUT, 120);\n\t\t\tcurl_setopt($soap_do, CURLOPT_SSL_VERIFYPEER, false);\n\t\t\tcurl_setopt($soap_do, CURLOPT_SSL_VERIFYHOST, false);\n\t\t\tcurl_setopt($soap_do, CURLOPT_POST, true );\n\t\t\tcurl_setopt($soap_do, CURLOPT_POSTFIELDS, $message);\n\t\t\tcurl_setopt($soap_do, CURLOPT_HTTPHEADER, $header);\n\t\t\tcurl_setopt($soap_do, CURLOPT_RETURNTRANSFER, true);\n\t\t\t$resp = curl_exec($soap_do);\n\t\t\tcurl_close($soap_do);\n\n\t\t\t//write to file\n\t\t\t\t\t$this->logger('Req:\\r\\n\\t'.$message.'\\r\\nResp:'.$resp , time());\n\t\t\t//Loads the XML\n\t\t\t$xml = simplexml_load_string($resp);\n\t\t\treturn $xml;\n\t}", "public function call(){\n \n $service = (string)$this->_service;\n \n if(!$this->_params){\n $this->setParams();\n }\n \n $response = $this->_soapClient->$service($this->_params); \n \n $serviceResult = $service.'Result';\n \n $xml = $response->$serviceResult; \n \n return $xml;\n\n }", "function mci_is_webservice_call( $p_service, $p_data )\n{\n\tglobal $QUERY_STRING;\n\tglobal $_SERVER;\n\n\tif ( isset( $_SERVER['QUERY_STRING'] ) ) {\n\t\t$t_qs = $_SERVER['QUERY_STRING'];\n\t} else if( isset( $GLOBALS['QUERY_STRING'] ) ) {\n\t\t$t_qs = $GLOBALS['QUERY_STRING'];\n\t} else if( isset( $QUERY_STRING ) && $QUERY_STRING != '' ) {\n\t\t$t_qs = $QUERY_STRING;\n\t}\n\n\tif ( isset( $t_qs ) && preg_match( '/wsdl/', $t_qs ) ){\n\t\treturn false;\n\t} else if ( $p_data == '' && $p_service->wsdl ) {\n\t\treturn false;\n\t} else {\n\t\treturn true;\n\t}\n}", "function fn_GetInsuranceCalculationCompanies(){\n\t\t\t$params = $this->params;\n\t\t\t$wsdl \t= $this->wsdl;\n\t\t\t$responce = \"\";\n\t\t\ttry{\n\t\t\t\t$soap = new SoapClient($wsdl, $params);\n\t\t\t\t$responce = $soap->GetInsuranceCalculationCompanies();\n\t\t\t} \n\t\t\tcatch (SoapFault $e) {\n\t\t\t\t//$responce = \"\";\n\t\t\t \t//$responce = 'Caught exception:'.$e->getMessage().\"\\n\";\n\t\t\t \t\n\t\t\t \t$responce['faultcode'] \t\t= $e->faultcode;\n\t\t\t $responce['faultstring'] \t= $e->faultstring;\n\t\t\t $responce['faultactor'] \t= $e->faultactor;\n\t\t\t $responce['faultname'] \t\t= $e->faultname;\n\t\t\t $responce['headerfault'] \t= $e->headerfault;\n\t\t\t}\n\t\t\treturn $responce;\n\t\t}", "function service_information() {\r\n\t\t$return_value = '<service name=\"' . $this->basename . '\">'\r\n\t\t. '<port name=\"' . $this->basename . 'Port\" binding=\"tns:' . $this->basename . 'Binding\">'\r\n\t\t. '<soap:address location=\"' . $this->api_url . '\"/>'\r\n\t\t. '</port>'\r\n\t\t. '</service>';\r\n\r\n\t\treturn $return_value;\r\n\t}", "public function serviceInfo(){\n\n\t\t\t$service_id = $this->input->get('service_id') ;\n\t\t\t$info = $this->mdl_services->get_info($service_id) ;\n\t\t\techo json_encode($info) ;\n\t\t}", "function startService()\n {\n\n $this->service_link = $this->_openService($this->url . '/' . $this->service_name . $this->wsdl);\n\n }", "function invokeGetOrder(MarketplaceWebServiceOrders_Interface $service, $request, $request_item)\n {\n try {\n $response = $service->getOrder($request);\n\n /*item*/\n\n \t$request_item->setAmazonOrderId(\"102-2843002-9986658\");\n\n\n//\t\t\t \t$response_item = $service->listOrderItems($request_item);\n// $listOrderItemsResult = $response_item->getListOrderItemsResult();\n// $orderItems = $listOrderItemsResult->getOrderItems();\n// $orderItemList = $orderItems->getOrderItem();\n//\n//\t\t\t\techo '<pre>'.print_r($orderItemList,1).'</pre>';\n//\n//\t\t\t\techo $orderItemList['0']->getSellerSKU();\n//\t\t\t\texit();\n\n\t\t\t\t//$request_item->setAmazonOrderId(\"002-6565335-7985002\");\n\t\t\t\t$orderItemList =$service->listOrderItems($request_item)->getListOrderItemsResult()->getOrderItems()->getOrderItem();\n\n\t\t\t\techo count($orderItemList).'<br>';\n\t\t\t\tforeach($orderItemList as $val){\n\n\t\t\t\t\techo 'sku:'.$val->getSellerSKU();\n\t\t\t\t\t $itemPrice = $val->getItemPrice();\n\t\t\t\t\techo 'price:'.$itemPrice->getAmount();\n\t\t\t\t}\n\t\t\t//\texit();\n\n\n// foreach ($orderItemList as $orderItem) {\n// \t if ($orderItem->isSetSellerSKU())\n// {\n// echo(\" SellerSKU��<br>\");\n// echo(\" \" . $orderItem->getSellerSKU() . \"��<br>\");\n// }\n// }\n /*item*/\n\n echo (\"Service Response��<br>\");\n echo (\"=============================================================================��<br>\");\n\n echo(\" GetOrderResponse��<br>\");\n if ($response->isSetGetOrderResult()) {\n echo(\" GetOrderResult��<br>\");\n $getOrderResult = $response->getGetOrderResult();\n if ($getOrderResult->isSetOrders()) {\n echo(\" Orders��<br>\");\n $orders = $getOrderResult->getOrders();\n $orderList = $orders->getOrder();\n foreach ($orderList as $order) {\n echo(\" Order��<br>\");\n if ($order->isSetAmazonOrderId())\n {\n echo(\" AmazonOrderId��<br>\");\n echo(\" \" . $order->getAmazonOrderId() . \"��<br>\");\n }\n if ($order->isSetSellerOrderId())\n {\n echo(\" SellerOrderId��<br>\");\n echo(\" \" . $order->getSellerOrderId() . \"��<br>\");\n }\n\n //echo \"SKU��<br>\";\n \t//echo $order->getSellerSKU().'��<br>';\n\n\n if ($order->isSetPurchaseDate())\n {\n echo(\" PurchaseDate��<br>\");\n echo(\" \" . $order->getPurchaseDate() . \"��<br>\");\n }\n if ($order->isSetLastUpdateDate())\n {\n echo(\" LastUpdateDate��<br>\");\n echo(\" \" . $order->getLastUpdateDate() . \"��<br>\");\n }\n if ($order->isSetOrderStatus())\n {\n echo(\" OrderStatus��<br>\");\n echo(\" \" . $order->getOrderStatus() . \"��<br>\");\n }\n if ($order->isSetFulfillmentChannel())\n {\n echo(\" FulfillmentChannel��<br>\");\n echo(\" \" . $order->getFulfillmentChannel() . \"��<br>\");\n }\n if ($order->isSetSalesChannel())\n {\n echo(\" SalesChannel��<br>\");\n echo(\" \" . $order->getSalesChannel() . \"��<br>\");\n }\n if ($order->isSetOrderChannel())\n {\n echo(\" OrderChannel��<br>\");\n echo(\" \" . $order->getOrderChannel() . \"��<br>\");\n }\n if ($order->isSetShipServiceLevel())\n {\n echo(\" ShipServiceLevel��<br>\");\n echo(\" \" . $order->getShipServiceLevel() . \"��<br>\");\n }\n if ($order->isSetShippingAddress()) {\n echo(\" ShippingAddress��<br>\");\n $shippingAddress = $order->getShippingAddress();\n if ($shippingAddress->isSetName())\n {\n echo(\" Name��<br>\");\n echo(\" \" . $shippingAddress->getName() . \"��<br>\");\n }\n if ($shippingAddress->isSetAddressLine1())\n {\n echo(\" AddressLine1��<br>\");\n echo(\" \" . $shippingAddress->getAddressLine1() . \"��<br>\");\n }\n if ($shippingAddress->isSetAddressLine2())\n {\n echo(\" AddressLine2��<br>\");\n echo(\" \" . $shippingAddress->getAddressLine2() . \"��<br>\");\n }\n if ($shippingAddress->isSetAddressLine3())\n {\n echo(\" AddressLine3��<br>\");\n echo(\" \" . $shippingAddress->getAddressLine3() . \"��<br>\");\n }\n if ($shippingAddress->isSetCity())\n {\n echo(\" City��<br>\");\n echo(\" \" . $shippingAddress->getCity() . \"��<br>\");\n }\n if ($shippingAddress->isSetCounty())\n {\n echo(\" County��<br>\");\n echo(\" \" . $shippingAddress->getCounty() . \"��<br>\");\n }\n if ($shippingAddress->isSetDistrict())\n {\n echo(\" District��<br>\");\n echo(\" \" . $shippingAddress->getDistrict() . \"��<br>\");\n }\n if ($shippingAddress->isSetStateOrRegion())\n {\n echo(\" StateOrRegion��<br>\");\n echo(\" \" . $shippingAddress->getStateOrRegion() . \"��<br>\");\n }\n if ($shippingAddress->isSetPostalCode())\n {\n echo(\" PostalCode��<br>\");\n echo(\" \" . $shippingAddress->getPostalCode() . \"��<br>\");\n }\n if ($shippingAddress->isSetCountryCode())\n {\n echo(\" CountryCode��<br>\");\n echo(\" \" . $shippingAddress->getCountryCode() . \"��<br>\");\n }\n if ($shippingAddress->isSetPhone())\n {\n echo(\" Phone��<br>\");\n echo(\" \" . $shippingAddress->getPhone() . \"��<br>\");\n }\n }\n if ($order->isSetOrderTotal()) {\n echo(\" OrderTotal��<br>\");\n $orderTotal = $order->getOrderTotal();\n if ($orderTotal->isSetCurrencyCode())\n {\n echo(\" CurrencyCode��<br>\");\n echo(\" \" . $orderTotal->getCurrencyCode() . \"��<br>\");\n }\n if ($orderTotal->isSetAmount())\n {\n echo(\" Amount��<br>\");\n echo(\" \" . $orderTotal->getAmount() . \"��<br>\");\n }\n }\n if ($order->isSetNumberOfItemsShipped())\n {\n echo(\" NumberOfItemsShipped��<br>\");\n echo(\" \" . $order->getNumberOfItemsShipped() . \"��<br>\");\n }\n if ($order->isSetNumberOfItemsUnshipped())\n {\n echo(\" NumberOfItemsUnshipped��<br>\");\n echo(\" \" . $order->getNumberOfItemsUnshipped() . \"��<br>\");\n }\n if ($order->isSetPaymentExecutionDetail()) {\n echo(\" PaymentExecutionDetail��<br>\");\n $paymentExecutionDetail = $order->getPaymentExecutionDetail();\n $paymentExecutionDetailItemList = $paymentExecutionDetail->getPaymentExecutionDetailItem();\n foreach ($paymentExecutionDetailItemList as $paymentExecutionDetailItem) {\n echo(\" PaymentExecutionDetailItem��<br>\");\n if ($paymentExecutionDetailItem->isSetPayment()) {\n echo(\" Payment��<br>\");\n $payment = $paymentExecutionDetailItem->getPayment();\n if ($payment->isSetCurrencyCode())\n {\n echo(\" CurrencyCode��<br>\");\n echo(\" \" . $payment->getCurrencyCode() . \"��<br>\");\n }\n if ($payment->isSetAmount())\n {\n echo(\" Amount��<br>\");\n echo(\" \" . $payment->getAmount() . \"��<br>\");\n }\n }\n if ($paymentExecutionDetailItem->isSetSubPaymentMethod())\n {\n echo(\" SubPaymentMethod��<br>\");\n echo(\" \" . $paymentExecutionDetailItem->getSubPaymentMethod() . \"��<br>\");\n }\n }\n }\n if ($order->isSetPaymentMethod())\n {\n echo(\" PaymentMethod��<br>\");\n echo(\" \" . $order->getPaymentMethod() . \"��<br>\");\n }\n if ($order->isSetMarketplaceId())\n {\n echo(\" MarketplaceId��<br>\");\n echo(\" \" . $order->getMarketplaceId() . \"��<br>\");\n }\n if ($order->isSetBuyerEmail())\n {\n echo(\" BuyerEmail��<br>\");\n echo(\" \" . $order->getBuyerEmail() . \"��<br>\");\n }\n if ($order->isSetBuyerName())\n {\n echo(\" BuyerName��<br>\");\n echo(\" \" . $order->getBuyerName() . \"��<br>\");\n }\n if ($order->isSetShipmentServiceLevelCategory())\n {\n echo(\" ShipmentServiceLevelCategory��<br>\");\n echo(\" \" . $order->getShipmentServiceLevelCategory() . \"��<br>\");\n }\n }\n }\n }\n if ($response->isSetResponseMetadata()) {\n echo(\" ResponseMetadata��<br>\");\n $responseMetadata = $response->getResponseMetadata();\n if ($responseMetadata->isSetRequestId())\n {\n echo(\" RequestId��<br>\");\n echo(\" \" . $responseMetadata->getRequestId() . \"��<br>\");\n }\n }\n\n } catch (MarketplaceWebServiceOrders_Exception $ex) {\n echo(\"Caught Exception: \" . $ex->getMessage() . \"��<br>\");\n echo(\"Response Status Code: \" . $ex->getStatusCode() . \"��<br>\");\n echo(\"Error Code: \" . $ex->getErrorCode() . \"��<br>\");\n echo(\"Error Type: \" . $ex->getErrorType() . \"��<br>\");\n echo(\"Request ID: \" . $ex->getRequestId() . \"��<br>\");\n echo(\"XML: \" . $ex->getXML() . \"��<br>\");\n }\n }", "public function paymentMtnIranAction(){\n \n $chapId = 23045;\n $buildId = 71259;\n $appId = 39528;\n $mobileNo = '989381994779'; \n $appName = 'Nexva Test App';\n $price = 0.01;\n \n //$client = new nusoap_client('http://92.42.55.91:8310/AmountChargingService/services/AmountCharging', false);\n $client = new nusoap_client('http://92.42.55.109:8310/AmountChargingService/services/AmountCharging', false);\n $client->soap_defencoding = 'UTF-8';\n $client->decode_utf8 = false;\n\n $timeStamp = date(\"Ymd\").date(\"His\");\n $spId = '001808';\n //$pass = 'e6434ef249df55c7a21a0b45758a39bb';\n //$spPass = md5($spId.$pass.$timeStamp);\n \n $currencyUserModel = new Api_Model_CurrencyUsers(); \n $currencyDetails = $currencyUserModel->getCurrencyDetailsByChap($chapId);\n $currencyRate = $currencyDetails['rate'];\n $currencyCode = $currencyDetails['code'];\n $amount = ceil($currencyRate * $price);\n\n $paymentTimeStamp = date('Y-m-d H:i:s');\n $paymentTransId = strtotime(\"now\");\n //$this->_paymentId\n \n $msg = '<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:v2=\"http://www.huawei.com.cn/schema/common/v2_1\" xmlns:loc=\"http://www.csapi.org/schema/parlayx/payment/amount_charging/v2_1/local\"> \n <soapenv:Header> \n <v2:RequestSOAPHeader> \n <v2:spId>'.$spId.'</v2:spId> \n <v2:spPassword></v2:spPassword> \n <v2:serviceId>0018082000002380</v2:serviceId> \n <v2:timeStamp></v2:timeStamp> \n <v2:OA>'.$mobileNo.'</v2:OA> \n <v2:FA>'.$mobileNo.'</v2:FA> \n <v2:token/> \n <v2:namedParameters>\n <v2:item>\n <v2:key>contentId</v2:key>\n <v2:value>'.$appId.'</v2:value>\n </v2:item>\n <v2:item>\n <v2:key>country</v2:key>\n <v2:value>'.$paymentTransId.'</v2:value>\n </v2:item>\n </v2:namedParameters>\n </v2:RequestSOAPHeader> \n </soapenv:Header> \n <soapenv:Body> \n <loc:chargeAmount> \n <loc:endUserIdentifier>tel:'.$mobileNo.'</loc:endUserIdentifier> \n <loc:charge> \n <description>charging information</description> \n <currency>IRR</currency> \n <amount>'.$amount.'</amount> \n <code>10080</code> \n </loc:charge> \n <loc:referenceCode>'.$timeStamp.'</loc:referenceCode> \n </loc:chargeAmount> \n </soapenv:Body> \n</soapenv:Envelope>\n';\n\n $result = $client->send($msg, '');\n\n Zend_Debug::dump($result); \n echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';\n echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';\n echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';\n \n die();\n \n }", "private function suivi_crm(){\t\n\t\t\t\n\t\t\tif($this->get_request_method() != \"GET\"){\n\t\t\t\t$this->response('',406);\n\t\t\t}\n\t\t\t\n\t\t\t$result=suivi_crm();\n\t\t\t$this->response($this->json($result), 200);\n\t\t\t$this->response('',204);\t\n\t\t}", "public function show_service()\n { \n $data['header_title'] = \"\";\n $this->load->model('swm/frontend/M_swm_attend','m_attend');\n $m_attend = $this->m_attend;\n $session_id = ($this->session->userdata('UsPsCode')) ? $this->session->userdata('UsPsCode') : 0;\n $rs_data_service = $m_attend->get_data_service($session_id);\n\t\t\n //pre($rs_data_service->result());\n $data['rs_data_service'] = $rs_data_service;\n\n $this->output_frontend(\"swm/frontend/history/v_show_service\",$data);\n }", "function searcharraySh($ponumber, $status, $paramSh, $shippingUrl, $querytype){\n\t\t$carrier =\"\";\n\t\t$clink=\"\";\n\t\t\t\t\n\t\t$resultshvalreturn = \"\";\n\t\t\n\t\t\n\tif($status==\"80\" || $status==\"75\"){\n\t\t\n\t\t\n\t\t$responseSh='';\n\t\t//if($querytype == '4' ){$responseSh='';}\n\t\tif($shippingUrl == \"\"){$responseSh='';}\n\t\telse{\n\t\t$wsdlSh = $shippingUrl;\n\t\t$paramSh['referenceNumber'] = $ponumber;\n\t\ttry {\n\t\t\t$clientSh = new SoapClient($wsdlSh);\n\t\t\t$responseSh = $clientSh->__soapCall(\"getOrderShipmentNotification\", array($paramSh));\n\t\t} catch (SoapFault $e) {\n\t\t // echo \"<pre>SoapFault: \".print_r($e, true).\"</pre>\\n\";\n\t\t\t//echo \"Failed to load\";\n\t\t\t\n\t\t // echo \"<pre>faultcode: '\".$e->faultcode.\"'</pre>\";\n\t\t // echo \"<pre>faultstring: '\".$e->getMessage().\"'</pre>\";\n\t\t\t$erromsgSh = \"Failed to load\";\n\t\t\t$responseSh=\"SoapFault\";\n\t\t}\n\t\t\n\t\t}\n\t\t$arraysh = json_decode(json_encode($responseSh), true);\n\t\t\n\t\t\n\t\tif($arraysh==\"SoapFault\"){\n\t\t\t\t$resultshvalreturn=\"Fail to load\";\n\t\t\t\treturn $resultshvalreturn;\n\t\t\t\tdie();\n\t\t\t}\t\n\t\t\t\n\t\t\t$narray=isset($arraysh['OrderShipmentNotificationArray']['OrderShipmentNotification']) ? $arraysh['OrderShipmentNotificationArray']['OrderShipmentNotification'] : \"\";\n\t\tif(isset($arraysh['OrderShipmentNotificationArray']['OrderShipmentNotification']['purchaseOrderNumber'])){\n\t\t\t$ponumsearcharray=array($narray);\n\t\t}\n\t\telse{\n\t\t\t$ponumsearcharray=$narray;\t\n\t\t\t}\n\t\t/*print \"<pre>\";\t\n\t\tprint_r($ponumsearcharray);\n\t\tprint \"</pre>\";*/\n\t\t\tif(is_array($ponumsearcharray)){\n\t\t\tforeach($ponumsearcharray as $ponumsearch){\n\t\t\t\tif($ponumber ==$ponumsearch['purchaseOrderNumber']){\n\t\t\t\t$parray = isset($ponumsearch['SalesOrderArray']['SalesOrder']) ? $ponumsearch['SalesOrderArray']['SalesOrder'] : \"\";\n\t\t\t\tif(isset($ponumsearch['SalesOrderArray']['SalesOrder']['ShipmentLocationArray'])){\n\t\t\t\t\t\t$salesorderarray=array($parray);\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\t$salesorderarray=$parray;\n\t\t\t\t}\n\t\t\t\t/*print \"<pre>\";\t\n\t\t\t\tprint_r($salesorderarray);\n\t\t\t\tprint \"</pre>\";*/\n\t\t\t\t\tif(is_array($salesorderarray)){\n\t\t\t\t\tforeach($salesorderarray as $salesorder){\n\t\t\t\t\t$sarray = isset($salesorder['ShipmentLocationArray']['ShipmentLocation']) ? $salesorder['ShipmentLocationArray']['ShipmentLocation'] : \"\";\n\t\t\t\t\tif(isset($salesorder['ShipmentLocationArray']['ShipmentLocation']['PackageArray'])){\n\t\t\t\t\t\t\t$ShipmentLocationarray=array($sarray);\n\t\t\t\t\t}\n\t\t\t\t\telse{\n\t\t\t\t\t\t$ShipmentLocationarray=$sarray;\n\t\t\t\t\t}\n\t\t\t\t\t/*print \"<pre>\";\t\n\t\t\t\t\tprint_r($ShipmentLocationarray);\n\t\t\t\t\tprint \"</pre>\";*/\n\t\t\t\t\tif(is_array($ShipmentLocationarray)){\n\t\t\t\t\t\tforeach($ShipmentLocationarray as $ShipmentLocation){\n\t\t\t\t\t\t$sharray = isset($ShipmentLocation['PackageArray']['Package']) ? $ShipmentLocation['PackageArray']['Package'] : \"\";\n\t\t\t\t\t\tif(isset($ShipmentLocation['PackageArray']['Package']['trackingNumber'])){\n\t\t\t\t\t\t\t\t$PackageArrayarray=array($sharray);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse{\n\t\t\t\t\t\t\t$PackageArrayarray=$sharray;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t/*print \"<pre>\";\t\n\t\t\t\t\t\tprint_r($PackageArrayarray);\n\t\t\t\t\t\tprint \"</pre>\";*/\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif(is_array($PackageArrayarray)){\n\t\t\t\t\t\t\t$i=0;\n\t\t\t\t\t\t\t\t\t\t\tforeach($PackageArrayarray as $Package){\n\t\t\t\t\t\t\t\t\t\t\t\t//if($i!=0){$resultshvalreturn.= \", \";}\n\t\t\t\t\t\t\t\t\t\t\t\t\t//if(isset($Package['trackingNumber'])){\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$ptrackingNumber = isset($Package['trackingNumber']) ? $Package['trackingNumber'] : '';\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$pcarrier = isset($Package['carrier']) ? $Package['carrier'] : '';\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$pshipmentMethod = isset($Package['shipmentMethod']) ? $Package['shipmentMethod'] : '';\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$trakingno = trackingno($pcarrier, $ptrackingNumber, $pshipmentMethod);\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$resultshvalreturn.= $trakingno;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t$i++;\n\t\t\t\t\t\t\t\t\t\t\t\t\t//}\n\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\n\t\t\t\t\t}\n\t\t}\n\t\t\n\t\t\t\t\t}//die();\n\t\t//$resultshvalreturn.= \"<br / >/*********Po Array loop*********/<br / ><br / >\";\n\t\t\t}\n\t\t\t}\n\t\t\t}\n}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\n\t\t\t\n\t\t\tif($resultshvalreturn==\"\" && ($status == \"80\" || $status == \"75\")){ $resultshvalreturn=\"Shipped\"; }\n\t\t\telseif($status == \"99\"){ $resultshvalreturn=\"Canceled\"; }\n\t\t\telseif($resultshvalreturn==\"\" && ($status == \"10\" || $status == \"11\" || $status == \"20\" || $status == \"30\" || $status == \"40\" || $status == \"41\" || $status == \"42\" || $status == \"43\" || $status == \"44\" || $status == \"60\" || $status == \"70\")){$resultshvalreturn=\"In Process\";}\n\t\t\treturn $resultshvalreturn;\n\t\t\tset_time_limit(0);\n\t}", "function fn_QuoteGet($args){\n\t\t\t$params = $this->params;\n\t\t\t$wsdl \t= $this->wsdl;\n\t\t\t$responce = \"\";\n\t\t\ttry{\n\t\t\t\t$soap = new SoapClient($wsdl, $params);\n $args['token'] = $this->token;\n\t\t\t\t$responce = $soap->QuoteGet($args);\n\t\t\t} \n\t\t\tcatch (SoapFault $e){\n\t\t\t\t//$responce = \"\";\n\t\t\t \t//$responce = 'Caught exception:'.$e->getMessage().\"\\n\";\n\t\t\t \t\n\t\t\t \t$responce['faultcode'] \t\t= $e->faultcode;\n\t\t\t $responce['faultstring'] \t= $e->faultstring;\n\t\t\t $responce['faultactor'] \t= $e->faultactor;\n\t\t\t $responce['faultname'] \t\t= $e->faultname;\n\t\t\t $responce['headerfault'] \t= $e->headerfault;\n\t\t\t}\n\t\t\treturn $responce;\n\t\t}", "public function getFunctions(){\n // SET SOAPOPTIONS\n $this->setSoapOptions();\n \n //SET WSDLPATH\n $wsdlPath = $this->soapWebServiceWSDLPath;//'wsdl'.DIRECTORY_SEPARATOR.'WebServService.wsdl';\n \n //CREATE A NEW CLIENT\n $sClient = new SoapClient($wsdlPath,$this->soapOptions);\n \n //SET A NEW SOAP HEADER FOR INDICATING SOAP LOGIN ID\n $this->setSoapHeader();\n $sClient->__setSoapHeaders($this->soapHeader);\n \n //SOAP FUNCTION CALL\n return $sClient->__getFunctions();\n }", "public function __construct()\n {\n $this->Sendws = 'http://celmediainfo.cl/celmedia_chile/2138_WSDLCLOPCorpbanca/WS_MensajeriaCLOPCorpbanca.php?wsdl';\n $this->CanjeWs = 'http://190.196.23.186/clop/ws/server.php?wsdl';\n $this->OpUrlWs = 'http://200.68.3.74/toolsbkp/WSDLGetOper/wsdl.php?wsdl';\n\n /* WebService Server Route For Prestashop */\n $this->WebServiceServer = 'http://190.196.23.184/clop_otpc_web_prestashop_desa/wscl/wsclotpc_server_ps.php?wsdl';\n\n /* Promo Service */\n $this->WebServiceUser = 'tienda_ps';\n $this->WebServicePassword = '0x552A6798E1F1BCF715EFDB1E1DDC0874';\n $this->WebServiceOrigen = 'Login WEB OTPC';\n $this->WebServiceIdProveedor = '8';\n\n /* Ecommerce Home Url for Redirects */\n $this->ecommerceHomeUrl = 'http://ecorpbancadesa.celmedia.cl/';\n\n /* Urls consumibles for Transbank */\n $this->urlReturn = \"http://192.168.1.192/getResult\";\n $this->urlFinal = \"http://192.168.1.192/end\";\n $this->urlFracaso = \"http://ecorpbancadesa.celmedia.cl/fracaso\";\n $this->urlExito = \"http://ecorpbancadesa.celmedia.cl/module/celmediapago/validation\";\n $this->urlApi = \"http://192.168.1.192\";\n\n /* Celmedia Pago */\n $this->WebServiceUserCelPago = 'celmediapago';\n $this->WebServicePasswordCelPago = '0x552A6798E1F1BCF715EFDB1E1DDC0874';\n $this->WebServiceOrigenCelPago = 'ECOMMERCE_CELMEDIAPAGO';\n $this->WebServiceIdProveedorCelPago = '9';\n $this->WebServiceUniCanjeCelPago = '0';\n $this->WebServiceIdGrupoCelPago = '10';\n $this->WebServiceIdCategoriaCelPago = '36';\n $this->WebServiceIdSubCategoriaCelPago = '187';\n $this->WebServiceTdvOtpcCelPago = '31';\n $this->WebServiceTpTransactionCelPago = 'TR_NORMAL_WS';\n\n /* Other WebServices Credentials */\n $this->WSCLOTPC_Tiempo_OTPC = 30;\n\n $this->WSDL_SEND_ABOUT = 'Clave acceso canje on-line CORPUNTOS.';\n $this->WSDL_SEND_FROM = 'Canje on-line CORPUNTOS';\n $this->WSDL_SEND_HOST = 'mail.misp.cl';\n\n $this->WSDL_SEND_USER = '[email protected]';\n $this->WSDL_SEND_PASS = 'p$qg5*/';\n $this->WSDL_SEND_MAIL = '[email protected]';\n\n $this->WSDL_SEND_USER_PS = '[email protected]';\n $this->WSDL_SEND_PASS_PS = '8a4_27j';\n $this->WSDL_SEND_MAIL_PS = '[email protected]';\n\n /* Points by pesos */\n $this->tasa_conv_CI = '3';\n\n /* Keys And Variables for Transbank */\n $this->TransbankEnvironment = \"INTEGRACION\";\n $this->TransbankCommerceCode = \"597020000541\";\n\n $this->TransbankPrivateKey =\n \"-----BEGIN RSA PRIVATE KEY-----\nMIIEpQIBAAKCAQEA0ClVcH8RC1u+KpCPUnzYSIcmyXI87REsBkQzaA1QJe4w/B7g\n6KvKV9DaqfnNhMvd9/ypmGf0RDQPhlBbGlzymKz1xh0lQBD+9MZrg8Ju8/d1k0pI\nb1QLQDnhRgR2T14ngXpP4PIQKtq7DsdHBybFU5vvAKVqdHvImZFzqexbZjXWxxhT\n+/sGcD4Vs673fc6B+Xj2UrKF7QyV5pMDq0HCCLTMmafWAmNrHyl6imQM+bqC12gn\nEEAEkrJiSO6P/21m9iDJs5KQanpJby0aGW8mocYRHDMHZjtTiIP0+JAJgL9KsH+r\nXdk2bT7aere7TzOK/bEwhkYEXnMMt/65vV6AfwIDAQABAoIBAHnIlOn6DTi99eXl\nKVSzIb5dA747jZWMxFruL70ifM+UKSh30FGPoBP8ZtGnCiw1ManSMk6uEuSMKMEF\n5iboVi4okqnTh2WSC/ec1m4BpPQqxKjlfrdTTjnHIxrZpXYNucMwkeci93569ZFR\n2SY/8pZV1mBkZoG7ocLmq+qwE1EaBEL/sXMvuF/h08nJ71I4zcclpB8kN0yFrBCW\n7scqOwTLiob2mmU2bFHOyyjTkGOlEsBQxhtVwVEt/0AFH/ucmMTP0vrKOA0HkhxM\noeR4k2z0qwTzZKXuEZtsau8a/9B3S3YcgoSOhRP/VdY1WL5hWDHeK8q1Nfq2eETX\njnQ4zjECgYEA7z2/biWe9nDyYDZM7SfHy1xF5Q3ocmv14NhTbt8iDlz2LsZ2JcPn\nEMV++m88F3PYdFUOp4Zuw+eLJSrBqfuPYrTVNH0v/HdTqTS70R2YZCFb9g0ryaHV\nTRwYovu/oQMV4LBSzrwdtCrcfUZDtqMYmmZfEkdjCWCEpEi36nlG0JMCgYEA3r49\no+soFIpDqLMei1tF+Ah/rm8oY5f4Wc82kmSgoPFCWnQEIW36i/GRaoQYsBp4loue\nvyPuW+BzoZpVcJDuBmHY3UOLKr4ZldOn2KIj6sCQZ1mNKo5WuZ4YFeL5uyp9Hvio\nTCPGeXghG0uIk4emSwolJVSbKSRi6SPsiANff+UCgYEAvNMRmlAbLQtsYb+565xw\nNvO3PthBVL4dLL/Q6js21/tLWxPNAHWklDosxGCzHxeSCg9wJ40VM4425rjebdld\nDF0Jwgnkq/FKmMxESQKA2tbxjDxNCTGv9tJsJ4dnch/LTrIcSYt0LlV9/WpN24LS\n0lpmQzkQ07/YMQosDuZ1m/0CgYEAu9oHlEHTmJcO/qypmu/ML6XDQPKARpY5Hkzy\ngj4ZdgJianSjsynUfsepUwK663I3twdjR2JfON8vxd+qJPgltf45bknziYWvgDtz\nt/Duh6IFZxQQSQ6oN30MZRD6eo4X3dHp5eTaE0Fr8mAefAWQCoMw1q3m+ai1PlhM\nuFzX4r0CgYEArx4TAq+Z4crVCdABBzAZ7GvvAXdxvBo0AhD9IddSWVTCza972wta\n5J2rrS/ye9Tfu5j2IbTHaLDz14mwMXr1S4L39UX/NifLc93KHie/yjycCuu4uqNo\nMtdweTnQt73lN2cnYedRUhw9UTfPzYu7jdXCUAyAD4IEjFQrswk2x04=\n-----END RSA PRIVATE KEY-----\";\n $this->TransbankPublicCert=\"-----BEGIN CERTIFICATE-----\nMIIDujCCAqICCQCZ42cY33KRTzANBgkqhkiG9w0BAQsFADCBnjELMAkGA1UEBhMC\nQ0wxETAPBgNVBAgMCFNhbnRpYWdvMRIwEAYDVQQKDAlUcmFuc2JhbmsxETAPBgNV\nBAcMCFNhbnRpYWdvMRUwEwYDVQQDDAw1OTcwMjAwMDA1NDExFzAVBgNVBAsMDkNh\nbmFsZXNSZW1vdG9zMSUwIwYJKoZIhvcNAQkBFhZpbnRlZ3JhZG9yZXNAdmFyaW9z\nLmNsMB4XDTE2MDYyMjIxMDkyN1oXDTI0MDYyMDIxMDkyN1owgZ4xCzAJBgNVBAYT\nAkNMMREwDwYDVQQIDAhTYW50aWFnbzESMBAGA1UECgwJVHJhbnNiYW5rMREwDwYD\nVQQHDAhTYW50aWFnbzEVMBMGA1UEAwwMNTk3MDIwMDAwNTQxMRcwFQYDVQQLDA5D\nYW5hbGVzUmVtb3RvczElMCMGCSqGSIb3DQEJARYWaW50ZWdyYWRvcmVzQHZhcmlv\ncy5jbDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANApVXB/EQtbviqQ\nj1J82EiHJslyPO0RLAZEM2gNUCXuMPwe4OirylfQ2qn5zYTL3ff8qZhn9EQ0D4ZQ\nWxpc8pis9cYdJUAQ/vTGa4PCbvP3dZNKSG9UC0A54UYEdk9eJ4F6T+DyECrauw7H\nRwcmxVOb7wClanR7yJmRc6nsW2Y11scYU/v7BnA+FbOu933Ogfl49lKyhe0MleaT\nA6tBwgi0zJmn1gJjax8peopkDPm6gtdoJxBABJKyYkjuj/9tZvYgybOSkGp6SW8t\nGhlvJqHGERwzB2Y7U4iD9PiQCYC/SrB/q13ZNm0+2nq3u08ziv2xMIZGBF5zDLf+\nub1egH8CAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAdgNpIS2NZFx5PoYwJZf8faze\nNmKQg73seDGuP8d8w/CZf1Py/gsJFNbh4CEySWZRCzlOKxzmtPTmyPdyhObjMA8E\nAdps9DtgiN2ITSF1HUFmhMjI5V7U2L9LyEdpUaieYyPBfxiicdWz2YULVuOYDJHR\nn05jlj/EjYa5bLKs/yggYiqMkZdIX8NiLL6ZTERIvBa6azDKs6yDsCsnE1M5tzQI\nVVEkZtEfil6E1tz8v3yLZapLt+8jmPq1RCSx3Zh4fUkxBTpUW/9SWUNEXbKK7bB3\nzfB3kGE55K5nxHKfQlrqdHLcIo+vdShATwYnmhUkGxUnM9qoCDlB8lYu3rFi9w==\n-----END CERTIFICATE-----\";\n $this->TransbankWebpayCert=\"-----BEGIN CERTIFICATE-----\nMIIDKTCCAhECBFZl7uIwDQYJKoZIhvcNAQEFBQAwWTELMAkGA1UEBhMCQ0wxDjAMBgNVBAgMBUNo\naWxlMREwDwYDVQQHDAhTYW50aWFnbzEMMAoGA1UECgwDa2R1MQwwCgYDVQQLDANrZHUxCzAJBgNV\nBAMMAjEwMB4XDTE1MTIwNzIwNDEwNloXDTE4MDkwMjIwNDEwNlowWTELMAkGA1UEBhMCQ0wxDjAM\nBgNVBAgMBUNoaWxlMREwDwYDVQQHDAhTYW50aWFnbzEMMAoGA1UECgwDa2R1MQwwCgYDVQQLDANr\nZHUxCzAJBgNVBAMMAjEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAizJUWTDC7nfP\n3jmZpWXFdG9oKyBrU0Bdl6fKif9a1GrwevThsU5Dq3wiRfYvomStNjFDYFXOs9pRIxqX2AWDybjA\nX/+bdDTVbM+xXllA9stJY8s7hxAvwwO7IEuOmYDpmLKP7J+4KkNH7yxsKZyLL9trG3iSjV6Y6SO5\nEEhUsdxoJFAow/h7qizJW0kOaWRcljf7kpqJAL3AadIuqV+hlf+Ts/64aMsfSJJA6xdbdp9ddgVF\noqUl1M8vpmd4glxlSrYmEkbYwdI9uF2d6bAeaneBPJFZr6KQqlbbrVyeJZqmMlEPy0qPco1TIxrd\nEHlXgIFJLyyMRAyjX9i4l70xjwIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQBn3tUPS6e2USgMrPKp\nsxU4OTfW64+mfD6QrVeBOh81f6aGHa67sMJn8FE/cG6jrUmX/FP1/Cpbpvkm5UUlFKpgaFfHv+Kg\nCpEvgcRIv/OeIi6Jbuu3NrPdGPwzYkzlOQnmgio5RGb6GSs+OQ0mUWZ9J1+YtdZc+xTga0x7nsCT\n5xNcUXsZKhyjoKhXtxJm3eyB3ysLNyuL/RHy/EyNEWiUhvt1SIePnW+Y4/cjQWYwNqSqMzTSW9TP\n2QR2bX/W2H6ktRcLsgBK9mq7lE36p3q6c9DtZJE+xfA4NGCYWM9hd8pbusnoNO7AFxJZOuuvLZI7\nJvD7YLhPvCYKry7N6x3l\n-----END CERTIFICATE-----\";\n\n }", "public function service($request,$response,$utilities);", "static function generarServicioL($par){\n\n\t\tif($par==\"T\"){\n\t\trequire_once('../SERVIDOR/lib/nusoap.php');\n\t\t}else{\n\t\trequire_once('SERVIDOR/lib/nusoap.php');\n\t\t}\n\n\t\t$host = 'http://localhost/Final2k16/SERVIDOR/ws.php?wsdl';\t\n \n $client = new nusoap_client($host);\n $err = $client->getError();\n if ($err) {\n die();\n return '<h2>ERROR EN LA CONSTRUCCION DEL WS:</h2><pre>' . $err . '</pre>';\n }\n return $client;\n\n\t}", "public function get_service_head(){\r\n\t\t\r\n\t\t$data['results']=$this->Common_model->get_service_head();\r\n\t\techo json_encode($data);\r\n\t}", "function _openService($url)\n {\n $obj = new SOAP_Client($url, TRUE);\n return $obj;\n }", "public function getServiceCode();", "function service_list_json(){\r\n\t\t\t$aColumns = array( 'sl','branch','invoice','date','type','customer','net_amount','action' );\r\n\t\t\t\r\n\t\t\t//Array of database search columns//\r\n\t\t\t$sColumns = array('customer','invoice','net_amount');\r\n\t\t\t\r\n\t\t\t//Indexed column (used for fast and accurate table attributes) //\r\n\t\t\t$sIndexColumn = \"service_id\";\r\n\t\t\t\r\n\t\t\t//DB tables to use//\r\n\t\t\t$sTable = \"tbl_service \r\n\t\t\t\t\t INNER JOIN tbl_branch ON service_branch=branch_id\r\n\t\t\t\t\t INNER JOIN tbl_payment_method ON service_type=payment_method_id\r\n\t\t\t\t\t INNER JOIN tbl_customer ON service_customer=customer_id\";\r\n\t\t\t\r\n\t\t\t//Paging//\r\n\t\t\t$sLimit = \"\";\r\n\t\t\tif ( isset( $_GET['iDisplayStart'] ) && $_GET['iDisplayLength'] != '-1' )\r\n\t\t\t{\r\n\t\t\t\t$sLimit = \"LIMIT \".( $_GET['iDisplayStart'] ).\", \".\r\n\t\t\t\t\t( $_GET['iDisplayLength'] );\r\n\t\t\t}\r\n\t\r\n\t\t\t//Ordering//\r\n\t\t\tif ( isset( $_GET['iSortCol_0'] ) )\r\n\t\t\t{\r\n\t\t\t\t$sOrder = \"ORDER BY \";\r\n\t\t\t\tfor ( $i=0 ; $i<intval( $_GET['iSortingCols'] ) ; $i++ )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( $_GET[ 'bSortable_'.intval($_GET['iSortCol_'.$i]) ] == \"true\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$sOrder .= $aColumns[ intval( $_GET['iSortCol_'.$i] ) ].\"\r\n\t\t\t\t\t\t\t\".( $_GET['sSortDir_'.$i] ) .\", \";\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t$sOrder = substr_replace( $sOrder, \"\", -2 );\r\n\t\t\t\tif ( $sOrder == \"ORDER BY\" )\r\n\t\t\t\t{\r\n\t\t\t\t\t$sOrder = \"\";\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\r\n\t\t\t//Filtering//\r\n\t\t\t$sWhere = \"\";\r\n\t\t\tif ( $_GET['sSearch'] != \"\" )\r\n\t\t\t{\r\n\t\t\t\t$sWhere = \"WHERE (\";\r\n\t\t\t\tfor ( $i=0 ; $i<count($sColumns) ; $i++ )\r\n\t\t\t\t{\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t$sWhere .= $sColumns[$i].\" LIKE '%\".( $_GET['sSearch'] ).\"%' OR \";\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t\t$sWhere = substr_replace( $sWhere, \"\", -3 );\r\n\t\t\t\t$sWhere .= ')';\r\n\t\t\t}\r\n\t\r\n\t\t\t//Individual column filtering//\r\n\t\t\tfor ( $i=0 ; $i<count($sColumns) ; $i++ )\r\n\t\t\t{\r\n\t\t\t\tif ( $_GET['bSearchable_'.$i] == \"true\" && $_GET['sSearch_'.$i] != '' )\r\n\t\t\t\t{\r\n\t\t\t\t\tif ( $sWhere == \"\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$sWhere = \"WHERE \";\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$sWhere .= \" AND \";\r\n\t\t\t\t\t}\r\n\t\t\t\t\t$sWhere .= $sColumns[$i].\" LIKE '%\".($_GET['sSearch_'.$i]).\"%' \";\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\r\n\t\t\t//SQL queries//\r\n\t\t\t$sQuery\t\t\t= \"SELECT SQL_CALC_FOUND_ROWS service_id as sl,branch_name as branch,service_invoice as invoice,\r\n\t\t\t\t\t\t\tDATE_FORMAT(service_date,'%d/%m/%Y') as date,payment_method_title as type,\r\n\t\t\t\t\t\t\tcustomer_name as customer,service_amount as amount,service_tax as tax,service_discount as discount,\r\n\t\t\t\t\t\t\tservice_total as total,service_net_amount as net_amount,service_id as id,\r\n\t\t\t\t\t\t\tservice_status as status\r\n\t\t\t\t\t\t\tFROM $sTable\r\n\t\t\t\t\t\t\t$sWhere\r\n\t\t\t\t\t\t\t$sOrder\r\n\t\t\t\t\t\t\t$sLimit\";\r\n\t\t\t$rResult \t\t= $this->db->query($sQuery);\r\n\t\r\n\t\t\t//Data set length after filtering//\r\n\t\t\t$fQuery\t\t\t= \"SELECT $sIndexColumn FROM $sTable $sWhere\";\r\n\t\t\t$fResult\t\t= $this->db->query($fQuery);\r\n\t\t\t$FilteredTotal\t= $fResult->num_rows();\r\n\t\r\n\t\t\t//Total data set length //\r\n\t\t\t$tQuery\t\t\t= \"SELECT $sIndexColumn FROM $sTable\";\r\n\t\t\t$tResult\t\t= $this->db->query($tQuery);\r\n\t\t\t$Total\t\t\t= $tResult->num_rows();\r\n\t\r\n\t\t\t//Output\r\n\t\t\t\r\n\t\t\tif($_GET['sEcho']==1){\r\n\t\t\t\t\r\n\t\t\t\t$cStart=0;\r\n\t\t\t\t$cEnd=$_GET['iDisplayLength'];\r\n\t\t\t\t$cLength=$_GET['iDisplayLength'];\r\n\t\t\t\t$cPage=0;\r\n\t\t\t\t$cTotalPage=ceil($FilteredTotal/$_GET['iDisplayLength']);\r\n\t\t\t}\r\n\t\t\telse{\r\n\t\t\t\t$cStart=$_GET['iDisplayStart'];\r\n\t\t\t\t$cEnd=$_GET['iDisplayStart']=$_GET['iDisplayLength'];\r\n\t\t\t\t$cLength=$_GET['iDisplayLength'];\r\n\t\t\t\t$cPage=intval($cStart/$cLength);\r\n\t\t\t\t$cTotalPage=ceil($FilteredTotal/$_GET['iDisplayLength']);\r\n\t\t\t}\r\n\t\t\t$output = array(\r\n\t\t\t\t\"cStart\"\t\t\t\t=> $cStart,\r\n\t\t\t\t\"cEnd\"\t\t\t\t\t=> $cEnd,\r\n\t\t\t\t\"cLength\"\t\t\t\t=> $cLength,\r\n\t\t\t\t\"cPage\"\t\t\t\t\t=> $cPage,\r\n\t\t\t\t\"cTotalPage\"\t\t\t=> $cTotalPage,\r\n\t\t\t\t\"sEcho\" \t\t\t\t=> intval($_GET['sEcho']),\r\n\t\t\t\t\"iTotalRecords\" \t\t=> $Total,\r\n\t\t\t\t\"iTotalDisplayRecords\" \t=> $FilteredTotal,\r\n\t\t\t\t\"aaData\" \t\t\t\t=> array()\r\n\t\t\t);\r\n\t\t\t$result\t= $rResult->result_array();\r\n\t\t\t$j=$cStart+1;\r\n\t\t\tforeach($result as $aRow){\r\n\t\t\t\t\r\n\t\t\t\t$row = array();\r\n\t\t\t\tfor ( $i=0 ; $i<count($aColumns) ; $i++ )\r\n\t\t\t\t{\r\n\t\t\t\t\t\r\n\t\t\t\t\tif ( $aColumns[$i] == \"sl\" )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$row[] = $j;\r\n\t\t\t\t\t}\r\n\t\t\t\t\t//else if($aColumns[$i] == \"amount\"){\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t//if(PR_TAX_INCLUDE){\r\n\t\t\t\t\t\t\t//$row[]=$aRow[ $aColumns[$i] ];\r\n\t\t\t\t\t\t//}\r\n\t\t\t\t\t\t//else{\r\n\t\t\t\t\t\t\t//$row[]=number_format($aRow[ $aColumns[$i] ]+ $aRow['pr_tax_amount'],DECIMAL_DIGITS);\r\n\t\t\t\t\t\t//}\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t//}\r\n\t\t\t\t\telse if( $aColumns[$i] == \"status\" ){\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t//$row[] = \"<button type='button' style='margin-top:-5px; margin-bottom:-5px;' class='btn btn-xs btn-primary'>Extra Small Button</button>\";\r\n\t\t\t\t\t\t$row[] = $this->Common_model->status_template($aRow['status']);\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if( $aColumns[$i] == \"action\" ){\r\n\t\t\t\t\t\t$id\t\t=$aRow['id'];\r\n\t\t\t\t\t\t//if($aRow['status']==2){\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t//$row[]\t= \"<a href='Purchase/purchase_confirm/$id/' class='on-default edit-row edit-icon'><button type='button' style='margin-top:-5px; margin-bottom:-5px;' class='btn btn-xs btn-primary'>Confirm</button></a>\";\r\n\t\t\t\t\t\t//}\r\n\t\t\t\t\t\t//if($aRow['status']==5){\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t$row[]\t= \"<a href='Service/service_details/$id/' class='on-default edit-row edit-icon'><button type='button' style='margin-top:-5px; margin-bottom:-5px;' class='btn btn-xs btn-primary'>Details</button></a>\";\r\n\r\n\t\t\t\t\t\t//}\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t\telse if ( $aColumns[$i] != ' ' )\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t// General output \r\n\t\t\t\t\t\t$row[] = $aRow[ $aColumns[$i] ];\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t\t$output['aaData'][] = $row;\r\n\t\t\t\t$j++;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\techo json_encode( $output );\r\n\t\t}", "public function viewProductServiceAction() {\n\n try {\n\n $pageHeading = \"View-Order-Product-Service\";\n $this->view->page_heading = $pageHeading;\n $this->view->data_page = \"tables\";\n \n $clientId = $this->_request->getParam('client');\n $orderProductId = $this->_request->getParam('id');\n\n $objOrderProductService = new Base_Model_Lib_Order_Service_Product();\n $orderProductInformation = $objOrderProductService->getItem($orderProductId);\n $this->view->orderProductInformation = $orderProductInformation;\n\n // get all order products by client id....\n $objOrderProductEntity = new Base_Model_Lib_Order_Entity_Product();\n $objOrderProductEntity->setClient($clientId);\n $objOrderProductService->product = $objOrderProductEntity;\n $this->view->orderProducts = $objOrderProductService->search(\"\");\n\n $objProductAndServices = new Base_Model_Lib_Product_Service_Group();\n $productAndServices = $objProductAndServices->getAllWithProducts();\n $this->view->productAndServices = $productAndServices;\n\n $objPaymentMethodService = new Base_Model_Lib_Catelog_Service_PaymentMethod();\n $paymentMethods = $objPaymentMethodService->getAll();\n $this->view->paymentMethods = $paymentMethods;\n\n // get all active promotion codes...\n $objPromotionCodeService = new Base_Model_Lib_Catelog_Service_PromotionCode();\n $promotionCodes = $objPromotionCodeService->getAll();\n $this->view->promotionCodes = $promotionCodes;\n \n $objCpanelPackages = new Base_Model_Lib_Catelog_Service_CpanelPackage();\n $cpanelPackages = $objCpanelPackages->getAll();\n $this->view->cpanelPackages = $cpanelPackages;\n \n if ($this->_request->isPost()) {\n \n $userName = $this->getRequest()->getPost('txtUsername');\n $domainName = $this->getRequest()->getPost('txtDomain');\n $password = $this->getRequest()->getPost('txtPassword');\n $package = $this->getRequest()->getPost('cmbcPanelPackage');\n $orderId = $orderProductInformation->getOrder();\n \n $runCommand = $this->getRequest()->getPost('bthRunCommand');\n $objCpanellService = new Base_Model_Lib_Api_Service_Cpanel();\n if($runCommand == 'Create'){\n $objCpanellService->createAccount($domainName, $userName, $password, $package);\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account created for the domain name $domainName and order id #$orderId by $currentUserName. The account username : $userName,password : $password,Package : $package\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=created');\n } elseif($runCommand == 'Suspend'){\n $objCpanellService->suspendAccount($userName,'Payment not done');\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account suspended for the domain name $domainName and order id #$orderId by $currentUserName\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=suspended');\n } elseif($runCommand == 'Unsuspend'){\n $objCpanellService->unSuspendAccount($userName);\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account unsuspended for the domain name $domainName and order id #$orderId by $currentUserName\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=unsuspended');\n } elseif($runCommand == 'Terminate'){\n $objCpanellService->terminateAccount($userName);\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account terminated for the domain name $domainName and order id #$orderId by $currentUserName\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=terminated');\n } elseif($runCommand == 'ChangePackage'){\n \n $res = $objCpanellService->changePackage($userName,$package);\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account changed to $package for the domain name $domainName and order id #$orderId by $currentUserName\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=Change Package');\n } elseif($runCommand == 'ChangePassword'){\n $objCpanellService->updateAccountPassword($userName,$password);\n \n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n $currentUserName = $this->getCurrentUserInfo()->getFirstName();\n $objUserOperationService = new Base_Model_Lib_User_Service_UserOperation();\n $objUserOperationEntity = new Base_Model_Lib_User_Entity_UserOperation();\n $objUserOperationEntity->setUserId($this->getCurrentUserId());\n $objUserOperationEntity->setTableName(\"tbl_orders\");\n $objUserOperationEntity->setKeyId($orderId);\n $objUserOperationEntity->setOperationType(\"EDIT_RECORD\");\n $objUserOperationEntity->setOperationDate($this->getSystemDateTime());\n $objUserOperationEntity->setMessage(\"A cPanel account password changed for the domain name $domainName and order id #$orderId by $currentUserName\");\n $objUserOperationService->userOperation = $objUserOperationEntity;\n $objUserOperationService->addUserOperation();\n //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?command=Change Password');\n } else {\n \n $objOrderProductEntity = new Base_Model_Lib_Order_Entity_Product();\n $objOrderProductEntity->setId($this->_request->getParam('txtId'));\n $objOrderProductEntity->setProduct($this->_request->getParam('cmbProductService'));\n $objOrderProductEntity->setServer($this->_request->getParam('cmbServer'));\n $objOrderProductEntity->setDomain($this->_request->getParam('txtDomain'));\n $objOrderProductEntity->setDomainStatus($this->_request->getParam('cmbStatus'));\n $objOrderProductEntity->setPaymentMethod($this->_request->getParam('cmbPaymentMethod'));\n $objOrderProductEntity->setFirstPaymentAmount($this->_request->getParam('txtFirstPaymentAmount'));\n $objOrderProductEntity->setAmount($this->_request->getParam('txtRecurringAmount'));\n $objOrderProductEntity->setBillingCycle($this->_request->getParam('cmbBillingCycle'));\n $objOrderProductEntity->setNextDueDate($this->_request->getParam('txtNextDueDate'));\n $nextInvoiceDate = date('Y-m-d H:i:s',(strtotime('-2 day',strtotime($this->_request->getParam('txtNextDueDate')))));\n $objOrderProductEntity->setNextInvoiceDate($nextInvoiceDate);\n $objOrderProductEntity->setUsername($this->_request->getParam('txtUsername'));\n $objOrderProductEntity->setPassword($this->_request->getParam('txtPassword'));\n $objOrderProductEntity->setNotes($this->_request->getParam('admin_notes'));\n $objOrderProductEntity->setSubscription($this->_request->getParam('txtSubscriptionID'));\n $objOrderProductEntity->setPromotionCode($this->_request->getParam('cmbPromotionCode'));\n $objOrderProductEntity->setOverideautosuspend($this->_request->getParam('chkOverideAutoSuspend'));\n $objOrderProductEntity->setOveridesuspenduntil($this->_request->getParam('txtOverideAutoSuspendDate'));\n $objOrderProductEntity->setDedicatedIp($this->_request->getParam('txtDedicatedIP'));\n $objOrderProductEntity->setLastupdate($this->getSystemDateTime());\n $objOrderProductEntity->setHasAdmin($this->_request->getParam('cmbHasAdmin'));\n $objOrderProductEntity->setCPanelPackage($this->_request->getParam('cmbcPanelPackage'));\n $objOrderProductService->product = $objOrderProductEntity;\n $objOrderProductService->updateProductService();\n \n $this->_redirect('/admin/order/view-product-service/client/'.$clientId.'/id/'.$orderProductId.'/?status=edited');\n }\n }\n \n $status = $this->_request->getParam('status');\n $this->view->status = $status;\n $command = $this->_request->getParam('command');\n $this->view->command = $command;\n\n } catch (Exception $ex) {\n throw new Exception('<ERROR>' . $ex->getMessage() . \"\\n\");\n }\n }", "function External_service()\r\n\t{\r\n\t\tparent::PUB_Controller();\r\n\t\t$this->load->model('merchant/query_model');\r\n\r\n\t}", "abstract public function service();", "public function getServices()\n\t\t{\n\n\t\t\t$service_id = $this->input->get('service_id') ;\n\t\t\techo json_encode($this->mdl_services->all()->result() ) ;\n\t\t}", "public function ZohoAPI($cadlogin = false) {\n \t \t $this->setData(get_option(\"zoho_texto_data\"));\n \t \t $this->setLogin(get_option(\"zoho_texto_login\"));\n \t \t $this->setSenha(get_option(\"zoho_texto_senha\"));\n \t \t $this->setTicket(get_option(\"zoho_texto_ticket\"));\n \t \t //Verifica a direfença entre as datas\n \t \t $dif = $this->dif_datas(date('d/m/Y'),ZohoAPI::Vencimento($this->getData()));\n \t \t //Verifica se a diferença entre as datas está vencida e se é atualização de login e senha. \n \t \t if (($dif <= 0) || ($cadlogin)) {\n \t \n \t \t \t $r = new HTTP_Request($this->urlTicket);\n \t \t \t $r->setMethod(\"GET\");\n \t \t \t $r->addQueryString('servicename','ZohoInvoice');\n \t \t \t $r->addQueryString('FROM_AGENT','true');\n \t \t \t $r->addQueryString('LOGIN_ID',$this->getLogin());\n \t \t \t $r->addQueryString('PASSWORD',$this->getSenha());\n \t \t \t $r->sendRequest();\n \t \t \t $retorno = $r->getResponseBody();\n \t \t \t $linhas = explode(\"\\n\", $retorno);\n\n \t \t \t foreach ($linhas as $linha)\n \t \t \t {\n \t \t \t \t if (strpos($linha, \"=\") !== false)\n \t \t \t \t {\n \t \t \t \t \t $valorItem = explode(\"=\", $linha);\n \t \t \t \t \t \n \t \t \t \t \t if (count($valorItem) == 2)\n \t \t \t \t \t {\n \t \t \t \t \t \t $valor[$valorItem[0]] = $valorItem[1];\n \t \t \t \t \t } else {\n \t \t \t \t \t \t $this->setErro('Erro na hora de extrair!');\n \t \t \t \t \t }\n \t \t \t \t }\n \t \t \t \t elseif (strpos($linha, \"#\") !== false)\n \t \t \t \t {\n \t \t \t \t \t if (strlen($linha) > 5)\n \t \t \t \t \t {\n \t \t \t \t \t \t $data = date('d/m/Y', strtotime(substr($linha, 1)));\n \t \t \t \t \t }\n \t \t \t \t }\n \t \t \t }\n\n \t \t \t if ($valor['RESULT'] == 'FALSE') {\n \t \t \t \t $this->setErro('Erro Zoho: ' . $valor['CAUSE']); \n \t \t \t } else {\n \t \t \t \t $this->setTicket($valor['TICKET']);\n \t \t \t \t $this->setData(ZohoAPI::Vencimento($data,6));\n\n \t \t \t \t update_option(\"zoho_texto_ticket\",$this->getTicket());\n \t \t \t \t update_option(\"zoho_texto_data\",$this->getData()); \t \t \t \t \n \t \t \t }\t\n \t \t }\n \t }", "function createPWSSOAPClient()\n{\n //Set the parameters for the Non-WSDL mode SOAP communication with your Development/Production credentials\n $client = new SoapClient( \"./wsdl/serviceavailabilityservice.wsdl\", \n array\t(\n 'trace'\t\t\t=>\ttrue,\n 'location'\t=>\t\"https://webservices.purolator.com/PWS/V1/ServiceAvailability/ServiceAvailabilityService.asmx\",\n 'uri'\t\t\t\t=>\t\"http://purolator.com/pws/datatypes/v1\",\n 'login'\t\t\t=>\tPRODUCTION_KEY,\n 'password'\t=>\tPRODUCTION_PASS\n )\n );\n //Define the SOAP Envelope Headers\n $headers[] = new SoapHeader ( 'http://purolator.com/pws/datatypes/v1', \n 'RequestContext', \n array (\n 'Version' => '1.3',\n 'Language' => 'en',\n 'GroupID' => 'xxx',\n 'RequestReference' => 'Rating Example',\n 'UserToken' => USER_TOKEN\n )\n ); \n //Apply the SOAP Header to your client \n $client->__setSoapHeaders($headers);\n\n return $client;\n}", "public final function __soapCall($function_name, $arguments, $options=array(), $input_headers= array(), &$output_headers=array()) {\t\n \t \n \t$result = parent::__soapCall($function_name, $arguments, $options, $this->getWSsecurityHeader(),$output_headers);\n \t\n \tif (isset($this->options['debug']) && $this->options['debug']) {\t\t\n\t\t\t$this->logLastWSResponse();\n\t\t}\n\t\treturn $result;\n }", "public function getLdc($s = null){\n\t\t$url = env('SOAP_URL');\n\t\t$user = env('SOAP_USER');\n\t\t$pw = env('SOAP_PW');\n\t\t$output_params = array(\"output_xml;8000\");\n\t\t$lang = env('SOAP_LANG');\n\t\t$entno = env('SOAP_ENTNO');\n\t\t$client = new SoapClient($url, array(\"trace\" => 1, \"exceptions\" => 0, \"cache_wsdl\" => 0));\n\n\t\tif(Input::get('type') === null){\n\t\t\t$type = 'web';\n\t\t}\n\t\telse{\n\t\t\t$type = Input::get('type');\n\t\t}\n\n\t\t$zip = Input::get('zip');\n\t\t$promo = Input::get('promo');\n\t\tSession::put('zip', $zip);\n\n\t\t// if zip code is entered on welcome page the residential or commercial button was used\n\t\tif(Input::get('Residential')){\n\t\t\t$service = \"R\";\n\t\t}\n\t\telse if(Input::get(\"Commercial\")){\n\t\t\t$service = \"C\";\n\t\t}\n\t\t// else the zip is entered from enroll page and service is found with radio button\n\t\telse{\n\t\t\t$service = Input::get('service');\n\t\t\tif($service == 'Commercial'){\n\t\t\t\t$service = 'C';\n\t\t\t}\n\t\t\telse{\n\t\t\t\t$service = 'R';\n\t\t\t}\n\t\t} \n\n\t \t$xml_string = \"<string><![CDATA[@input_xml;<ReadiSystem><proc_type>RS_sp_DR_Offers_by_Zip</proc_type><entno>4270</entno><zip>\" . $zip . \"</zip><rev_type>\" . $service . \"</rev_type><utility_type>E</utility_type></ReadiSystem>]]></string>\";\n\n\t \t$xml_obj = simplexml_load_string($xml_string);\n\n\t\t$client->ExecuteSP(array(\"user\" => $user, \"password\" => $pw, \"spName\" => \"RS_sp_EAI_Output\", \"paramList\" => array($xml_obj), \"outputParamList\" => $output_params,\"langCode\" => $lang, \"entity\" => $entno)); \n\n\t\t$response = $client->__getLastResponse(); \n\n\t\t$xml = explode('&lt;RS_sp_DR_Offers_By_Zip&gt;', $response);\n\t\t\n\t\tfor($i = 1; $i < count($xml); $i++){\n\t\t\t$entno = get_string_between($xml[$i], '&lt;entno&gt;', '&lt;/entno&gt;');\n\t\t\t$s = get_string_between($xml[$i], '&lt;rev_type&gt;', '&lt;/rev_type&gt;');\n\t\t\t$ldc = get_string_between($xml[$i], '&lt;supno&gt;', '&lt;/supno&gt;');\n\n\t\t\tif($ldc == 'DELMD'){\n\t\t\t\t$ldc = 'Delmarva';\n\t\t\t}\n\t\t\tif($ldc == 'DUKE_OH'){\n\t\t\t\t$ldc = 'Duke';\n\t\t\t}\n\t\t\tif($ldc == 'PEPCO_MD'){\n\t\t\t\t$ldc = 'PEPCO';\n\t\t\t}\n\t\t\tif($ldc == 'DQE'){\n\t\t\t\t$ldc = 'Duquesne';\n\t\t\t}\n\t\n\t\t\t$ls[] = [$ldc];\n\t\t}\n\n\t\t// change Opsolve R/C naming convention to Residential/Commercial\n\t\tif($service == 'C'){\n\t\t\t$service = 'Commercial';\n\t\t}\n\t\telse{\n\t\t\t$service = 'Residential';\n\t\t}\n\n\t\tif(empty($ls)){\n\t\t\treturn view('no-service')->with('z', $zip)->with('s', $service)->with('p', $promo);\n\t\t}\n\t\n\t\t/*if(is_null($ldcs[0])){\n\t\t\treturn view('no-service')->with('z', $zip)->with('s', $service)->with('p', $promo);\n\t\t}*/\n\n\t\tforeach($ls as $l){\n\t\t\t$ldcs[] = \\App\\Models\\Ldc::where('ldc', $l)->first(); \n\t\t}\n\n\t\t// if there is only 1 LDC for the zip code, then send them straight to the plans\n\t\t$count = count($ldcs);\n\t\tif($count === 1){\n\t\t\treturn redirect()->route('searchPlans', array('type' => $type, 's' => $service, 'l' => $ldcs[0]->ldc, 'promo' => $promo));\n\t\t}\n\n\t\treturn view('ldcs.findex')->with('type', $type)->with('service', $service)->with('ldcs', $ldcs)->with('promo', $promo);\n\t}", "function externalapis()\n\n {\n //get usd rate\n\n\n //koinok value\n $koinok = koinokapi();\n\n //idex\n $idex = idexapi();\n\n //mercatox\n $mercatox = mercatoxapi();\n\n //etherflyer\n $etherflyer = etherflyerapi();\n\n //bancor\n $bancor = bancorapi();\n// echo json_encode($koinok);\n\n $result = array('IDEX'=>$idex,'KOINOK'=>$koinok,'MERCATOX'=>$mercatox,'ETHERFLYER'=>$etherflyer,'BANCOR'=>$bancor);\n echo json_encode($result);\n\n }", "public function service(BLW_HTTP_Request $request, BLW_HTTP_Response $response);", "function dashboard_webservice_create_dashboard()\n {\n $postvar=get_post_data();\n $return=create_dashboard($postvar);\n rs($return['data'],$return['error_code'],$return['success'],\"1\"); \n }", "function wsSticker() {\n\t\tif (! $this->AccessTokenValid) {\n\t\t\t$Resultado=$this->AccessTokenResult;\n\t\t\treturn $Resultado;\t\t\n\t\t}\t\t\n\t\t$this->GetItems(\"Active=1 AND DatePublish<='\" . date('Y-m-d') . \"' AND DateExpire>='\". date('Y-m-d') . \"'\",false,\"DatePublish DESC, Orden DESC\");\n\t\tif ($this->ItemsCount>0) {\n\t\t\t$Resultado['Success']=1;\n\t\t\t$Resultado['Items']=$this->Items;\n\t\t} else {\n\t\t\t$Resultado['Success']=0;\n\t\t\t$Resultado['Result']=\"No records found\";\n\t\t}\n\t\treturn $Resultado;\n\t}", "function service();", "public function transactService()\n {\n $data['liste_serv'] = $this->serviceModels->getService();\n $this->views->setData($data);\n $param['serv'] = $this->paramPOST['fk_service'];\n\n if (isset($this->paramPOST[\"datedeb\"]) & isset($this->paramPOST[\"datefin\"])) {\n\n $param['datedeb'] = Utils::date_aaaa_mm_jj($this->paramPOST['datedeb']) ;\n $param['datefin'] = Utils::date_aaaa_mm_jj($this->paramPOST['datefin']);\n\n }else{\n $param['datedeb'] = date('Y-m-d');\n $param['datefin'] = date('Y-m-d');\n }\n\n $this->views->setData($param);\n $this->views->getTemplate('reporting/transactService');\n }", "function get_soption($sid) {\n\t$client = new soapclient($GLOBALS['baseurl'].'/db/nusoapService.php');\n\t$client->soap_defencoding = 'UTF-8';\n\t$client->decode_utf8 = false;\n\t$client->xml_encoding = 'UTF-8';\n\t$result = $client->call('get_soption_json', array('sid'=>\"$sid\"));\n\tif (! $err = $client->getError ()) {\n\t\treturn json_decode($result);\n\t} else {\n\t\techo \"调用出错:\", $err;\n\t}\n}", "public function index()\n\t{\n\t\t$this->our_services();\n\t}", "function testFl($destinationLocation, $originLocation, $departureDate, $adultNo, $childNo, $infantNo, $flightClass)\n{\n $seatRequested = $adultNo+$childNo;//+$infantNo;\n $childExist = \"\";\n $infantExist = \"\";\n if( $childNo != 0 ) {\n $childExist = '<PassengerTypeQuantity Code=\"CNN\" Quantity=\"'.$childNo.'\" />';\n }\n if( $infantNo != 0 ) {\n $infantExist = '<PassengerTypeQuantity Code=\"INF\" Quantity=\"'.$infantNo.'\" />';\n }\n $service = new SWSWebService(\"[email protected]\",\"8888\",\"CTC78866\",\"8HYD\",\"https://webservices.sabre.com/websvc\");\n if($service->SessionCreate())\n {\n if($service->SessionValidate())\n {\n $OTA_AirLowFareSearchRQ = '\n <OTA_AirLowFareSearchRQ xmlns=\"http://www.opentravel.org/OTA/2003/05\" ResponseType=\"OTA\" Version=\"3.4.0\" AvailableFlightsOnly=\"true\">\n <POS>\n <Source PseudoCityCode=\"8HYD\">\n <RequestorID ID=\"1\" Type=\"1\">\n <CompanyName Code=\"TN\" />\n </RequestorID>\n </Source>\n </POS>\n <OriginDestinationInformation RPH=\"1\">\n <DepartureDateTime>'.$departureDate.'</DepartureDateTime>\n <OriginLocation LocationCode=\"'.$originLocation.'\" />\n <DestinationLocation LocationCode=\"'.$destinationLocation.'\" />\n <TPA_Extensions>\n <SegmentType Code=\"O\" />\n <IncludeVendorPref Code=\"AA\"/>\n <IncludeVendorPref Code=\"AC\"/>\n <IncludeVendorPref Code=\"AF\"/>\n <IncludeVendorPref Code=\"AI\"/>\n <IncludeVendorPref Code=\"BA\"/>\n <IncludeVendorPref Code=\"BI\"/>\n <IncludeVendorPref Code=\"BR\"/>\n <IncludeVendorPref Code=\"CA\"/>\n <IncludeVendorPref Code=\"CI\"/>\n <IncludeVendorPref Code=\"CX\"/>\n <IncludeVendorPref Code=\"CZ\"/>\n <IncludeVendorPref Code=\"DG\"/>\n <IncludeVendorPref Code=\"DL\"/>\n <IncludeVendorPref Code=\"EK\"/>\n <IncludeVendorPref Code=\"EY\"/>\n <IncludeVendorPref Code=\"FJ\"/>\n <IncludeVendorPref Code=\"GA\"/>\n <IncludeVendorPref Code=\"GF\"/>\n <IncludeVendorPref Code=\"IT\"/>\n <IncludeVendorPref Code=\"JL\"/>\n <IncludeVendorPref Code=\"KE\"/>\n <IncludeVendorPref Code=\"KL\"/>\n <IncludeVendorPref Code=\"LA\"/>\n <IncludeVendorPref Code=\"LH\"/>\n <IncludeVendorPref Code=\"LX\"/>\n <IncludeVendorPref Code=\"MF\"/>\n <IncludeVendorPref Code=\"MH\"/>\n <IncludeVendorPref Code=\"MI\"/>\n <IncludeVendorPref Code=\"MK\"/>\n <IncludeVendorPref Code=\"MU\"/>\n <IncludeVendorPref Code=\"NH\"/>\n <IncludeVendorPref Code=\"NZ\"/>\n <IncludeVendorPref Code=\"OD\"/>\n <IncludeVendorPref Code=\"OZ\"/>\n <IncludeVendorPref Code=\"PG\"/>\n <IncludeVendorPref Code=\"PR\"/>\n <IncludeVendorPref Code=\"PX\"/>\n <IncludeVendorPref Code=\"QF\"/>\n <IncludeVendorPref Code=\"QR\"/>\n <IncludeVendorPref Code=\"QV\"/>\n <IncludeVendorPref Code=\"SK\"/>\n <IncludeVendorPref Code=\"SQ\"/>\n <IncludeVendorPref Code=\"SU\"/>\n <IncludeVendorPref Code=\"TG\"/>\n <IncludeVendorPref Code=\"TK\"/>\n ';\n if($infantNo == 0) {\n $OTA_AirLowFareSearchRQ .= '<IncludeVendorPref Code=\"TR\"/><IncludeVendorPref Code=\"TT\"/>\n ';}\n else if($childNo == 0) {\n $OTA_BargainMaxFinder .= '\n <IncludeVendorPref Code=\"OD\"/>\n ';\n }\n else {\n\n }\n $OTA_AirLowFareSearchRQ .= '\n <IncludeVendorPref Code=\"TZ\"/><IncludeVendorPref Code=\"UA\"/>\n <IncludeVendorPref Code=\"UB\"/>\n <IncludeVendorPref Code=\"UL\"/>\n <IncludeVendorPref Code=\"VA\"/>\n <IncludeVendorPref Code=\"VN\"/>\n <IncludeVendorPref Code=\"WY\"/>\n <IncludeVendorPref Code=\"8M\"/>\n <IncludeVendorPref Code=\"9W\"/>\n </TPA_Extensions>\n </TPA_Extensions>\n </OriginDestinationInformation>\n <TravelPreferences ValidInterlineTicket=\"false\" SmokingAllowed=\"false\" ETicketDesired=\"false\" MaxStopsQuantity=\"2\">\n <CabinPref PreferLevel=\"Only\" Cabin=\"'.$flightClass.'\"/>\n <TPA_Extensions>\n <TripType Value=\"OneWay\" />\n <LongConnectTime Min=\"780\" Max=\"1200\" Enable=\"true\" />\n <ExcludeCallDirectCarriers Enabled=\"true\" />\n </TPA_Extensions>\n </TravelPreferences>\n <TravelerInfoSummary>\n <SeatsRequested>'.$seatRequested.'</SeatsRequested>\n <AirTravelerAvail>\n <PassengerTypeQuantity Code=\"ADT\" Quantity=\"'.$adultNo.'\" />\n '.$childExist.'\n '.$infantExist.'\n </AirTravelerAvail>\n <PriceRequestInformation NegotiatedFaresOnly=\"false\" CurrencyCode=\"SGD\">\n </PriceRequestInformation>\n </TravelerInfoSummary>\n <TPA_Extensions>\n <IntelliSellTransaction>\n <RequestType Name=\"150ITINS\" />\n <CompressResponse Value=\"false\"/>\n </IntelliSellTransaction>\n </TPA_Extensions>\n </OTA_AirLowFareSearchRQ>​';\n $xml = $service->Execute(\"BargainFinderMaxRQ\",$OTA_AirLowFareSearchRQ,\"OTA\",\"Air\");\n echo '<xmp>'.$OTA_AirLowFareSearchRQ.'</xmp>';\n\n $parseResult = simplexml_load_string($xml);\n $arrayFinalFlight = json_decode(json_encode($parseResult), true);\n\n echo '<pre>';\n var_dump($arrayFinalFlight);\n die();\n\n if( $xml ) {\n\n //$result_test = XMLtoArray($xml);\n return $xml;\n }\n else {\n echo htmlspecialchars($service->error);\n }\n }\n else {\n echo htmlspecialchars($service->error);\n }\n }\n else {\n echo htmlspecialchars($service->error);\n }\n}", "function bill_service_provider(){\n\t$biller_category=$_REQUEST['biller_category'];\n\tif(!empty($biller_category))\n\t{\n\t\t$records = $this -> conn -> get_table_row_byidvalue('biller_details', 'biller_category_id', $biller_category);\n\t\tif($records){\n\t\t\t$biller_name=$records['0']['biller_name']; \n\t\t\t$biller_contact_no=$records['0']['biller_contact_no']; \n\t\t\t$biller_email=$records['0']['biller_email']; \n\t\t\t$biller_company_name=$records['0']['biller_company_name']; \n\t\t\t$biller_company_logo=biller_company_logo.$records['0']['biller_company_logo']; \n\t\t\t$post = array('status' => \"true\",'biller_category_id'=>$biller_category,\"biller_name\" => $biller_name,'biller_contact_no'=>$biller_contact_no,\"biller_email\" => $biller_email,'biller_company_name'=>$biller_company_name,\"biller_company_logo\" => $biller_company_logo);\n\t\t}else{\n\t\t\t$post = array('status' => \"false\",\"message\" => \"No Service Provider Found\");\n\t\t}\n\t}else{\n\t\t\t$post = array('status' => \"false\",\"message\" => \"Missing Parameter\",'biller_category_id'=>$biller_category);\n\t}\n\techo $this -> json($post);\n}", "protected function index() {\n\t\t$service = new Model_Service();\n\t\t//$service->set('active',true);\n\t\t$this->payload->services = $service->find();\n\t}", "public function checkWebservice($url) {\n $handle = curl_init($url);\n $agent = \"Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)\";\n curl_setopt ($handle, CURLOPT_URL,$url );\n curl_setopt($handle, CURLOPT_USERAGENT, $agent);\n curl_setopt ($handle, CURLOPT_RETURNTRANSFER, 1);\n curl_setopt ($handle,CURLOPT_VERBOSE,false);\n curl_setopt($handle, CURLOPT_TIMEOUT, 5);\n curl_setopt($handle,CURLOPT_SSL_VERIFYPEER, FALSE);\n curl_setopt($handle,CURLOPT_SSLVERSION,3);\n curl_setopt($handle,CURLOPT_SSL_VERIFYHOST, FALSE);\n $page=curl_exec($handle);\n $httpCode = curl_getinfo($handle, CURLINFO_HTTP_CODE);\n if ($httpCode != 200) {\n /* You don't have a WSDL Service is down. exit the function */\n Mage::log('SOAPCLIENT PROBLEM: HTTP CODE '.$httpCode, null, 'santander.log');\n curl_close($handle);\n return false;\n }\n\n curl_close($handle);\n return true;\n }", "function fn_DealerGet()\n {\n $params = $this->params;\n $wsdl \t= $this->wsdl;\n $responce = \"\";\n try\n {\n $soap = new SoapClient($wsdl, $params);\n $args = array('token' => $this->token);\n $responce = $soap->DealerGet($args);\n }\n catch (SoapFault $e)\n {\n //$responce = \"\";\n //$responce = 'Caught exception:'.$e->getMessage().\"\\n\";\n\n $responce['faultcode'] \t\t= $e->faultcode;\n $responce['faultstring'] \t= $e->faultstring;\n $responce['faultactor'] \t= $e->faultactor;\n $responce['faultname'] \t\t= $e->faultname;\n $responce['headerfault'] \t= $e->headerfault;\n }\n return $responce;\n }", "public function web();", "public function __construct($arguments = array()) {\n \n parent::__construct($arguments);\n\n $this->description = t('Get Procedure (English) from SOAP service (SharePoint).');\n\n // \"fields\" from an XML feed, so we pass an explicit list of source fields.\n $fields = array(\n// 'd:Id' => t('ID'),\n// 'd:Title' => t('Name'),\n// 'd:AudienceDesc' => t('Description'),\n \n 'RecordID' => t('Record ID'),\n 'ServiceID' => t('Service ID'),\n 'AProcedureName' => t('A ProcedureName'),\n 'Ebeneficiary' => t('E Beneficiary'),\n );\n\n // The source ID here is the one retrieved from the XML listing URL, and\n // used to identify the specific item's URL.\n $this->map = new MigrateSQLMap($this->machineName,\n array(\n 'RecordID' => array(\n 'type' => 'varchar',\n 'length' => 255,\n 'not null' => TRUE,\n 'description' => 'Record ID',\n ),\n ),\n MigrateDestinationTerm::getKeySchema()\n );\n\n //$xpath = '//m:properties/d:Id';\n\n // Source list URL.\n //$list_url = 'http://dnrd.ae/_layouts/RestProxy/Query.aspx?html=0&q=Audiance';\n $soap_service_name = 'test_soap';\n\n // Each ID retrieved from the list URL will be plugged into :id in the\n // item URL to fetch the specific objects.\n //$item_url = 'http://dnrd.ae/_layouts/RestProxy/Query.aspx?html=0&q=Audiance(:id)';\n\n // We use the MigrateSourceList class for any source where we obtain the\n // list of IDs to process separately from the data for each item. The\n // listing and item are represented by separate classes, so for example we\n // could replace the XML listing with a file directory listing, or the XML\n // item with a JSON item.\n \n// $this->source = new MigrateSourceList(new DnrdMigrateListXML($list_url, $xpath),\n// new MigrateItemXML($item_url), $fields);\n $this->source = new MigrateSourceList(new Gdrfa_MigrateListSoapXML($soap_service_name),\n new Gdrfa_MigrateItemSoapXML($soap_service_name), $fields);\n \n \n $this->destination = new MigrateDestinationNode('service_soap');\n \n\n // TIP: Note that for XML sources, in addition to the source field passed to\n // addFieldMapping (the name under which it will be saved in the data row\n // passed through the migration process) we specify the Xpath used to retrieve\n // the value from the XML.\n \n $this->addFieldMapping('title', 'RecordID')->xpath('//RecordID');\n\n $this->addFieldMapping('field_service_id', 'ServiceID')->xpath('//ServiceID');\n\n $this->addFieldMapping('field_a_procedure_name', 'AProcedureName')->xpath('//AProcedureName');\n \n $this->addFieldMapping('field_e_beneficiary', 'Ebeneficiary')->xpath('//Ebeneficiary');\n\n $this->addFieldMapping('status')\n ->defaultValue(1);\n\n $this->addFieldMapping('promote')\n ->defaultValue(0);\n\n $this->addFieldMapping('sticky')\n ->defaultValue(0);\n\n // Declare unmapped source fields.\n $unmapped_sources = array(\n /*\n //'EProcedureName',\n 'ADepartment',\n 'EDepartment',\n 'ECustomerType',\n 'ACustomerType',\n 'Classification',\n 'Status',\n 'Estatus',\n 'Astatus',\n\n 'Abeneficiary',\n 'AFeeRequired',\n 'ARequirements',\n 'ATools',\n 'ANotesforCustomer',\n 'ANoteforemployees',\n 'ESubmissionPlaces',\n 'ASubmissionPlaces',\n 'AProcedureDetail',\n 'OnLocal',\n 'OnLine',\n 'Modified',\n 'NeedUpdate',\n 'UpdateID',\n 'Active',\n */\n\n );\n $this->addUnmigratedSources($unmapped_sources);\n\n // Declare unmapped destination fields.\n $unmapped_destinations = array(\n 'nid',\n 'uid',\n //'redirect',\n 'language',\n 'tnid',\n 'body',\n 'created',\n 'body:summary',\n 'body:format',\n 'changed',\n 'log',\n 'translate',\n 'revision',\n 'revision_uid',\n 'is_new',\n 'path',\n 'pathauto',\n 'comment',\n );\n $this->addUnmigratedDestinations($unmapped_destinations);\n \n \n \n\n }", "public function __construct($_chargeId = NULL,$_chargeDesc = NULL,$_chargeType = NULL,$_chargeClass = NULL,$_chargeDt = NULL,$_arrestDt = NULL,$_offenseDt = NULL,$_plea = NULL,$_sentence = NULL,$_sentenceDt = NULL,$_dispositionDt = NULL,$_dispositionType = NULL,$_probationStatus = NULL,$_defendantName = NULL,$_plaintiff = NULL,$_originationState = NULL,$_originationCounty = NULL,$_offenderStatus = NULL,$_offenderCategory = NULL,$_judgment = NULL,$_riskLevel = NULL,$_message = NULL,$_adjudicationWithheld = NULL,$_caseId = NULL,$_count = NULL,$_county = NULL,$_offenseDesc = NULL,$_maxTerm = NULL,$_minTerm = NULL,$_numOfCounts = NULL,$_appealDt = NULL,$_statute = NULL,$_arrestType = NULL,$_finalDesposition = NULL,$_chargeDesc2 = NULL,$_originationName = NULL,$_caseType = NULL)\n {\n MicrobiltWsdlClass::__construct(array('ChargeId'=>$_chargeId,'ChargeDesc'=>$_chargeDesc,'ChargeType'=>$_chargeType,'ChargeClass'=>$_chargeClass,'ChargeDt'=>$_chargeDt,'ArrestDt'=>$_arrestDt,'OffenseDt'=>$_offenseDt,'Plea'=>$_plea,'Sentence'=>$_sentence,'SentenceDt'=>$_sentenceDt,'DispositionDt'=>$_dispositionDt,'DispositionType'=>$_dispositionType,'ProbationStatus'=>$_probationStatus,'DefendantName'=>$_defendantName,'Plaintiff'=>$_plaintiff,'OriginationState'=>$_originationState,'OriginationCounty'=>$_originationCounty,'OffenderStatus'=>$_offenderStatus,'OffenderCategory'=>$_offenderCategory,'Judgment'=>$_judgment,'RiskLevel'=>$_riskLevel,'Message'=>$_message,'AdjudicationWithheld'=>$_adjudicationWithheld,'CaseId'=>$_caseId,'Count'=>$_count,'County'=>$_county,'OffenseDesc'=>$_offenseDesc,'MaxTerm'=>$_maxTerm,'MinTerm'=>$_minTerm,'NumOfCounts'=>$_numOfCounts,'AppealDt'=>$_appealDt,'Statute'=>$_statute,'ArrestType'=>$_arrestType,'FinalDesposition'=>$_finalDesposition,'ChargeDesc2'=>$_chargeDesc2,'OriginationName'=>$_originationName,'CaseType'=>$_caseType),false);\n }", "function invokeService($params) {\n if (isset($params['service'])) {\n if (isset($params['request'])) {\n $request = json_decode($params['request']);\n }\n header('Content-type: application/json');\n switch ($params['service']) {\n case \"getAllVendors\": \n echo json_encode((object) array('vendors' => getAllVendors()));\n break;\n }\n exit;\n } \n }", "public function getTest() {\n \n //$funct = self::$soapClient->__getTypes();\n $funct = self::$soapClient->__getFunctions();\n $funct = $this->lerTodos();\n \n echo \"<pre>\";\n print_r($funct);\n die;\n }", "public function getWSResponse()\r\n\t\t{\r\n\t\t\ttry \r\n\t\t\t{\r\n\t\t\t\t// Check if _HTTPRequest variable is correctly instancied.\r\n\t\t\t\tif (!isset($this->_HTTPRequest[\"auth\"], $this->_HTTPRequest[\"name\"]))\r\n\t\t\t\t{\r\n\t\t\t\t\tthrow new Exception(\"Requête incorrecte, variables non définies\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Check if the queries dictionnary has been correctly loaded.\r\n\t\t\t\tif ($this->_WSData == null)\r\n\t\t\t\t{\r\n\t\t\t\t\tthrow new Exception(\"Impossible d'accéder aux données. Merci de réessayer.\");\t\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Check if the authentification key is correct.\r\n\t\t\t\tif ($this->_auth != $this->_HTTPRequest[\"auth\"])\r\n\t\t\t\t{\r\n\t\t\t\t\tthrow new Exception(\"Echec de l'authentification.\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Check if the query requested (by name) is in the dictionnary.\r\n\t\t\t\t$QueryName = null;\r\n\t\t\t\tforeach($this->_WSData as $WSname => $WSdata)\r\n\t\t\t\t{\r\n\t\t\t\t\tif ($WSname == $this->_HTTPRequest[\"name\"])\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$QueryName = $WSname;\r\n\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t// Throw new exception if the query requested isn't in the dictionnary\r\n\t\t\t\tif (is_null($QueryName))\r\n\t\t\t\t{\r\n\t\t\t\t\tthrow new Exception(\"Impossible de trouver la requête demandée.\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Check if the param's list sent is the same as param's list relative to the query in the dictionnary.\r\n\t\t\t\t$allParamExist = false;\r\n\t\t\t\tif (count($this->_WSData[$QueryName][\"param\"]) < 1)\r\n\t\t\t\t{\r\n\t\t\t\t\t$allParamExist = true;\r\n\t\t\t\t} \r\n\t\t\t\telse \r\n\t\t\t\t{\r\n\t\t\t\t\tforeach($this->_HTTPRequest[\"param\"] as $HRp => $HRv)\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\t$paramExist = false;\r\n\t\t\t\t\t\tforeach($this->_WSData[$QueryName][\"param\"] as $WSp)\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tif ($HRp == $WSp)\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t\t$paramExist = true;\r\n\t\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\t}\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif (!$paramExist)\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t$allParamExist = false;\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\telse\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\t$allParamExist = true;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t}\t\t\t\t\r\n\r\n\t\t\t\t// Throw new exception if the param's list sent doesn't match.\r\n\t\t\t\tif (is_null($allParamExist))\r\n\t\t\t\t{\r\n\t\t\t\t\tthrow new Exception(\"Erreur : les paramètres passés sont incorrects.\");\r\n\t\t\t\t}\r\n\r\n\t\t\t\t// Prepare the query and execute it. Here we are using our own db class (simplification of PDO object, you can adapt this part with your own database class).\r\n\t\t\t\t$bdd = new Bdd();\r\n\t\t\t\t$bdd = $bdd->bddConnection();\r\n\t\t\t\t\r\n\t\t\t\t$query = $bdd->prepare($this->_WSData[$QueryName][\"sql\"]);\r\n\t\t\t\tforeach($this->_WSData[$QueryName][\"param\"] as $p)\r\n\t\t\t\t{\r\n\t\t\t\t\t$query->bindValue($p, $this->_HTTPRequest[\"param\"][$p]);\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$query->execute();\r\n\t\t\t\r\n\t\t\t\t// Get the result of the query and prepare the response.\r\n\t\t\t\tif ($this->_WSData[$QueryName][\"type\"] == \"select\")\r\n\t\t\t\t{\r\n\t\t\t\t\t$this->_response[\"data\"] = $query->fetchAll();\r\n\t\t\t\t}\r\n\t\t\t\telse if ($this->_WSData[$QueryName][\"type\"] == \"insert\")\r\n\t\t\t\t{\r\n\t\t\t\t\t$this->_response[\"lastId\"] = $bdd->lastInsertId();\r\n\t\t\t\t}\r\n\r\n\t\t\t\t$this->_response[\"error\"] = false;\r\n\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\t// In case of any other exception (mostly for PDO/SQL error).\r\n\t\t\tcatch (Exception $e) \r\n\t\t\t{\r\n\t\t\t\t$this->_response[\"msg\"] = $e->getMessage();\r\n\t\t\t}\r\n\t\t}", "function ajaxmessage_ac(){\r\n /*$c['totalNum'] = 0;\r\n $c['vname'] = I('vName')?I('vName'):'';//车牌号码\r\n $c['driverName'] = I('driverName')?I('driverName'):'';//姓名\r\n $c['corpName'] = I('corpName')?I('corpName'):'';//公司名称\r\n $c['cyzgz'] = I('cyzg')?I('cyzg'):'';//从业资格证\r\n $zfdwmc = I('dd');\r\n $zd = I('zd');\r\n $hy = I('hy');\r\n $startTime = I('startTime');\r\n $endTime = I('endTime');\r\n\r\n if($zfdwmc != '全部'){\r\n $c['zfdwmc'] = $zfdwmc;\r\n }else{\r\n $c['zfdwmc'] = '';\r\n }\r\n if($zd != '全部'){\r\n $c['zfry1'] = $zd;\r\n }else{\r\n $c['zfry1'] = '';\r\n }\r\n if($hy != '全部'){\r\n $c['hylb'] = $hy;\r\n }else{\r\n $c['hylb'] = '';\r\n }\r\n\r\n $c['startTime'] = strtotime($startTime);\r\n $c['endTime'] = strtotime($endTime);\r\n\r\n $offset = I('offset');\r\n $maxrows = I('maxrows');\r\n $c['startIndex'] = $offset;\r\n $c['endIndex'] = $maxrows+$offset;*/\r\n\r\n\r\n /*$R_json = json_encode($c);\r\n //{\"totalNum\":0,\"vname\":\"\",\"driverName\":\"\",\"corpName\":\"\",\"cyzgz\":\"\",\"zfdwmc\":\"\",\"zfry1\":\"\",\"hylb\":\"\",\"startTime\":946656000,\"endTime\":1473231336,\"startIndex\":0,\"endIndex\":\r\n $R1_json = postHttp(C(\"URL_BEFORE\").\"/requestApi/xinxi?type=queryRegisterInfoByName&jsonStr=\".$R_json);\r\n $R1 = json_decode($R1_json,true);\r\n //echo C(\"URL_BEFORE\").\"/requestApi/xinxi?type=queryRegisterInfoByName&jsonStr=\".$R_json;\r\n //var_dump($R1);\r\n $R['total'] = $R1[0]['totalNum'];\r\n $R['rows'] = mymArrsort($R1,'zfsj');\r\n $this->ajaxReturn ($R);*/\r\n $dd = I('dd');//大队\r\n $zd = I('zd');//中队\r\n $cz = I('cz');//车组\r\n $num = I('num');//稽查编号\r\n $startTime = I('startTime');//起始时间\r\n $endTime = I('endTime');//结束时间\r\n $driverName = I('driverName');//驾驶员姓名\r\n $vName = I('vName');//车牌号码\r\n $corpName = I('corpName');//企业名称\r\n $cyzg = I('cyzg');//准驾证号\r\n $sort = I('sort');//排序字段\r\n $sortOrder = I('sortOrder');//排序方式\r\n // $c['zfzh'] = $_SESSION['admin']['name'];\r\n /*if($sort != ''){\r\n $c['sortOrder'] = $sort.'%20'.$sortOrder;\r\n }else{\r\n $c['sortOrder'] = 'ID%20'.$sortOrder;\r\n }*/\r\n\r\n //{\"driverName\":\"白生志\",\"cyzg\":\"267626\",\"vName\":\"京BU1872\",\"startTime\":\"1471366800\",\"endTime\":\"1471446000\",\"dd\":\"北京市交通执法总队首都机场执法大队\",\"zd\":\"一中队\",\"cz\":\"一车组\",\"num\":\"123\",\"corpName\":\"京东\",\"startIndex\":0,\"endIndex\":5}\r\n /*if($dd != '全部'){\r\n $c['dd'] = $dd;\r\n }else{\r\n $c['dd'] = '';\r\n }\r\n if($zd != '全部'){\r\n $c['zd'] = $zd;\r\n }else{\r\n $c['zd'] = '';\r\n }\r\n if($cz != '全部'){\r\n $c['cz'] = $cz;\r\n }else{\r\n $c['cz'] = '';\r\n }*/\r\n\r\n\r\n if($driverName != ''){\r\n $c['driverName'] = $driverName;\r\n }else{\r\n $c['driverName'] = '';\r\n }\r\n if($cyzg != ''){\r\n $c['cyzgz'] = $cyzg;\r\n }else{\r\n $c['cyzgz'] = '';\r\n }\r\n if($vName != ''){\r\n $c['vname'] = $vName;\r\n }else{\r\n $c['vname'] = '';\r\n }\r\n /*if($num != ''){\r\n $c['num'] = $num;\r\n }else{\r\n $c['num'] = '';\r\n }*/\r\n if($corpName != ''){\r\n $c['corpName'] = $corpName;\r\n }else{\r\n $c['corpName'] = '';\r\n }\r\n\r\n\r\n $c['startTime'] = strtotime($startTime);\r\n $c['endTime'] = strtotime($endTime);\r\n\r\n $offset = I('offset');\r\n $maxrows = I('maxrows');\r\n $limit = I('limit');\r\n $c['startIndex'] = $offset;\r\n $c['endIndex'] = $maxrows+$offset;\r\n\r\n //2017-05-08\r\n $c['totalNum'] = 0;\r\n $c['hylb'] = '';\r\n $c['code'] = '';\r\n $c['cyzgz'] = '';\r\n $c['zfdwmc'] =I('dd');\r\n $c['zfry1'] = '';\r\n $c['status'] = '';\r\n $c['sszd'] = '';\r\n $c['sscz'] = '';\r\n $c['zfzh'] = $_SESSION['admin']['name'];\r\n\r\n $arr_json = json_encode($c);\r\n //$R_json = postHttp(C(\"URL_BEFORE\").\"/requestApi/xinxi?type=getRegisterInfoByName_Attach&jsonStr=\".$arr_json);\r\n $R_json = postHttp(C(\"URL_BEFORE\").\"/requestApi/xinxi?type=getRegisterInfoByName&jsonStr=\".$arr_json);\r\n //requestApi/xinxi?type=getRegisterInfoByName&jsonStr={\"totalNum\":0,\"startIndex\":0,\"endIndex\":10,\"vname\":null,\"driverName\":null,\"corpName\":null,\"hylb\":null,\"code\":null,\"cyzgz\":null,\"zfdwmc\":null,\"startTime\":\"2649618\",\"endTime\":\"1484464990\",\"zfry1\":null,\"zfzh\":\"11131009\",\"status\":null,\"sszd\":null,\"sscz\":null}\r\n //10.212.160.180:9876/requestApi/xinxi?type=getRegisterInfoByName&jsonStr={\"driverName\":\"\",\"cyzgz\":\"\",\"vname\":\"\",\"corpName\":\"\",\"startTime\":1467302400,\"endTime\":1499070451,\"startIndex\":\"0\",\"endIndex\":10,\"totalNum\":0,\"hylb\":\"\",\"code\":\"\",\"zfdwmc\":\"\",\"zfry1\":\"\",\"status\":\"\",\"sszd\":\"\",\"sscz\":\"\",\"zfzh\":\"0000000\"}\r\n //echo C(\"URL_BEFORE\").\"/requestApi/xinxi?type=getRegisterInfoByName&jsonStr=\".$arr_json;\r\n $R = json_decode($R_json,true);\r\n\r\n $Rz['rows'] = mymArrsort($R,'zfsj');\r\n $Rz['total'] = $R[0]['totalNum'];\r\n //p($R['rows']);\r\n $this->ajaxReturn ($Rz);\r\n }", "public function _loadService($service, $data)\n {\n //$this->_options['url2'] = WSGENCIP;\n //$this->_options['url3'] = WSCRYPTAB;\n \n switch($service){ \n case 'GenerarCIPMod1': $url = $this->_options['url2'];break; \n case 'BlackBox': $url = $this->_options['url3']; \n break; \n default : $url = $this->_options['url']; break;\n } \n\n try{\n \n $soap = new \\SoapClient($url); \n//var_dump($soap); echo '<br><br>';\n $info = $soap->$service($data); \n return $info;\n } catch (Exception $e){ var_dump($e);\n return false;\n }\n }", "abstract public function LowAjax();", "function _uc_parsian_soap_call($soap_method, $soap_params, $soap_options = NULL) {\n // Settings default SOAP options, if not yet set.\n if (is_null($soap_options)) {\n $soap_options = array(\n 'style' => 'rpc',\n 'use' => 'encoded',\n );\n }\n\n // Getting a DrupalSoapClient instance.\n $soap_server = variable_get('uc_parsian_soap_server', 'https://www.pec24.com/pecpaymentgateway/eshopservice.asmx?wsdl');\n $soap_client = soapclient_init_client($soap_server, TRUE, $soap_options);\n\n // Checking instantiation errors.\n if (!empty($soap_client['#error'])) {\n _uc_parsian_log_error(t('Could not connect to Parsian webservice.'));\n }\n\n return $soap_client['#return']->call($soap_method, $soap_params);\n}", "public function run()\n\t\t{\n\t\t\tswitch ($_GET['act']) {\n\t\t\t\tcase 'create':\n\t\t\t\t\t//Crear \n\t\t\t\t\t$this->create();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'lists':\n\t\t\t\t\t//Crear \n\t\t\t\t\t$this->lists();\n\t\t\t\t\tbreak;\t\n\t\t\t\tcase 'listsDetails':\n\t\t\t\t\t//Crear \n\t\t\t\t\t$this->listsDetails();\n\t\t\t\t\tbreak;\t\n\t\t\t\tcase 'get':\n\t\t\t\t\t//Obtener una Remision\n\t\t\t\t\t$this->getRemision();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'getFolio':\n\t\t\t\t\t$this->getFolio();\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tif ($this->api) {\n\t\t\t\t\t\techo $this->json_encode(array('error'=>SERVICIO_INEXISTENTE,'data'=>NULL,'mensaje'=>'Este servicio no está disponible'));\n\t\t\t\t\t}else{\n\t\t\t\t\t\t//CARGAR VISTA DE SERVICIO INEXISTENTE\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}", "private function CallWSAA2($CMS)\n {\n $client=$this->conectarCliente(self::$WSDL);\n \n $results=$client->loginCms(array('in0'=>$CMS));\n file_put_contents(\"request-loginCms.xml\",$client->__getLastRequest());\n file_put_contents(\"response-loginCms.xml\",$client->__getLastResponse());\n $error=\"\";\n if (is_soap_fault($results)) \n {\n \tswitch ($results->faultcode)\n \t{\n \t\tcase 'HTTP':{\n \t\t\t$error='No hay conexión a internet, por favor chequee y vuelva a internarlo';\n \t\t}\n \t\t\n \t}\n print_r($results->faultcode);\n if($results->faultcode==\"ns1:cms.cert.untrusted\")\n echo \"En WSAA, descartando que se este usando el certificado del ambiente incorrecto (certificado de homologación en producción y viceversa), es necesario que el certificado y CUIT estén habilitados para acceder al servicio web especificado (wsfe, wsfex, wsbfe, wsctg, wDigDepFiel, etc.). No es suficiente generar el certificado (en homologación o en producción), hay que solicitar explicitamente acceso al servicio requerido: ver Asociación de Certificado\n\nLos servicios no relacionados a factura electrónica, en producción tienen otros métodos para asociar los certificados.\n\nVer Comprobación de Autenticación WSAA con información para determinar o depurar el problema de acceso.\n\nMensajes de Error Original:<br>\n\nComputador no autorizado a acceder los servicios de AFIP (ns1:coe.notAuthorized)<br>\nCertificado no emitido por AC de confianza (ns1:cms.cert.untrusted)\".'<br>';\n exit(1);\n }\n return $client;\n }", "public function processGetDataRegister() {\n $registered = $this->isRegistered();\n if($registered==\"no\") {\n $this->errMsg = \"Your Elastix Server is not registered\";\n return null;\n }\n \n //2do. obtengo datos desde el webservice\n $dataWebService = $this->getDataServerRegistration();\n if($dataWebService) {\n $updtData = array();\n $updtData[0] = $dataWebService['contactNameReg'];\n $updtData[1] = $dataWebService['emailReg'];\n $updtData[2] = $dataWebService['phoneReg'];\n $updtData[3] = $dataWebService['companyReg'];\n $updtData[4] = $dataWebService['addressReg'];\n $updtData[5] = $dataWebService['cityReg'];\n $updtData[6] = $dataWebService['countryReg'];\n $updtData[7] = $dataWebService['idPartnerReg'];\n $updtData[8] = $dataWebService['has_account'];\n $updtData[9] = 1;\n\n //3ero. Mantengo la base local actualizada, puede darse que desde la \n //administración del cloud.elastix.com haya cambiado.\n if (!$this->updateDataRegister($updtData)) {\n $this->errMsg = \"There are some problem with the local database. Information cannot be saved in database.\";\n } \n return $dataWebService;\n }\n else {\n //4to. obtengo datos desde la base local\n $this->errMsg = \"Impossible connect to Elastix Web services. Please check your internet connection. Showing local information cache.\";\n $dataLocalCache = $this->getDataLocalRegister();\n \n if($dataLocalCache) {\n $dataLocalCache['identitykeyReg'] = file_get_contents(\"/etc/elastix.key\");\n return $dataLocalCache;\n }\n else {\n $this->errMsg = \"Unable to get local information cache. Nor from Elastix Web services.\";\n return null;\n } \n }\n }", "public function soapServerAction()\n {\n\t\t$server = new soap_server();\n\t\t// Initialize WSDL support\n\t\t$server->configureWSDL('hellowsdl', 'urn:hellowsdl');\n\t\n\t\t// Register the method to expose\n\t\t$server->register('hello', // method name\n array('name' => 'xsd:string'), // input parameters\n array('return' => 'xsd:string'), // output parameters\n 'urn:hellowsdl', // namespace\n 'urn:hellowsdl#hello', // soapaction\n 'rpc', // style\n 'encoded', // use\n 'Says hello to the caller' // documentation\n );\n\n\t\t// Use the request to (try to) invoke the service\n\t\t$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';\n\t\t$server->service($HTTP_RAW_POST_DATA);\n }", "public function index()\n {\n $pn = Input::get('pn');\n $cnt = Input::get('cnt');\n $selectItem = Input::get('selectItem');\n $status = Input::get('zhuangtai');\n if(!$pn){\n $pn = 1;\n }\n $client = new Client ([\n 'base_uri' => $this->base_url,\n\n ]);\n $response = $client->request('GET', '/api/contract/sf/list',[\n 'query'=>[\n 'pn'=>$pn,\n 'cnt'=>$cnt,\n 'selectItem'=>$selectItem,\n 'status'=>$status,\n ]\n ]);\n echo $response->getBody();\n }", "function get_inbound_list($parms)\r\n{\r\n global $mydb;\r\n\r\n // dereference function parameters\r\n \r\n foreach($parms as $key=>$val)\r\n {\r\n $$key = \"$val\";\r\n $s .= \"$key = $val , \";\r\n }\r\n\r\n \r\n // return new soap_fault(\"Client\", \"\", $s);\r\n\r\n // Build the ORDER BY clause for the SQL statement...\r\n if($order_by != \"\")\r\n {\r\n $order_clause = \" order by $order_by $order_dir \";\r\n }\r\n else\r\n {\r\n $order_clause = \" order by seq desc\";\r\n }\r\n \r\n //return new soap_fault(\"Client\", \"\", $order_clause);\r\n \r\n // Build the WHERE clause for the SQL statement...\r\n\r\n //return new soap_fault(\"Client\", \"\", htmlspecialchars($end_sql));\r\n\r\n $sql_query = array();\r\n\r\n if ($company == \"\")\r\n {\r\n return new soap_fault(\"Client\", \"\", \"Company parameter is required\");\r\n }\r\n\r\n $sql = \"select a.seq,\r\n a.carinit, \r\n a.carnum,\r\n a.inbound_group,\r\n a.train_id,\r\n a.owner,\r\n b.name as owner_name,\r\n a.inbound_date,\r\n (d.track || '/' ||d.track_pos) as track,\r\n a.repair_comp_date,\r\n c.inbound_status as inbound_status_desc\r\n from ${company}inbound a left outer join \r\n (select * from car_track_loc where company = '${company}') d \r\n on (a.carinit = d.carinit and a.carnum = d.carnum),\r\n customers b, inbound_statuses c \r\n where a.owner = b.customer\r\n and a.inbound_status = c.inbound_status_id\";\r\n $sql .= \" and rownum < 7000\"; // limit the number of records returned (to avoid out of memory condition)\r\n $select = \" seq,\r\n carinit,\r\n carnum,\r\n inbound_group,\r\n train_id,\r\n owner,\r\n owner_name,\r\n to_char(inbound_date, 'MM/DD/YYYY') as inbound_date,\r\n track,\r\n to_char(repair_comp_date, 'MM/DD/YYYY') as repair_comp_date,\r\n inbound_status_desc\r\n \";\r\n \r\n $sql_text = \"select $select from ($sql) $order_clause\";\r\n\r\n //return new soap_fault(\"Client\", \"\", htmlspecialchars($sql_text));\r\n //return new soap_fault(\"Client\", \"\", htmlspecialchars($sql));\r\n\r\n/*\r\n$fp = fopen(\"/tmp/ws.log\", \"w\");\r\nfputs($fp, $sql_text . \"\\n\");\r\nfclose($fp);\r\n*/\r\n\r\n $qry = $mydb->query($sql_text);\r\n $xml_res = $qry->get_result_xml(\"main\", \"rec\", $start, $stop);\r\n\r\n // Create a new soap val object here...\r\n $myval = new soapval('', 'xml', $xml_res);\r\n\r\n // And return it...\r\n return $myval;\r\n}", "private function initSoap()\n {\n $options = array(\n 'soap_version' => SOAP_1_1,\n 'stream_context' => $this->container->getParameter('aspone.context'),\n 'authentification' => SOAP_AUTHENTICATION_BASIC,\n 'trace' => 1\n );\n $soap = new SoapClient($this->container->getParameter('aspone.wsdl.monitoring'), $options);\n\n $soap->setContext($this->container->getParameter('aspone.context'));\n $soap->setContextLogin($this->container->getParameter('aspone.contextLogin'));\n $soap->setContextPassword($this->container->getParameter('aspone.contextPassword'));\n $soap->setPassword($this->container->getParameter('aspone.password'));\n $soap->setUsername($this->container->getParameter('aspone.username'));\n $soap->setService($this->container->getParameter('aspone.serviceVersion.0'));\n $soap->setServiceVersion('1.0');\n $soap->setSoapHeaders();\n $soap->__setLocation($this->container->getParameter('aspone.location.monitoring'));\n\n $this->soap = $soap;\n }", "public function importmagento()\n {\n $base_url=\"http://myshoes.fastcomet.host/Magentos/\";\n //API user\n $user=\"apiuser\";\n //API key\n $password=\"81eRvINu9r\";\n\n\n $api_url=$base_url.'index.php/api/soap/?wsdl';\n $client = new SoapClient($api_url);\n $session = $client->login($user,$password);\n\n $params = array(array(\n 'status'=>array('eq'=>'enabled')\n ));\n\n $result1 = $client->call($session, 'catalog_product.list');\n\n $i=0;\n foreach($result1 as $key => $value)\n {\n $result2 = $client->call($session, 'catalog_product.info',$result1[$key]['product_id']);\n $result3 = $client->call($session, 'cataloginventory_stock_item.list',$result1[$key]['product_id']);\n $arr[$i]['Product']['product_id']=$result1[$key]['product_id'];\n $arr[$i]['Product']['name']=$result1[$key]['name'];\n $arr[$i]['Product']['description']=$result2['description'];\n $arr[$i]['Product']['uom']='';\n $arr[$i]['Product']['category']= '';\n $arr[$i]['Product']['group']='';\n $arr[$i]['Product']['sku']=$result1[$key]['sku'];\n $arr[$i]['Product']['value']= number_format((float)$result2['price'], 2, '.', '');\n $arr[$i]['Product']['reorderpoint']='';\n $arr[$i]['Product']['safetystock']='';\n $arr[$i]['Product']['bin']='';\n $arr[$i]['Product']['imageurl']='';\n $arr[$i]['Product']['pageurl']=$base_url.$result2['url_path'];\n $arr[$i]['Product']['weight']= number_format((float)$result2['weight'], 2, '.', '');\n $arr[$i]['Product']['height']='';\n $arr[$i]['Product']['width']='';\n $arr[$i]['Product']['depth']='';\n $arr[$i]['Product']['barcodesystem']='';\n $arr[$i]['Product']['barcode_number']='';\n $arr[$i]['Product']['packaginginstructions']='';\n $arr[$i]['Product']['color']='';\n $arr[$i]['Product']['size']='';\n $arr[$i]['Inventory']['inventoryquantity']=$result3[0]['qty'];\n $arr[$i]['Product']['createdinsource']=$result2['created_at'];\n $arr[$i]['Product']['modifiedinsource']=$result2['updated_at'];\n $i++;\n }\n $this->importcsv(null, $arr);\n return $this->redirect(array('controller' => 'products', 'action' => 'index'));\n }", "public function testComDayCqAnalyticsTestandtargetImplServiceWebServiceImpl()\n {\n $client = static::createClient();\n\n $path = '/system/console/configMgr/com.day.cq.analytics.testandtarget.impl.service.WebServiceImpl';\n\n $crawler = $client->request('POST', $path);\n }", "function restAction()\n {\n $this->disableLayout();\n $this->_helper->viewRenderer->setNoRender();\n\n $request_data = $this->_getAllParams();\n\n $method_name = $this->_getParam('method');\n if(!isset($method_name))\n {\n echo \"Inconsistent request\";\n exit;\n }\n\n $request_data = $this->_getAllParams();\n // Handle XML-RPC request\n $this->kwWebApiCore = new KwWebApiRestCore($this->apiSetup, $this->apicallbacks, $request_data);\n }", "function createPWSSOAPClient()\n{\n //Set the parameters for the Non-WSDL mode SOAP communication with your Development/Production credentials\n $client = new SoapClient( \"./wsdl/PickUpService.wsdl\", \n array\t(\n 'trace'\t\t\t=>\ttrue,\t\t\t\t \n\t\t\t\t 'location'\t=>\t\"https://devwebservices.purolator.com/EWS/V1/PickUp/PickUpService.asmx\",\t\t\t\t \n 'uri'\t\t\t\t=>\t\"http://purolator.com/pws/datatypes/v1\",\n 'login'\t\t\t=>\tPRODUCTION_KEY,\n 'password'\t=>\tPRODUCTION_PASS\n )\n );\n //Define the SOAP Envelope Headers\n $headers[] = new SoapHeader ( 'http://purolator.com/pws/datatypes/v1', \n 'RequestContext', \n array (\n 'Version' => '1.2',\n 'Language' => 'en',\n 'GroupID' => 'xxx',\n 'RequestReference' => 'Rating Example'\n )\n ); \n //Apply the SOAP Header to your client \n $client->__setSoapHeaders($headers);\n\n return $client;\n}", "public function service() {\n\t\t\t\n\t\t//Set the parameters for the charset handler\n\t\tCharsetHandler::setMethod($this->_charsetMethod);\n\t\tCharsetHandler::setPhpCharset($this->_charsetPhp);\n\t\tCharsetHandler::setSqlCharset($this->_charsetSql);\n\t\t\n\t\t//Attempt to call charset handler to catch any uninstalled extensions\n\t\t$ch = new CharsetHandler('flashtophp');\n\t\t$ch->transliterate('?');\n\t\t\n\t\t$ch2 = new CharsetHandler('sqltophp');\n\t\t$ch2->transliterate('?');\n\t\t\n\t\t$GLOBALS['amfphp']['actions'] = $this->actions;\n\t\t\n\t\tif(! isset($GLOBALS['HTTP_RAW_POST_DATA'])){\n\t\t\t$GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents('php://input');\n\t\t}\n\t\t$raw_data = $GLOBALS[\"HTTP_RAW_POST_DATA\"];\n\t\tif(! isset($raw_data[0])){\n\t\t\techo \"<p>amfphp and this gateway are installed correctly. You may now connect \", \"to this gateway from Flash.</p>\";\n\t\t\texit(0);\n\t\t}\n\t\t//Enable loose mode if requested\n\t\tif($this->_looseMode){\n\t\t\tob_start();\n\t\t}\n\t\t\n\t\t$amf = new AMFObject($raw_data); // create the amf object\n\t\t\n\n\t\tforeach($this->filters as $filter){\n\t\t\t$filter($amf); // invoke the first filter in the chain\n\t\t}\n\t\t\n\t\t$output = $amf->outputStream; // grab the output stream\n\t\t\n\n\t\t//Clear the current output buffer if requested\n\t\tif($this->_looseMode){\n\t\t\tob_end_clean();\n\t\t}\n\t\t\n\t\t//Send content length header\n\t\theader('Content-type: application/x-amf'); // define the proper header\n\n\t\t// write header for no browser cache the amf data\n\t\theader('Expires: '. gmdate('D, d M Y H:i:s', time() - 86400).' GMT');\n\t\theader(\"Pragma: no-store\");\n\t\theader(\"Cache-Control: no-store\");\n\n\t\t$doCompress = false;\n\t\t$outputCompression = ini_get(\"zlib.output_compression\");\n\t\tif(! $outputCompression){\n\t\t\tif($this->_enableGzipCompression && strlen($output) > $this->_gzipCompressionThreshold && extension_loaded(\"zlib\") && strpos(\n\t\t\t\t\t$_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE){\n\t\t\t\t$doCompress = true;\n\t\t\t\tob_start();\n\t\t\t\tob_start('ob_gzhandler');\n\t\t\t}\n\t\t\telse{\n\t\t\t\theader(\"Content-length: \" . strlen($output));\n\t\t\t}\n\t\t}\n\t\t\n\t\tprint($output); // flush the binary data\n\n\t\tif($doCompress){\n\t\t\tob_end_flush();\n\t\t\theader(\"Content-length: \" . ob_get_length());\n\t\t\tob_end_flush();\n\t\t}\n\t}", "public function __construct($_personName = NULL,$_contactInfo = NULL,$_tINInfo = NULL,$_birthDt = NULL,$_birthState = NULL,$_birthCountry = NULL,$_deathDt = NULL,$_driversLicense = NULL,$_mothersMaidenName = NULL,$_spouseInfo = NULL,$_employmentHistory = NULL,$_schoolInfo = NULL,$_physicalCharacteristics = NULL,$_citizenship = NULL,$_languageSpoken = NULL,$_message = NULL,$_quality = NULL,$_birthCity = NULL,$_nationality = NULL,$_affiliation = NULL,$_validationInfo = NULL,$_recordID = NULL,$_militaryIdInfo = NULL,$_passportInfo = NULL,$_childrenInfo = NULL,$_hometownArea = NULL,$_relationshipStatus = NULL,$_orientation = NULL,$_aKAInfo = NULL,$_zodiac = NULL,$_birthYear = NULL)\n {\n MicrobiltWsdlClass::__construct(array('PersonName'=>$_personName,'ContactInfo'=>$_contactInfo,'TINInfo'=>$_tINInfo,'BirthDt'=>$_birthDt,'BirthState'=>$_birthState,'BirthCountry'=>$_birthCountry,'DeathDt'=>$_deathDt,'DriversLicense'=>$_driversLicense,'MothersMaidenName'=>$_mothersMaidenName,'SpouseInfo'=>$_spouseInfo,'EmploymentHistory'=>$_employmentHistory,'SchoolInfo'=>$_schoolInfo,'PhysicalCharacteristics'=>$_physicalCharacteristics,'Citizenship'=>$_citizenship,'LanguageSpoken'=>$_languageSpoken,'Message'=>$_message,'Quality'=>$_quality,'BirthCity'=>$_birthCity,'Nationality'=>$_nationality,'Affiliation'=>$_affiliation,'ValidationInfo'=>$_validationInfo,'RecordID'=>$_recordID,'MilitaryIdInfo'=>$_militaryIdInfo,'PassportInfo'=>$_passportInfo,'ChildrenInfo'=>$_childrenInfo,'HometownArea'=>$_hometownArea,'RelationshipStatus'=>$_relationshipStatus,'Orientation'=>$_orientation,'AKAInfo'=>$_aKAInfo,'Zodiac'=>$_zodiac,'BirthYear'=>$_birthYear),false);\n }", "public function indexAction()\n {\n $this->_helper->viewRenderer->setNoRender(true);\n\n // On configure le serveur du Web Service\n $server = new SDIS62_Rest_Server;\n $server->setClass(\"Start_Service_Api\");\n $server->handle();\n }", "function searchEventsDetailsBasicFormating($keyWordParams) {\r\t$resultString = '';\r\t$keyWordParams['websiteConfigID'] = WEB_CONF_ID;\r\tif($keyWordParams['searchTerms']) {\r\t\t$client = new SoapClient(WSDL);\r\t\t$result = $client -> __soapCall('SearchEvents', array('parameters' => $keyWordParams));\r\t\tif(is_soap_fault($result)) {\r\t\t\techo '<h2>Fault</h2><pre>';\r\t\t\tprint_r($result);\r\t\t\techo '</pre>';\r\t\t}\r\n\t\t$eventDetails=\"\";\r\t\tif(empty($result)){\r\t\t\treturn \"No results match the specified terms\";\r\t\t}else {\r\n\t\t\tfor($q=0;$q<count($result->SearchEventsResult->Event);$q++){\r\n\t\t\t\t$resultsObj=$result->SearchEventsResult->Event[$q];\r\n\t\t\t\t$eventDetails.=\"<b>ID: </b>\".$resultsObj->ID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>Name: </b>\".$resultsObj->Name.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>Date: </b>\".$resultsObj->Date.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>DisplayDate: </b>\".$resultsObj->DisplayDate.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>Venue: </b>\".$resultsObj->Venue.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>City: </b>\".$resultsObj->City.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>StateProvince: </b>\".$resultsObj->StateProvince.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>ParentCategoryID: </b>\".$resultsObj->ParentCategoryID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>ChildCategoryID: </b>\".$resultsObj->ChildCategoryID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>GrandchildCategoryID: </b>\".$resultsObj->GrandchildCategoryID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>MapURL: </b>\".$resultsObj->MapURL.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>VenueID: </b>\".$resultsObj->VenueID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>StateProvinceID: </b>\".$resultsObj->StateProvinceID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>VenueConfigurationID: </b>\".$resultsObj->VenueConfigurationID.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>Clicks: </b>\".$resultsObj->Clicks.\"<br>\";\r\n\t\t\t\t$eventDetails.=\"<b>IsWomensEvent: </b>\".$resultsObj->IsWomensEvent.\"<br><br>\";\r\n\t\t\t}\r\n\t\t\tunset($client);\r\n\t\t\treturn $eventDetails;\r\t\t}\r\t}\r}" ]
[ "0.6391862", "0.6313832", "0.62458795", "0.62365067", "0.6197738", "0.6187833", "0.61837554", "0.61815447", "0.6122359", "0.6115004", "0.60582644", "0.5985138", "0.5983006", "0.59538275", "0.5948598", "0.58996594", "0.58937776", "0.5855578", "0.5852349", "0.5851462", "0.58461213", "0.58426064", "0.5839471", "0.58292997", "0.58196443", "0.5802513", "0.57968956", "0.57925594", "0.57915616", "0.57547206", "0.57441133", "0.574262", "0.57386154", "0.57238674", "0.5715911", "0.5708308", "0.5700183", "0.5683402", "0.56762844", "0.5669367", "0.5641472", "0.56395304", "0.5632742", "0.56287915", "0.5628494", "0.56258005", "0.56229514", "0.56153095", "0.5611305", "0.56088936", "0.5600269", "0.5591778", "0.55896974", "0.55879104", "0.55785465", "0.5569704", "0.5562976", "0.55365473", "0.55320716", "0.55302167", "0.55222404", "0.55209076", "0.55081123", "0.5499705", "0.54919475", "0.5484771", "0.54746455", "0.54607666", "0.54499286", "0.54400605", "0.54388005", "0.54356056", "0.54325014", "0.5428919", "0.5418708", "0.5417147", "0.5410067", "0.54059917", "0.5403749", "0.54031694", "0.5402343", "0.5401251", "0.53959537", "0.53943264", "0.5384339", "0.53759885", "0.5370987", "0.5363326", "0.5354582", "0.53539944", "0.5351648", "0.5343866", "0.5341411", "0.533829", "0.5336595", "0.5332531", "0.5323832", "0.53213745", "0.53021026", "0.53013074" ]
0.5888982
17
function getListClientBySAP / Code to get Atention users by series
public static function getUserToSend(Mysql $mysql, $series, $idrole){ $mailtosend = ""; $q = "SELECT dsemail FROM tcuser WHERE series = $series AND fnidrole = $idrole"; $data = $mysql->execute($q); for($i=0; $i<count($data); $i++){ $mailtosend.= $data[$i]->dsemail.","; } return $mailtosend; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function return_listClientByMel($mel = null)\n{\n $tabRet = listUnique(\"bav_client\", \"cli_emel\", $mel);\n return $tabRet;\n}", "public function getUsers(){\n\t\t\n\t\t$ar = array();\n\t\t\n\t\t$result = $this->adapter->query(\"select * from vemplist order by ctct_name\")->execute();\n\t\t\n\t\tforeach ($result as $row) \n\t\t\t{\n\t\t\t\t$ar[$row['emp_id']]=$row['ctct_name'];\n\t\t\t}\n\t\t\n\t\treturn $ar;\n\t}", "function REST_getClientData($fenixClient){\n\t$user = (array)$fenixClient->getPerson();\n\treturn $user; \n}", "public function getUsersList()\n {\n }", "public function actionGetClientUsersList()\n {\n if (Yii::app()->request->isAjaxRequest && isset($_POST['clientId'])) {\n $clientId = $_POST['clientId'];\n $client = Clients::model()->with('company', 'users')->findByPk($clientId);\n $client_users = $client->users;\n $userTypes = array();\n if ($client_users) {\n foreach ($client_users as $key => $cuser) {\n $uClRow = UsersClientList::model()->findByAttributes(array(\n 'User_ID'=>$cuser->User_ID,\n 'Client_ID'=>$clientId,\n ));\n $this->clientAdmins[$cuser->User_ID] = $uClRow->hasClientAdminPrivileges() ? 1 : 0;\n\n if ($uClRow->User_Type == UsersClientList::CLIENT_ADMIN) {\n $userTypes[$cuser->User_ID] = 'Cl. Admin';\n } else {\n $userTypes[$cuser->User_ID] = $uClRow->User_Type;\n }\n }\n usort($client_users, array($this, 'sortClientUsers'));\n }\n\n $this->renderPartial('client_users_list' , array(\n 'client_users' => $client_users,\n 'userTypes' => $userTypes,\n ));\n }\n }", "function get_users()\n {\n //Unimplemented\n }", "function getUsers(){\n }", "function getUsers(){\n }", "public function getPartinUsersList(){\n return $this->_get(2);\n }", "public static function getListClientBySAP($_filter){\n\n\t\t$listclient = array();\n\t\ttry {\n\t\t\t/*codigo para consumor ws soap*/\n\t\t\t\t$client = new SoapClient(URLWS);\n\t\t\t\t$params = array('_filter' => $_filter);\n\t\t\t\t$result = $client->ListCustomer($params);\n\n\t\t\t\tfor($i=0; $i<count($result->ListCustomerResult->ClientResponse); $i++){\n\t\t\t\t\t $listclient[$i] = $result->ListCustomerResult->ClientResponse[$i]->CardCode.\"|\".htmlentities($result->ListCustomerResult->ClientResponse[$i]->CardName);\n\t\t\t\t}\n\n\t\t\t} catch (Exception $e) {\n\t\t\t\ttrigger_error($e->getMessage(), E_USER_WARNING);\n\t\t\t}\n\t\treturn $listclient;\n\t}", "public static function getClients($paging) {\n global $login;\n /*\n $sql = \"SELECT c.client_id, c.user_group_id, c.uid, c.last_name, c.first_name, c.sex, c.birth, c.img, c.date_created, c.active, c.cdata1, c.cdata2, c.cdata3, c.cdata4, c.cdata5, c.cdata6, c.cdata7, c.middle_name, c.notes, c.deceased, c.active, cu.date, cu.type, cu.id, cu.descr\"\n . \" FROM clients c LEFT JOIN client_updates cu ON c.client_id=cu.client_id\"\n . \" WHERE user_group_id=\" . $login->userGroupId . \" AND \" . $paging->buildSql();\n */\n $sql = \"SELECT c.client_id, c.user_group_id, c.uid, c.last_name, c.first_name, c.sex, c.birth, c.img, c.date_created, c.active, c.cdata1, c.cdata2, c.cdata3, c.cdata4, c.cdata5, c.cdata6, c.cdata7, c.middle_name, c.notes, c.deceased, c.active, cu.date, cu.type, cu.id, cu.descr\"\n . \" FROM clients c LEFT JOIN client_updates cu ON c.client_id=cu.client_id\"\n . \" WHERE user_group_id=\" . $login->userGroupId . \" AND \" . $paging->buildSql();\n $res = query($sql);\n $clients = array();\n while ($row = mysql_fetch_array($res, MYSQL_ASSOC)) {\n $client = SchedDao::buildJClient($row, false);\n $client->events = array();\n $client->events[] = SchedDao::buildJClientEventFromUpdate($row);\n $clients[] = $client;\n }\n return $clients;\n }", "function getClientList()\n\t{\n\t\t//Update Client List\n\t\t$this->Client_List = null;\n\t\t$assigned_clients_rows = returnRowsDeveloperAssignments($this->getUsername(), 'Client');\n\t\tforeach($assigned_clients_rows as $assigned_client)\n\t\t\t$this->Client_List[] = new Client( $assigned_client['ClientProjectTask'] );\n\t\t\n\t\treturn $this->Client_List;\n\t}", "public function getLTIUsers();", "public function clients()\n {\n return $this->morphedByMany(Client::class, 'model', 'authorizables')\n ->withPivot('user_id')\n ->withTimestamps();\n }", "public function accessList()\n {\n $this->startBrokerSession();\n $user = null;\n\n $username = $this->getSessionData('sso_user');\n\n if ($username) {\n $accessList = $this->getAccessList($username);\n } else {\n return $this->fail(\"User not found\", 500); // Shouldn't happen\n }\n\n header('Content-type: application/json; charset=UTF-8');\n echo json_encode($accessList);\n }", "public function getClientList()\n {\n $clients = $this->find('all')\n ->select(['id', 'salutation', 'name'])\n ->where(['role' => 'client'])\n ->order(['name' => 'ASC']);\n $retval = [];\n foreach ($clients as $client) {\n $retval[$client->id] = $client->full_name;\n }\n\n return $retval;\n }", "public function getUsers();", "public function getUsers();", "public function getUsers();", "function retrieve_promoter_clients_list(){\n\t\t\n\t\t$this->CI->load->model('model_users_promoters', 'users_promoters', true);\n\t\t$clients = $this->CI->users_promoters->retrieve_promoter_clients_list($this->promoter->up_id, $this->promoter->team->t_fan_page_id);\n\t\tforeach($clients as $key => &$client){\n\t\t\t\n\t\t\tif($client->pglr_user_oauth_uid === null){\n\t\t\t\tunset($clients[$key]);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t\n\t\t\t$client = $client->pglr_user_oauth_uid;\n\t\t}\n\t\treturn $clients;\n\t\t\n\t}", "function monitor_list_users() {\n $query = \"select distinct(`wf_user`) from `\".GALAXIA_TABLE_PREFIX.\"instance_activities`\";\n $result = $this->query($query);\n $ret = Array();\n while($res = $result->fetchRow()) {\n $ret[] = $res['wf_user'];\n }\n return $ret;\n }", "public function getOrgUsers(){\n $return_array = array();\n $current_campaign=Yii::app()->session->get('current_campaign');\n $campaign = Definition::model()->findByPk($current_campaign);\n if($campaign){\n $users = Users::model()->findAllByAttributes(array('fk_org_id'=>$campaign->fk_org_id));\n foreach($users as $user){\n $return_array[$user->id] = $user->username;\n }\n }\n \n return $return_array;\n }", "private function getUserList()\n {\n $users = User::getUsers();\n $users = ArrayHelper::map($users, 'id', 'username');\n \n return $users;\n }", "public function getCompanyWithUsers();", "public function getIlinewhoList(){\n return $this->_get(1);\n }", "public function getList($user);", "public function userPortletEntries() {\n try {\n $client = new SoapClient($this->USER_PORTLETS_WHDL);\n $res = $client->getUserPortlet(array('userid' => $_SESSION['User']['id']));\n return $res;\n } catch (Zend_Exception $e) {\n var_dump($e);\n }\n }", "public function get_Clients() \n\t{\n\t\t$query = '';\n\t\t$result = '';\n\t\t$clients = array();\n\n\t\tswitch( $this->db_link->getDriver() )\n\t\t{\n\t\t\tcase 'sqlite':\n\t\t\tcase 'mysql':\n\t\t\tcase 'pgsql':\n\t\t\t\t$query = \"SELECT Client.ClientId, Client.Name FROM Client \";\n\t\t\t\tif( $this->bwcfg->get_Param( 'show_inactive_clients' ) )\n\t\t\t\t\t$query .= \"WHERE FileRetention > '0' AND JobRetention > '0' \"; \n\t\t\t\t$query .= \"ORDER BY Client.Name;\";\n\t\t\tbreak;\n\t\t}\n\n\t\t$result = $this->db_link->runQuery($query);\n\t\t\t\n\t\tforeach( $result->fetchAll() as $client )\n\t\t\t$clients[ $client['clientid'] ] = $client['name'];\n\t\t\t\t\n\t\treturn $clients;\t\t\n\t}", "function getAccountManagerList()\n {\n $stmt = \"SELECT\n cam_id,\n cam_prj_id,\n cam_customer_id,\n cam_type,\n usr_full_name\n FROM\n \" . APP_DEFAULT_DB . \".\" . APP_TABLE_PREFIX . \"customer_account_manager,\n \" . APP_DEFAULT_DB . \".\" . APP_TABLE_PREFIX . \"user\n WHERE\n cam_usr_id=usr_id\";\n $res = DB_Helper::getInstance()->getAll($stmt, DB_FETCHMODE_ASSOC);\n if (PEAR::isError($res)) {\n\t /** @var $res PEAR_Error */\n Error_Handler::logError(array($res->getMessage(), $res->getDebugInfo()), __FILE__, __LINE__);\n return \"\";\n } else {\n for ($i = 0; $i < count($res); $i++) {\n $res[$i]['customer_title'] = self::getTitle($res[$i]['cam_prj_id'], $res[$i]['cam_customer_id']);\n }\n return $res;\n }\n }", "function listadoClientes(){\n\t\t\t\n\t\t\t//SQL\n\t\t\t$query = \"SELECT * FROM users ORDER BY rol,id DESC;\";\n\t\t\t$rst = $this->db->enviarQuery($query,'R');\n\t\t\t\n\t\t\tif(@$rst[0]['id'] != \"\"){\n\t\t\t\treturn $rst;\n\t\t\t}else{\n\t\t\t\treturn array(\"ErrorStatus\"=>true);\n\t\t\t}\n\t\t}", "function get_clients_for_user($uid) {\r\n if ($clients = Clients::getClientsByUid($uid))\r\n return $clients;\r\n return false;\r\n}", "function Listar_Clientes()\n\t {\n\t\tlog_message('INFO','#TRAZA| CLIENTES | Listar_Clientes() >> ');\n\t\t$data['list'] = $this->Clientes->Listar_Clientes();\n return $data;\n\t }", "function clientListing()\n {\n $this->db->select('BaseTbl.userId , BaseTbl.email , BaseTbl.nom , BaseTbl.raisonSocial , BaseTbl.prenom , BaseTbl.cin , BaseTbl.ville , BaseTbl.mobile,BaseTbl.mobile2, BaseTbl.createdDtm, Role.role');\n $this->db->from('tbl_users as BaseTbl');\n $this->db->join('tbl_roles as Role', 'Role.roleId = BaseTbl.roleId','left');\n $this->db->where('BaseTbl.roleId =',4 );\n $this->db->order_by('BaseTbl.userId', 'DESC');\n $query = $this->db->get();\n \n $result = $query->result(); \n return $result;\n }", "public function listar_anuncios_interessadosByUser(){\n if(!isset($_SESSION))session_start();\n\n $cliente = unserialize($_SESSION['cliente']);\n\n return $this->anunciosDAO->selectAllInteresadosByUser($cliente->getId());\n }", "function get_user_list(){\n\t\treturn array();\n\t}", "public function getUserList()\n {\n $responseMap = $this->_postCommand(static::$COMMAND_GET_USER_LIST);\n \n // From the response, filter out only the users that matched this environment Prefix\n $userIdList = [];\n foreach ($responseMap['ids'] as $userId) {\n $unprefixedUserId = PrefixHelper::unprefix($userId);\n \n if ($unprefixedUserId !== false) {\n $userIdList[] = $unprefixedUserId;\n }\n }\n \n return $userIdList;\n }", "public function getUserAgendasAction()\n {\n $agenda = new Workapp_Agenda();\n $this->_helper->json($agenda->getAgendaList(array('user_id' => $this->getDeviceSession()->getUserId())));\n }", "public static function getClientWithManagerPrivileges()\r\n {\r\n $db = Zend_Registry::get(\"db\");\r\n\r\n $profile = new MemberProfile();\r\n\r\n $select = $profile->getSelectStatement();\r\n\r\n// $select->where('MP_IsDetaillant = ?', 1);\r\n $select->order('company');\r\n $select->order('lastName');\r\n $select->order('firstName');\r\n\r\n return $db->fetchAll($select);\r\n }", "function get_course_users() {\n\t\t$user_list = CourseManager::get_user_list_from_course_code ( api_get_course_id () );\n\t\treturn $user_list;\n\t}", "public function getAccountsList($hint, $uacc_uid=''){\r\n\t\t//format datetime into \"time ago\"\r\n\t\t$list = array();\r\n\r\n\t\tif($uacc_uid != '')\r\n\t\t\t$query = $this->db->select(\"company_id,company_name\")->like(\"company_name\", $hint)->where(array(\"created_by\"=>$uacc_uid,\"deleted\"=>0))->order_by(\"company_name\", \"asc\")->get(\"sc_companies\");\r\n\t\telse\r\n\t\t\t$query = $this->db->select(\"company_id,company_name\")->like(\"company_name\", $hint)->where(\"deleted\",0)->order_by(\"company_name\", \"asc\")->get(\"sc_companies\");\r\n\r\n\t if ($query->num_rows() > 0){\r\n\t\t\tforeach($query->result() as $row){\r\n\r\n\t\t\t\t$list[] = array(\"name\"=>$row->company_name, \"label\"=>$row->company_name, \"id\"=>$row->company_id);\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn $list;\r\n\t}", "public function actionGetClientUsersListApprValue()\n {\n if (Yii::app()->request->isAjaxRequest && isset($_POST['clientId'])) {\n $clientId = $_POST['clientId'];\n\n\n\n $_SESSION['tabs_to_auto_load']['client_users_list_appr_value'] = array('client_id'=> $clientId);\n $_SESSION['admin_active_tab']='us_appr_value';\n\n\n\n //$approvers_array = $this->getApproversArray($clientId);\n $approvers_array = UsersClientList::getApproversArray($clientId);\n $this->renderPartial('client_users_list_appr_value' , array(\n // 'client_users' => $client_users,\n 'approvers_array'=>$approvers_array,\n // 'admins_array'=>$admins_array,\n ));\n }\n }", "protected function getClients(){\n $clients = array();\n\n $user = User::getInstance();\n\n $uid = $user->getId();\n $mac = $user->getMac();\n\n if ($mac){\n RESTClient::$from = $mac;\n }elseif ($uid){\n RESTClient::$from = $uid;\n }else{\n RESTClient::$from = $this->stb->mac;\n }\n\n RESTClient::setAccessToken($this->createAccessToken());\n\n foreach ($this->storages as $name => $storage){\n $clients[$name] = new RESTClient('http://'.$storage['storage_ip'].'/stalker_portal/storage/rest.php?q=');\n }\n return $clients;\n }", "public function listClient()\n\t {\n\t\t$tab = array();\n\t\t\t$rqt = mysql_query(\"SELECT * FROM clients\");\n\t\t\twhile($data = mysql_fetch_assoc($rqt))\n\t\t\t\t$tab[] = $data;\n\t\t\treturn $tab;\n\t }", "function get_author_user_ids()\n {\n }", "public function getMembers()\n {\n \t$companyId = session('company_id');\n \t$userRepo = $this->em->getRepository('App\\Entity\\Management\\User');\n \t$users = $userRepo->getUsersByCompany($companyId);\n\n echo json_encode($users);\n\n }", "public function listClients(){\n $mysql= $this->database->databaseConnect();\n $sql = 'SELECT * FROM client';\n $query = mysqli_query($mysql, $sql) or die(mysqli_connect_error());\n $this->database->databaseClose();\n\n while($row = mysqli_fetch_assoc($query)){\n $this->clients[] = $row;\n }\n\n return $this->clients;\n }", "public static function listUsers()\n {\n //Init curl\n $curl = new curl\\Curl();\n\n // GET request to api\n $response = $curl->get(Yii::$app->params['listUsers']);\n\n $records = json_decode($response, true);\n\n foreach($records as $users){\n foreach($users as $user){\n $list[$user['id']] = $user['name'] . ' ' . $user['last_name'];\n }\n }\n\n return $list;\n }", "function client_index($clientId=null)\n\t{\n\t\tif($clientId == ''){\n\t\t\t// Get the logged-in client ID\n\t\t\t$clientId = $this->Auth->user('id');\n\t\t\t$this->set('chain_user','0');\n\t\t}else{\n\t\t\t$this->set('chain_user','1');\n\t\t}\n\n\t\t$clientArray = $this->User->getChildHotelsArray($clientId);\n\t\t$clientStr = implode(',', $clientArray);\n\t\t\n\t\tif ($this->data['User']['value']) {\n\t\t\t//debug($this->data);\n\t\t\t$search = trim($this->data['User']['value']);\n\n\t\t\t$this->set('search',$search);\n\n\t\t\t$condition = \"((User.username LIKE '%$search%') OR (User.firstname LIKE '%$search%') OR (User.lastname LIKE '%$search%')) AND (User.client_id IN ($clientStr) and User.status='1')\";\n\t\t\t$conditions = array(\n\t\t\t\t\t\t\t'OR' => array('User.username LIKE' => \"%$search%\", 'User.firstname LIKE' => \"%$search%\", 'User.lastname LIKE' => \"%$search%\"), \n\t\t\t\t\t\t\t'AND' => array('User.client_id IN' => $clientId)\n\t\t\t\t\t\t );\n\t\t} else {\n\t\t\t$condition = \"User.client_id IN ($clientStr) and User.status='1'\";\n\t\t\t$conditions = array('User.client_id IN' => $clientId);\n\t\t}\n\t\t// Find the paginated list of users\n\t\t$this->User->recursive = -1;\n $this->paginate['conditions'] = $condition;\n $users = $this->paginate();\n \n $child_data = $this->User->Client->find('list',\n array('conditions'=>\n array('OR'=>array('Client.parent_id'=>$clientId,'Client.id'=>$clientId),'Client.status'=>1)\n ,'fields'=>'id,hotelname','recursive'=>'0'));\n\n\t if(!empty($users)){\n\t\t$dep_user_obj = ClassRegistry::init('DepartmentsUser');\n\t\tfor($i=0;$i<count($users);$i++){\n\t\t $dept_data = $dep_user_obj->find('all',array('fields'=>'DepartmentsUser.department_name','conditions'=>array('DepartmentsUser.user_id'=>$users[$i]['User']['id'])));\n\t\t foreach($dept_data as $dept){\n\t\t\t $users[$i]['Department'][] = $dept['DepartmentsUser']['department_name'];\n\t\t }\t\t \n\t\t}\n\t }\n\n\t\t$this->set(compact('users','child_data'));\n\t}", "public static function listOnlineUsers() \n\t{\n\t\t$array = array(); \n\n\t\t$rst = \\Main\\DB::select(\"accounts_online\", \"user\");\n\t\twhile($row = $rst->fetch_object())\n\t\t{\n\t\t\t$accId = $row->user; \n\t\t\t$array[$accId] = self::getUserData($accId); \n\t\t}\n\t\t\n\t\treturn $array; \n\t}", "private function getUsersMailist() {\n $param = array(\n 'where' => 'registered = 1'\n );\n\n $users = $this->mailist->gets($param);\n\n return $users;\n }", "public function clients() {\n\t\treturn $this->clients_model->getClients($this->compID);\n\t}", "public function getAllClient() {\n $qb = $this ->createQueryBuilder('p')\n ->select('p')\n ->where('p.estEmploye = 0')\n ->orderBy('p.nom');\n return $qb->getQuery()->getResult();\n }", "public function getUserList(){\n\t\t$this->load->database();\n\t\t$eventlist = $this->db->query(\"SELECT * FROM user \");\n\t\treturn $eventlist;\n\t}", "public function getAutoposList(){\n return $this->_get(2);\n }", "function clientsListAction()\n\t{\n\t\t$searchParameters=$this->_request->getParams();\n\t\t\n\t\t$client_obj = new Ep_Quote_Client();\n\t\t$clients=$client_obj->getClients($searchParameters);\n\t\tif($clients!='NO')\n\t\t\t$this->_view->clients =$clients;\n\t\t\n\t\t$this->_view->client_creators=$client_obj->getClientCreatorUsers();\t\n\t\t\n\t\t$this->render('clients-list');\n\t}", "public function client_list()\n {\n return ClientList::latest()->paginate(10);\n }", "private function getUserBatch() {\n\t\t// Include also hidden (disabled) users to the export\n\t\t$hidden_status = access_get_show_hidden_status();\n\t\taccess_show_hidden_entities(true);\n\n\t\t// Ignore access settings to get all users\n\t\telgg_set_ignore_access(true);\n\n\t\t$users = elgg_get_entities(array(\n\t\t\t'type' => 'user',\n\t\t\t'limit' => $this->limit,\n\t\t\t'offset' => $this->offset,\n\t\t));\n\n\t\t// Set access level to normal\n\t\telgg_set_ignore_access(false);\n\n\t\t// Set hidden status to normal\n\t\taccess_show_hidden_entities($hidden_status);\n\n\t\treturn $users;\n\t}", "public function getIdsForUser($user_id, $client_id);", "public function getList()\r\n {\r\n $result = $this->query(\r\n \"SHOW USERS\",\r\n $this->getValueBuilder('Aviogram\\InfluxDB\\Entity\\Admin\\User')\r\n ->addField('user', 'getName', 'setName')\r\n ->addField('admin', 'isAdmin', 'setAdmin')\r\n );\r\n\r\n $return = new Collection\\Admin\\User();\r\n\r\n foreach ($result->getSeries() as $serie) {\r\n foreach($serie->getValues() as $value) {\r\n $return->append($value);\r\n }\r\n }\r\n\r\n return $return;\r\n }", "public function getSufficient()\n\t{\n\t\t$ans = array();\n\t\t$users = User::model()->findAll();\n\t\tforeach($users as $auser)\n\t\t{\t\n\t\t\tif($this->cid == $auser->bestClient())\n\t\t\t{\n\t\t\t\tarray_push($ans,$auser->uid);\n\t\t\t}\n\t\t}\n\t\treturn $ans;\n\t}", "function get_emp_list($email1)\r\n\t{\r\n\t\t$email = trim(Yii::app()->user->getState(\"employee_email\"));\r\n\t\t$connection=Yii::app()->db;\r\n\t\t$sql = \"select distinct `Employee_id` from `kpi_auto_save` use index (emp_index) where appraisal_id1 = '\".$email.\"' and (final_kra_status !='')\";\r\n\t\t$command=$connection->createCommand($sql);\r\n\t\t$rows=$command->queryAll();\t\t\r\n\t\treturn $rows;\r\n\t}", "function listClients($offset,$limit){\n\t\t$returnString = array();\n\t\t$sql = \"SELECT * FROM Client ORDER BY Client_ID ASC LIMIT $offset, $limit\";\n\t\t$data_p = mysql_query($sql);\n\t\tprint \"<table class=\\\"clients\\\"><tr><td>Client ID</td><td>Name</td><td>License Number</td><td>Policy Number</td></tr>\";\n\t\twhile($info = mysql_fetch_array( $data_p )){\n\t\t\tprint \"<tr><td><a href='client.php?action=update&client=\".$info['Client_ID'].\"'>\".$info['Client_ID'].\"</a></td><td>\";\n\t\t\tprint $info['FName'].\" \".$info['MName'].\" \".$info['LName'].\"</td><td>\";\n\t\t\tprint $info['License_No'].\"</td><td>\";\n\t\t\tprint \"<a href='policy.php?action=update&policy=\".$info['Policy_No'].\"&type=\";\n\t\t\tif($info['Company'] == 0 || $info['Company'] == null) { // Private Policy if true\n\t\t\t\tprint \"1'>P\".$info['Policy_No'].\"</a></td>\";\n\t\t\t} else { // Company Policy since false\n\t\t\t\tprint \"0'>C\".$info['Policy_No'].\"</a></td>\";\n\t\t\t}\n\t\t\t$this->printOptions($info['Client_ID']);\n\t\t\tprint \"</tr>\";\n\t\t}\n\t\tprint \"</table>\";\n\t}", "public function getUserslistToInvite()\n\t{\n\t\t//get current login user session\n\t\t$results = array();\n\t\t$user = $this->Session->read('UserData.userName');\n\t\t$userCourse = $this->Session->read('UserData.usersCourses');\n\t\t$user_course_section = $userCourse[0];\n\t\t\n\t\t//get Course and section name\n\t\t$course_info = $this->getCourseNameOfUser($user_course_section);\n\t\t$course_name = $course_info->course_name;\n\t\t$course_section = $course_info->section_name;\n\t\t//get allsection setting sections for same course\n\t\t$sections_list = $this->__allSections();\n\t\t$options = array('course'=>$course_name,'section'=>$sections_list,'userName !='=>$user);\n\t\t$results = $this->PleUser->find('all',array('conditions'=>$options,'fields'=>array('userName','name'),'order' => array('PleUser.name ASC')));\n\t\tif ($results) {\n\t\t\treturn $results;\n\t\t}\n\t\treturn $results;\n\t}", "public function getAccounts();", "public function getFullAccountList() {\n\t\t$result = $this->db->queryFetch(\"SELECT \"._CLMN_MEMBID_.\", \"._CLMN_USERNM_.\", \"._CLMN_EMAIL_.\" FROM \"._TBL_MI_.\" ORDER BY \"._CLMN_MEMBID_.\" ASC\");\n\t\tif(!is_array($result)) return;\n\t\treturn $result;\n\t}", "function ts3client_getClientList($serverConnectionHandlerID, &$result) {}", "public static function getEnterpriseCompanies(){\n $result = db::get(\"SELECT uid_empresa FROM \". TABLE_EMPRESA .\" WHERE is_enterprise = 1 ORDER BY nombre\", \"*\", 0, \"empresa\");\n return new ArrayObjectList($result);\n }", "public function loadClientUsers()\n {\n $user = $this->checkUser();\n if (!$user) {\n return;\n }\n\n //for API_KEY based connection\n if($user instanceof \\Symfony\\Component\\Security\\Core\\User\\User){\n $user = $this->container->get('doctrine')->getManager()->getRepository('OjsUserBundle:User')->findOneBy(['username'=>$user->getUsername()]);\n }\n\n $clients = $this->container->get('doctrine')->getManager()->getRepository('OjsUserBundle:Proxy')->findBy(\n array('proxyUserId' => $user->getId())\n );\n $this->session->set('userClients', $clients);\n }", "public function getOnlineAccountList() {\n\t\t$result = $this->db->queryFetch(\"SELECT * FROM \"._TBL_MS_.\" WHERE \"._CLMN_CONNSTAT_.\" = ?\", array(1));\n\t\tif(!is_array($result)) return;\n\t\treturn $result;\n\t}", "function retrieve_client_statistics(){\n\t\t\n\t}", "public function get_data_client(){\n\t\t$this->setMainTable('mmi_client');\n\t\treturn $this->findAll('person_was_deleted=\"N\"','no limit','no offset','client_id DESC');\n\t}", "public function getCompareUserList() {}", "function listUsers() {\n return $this->users;\n }", "public function getUsers(){\n return self::getModel(\"users\", \"*\");\n }", "public function getAccessionsList(){\n return $this->_get(2);\n }", "public function getAccessionsList(){\n return $this->_get(2);\n }", "protected function getUserList() {\n\t$controller = new ChatMySQLDAO();\n\tif(!isset($_SESSION['username'])) {\n\t return;\n\t}\n\t$users = $controller->getUserList($_SESSION['username']);\n\t$data = array();\n\t$i = 0;\n\tforeach ($users as $user) {\n\t $data[$i++] = $user['user_name'];\n\t}\n\treturn $data;\n }", "public static function getUsersLists(){\n \t$data = Doctrine_Query::create()\n \t// ->distinct('u.DeviceToken')\n \t->select(\"u.firstName, u.DeviceToken\")\n \t->from(\"User u\")\n \t->where('u.deleted=0')\n \t->andWhere(\"u.roleId=2\")\n \t->andWhere('u.DeviceToken!= \"NULL\"')\n\t->andWhere(\"u.DeviceToken!= '(null)'\")\n \t->andWhere('u.DeviceToken!=\"\"')\n \t->groupBy('u.DeviceToken')\n \t//->getSqlQuery();\n\t->fetchArray();\n \t\n return $data;\n }", "function get_cyberlux_clientes($co_cli=''){\n\t\t$sQuery=\"SELECT cli_des,co_cli FROM clientes WHERE 1 = 1 \";\n\t\tif($co_cli) {\t$sQuery.=\"AND co_cli = '$co_cli' \";\t}\n\t\t\n\t//\tdie($sQuery);\n\t\t$result=mssql_query($sQuery) or die(mssql_min_error_severity());\n\t\t$i=0;\n\t\twhile($row=mssql_fetch_array($result)){\n\t\t\tforeach($row as $key=>$value){\n\t\t\t\t$res_array[$i][$key]=$value;\n\t\t\t}\n\t\t\t$i++;\n\t\t}\n\t\treturn($res_array);\n\t\t\t\n\t}", "public function clientList() {\n return $this->returnCommand(['CLIENT', 'LIST'], null, null, ResponseParser::PARSE_CLIENT_LIST);\n }", "function users_list_raw($offlim=NULL){\n $res = array();\n if(!is_null($offlim) and count($this->domains)>1) qz();\n foreach($this->domains as $ck=>$cd){\n $tmp = array();\n foreach((array)$cd->user_list($offlim) as $vdn)\n\t$tmp[$vdn] = $vdn;\n $res[$ck] = $tmp;\n }\n return $res;\n }", "public function getClientsAction()\n {\n $this->throwIfClientNot('backend');\n $clientManager = $this->get(\n 'fos_oauth_server.client_manager.default'\n );\n\n $class = $clientManager->getClass();\n\n return $this->getDoctrine()->getRepository($class)->findAll();\n }", "public function getUsersList($employer_id)\n {\n $em = $this->getEntityManager();\n\n\t\t$recs = $em->createQuery(\"SELECT DISTINCT ec.userId, CONCAT(u.firstname,' ',u.surname) AS username\n\t\t\tFROM AppBundle:ExtraChecks ec \n\t\t\tLEFT JOIN AppBundle:Users u WITH ec.userId = u.id\n\t\t\tWHERE ec.employerId = :eid AND ec.checkType NOT LIKE 'DBS%'\n\t\t\tORDER BY u.firstname,u.surname\")\n\t\t\t->setParameters(array(\"eid\"=>$employer_id))\n\t\t\t->getResult();\n\t\t$output = array('0'=>array('userId'=>0, 'username'=>'All'));\n\t\t$output = array_merge($output,$recs);\n\t\t//print \"<pre>\"; var_dump($output); die;\n\t\treturn $output;\n\t}", "public static function getDataSetUserOnline() {\n\n $result = UserRoleDBAccess::allUserRole();\n\n $DATASET = \"[\";\n if ($result) {\n $i = 0;\n foreach ($result as $value) {\n $VALUES = self::getDatasetDateUserCountByRoleId($value->ID);\n $DATASET .=$i ? \",\" : \"\";\n $DATASET .= \"{'key' : '\" . setShowText($value->NAME) . \"','values':\" . $VALUES . \"}\";\n $i++;\n }\n }\n\n $DATASET .= \"]\";\n\n return $DATASET;\n }", "public function getUsers()\n {\n $usuarios = $this->Etapas->getUsers()->usuarios->usuario; //usuarios seg.users\n echo json_encode($usuarios);\n }", "public function meList( )\n\t{\n\t\t$userId = $this->getCurrentUserId();\n\t\treturn $this->adminListByUser($userId);\n\t}", "public function tradingNameList() {\n\n\t\ttry {\n\n\t\t\t$clients = ConnectContentClient::where('station_id', '=', \\Auth::User()->station->id)->whereNotNull('who')->get();\n\t\t\t$tradingNames = array();\n\t\t\tforeach($clients as $client) {\n\t\t\t\t$tradingNames[] = $client->who;\n\t\t\t}\n\n\t\t\treturn response()->json(array('code' => 0, 'msg' => 'Success', 'data' => $tradingNames));\n\n\t\t} catch(\\Exception $ex) {\n\t\t\t\\Log::error($ex);\n\t\t\treturn response()->json(array('code' => -1, 'msg' => $ex->getMessage()));\n\t\t}\n\t}", "private function listUsers()\n {\n $users = get_users();\n $user_ids = array();\n\n foreach ($users as $u) {\n $user_ids[] = $u['id'];\n }\n\n if (count($this->ids) != 0) {\n return array_intersect($this->ids, $user_ids);\n } else {\n return $user_ids;\n }\n }", "public function listAction(UserInterface $user)\n {\n $repository = $this->getDoctrine()->getRepository(Client::class);\n $client = $repository->findBy(['user' => $user]);\n\n return $client;\n }", "function monitor_list_owners() {\n $query = \"select distinct(`wf_owner`) from `\".GALAXIA_TABLE_PREFIX.\"instances`\";\n $result = $this->query($query);\n $ret = Array();\n while($res = $result->fetchRow()) {\n $ret[] = $res['wf_owner'];\n }\n return $ret;\n }", "function getUsers() {\n\n\tglobal $db;\n\treturn $db->getUsersByGroup ( $GLOBALS [\"targetId\"] );\n\n}", "function listAdviserClients(){\n \n //setup for paging ---\n $per_page = ($this->input->get('result_per_page')? $this->input->get('result_per_page') : 200);\n\t$offset = ($this->input->get('offset')? $this->input->get('offset') : ''); \n\n //Get list of all para-planners for the firm this ifa belongs to ---\n $allParaPlanners = $this->adviser_accessor->getAdvisersOfTypeForFirm( $this->hisFirmID ,'AP');\n\n //if para-planner or noamal we show both assigned and owned ---\n if($this->isSuper == TRUE)//this is a\n {\n //get all clients of the firm for super advisers\n $clients = $this->client_accessor->getClientsOfFirm($this->hisFirmID);\n $assignedClients = null;\n }\n else if($this->isParaPlanner || $this->isNormal )\n { \n $where_search[] = \"(clients.adviser_adviserID = $this->curIfaID )\";\n $clients = $this->client_accessor->searchClients($where_search, $per_page, $offset);\t\n $assignedClients = $this->client_accessor->getAssignedClients($this->curIfaID);\n }\n \n\t\n $data['clients'] = $clients; \n $data['assigned_clients'] = $assignedClients ;\n $data['para_planners'] = $allParaPlanners;\n $data['firmID'] = $this->hisFirmID;\n \n $data['can_edit_roles']= $this->can_edit_roles;\n $data['is_super'] = $this->isSuper;\n\n $data['ajax_url'] = base_url() . $this->moduleName . \"/AdviserRemoteStub/\";\n \n $data['page_title'] = \"Clients\";\n $data['page_header'] = \"Listing of Clients\";\n \n $data['content_view'] = \"adviser/list_clients\";\n $data['sidebar_view'] = \"adviser/adviser_sidebar\";\n\n $data['mod_js'] = $this->getModule_js();\n \n $this->breadcrumbs->push('Adviser', '/adviser/');\n\t$this->breadcrumbs->push('Clients', '/');\n \n $this->template->callDefaultTemplate($data);\n \n }", "public function creer_definition_userByAlias_get_ws() {\n\t\t$this->onDebug ( __METHOD__, 1 );\n\t\treturn array (\n\t\t\t\t\"output\" => \"userid\",\n\t\t\t\t\"filter\" => array (\n\t\t\t\t\t\t\"alias\" => $this->getAlias () \n\t\t\t\t) \n\t\t);\n\t}", "public function creer_definition_user_get_ws() {\n\t\t$this->onDebug ( __METHOD__, 1 );\n\t\t$filter = array (\n\t\t\t\t\"alias\" => $this->getAlias () \n\t\t);\n\t\tif ($this->getName () != \"\") {\n\t\t\t$filter [\"name\"] = $this->getName ();\n\t\t}\n\t\t\n\t\treturn array (\n\t\t\t\t\"output\" => \"userid\",\n\t\t\t\t\"filter\" => $filter \n\t\t);\n\t}", "public function getUserActivityList(){\n return($this->userActivityList);\n }", "function get_owner_data($user_id){\n $ch = curl_init();\n $url = $GLOBALS['App-Logic'].\"?\" .http_build_query([\n 'get_owner_data' => true, //a flag to execute the right code in App-Logic! \n 'user_id' => $user_id,\n ]);\n\n curl_setopt($ch,CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_HTTPGET, true);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);\n \n $response = curl_exec($ch);\n curl_close($ch);\n \n return json_decode($response,true);\n\n }", "function users_list($how=0,$offlim=NULL){\n $res = array();\n if(!is_null($offlim) and count($this->domains)>1) qz();\n foreach($this->domains as $ck=>$cd){\n $tmp = array();\n foreach((array)$cd->user_list($offlim) as $vdn)\n\t$tmp[$vdn] = $this->user_disp($vdn);\n if(empty($tmp)) continue;\n if($how==1) $res[$ck] = $tmp; \n else $res = array_merge($res,$tmp);\n }\n return $res;\n }", "public function rest() {\n return CMap::mergeArray(\n parent::rest(), array(\n 'resource' => 'users',\n 'idProperty' => 'userID',\n 'container' => 'users',\n 'multiContainer' => 'DATA',\n )\n );\n }", "public function utilisateurListerTous()\n\t{\n\t\t// votre code ici\n\t\treturn Gestion::lister(\"Utilisateur\");//type array\n\t}", "function getUserNameList()\r\n\t{\r\n\t\treturn $this->UserNameList;\r\n\t}", "public function clientList()\n\t{\n\t\treturn $this->client()->latest()\n\t\t\t->where('password_client', true)\n\t\t\t->where('revoked', false)->get()\n\t\t\t->makeVisible('secret');\n\t}" ]
[ "0.6319491", "0.6090653", "0.60438764", "0.60271764", "0.60263467", "0.60020447", "0.5986818", "0.5986818", "0.59392613", "0.5884594", "0.5856193", "0.583045", "0.5812477", "0.5812244", "0.58042943", "0.57878846", "0.5770983", "0.5770983", "0.5770983", "0.5745403", "0.57158715", "0.57090354", "0.5669362", "0.56585324", "0.5643538", "0.56360656", "0.5624099", "0.56168514", "0.56151414", "0.56100434", "0.5595446", "0.55845547", "0.5580508", "0.5580115", "0.55800825", "0.5569533", "0.5562351", "0.5561388", "0.55548316", "0.5546781", "0.55328965", "0.55283815", "0.5519042", "0.55180013", "0.551477", "0.55103195", "0.55000275", "0.5496311", "0.54831713", "0.5474675", "0.54709226", "0.5470853", "0.5453458", "0.5452829", "0.5452231", "0.5448443", "0.5447652", "0.54438716", "0.54357487", "0.54237074", "0.54187584", "0.5400367", "0.5396269", "0.5383444", "0.5381807", "0.53813183", "0.53770924", "0.5364368", "0.53633076", "0.5361298", "0.5358053", "0.5354365", "0.53509927", "0.534005", "0.5330586", "0.5330586", "0.53241163", "0.53224957", "0.5319386", "0.53184885", "0.5311477", "0.5308451", "0.53083766", "0.53082186", "0.5308183", "0.5307991", "0.5307878", "0.53055686", "0.53011113", "0.5300132", "0.5299538", "0.5299292", "0.5299062", "0.5297905", "0.529564", "0.5289885", "0.52861863", "0.5285808", "0.5283557", "0.52826667", "0.5275047" ]
0.0
-1
Get the game that the blueprint belongs to
public function game() { return $this->belongsTo('App\Models\Game'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getGame()\n {\n return $this->game;\n }", "public function getGame() {\n return $this->game;\n }", "private function getGame() {\n if (!isset($this->params['game'])) {\n DooUriRouter::redirect(Doo::conf()->APP_URL);\n return FALSE;\n }\n\n $key = $this->params['game'];\n $game = new SnGames();\n\t\t$url = Url::getUrlByName($key, URL_GAME);\n\n\t\tif ($url) {\n\t\t\t$game->ID_GAME = $url->ID_OWNER;\n\t\t} else {\n\t\t\tDooUriRouter::redirect(Doo::conf()->APP_URL);\n\t\t\treturn FALSE;\n\t\t}\n\n $game = $game->getOne();\n\n return $game;\n }", "public function game()\n {\n return $this->game;\n }", "function game()\r\n {\r\n return $this->Game;\r\n }", "public function getGame(): Game\n {\n return $this->client->getGame($this->gameVersion->getGameId());\n }", "function getOpenGame() {\n\t$games = getGames();\n\tif (isset($games['open']) and $games[$games['open']]['state'] == 'open') {\n\t\treturn $games['open'];\n\t} else {\n\t\treturn newGame();\n\t}\n}", "public function getGameId(){\n\t\treturn $this->gameId;\n\t}", "public function game()\n {\n return $this->belongsTo(Game::class);\n }", "public function game()\n {\n return $this->belongsTo(Game::class);\n }", "public function game()\n {\n return $this->belongsTo('App\\Models\\Game\\Game');\n }", "public function getApi($game) {\n switch (trim(strtolower($game))) {\n case 'wow':\n return $this->boot(new WowMain());\n break;\n case 'diablo':\n return $this->boot(new DiabloMain());\n break;\n default:\n return $this->boot(new WowMain());\n }\n }", "public function getGame($GBID) \n { \n // build API request\n $url = $this->config->item('gb_api_root') . \"/game/\" . $GBID . \"?api_key=\" . $this->config->item('gb_api_key') . \"&format=json\";\n \n // make API request\n $result = $this->Utility->getData($url, \"Game\");\n \n if(is_object($result))\n {\n return $result;\n } else {\n return null;\n }\n }", "public function getById(Uuid $gameId): Game;", "public function Game()\n {\n return $this->belongsTo('App\\Game');\n }", "public function getPlayer() {\n\t\tif($this->practice)\n\t\t\treturn $this->practice->golfer;\n\n\t\treturn $this->registration->competition->rule->team_score ? $this->registration->team : $this->registration->golfer;\n\t}", "public function getCurrentGame() {\n\t\t// $stmt = $this->dbh->prepare($sql);\n\t\t// $this->dbo->execute($stmt,array());\t\n\n\t\t// if ($stmt->rowCount() >= 1)\n\t\t// {\t\n\t\t// \t$result = $stmt->fetchAll(PDO::FETCH_ASSOC);\n\t\t// \treturn $result[0];\n\t\t// } else {\n\t\t// \treturn false;\n\t\t// }\t\n\t }", "public function boardgame()\n {\n return $this->belongsTo('App\\Models\\Boardgame');\n }", "public function boardgame()\n {\n return $this->belongsTo('App\\Models\\Boardgame');\n }", "private function getBoardGame($bggName){\n $resp = $this->bggApi->SearchForBgg($bggName);\n if($resp){\n $bgg = [ 'id' => $resp['boardgame'][0]['@attributes']['objectid'],\n 'title' => $resp['boardgame'][0]['name'] ];\n\n if ($bgg['id'] == null){\n $bgg['id'] = $resp['boardgame']['@attributes']['objectid'];\n }\n if ($bgg['title'] == null){\n $bgg['title'] = $resp['boardgame']['name'];\n }\n return $bgg;\n }\n else {\n return false;\n }\n\n }", "public function getGameId(): int\n {\n return $this->gameId;\n }", "public function GetGame($gameName)\r\n\t{\r\n\t\tif($this->LoadGame($gameName) != null)\r\n\t\t{\r\n\t\t\treturn new $gameName();\r\n\t\t}\r\n\t\treturn null;\r\n\t}", "public static function get_battle(){\n $this_battle = isset($GLOBALS['this_battle']) ? $GLOBALS['this_battle'] : new rpg_battle();\n $this_battle->trigger_onload();\n return $this_battle;\n }", "public function getGameBoard(){\r\n\t\treturn $this->_gameBoard;\r\n\t}", "public function getBlueprint() {\n return $this->blueprint;\n }", "public function playgameActionGet() : object\n {\n $title = \"Guessing game\";\n\n $data = [\n \"diceGame\" => $this->app->session->get(\"dice\")\n ];\n\n $this->app->page->add(\"dice100/play-dice\", $data);\n\n return $this->app->page->render([\n \"title\" => $title,\n ]);\n }", "private function findGame($id) {\n $game = null;\n foreach($this->getGames() as $currentGame) {\n if($currentGame->getAppId() == $id ||\n $currentGame->getShortName() == $id ||\n $currentGame->getName() == $id) {\n $game = $currentGame;\n break;\n }\n }\n\n if($game == null) {\n if(is_int($id)) {\n $message = \"This SteamID does not own a game with application ID {$id}.\";\n } else {\n $message = \"This SteamID does not own the game \\\"{$id}\\\".\";\n }\n throw new SteamCondenserException($message);\n }\n\n return $game;\n }", "function getGame($id) {\n $conn = dbcon();\n\n $query = $conn->prepare(\"SELECT * FROM games WHERE id = :id\");\n $query->bindParam(\":id\", $id);\n $query->execute();\n\n return $query->fetch();\n }", "public static function getInstance()\n {\n // OR retrieve game from session\n\n $session = Session::getInstance();\n //If not defined in session => new game\n if (!isset($session->game)) {\n self::$instance = new self;\n $session->game = self::$instance;\n } else { //If defined in session => retrieve it\n self::$instance = $session->game;\n }\n\n return self::$instance;\n }", "public function getGame($id)\n {\n $games_list = $this->getGamesList();\n foreach ($games_list as $key => $value) {\n if ($value->id == $id)\n return $value;\n }\n }", "public function get_games()\n {\n return $this->games;\n }", "public static function getInstance()\n {\n return Doctrine_Core::getTable('EbayGame');\n }", "public function getPlayground()\n {\n return $this->playground;\n }", "public function getGames()\n {\n return $this->games;\n }", "public function show(Game $game)\n {\n return new GameResource($game);\n }", "protected function getGameName( )\n {\n return \"pi\";\n }", "public function listGame()\n {\n return $this->db->get('game', 8, 9)->result();\n }", "function deduce_game_id($game) {\n if(is_array($game))\n if(isSet($game['gra']))\n $game = isSet($game['gra']['id_gry']) ? $game['gra']['id_gry'] : null;\n else\n $game = isSet($game['id_gry']) ? $game['id_gry'] : null;\n\n return $game;\n}", "public function getId() {\r\n\r\n return $this->getGameManager()->getGameId($this);\r\n\r\n }", "public function getLeague()\n {\n return $this->get(self::LEAGUE);\n }", "public function loadGame($id){\n\t\t$this->game = new Game($id);\n\t\treturn $this->game;\n\t}", "public function get_winning_team()\n {\n if ($this->score_team_1 > $this->score_team_2) {\n return Game::TEAM_1;\n }\n if ($this->score_team_2 > $this->score_team_1) {\n return Game::TEAM_2;\n }\n }", "public function blueprint()\n {\n return $this->belongsTo('App\\Models\\Blueprint');\n }", "public function game()\n {\n return $this->belongsTo(Game::class, 'game_id')->withTrashed();\n }", "function getGameNameById($game_id){\r\n\t\t\t$game=$this->fetchRow('id = '.$game_id)->toArray();\r\n\t\t\treturn $game['name'];\r\n\t\t}", "public function getCurrentBoard()\n {\n return Mage::registry('current_board');\n }", "public function getBlueprint($path) {\n $blueprints = $this->toObjects();\n // If the blueprint does not exist then return null\n // As blueprints may change over time we don't throw an exception\n if (!isset($blueprints[$path])) { return null; }\n // Return the found blueprint object\n return $blueprints[$path];\n }", "public function selectGame($id)\n {\n $this->db->where('id', $id);\n return $this->db->get('game', $id)->result();\n }", "public function get_game_one_image () {\n\t\treturn get_field('field_5b476fbb1dd99', $this->get_id());\n\t}", "public function getGames()\n {\n $xary = array();\n foreach ($this->games as $info) {\n $xary[] = new Game($info->resource_id);\n }\n return $xary;\n }", "public function getInGame() : int {\n\t\treturn $this->generator->getInGame();\n\t}", "function get_by_game($game_id)\n {\n return $this->db->query('SELECT victory_conditions.*, players.faction FROM victory_conditions '\n . 'JOIN players on players.player_id=victory_conditions.player_id '\n . 'WHERE victory_conditions.game_id='.$game_id\n . '')->result();\n }", "public function get_game_two_image () {\n\t\treturn get_field('field_5b4770382c387', $this->get_id());\n\t}", "public function gameServer()\n {\n return $this->belongsTo('App\\Models\\Game\\GameServer');\n }", "function get_by_game($id)\n {\n $this->db->join('players', 'peripherybids.player_id = players.player_id');\n $this->db->where('game_id', $id);\n return $this->db->get($this->table)->result();\n }", "public function getApp()\n {\n return $this['app.name'];\n }", "public function findOneGameById($id)\n {\n return $this->entityManager->getRepository('Model\\Entity\\Game')->find($id);\n }", "public function playActionGet() : object\n {\n $title = \"Guessing game\";\n $data = [];\n\n $this->app->page->add(\"dice100/play\", $data);\n\n return $this->app->page->render([\n \"title\" => $title,\n ]);\n }", "public function bestSeller()\n {\n return $this->db->get('game', 3)->result();\n }", "public function playerActionGet()\n {\n // Play the game\n $title = \"Play the game 2\";\n $session = $this->app->session;\n $game = $session->get(\"game\");\n $player = $session->get(\"player\");\n $computer = $session->get(\"computer\");\n $who = $session->get(\"who\");\n\n $data = [\n \"diceValues\" => $game->rollDices(),\n \"gameState\" => $game->getState(),\n \"player\" => $player,\n \"computer\" => $computer\n ];\n $player->addDicesToHistogram($game->getDices());\n $this->app->page->add(\"dice2/player\", $data);\n //$this->app->page->add(\"dice2/debug\");\n $session->set(\"game\", $game);\n $session->set(\"player\", $player);\n $session->set(\"computer\", $computer);\n $session->set(\"who\", $who);\n\n return $this->app->page->render([\n \"title\" => $title,\n ]);\n }", "public function getOppoTeam()\n {\n return $this->get(self::_OPPO_TEAM);\n }", "public function getTeam();", "static function getGame($pid) {\n $gamePath = \"../writable/games/$pid.txt\"; \n\n $file = fopen($gamePath, 'rb') or die(\"Cannot open game file: \" . $gamePath);\n $contents = fread($file, filesize($gamePath));\n fclose($file);\n\n $game = json_decode($contents); # deserialize\n\n $instance = new self($game->strategy);\n $instance->board = json_decode(json_encode($game->board), true);\n return $instance;\n }", "function getTeam()\n\t{\n\t\treturn $this->Info['Team'];\n\t}", "public function getBlueprintOrDefault($name)\n {\n if (!$this->getBlueprint($name)) {\n $this->blueprints[$name] = $this->getDefaultBlueprint($name);\n }\n \n return $this->blueprints[$name]->setFactory($this);\n }", "public function show($id)\n {\n return Game::find($id);\n }", "public function runGame( )\n {\n\n $MODELS = include(ROOT.'/conf/rooms.php');\n $gameConfig = $MODELS[1];\n\n }", "function getGameOf($userId) {\n\t$sql = \"select game_id from users where id = $userId\";\n\t$result = SQLGetChamp($sql);\n\n\tif ($result == 0) {\n\t\t$result = NOT_IN_GAME;\n\t}\n\n\treturn $result;\n}", "public function playCampaign() {\n\t\t// Get parameter which campaign ?\n\t\t$campaignId = Input::get('campaignId');\n\t\t$campaign = Campaign::find($campaignId);\n\t\t\n\t\t// Use corresponding game controller to display game.\n\t\t$handlerClass = $campaign->campaignType->handler_class;\n\t\t$handler = new $handlerClass();\n\t\treturn $handler->getView($campaign);\n\t}", "public function games()\n {\n return $this->hasMany(Game::class);\n }", "function getGames() {\n\treturn json_decode(file_get_contents(\"data/games.json\"), true);\n}", "function getOGActor();", "function getOGActor();", "public static function initDefaultGame()\r\n {\r\n return new BattleshipGame(10, 10);\r\n }", "public static function get($class)\n {\n return ModelBlueprint::exists($class) ? ModelBlueprint::$blueprints[$class] : null;\n }", "function get_race_team($idTeam)\n{\n $team_race = get_race_team_db($idTeam);\n return $team_race;\n}", "public static function getTheme()\n {\n $className = static::getCalledClass();\n while (!StringHandler::endsWith($className, \"App\")) {\n $className = get_parent_class($className);\n if ($className === false) {\n $className = \"\";\n break;\n }\n if (strpos($className, \"\\\\\") !== 0) {\n $className = \"\\\\\" . $className;\n }\n }\n $theme = Kernel::getService('em')\n ->getRepository('RZ\\Roadiz\\Core\\Entities\\Theme')\n ->findOneBy(['className' => $className]);\n return $theme;\n }", "function get_standing_team($idSeason)\n{\n $table_standing = get_standing_team_db($idSeason);\n return $table_standing;\n}", "public static function get($conn, $id) {\n\t\t//Query the main game record\n\t\t$query = $conn->prepare('SELECT * FROM games WHERE id = ?;');\n\t\t$query->bind_param(\"i\", $game->id);\n\t\tif ($query->execute() == false) return null;\n\n\t\t//Create the game object\n\t\t$res = $query->get_result();\n\t\t$row = $res->fetch_assoc();\n\t\t$game = new Game($row['id'], $row['rules_id'], $row['date']);\n\n\t\t//Query the player records\n\t\t$query = $conn->prepare('SELECT * FROM players WHERE game_id = ?;');\n\t\t$query->bind_param(\"i\", $game->id);\n\t\tif ($query->execute() == false) return null;\n\n\t\t//Add the player record data to the game object\n\t\t$res = $query->get_result();\n\t\tfor ($i = 0; $i < $res->num_rows; $i++) {\n\t\t\t$res->data_seek($i);\n\t\t\t$row = $res->fetch_assoc();\n\n\t\t\t$pl = new Player($row['user_id'], $row['starting_seat'], \n\t\t\t\t$row['placement'], $row['score']);\n\t\t\tarray_push($game->players, $pl);\n\t\t}\n\t\treturn $game;\n\t}", "function getGroup() {\n\n\tglobal $db;\n\treturn $db->getGroup ( $GLOBALS [\"targetId\"] );\n\n}", "protected function getDb()\n\t{\n\t\treturn (new League)->getConnection();\n\t}", "public function getScenario() {\n\t // TODO: Implement getScenario() method.\n }", "private function getGoal() {\r\n $goalid = is_numeric($this->goal) ? $this->goal : 0;\r\n return self::getGoals($goalid);\r\n }", "public function getPlayer();", "private function get_bridge()\n\t{\n\t\treturn $this->m_bridge;\n\t}", "public function getApp();", "public function getName()\n {\n return \"The Proving Grounds\";\n }", "public function LoadGame($gameName)\r\n\t{\r\n\t\t$fName = sprintf(\"libs/TournamentGames/game.%s.php\", $gameName);\r\n\t\t\r\n\t\tif(file_exists($fName))\r\n\t\t{\r\n\t\t\tinclude_once($fName);\r\n\t\t\tif(class_exists($gameName))\r\n\t\t\t{\r\n\t\t\t\treturn $gameName;\r\n\t\t\t}\r\n\t\t}\r\n\t\tthrow new Exception(\"Game $gameName not yet implemented!\");\r\n\t\treturn null;\r\n\t}", "public function get_games()\n\t\t{\n\t\t\t$retArr = null;\n\t\t\t// Scaffolding Code For Single:\n\t\t\t$objs = $this->obj->find_all();\n\t\t\t\n\t\t\tforeach($objs as $obj)\n\t\t\t{\n\t\t\t\t$retArr[] = $obj->getBasics();\n\t\t\t}\n\n\t\t\tif (empty($retArr)){\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\t\n\t\t\treturn $retArr;\n\t\t}", "public function getGames() {\n if(empty($this->games)) {\n $this->fetchGames();\n }\n\n return $this->games;\n }", "public function playingGame($game = 'LOL')\n\t{\n\t\t// $this : contro noi tai cua class\n\t\treturn $this->name . ' play ' . $game;\n\t}", "public function bogo()\n {\n return $this->hasOne(\\App\\Models\\Bogo::class, 'course_id');\n }", "public function lobby()\n {\n return $this->lobbies->first();\n }", "public function getStartBattle()\n {\n return $this->get(self::_START_BATTLE);\n }", "public function getScenario() {\n\t\tif ($this->collection_scenario_collection_event_id != null) {\n\t\t\t$oScenarioEvent = Logic_Collection_Scenario_Event::getForId($this->collection_scenario_collection_event_id);\n\t\t\t//Log::get()->log(\"Scenario Event for Collection Scenario Event \".var_export($this->collection_scenario_collection_event_id, true).\": \".print_r($oScenarioEvent, true));\n\t\t\t//Log::get()->log(\"Scenario Id for Scenario Event {$oScenarioEvent->id}: \".var_export($oScenarioEvent->collection_scenario_id, true));\n\t\t\treturn new Logic_Collection_Scenario($oScenarioEvent->collection_scenario_id);\n\t\t}\n\t\treturn null;\n\t}", "public function show(Game $game)\n {\n //\n }", "public function get() {\n\t\t\\_deprecated_function( __METHOD__, 'WPSEO 14.9' );\n\n\t\treturn $this->presentation->googlebot;\n\t}", "public function tournament()\n {\n return $this->tournament;\n }", "public function team()\n {\n return $this->user();\n }" ]
[ "0.74460536", "0.7393073", "0.7138755", "0.7082846", "0.69713616", "0.67386556", "0.6624906", "0.6402086", "0.6353771", "0.6353771", "0.6286289", "0.62515926", "0.61345696", "0.61254996", "0.60400635", "0.5990196", "0.59409535", "0.5933094", "0.5933094", "0.5907369", "0.5889176", "0.5862093", "0.5841873", "0.5838895", "0.58225745", "0.58079576", "0.5793865", "0.5785976", "0.57697064", "0.57477325", "0.57363445", "0.5720787", "0.5653232", "0.56330264", "0.5596996", "0.5589149", "0.5562585", "0.5531329", "0.5514989", "0.55056804", "0.5489707", "0.54826283", "0.5434814", "0.5392243", "0.5352801", "0.53504604", "0.53483456", "0.5346153", "0.5330098", "0.5314738", "0.52724195", "0.5271052", "0.5258583", "0.52569556", "0.5253205", "0.5233941", "0.52246606", "0.5214942", "0.52115315", "0.5207335", "0.5196811", "0.5194394", "0.5192581", "0.51910895", "0.5181898", "0.5181785", "0.518095", "0.5180646", "0.5168531", "0.5165484", "0.5158173", "0.51462734", "0.51462734", "0.5144853", "0.5122946", "0.5102135", "0.5101756", "0.50940937", "0.507895", "0.5076333", "0.50747555", "0.5068402", "0.5068359", "0.5065322", "0.5064852", "0.5060544", "0.505048", "0.504837", "0.50460476", "0.50377864", "0.50353736", "0.5032034", "0.5021903", "0.5015653", "0.50129855", "0.5011623", "0.5009985", "0.50092345", "0.5008632" ]
0.62163717
13
Get the blueprint that this tech level belongs to
public function blueprint() { return $this->belongsTo('App\Models\Blueprint'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getBlueprint() {\n return $this->blueprint;\n }", "public function getBlueprint($path) {\n $blueprints = $this->toObjects();\n // If the blueprint does not exist then return null\n // As blueprints may change over time we don't throw an exception\n if (!isset($blueprints[$path])) { return null; }\n // Return the found blueprint object\n return $blueprints[$path];\n }", "public static function get($class)\n {\n return ModelBlueprint::exists($class) ? ModelBlueprint::$blueprints[$class] : null;\n }", "public function getBlueprints() {\n return $this->blueprints;\n }", "public static function slug($slug)\n {\n foreach(ModelBlueprint::$blueprints as $blueprint)\n {\n if ($blueprint->label('slug') == $slug) {\n return $blueprint;\n }\n }\n return null;\n }", "function getBlueprintPath() {\n $blueprints_path = $this->root . \"/includes/blueprints/\";\n $blueprint = $this->getBlueprint($this->getCurrentPage());\n return $blueprints_path . $blueprint . \".php\";\n }", "public function getBlueprintOrDefault($name)\n {\n if (!$this->getBlueprint($name)) {\n $this->blueprints[$name] = $this->getDefaultBlueprint($name);\n }\n \n return $this->blueprints[$name]->setFactory($this);\n }", "private function get_bridge()\n\t{\n\t\treturn $this->m_bridge;\n\t}", "public function blueprintName(): string\n {\n if (!isset($_POST['blueprint'])) {\n return $this->template();\n }\n\n $post_value = $_POST['blueprint'];\n $sanitized_value = htmlspecialchars(strip_tags($post_value), ENT_QUOTES, 'UTF-8');\n\n return $sanitized_value ?: $this->template();\n }", "public function getResource()\n {\n return $this->dbh;\n }", "public function getRoutingTool(){\n $resourceDefinition = (new ResourceDefinition())->newQueryWithoutScopes()->where('_id','=',$this->id_resourceDefinition['$id'])->first();\n $routingTool = $resourceDefinition->routingTool;\n\n return $routingTool;\n }", "public function getSchemaBuilder()\n {\n $builder = parent::getSchemaBuilder();\n $builder->blueprintResolver(function($table, $callback){\n return new Blueprint($table, $callback);\n });\n return $builder;\n }", "function getBlueprint($page) {\n if (array_key_exists($page, $this->pages)){\n return $this->pages[$page][2];\n }\n else {\n return \"error\";\n }\n }", "public function getTechnology() {\n\t\treturn self::TECHNOLOGY;\n\t}", "public function getDefaultBlueprint($name)\n {\n return Injector::inst()->create($this->config()->get('default_blueprint'), $name);\n }", "public function get($name)\n {\n if (Shopware::VERSION !== '___VERSION___') {\n if (version_compare(Shopware::VERSION, '4.3.3', '<') && $name === 'dbal_connection') {\n return $this->get('models')->getConnection();\n }\n\n if (version_compare(Shopware::VERSION, '4.2.0', '<')) {\n if ($name === 'loader') {\n return $this->Application()->Loader();\n }\n\n $name = ucfirst($name);\n\n return $this->Application()->Bootstrap()->getResource($name);\n }\n }\n\n return parent::get($name);\n }", "public static function getInstance()\n {\n return Doctrine_Core::getTable('HotelFacility');\n }", "public function scheme() {\n\t\treturn $this->getScheme();\n\t}", "public static function getInstance()\n {\n return Doctrine_Core::getTable('HotelChain');\n }", "public function getModule()\n\t{\n\t\treturn $this->get('module');\n\t}", "protected function route_base() {\n\t\treturn substr( strrchr( get_class( $this ), '\\\\' ), 1 );\n\t}", "public function getScheme()\n {\n return $this->wrapped->getScheme();\n }", "public function getScheme() {}", "protected function getBinding($modelName = null)\n {\n $modelName = $modelName ?: $this->getModelName();\n return $this->container\n ->get('binding_factory')\n ->build($modelName);\n }", "protected function getModuleFromControllerName() \r\n {\r\n $controller_name = get_class($this);\r\n return strtolower(preg_replace('/_(.*?)$/i', '', $controller_name));\r\n }", "public function getFramework() {\r\n\t\treturn $this->context->getState('framework');\r\n\t}", "public static function getInstance()\n {\n return Doctrine_Core::getTable('HdLafourchette');\n }", "public function getDriver()\n {\n return $this->_list->getDriver();\n }", "public function getBlue()\n {\n return (0.5 + $this->blue) | 0;\n }", "function getComponentName()\n {\n $p = get_class($this);\n\n $reflector = new ReflectionClass($p);\n $path = dirname($reflector->getFileName());\n\n $component = str_replace(BW_PATH_COMPONENTS . DS, '', $path);\n $component = str_replace(DS . 'models', '', $component);\n\n if (bwFolder::is(BW_PATH_COMPONENTS . DS . $component)) {\n return $component;\n } else {\n return NULL;\n }\n }", "function get_gdb_resource()\n {\n\treturn DatabaseManager::getInstance();\n }", "public function getService()\n {\n\n if (preg_match('/^2\\./', $this->getVersion())) {\n $service = 'get';\n } else {\n $service = 'objects';\n }\n\n return $service;\n\n }", "function FFW_PORT() {\n return FFW_PORT::instance();\n}", "public function getBlue(): int\n {\n return $this->blue;\n }", "function getBridgeName() {\n return $this->bridgeName;\n }", "public function getActiveScheme() {\n\t\treturn $this->getLayoutSchemeService()->getActiveScheme();\n\t}", "public function get_base()\n\t{\n\t\t$base = NULL;\n\t\tif (isset($this->tables[0]))\n\t\t{\n\t\t\tforeach (self::$bases as $base_name => $tables)\n\t\t\t{\n\t\t\t\t$find = FALSE;\n\t\t\t\tif (is_array($tables))\n\t\t\t\t{\n\t\t\t\t\tforeach ($tables as $t)\n\t\t\t\t\t{\n\t\t\t\t\t\tif ($this->tables[0] == $t)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$find = TRUE;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif ($find)\n\t\t\t\t{\n\t\t\t\t\t$base = $base_name;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $base;\n\t}", "public static function getInstance()\n {\n return Doctrine_Core::getTable('Product_Model_ColorProduct');\n }", "public function getModuleName() {}", "public static function getInstance()\n {\n return Doctrine_Core::getTable('GeneralLibraryCategory');\n }", "public function getModuleName() {}", "public function getLuggageRestColor()\n {\n return $this->luggageRestColor;\n }", "public function getTable()\n {\n if (isset($this->table)) {\n return $this->table;\n }\n return str_replace('\\\\', '', Str::snake(Str::singular(class_basename($this))));\n }", "public static function module_name()\n {\n $class = Controller::curr()->class;\n $file = SS_ClassLoader::instance()->getItemPath($class);\n\n if ($file) {\n $dir = dirname($file);\n while (dirname($dir) != BASE_PATH) {\n $dir = dirname($dir);\n }\n\n $module = basename($dir);\n if ($module == 'openstack') {\n $module = Injector::inst()->get('ViewableData')->ThemeDir();\n }\n\n return $module;\n }\n\n return null;\n }", "public function getActiveSubClass(): string;", "private function getDebugLogger()\n {\n foreach ($this->handlers as $handler) {\n if ($handler instanceof Ecocode_Profiler_Model_Logger_DebugHandlerInterface) {\n return $handler;\n }\n }\n }", "public function getTable()\n {\n if (isset($this->table)) {\n return $this->table;\n }\n\n return str_replace('\\\\', '', Str::snake(Str::plural(class_basename($this))));\n }", "public function getTable()\n {\n if (! isset($this->table)) {\n return str_replace(\n '\\\\',\n '',\n Str::snake(Str::plural(class_basename(self::class)))\n );\n }\n\n return $this->table;\n }", "public function getModule() {\n\t\treturn $this->module;\n\t}", "public function getModule() {\n\t\treturn $this->module;\n\t}", "public function getModuleName();", "public function getModuleName();", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getResourceType() {}", "public function getModule()\n {\n return $this->module;\n }", "public static function getModule() {\n return Yii::$app->getModule('rocketchat');\n }", "public function getModule()\n\t{\n\t\treturn $this->module;\n\t}", "public function getModule()\n\t{\n\t\treturn $this->module;\n\t}", "public function getTable() {\n if ( isset( $this->table ) ) {\n return $this->table;\n }\n\n $table = str_replace( '\\\\', '', snake_case( str_plural( class_basename( $this ) ) ) );\n\n return $this->getConnection()->db->prefix . $table ;\n }", "public function getDomainLayer(): string\n {\n $reflector = new ReflectionClass($this->masterClass);\n\n return $this->extractDomainLayerFromFileName(\n $reflector->getFileName(),\n $this->masterClass->getPlugin()\n );\n }", "public function getChannel()\n {\n return $this->channel instanceof ChannelResourceIdentifierBuilder ? $this->channel->build() : $this->channel;\n }", "public function getDbTable()\n {\n if (null === $this->_dbTable) {\n $this->setDbTable('GC_Model_DbTable_Link');\n }\n return $this->_dbTable;\n }", "public function getFirewallName(): string;", "public function getServiceLevel()\n {\n return $this->serviceLevel;\n }", "public function getRouteTable()\n {\n return $this->routeTable;\n }", "function getBridgeGateway() {\n return $this->bridgeGateway;\n }", "public function getForeignTable($fieldName) {\n\t\t$result = NULL;\n\t\t$configuration = $this->getConfiguration($fieldName);\n\n\t\tif (!empty($configuration['foreign_table'])) {\n\t\t\t$result = $configuration['foreign_table'];\n\t\t} elseif ($this->isGroup($fieldName)) {\n\t\t\t$fieldParts = explode('.', $fieldName, 2);\n\t\t\t$result = $fieldParts[1];\n\t\t}\n\t\treturn $result;\n\t}", "public function getBeanClassName(): string\n {\n return $this->namingStrategy->getBeanClassName($this->foreignKey->getLocalTableName());\n }", "private function getDbHerbarView() {\n return Yii::app()->dbHerbarView;\n }", "function get_controller() {\n\n $parts = explode('/', $this->request_uri);\n if (count($parts) > 2) {\n return $parts[2];\n }\n return null;\n }", "public function getHotelClass()\n {\n return $this->hotel_class;\n }", "protected function _crud() {\n\t\treturn $this->_container->crud;\n\t}", "public function getFbp() {\n\t\treturn $this->container['fbp'];\n\t}", "public function getTable()\n {\n if (! isset($this->table)) {\n return str_replace('\\\\', '', Str::snake(Str::plural(class_basename($this))));\n }\n\n return $this->table;\n }", "public function getBaseControllerName(): string;", "public function getBookResponseLeg()\n {\n return isset($this->BookResponseLeg) ? $this->BookResponseLeg : null;\n }", "public static function getInstance()\n {\n return Doctrine_Core::getTable('Type_alerte_bpi');\n }", "public function get_scheme()\n {\n }", "public function get_scheme()\n {\n }", "public function get_scheme()\n {\n }", "public function getLegID()\n {\n return $this->LegID;\n }", "protected function getTable()\n {\n return $this->table;\n }", "public function getModule() {\n return $this->call->getModule();\n }", "public function getDependency() {\r\n\t\r\n\t}", "public function getRouterBase();", "public function getModule()\n\t{\n\t\treturn $this->module; \n\n\t}", "public function getScheme();", "public function getModule(){\n return $this->module;\n }", "public function get_printer() {\n $data['get_printer'] = $this->Category_crud->get_printer();\n return $data['get_printer'];\n }", "public function get_resource();", "public function breedCharacteristicSeverity()\n {\n return $this->belongsTo('BreedCharacteristicSeverity', 'breed_characteristic_severity_id');\n }", "public function GetTagger()\n\t{\n\t\tif (!$this->dataRead)\n\t\t\t$this->ReadData();\n\n\t\treturn $this->tagger;\n\t}", "public function model()\n {\n return BudgetType::class;\n }", "public function getTable(): string\n {\n return $this->table;\n }" ]
[ "0.71117496", "0.675427", "0.5904844", "0.58372957", "0.5724282", "0.5671331", "0.5476842", "0.5355502", "0.53109866", "0.5305711", "0.5255011", "0.524373", "0.5213898", "0.5209493", "0.51347756", "0.5037856", "0.5007029", "0.49084666", "0.4883845", "0.48520645", "0.48405612", "0.48227632", "0.48074147", "0.48062503", "0.48036334", "0.47744915", "0.47694004", "0.47600144", "0.47576237", "0.4754416", "0.47446972", "0.4730783", "0.4711916", "0.47096726", "0.46997476", "0.46809986", "0.4676241", "0.46715838", "0.46693784", "0.46691686", "0.46678716", "0.46635288", "0.4658495", "0.46513987", "0.46482006", "0.46452484", "0.46351802", "0.4634033", "0.46322447", "0.46322447", "0.46298185", "0.46298185", "0.4629565", "0.4629565", "0.4629565", "0.4629565", "0.4629565", "0.4629565", "0.4629565", "0.4629565", "0.46256956", "0.4622566", "0.46200085", "0.46200085", "0.4619142", "0.4618184", "0.46173972", "0.46114266", "0.46107557", "0.4606074", "0.46045664", "0.46002007", "0.45943552", "0.45923483", "0.45905915", "0.45896643", "0.45830375", "0.45816463", "0.4578743", "0.4573002", "0.45666096", "0.4559535", "0.45589224", "0.45568058", "0.45556247", "0.45549968", "0.45549813", "0.45531902", "0.45511958", "0.45505276", "0.4547996", "0.45460954", "0.45460233", "0.4545955", "0.45454195", "0.45405367", "0.4540249", "0.45387846", "0.4538662", "0.45379096" ]
0.6864308
1
Finds user by [[username]]
protected function getUser() { if ($this->_user === null) { $this->_user = OrderUser::findOne(['user_name' => $this->username]); if (empty($this->_user)) { $this->_user = OrderUser::findOne([ 'mobile_phone' => $this->username, ]); } // 如果账号验证通过,验证用户的基本权限 // if (!empty($this->_user) && Yii::$app->user->can('/order-site/index')) if ( !empty($this->_user) && !Yii::$app->authManager->checkAccess($this->_user->user_id, '3rd_order_import') ) { Yii::warning("$this->username 尝试登录,缺少权限", __METHOD__); $this->_user = null; } } return $this->_user; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function findUserByUsername($username);", "public function findUserByUsername($username);", "public function findUserByUsername($username);", "public function getUserWithUsername($username);", "public function findByUsername(string $username);", "public function fetchUserByUserName($username);", "function Find($username='')\n\t{\n\t\tif (!$username) {\n\t\t\treturn false;\n\t\t}\n\n\t\t$this->GetDb();\n\n\t\t$query = \"SELECT userid FROM [|PREFIX|]users WHERE username='\" . $this->Db->Quote($username) . \"'\";\n\t\t$result = $this->Db->Query($query);\n\t\tif (!$result) {\n\t\t\tlist($error, $level) = $this->Db->GetError();\n\t\t\ttrigger_error($error, $level);\n\t\t\treturn false;\n\t\t}\n\t\t$row = $this->Db->Fetch($result);\n\t\tif (empty($row)) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn $row['userid'];\n\t}", "private static function _FindUserByUsername(string $username) {\r\n \r\n $db = DbClass::getInstance();\r\n \r\n $sql = 'SELECT * FROM users WHERE username=:username';\r\n $data = [':username' => $username];\r\n\r\n $query_st = $db->singleQueryRetStatement($sql, $data);\r\n\r\n $user = $query_st->fetchObject('User');\r\n \r\n return $user;\r\n }", "function search($username) {\n $user = $this->user->getByUsername($username);\n\n //if not exists on database, search on api\n if($user === null) {\n $url = 'https://api.github.com/users/' . $username;\n $output = self::makeRequest($url);\n\n return $this->user->create(json_decode($output, true));\n } else {\n //return the user on database using get method\n return $user;\n }\n }", "public function find($username) {\n $sql = \"select * from user where user_id=?\";\n $row = $this->getDb()->fetchAssoc($sql, array($username));\n\n if ($row)\n return $this->buildDomainObject($row);\n else\n throw new UsernameNotFoundException(sprintf('User \"%s\" not found.', $username));\n }", "public function find_user_with_username($username)\n {\n $result = array(\n \"status\" => \"\",\n \"body\" => array(),\n \"error\" => array()\n );\n $stmt = $this->db->prepare(\"SELECT * FROM users WHERE username LIKE ?\");\n if (!($stmt))\n {\n trigger_error(\"Prepare failed: (\" . $this->db->errno . \") \" . $this->db->error,\n E_USER_ERROR);\n }\n if (!$stmt->bind_param('s', $username)){\n trigger_error(\"Binding parameters failed: (\" . $stmt->errno . \") \" . $stmt->error,\n E_ERROR);\n }\n if (!$stmt->execute()) {\n trigger_error(\"Execute failed: (\" . $stmt->errno . \") \" . $stmt->error,\n E_CORE_ERROR);\n $result[\"error\"] = $stmt->error;\n }\n $res = $stmt->get_result();\n $row = $res->fetch_assoc();\n if ($row[\"id\"] != null){\n $result[\"status\"] = \"Query successful\";\n $result[\"body\"] = array(\n \"user\" => array(\n \"id\" => $row[\"id\"],\n \"url\" => $row[\"url\"],\n \"username\" => $row[\"username\"],\n \"email\" => $row[\"email\"],\n \"firstName\" => $row[\"firstName\"],\n \"lastName\" => $row[\"lastName\"],\n \"fullName\" => $row[\"fullName\"],\n \"bio\" => $row[\"bio\"],\n \"isAdmin\" => $row[\"isAdmin\"],\n \"password\" => $row[\"password\"],\n \"created\" => $row[\"created\"],\n \"lastUpdated\" => $row[\"lastUpdated\"]\n )\n );\n return $result;\n } else {\n $result['status'] = \"No user with that username exists\";\n }\n return $result;\n }", "public static function findByUsername($username)\n {\n $user = User::find()->where(['username' => $username])->one();//I don't know if this is correct i am //checing value 'becky' in username column of my user table.\n return $user;\n }", "public function findUserByName($username) {\n /** @var User $user */\n $user = $this->findOneBy([\"name\" => $username]);\n return $user;\n }", "function lookupUser($username)\n { \n try {\n $connection = Doctrine_Manager::connection();\n $query = \"SELECT username, access_token FROM constant_contact WHERE username='\".$username.\"' ORDER BY id DESC LIMIT 1\";\n $statement = $connection->execute($query);\n $statement->execute();\n\n $resultset = $statement->fetch(PDO::FETCH_OBJ);\n \n if (empty($resultset)) {\n $returnUser = false;\n throw new Exception('Username '.$username.' not found in datastore');\n }\n else {\n $fields = array();\n foreach ($resultset as $k => $v) $fields[$k] = $v;\n $returnUser = $fields;\n }\n\n }\n catch(Exception $e) {\n echo 'OAuth Exception: '.$e->getMessage();\n }\n return $returnUser;\n }", "function getUserByUsername($username, $users)\n {\n foreach ($users as $user)\n {\n if ($user['username'] == $username)\n {\n return $user;\n }\n }\n return NULL;\n }", "protected function findUser($username)\n {\n return $this->findUserByUsernameOrEmail($username);\n }", "public function loadUserByUsername($username);", "public function search_by_username($username) {\n\n // first, get all users\n $method = \"users.list\";\n $payload = array();\n $result = $this->apicall($method, $payload);\n $users = $result['members'];\n\n $this->debug(\"userlist.json\", json_encode($users));\n\n $key = array_search($username, array_column($users, 'name'));\n\n $this->debug(\"user.json\", json_encode($users[$key]));\n\n return $users[$key];\n\n\n }", "function cicleinscription_get_user_by_username($username){\n\tglobal $DB;\n\treturn $DB->get_record('user', array('username'=>$username));\n}", "function people_findByUsername ($username) {\n $response = $this->execute(array('method' => 'flickr.people.findByUsername', 'username' => $username));\n\t\t$object = unserialize($response);\n\t\tif ($object['stat'] == 'ok') {\n\t\t\treturn $object['user']['nsid'];\n\t\t} else {\n\t\t\t$this->setError($object['message'], $object['code']);\n\t\t\treturn NULL;\n\t\t}\n\t}", "function get_user_by_username($username) {\n $read_json = file_get_contents(__DIR__ . '/data_users.json');\n $data = json_decode($read_json, JSON_OBJECT_AS_ARRAY);\n\n // iterate over db, if username is found, return user\n foreach ($data as $user){\n if ($user[\"username\"] == $username){\n return $user;\n }\n }\n return false;\n}", "public function retrieveByUsername($username);", "public function getUser($username){\n return $this->findOneByName($username);\n }", "public function GetByUsername($username);", "public function findUserByUsername($username)\n {\n return $this->findUser(['username' => $username])->one();\n }", "public static function GetByUserName ($userName);", "public function findByUserName(String $username): User;", "static public function find_by_username($userName, $password) {\n\t$sql = \"SELECT * FROM \" . static::$table_name;\n\t$sql .= \" WHERE userName='\" . self::$database->escape_string($userName) . \"' AND password='\" . self::$database->escape_string($password) . \"'\";\n\t$obj_array = static::find_by_sql($sql);\n\tif(!empty($obj_array)){\n\t\treturn array_shift($obj_array);\n\n\t} else {\n\t\treturn false;\n\t}\n}", "public static function findByUsername($username) {\n $status_active = Status::getActive();\n\n if (strpos($username, '@')) {\n return self::findWithCheckOrganizationStatus(static::find()->where(['email' => $username, 'status' => $status_active])->limit(1)->one());\n // return self::findWithCheckOrganizationStatus(static::findOne(['email' => $username, 'status' => $status_active]));\n // return static::findOne(['email' => $username, 'status' => $status_active]);\n }\n\n if (strlen($username) > self::MAGIC_USERID_LEN) {\n $u_part = substr($username, -self::MAGIC_USERID_LEN);\n $o_part = substr($username, 0, strlen($username) - self::MAGIC_USERID_LEN);\n $user_id = 1 * $u_part;\n $org_id = 1 * $o_part;\n $sql = \"SELECT {{users}}.* FROM {{users}}\n INNER JOIN {{org_employees}} ON {{org_employees}}.[[user_id]] = {{users}}.[[id]]\n WHERE {{users}}.[[id]] = :user_id AND {{org_employees}}.[[org_id]] = :org_id\n AND {{users}}.[[status]] = :status_active AND {{org_employees}}.[[status]] = :status_active\";\n // return static::findBySql($sql, [':user_id' => $user_id, ':org_id' => $org_id,\n // ':status_active' => $status_active])->limit(1)->one();\n return self::findWithCheckOrganizationStatus(static::findBySql($sql, [':user_id' => $user_id, ':org_id' => $org_id,\n ':status_active' => $status_active])->limit(1)->one());\n }\n\n $user_id = 1 * $username;\n\n // return json_encode(static::findOne(['id' => $user_id, 'status' => $status_active]));\n return self::findWithCheckOrganizationStatus(static::findOne(['id' => $user_id, 'status' => $status_active]));\n }", "public function findUserByUsername($username) {\n $this->db->query('SELECT * FROM users WHERE username = :username');\n\n // Bind value\n $this->db->bind(':username', $username);\n\n $row = $this->db->single();\n\n // Check row\n if($this->db->rowCount() > 0){\n return true;\n } else {\n return false;\n }\n }", "public function getByUsername($username)\r\n {\r\n }", "function auth_user_exists($username)\n{\n return dbFetchCell(\"SELECT * FROM `users` WHERE `username` = ?\", array($username));\n}", "public static function findByUsername($username)\n\t{\n\t\t//Yii::info('+ BaseUser::findByUsername() username: '.$username);\n\t\t// checks if $username fits saved username \n\t\t$userByName = self::find()->where(['username' => $username])->one();\n\t\tif (isset($userByName)) {\n\t\t\t//Yii::info('- BaseUser::findByUsername() found user: '.$userByName->id.' name:'.$userByName->username);\n\t\t\treturn $userByName;\n\t\t}\n\t\t\n\t\t// checks if $username fits saved mail address \n\t\t$userByMail = self::find()->where(['email' => $username])->one();\n\t\tif (isset($userByMail)) {\n\t\t\t//Yii::info('- BaseUser::findByUsername() found user: '.$userByMail->id.' mail:'.$userByMail->email);\n\t\t\treturn $userByMail;\n\t\t}\n\t\t\n\t\t//Yii::info('- BaseUser::findByUsername() NOT found!');\n\t\treturn null;\n\t}", "public function findUserByUsername($username)\n {\n $this->db->query('SELECT * FROM user WHERE username = :username');\n $this->db->bind(':username', $username);\n $row = $this->db->single();\n if($this->db->rowCount() > 0){\n return true;\n }else{\n return false;\n }\n }", "public function loadUserByUsername($username)\n { \n $user = $this->_em->getRepository('Entity\\User\\User')->findOneBy(array('username' => $username));\n\n if($user != null)\n return $user;\n\n throw new UsernameNotFoundException(\"Compte introuvable\");\n }", "function getUserByName($username) {\n $sql = \"select * from users where username = :username\";\n try {\n $stmnt = $this->conn->prepare($sql);\n $params = [\n 'username' => $username\n ];\n $stmnt->execute($params);\n return $stmnt->fetch();\n }\n Catch (PDOException $e) {\n $e = new ErrorView([\n 'message' => $e->getMessage(),\n 'code' => $e->getCode()\n ]);\n }\n }", "public function findUserByUsernameOrEmail($usernameOrEmail);", "public function findUserByUsernameOrEmail($usernameOrEmail);", "public function findUserByUsernameOrEmail($usernameOrEmail);", "public function findUserByUsernameOrThrowException($username);", "function FindUser($User) {\n $User = str_replace('ZZ ', '', $User);\n\n //separa o primeiro nome do sobrenome\n $name_complete = explode(' ', $User);\n $user_name = array_shift($name_complete);\n $user_lastname = implode(' ', $name_complete);\n\n $Read = new WsUsers();\n\n $Read->setUser_name($user_name);\n $Read->setUser_lastname($user_lastname);\n $Result = $Read->Execute()->Query(\"user_name like '%{$user_name}%' AND user_lastname like '%{$user_lastname}%'\");\n\n if (!empty($Result)):\n return $Result[0]->user_id;\n endif;\n}", "public static function findByUsername($username)\n { \n return static::findOne(['login' => $username]);\n //(RegisterForm::find()->andWhere('login=:login',[':login'=>$username])->one()){\n }", "public static function findByUsername($username)\n {\n return User::findOne(['username' => $username]);\n\n }", "public static function findByUsername($username)\n {\n return static::findOne(['username' => $username]);\n //return $userInfo = UserInfo::findOne(['user_name' => $username]);\n// if(!empty($userInfo)){\n// return User::findOne(['user_no' => $userInfo->usr_no]);\n// }\n// return null;\n /*\n if(!empty($userInfo)){\n $user_no = $userInfo->usr_no;\n }\n\n return static::findOne(['usr_nm' => $username]);\n */\n /*\n foreach (self::$users as $user) {\n if (strcasecmp($user['username'], $username) === 0) {\n return new static($user);\n }\n }\n\n return null;\n */\n }", "public function findUserByUsername($username)\n {\n /** @var UserInterface|null $result */\n $result = $this->createClass()\n ->newQuery()\n ->where($this->username, '=', $username)\n ;\n\n return $result;\n }", "function getUserByName($username)\n {\n return $this->data->getUserByName($username);\n }", "public function findUserByUsername( $username ) {\n\t\t$user = $this->em->getRepository( $this->classes[Configuration::USER] )->findOneBy( [ 'username' => $username ] );\n\n\t\treturn $user;\n\t}", "public function loadUserByUsername($username)\n {\n $sql = \"select * from user where user_email=?\";\n $row = $this->getDb()->fetchAssoc($sql, array($username));\n\n if ($row)\n return $this->buildDomainObject($row);\n else\n throw new UsernameNotFoundException(sprintf('User \"%s\" not found.', $username));\n }", "public function findUserById($id)\n {\n $sql = \"SELECT rowid, * FROM USER WHERE rowid=?\";\n $row = $this->getDb()->fetchAssoc($sql, array($id));\n if ($row){\n return $this->buildDomainObject($row);\n }else{\n throw new UsernameNotFoundException('User not found.');\n }\n }", "public function loadUserByUsername($username)\n {\n }", "public function getByUsername($username) {\n\n\t\t// get database\n\t\t$db = $this->app->database;\n\n\t\t// search username\n\t\tif ($id = $db->queryResult('SELECT id FROM #__users WHERE username = '.$db->Quote($username))) {\n\t\t\treturn $this->get($id);\n\t\t}\n\n\t\treturn null;\n\t}", "public function retrieve($username);", "function get_user_by_username($username) {\n\t\t$this->db->where('LOWER(username)=', strtolower($username));\n\n\t\t$query = $this->db->get($this->table_name);\n\t\tif ($query->num_rows() == 1) {\n\t\t\treturn $query->row();\n\t\t}\n\n\t\treturn NULL;\n\t}", "private function findUser ($where) {\n return $this->db->extended->autoExecute(\n 'users',\n null, // SELECT queries do not need manipulation values\n MDB2_AUTOQUERY_SELECT,\n $where,\n null, true, true\n );\n }", "public function findForPassport($username): User\n {\n return $this->where('firstname', $username)->first();\n }", "public function selectUserbyName($username){\n\n $this->result = @$this->dbConnection->query(\"SELECT * FROM Users WHERE User_name = '$username' \");\n if(!$this->result)\n {\n die('Could not retrieve records from the CMS Database: ' .\n $this->dbConnection->error);\n }\n\n }", "public function searchUser()\n\t{\n\t\t$url = sprintf('%sUserSearch/search', self::HTTP_URL);\n\t\t$args = array(\n\t\t\t'query'\t\t=>\t$query,\n\t\t\t'offset'\t=>\t$offset\n\t\t);\n\n\t\t$this->setResultType(PlurkResponseParser::RESULT_SEARCH_USER);\n\t\treturn $this->sendRequest($url, $args);\n\t}", "private static function usernameExists($username) {\n return \\Drupal::entityQuery('user')->condition('name', $username)->execute();\n }", "public function findById($id) {\n $sql = \"select * from user where user_id=?\";\n $row = $this->getDb()->fetchAssoc($sql, array($id));\n\n if ($row)\n return $this->buildDomainObject($row);\n else\n throw new UsernameNotFoundException(sprintf('User \"%s\" not found.', \"log error\"));\n }", "public function retrieveUserByUsername($username)\n {\n return $this->start()->uri(\"/api/user\")\n ->urlParameter(\"username\", $username)\n ->get()\n ->go();\n }", "public static function findByUsername($username)\n {\n // mencari user berdasarkan username dan yang dicari haya 1\n $user = TbUser::find()->where(['username' => $username])->one();\n\n if ($user != null) {\n return $user;\n }else{\n return null;\n }\n }", "static function searchUserByName() : string\n {\n return \"SELECT *\n FROM users\n WHERE LOCATE( :Name , nickname) > 0;\";\n }", "public function findUsers();", "public function findUsers();", "public static function findByUsername($username) {\n// foreach (self::$users as $user) {\n// if (strcasecmp($user['username'], $username) === 0) {\n// return new static($user);\n// }\n// }\n\n return static::findOne(['username' => $username]);\n }", "public function findUser(){\n\t\t$val = $_POST['user'];\n\n $pieces = explode(\" \", $val);\n\t\tif(count($pieces) > 1){\n\n\t\t\t$sql = \"SELECT * FROM user WHERE fname=:fn AND lname=:ln\";\n if($stmt = $this->_db->prepare($sql)){\n $stmt->bindParam(\":fn\", $pieces[0], PDO::PARAM_STR);\n $stmt->bindParam(\":ln\", $pieces[1], PDO::PARAM_STR);\n $stmt->execute();\n\n }\n else{\n return \"Something went wrong deleting the user.\";\n }\n\n\t\t}\n\t\telse{\n\t\t\t$sql = \"SELECT * FROM user WHERE uname=:u\";\n\n if($stmt = $this->_db->prepare($sql)){\n $stmt->bindParam(\":u\", $pieces[0], PDO::PARAM_STR);\n\n $stmt->execute();\n }\n else{\n return \"Something went wrong deleting the user.\";\n }\n\t\t}\n\t\tif($stmt->rowCount()>0){\n \t$row = $stmt->fetch();\n\n \theader(\"Location: /yumme/userprofile.php?u=\".$row['UID'].\"&uname=\".$row['UName']);\n\n\t\t}\n\t\telse{\n\t\t\theader(\"Location: /yumme/index.php\");\n\t\t}\n\n\t}", "public function loadUserByUsername($username)\n {\n $user = $this->em->getRepository('AppBundle:User')->findOneBy([\"fullname\"=>$username]);\n if (!$user){\n throw new UsernameNotFoundException(\"User not found\");\n }\n\n return $user;\n }", "public function getUserByUsername($username){\r\n\t\t$result = $this->query(\"SELECT * FROM user where username = '$username';\");\r\n\t\treturn $this->fetchSingleRow($result);\r\n\t}", "public static function findByUsername($username)\n {\n $db = Base::getConnection();\n\n $stmt = $db->prepare(\"SELECT * FROM users WHERE username=:username ;\");\n $stmt->bindParam(\":username\", $username, PDO::PARAM_STR);\n $stmt->execute();\n\n $response = $stmt->fetch();\n\n if ($response) {\n $u = new User();\n $u->id = $response['user_id'];\n $u->username = $response['username'];\n $u->password = $response['password'];\n $u->email = $response['email'];\n $u->setIsVisitor(false);\n $stmt->closeCursor();\n return $u;\n } else {\n return false;\n }\n }", "public function findUser($userId);", "public static function findByUsername($username)\n {\n return static::findOne(['usuario' => $username]);\n }", "private function /*bool*/ findUsername(/*string*/ $name) {\n\t\t$variations = array(\n\t\t\t$name,\n\t\t\tstrtolower($name[0]) . substr($name, 1),\n\t\t\tstr_replace(\" \", \"_\", $name),\n\t\t);\n\n\t\t$crowd = $this->getCrowd();\n\t\tforeach ($variations as $v) {\n\t\t\ttry {\n\t\t\t\t$crowd->findPrincipalByName(array(\"in0\" => $this->token, \"in1\" => $v));\n\t\t\t\treturn $v;\n\t\t\t} catch (Exception $e) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t}\n\n\t\treturn null;\n\t}", "public function recherche_user() {\n\t\t$this->onDebug ( __METHOD__, 1 );\n\t\t$userdata = $this->creer_definition_user_get_ws ();\n\t\t$this->onDebug ( $userdata, 1 );\n\t\treturn $this->getObjetZabbixWsclient ()\n\t\t\t->userGet ( $userdata );\n\t}", "public function getUserByUsername($username)\n {\n return $this->findBy('username', $username, [\n 'id',\n 'username',\n 'first_name',\n 'last_name',\n 'email',\n 'profile_description',\n 'personal_website',\n 'twitter_username',\n 'github_username',\n 'place_of_employment',\n 'job_title',\n 'hometown',\n 'country_flag',\n 'for_hire',\n ]);\n }", "public static function findByUsername($username)\n {\n// return null;\n }", "public function findMemberByUsername(string $username)\n {\n if (! $this->members) {\n // This supports pagination in chunks of 1000 by setting the\n // 'after' parameter to the last member user id. I don't think\n // we need to worry about this yet.\n $this->members = $this->client->guild->listGuildMembers([\n 'guild.id' => $this->guildId,\n 'limit' => 1000,\n ]);\n }\n\n // Evolving Usernames on Discord\n // https://discord.com/blog/usernames\n // https://support-dev.discord.com/hc/en-us/articles/13667755828631\n //\n // They decided to remove the discriminator component and just\n // have a single username - this can be removed once they've\n // completed that change\n if (str_contains($username, '#')) {\n // A discord username is made up of the user's chosen username,\n // and a randomly generated discriminator. The discriminator\n // is a four digit number and the two are stuck together with\n // a # character.\n $parts = explode('#', $username);\n $userPart = $parts[0];\n $discrPart = (int) $parts[1];\n\n foreach ($this->members as $member) {\n if ($member->user->username == $userPart ||\n $member->user->discriminator == $discrPart) {\n return $member;\n }\n }\n } else {\n foreach ($this->members as $member) {\n if ($member->user->username == $username) {\n return $member;\n }\n }\n }\n\n return null;\n }", "public function findByUsername($username)\n {\n $query = $this->createQuery();\n $query = $query->matching($query->equals('username', $username));\n $objects = $query->execute();\n\n return $objects->getFirst();\n }", "public function lookForUserByUsername($username)\n {\n self::connectToDB(); /* Using DB connection */\n\n $this->sql = \"SELECT username FROM users WHERE username = ?\";\n\n try\n {\n $this->query = $this->handler->prepare($this->sql);\n $this->query->execute(array($username));\n $this->result = $this->query->fetchAll(PDO::FETCH_ASSOC);\n\n /**\n * Closing DB connection\n */\n $this->query->closeCursor();\n $this->handler = null;\n\n return $this->result;\n }\n catch (Exception $e)\n {\n echo \"Error: query failure\";\n return false;\n }\n }", "function user_find_id($username) {\n $db = connectDB();\n \n // Look up user\n $stmt = $db->prepare('\n SELECT\n user_id\n FROM\n users\n WHERE\n username = :username\n LIMIT\n 1\n ;\n ');\n $stmt->execute([':username' => $username]);\n $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);\n \n if (empty($rows)) {\n return NULL;\n } else {\n return $rows[0]['user_id'];\n }\n}", "protected function _findUser($username, $password = null) {\n\t\t$userModel = $this->settings['userModel'];\n\t\tlist(, $model) = pluginSplit($userModel);\n\t\t$fields = $this->settings['fields'];\t\t\n\t\tif (is_array($username)) {\n\t\t\t$conditions = $username;\n\t\t} else {\n\t\t\t$conditions = array(\n\t\t\t\t\"BINARY \" . $model . '.' . $fields['username'] . \"='\" . $username.\"' \"\n\t\t\t);\n\t\t}\t\t\n\t\tif (!empty($this->settings['scope'])) {\n\t\t\t$conditions = array_merge($conditions, $this->settings['scope']);\n\t\t}\n\n\t\t$result = ClassRegistry::init($userModel)->find('first', array(\n\t\t\t'conditions' => $conditions,\n\t\t\t'recursive' => $this->settings['recursive'],\n\t\t\t'contain' => $this->settings['contain'],\n\t\t));\n\t\tif (empty($result[$model])) {\n\t\t\t$this->passwordHasher()->hash($password);\n\t\t\treturn false;\n\t\t}\n\n\t\t$user = $result[$model];\n\t\tif ($password !== null) {\n\t\t\tif (!$this->passwordHasher()->check($password, $user[$fields['password']])) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tunset($user[$fields['password']]);\n\t\t}\n\n\t\tunset($result[$model]);\n\t\treturn array_merge($user, $result);\n\t}", "protected function _findUser($username, $password = null) {\n $userModel = $this->settings['userModel'];\n\t\t$userModel = 'AdminUser.AdminUser';\n list($plugin, $model) = pluginSplit($userModel);\n $fields = $this->settings['fields'];\n\n $conditions = array(\n $model . '.' . $fields['username'] => $username\n );\n if (!empty($this->settings['scope'])) {\n $conditions = array_merge($conditions, $this->settings['scope']);\n }\n // $result = ClassRegistry::init($userModel)->find('first', array(\n\t $result = ClassRegistry::init($model)->find('first', array(\n 'conditions' => $conditions,\n 'recursive' => $this->settings['recursive']\n ));\n if (empty($result) || empty($result[$model])) {\n return false;\n }\n\n // If the user's password hash doesn't match the results, return false\n if (!static::check($password, $result[$model][$fields['password']])) {\n return false;\n }\n\n unset($result[$model][$fields['password']]);\n return $result[$model];\n }", "public function findForUser($userId);", "public function findForUser($userId);", "public static function findByUsername($username)\n {\n return static::findOne(['email' => $username]);\n }", "public function loadUserByUsername($username)\n {\n return $this->createQueryBuilder('u')\n ->where('u.username = :username OR u.email = :email')\n ->setParameter('username', $username)\n ->setParameter('email', $username)\n ->getQuery()\n ->getOneOrNullResult();\n }", "public function user_exists($username){\n\t\t$if_user_exists_query = \"SELECT username FROM appuser WHERE username = $1;\"; //make query\n\t\t$if_user = pg_prepare($this->con, \"my_query\", $if_user_exists_query); //prepare query\n\t\t$if_user = pg_execute($this->con, \"my_query\", array($username)); //execute query\n\t\treturn $if_user;\n\t\t}", "public function username($username);", "public static function retrieveByUsername( $username ){\r\n \r\n return UserQuery::create()\r\n ->usesfGuardUserQuery()\r\n ->filterByUsername( $username )\r\n ->endUse()\r\n ->findOne();\r\n\r\n }", "public function getUserByName(string $username)\n {\n $sql = ('SELECT * FROM user WHERE pseudo = ?');\n $result = $this->sql($sql, [$username]);\n \n return $result->fetch();\n }", "protected function getUserByName(string $username)\n {\n if (! $user = User::whereUsername($username)->first()) {\n abort(404, \"User ${username} not found\");\n }\n return $user;\n }", "public static function findByUsername($username)\n {\n return static::findOne(['login_name' => $username]);\n }", "public static function getByUsername($username) {\n $r= self::getPeer()->doSelect(new Criteria(array('username', $username, EQUAL)));\n return $r ? $r[0] : NULL;\n }", "public function loadUserByUsername($username)\n {\n return $this->repository->findByNickname($username)->getOrThrow(new UsernameNotFoundException());\n }", "function getUserId($user_name){\n return sqlSelectOne(\"SELECT * FROM users WHERE user_username='$user_name'\", 'user_id');\n}", "static public function getUser($username)\n {\n $user = User::where('username', $username)->first();\n if(!$user){\n $user = User::where('email', $username)->first();\n }\n return $user;\n }", "public function getUser($username)\r\n {\r\n\r\n $stmt = $this->connection()->prepare(\"SELECT * FROM users WHERE username=? OR email=?\");\r\n \r\n $stmt->execute([$username,$username]);\r\n if($stmt->rowCount())\r\n {\r\n return true;\r\n }\r\n else{\r\n return false;\r\n }\r\n }", "public static function findByUsername($username)\n {\n return static::findOne(['login' => $username]);\n }", "function getUserInformationByUsername($username)\n\t{\n\t\t$response = '';\n\n\t\tif( $this->token != '' )\n\t\t{\n\t\t\t$filter_arguments = array(\n\t\t\t\t\"filter\" => array(\n\t\t\t\t\tarray(\n\t\t\t\t\t\t\"portal_name\" => array(\n\t\t\t\t\t\t\t'$equals' => $username,\n\t\t\t\t\t\t),\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t\"offset\" => 0,\n\t\t\t\t\"fields\" => \"id,portal_name,portal_password,email,treat_hematology_patients_c,specialty_c\",\n\t\t\t);\n\t\t\t$url = $this->url . \"/Contacts/filter\";\n\t\t\t$response = self::call($url, $this->token, 'GET', $filter_arguments);\n\t\t}\n\n\t\t$isUser = $response->records[0]->portal_name;\n\n\t\tif( $isUser == $username )\n\t\t{\n\t\t\treturn $response;\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t}", "public function getByUsername($username)\n {\n return $this->getUserRepository()->findByUsername($username);\n }", "function getUserExists($username)\n\t{\n\t\tif( $this->token != '' )\n\t\t{\n\t\t\t$filter_arguments = array(\n\t\t\t\t\"filter\" => array(\n\t\t\t\t\tarray(\n\t\t\t\t\t\t\"portal_name\" => array( '$equals' => $username,\n\t\t\t\t\t\t),\n\t\t\t\t\t),\n\t\t\t\t),\n\t\t\t\t\"offset\" => 0,\n\t\t\t\t\"fields\" => \"id,portal_name\",\n\t\t\t);\n\n\t\t\t$url = $this->url.\"/Contacts/filter\";\n\n\t\t\t$response = self::call($url, $this->token, 'POST', $filter_arguments);\n\n\t\t\t$isUser = $response->records[0]->portal_name;\n\n\t\t\tif($isUser == $username)\n\t\t\t{\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}", "public function loadUserByUsername($username): UserInterface\n {\n $repository = $this->getDoctrine()->getRepository(User::class);\n\n $userData = $repository->findOneBy(['username' => $username]);\n\n if ($userData) {\n return $userData;\n }\n\n throw new UsernameNotFoundException(sprintf('Le pseudo \"%s\" n\\'existe pas.', $username));\n }" ]
[ "0.7941892", "0.7941892", "0.7941892", "0.7617345", "0.75134575", "0.7474061", "0.74112356", "0.7314069", "0.72018313", "0.71878403", "0.7180881", "0.71486443", "0.7132451", "0.7121639", "0.7098833", "0.70721287", "0.7070608", "0.7060042", "0.7044413", "0.70383894", "0.70237184", "0.7019674", "0.70118743", "0.69980127", "0.69480574", "0.6945469", "0.6929106", "0.6925388", "0.69195473", "0.68471354", "0.68335474", "0.68297297", "0.68239504", "0.68163687", "0.6813489", "0.68003297", "0.67759484", "0.67759484", "0.67759484", "0.6772869", "0.67301184", "0.67287105", "0.6705895", "0.6695845", "0.66952187", "0.66872585", "0.6671536", "0.66693586", "0.66636384", "0.66630805", "0.6656326", "0.66498095", "0.6643498", "0.6616453", "0.661632", "0.65968406", "0.6591954", "0.6591513", "0.6578988", "0.6567622", "0.6550203", "0.6544914", "0.65443385", "0.65443385", "0.65435004", "0.6540258", "0.6535061", "0.6532528", "0.65324277", "0.6528035", "0.65203893", "0.65082645", "0.6508137", "0.6505793", "0.6502075", "0.64867043", "0.64825433", "0.6468088", "0.64619005", "0.6450676", "0.64473003", "0.6441999", "0.6441999", "0.64401186", "0.64391804", "0.6416843", "0.6401307", "0.6396389", "0.639551", "0.63856363", "0.637916", "0.63743705", "0.63700575", "0.6368085", "0.6364405", "0.6361454", "0.63533014", "0.63509", "0.63489866", "0.63304037", "0.63274235" ]
0.0
-1
Validates the password. This method serves as the inline validation for password.
public function validatePassword($attribute, $params) { if (!$this->hasErrors()) { $user = $this->getUser(); if (!$user || !$user->validatePassword($this->password)) { $this->addError($attribute, '用户名或密码错误,或者当前账号没有操作权限'); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function validatePassword()\n {\n /* @var $user User */\n $user = Yii::$app->user->identity;\n if (!$user || !$user->validatePassword($this->password)) {\n $this->addError('password', 'Incorrect password.');\n }\n }", "public function validatePassword()\n {\n $validator = new Validator(array(\n 'password' => $this->password,\n 'password2' => $this->password2,\n self::$primaryKey => $this->id(),\n ));\n\n $validator\n ->required()\n ->set('password2', 'Confirm password');\n\n $validator\n ->required()\n ->minLength(6)\n ->callback(function ($password, $password2) {\n return $password === $password2;\n }, 'Password is not matching confirm password', array($this->password2))\n ->set('password', 'Password');\n\n return $validator->validate();\n }", "public function validatePassword()\n {\n /* @var $user User */\n $user = Yii::$app->user->identity;\n if (!$user || !$user->validatePassword($this->oldPassword)) {\n $this->addError('oldPassword', 'Incorrect old password.');\n }\n }", "public function validatePassword()\n {\n if (!$this->hasErrors()) {\n $user = $this->getUser();\n\n if (!$user || !$user->validatePassword($this->password)) {\n $this->addError('password', Yii::t('app','Falscher Benutzername oder falsches Passwort.'));\n }\n }\n }", "public function validatePassword() {\n if (!$this->hasErrors()) {\n $user = Yii::$app->user->identity;\n if (!$user || !$user->validatePassword($this->password_old)) {\n // $this->addError('password_old', 'Incorrect current password.');\n }\n }\n }", "public function validatePassword()\n {\n $result = false;\n if (strlen($this->password) >= 5) {\n $result = true;\n }\n return $result;\n }", "public function validatePassword()\n {\n if (!$this->hasErrors()) {\n if (!$this->user->validatePassword($this->old_password)) {\n $this->addError('old_password', 'Incorrect email or password.');\n }\n }\n }", "function validatePassword() : bool\n {\n if($this->Password && preg_match('/^[[:alnum:]]{6,20}$/', $this->Password)) // solo numeri-lettere da 6 a 20\n {\n return true;\n }\n else\n return false;\n }", "function passwordValid($password) {\n\treturn true;\n}", "private function valid_password() {\n return (strlen($this->password) == 6);\n }", "public function validate_password()\n\t{\n\t\t//Load language from user component\n\t\t$lang = JFactory::getLanguage();\n\t\t$tag = $lang->getTag();\n\n\t\tif (!$tag)\n\t\t{\n\t\t\t$tag = 'en-GB';\n\t\t}\n\n\t\t$lang->load('com_users', JPATH_ROOT, $tag);\n\t\t$value = $this->input->get('fieldValue', '', 'none');\n\t\t$validateId = $this->input->get('fieldId', '', 'none');\n\t\t$params = JComponentHelper::getParams('com_users');\n\t\t$minimumIntegers = $params->get('minimum_integers');\n\t\t$minimumSymbols = $params->get('minimum_symbols');\n\t\t$minimumUppercase = $params->get('minimum_uppercase');\n\t\t$validPassword = true;\n\t\t$errorMessage = '';\n\n\t\tif (!empty($minimumIntegers))\n\t\t{\n\t\t\t$nInts = preg_match_all('/[0-9]/', $value, $imatch);\n\n\t\t\tif ($nInts < $minimumIntegers)\n\t\t\t{\n\t\t\t\t$errorMessage = JText::plural('COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N', $minimumIntegers);\n\t\t\t\t$validPassword = false;\n\t\t\t}\n\t\t}\n\n\t\tif ($validPassword && !empty($minimumSymbols))\n\t\t{\n\t\t\t$nsymbols = preg_match_all('[\\W]', $value, $smatch);\n\n\t\t\tif ($nsymbols < $minimumSymbols)\n\t\t\t{\n\t\t\t\t$errorMessage = JText::plural('COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N', $minimumSymbols);\n\t\t\t\t$validPassword = false;\n\t\t\t}\n\t\t}\n\n\n\t\tif ($validPassword && !empty($minimumUppercase))\n\t\t{\n\t\t\t$nUppercase = preg_match_all(\"/[A-Z]/\", $value, $umatch);\n\n\t\t\tif ($nUppercase < $minimumUppercase)\n\t\t\t{\n\t\t\t\t$errorMessage = JText::plural('COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N', $minimumUppercase);\n\t\t\t\t$validPassword = false;\n\t\t\t}\n\t\t}\n\n\t\t$arrayToJs = array();\n\t\t$arrayToJs[0] = $validateId;\n\n\t\tif (!$validPassword)\n\t\t{\n\t\t\t$arrayToJs[1] = false;\n\t\t\t$arrayToJs[2] = $errorMessage;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$arrayToJs[1] = true;\n\t\t}\n\n\t\techo json_encode($arrayToJs);\n\n\t\t$this->app->close();\n\t}", "public function testInvalidLengthPassword()\n {\n $password = \"23d3\";\n $response = $this->user->isValidPassword($password);\n\n $this->assertFalse($response);\n }", "public function checkPassword($value);", "public function validatePassword($password)\n {\n return $this->hashPassword($password)===$this->password;\n }", "public function testValidLengthPassword()\n {\n $password = \"accepted\";\n\n $response = $this->user->isValidPassword($password);\n\n $this->assertTrue($response);\n }", "public function passwordEntryIsValid() {\r\n \r\n //todo put logic here (same as email)\r\n // also check if it matches confirmpassword\r\n // set the var equal to function call of getpassword\r\n $password = $this->getPassword();\r\n // If the fields empty\r\n if ( empty($password) ) {\r\n // Will send it to errors as username and display the message to user\r\n $this->errors[\"password\"] = \"Password is missing.\";\r\n } \r\n // Calls the password function above and if its not equal to the orgincal password returns error\r\n else if ( $this->getConfirmpassword() !== $this->getPassword() ){\r\n // Message displayed to user\r\n $this->errors[\"password\"] = \"Password does not match confirmation password.\";\r\n }\r\n // Also goes test the password against the password is valid function in the validator class\r\n else if ( !Validator::passwordIsValid($this->getPassword()) ) {\r\n $this->errors[\"password\"] = \"Password is not valid.\"; \r\n }\r\n //Will return if its empty and whether any errors are contained\r\n return ( empty($this->errors[\"password\"]) ? true : false ) ;\r\n }", "public function validatePassword(User $user, $password);", "public function isPasswordField() {}", "public function validatePassword($password)\n {\n // return $password == $this->password;\n return Yii::$app->getSecurity()->validatePassword($password, $this->password);\n }", "function validPassword($password){\t\r\n \tglobal $API;\r\n return $API->userValidatePassword($this->username,$password); \r\n }", "private function validate_password($password){\n\t\treturn TRUE;\n\t}", "public function validatePassword($password) {\r\n return $this->password===$password;\r\n\r\n }", "public function check_password($password)\n {\n }", "function validatePassword($pass) {\n\t\t$l = getOption('min_password_lenght');\n\t\tif ($l > 0) {\n\t\t\tif (strlen($pass) < $l) return sprintf(gettext('Password must be at least %u characters'), $l);\n\t\t}\n\t\t$p = getOption('password_pattern');\n\t\tif (!empty($p)) {\n\t\t\t$strong = false;\n\t\t\t$p = str_replace('\\|', \"\\t\", $p);\n\t\t\t$patterns = explode('|', $p);\n\t\t\t$p2 = '';\n\t\t\tforeach ($patterns as $pat) {\n\t\t\t\t$pat = trim(str_replace(\"\\t\", '|', $pat));\n\t\t\t\tif (!empty($pat)) {\n\t\t\t\t\t$p2 .= '{<em>'.$pat.'</em>}, ';\n\n\t\t\t\t\t$patrn = '';\n\t\t\t\t\tforeach (array('0-9','a-z','A-Z') as $try) {\n\t\t\t\t\t\tif (preg_match('/['.$try.']-['.$try.']/', $pat, $r)) {\n\t\t\t\t\t\t\t$patrn .= $r[0];\n\t\t\t\t\t\t\t$pat = str_replace($r[0],'',$pat);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t$patrn .= addcslashes($pat,'\\\\/.()[]^-');\n\t\t\t\t\tif (preg_match('/(['.$patrn.'])/', $pass)) {\n\t\t\t\t\t\t$strong = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!$strong)\treturn sprintf(gettext('Password must contain at least one of %s'), substr($p2,0,-2));\n\t\t}\n\t\treturn false;\n\t}", "protected function validatePassword($password) \n {\n if (!empty($password)) {\n if (strlen($password) < '8') {\n $this->errors[] = PASSWORD_TOO_SHORT;\n }\n if (!preg_match(\"#[0-9]+#\", $password)) {\n $this->errors[] = PASSWORD_NEEDS_NUMBER;\n }\n if (!preg_match(\"#[A-Z]+#\", $password)) {\n $this->errors[] = PASSWORD_NEEDS_UPPERCASE;\n }\n if (!preg_match(\"#[a-z]+#\", $password)) {\n $this->errors[] = PASSWORD_NEEDS_LOWERCASE;\n }\n } else {\n $this->errors[] = PASSWORD_MISSING;\n }\n }", "public function isPassword($password);", "public function validatePassword($attribute, $params)\n\t{\n\t\tif ($this->password !== $this->repeatePassword) {\n\t\t\t$this->addError($attribute, 'Пароль не совпадает.');\n\t\t}\n\t}", "public function validatePassword($password)\t{\n\t\treturn crypt($password,$this->password) === $this->password;\n\t}", "public static function validatePassword($password) {\n if (\n (strlen($password) > 8 || strlen($password) < 4) || // Check Length\n (!preg_match(\"#[0-9]+#\", $password)) || // Contains a number.\n (!preg_match(\"#[a-zA-Z]+#\", $password)) || // Contains a letter.\n (!preg_match(\"/^[a-z0-9]+$/i\",$password))) // No special characters.\n {\n // Password did not meet one of the requirements.\n return false; \n } else {\n // Password meets all requirements.\n return true;\n }\n }", "public function validatePassword($password) {\t \r\n\t\treturn self::hashPassword($password, $this->salt) === $this->password;\r\n\t}", "private function AddPasswordField()\n {\n $name = 'Password';\n \n $this->AddField(Input::Password($name));\n //Password needs contain lower case letter, upper case letter, and a digit\n //$validator = new RegExp('/((?=.*\\d)(?=.*[a-z])(?=.*[A-Z]))/');\n //$this->AddValidator($name, $validator);\n $this->AddValidator($name, new StringLength(6, 20));\n if (Request::PostData('PasswordRepeat') || !$this->user->Exists())\n {\n $this->SetRequired($name);\n }\n }", "public static function validatePassword($password){\r\n\t\tif(strlen($password) >= self::$minPassLength){\r\n\t\t\treturn true;\r\n\t\t} else {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "public function isValidPassword($uid, $password);", "public function validatePassword($password)\n {\n return \\Yii::$app->security->validatePassword($password, $this->password_hash);\n }", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function authenticationWithValidAlphaCharClassPassword() {}", "public function validatePassword($password) \n {\n return CPasswordHelper::verifyPassword($password, $this->password);\n }", "function validate_password($password)\r\n\t{\r\n\t\tif($this->dont_allow_3_in_a_row($password) === FALSE)\r\n\t\t{\r\n\t\t\treturn FALSE;\r\n\t\t}\r\n\t\tif(preg_match(REGEX_PASSWORD, $password) !== 1)\r\n\t\t{\r\n\t\t\treturn FALSE;\r\n\t\t}\r\n\t}", "public static function renderPassword();", "function validatePassword($password, $retypedPassword)\n\t\t{\n\t\t\t// include the Password Validator Class and create a validator with 5-15 characters long\n\t\t\tinclude(\"class_libraries/PasswordValidator.php\");\n\t\t\t$passwordValidator = new PasswordValidator(5, 15);\n\t\t\t\n\t\t\t// validate the password\n\t\t\t$result = $passwordValidator -> validatePassword($password, $retypedPassword);\n\t\t\t\n\t\t\t// check the result\n\t\t\tif($result == false)\n\t\t\t{\n\t\t\t\t// get the error and return the result\n\t\t\t\treturn $passwordValidator -> getErrors();\n\t\t\t}\n\t\t\t\n\t\t\treturn;\n\t\t}", "public function validatePassword($passPassword) \n {\n\n if(preg_match('/^[a-zA-Z0-9\\s]+$/',$passPassword)) \n {\n\n return true;\n }\n else \n {\n return false;\n }\n }", "public function testInvalidConfirmPassword()\n\t{\n\t\t$this->validator->isPassword(self::USER1_PASSWORD, self::INVALID_PASSWORD);\n\t}", "public function isPasswordValid(string $encoded, string $raw);", "public function validatePassword($password)\n {\n return CPasswordHelper::verifyPassword($password,$this->clave);\n }", "public function check() {\n // Use preg_match() with a regular expression to check the password for whitespace.\n if (preg_match('/\\s/', $this->_password)) {\n // if there is a whitespace, an error message is stored in the current instance's $_errors array property.\n $this->_errors[] = 'Password cannot contain spaces.';\t\n }\n \n // Check that the value in the current instance's $_password property is less than our set minimum.\n if (strlen($this->_password) < $this->_minimumChars) {\n\t $this->_errors[] = \"Password must be at least $this->_minimumChars characters.\";\n } \n \n // This runs only if the requireMixedCase method is called before check().\n // If $_mixedCase is set to true\n\tif ($this->_mixedCase) {\n // Create a regex pattern to match the value against (checks for characters that are upper and lowercase).\n\t $pattern = '/(?=.*[a-z])(?=.*[A-Z])/';\n // Using preg_match, test characters inside the current instance's $_password property for upper and lowercase.\n\t if (!preg_match($pattern, $this->_password)) {\n\t\t$this->_errors[] = 'Password should include uppercase and lowercase characters.';\n\t }\n\t}\n \n // This runs only if the requireNumbers method is called before check().\n\tif ($this->_minimumNumbers) { \n // Create a regex pattern to check the value in $_password against.\n\t $pattern = '/\\d/'; \n\t $found = preg_match_all($pattern, $this->_password, $matches); // number of matches stored in $found\n \n // If the number of matches is less than the set minimum number property, an error message is passed to the \n // current instance's $_errors property.\n\t if ($found < $this->_minimumNumbers) {\n\t\t$this->_errors[] = \"Password should include at least $this->_minimumNumbers number(s).\";\n\t }\n\t}\n \n // If $_errors has values, check() returns false, indicating the password failed validation; otherwise check() returns true.\n\treturn $this->_errors ? false : true;\n }", "public function validatePassword($password)\n {\n return GlobalHelper::HashMe($password, PASSWORD_SALT)===$this->password;\n }", "public function validate_password($password){\nif(!preg_match('%\\A(?=[-_a-zA-Z0-9]*?[A-Z)(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*?[0-9])\\S{6,}\\z%', $password)){\n\treturn false;\n\t}else{\n\t\treturn true;\n\t\t}\n}", "public function passwordIsValid($password)\n {\n $config = $this->getPasswordConfig();\n\n /**\n * Count lowercase characters, including multibyte characters.\n *\n * @param string $string\n */\n $countLowercase = function ($string) {\n $stringUppercase = mb_strtoupper($string);\n $similar = similar_text($string, $stringUppercase);\n return strlen($string) - $similar;\n };\n /**\n * Count uppercase characters, including multibyte characters.\n *\n * @param string $string\n */\n $countUppercase = function ($string) {\n $stringLowercase = mb_strtolower($string);\n $similar = similar_text($string, $stringLowercase);\n return strlen($string) - $similar;\n };\n\n // Validate minimum password length.\n if (isset($config['min_length']) && is_numeric($config['min_length'])) {\n if (strlen($password) < $config['min_length']) {\n return false;\n }\n }\n // Validate minimum lowercase character count.\n if (isset($config['min_lowercase']) && is_numeric($config['min_lowercase'])) {\n if ($countLowercase($password) < $config['min_lowercase']) {\n return false;\n }\n }\n // Validate minimum uppercase character count.\n if (isset($config['min_uppercase']) && is_numeric($config['min_uppercase'])) {\n if ($countUppercase($password) < $config['min_uppercase']) {\n return false;\n }\n }\n // Validate minimum number character count.\n if (isset($config['min_number']) && is_numeric($config['min_number'])) {\n if (preg_match_all('/[0-9]/', $password) < $config['min_number']) {\n return false;\n }\n }\n // Validate minimum symbol character count.\n if (isset($config['min_symbol']) && is_numeric($config['min_symbol'])\n && isset($config['symbol_list']) && is_string($config['symbol_list'])\n && strlen($config['symbol_list'])\n ) {\n $symbolCount = 0;\n foreach (str_split($config['symbol_list']) as $symbol) {\n $symbolCount += substr_count($password, $symbol);\n }\n if ($symbolCount < $config['min_symbol']) {\n return false;\n }\n }\n\n // The password is valid.\n return true;\n }", "public function password()\n {\n }", "public function password(){\n $_error = \"enter the password\";\n\t\treturn $_error;\n\t}", "public function validatePasswords()\n {\n $passwd = $this->_sanitized_data['password'];\n $passwd2 = $this->_sanitized_data['password2'];\n\n if ($passwd == '' || $passwd2 == '') {\n $this->_addErrorMessage(\"Missing passwords\");\n return false;\n }\n\n if ($passwd !== $passwd2) {\n $this->_addErrorMessage(\"The submitted passwords do not match\");\n return false;\n }\n\n if (strlen($passwd) < 5 && strlen($passwd2) < 5) {\n $this->_addErrorMessage(\"The submitted password must be at least 5 characters long\");\n return false;\n }\n\n return true;\n }", "public function password_verifies() {\n\t\treturn AuthComponent::password($this->data[$this->alias]['old_password']) === $this->data[$this->alias]['password'];\n\t}", "public function valida_password($password){\n\t\tif (preg_match(\"/^.*(?=.{8,})(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).*$/\", $password)) \n\t\t\techo \"Su password es seguro.\"; \n\t\telse echo \"Su password no es seguro.\";\n\n\t}", "private function validatePassword($password)\n {\n if (strlen($password) < $this->password_length) {\n $this->user_status_message = 'Password must have at least eight characters.';\n return false;\n }\n if (preg_match(\"/(?=[a-zA-Z]*[0-9])(?=[0-9]*[a-zA-Z])([a-zA-Z0-9]+)/\", $password)) {\n return true;\n } else {\n $this->user_status_message = 'Password must heave letters and numbers.';\n return false;\n }\n }", "public function invalidPassword() {\n\t\t$this->messages[] = \"Lösenorden har för få tecken. Minst 6 tecken.\";\n\t}", "function validate_password($field) {\n\t\tif ($field == \"\") return \"No Password was entered.<br>\";\n\t\telse if (strlen($field) < 6)\n\t\t\treturn \"Password must be at least 6 characters.<br>\";\n\t\telse if (!preg_match(\"/[a-z]/\",$field) || !preg_match(\"/[A-Z]/\",$field) || !preg_match(\"/[0-9]/\",$field) )\n\t\t\treturn \"Password require one each of a-z, A-Z,0-9.<br>\";\n\t\treturn \"\";\n\t}", "function testPasswordErr($password) {\n if (empty($password)) {\n $passwordErr = 'Password required';\n } else {\n $password = test_input($password);\n //VALIDATE PASSWORD\n if (!filter_var($password, FILTER_VALIDATE_REGEXP, array(\"options\" => array(\"regexp\" => \"((?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{4,10})\")))) {\n //da 4 a 10 caratteri, deve contenere maiuscole, minuscole e numeri\n $passwordErr = \"Invalid Password format\";\n } else\n $passwordErr = \"*\";\n }\n return $passwordErr;\n }", "public function validatePassword(string $value): bool\n {\n return $this->user->validatePassword($value);\n }", "function validatePassword($password, $retypedPassword)\n {\n // include the password validator class and validate the password and retyped password minimum of 5 and max of 15 characters\n include(\"../includes/class_libraries/PasswordValidator.php\");\n $passwordValidator = new PasswordValidator(5,15);\n \n // validate the password\n $result = $passwordValidator -> validatePassword($password, $retypedPassword);\n \n // check the result\n if($result == false)\n {\n // get the error and return it\n return $passwordValidator -> getErrors();\n }\n \n return;\n }", "function validate_password($password)\n {\n $reg1='/[A-Z]/'; //Upper case Check\n $reg2='/[a-z]/'; //Lower case Check\n $reg3='/[^a-zA-Z\\d\\s]/'; // Special Character Check\n $reg4='/[0-9]/'; // Number Digit Check\n $reg5='/[\\s]/'; // Number Digit Check\n\n if(preg_match_all($reg1,$password, $out)<1) \n return \"There should be atleast one Upper Case Letter...\";\n\n if(preg_match_all($reg2,$password, $out)<1) \n return \"There should be atleast one Lower Case Letter...\";\n\n if(preg_match_all($reg3,$password, $out)<1) \n return \"There should be atleast one Special Character...\";\n\n if(preg_match_all($reg4,$password, $out)<1) \n return \"There should be atleast one numeric digit...\";\n \n if(preg_match_all($reg5,$password, $out)>=1) \n return \"Spaces are not allowed...\";\n\n if(strlen($password) <= 8 || strlen($password) >= 16 ) \n return \"Password Length should be between 8 and 16\";\n\n return \"OK\";\n }", "private function password()\n {\n $element = new Password('password');\n $element->setLabel('Password');\n $element->setAttribute('class', 'form-control');\n $element->setAttribute('placeholder', 'Password');\n $element->addValidators(array(\n new PresenceOf(array('message' => 'Password is required'))\n ));\n $this->add($element);\n }", "public function testValidatePassword()\n\t{\n\t\t$return = $this->auth->register($this->email, $this->password, $this->password . $this->shortPassword);\n\n\t\t$this->assertTrue($return['error']);\n\t\t$this->assertSame($return['message'], lang(\"Auth.password_nomatch\"));\n\n\t\t// using short password\n\t\t$return = $this->auth->register($this->email, $this->shortPassword, $this->shortPassword);\n\n\t\t$this->assertTrue($return['error']);\n\t\t$this->assertSame($return['message'], lang('Auth.password_short'));\n\n\t\t// using weak password\n\t\t$return = $this->auth->register($this->email, $this->weakPassword, $this->weakPassword);\n\n\t\t$this->assertTrue($return['error']);\n\t\t$this->assertSame($return['message'], lang('Auth.password_weak'));\n\t}", "public static function validatePassword()\n {\n return array(\n new Main\\Entity\\Validator\\Length(null, 11),\n );\n }", "public function enforceRulePassword($data){\n if (strlen($data) >= 8){\n \t$validPassword= $data;\n \t} \n \telse{\n \t$validPassword= FALSE;\n\t\t\t}\n\t\t\t\n\t\t\t/*if (preg_match (\"/^.*(?=.{8,})(?=.*\\d)(?=.*[a-zA-Z]).*$/\", $data)){\n \t$validPassword= $data;\n \t} \n \telse{\n \t$validPassword= FALSE;\n\t\t\t}*/\n\t\t\t\n\t\t\treturn $validPassword;\n }", "public function check_password($password)\n {\n return FALSE;\n }", "public function validatePassword($password) {\n return CommonProcess::hashPassword($password, $this->temp_password) === $this->password_hash;\n }", "public function password($password)\n\t{\n\t\tif (\n\t\t\t! $this->hasMinLength($password) ||\n\t\t\t! $this->hasCapitalLetter($password) ||\n\t\t\t! $this->hasNumber($password) ||\n\t\t\t! $this->hasSymbol($password) ||\n\t\t\t $this->hasWhitespace($password)\n\t\t)\n\t\t{\n\t\t\treturn 'Invalid';\n\t\t}\n\n\t\treturn 'Valid';\n\t}", "function isValidPassword($password)\n{\n $len = strlen($password);\n if ($len < MIN_PASSWORD) {\n return false;\n }\n return true;\n}", "public function password_required() {\n\t\treturn post_password_required($this->ID);\n\t}", "public function passwordValidation($data)\n {\n $rules = array(\n 'password' => 'required | min:6 | max:20 | same:confirm',\n 'confirm' => 'required | same:password'\n );\n\n $messages = array(\n 'password.required' => 'the :attribute is required.',\n 'password.min' => 'the :attribute must between 6 and 20 characters.',\n 'password.max' => 'the :attribute must between 6 and 20 characters.',\n 'password.same' => 'the fields :attribute and confirm password must be the same.',\n 'confirm.required' => 'the :attribute is required.',\n 'confirm.same' => 'the fields password and confirm password must be the same.'\n );\n $validator = Validator::make($data, $rules, $messages);\n return $validator;\n }", "public function validatePassword($attribute, $params)\r\n { \r\n \r\n if (!$this->hasErrors()) {\r\n $user = $this->getUser(); \r\n if (!$user || !$user->validatePassword($this->pwd)) {\r\n $this->addError($attribute, '旧密码不正确.');\r\n }\r\n }\r\n }", "public function validPassword($element, $value, $message) {\n if (strlen($value) < 10) {\n $this->errors[$element] = $message . \"The password has to be at least 10 characters long.\";\n }\n // At most 128 chars long\n else if (strlen($value) > 128) {\n $this->errors[$element] = $message . \"The password has to be at most 128 characters long.\";\n }\n // At least 1 uppercase\n else if (!preg_match('/[A-Z]/', $value)){\n $this->errors[$element] = $message . \"The password has to contain at least 1 uppercase character.\";\n }\n\n // At least 1 lowercase\n else if (!preg_match('/[a-z]/', $value)) {\n $this->errors[$element] = $message . \"The password has to contain at least 1 lowercase character.\";\n }\n // At least 1 digit\n else if (!preg_match('/\\d/', $value)) {\n $this->errors[$element] = $message . \"The password has to contain at least 1 digit.\";\n }\n // Not more than 2 identical chars in a row\n else if ($this->identicalCharsInRow($value)) {\n $this->errors[$element] = $message . \"The password can not contain more than two identical characters in a row.\";\n }\n }", "public function hasPassword() : bool;", "public function authenticationWithValidNumericCharClassPassword() {}", "public function authenticationWithValidNumericCharClassPassword() {}", "public function authenticationWithValidNumericCharClassPassword() {}", "public static function password($data=''){\n\t\t\treturn true;\n\t\t}", "public function testPasswordIsValid($data)\n {\n $pattern = \"/^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$/\";\n\n $this->assertMatchesRegularExpression($pattern,$data);\n\n }", "function is_valid_password($password)\n{\n if (is_null($password) || strlen($password) < 6 || strlen($password) > 40)\n {\n return false;\n }\n $pattern = \"/^[a-z0-9~`!@#\\$%\\^&\\*\\-_\\+=\\(\\)\\{\\}\\[\\]\\|:;\\\"\\'\\<\\>\\.,\\?\\/]{6,40}$/i\";\n\n return (preg_match($pattern, $password) == 1);\n}", "public function passwordValidate($password)\n {\n\n $length = strlen($password);\n\n if ($length < 5) {\n return false;\n } else {\n return true;\n }\n }", "function testPassword()\n {\n $this->f->_isSubmitted = true;\n $this->assertEquals(\"\", $this->f->password());\n $this->assertEquals(\"V\", $this->f->password(\"L\", \"H\", \"V\"));\n $val = &$this->f->password(\"L\", \"H\", \"V\");\n $this->f->error();\n $this->assertTrue($this->f->_hasErrors);\n $this->assertEquals(\"\", $val);\n }", "function validatePassword($pwd) {\r\n\t\treturn (strlen($pwd) >= 6 && preg_match_all(\"/[0-9]/\", $pwd) >= 2);\r\n\t}", "public function validatePassword($attribute, $params)\n {\n if (!$this->hasErrors()) {\n $user = $this->getUser();\n\n if (!$user || $user->password != sha1($this->password)) {\n $this->addError($attribute, Yii::t('app', 'Incorrect username or password.'));\n }\n }\n }", "public function check_password_strength($password){\n // Validate password strength\n $uppercase = preg_match('@[A-Z]@', $password);\n $lowercase = preg_match('@[a-z]@', $password);\n $number = preg_match('@[0-9]@', $password);\n $specialChars = preg_match('@[^\\w]@', $password);\n\n if(!$uppercase || !$lowercase || !$number || !$specialChars || strlen($password) < 8) {\n $GLOBALS['error_message'] = 'Password should be at least 8 characters in length and should include at least one upper case letter, one number, and one special character.';\n return false;\n }else{\n return true;\n }\n }", "function check_password($password)\n{\n if (strlen($password) < 8) {\n throw new Exception(\"password_short.\", 1);\n return false;\n }\n if (!preg_match(\"/[0-9]{1,}/\", $password) || !preg_match(\"/[A-Z]{1,}/\", $password)) {\n throw new Exception(\"password_bad\", 1);\n return false;\n }\n return true;\n}", "public function validatePassword($password)\n {\n if ($this->password === crypt($password, 'DontTry')) {\n return true;\n }\n else {\n return false;\n }\n }", "function sanitizePassword() {\n // If there is a password confirmation we put it to the checker, too\n $passCheckerInput = (strlen($this->passwordConf) > 0) ?\n array($this->password, $this->passwordConf) : $this->password;\n $passwordChecker = new PasswordChecker($passCheckerInput);\n if ($passwordChecker->getRelevance()) {\n $this->password = htmlspecialchars($this->password);\n } else {\n die(\"Error. Check your form data\");\n }\n }", "public function validatePassword($password)\n {\n return $this->hashPassword($password) === $this->password;\n }", "public function validatePassword($password)\n {\n return $this->hashPassword($password) === $this->password;\n }", "public function validatePassword($password)\n {\n return password_verify($password, $this->pass);\n }", "public function validatePassword($password): bool\n {\n return password_verify($password, $this->password);\n }", "function valid_pass($password)\n {\n $r2 = '/[A-z]/'; //lowercase\n $r3 = '/[0-9]/'; //numbers\n $r4 = '/[~!@#$%^&*()\\-_=+{};:<,.>?]/'; // special char\n\n /*if (preg_match_all($r1, $candidate, $o) < 1) {\n $msg = \"密码必须包含至少一个大写字母,请返回修改!\";\n return FALSE;\n }*/\n if (preg_match_all($r2, $password, $o) < 1) {\n $msg = \"密码必须包含至少一个字母,请返回修改!\";\n return ['code' => -1, 'msg' => $msg];\n }\n if (preg_match_all($r3, $password, $o) < 1) {\n $msg = \"密码必须包含至少一个数字,请返回修改!\";\n return ['code' => -1, 'msg' => $msg];\n }\n /*if (preg_match_all($r4, $candidate, $o) < 1) {\n $msg = \"密码必须包含至少一个特殊符号:[~!@#$%^&*()\\-_=+{};:<,.>?],请返回修改!\";\n return FALSE;\n }*/\n if (strlen($password) < 8) {\n $msg = \"密码必须包含至少含有8个字符,请返回修改!\";\n return ['code' => -1, 'msg' => $msg];\n }\n return ['code' => 0, 'msg' => 'success'];\n }", "function validatePasswordLength(&$Model, $data, $compare) {\r\n\t\t$key = key($data);\r\n\t\t$value = $data[$key];\r\n\t\t$compare = $Model->data[$Model->alias][$this->settings[$Model->alias]['fields']['password']];\r\n\t\t$length = strlen($compare);\r\n\t\tif ($length < $this->settings[$Model->alias]['passwordPolicies'][$this->settings[$Model->alias]['passwordPolicy']]['length']) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\treturn true;\r\n\t}", "public function password()\n {\n $this->isUser();\n\n $this->data['noCabinetOrAdmin'] = true;\n\n if ($_POST) {\n\n if (!$_POST['old-password'] && !$_POST['new-password']) {\n\n $userModel = new UserModel();\n\n $validateResult = $userModel->validate($_POST);\n\n if ($validateResult === true) {\n\n $checkPassword = $userModel->checkOldPassword($_POST['old-password']);\n\n if ($checkPassword) {\n\n if ($userModel->refreshPassword($_POST)) {\n\n $this->data['success'] = 'Пароль успешно изменен';\n\n } else {\n\n $this->data['warning'] = 'Произошла ошибка';\n }\n\n } else {\n\n $this->data['warning'] = 'Старый пароль введен не правильно';\n }\n\n } else {\n\n $this->data['warning'] = $validateResult;\n }\n\n } else {\n\n $this->data['warning'] = 'Все поля должны быть заполнены';\n }\n }\n\n $this->render('password');\n }", "public function getPassword() {}", "public function provideValidatePassword()\n {\n return [\n [123456, 234567, true],\n [\"123457\", 234567, true],\n [\"12345v\", 234567, false],\n ['asdfgh', 'asdfgh', false]\n ];\n }", "public function isValid($password)\n {\n if ($this->_minLength) {\n $len = strlen($password);\n if ($len < $this->_minLength) {\n return $this->_setInvalidReason(self::REASON_TOO_SHORT, array(\n 'minimum length' => $this->_minLength,\n 'password length' => $len,\n ));\n }\n }\n if ($this->_minStrength) {\n $strength = $this->calculateStrength($password);\n if ($strength < $this->_minStrength) {\n return $this->_setInvalidReason(self::REASON_TOO_WEAK, array(\n 'minimum strength' => $this->_minStrength,\n 'password strength' => $strength,\n ));\n }\n }\n if ($this->_minEntropy) {\n $entropy = $this->calculateEntropy($password);\n if ($entropy < $this->_minEntropy) {\n return $this->_setInvalidReason(self::REASON_INSUFFICIENT_ENTROPY, array(\n 'minimum entropy' => $this->_minEntropy,\n 'password entropy' => $entropy,\n ));\n }\n }\n foreach ($this->_requiredCharValidators as $validator) {\n list ($chars, $numRequired) = $validator;\n // http://www.php.net/manual/en/function.mb-split.php#99851\n $charArr = preg_split('/(?<!^)(?!$)/u', $chars);\n str_replace($charArr, ' ', $password, $count);\n if ($count < $numRequired) {\n return $this->_setInvalidReason(self::REASON_MISSING_REQUIRED_CHARS, array(\n 'required chars' => $chars,\n 'num required' => $numRequired,\n 'num found' => $count,\n ));\n }\n }\n foreach ($this->_validators as $validator) {\n list($type, $thing) = $validator;\n if ($type === 'callable') {\n $func = $thing;\n } else {\n $func = array($thing, 'isValid');\n }\n $result = call_user_func($func, $password);\n if (! $result) {\n return $this->_setInvalidReason(self::REASON_FAILED_VALIDATOR, array(\n 'validator' => $thing,\n ));\n }\n }\n if ($this->_passwordLists) {\n $file = $this->findPassword($password);\n if ($file) {\n return $this->_setInvalidReason(self::REASON_FOUND_IN_LIST, array(\n 'list file' => $file,\n ));\n }\n }\n return true;\n }", "public function validatePassword($password)\r\n\t{\t\t\r\n return md5(md5($password).$this->ec_salt) === $this->password;\t\t\r\n\t}", "public function setPasswordcheck($password)\n {\n // Do nothing\n }", "public function validatePassword($password)\n\t{\n\t\treturn sha1($this->salt.$password)===$this->password_hash;\n\t}" ]
[ "0.7863859", "0.769698", "0.7534779", "0.73903596", "0.7386753", "0.73385555", "0.729721", "0.72783655", "0.7157424", "0.71568894", "0.71119124", "0.70852286", "0.7073094", "0.706855", "0.70403856", "0.7031329", "0.7007179", "0.70014006", "0.6987082", "0.69784933", "0.6942016", "0.6909618", "0.6885369", "0.68549573", "0.6844131", "0.68378824", "0.68307155", "0.6822213", "0.6808202", "0.67812276", "0.6777873", "0.67777073", "0.6767409", "0.6766287", "0.6758151", "0.6758151", "0.6758151", "0.6754834", "0.67350936", "0.6724942", "0.6716739", "0.67099977", "0.6703174", "0.6685911", "0.6685753", "0.66831595", "0.66746056", "0.6669286", "0.6662316", "0.6659452", "0.66584516", "0.6651509", "0.6650127", "0.66430885", "0.66139627", "0.6608701", "0.6607714", "0.6600628", "0.65946597", "0.6590917", "0.6580017", "0.6579153", "0.65758115", "0.65738374", "0.6573616", "0.6571357", "0.65588", "0.65443236", "0.6543257", "0.6538904", "0.65358174", "0.6534368", "0.6531868", "0.65269274", "0.6523349", "0.6523349", "0.6523349", "0.6522634", "0.6517276", "0.6515076", "0.6513071", "0.6509943", "0.6481748", "0.6477925", "0.647535", "0.64741015", "0.6462822", "0.6446817", "0.64463514", "0.64463514", "0.6444233", "0.6444193", "0.64337873", "0.64272434", "0.64265376", "0.6413112", "0.6406371", "0.64057463", "0.6396669", "0.63954604", "0.63931084" ]
0.0
-1